Home | History | Annotate | Line # | Download | only in kern
sys_generic.c revision 1.24.4.1
      1  1.24.4.1   mycroft /*	$NetBSD: sys_generic.c,v 1.24.4.1 1996/12/10 04:33:35 mycroft Exp $	*/
      2      1.15       cgd 
      3      1.15       cgd /*
      4      1.15       cgd  * Copyright (c) 1982, 1986, 1989, 1993
      5      1.15       cgd  *	The Regents of the University of California.  All rights reserved.
      6      1.15       cgd  * (c) UNIX System Laboratories, Inc.
      7      1.15       cgd  * All or some portions of this file are derived from material licensed
      8      1.15       cgd  * to the University of California by American Telephone and Telegraph
      9      1.15       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10      1.15       cgd  * the permission of UNIX System Laboratories, Inc.
     11      1.15       cgd  *
     12      1.15       cgd  * Redistribution and use in source and binary forms, with or without
     13      1.15       cgd  * modification, are permitted provided that the following conditions
     14      1.15       cgd  * are met:
     15      1.15       cgd  * 1. Redistributions of source code must retain the above copyright
     16      1.15       cgd  *    notice, this list of conditions and the following disclaimer.
     17      1.15       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18      1.15       cgd  *    notice, this list of conditions and the following disclaimer in the
     19      1.15       cgd  *    documentation and/or other materials provided with the distribution.
     20      1.15       cgd  * 3. All advertising materials mentioning features or use of this software
     21      1.15       cgd  *    must display the following acknowledgement:
     22      1.15       cgd  *	This product includes software developed by the University of
     23      1.15       cgd  *	California, Berkeley and its contributors.
     24      1.15       cgd  * 4. Neither the name of the University nor the names of its contributors
     25      1.15       cgd  *    may be used to endorse or promote products derived from this software
     26      1.15       cgd  *    without specific prior written permission.
     27      1.15       cgd  *
     28      1.15       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29      1.15       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30      1.15       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31      1.15       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32      1.15       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33      1.15       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34      1.15       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35      1.15       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36      1.15       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37      1.15       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38      1.15       cgd  * SUCH DAMAGE.
     39      1.15       cgd  *
     40      1.15       cgd  *	@(#)sys_generic.c	8.5 (Berkeley) 1/21/94
     41      1.15       cgd  */
     42      1.15       cgd 
     43      1.15       cgd #include <sys/param.h>
     44      1.15       cgd #include <sys/systm.h>
     45      1.15       cgd #include <sys/filedesc.h>
     46      1.15       cgd #include <sys/ioctl.h>
     47      1.15       cgd #include <sys/file.h>
     48      1.15       cgd #include <sys/proc.h>
     49      1.15       cgd #include <sys/socketvar.h>
     50      1.22  christos #include <sys/signalvar.h>
     51      1.15       cgd #include <sys/uio.h>
     52      1.15       cgd #include <sys/kernel.h>
     53      1.15       cgd #include <sys/stat.h>
     54      1.15       cgd #include <sys/malloc.h>
     55      1.15       cgd #ifdef KTRACE
     56      1.15       cgd #include <sys/ktrace.h>
     57      1.15       cgd #endif
     58      1.15       cgd 
     59      1.16       cgd #include <sys/mount.h>
     60      1.16       cgd #include <sys/syscallargs.h>
     61      1.22  christos 
     62  1.24.4.1   mycroft int selscan __P((struct proc *, fd_mask *, fd_mask *, int, register_t *));
     63      1.22  christos 
     64      1.15       cgd /*
     65      1.15       cgd  * Read system call.
     66      1.15       cgd  */
     67      1.15       cgd /* ARGSUSED */
     68      1.22  christos int
     69      1.21   mycroft sys_read(p, v, retval)
     70      1.15       cgd 	struct proc *p;
     71      1.20   thorpej 	void *v;
     72      1.20   thorpej 	register_t *retval;
     73      1.20   thorpej {
     74      1.21   mycroft 	register struct sys_read_args /* {
     75      1.16       cgd 		syscallarg(int) fd;
     76      1.16       cgd 		syscallarg(char *) buf;
     77      1.16       cgd 		syscallarg(u_int) nbyte;
     78      1.20   thorpej 	} */ *uap = v;
     79      1.15       cgd 	register struct file *fp;
     80      1.15       cgd 	register struct filedesc *fdp = p->p_fd;
     81      1.15       cgd 	struct uio auio;
     82      1.15       cgd 	struct iovec aiov;
     83      1.15       cgd 	long cnt, error = 0;
     84      1.15       cgd #ifdef KTRACE
     85      1.15       cgd 	struct iovec ktriov;
     86      1.15       cgd #endif
     87      1.15       cgd 
     88      1.16       cgd 	if (((u_int)SCARG(uap, fd)) >= fdp->fd_nfiles ||
     89      1.16       cgd 	    (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL ||
     90      1.15       cgd 	    (fp->f_flag & FREAD) == 0)
     91      1.15       cgd 		return (EBADF);
     92      1.16       cgd 	aiov.iov_base = (caddr_t)SCARG(uap, buf);
     93      1.16       cgd 	aiov.iov_len = SCARG(uap, nbyte);
     94      1.15       cgd 	auio.uio_iov = &aiov;
     95      1.15       cgd 	auio.uio_iovcnt = 1;
     96      1.16       cgd 	auio.uio_resid = SCARG(uap, nbyte);
     97      1.15       cgd 	auio.uio_rw = UIO_READ;
     98      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
     99      1.15       cgd 	auio.uio_procp = p;
    100      1.15       cgd 	if (auio.uio_resid < 0)
    101      1.15       cgd 		return EINVAL;
    102      1.15       cgd #ifdef KTRACE
    103      1.15       cgd 	/*
    104      1.15       cgd 	 * if tracing, save a copy of iovec
    105      1.15       cgd 	 */
    106      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))
    107      1.15       cgd 		ktriov = aiov;
    108      1.15       cgd #endif
    109      1.16       cgd 	cnt = SCARG(uap, nbyte);
    110      1.22  christos 	error = (*fp->f_ops->fo_read)(fp, &auio, fp->f_cred);
    111      1.22  christos 	if (error)
    112      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    113      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    114      1.15       cgd 			error = 0;
    115      1.15       cgd 	cnt -= auio.uio_resid;
    116      1.15       cgd #ifdef KTRACE
    117      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO) && error == 0)
    118      1.16       cgd 		ktrgenio(p->p_tracep, SCARG(uap, fd), UIO_READ, &ktriov,
    119      1.16       cgd 		    cnt, error);
    120      1.15       cgd #endif
    121      1.15       cgd 	*retval = cnt;
    122      1.15       cgd 	return (error);
    123      1.15       cgd }
    124      1.15       cgd 
    125      1.15       cgd /*
    126      1.15       cgd  * Scatter read system call.
    127      1.15       cgd  */
    128      1.22  christos int
    129      1.21   mycroft sys_readv(p, v, retval)
    130      1.15       cgd 	struct proc *p;
    131      1.20   thorpej 	void *v;
    132      1.20   thorpej 	register_t *retval;
    133      1.20   thorpej {
    134      1.21   mycroft 	register struct sys_readv_args /* {
    135      1.16       cgd 		syscallarg(int) fd;
    136      1.16       cgd 		syscallarg(struct iovec *) iovp;
    137      1.16       cgd 		syscallarg(u_int) iovcnt;
    138      1.20   thorpej 	} */ *uap = v;
    139      1.15       cgd 	register struct file *fp;
    140      1.15       cgd 	register struct filedesc *fdp = p->p_fd;
    141      1.15       cgd 	struct uio auio;
    142      1.15       cgd 	register struct iovec *iov;
    143      1.15       cgd 	struct iovec *needfree;
    144      1.15       cgd 	struct iovec aiov[UIO_SMALLIOV];
    145      1.15       cgd 	long i, cnt, error = 0;
    146      1.15       cgd 	u_int iovlen;
    147      1.15       cgd #ifdef KTRACE
    148      1.15       cgd 	struct iovec *ktriov = NULL;
    149      1.15       cgd #endif
    150      1.15       cgd 
    151      1.16       cgd 	if (((u_int)SCARG(uap, fd)) >= fdp->fd_nfiles ||
    152      1.16       cgd 	    (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL ||
    153      1.15       cgd 	    (fp->f_flag & FREAD) == 0)
    154      1.15       cgd 		return (EBADF);
    155      1.15       cgd 	/* note: can't use iovlen until iovcnt is validated */
    156      1.16       cgd 	iovlen = SCARG(uap, iovcnt) * sizeof (struct iovec);
    157      1.16       cgd 	if (SCARG(uap, iovcnt) > UIO_SMALLIOV) {
    158      1.16       cgd 		if (SCARG(uap, iovcnt) > UIO_MAXIOV)
    159      1.15       cgd 			return (EINVAL);
    160      1.15       cgd 		MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
    161      1.15       cgd 		needfree = iov;
    162      1.15       cgd 	} else {
    163      1.15       cgd 		iov = aiov;
    164      1.15       cgd 		needfree = NULL;
    165      1.15       cgd 	}
    166      1.15       cgd 	auio.uio_iov = iov;
    167      1.16       cgd 	auio.uio_iovcnt = SCARG(uap, iovcnt);
    168      1.15       cgd 	auio.uio_rw = UIO_READ;
    169      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    170      1.15       cgd 	auio.uio_procp = p;
    171      1.22  christos 	error = copyin((caddr_t)SCARG(uap, iovp), (caddr_t)iov, iovlen);
    172      1.22  christos 	if (error)
    173      1.15       cgd 		goto done;
    174      1.15       cgd 	auio.uio_resid = 0;
    175      1.16       cgd 	for (i = 0; i < SCARG(uap, iovcnt); i++) {
    176      1.22  christos #if 0
    177      1.22  christos 		/* Cannot happen iov_len is unsigned */
    178      1.15       cgd 		if (iov->iov_len < 0) {
    179      1.15       cgd 			error = EINVAL;
    180      1.15       cgd 			goto done;
    181      1.15       cgd 		}
    182      1.22  christos #endif
    183      1.15       cgd 		auio.uio_resid += iov->iov_len;
    184      1.15       cgd 		if (auio.uio_resid < 0) {
    185      1.15       cgd 			error = EINVAL;
    186      1.15       cgd 			goto done;
    187      1.15       cgd 		}
    188      1.15       cgd 		iov++;
    189      1.15       cgd 	}
    190      1.15       cgd #ifdef KTRACE
    191      1.15       cgd 	/*
    192      1.15       cgd 	 * if tracing, save a copy of iovec
    193      1.15       cgd 	 */
    194      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))  {
    195      1.15       cgd 		MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
    196      1.15       cgd 		bcopy((caddr_t)auio.uio_iov, (caddr_t)ktriov, iovlen);
    197      1.15       cgd 	}
    198      1.15       cgd #endif
    199      1.15       cgd 	cnt = auio.uio_resid;
    200      1.22  christos 	error = (*fp->f_ops->fo_read)(fp, &auio, fp->f_cred);
    201      1.22  christos 	if (error)
    202      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    203      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    204      1.15       cgd 			error = 0;
    205      1.15       cgd 	cnt -= auio.uio_resid;
    206      1.15       cgd #ifdef KTRACE
    207      1.15       cgd 	if (ktriov != NULL) {
    208      1.15       cgd 		if (error == 0)
    209      1.16       cgd 			ktrgenio(p->p_tracep, SCARG(uap, fd), UIO_READ, ktriov,
    210      1.15       cgd 			    cnt, error);
    211      1.15       cgd 		FREE(ktriov, M_TEMP);
    212      1.15       cgd 	}
    213      1.15       cgd #endif
    214      1.15       cgd 	*retval = cnt;
    215      1.15       cgd done:
    216      1.15       cgd 	if (needfree)
    217      1.15       cgd 		FREE(needfree, M_IOV);
    218      1.15       cgd 	return (error);
    219      1.15       cgd }
    220      1.15       cgd 
    221      1.15       cgd /*
    222      1.15       cgd  * Write system call
    223      1.15       cgd  */
    224      1.22  christos int
    225      1.21   mycroft sys_write(p, v, retval)
    226      1.15       cgd 	struct proc *p;
    227      1.20   thorpej 	void *v;
    228      1.20   thorpej 	register_t *retval;
    229      1.20   thorpej {
    230      1.21   mycroft 	register struct sys_write_args /* {
    231      1.16       cgd 		syscallarg(int) fd;
    232      1.16       cgd 		syscallarg(char *) buf;
    233      1.16       cgd 		syscallarg(u_int) nbyte;
    234      1.20   thorpej 	} */ *uap = v;
    235      1.15       cgd 	register struct file *fp;
    236      1.15       cgd 	register struct filedesc *fdp = p->p_fd;
    237      1.15       cgd 	struct uio auio;
    238      1.15       cgd 	struct iovec aiov;
    239      1.15       cgd 	long cnt, error = 0;
    240      1.15       cgd #ifdef KTRACE
    241      1.15       cgd 	struct iovec ktriov;
    242      1.15       cgd #endif
    243      1.15       cgd 
    244      1.16       cgd 	if (((u_int)SCARG(uap, fd)) >= fdp->fd_nfiles ||
    245      1.16       cgd 	    (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL ||
    246      1.15       cgd 	    (fp->f_flag & FWRITE) == 0)
    247      1.15       cgd 		return (EBADF);
    248      1.16       cgd 	aiov.iov_base = (caddr_t)SCARG(uap, buf);
    249      1.16       cgd 	aiov.iov_len = SCARG(uap, nbyte);
    250      1.15       cgd 	auio.uio_iov = &aiov;
    251      1.15       cgd 	auio.uio_iovcnt = 1;
    252      1.16       cgd 	auio.uio_resid = SCARG(uap, nbyte);
    253      1.15       cgd 	auio.uio_rw = UIO_WRITE;
    254      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    255      1.15       cgd 	auio.uio_procp = p;
    256      1.15       cgd 	if (auio.uio_resid < 0)
    257      1.15       cgd 		return EINVAL;
    258      1.15       cgd #ifdef KTRACE
    259      1.15       cgd 	/*
    260      1.15       cgd 	 * if tracing, save a copy of iovec
    261      1.15       cgd 	 */
    262      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))
    263      1.15       cgd 		ktriov = aiov;
    264      1.15       cgd #endif
    265      1.16       cgd 	cnt = SCARG(uap, nbyte);
    266      1.22  christos 	error = (*fp->f_ops->fo_write)(fp, &auio, fp->f_cred);
    267      1.22  christos 	if (error) {
    268      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    269      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    270      1.15       cgd 			error = 0;
    271      1.15       cgd 		if (error == EPIPE)
    272      1.15       cgd 			psignal(p, SIGPIPE);
    273      1.15       cgd 	}
    274      1.15       cgd 	cnt -= auio.uio_resid;
    275      1.15       cgd #ifdef KTRACE
    276      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO) && error == 0)
    277      1.16       cgd 		ktrgenio(p->p_tracep, SCARG(uap, fd), UIO_WRITE,
    278      1.15       cgd 		    &ktriov, cnt, error);
    279      1.15       cgd #endif
    280      1.15       cgd 	*retval = cnt;
    281      1.15       cgd 	return (error);
    282      1.15       cgd }
    283      1.15       cgd 
    284      1.15       cgd /*
    285      1.15       cgd  * Gather write system call
    286      1.15       cgd  */
    287      1.22  christos int
    288      1.21   mycroft sys_writev(p, v, retval)
    289      1.15       cgd 	struct proc *p;
    290      1.20   thorpej 	void *v;
    291      1.20   thorpej 	register_t *retval;
    292      1.20   thorpej {
    293      1.21   mycroft 	register struct sys_writev_args /* {
    294      1.16       cgd 		syscallarg(int) fd;
    295      1.16       cgd 		syscallarg(struct iovec *) iovp;
    296      1.16       cgd 		syscallarg(u_int) iovcnt;
    297      1.20   thorpej 	} */ *uap = v;
    298      1.15       cgd 	register struct file *fp;
    299      1.15       cgd 	register struct filedesc *fdp = p->p_fd;
    300      1.15       cgd 	struct uio auio;
    301      1.15       cgd 	register struct iovec *iov;
    302      1.15       cgd 	struct iovec *needfree;
    303      1.15       cgd 	struct iovec aiov[UIO_SMALLIOV];
    304      1.15       cgd 	long i, cnt, error = 0;
    305      1.15       cgd 	u_int iovlen;
    306      1.15       cgd #ifdef KTRACE
    307      1.15       cgd 	struct iovec *ktriov = NULL;
    308      1.15       cgd #endif
    309      1.15       cgd 
    310      1.16       cgd 	if (((u_int)SCARG(uap, fd)) >= fdp->fd_nfiles ||
    311      1.16       cgd 	    (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL ||
    312      1.15       cgd 	    (fp->f_flag & FWRITE) == 0)
    313      1.15       cgd 		return (EBADF);
    314      1.15       cgd 	/* note: can't use iovlen until iovcnt is validated */
    315      1.16       cgd 	iovlen = SCARG(uap, iovcnt) * sizeof (struct iovec);
    316      1.16       cgd 	if (SCARG(uap, iovcnt) > UIO_SMALLIOV) {
    317      1.16       cgd 		if (SCARG(uap, iovcnt) > UIO_MAXIOV)
    318      1.15       cgd 			return (EINVAL);
    319      1.15       cgd 		MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
    320      1.15       cgd 		needfree = iov;
    321      1.15       cgd 	} else {
    322      1.15       cgd 		iov = aiov;
    323      1.15       cgd 		needfree = NULL;
    324      1.15       cgd 	}
    325      1.15       cgd 	auio.uio_iov = iov;
    326      1.16       cgd 	auio.uio_iovcnt = SCARG(uap, iovcnt);
    327      1.15       cgd 	auio.uio_rw = UIO_WRITE;
    328      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    329      1.15       cgd 	auio.uio_procp = p;
    330      1.22  christos 	error = copyin((caddr_t)SCARG(uap, iovp), (caddr_t)iov, iovlen);
    331      1.22  christos 	if (error)
    332      1.15       cgd 		goto done;
    333      1.15       cgd 	auio.uio_resid = 0;
    334      1.16       cgd 	for (i = 0; i < SCARG(uap, iovcnt); i++) {
    335      1.22  christos #if 0
    336      1.22  christos 		/* Cannot happen iov_len is unsigned */
    337      1.15       cgd 		if (iov->iov_len < 0) {
    338      1.15       cgd 			error = EINVAL;
    339      1.15       cgd 			goto done;
    340      1.15       cgd 		}
    341      1.22  christos #endif
    342      1.15       cgd 		auio.uio_resid += iov->iov_len;
    343      1.15       cgd 		if (auio.uio_resid < 0) {
    344      1.15       cgd 			error = EINVAL;
    345      1.15       cgd 			goto done;
    346      1.15       cgd 		}
    347      1.15       cgd 		iov++;
    348      1.15       cgd 	}
    349      1.15       cgd #ifdef KTRACE
    350      1.15       cgd 	/*
    351      1.15       cgd 	 * if tracing, save a copy of iovec
    352      1.15       cgd 	 */
    353      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))  {
    354      1.15       cgd 		MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
    355      1.15       cgd 		bcopy((caddr_t)auio.uio_iov, (caddr_t)ktriov, iovlen);
    356      1.15       cgd 	}
    357      1.15       cgd #endif
    358      1.15       cgd 	cnt = auio.uio_resid;
    359      1.22  christos 	error = (*fp->f_ops->fo_write)(fp, &auio, fp->f_cred);
    360      1.22  christos 	if (error) {
    361      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    362      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    363      1.15       cgd 			error = 0;
    364      1.15       cgd 		if (error == EPIPE)
    365      1.15       cgd 			psignal(p, SIGPIPE);
    366      1.15       cgd 	}
    367      1.15       cgd 	cnt -= auio.uio_resid;
    368      1.15       cgd #ifdef KTRACE
    369      1.15       cgd 	if (ktriov != NULL) {
    370      1.15       cgd 		if (error == 0)
    371      1.16       cgd 			ktrgenio(p->p_tracep, SCARG(uap, fd), UIO_WRITE,
    372      1.15       cgd 				ktriov, cnt, error);
    373      1.15       cgd 		FREE(ktriov, M_TEMP);
    374      1.15       cgd 	}
    375      1.15       cgd #endif
    376      1.15       cgd 	*retval = cnt;
    377      1.15       cgd done:
    378      1.15       cgd 	if (needfree)
    379      1.15       cgd 		FREE(needfree, M_IOV);
    380      1.15       cgd 	return (error);
    381      1.15       cgd }
    382      1.15       cgd 
    383      1.15       cgd /*
    384      1.15       cgd  * Ioctl system call
    385      1.15       cgd  */
    386      1.15       cgd /* ARGSUSED */
    387      1.22  christos int
    388      1.21   mycroft sys_ioctl(p, v, retval)
    389      1.15       cgd 	struct proc *p;
    390      1.20   thorpej 	void *v;
    391      1.20   thorpej 	register_t *retval;
    392      1.20   thorpej {
    393      1.21   mycroft 	register struct sys_ioctl_args /* {
    394      1.16       cgd 		syscallarg(int) fd;
    395      1.17       cgd 		syscallarg(u_long) com;
    396      1.16       cgd 		syscallarg(caddr_t) data;
    397      1.20   thorpej 	} */ *uap = v;
    398      1.15       cgd 	register struct file *fp;
    399      1.15       cgd 	register struct filedesc *fdp;
    400      1.17       cgd 	register u_long com;
    401      1.17       cgd 	register int error;
    402      1.15       cgd 	register u_int size;
    403      1.15       cgd 	caddr_t data, memp;
    404      1.15       cgd 	int tmp;
    405      1.15       cgd #define STK_PARAMS	128
    406      1.15       cgd 	char stkbuf[STK_PARAMS];
    407      1.15       cgd 
    408      1.15       cgd 	fdp = p->p_fd;
    409      1.16       cgd 	if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
    410      1.16       cgd 	    (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
    411      1.15       cgd 		return (EBADF);
    412      1.15       cgd 
    413      1.15       cgd 	if ((fp->f_flag & (FREAD | FWRITE)) == 0)
    414      1.15       cgd 		return (EBADF);
    415      1.15       cgd 
    416      1.16       cgd 	switch (com = SCARG(uap, com)) {
    417      1.15       cgd 	case FIONCLEX:
    418      1.16       cgd 		fdp->fd_ofileflags[SCARG(uap, fd)] &= ~UF_EXCLOSE;
    419      1.15       cgd 		return (0);
    420      1.15       cgd 	case FIOCLEX:
    421      1.16       cgd 		fdp->fd_ofileflags[SCARG(uap, fd)] |= UF_EXCLOSE;
    422      1.15       cgd 		return (0);
    423      1.15       cgd 	}
    424      1.15       cgd 
    425      1.15       cgd 	/*
    426      1.15       cgd 	 * Interpret high order word to find amount of data to be
    427      1.15       cgd 	 * copied to/from the user's address space.
    428      1.15       cgd 	 */
    429      1.15       cgd 	size = IOCPARM_LEN(com);
    430      1.15       cgd 	if (size > IOCPARM_MAX)
    431      1.15       cgd 		return (ENOTTY);
    432      1.15       cgd 	memp = NULL;
    433      1.15       cgd 	if (size > sizeof (stkbuf)) {
    434      1.15       cgd 		memp = (caddr_t)malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
    435      1.15       cgd 		data = memp;
    436      1.15       cgd 	} else
    437      1.15       cgd 		data = stkbuf;
    438      1.15       cgd 	if (com&IOC_IN) {
    439      1.15       cgd 		if (size) {
    440      1.16       cgd 			error = copyin(SCARG(uap, data), data, (u_int)size);
    441      1.15       cgd 			if (error) {
    442      1.15       cgd 				if (memp)
    443      1.15       cgd 					free(memp, M_IOCTLOPS);
    444      1.15       cgd 				return (error);
    445      1.15       cgd 			}
    446      1.15       cgd 		} else
    447      1.16       cgd 			*(caddr_t *)data = SCARG(uap, data);
    448      1.15       cgd 	} else if ((com&IOC_OUT) && size)
    449      1.15       cgd 		/*
    450      1.15       cgd 		 * Zero the buffer so the user always
    451      1.15       cgd 		 * gets back something deterministic.
    452      1.15       cgd 		 */
    453      1.15       cgd 		bzero(data, size);
    454      1.15       cgd 	else if (com&IOC_VOID)
    455      1.16       cgd 		*(caddr_t *)data = SCARG(uap, data);
    456      1.15       cgd 
    457      1.15       cgd 	switch (com) {
    458      1.15       cgd 
    459      1.15       cgd 	case FIONBIO:
    460      1.22  christos 		if ((tmp = *(int *)data) != 0)
    461      1.15       cgd 			fp->f_flag |= FNONBLOCK;
    462      1.15       cgd 		else
    463      1.15       cgd 			fp->f_flag &= ~FNONBLOCK;
    464      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, (caddr_t)&tmp, p);
    465      1.15       cgd 		break;
    466      1.15       cgd 
    467      1.15       cgd 	case FIOASYNC:
    468      1.22  christos 		if ((tmp = *(int *)data) != 0)
    469      1.15       cgd 			fp->f_flag |= FASYNC;
    470      1.15       cgd 		else
    471      1.15       cgd 			fp->f_flag &= ~FASYNC;
    472      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, (caddr_t)&tmp, p);
    473      1.15       cgd 		break;
    474      1.15       cgd 
    475      1.15       cgd 	case FIOSETOWN:
    476      1.15       cgd 		tmp = *(int *)data;
    477      1.15       cgd 		if (fp->f_type == DTYPE_SOCKET) {
    478      1.15       cgd 			((struct socket *)fp->f_data)->so_pgid = tmp;
    479      1.15       cgd 			error = 0;
    480      1.15       cgd 			break;
    481      1.15       cgd 		}
    482      1.15       cgd 		if (tmp <= 0) {
    483      1.15       cgd 			tmp = -tmp;
    484      1.15       cgd 		} else {
    485      1.15       cgd 			struct proc *p1 = pfind(tmp);
    486      1.15       cgd 			if (p1 == 0) {
    487      1.15       cgd 				error = ESRCH;
    488      1.15       cgd 				break;
    489      1.15       cgd 			}
    490      1.15       cgd 			tmp = p1->p_pgrp->pg_id;
    491      1.15       cgd 		}
    492      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)
    493      1.24       cgd 			(fp, TIOCSPGRP, (caddr_t)&tmp, p);
    494      1.15       cgd 		break;
    495      1.15       cgd 
    496      1.15       cgd 	case FIOGETOWN:
    497      1.15       cgd 		if (fp->f_type == DTYPE_SOCKET) {
    498      1.15       cgd 			error = 0;
    499      1.15       cgd 			*(int *)data = ((struct socket *)fp->f_data)->so_pgid;
    500      1.15       cgd 			break;
    501      1.15       cgd 		}
    502      1.17       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, TIOCGPGRP, data, p);
    503      1.15       cgd 		*(int *)data = -*(int *)data;
    504      1.15       cgd 		break;
    505      1.15       cgd 
    506      1.15       cgd 	default:
    507      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, com, data, p);
    508      1.15       cgd 		/*
    509      1.15       cgd 		 * Copy any data to user, size was
    510      1.15       cgd 		 * already set and checked above.
    511      1.15       cgd 		 */
    512      1.15       cgd 		if (error == 0 && (com&IOC_OUT) && size)
    513      1.16       cgd 			error = copyout(data, SCARG(uap, data), (u_int)size);
    514      1.15       cgd 		break;
    515      1.15       cgd 	}
    516      1.15       cgd 	if (memp)
    517      1.15       cgd 		free(memp, M_IOCTLOPS);
    518      1.15       cgd 	return (error);
    519      1.15       cgd }
    520      1.15       cgd 
    521      1.15       cgd int	selwait, nselcoll;
    522      1.15       cgd 
    523      1.15       cgd /*
    524      1.15       cgd  * Select system call.
    525      1.15       cgd  */
    526      1.22  christos int
    527      1.21   mycroft sys_select(p, v, retval)
    528      1.15       cgd 	register struct proc *p;
    529      1.20   thorpej 	void *v;
    530      1.20   thorpej 	register_t *retval;
    531      1.20   thorpej {
    532      1.21   mycroft 	register struct sys_select_args /* {
    533      1.16       cgd 		syscallarg(u_int) nd;
    534      1.16       cgd 		syscallarg(fd_set *) in;
    535      1.16       cgd 		syscallarg(fd_set *) ou;
    536      1.16       cgd 		syscallarg(fd_set *) ex;
    537      1.16       cgd 		syscallarg(struct timeval *) tv;
    538      1.20   thorpej 	} */ *uap = v;
    539  1.24.4.1   mycroft 	caddr_t bits;
    540  1.24.4.1   mycroft 	char smallbits[howmany(FD_SETSIZE, NFDBITS) * sizeof(fd_mask) * 6];
    541      1.15       cgd 	struct timeval atv;
    542      1.15       cgd 	int s, ncoll, error = 0, timo;
    543  1.24.4.1   mycroft 	size_t ni;
    544      1.15       cgd 
    545      1.16       cgd 	if (SCARG(uap, nd) > p->p_fd->fd_nfiles) {
    546      1.16       cgd 		/* forgiving; slightly wrong */
    547      1.16       cgd 		SCARG(uap, nd) = p->p_fd->fd_nfiles;
    548      1.16       cgd 	}
    549      1.16       cgd 	ni = howmany(SCARG(uap, nd), NFDBITS) * sizeof(fd_mask);
    550  1.24.4.1   mycroft 	if (ni * 6 > sizeof(smallbits))
    551  1.24.4.1   mycroft 		bits = malloc(ni * 6, M_TEMP, M_WAITOK);
    552  1.24.4.1   mycroft 	else
    553  1.24.4.1   mycroft 		bits = smallbits;
    554      1.15       cgd 
    555      1.15       cgd #define	getbits(name, x) \
    556  1.24.4.1   mycroft 	if (SCARG(uap, name)) { \
    557  1.24.4.1   mycroft 		error = copyin((caddr_t)SCARG(uap, name), bits + ni * x, ni); \
    558  1.24.4.1   mycroft 		if (error) \
    559  1.24.4.1   mycroft 			goto done; \
    560  1.24.4.1   mycroft 	} else \
    561  1.24.4.1   mycroft 		bzero(bits + ni * x, ni);
    562      1.15       cgd 	getbits(in, 0);
    563      1.15       cgd 	getbits(ou, 1);
    564      1.15       cgd 	getbits(ex, 2);
    565      1.15       cgd #undef	getbits
    566      1.15       cgd 
    567      1.16       cgd 	if (SCARG(uap, tv)) {
    568      1.16       cgd 		error = copyin((caddr_t)SCARG(uap, tv), (caddr_t)&atv,
    569      1.15       cgd 			sizeof (atv));
    570      1.15       cgd 		if (error)
    571      1.15       cgd 			goto done;
    572      1.15       cgd 		if (itimerfix(&atv)) {
    573      1.15       cgd 			error = EINVAL;
    574      1.15       cgd 			goto done;
    575      1.15       cgd 		}
    576      1.15       cgd 		s = splclock();
    577      1.19   mycroft 		timeradd(&atv, &time, &atv);
    578      1.15       cgd 		timo = hzto(&atv);
    579      1.15       cgd 		/*
    580      1.15       cgd 		 * Avoid inadvertently sleeping forever.
    581      1.15       cgd 		 */
    582      1.15       cgd 		if (timo == 0)
    583      1.15       cgd 			timo = 1;
    584      1.15       cgd 		splx(s);
    585      1.15       cgd 	} else
    586      1.15       cgd 		timo = 0;
    587      1.15       cgd retry:
    588      1.15       cgd 	ncoll = nselcoll;
    589      1.15       cgd 	p->p_flag |= P_SELECT;
    590  1.24.4.1   mycroft 	error = selscan(p, (fd_mask *)(bits + ni * 0),
    591  1.24.4.1   mycroft 			   (fd_mask *)(bits + ni * 3), SCARG(uap, nd), retval);
    592      1.15       cgd 	if (error || *retval)
    593      1.15       cgd 		goto done;
    594      1.15       cgd 	s = splhigh();
    595  1.24.4.1   mycroft 	if (timo && timercmp(&time, &atv, >=)) {
    596      1.15       cgd 		splx(s);
    597      1.15       cgd 		goto done;
    598      1.15       cgd 	}
    599      1.15       cgd 	if ((p->p_flag & P_SELECT) == 0 || nselcoll != ncoll) {
    600      1.15       cgd 		splx(s);
    601      1.15       cgd 		goto retry;
    602      1.15       cgd 	}
    603      1.15       cgd 	p->p_flag &= ~P_SELECT;
    604      1.15       cgd 	error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "select", timo);
    605      1.15       cgd 	splx(s);
    606      1.15       cgd 	if (error == 0)
    607      1.15       cgd 		goto retry;
    608      1.15       cgd done:
    609      1.15       cgd 	p->p_flag &= ~P_SELECT;
    610      1.15       cgd 	/* select is not restarted after signals... */
    611      1.15       cgd 	if (error == ERESTART)
    612      1.15       cgd 		error = EINTR;
    613      1.15       cgd 	if (error == EWOULDBLOCK)
    614      1.15       cgd 		error = 0;
    615      1.15       cgd 	if (error == 0) {
    616  1.24.4.1   mycroft #define	putbits(name, x) \
    617  1.24.4.1   mycroft 		if (SCARG(uap, name)) { \
    618  1.24.4.1   mycroft 			error = copyout(bits + ni * x, (caddr_t)SCARG(uap, name), ni); \
    619  1.24.4.1   mycroft 			if (error) \
    620  1.24.4.1   mycroft 				goto out; \
    621  1.24.4.1   mycroft 		}
    622  1.24.4.1   mycroft 		putbits(in, 3);
    623  1.24.4.1   mycroft 		putbits(ou, 4);
    624  1.24.4.1   mycroft 		putbits(ex, 5);
    625      1.15       cgd #undef putbits
    626      1.15       cgd 	}
    627  1.24.4.1   mycroft out:
    628  1.24.4.1   mycroft 	if (ni * 6 > sizeof(smallbits))
    629  1.24.4.1   mycroft 		free(bits, M_TEMP);
    630      1.15       cgd 	return (error);
    631      1.15       cgd }
    632      1.15       cgd 
    633      1.22  christos int
    634  1.24.4.1   mycroft selscan(p, ibitp, obitp, nfd, retval)
    635      1.15       cgd 	struct proc *p;
    636  1.24.4.1   mycroft 	fd_mask *ibitp, *obitp;
    637      1.16       cgd 	int nfd;
    638      1.16       cgd 	register_t *retval;
    639      1.15       cgd {
    640      1.15       cgd 	register struct filedesc *fdp = p->p_fd;
    641      1.15       cgd 	register int msk, i, j, fd;
    642  1.24.4.1   mycroft 	register fd_mask ibits, obits;
    643      1.15       cgd 	struct file *fp;
    644      1.15       cgd 	int n = 0;
    645      1.15       cgd 	static int flag[3] = { FREAD, FWRITE, 0 };
    646      1.15       cgd 
    647      1.15       cgd 	for (msk = 0; msk < 3; msk++) {
    648      1.15       cgd 		for (i = 0; i < nfd; i += NFDBITS) {
    649  1.24.4.1   mycroft 			ibits = *ibitp++;
    650  1.24.4.1   mycroft 			obits = 0;
    651  1.24.4.1   mycroft 			while ((j = ffs(ibits)) && (fd = i + --j) < nfd) {
    652  1.24.4.1   mycroft 				ibits &= ~(1 << j);
    653      1.15       cgd 				fp = fdp->fd_ofiles[fd];
    654      1.15       cgd 				if (fp == NULL)
    655      1.15       cgd 					return (EBADF);
    656      1.15       cgd 				if ((*fp->f_ops->fo_select)(fp, flag[msk], p)) {
    657  1.24.4.1   mycroft 					obits |= (1 << j);
    658      1.15       cgd 					n++;
    659      1.15       cgd 				}
    660      1.15       cgd 			}
    661  1.24.4.1   mycroft 			*obitp++ = obits;
    662      1.15       cgd 		}
    663      1.15       cgd 	}
    664      1.15       cgd 	*retval = n;
    665      1.15       cgd 	return (0);
    666      1.15       cgd }
    667      1.15       cgd 
    668      1.15       cgd /*ARGSUSED*/
    669      1.22  christos int
    670      1.15       cgd seltrue(dev, flag, p)
    671      1.15       cgd 	dev_t dev;
    672      1.15       cgd 	int flag;
    673      1.15       cgd 	struct proc *p;
    674      1.15       cgd {
    675      1.15       cgd 
    676      1.15       cgd 	return (1);
    677      1.15       cgd }
    678      1.15       cgd 
    679      1.15       cgd /*
    680      1.15       cgd  * Record a select request.
    681      1.15       cgd  */
    682      1.15       cgd void
    683      1.15       cgd selrecord(selector, sip)
    684      1.15       cgd 	struct proc *selector;
    685      1.15       cgd 	struct selinfo *sip;
    686      1.15       cgd {
    687      1.15       cgd 	struct proc *p;
    688      1.15       cgd 	pid_t mypid;
    689      1.15       cgd 
    690      1.15       cgd 	mypid = selector->p_pid;
    691      1.15       cgd 	if (sip->si_pid == mypid)
    692      1.15       cgd 		return;
    693      1.15       cgd 	if (sip->si_pid && (p = pfind(sip->si_pid)) &&
    694      1.15       cgd 	    p->p_wchan == (caddr_t)&selwait)
    695      1.15       cgd 		sip->si_flags |= SI_COLL;
    696      1.15       cgd 	else
    697      1.15       cgd 		sip->si_pid = mypid;
    698      1.15       cgd }
    699      1.15       cgd 
    700      1.15       cgd /*
    701      1.15       cgd  * Do a wakeup when a selectable event occurs.
    702      1.15       cgd  */
    703      1.15       cgd void
    704      1.15       cgd selwakeup(sip)
    705      1.15       cgd 	register struct selinfo *sip;
    706      1.15       cgd {
    707      1.15       cgd 	register struct proc *p;
    708      1.15       cgd 	int s;
    709      1.15       cgd 
    710      1.15       cgd 	if (sip->si_pid == 0)
    711      1.15       cgd 		return;
    712      1.15       cgd 	if (sip->si_flags & SI_COLL) {
    713      1.15       cgd 		nselcoll++;
    714      1.15       cgd 		sip->si_flags &= ~SI_COLL;
    715      1.15       cgd 		wakeup((caddr_t)&selwait);
    716      1.15       cgd 	}
    717      1.15       cgd 	p = pfind(sip->si_pid);
    718      1.15       cgd 	sip->si_pid = 0;
    719      1.15       cgd 	if (p != NULL) {
    720      1.15       cgd 		s = splhigh();
    721      1.15       cgd 		if (p->p_wchan == (caddr_t)&selwait) {
    722      1.15       cgd 			if (p->p_stat == SSLEEP)
    723      1.15       cgd 				setrunnable(p);
    724      1.15       cgd 			else
    725      1.15       cgd 				unsleep(p);
    726      1.15       cgd 		} else if (p->p_flag & P_SELECT)
    727      1.15       cgd 			p->p_flag &= ~P_SELECT;
    728      1.15       cgd 		splx(s);
    729      1.15       cgd 	}
    730      1.15       cgd }
    731