On 03/07/18(Tue) 12:38, Martin Pieuchot wrote:
> The next important step towards removing the KERNEL_LOCK() from the
> kernel is to be able to execute ioctl(2)s without it.
> 
> The first area that can benefit from this is obviously the Network
> Stack.  tb@ and kn@ are working on this area so they'll soon need a
> way to test really test their diffs. 
> 
> But some pseudo-devices could also benefit from this.  I'm thinking
> at vmm(4), bpf(4) and pf(4) in a first place...
> 
> So here's a diff that remove some duplicate logic from the generics
> sys_ioctl() and sys_fcntl().  Once this is in we can start pushing
> the KERNEL_LOCK() down, inside every `fo_ioctl'.

Updated diff on top of recent changes.  This one doesn't include the
M_IOCTLOPS change.

It also keeps the previous semantic allowing a negative value for pgid
for sockets.  I'm also adding this ability for the FIOSETOWN ioctl(2)
issued on pipes to be coherent with fcntl(2)'s F_SETOWN.

Ok?

Index: kern/kern_descrip.c
===================================================================
RCS file: /cvs/src/sys/kern/kern_descrip.c,v
retrieving revision 1.176
diff -u -p -r1.176 kern_descrip.c
--- kern/kern_descrip.c 7 Jul 2018 16:14:40 -0000       1.176
+++ kern/kern_descrip.c 9 Jul 2018 08:44:22 -0000
@@ -484,14 +484,6 @@ restart:
                break;
 
        case F_GETOWN:
-               if (fp->f_type == DTYPE_SOCKET) {
-                       *retval = ((struct socket *)fp->f_data)->so_pgid;
-                       break;
-               }
-               if (fp->f_type == DTYPE_PIPE) {
-                       *retval = ((struct pipe *)fp->f_data)->pipe_pgid;
-                       break;
-               }
                tmp = 0;
                error = (*fp->f_ops->fo_ioctl)
                        (fp, TIOCGPGRP, (caddr_t)&tmp, p);
@@ -500,21 +492,9 @@ restart:
 
        case F_SETOWN:
                tmp = (long)SCARG(uap, arg);
-               if (fp->f_type == DTYPE_SOCKET) {
-                       struct socket *so = fp->f_data;
-
-                       so->so_pgid = tmp;
-                       so->so_siguid = p->p_ucred->cr_ruid;
-                       so->so_sigeuid = p->p_ucred->cr_uid;
-                       break;
-               }
-               if (fp->f_type == DTYPE_PIPE) {
-                       struct pipe *mpipe = fp->f_data;
-
-                       mpipe->pipe_pgid = tmp;
-                       break;
-               }
-               if (tmp <= 0) {
+               if (fp->f_type == DTYPE_SOCKET || fp->f_type == DTYPE_PIPE) {
+                       /* nothing */
+               } else if (tmp <= 0) {
                        tmp = -tmp;
                } else {
                        struct process *pr1 = prfind(tmp);
Index: kern/sys_generic.c
===================================================================
RCS file: /cvs/src/sys/kern/sys_generic.c,v
retrieving revision 1.119
diff -u -p -r1.119 sys_generic.c
--- kern/sys_generic.c  8 May 2018 08:53:41 -0000       1.119
+++ kern/sys_generic.c  9 Jul 2018 08:44:18 -0000
@@ -389,7 +389,7 @@ sys_ioctl(struct proc *p, void *v, regis
                syscallarg(void *) data;
        } */ *uap = v;
        struct file *fp;
-       struct filedesc *fdp;
+       struct filedesc *fdp = p->p_fd;
        u_long com = SCARG(uap, com);
        int error = 0;
        u_int size;
@@ -398,7 +398,6 @@ sys_ioctl(struct proc *p, void *v, regis
 #define STK_PARAMS     128
        long long stkbuf[STK_PARAMS / sizeof(long long)];
 
-       fdp = p->p_fd;
        if ((fp = fd_getfile_mode(fdp, SCARG(uap, fd), FREAD|FWRITE)) == NULL)
                return (EBADF);
 
@@ -478,16 +477,10 @@ sys_ioctl(struct proc *p, void *v, regis
 
        case FIOSETOWN:
                tmp = *(int *)data;
-               if (fp->f_type == DTYPE_SOCKET) {
-                       struct socket *so = fp->f_data;
 
-                       so->so_pgid = tmp;
-                       so->so_siguid = p->p_ucred->cr_ruid;
-                       so->so_sigeuid = p->p_ucred->cr_uid;
-                       error = 0;
-                       break;
-               }
-               if (tmp <= 0) {
+               if (fp->f_type == DTYPE_SOCKET || fp->f_type == DTYPE_PIPE) {
+                       /* nothing */
+               } else if (tmp <= 0) {
                        tmp = -tmp;
                } else {
                        struct process *pr = prfind(tmp);
@@ -502,11 +495,6 @@ sys_ioctl(struct proc *p, void *v, regis
                break;
 
        case FIOGETOWN:
-               if (fp->f_type == DTYPE_SOCKET) {
-                       error = 0;
-                       *(int *)data = ((struct socket *)fp->f_data)->so_pgid;
-                       break;
-               }
                error = (*fp->f_ops->fo_ioctl)(fp, TIOCGPGRP, data, p);
                *(int *)data = -*(int *)data;
                break;
Index: kern/sys_pipe.c
===================================================================
RCS file: /cvs/src/sys/kern/sys_pipe.c,v
retrieving revision 1.81
diff -u -p -r1.81 sys_pipe.c
--- kern/sys_pipe.c     18 Jun 2018 09:15:05 -0000      1.81
+++ kern/sys_pipe.c     9 Jul 2018 08:34:31 -0000
@@ -665,6 +665,8 @@ pipe_ioctl(struct file *fp, u_long cmd, 
                *(int *)data = mpipe->pipe_buffer.cnt;
                return (0);
 
+       case TIOCSPGRP:
+               /* FALLTHROUGH */
        case SIOCSPGRP:
                mpipe->pipe_pgid = *(int *)data;
                return (0);
@@ -672,6 +674,10 @@ pipe_ioctl(struct file *fp, u_long cmd, 
        case SIOCGPGRP:
                *(int *)data = mpipe->pipe_pgid;
                return (0);
+
+       case TIOCGPGRP:
+               *(int *)data = -mpipe->pipe_pgid;
+               break;
 
        }
        return (ENOTTY);
Index: kern/sys_socket.c
===================================================================
RCS file: /cvs/src/sys/kern/sys_socket.c,v
retrieving revision 1.38
diff -u -p -r1.38 sys_socket.c
--- kern/sys_socket.c   6 Jun 2018 06:55:22 -0000       1.38
+++ kern/sys_socket.c   9 Jul 2018 08:34:31 -0000
@@ -109,10 +109,16 @@ soo_ioctl(struct file *fp, u_long cmd, c
                *(int *)data = so->so_rcv.sb_datacc;
                break;
 
+       case TIOCSPGRP:
+               /* FALLTHROUGH */
        case SIOCSPGRP:
                so->so_pgid = *(int *)data;
                so->so_siguid = p->p_ucred->cr_ruid;
                so->so_sigeuid = p->p_ucred->cr_uid;
+               break;
+
+       case TIOCGPGRP:
+               *(int *)data = -so->so_pgid;
                break;
 
        case SIOCGPGRP:

Reply via email to