Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern add socket info for user and group for unix sockets...



details:   https://anonhg.NetBSD.org/src/rev/ea088fbf7054
branches:  trunk
changeset: 943103:ea088fbf7054
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Aug 26 22:54:30 2020 +0000

description:
add socket info for user and group for unix sockets in fstat.

diffstat:

 sys/kern/uipc_socket.c  |  5 +++--
 sys/kern/uipc_socket2.c |  5 +++--
 sys/kern/uipc_usrreq.c  |  6 ++++--
 3 files changed, 10 insertions(+), 6 deletions(-)

diffs (79 lines):

diff -r fb921e7c736b -r ea088fbf7054 sys/kern/uipc_socket.c
--- a/sys/kern/uipc_socket.c    Wed Aug 26 22:52:58 2020 +0000
+++ b/sys/kern/uipc_socket.c    Wed Aug 26 22:54:30 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uipc_socket.c,v 1.290 2020/06/07 15:19:05 maxv Exp $   */
+/*     $NetBSD: uipc_socket.c,v 1.291 2020/08/26 22:54:30 christos Exp $       */
 
 /*
  * Copyright (c) 2002, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.290 2020/06/07 15:19:05 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.291 2020/08/26 22:54:30 christos Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -526,6 +526,7 @@
 #endif
        uid = kauth_cred_geteuid(l->l_cred);
        so->so_uidinfo = uid_find(uid);
+       so->so_egid = kauth_cred_getegid(l->l_cred);
        so->so_cpid = l->l_proc->p_pid;
 
        /*
diff -r fb921e7c736b -r ea088fbf7054 sys/kern/uipc_socket2.c
--- a/sys/kern/uipc_socket2.c   Wed Aug 26 22:52:58 2020 +0000
+++ b/sys/kern/uipc_socket2.c   Wed Aug 26 22:54:30 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uipc_socket2.c,v 1.137 2020/05/23 23:42:43 ad Exp $    */
+/*     $NetBSD: uipc_socket2.c,v 1.138 2020/08/26 22:54:30 christos Exp $      */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_socket2.c,v 1.137 2020/05/23 23:42:43 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_socket2.c,v 1.138 2020/08/26 22:54:30 christos Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -317,6 +317,7 @@
        so->so_send = head->so_send;
        so->so_receive = head->so_receive;
        so->so_uidinfo = head->so_uidinfo;
+       so->so_egid = head->so_egid;
        so->so_cpid = head->so_cpid;
 
        /*
diff -r fb921e7c736b -r ea088fbf7054 sys/kern/uipc_usrreq.c
--- a/sys/kern/uipc_usrreq.c    Wed Aug 26 22:52:58 2020 +0000
+++ b/sys/kern/uipc_usrreq.c    Wed Aug 26 22:54:30 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uipc_usrreq.c,v 1.198 2020/04/21 21:42:47 ad Exp $     */
+/*     $NetBSD: uipc_usrreq.c,v 1.199 2020/08/26 22:54:30 christos Exp $       */
 
 /*-
  * Copyright (c) 1998, 2000, 2004, 2008, 2009, 2020 The NetBSD Foundation, Inc.
@@ -96,7 +96,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_usrreq.c,v 1.198 2020/04/21 21:42:47 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_usrreq.c,v 1.199 2020/08/26 22:54:30 christos Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -898,6 +898,8 @@
                unp->unp_ino = unp_ino++;
        ub->st_atimespec = ub->st_mtimespec = ub->st_ctimespec = unp->unp_ctime;
        ub->st_ino = unp->unp_ino;
+       ub->st_uid = so->so_uidinfo->ui_uid;
+       ub->st_gid = so->so_egid;
        return (0);
 }
 



Home | Main Index | Thread Index | Old Index