Home | History | Annotate | Line # | Download | only in kern
sys_generic.c revision 1.57.4.1
      1  1.57.4.1   thorpej /*	$NetBSD: sys_generic.c,v 1.57.4.1 2001/09/07 04:45:37 thorpej 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.36      fvdl  *	@(#)sys_generic.c	8.9 (Berkeley) 2/14/95
     41      1.15       cgd  */
     42      1.37   thorpej 
     43      1.37   thorpej #include "opt_ktrace.h"
     44      1.15       cgd 
     45      1.15       cgd #include <sys/param.h>
     46      1.15       cgd #include <sys/systm.h>
     47      1.15       cgd #include <sys/filedesc.h>
     48      1.15       cgd #include <sys/ioctl.h>
     49      1.15       cgd #include <sys/file.h>
     50      1.15       cgd #include <sys/proc.h>
     51      1.15       cgd #include <sys/socketvar.h>
     52      1.22  christos #include <sys/signalvar.h>
     53      1.15       cgd #include <sys/uio.h>
     54      1.15       cgd #include <sys/kernel.h>
     55      1.15       cgd #include <sys/stat.h>
     56      1.15       cgd #include <sys/malloc.h>
     57      1.28   mycroft #include <sys/poll.h>
     58      1.15       cgd #ifdef KTRACE
     59      1.15       cgd #include <sys/ktrace.h>
     60      1.15       cgd #endif
     61      1.15       cgd 
     62      1.16       cgd #include <sys/mount.h>
     63      1.16       cgd #include <sys/syscallargs.h>
     64      1.22  christos 
     65      1.25   mycroft int selscan __P((struct proc *, fd_mask *, fd_mask *, int, register_t *));
     66      1.28   mycroft int pollscan __P((struct proc *, struct pollfd *, int, register_t *));
     67      1.22  christos 
     68      1.15       cgd /*
     69      1.15       cgd  * Read system call.
     70      1.15       cgd  */
     71      1.15       cgd /* ARGSUSED */
     72      1.22  christos int
     73      1.53     lukem sys_read(struct proc *p, void *v, register_t *retval)
     74      1.20   thorpej {
     75      1.47  augustss 	struct sys_read_args /* {
     76      1.53     lukem 		syscallarg(int)		fd;
     77      1.53     lukem 		syscallarg(void *)	buf;
     78      1.53     lukem 		syscallarg(size_t)	nbyte;
     79      1.20   thorpej 	} */ *uap = v;
     80      1.53     lukem 	int		fd;
     81      1.53     lukem 	struct file	*fp;
     82      1.53     lukem 	struct filedesc	*fdp;
     83      1.39   thorpej 
     84      1.53     lukem 	fd = SCARG(uap, fd);
     85      1.53     lukem 	fdp = p->p_fd;
     86      1.56   thorpej 
     87      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
     88      1.56   thorpej 		return (EBADF);
     89      1.56   thorpej 
     90      1.56   thorpej 	if ((fp->f_flag & FREAD) == 0)
     91      1.39   thorpej 		return (EBADF);
     92      1.39   thorpej 
     93      1.45   thorpej 	FILE_USE(fp);
     94      1.45   thorpej 
     95      1.45   thorpej 	/* dofileread() will unuse the descriptor for us */
     96      1.39   thorpej 	return (dofileread(p, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte),
     97      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
     98      1.39   thorpej }
     99      1.39   thorpej 
    100      1.39   thorpej int
    101      1.53     lukem dofileread(struct proc *p, int fd, struct file *fp, void *buf, size_t nbyte,
    102      1.53     lukem 	off_t *offset, int flags, register_t *retval)
    103      1.53     lukem {
    104      1.53     lukem 	struct uio	auio;
    105      1.53     lukem 	struct iovec	aiov;
    106      1.53     lukem 	long		cnt, error;
    107      1.15       cgd #ifdef KTRACE
    108      1.53     lukem 	struct iovec	ktriov;
    109      1.15       cgd #endif
    110      1.53     lukem 	error = 0;
    111      1.15       cgd 
    112      1.39   thorpej 	aiov.iov_base = (caddr_t)buf;
    113      1.39   thorpej 	aiov.iov_len = nbyte;
    114      1.15       cgd 	auio.uio_iov = &aiov;
    115      1.15       cgd 	auio.uio_iovcnt = 1;
    116      1.39   thorpej 	auio.uio_resid = nbyte;
    117      1.15       cgd 	auio.uio_rw = UIO_READ;
    118      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    119      1.15       cgd 	auio.uio_procp = p;
    120      1.40   thorpej 
    121      1.40   thorpej 	/*
    122      1.40   thorpej 	 * Reads return ssize_t because -1 is returned on error.  Therefore
    123      1.40   thorpej 	 * we must restrict the length to SSIZE_MAX to avoid garbage return
    124      1.40   thorpej 	 * values.
    125      1.40   thorpej 	 */
    126      1.45   thorpej 	if (auio.uio_resid > SSIZE_MAX) {
    127      1.45   thorpej 		error = EINVAL;
    128      1.45   thorpej 		goto out;
    129      1.45   thorpej 	}
    130      1.40   thorpej 
    131      1.15       cgd #ifdef KTRACE
    132      1.15       cgd 	/*
    133      1.15       cgd 	 * if tracing, save a copy of iovec
    134      1.15       cgd 	 */
    135      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))
    136      1.15       cgd 		ktriov = aiov;
    137      1.15       cgd #endif
    138      1.38   thorpej 	cnt = auio.uio_resid;
    139      1.39   thorpej 	error = (*fp->f_ops->fo_read)(fp, offset, &auio, fp->f_cred, flags);
    140      1.22  christos 	if (error)
    141      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    142      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    143      1.15       cgd 			error = 0;
    144      1.15       cgd 	cnt -= auio.uio_resid;
    145      1.15       cgd #ifdef KTRACE
    146      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO) && error == 0)
    147      1.48  sommerfe 		ktrgenio(p, fd, UIO_READ, &ktriov, cnt, error);
    148      1.15       cgd #endif
    149      1.15       cgd 	*retval = cnt;
    150      1.45   thorpej  out:
    151      1.45   thorpej 	FILE_UNUSE(fp, p);
    152      1.15       cgd 	return (error);
    153      1.15       cgd }
    154      1.15       cgd 
    155      1.15       cgd /*
    156      1.15       cgd  * Scatter read system call.
    157      1.15       cgd  */
    158      1.22  christos int
    159      1.53     lukem sys_readv(struct proc *p, void *v, register_t *retval)
    160      1.20   thorpej {
    161      1.47  augustss 	struct sys_readv_args /* {
    162      1.53     lukem 		syscallarg(int)				fd;
    163      1.53     lukem 		syscallarg(const struct iovec *)	iovp;
    164      1.53     lukem 		syscallarg(int)				iovcnt;
    165      1.20   thorpej 	} */ *uap = v;
    166      1.53     lukem 	int		fd;
    167      1.53     lukem 	struct file	*fp;
    168      1.53     lukem 	struct filedesc	*fdp;
    169      1.39   thorpej 
    170      1.53     lukem 	fd = SCARG(uap, fd);
    171      1.53     lukem 	fdp = p->p_fd;
    172      1.56   thorpej 
    173      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    174      1.56   thorpej 		return (EBADF);
    175      1.56   thorpej 
    176      1.56   thorpej 	if ((fp->f_flag & FREAD) == 0)
    177      1.39   thorpej 		return (EBADF);
    178      1.39   thorpej 
    179      1.45   thorpej 	FILE_USE(fp);
    180      1.45   thorpej 
    181      1.45   thorpej 	/* dofilereadv() will unuse the descriptor for us */
    182      1.39   thorpej 	return (dofilereadv(p, fd, fp, SCARG(uap, iovp), SCARG(uap, iovcnt),
    183      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    184      1.39   thorpej }
    185      1.39   thorpej 
    186      1.39   thorpej int
    187      1.53     lukem dofilereadv(struct proc *p, int fd, struct file *fp, const struct iovec *iovp,
    188      1.53     lukem 	int iovcnt, off_t *offset, int flags, register_t *retval)
    189      1.53     lukem {
    190      1.53     lukem 	struct uio	auio;
    191      1.53     lukem 	struct iovec	*iov, *needfree, aiov[UIO_SMALLIOV];
    192      1.53     lukem 	long		i, cnt, error;
    193      1.53     lukem 	u_int		iovlen;
    194      1.15       cgd #ifdef KTRACE
    195      1.53     lukem 	struct iovec	*ktriov;
    196      1.15       cgd #endif
    197      1.15       cgd 
    198      1.53     lukem 	error = 0;
    199      1.53     lukem #ifdef KTRACE
    200      1.53     lukem 	ktriov = NULL;
    201      1.53     lukem #endif
    202      1.15       cgd 	/* note: can't use iovlen until iovcnt is validated */
    203      1.42     perry 	iovlen = iovcnt * sizeof(struct iovec);
    204      1.34   mycroft 	if ((u_int)iovcnt > UIO_SMALLIOV) {
    205      1.45   thorpej 		if ((u_int)iovcnt > IOV_MAX) {
    206      1.45   thorpej 			error = EINVAL;
    207      1.45   thorpej 			goto out;
    208      1.45   thorpej 		}
    209      1.50   thorpej 		iov = malloc(iovlen, M_IOV, M_WAITOK);
    210      1.15       cgd 		needfree = iov;
    211      1.41    kleink 	} else if ((u_int)iovcnt > 0) {
    212      1.15       cgd 		iov = aiov;
    213      1.15       cgd 		needfree = NULL;
    214      1.45   thorpej 	} else {
    215      1.45   thorpej 		error = EINVAL;
    216      1.45   thorpej 		goto out;
    217      1.45   thorpej 	}
    218      1.41    kleink 
    219      1.15       cgd 	auio.uio_iov = iov;
    220      1.34   mycroft 	auio.uio_iovcnt = iovcnt;
    221      1.15       cgd 	auio.uio_rw = UIO_READ;
    222      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    223      1.15       cgd 	auio.uio_procp = p;
    224      1.39   thorpej 	error = copyin(iovp, iov, iovlen);
    225      1.22  christos 	if (error)
    226      1.15       cgd 		goto done;
    227      1.15       cgd 	auio.uio_resid = 0;
    228      1.34   mycroft 	for (i = 0; i < iovcnt; i++) {
    229      1.15       cgd 		auio.uio_resid += iov->iov_len;
    230      1.40   thorpej 		/*
    231      1.40   thorpej 		 * Reads return ssize_t because -1 is returned on error.
    232      1.40   thorpej 		 * Therefore we must restrict the length to SSIZE_MAX to
    233      1.40   thorpej 		 * avoid garbage return values.
    234      1.40   thorpej 		 */
    235      1.40   thorpej 		if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
    236      1.15       cgd 			error = EINVAL;
    237      1.15       cgd 			goto done;
    238      1.15       cgd 		}
    239      1.15       cgd 		iov++;
    240      1.15       cgd 	}
    241      1.15       cgd #ifdef KTRACE
    242      1.15       cgd 	/*
    243      1.15       cgd 	 * if tracing, save a copy of iovec
    244      1.15       cgd 	 */
    245      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))  {
    246      1.50   thorpej 		ktriov = malloc(iovlen, M_TEMP, M_WAITOK);
    247      1.44     perry 		memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
    248      1.15       cgd 	}
    249      1.15       cgd #endif
    250      1.15       cgd 	cnt = auio.uio_resid;
    251      1.39   thorpej 	error = (*fp->f_ops->fo_read)(fp, offset, &auio, fp->f_cred, flags);
    252      1.22  christos 	if (error)
    253      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    254      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    255      1.15       cgd 			error = 0;
    256      1.15       cgd 	cnt -= auio.uio_resid;
    257      1.15       cgd #ifdef KTRACE
    258      1.34   mycroft 	if (KTRPOINT(p, KTR_GENIO))
    259      1.34   mycroft 		if (error == 0) {
    260      1.48  sommerfe 			ktrgenio(p, fd, UIO_READ, ktriov, cnt, error);
    261      1.50   thorpej 		free(ktriov, M_TEMP);
    262      1.15       cgd 	}
    263      1.15       cgd #endif
    264      1.15       cgd 	*retval = cnt;
    265      1.45   thorpej  done:
    266      1.15       cgd 	if (needfree)
    267      1.50   thorpej 		free(needfree, M_IOV);
    268      1.45   thorpej  out:
    269      1.45   thorpej 	FILE_UNUSE(fp, p);
    270      1.15       cgd 	return (error);
    271      1.15       cgd }
    272      1.15       cgd 
    273      1.15       cgd /*
    274      1.15       cgd  * Write system call
    275      1.15       cgd  */
    276      1.22  christos int
    277      1.53     lukem sys_write(struct proc *p, void *v, register_t *retval)
    278      1.20   thorpej {
    279      1.47  augustss 	struct sys_write_args /* {
    280      1.53     lukem 		syscallarg(int)			fd;
    281      1.53     lukem 		syscallarg(const void *)	buf;
    282      1.53     lukem 		syscallarg(size_t)		nbyte;
    283      1.20   thorpej 	} */ *uap = v;
    284      1.53     lukem 	int		fd;
    285      1.53     lukem 	struct file	*fp;
    286      1.53     lukem 	struct filedesc	*fdp;
    287      1.39   thorpej 
    288      1.53     lukem 	fd = SCARG(uap, fd);
    289      1.53     lukem 	fdp = p->p_fd;
    290      1.56   thorpej 
    291      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    292      1.56   thorpej 		return (EBADF);
    293      1.56   thorpej 
    294      1.56   thorpej 	if ((fp->f_flag & FWRITE) == 0)
    295      1.39   thorpej 		return (EBADF);
    296      1.39   thorpej 
    297      1.45   thorpej 	FILE_USE(fp);
    298      1.45   thorpej 
    299      1.45   thorpej 	/* dofilewrite() will unuse the descriptor for us */
    300      1.39   thorpej 	return (dofilewrite(p, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte),
    301      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    302      1.39   thorpej }
    303      1.39   thorpej 
    304      1.39   thorpej int
    305      1.53     lukem dofilewrite(struct proc *p, int fd, struct file *fp, const void *buf,
    306      1.53     lukem 	size_t nbyte, off_t *offset, int flags, register_t *retval)
    307      1.53     lukem {
    308      1.53     lukem 	struct uio	auio;
    309      1.53     lukem 	struct iovec	aiov;
    310      1.53     lukem 	long		cnt, error;
    311      1.15       cgd #ifdef KTRACE
    312      1.53     lukem 	struct iovec	ktriov;
    313      1.15       cgd #endif
    314      1.15       cgd 
    315      1.53     lukem 	error = 0;
    316      1.39   thorpej 	aiov.iov_base = (caddr_t)buf;		/* XXX kills const */
    317      1.39   thorpej 	aiov.iov_len = nbyte;
    318      1.15       cgd 	auio.uio_iov = &aiov;
    319      1.15       cgd 	auio.uio_iovcnt = 1;
    320      1.39   thorpej 	auio.uio_resid = nbyte;
    321      1.15       cgd 	auio.uio_rw = UIO_WRITE;
    322      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    323      1.15       cgd 	auio.uio_procp = p;
    324      1.40   thorpej 
    325      1.40   thorpej 	/*
    326      1.40   thorpej 	 * Writes return ssize_t because -1 is returned on error.  Therefore
    327      1.40   thorpej 	 * we must restrict the length to SSIZE_MAX to avoid garbage return
    328      1.40   thorpej 	 * values.
    329      1.40   thorpej 	 */
    330      1.45   thorpej 	if (auio.uio_resid > SSIZE_MAX) {
    331      1.45   thorpej 		error = EINVAL;
    332      1.45   thorpej 		goto out;
    333      1.45   thorpej 	}
    334      1.40   thorpej 
    335      1.15       cgd #ifdef KTRACE
    336      1.15       cgd 	/*
    337      1.15       cgd 	 * if tracing, save a copy of iovec
    338      1.15       cgd 	 */
    339      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))
    340      1.15       cgd 		ktriov = aiov;
    341      1.15       cgd #endif
    342      1.38   thorpej 	cnt = auio.uio_resid;
    343      1.39   thorpej 	error = (*fp->f_ops->fo_write)(fp, offset, &auio, fp->f_cred, flags);
    344      1.22  christos 	if (error) {
    345      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    346      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    347      1.15       cgd 			error = 0;
    348      1.15       cgd 		if (error == EPIPE)
    349      1.15       cgd 			psignal(p, SIGPIPE);
    350      1.15       cgd 	}
    351      1.15       cgd 	cnt -= auio.uio_resid;
    352      1.15       cgd #ifdef KTRACE
    353      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO) && error == 0)
    354      1.48  sommerfe 		ktrgenio(p, fd, UIO_WRITE, &ktriov, cnt, error);
    355      1.15       cgd #endif
    356      1.15       cgd 	*retval = cnt;
    357      1.45   thorpej  out:
    358      1.45   thorpej 	FILE_UNUSE(fp, p);
    359      1.15       cgd 	return (error);
    360      1.15       cgd }
    361      1.15       cgd 
    362      1.15       cgd /*
    363      1.15       cgd  * Gather write system call
    364      1.15       cgd  */
    365      1.22  christos int
    366      1.53     lukem sys_writev(struct proc *p, void *v, register_t *retval)
    367      1.20   thorpej {
    368      1.47  augustss 	struct sys_writev_args /* {
    369      1.53     lukem 		syscallarg(int)				fd;
    370      1.53     lukem 		syscallarg(const struct iovec *)	iovp;
    371      1.53     lukem 		syscallarg(int)				iovcnt;
    372      1.20   thorpej 	} */ *uap = v;
    373      1.53     lukem 	int		fd;
    374      1.53     lukem 	struct file	*fp;
    375      1.53     lukem 	struct filedesc	*fdp;
    376      1.39   thorpej 
    377      1.53     lukem 	fd = SCARG(uap, fd);
    378      1.53     lukem 	fdp = p->p_fd;
    379      1.56   thorpej 
    380      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    381      1.56   thorpej 		return (EBADF);
    382      1.56   thorpej 
    383      1.56   thorpej 	if ((fp->f_flag & FWRITE) == 0)
    384      1.39   thorpej 		return (EBADF);
    385      1.39   thorpej 
    386      1.45   thorpej 	FILE_USE(fp);
    387      1.45   thorpej 
    388      1.45   thorpej 	/* dofilewritev() will unuse the descriptor for us */
    389      1.39   thorpej 	return (dofilewritev(p, fd, fp, SCARG(uap, iovp), SCARG(uap, iovcnt),
    390      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    391      1.39   thorpej }
    392      1.39   thorpej 
    393      1.39   thorpej int
    394      1.53     lukem dofilewritev(struct proc *p, int fd, struct file *fp, const struct iovec *iovp,
    395      1.53     lukem 	int iovcnt, off_t *offset, int flags, register_t *retval)
    396      1.53     lukem {
    397      1.53     lukem 	struct uio	auio;
    398      1.53     lukem 	struct iovec	*iov, *needfree, aiov[UIO_SMALLIOV];
    399      1.53     lukem 	long		i, cnt, error;
    400      1.53     lukem 	u_int		iovlen;
    401      1.15       cgd #ifdef KTRACE
    402      1.53     lukem 	struct iovec	*ktriov;
    403      1.15       cgd #endif
    404      1.15       cgd 
    405      1.53     lukem 	error = 0;
    406      1.53     lukem #ifdef KTRACE
    407      1.53     lukem 	ktriov = NULL;
    408      1.53     lukem #endif
    409      1.15       cgd 	/* note: can't use iovlen until iovcnt is validated */
    410      1.42     perry 	iovlen = iovcnt * sizeof(struct iovec);
    411      1.34   mycroft 	if ((u_int)iovcnt > UIO_SMALLIOV) {
    412      1.43    kleink 		if ((u_int)iovcnt > IOV_MAX)
    413      1.15       cgd 			return (EINVAL);
    414      1.50   thorpej 		iov = malloc(iovlen, M_IOV, M_WAITOK);
    415      1.15       cgd 		needfree = iov;
    416      1.41    kleink 	} else if ((u_int)iovcnt > 0) {
    417      1.15       cgd 		iov = aiov;
    418      1.15       cgd 		needfree = NULL;
    419      1.45   thorpej 	} else {
    420      1.45   thorpej 		error = EINVAL;
    421      1.45   thorpej 		goto out;
    422      1.45   thorpej 	}
    423      1.41    kleink 
    424      1.15       cgd 	auio.uio_iov = iov;
    425      1.34   mycroft 	auio.uio_iovcnt = iovcnt;
    426      1.15       cgd 	auio.uio_rw = UIO_WRITE;
    427      1.15       cgd 	auio.uio_segflg = UIO_USERSPACE;
    428      1.15       cgd 	auio.uio_procp = p;
    429      1.39   thorpej 	error = copyin(iovp, iov, iovlen);
    430      1.22  christos 	if (error)
    431      1.15       cgd 		goto done;
    432      1.15       cgd 	auio.uio_resid = 0;
    433      1.34   mycroft 	for (i = 0; i < iovcnt; i++) {
    434      1.15       cgd 		auio.uio_resid += iov->iov_len;
    435      1.40   thorpej 		/*
    436      1.40   thorpej 		 * Writes return ssize_t because -1 is returned on error.
    437      1.40   thorpej 		 * Therefore we must restrict the length to SSIZE_MAX to
    438      1.40   thorpej 		 * avoid garbage return values.
    439      1.40   thorpej 		 */
    440      1.40   thorpej 		if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
    441      1.15       cgd 			error = EINVAL;
    442      1.15       cgd 			goto done;
    443      1.15       cgd 		}
    444      1.15       cgd 		iov++;
    445      1.15       cgd 	}
    446      1.15       cgd #ifdef KTRACE
    447      1.15       cgd 	/*
    448      1.15       cgd 	 * if tracing, save a copy of iovec
    449      1.15       cgd 	 */
    450      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))  {
    451      1.50   thorpej 		ktriov = malloc(iovlen, M_TEMP, M_WAITOK);
    452      1.44     perry 		memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
    453      1.15       cgd 	}
    454      1.15       cgd #endif
    455      1.15       cgd 	cnt = auio.uio_resid;
    456      1.39   thorpej 	error = (*fp->f_ops->fo_write)(fp, offset, &auio, fp->f_cred, flags);
    457      1.22  christos 	if (error) {
    458      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    459      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    460      1.15       cgd 			error = 0;
    461      1.15       cgd 		if (error == EPIPE)
    462      1.15       cgd 			psignal(p, SIGPIPE);
    463      1.15       cgd 	}
    464      1.15       cgd 	cnt -= auio.uio_resid;
    465      1.15       cgd #ifdef KTRACE
    466      1.34   mycroft 	if (KTRPOINT(p, KTR_GENIO))
    467      1.34   mycroft 		if (error == 0) {
    468      1.48  sommerfe 			ktrgenio(p, fd, UIO_WRITE, ktriov, cnt, error);
    469      1.50   thorpej 		free(ktriov, M_TEMP);
    470      1.15       cgd 	}
    471      1.15       cgd #endif
    472      1.15       cgd 	*retval = cnt;
    473      1.45   thorpej  done:
    474      1.15       cgd 	if (needfree)
    475      1.50   thorpej 		free(needfree, M_IOV);
    476      1.45   thorpej  out:
    477      1.45   thorpej 	FILE_UNUSE(fp, p);
    478      1.15       cgd 	return (error);
    479      1.15       cgd }
    480      1.15       cgd 
    481      1.15       cgd /*
    482      1.15       cgd  * Ioctl system call
    483      1.15       cgd  */
    484      1.15       cgd /* ARGSUSED */
    485      1.22  christos int
    486      1.53     lukem sys_ioctl(struct proc *p, void *v, register_t *retval)
    487      1.20   thorpej {
    488      1.47  augustss 	struct sys_ioctl_args /* {
    489      1.53     lukem 		syscallarg(int)		fd;
    490      1.53     lukem 		syscallarg(u_long)	com;
    491      1.53     lukem 		syscallarg(caddr_t)	data;
    492      1.20   thorpej 	} */ *uap = v;
    493      1.53     lukem 	struct file	*fp;
    494      1.53     lukem 	struct filedesc	*fdp;
    495      1.53     lukem 	u_long		com;
    496      1.53     lukem 	int		error;
    497      1.53     lukem 	u_int		size;
    498      1.53     lukem 	caddr_t		data, memp;
    499      1.53     lukem 	int		tmp;
    500      1.53     lukem #define	STK_PARAMS	128
    501      1.53     lukem 	u_long		stkbuf[STK_PARAMS/sizeof(u_long)];
    502      1.15       cgd 
    503      1.53     lukem 	error = 0;
    504      1.15       cgd 	fdp = p->p_fd;
    505      1.56   thorpej 
    506      1.56   thorpej 	if ((fp = fd_getfile(fdp, SCARG(uap, fd))) == NULL)
    507      1.15       cgd 		return (EBADF);
    508      1.15       cgd 
    509      1.45   thorpej 	FILE_USE(fp);
    510      1.45   thorpej 
    511      1.45   thorpej 	if ((fp->f_flag & (FREAD | FWRITE)) == 0) {
    512      1.45   thorpej 		error = EBADF;
    513      1.45   thorpej 		goto out;
    514      1.45   thorpej 	}
    515      1.15       cgd 
    516      1.16       cgd 	switch (com = SCARG(uap, com)) {
    517      1.15       cgd 	case FIONCLEX:
    518      1.16       cgd 		fdp->fd_ofileflags[SCARG(uap, fd)] &= ~UF_EXCLOSE;
    519      1.45   thorpej 		goto out;
    520      1.45   thorpej 
    521      1.15       cgd 	case FIOCLEX:
    522      1.16       cgd 		fdp->fd_ofileflags[SCARG(uap, fd)] |= UF_EXCLOSE;
    523      1.45   thorpej 		goto out;
    524      1.15       cgd 	}
    525      1.15       cgd 
    526      1.15       cgd 	/*
    527      1.15       cgd 	 * Interpret high order word to find amount of data to be
    528      1.15       cgd 	 * copied to/from the user's address space.
    529      1.15       cgd 	 */
    530      1.15       cgd 	size = IOCPARM_LEN(com);
    531      1.45   thorpej 	if (size > IOCPARM_MAX) {
    532      1.45   thorpej 		error = ENOTTY;
    533      1.45   thorpej 		goto out;
    534      1.45   thorpej 	}
    535      1.15       cgd 	memp = NULL;
    536      1.42     perry 	if (size > sizeof(stkbuf)) {
    537      1.15       cgd 		memp = (caddr_t)malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
    538      1.15       cgd 		data = memp;
    539      1.15       cgd 	} else
    540      1.46   darrenr 		data = (caddr_t)stkbuf;
    541      1.15       cgd 	if (com&IOC_IN) {
    542      1.15       cgd 		if (size) {
    543      1.31       cgd 			error = copyin(SCARG(uap, data), data, size);
    544      1.15       cgd 			if (error) {
    545      1.15       cgd 				if (memp)
    546      1.15       cgd 					free(memp, M_IOCTLOPS);
    547      1.45   thorpej 				goto out;
    548      1.15       cgd 			}
    549      1.15       cgd 		} else
    550      1.16       cgd 			*(caddr_t *)data = SCARG(uap, data);
    551      1.15       cgd 	} else if ((com&IOC_OUT) && size)
    552      1.15       cgd 		/*
    553      1.15       cgd 		 * Zero the buffer so the user always
    554      1.15       cgd 		 * gets back something deterministic.
    555      1.15       cgd 		 */
    556      1.44     perry 		memset(data, 0, size);
    557      1.15       cgd 	else if (com&IOC_VOID)
    558      1.16       cgd 		*(caddr_t *)data = SCARG(uap, data);
    559      1.15       cgd 
    560      1.15       cgd 	switch (com) {
    561      1.15       cgd 
    562      1.15       cgd 	case FIONBIO:
    563      1.22  christos 		if ((tmp = *(int *)data) != 0)
    564      1.15       cgd 			fp->f_flag |= FNONBLOCK;
    565      1.15       cgd 		else
    566      1.15       cgd 			fp->f_flag &= ~FNONBLOCK;
    567      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, (caddr_t)&tmp, p);
    568      1.15       cgd 		break;
    569      1.15       cgd 
    570      1.15       cgd 	case FIOASYNC:
    571      1.22  christos 		if ((tmp = *(int *)data) != 0)
    572      1.15       cgd 			fp->f_flag |= FASYNC;
    573      1.15       cgd 		else
    574      1.15       cgd 			fp->f_flag &= ~FASYNC;
    575      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, (caddr_t)&tmp, p);
    576      1.15       cgd 		break;
    577      1.15       cgd 
    578      1.15       cgd 	case FIOSETOWN:
    579      1.15       cgd 		tmp = *(int *)data;
    580      1.15       cgd 		if (fp->f_type == DTYPE_SOCKET) {
    581      1.15       cgd 			((struct socket *)fp->f_data)->so_pgid = tmp;
    582      1.15       cgd 			error = 0;
    583      1.15       cgd 			break;
    584      1.15       cgd 		}
    585      1.15       cgd 		if (tmp <= 0) {
    586      1.15       cgd 			tmp = -tmp;
    587      1.15       cgd 		} else {
    588      1.15       cgd 			struct proc *p1 = pfind(tmp);
    589      1.15       cgd 			if (p1 == 0) {
    590      1.15       cgd 				error = ESRCH;
    591      1.15       cgd 				break;
    592      1.15       cgd 			}
    593      1.15       cgd 			tmp = p1->p_pgrp->pg_id;
    594      1.15       cgd 		}
    595      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)
    596      1.24       cgd 			(fp, TIOCSPGRP, (caddr_t)&tmp, p);
    597      1.15       cgd 		break;
    598      1.15       cgd 
    599      1.15       cgd 	case FIOGETOWN:
    600      1.15       cgd 		if (fp->f_type == DTYPE_SOCKET) {
    601      1.15       cgd 			error = 0;
    602      1.15       cgd 			*(int *)data = ((struct socket *)fp->f_data)->so_pgid;
    603      1.15       cgd 			break;
    604      1.15       cgd 		}
    605      1.17       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, TIOCGPGRP, data, p);
    606      1.55     lukem 		if (error == 0)
    607      1.55     lukem 			*(int *)data = -*(int *)data;
    608      1.15       cgd 		break;
    609      1.15       cgd 
    610      1.15       cgd 	default:
    611      1.15       cgd 		error = (*fp->f_ops->fo_ioctl)(fp, com, data, p);
    612      1.15       cgd 		/*
    613      1.15       cgd 		 * Copy any data to user, size was
    614      1.15       cgd 		 * already set and checked above.
    615      1.15       cgd 		 */
    616      1.15       cgd 		if (error == 0 && (com&IOC_OUT) && size)
    617      1.31       cgd 			error = copyout(data, SCARG(uap, data), size);
    618      1.15       cgd 		break;
    619      1.15       cgd 	}
    620      1.15       cgd 	if (memp)
    621      1.15       cgd 		free(memp, M_IOCTLOPS);
    622      1.45   thorpej  out:
    623      1.45   thorpej 	FILE_UNUSE(fp, p);
    624      1.15       cgd 	return (error);
    625      1.15       cgd }
    626      1.15       cgd 
    627      1.15       cgd int	selwait, nselcoll;
    628      1.15       cgd 
    629      1.15       cgd /*
    630      1.15       cgd  * Select system call.
    631      1.15       cgd  */
    632      1.22  christos int
    633      1.53     lukem sys_select(struct proc *p, void *v, register_t *retval)
    634      1.20   thorpej {
    635      1.47  augustss 	struct sys_select_args /* {
    636      1.53     lukem 		syscallarg(int)			nd;
    637      1.53     lukem 		syscallarg(fd_set *)		in;
    638      1.53     lukem 		syscallarg(fd_set *)		ou;
    639      1.53     lukem 		syscallarg(fd_set *)		ex;
    640      1.53     lukem 		syscallarg(struct timeval *)	tv;
    641      1.20   thorpej 	} */ *uap = v;
    642      1.53     lukem 	caddr_t		bits;
    643      1.53     lukem 	char		smallbits[howmany(FD_SETSIZE, NFDBITS) *
    644      1.53     lukem 			    sizeof(fd_mask) * 6];
    645      1.53     lukem 	struct		timeval atv;
    646      1.53     lukem 	int		s, ncoll, error, timo;
    647      1.53     lukem 	size_t		ni;
    648      1.15       cgd 
    649      1.53     lukem 	error = 0;
    650      1.35   thorpej 	if (SCARG(uap, nd) < 0)
    651      1.35   thorpej 		return (EINVAL);
    652      1.16       cgd 	if (SCARG(uap, nd) > p->p_fd->fd_nfiles) {
    653      1.16       cgd 		/* forgiving; slightly wrong */
    654      1.16       cgd 		SCARG(uap, nd) = p->p_fd->fd_nfiles;
    655      1.16       cgd 	}
    656      1.16       cgd 	ni = howmany(SCARG(uap, nd), NFDBITS) * sizeof(fd_mask);
    657      1.27   mycroft 	if (ni * 6 > sizeof(smallbits))
    658      1.25   mycroft 		bits = malloc(ni * 6, M_TEMP, M_WAITOK);
    659      1.25   mycroft 	else
    660      1.26       cgd 		bits = smallbits;
    661      1.15       cgd 
    662      1.53     lukem #define	getbits(name, x)						\
    663      1.53     lukem 	if (SCARG(uap, name)) {						\
    664      1.53     lukem 		error = copyin(SCARG(uap, name), bits + ni * x, ni);	\
    665      1.53     lukem 		if (error)						\
    666      1.53     lukem 			goto done;					\
    667      1.53     lukem 	} else								\
    668      1.44     perry 		memset(bits + ni * x, 0, ni);
    669      1.15       cgd 	getbits(in, 0);
    670      1.15       cgd 	getbits(ou, 1);
    671      1.15       cgd 	getbits(ex, 2);
    672      1.15       cgd #undef	getbits
    673      1.15       cgd 
    674      1.16       cgd 	if (SCARG(uap, tv)) {
    675      1.31       cgd 		error = copyin(SCARG(uap, tv), (caddr_t)&atv,
    676      1.42     perry 			sizeof(atv));
    677      1.15       cgd 		if (error)
    678      1.15       cgd 			goto done;
    679      1.15       cgd 		if (itimerfix(&atv)) {
    680      1.15       cgd 			error = EINVAL;
    681      1.15       cgd 			goto done;
    682      1.15       cgd 		}
    683      1.15       cgd 		s = splclock();
    684      1.19   mycroft 		timeradd(&atv, &time, &atv);
    685      1.15       cgd 		splx(s);
    686      1.15       cgd 	} else
    687      1.15       cgd 		timo = 0;
    688      1.53     lukem  retry:
    689      1.15       cgd 	ncoll = nselcoll;
    690      1.15       cgd 	p->p_flag |= P_SELECT;
    691      1.25   mycroft 	error = selscan(p, (fd_mask *)(bits + ni * 0),
    692      1.25   mycroft 			   (fd_mask *)(bits + ni * 3), SCARG(uap, nd), retval);
    693      1.15       cgd 	if (error || *retval)
    694      1.15       cgd 		goto done;
    695      1.49   thorpej 	if (SCARG(uap, tv)) {
    696      1.49   thorpej 		/*
    697      1.49   thorpej 		 * We have to recalculate the timeout on every retry.
    698      1.49   thorpej 		 */
    699      1.49   thorpej 		timo = hzto(&atv);
    700      1.49   thorpej 		if (timo <= 0)
    701      1.49   thorpej 			goto done;
    702      1.49   thorpej 	}
    703      1.52   thorpej 	s = splsched();
    704      1.15       cgd 	if ((p->p_flag & P_SELECT) == 0 || nselcoll != ncoll) {
    705      1.15       cgd 		splx(s);
    706      1.15       cgd 		goto retry;
    707      1.15       cgd 	}
    708      1.15       cgd 	p->p_flag &= ~P_SELECT;
    709      1.15       cgd 	error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "select", timo);
    710      1.15       cgd 	splx(s);
    711      1.15       cgd 	if (error == 0)
    712      1.15       cgd 		goto retry;
    713      1.53     lukem  done:
    714      1.15       cgd 	p->p_flag &= ~P_SELECT;
    715      1.15       cgd 	/* select is not restarted after signals... */
    716      1.15       cgd 	if (error == ERESTART)
    717      1.15       cgd 		error = EINTR;
    718      1.15       cgd 	if (error == EWOULDBLOCK)
    719      1.15       cgd 		error = 0;
    720      1.27   mycroft 	if (error == 0) {
    721      1.53     lukem 
    722      1.53     lukem #define	putbits(name, x)						\
    723      1.53     lukem 		if (SCARG(uap, name)) {					\
    724      1.31       cgd 			error = copyout(bits + ni * x, SCARG(uap, name), ni); \
    725      1.53     lukem 			if (error)					\
    726      1.53     lukem 				goto out;				\
    727      1.27   mycroft 		}
    728      1.25   mycroft 		putbits(in, 3);
    729      1.25   mycroft 		putbits(ou, 4);
    730      1.25   mycroft 		putbits(ex, 5);
    731      1.15       cgd #undef putbits
    732      1.15       cgd 	}
    733      1.53     lukem  out:
    734      1.27   mycroft 	if (ni * 6 > sizeof(smallbits))
    735      1.25   mycroft 		free(bits, M_TEMP);
    736      1.15       cgd 	return (error);
    737      1.15       cgd }
    738      1.15       cgd 
    739      1.22  christos int
    740      1.53     lukem selscan(struct proc *p, fd_mask *ibitp, fd_mask *obitp, int nfd,
    741      1.53     lukem 	register_t *retval)
    742      1.53     lukem {
    743      1.53     lukem 	struct filedesc	*fdp;
    744      1.53     lukem 	int		msk, i, j, fd, n;
    745      1.53     lukem 	fd_mask		ibits, obits;
    746      1.53     lukem 	struct file	*fp;
    747      1.28   mycroft 	static int flag[3] = { POLLRDNORM | POLLHUP | POLLERR,
    748      1.28   mycroft 			       POLLWRNORM | POLLHUP | POLLERR,
    749      1.28   mycroft 			       POLLRDBAND };
    750      1.15       cgd 
    751      1.53     lukem 	fdp = p->p_fd;
    752      1.53     lukem 	n = 0;
    753      1.15       cgd 	for (msk = 0; msk < 3; msk++) {
    754      1.15       cgd 		for (i = 0; i < nfd; i += NFDBITS) {
    755      1.25   mycroft 			ibits = *ibitp++;
    756      1.25   mycroft 			obits = 0;
    757      1.25   mycroft 			while ((j = ffs(ibits)) && (fd = i + --j) < nfd) {
    758      1.25   mycroft 				ibits &= ~(1 << j);
    759      1.56   thorpej 				if ((fp = fd_getfile(fdp, fd)) == NULL)
    760      1.15       cgd 					return (EBADF);
    761      1.45   thorpej 				FILE_USE(fp);
    762      1.28   mycroft 				if ((*fp->f_ops->fo_poll)(fp, flag[msk], p)) {
    763      1.25   mycroft 					obits |= (1 << j);
    764      1.15       cgd 					n++;
    765      1.15       cgd 				}
    766      1.45   thorpej 				FILE_UNUSE(fp, p);
    767      1.15       cgd 			}
    768      1.25   mycroft 			*obitp++ = obits;
    769      1.15       cgd 		}
    770      1.15       cgd 	}
    771      1.15       cgd 	*retval = n;
    772      1.15       cgd 	return (0);
    773      1.15       cgd }
    774      1.15       cgd 
    775      1.28   mycroft /*
    776      1.28   mycroft  * Poll system call.
    777      1.28   mycroft  */
    778      1.28   mycroft int
    779      1.53     lukem sys_poll(struct proc *p, void *v, register_t *retval)
    780      1.28   mycroft {
    781      1.47  augustss 	struct sys_poll_args /* {
    782      1.53     lukem 		syscallarg(struct pollfd *)	fds;
    783      1.53     lukem 		syscallarg(u_int)		nfds;
    784      1.53     lukem 		syscallarg(int)			timeout;
    785      1.28   mycroft 	} */ *uap = v;
    786      1.53     lukem 	caddr_t		bits;
    787      1.53     lukem 	char		smallbits[32 * sizeof(struct pollfd)];
    788      1.53     lukem 	struct timeval	atv;
    789      1.53     lukem 	int		s, ncoll, error, timo;
    790      1.53     lukem 	size_t		ni;
    791      1.28   mycroft 
    792      1.53     lukem 	error = 0;
    793      1.28   mycroft 	if (SCARG(uap, nfds) > p->p_fd->fd_nfiles) {
    794      1.28   mycroft 		/* forgiving; slightly wrong */
    795      1.28   mycroft 		SCARG(uap, nfds) = p->p_fd->fd_nfiles;
    796      1.28   mycroft 	}
    797      1.28   mycroft 	ni = SCARG(uap, nfds) * sizeof(struct pollfd);
    798      1.28   mycroft 	if (ni > sizeof(smallbits))
    799      1.28   mycroft 		bits = malloc(ni, M_TEMP, M_WAITOK);
    800      1.28   mycroft 	else
    801      1.28   mycroft 		bits = smallbits;
    802      1.28   mycroft 
    803      1.31       cgd 	error = copyin(SCARG(uap, fds), bits, ni);
    804      1.28   mycroft 	if (error)
    805      1.28   mycroft 		goto done;
    806      1.28   mycroft 
    807      1.30   mycroft 	if (SCARG(uap, timeout) != INFTIM) {
    808      1.28   mycroft 		atv.tv_sec = SCARG(uap, timeout) / 1000;
    809      1.28   mycroft 		atv.tv_usec = (SCARG(uap, timeout) % 1000) * 1000;
    810      1.28   mycroft 		if (itimerfix(&atv)) {
    811      1.28   mycroft 			error = EINVAL;
    812      1.28   mycroft 			goto done;
    813      1.28   mycroft 		}
    814      1.28   mycroft 		s = splclock();
    815      1.28   mycroft 		timeradd(&atv, &time, &atv);
    816      1.28   mycroft 		splx(s);
    817      1.28   mycroft 	} else
    818      1.28   mycroft 		timo = 0;
    819      1.53     lukem  retry:
    820      1.28   mycroft 	ncoll = nselcoll;
    821      1.28   mycroft 	p->p_flag |= P_SELECT;
    822      1.28   mycroft 	error = pollscan(p, (struct pollfd *)bits, SCARG(uap, nfds), retval);
    823      1.28   mycroft 	if (error || *retval)
    824      1.28   mycroft 		goto done;
    825      1.49   thorpej 	if (SCARG(uap, timeout) != INFTIM) {
    826      1.49   thorpej 		/*
    827      1.49   thorpej 		 * We have to recalculate the timeout on every retry.
    828      1.49   thorpej 		 */
    829      1.49   thorpej 		timo = hzto(&atv);
    830      1.49   thorpej 		if (timo <= 0)
    831      1.49   thorpej 			goto done;
    832      1.49   thorpej 	}
    833      1.52   thorpej 	s = splsched();
    834      1.28   mycroft 	if ((p->p_flag & P_SELECT) == 0 || nselcoll != ncoll) {
    835      1.28   mycroft 		splx(s);
    836      1.28   mycroft 		goto retry;
    837      1.28   mycroft 	}
    838      1.28   mycroft 	p->p_flag &= ~P_SELECT;
    839      1.28   mycroft 	error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "select", timo);
    840      1.28   mycroft 	splx(s);
    841      1.28   mycroft 	if (error == 0)
    842      1.28   mycroft 		goto retry;
    843      1.53     lukem  done:
    844      1.28   mycroft 	p->p_flag &= ~P_SELECT;
    845      1.28   mycroft 	/* poll is not restarted after signals... */
    846      1.28   mycroft 	if (error == ERESTART)
    847      1.28   mycroft 		error = EINTR;
    848      1.28   mycroft 	if (error == EWOULDBLOCK)
    849      1.28   mycroft 		error = 0;
    850      1.28   mycroft 	if (error == 0) {
    851      1.31       cgd 		error = copyout(bits, SCARG(uap, fds), ni);
    852      1.28   mycroft 		if (error)
    853      1.28   mycroft 			goto out;
    854      1.28   mycroft 	}
    855      1.53     lukem  out:
    856      1.28   mycroft 	if (ni > sizeof(smallbits))
    857      1.28   mycroft 		free(bits, M_TEMP);
    858      1.28   mycroft 	return (error);
    859      1.28   mycroft }
    860      1.28   mycroft 
    861      1.28   mycroft int
    862      1.53     lukem pollscan(struct proc *p, struct pollfd *fds, int nfd, register_t *retval)
    863      1.53     lukem {
    864      1.53     lukem 	struct filedesc	*fdp;
    865      1.53     lukem 	int		i, n;
    866      1.53     lukem 	struct file	*fp;
    867      1.28   mycroft 
    868      1.53     lukem 	fdp = p->p_fd;
    869      1.54     lukem 	n = 0;
    870      1.28   mycroft 	for (i = 0; i < nfd; i++, fds++) {
    871      1.33       mrg 		if ((u_int)fds->fd >= fdp->fd_nfiles) {
    872      1.28   mycroft 			fds->revents = POLLNVAL;
    873      1.28   mycroft 			n++;
    874      1.28   mycroft 		} else {
    875      1.56   thorpej 			if ((fp = fd_getfile(fdp, fds->fd)) == NULL) {
    876      1.32       mrg 				fds->revents = POLLNVAL;
    877      1.28   mycroft 				n++;
    878      1.32       mrg 			} else {
    879      1.45   thorpej 				FILE_USE(fp);
    880      1.32       mrg 				fds->revents = (*fp->f_ops->fo_poll)(fp,
    881      1.32       mrg 				    fds->events | POLLERR | POLLHUP, p);
    882      1.32       mrg 				if (fds->revents != 0)
    883      1.32       mrg 					n++;
    884      1.45   thorpej 				FILE_UNUSE(fp, p);
    885      1.32       mrg 			}
    886      1.28   mycroft 		}
    887      1.28   mycroft 	}
    888      1.28   mycroft 	*retval = n;
    889      1.28   mycroft 	return (0);
    890      1.28   mycroft }
    891      1.28   mycroft 
    892      1.15       cgd /*ARGSUSED*/
    893      1.22  christos int
    894  1.57.4.1   thorpej seltrue(struct vnode *devvp, int events, struct proc *p)
    895      1.15       cgd {
    896      1.15       cgd 
    897      1.28   mycroft 	return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
    898      1.15       cgd }
    899      1.15       cgd 
    900      1.15       cgd /*
    901      1.15       cgd  * Record a select request.
    902      1.15       cgd  */
    903      1.15       cgd void
    904      1.53     lukem selrecord(struct proc *selector, struct selinfo *sip)
    905      1.15       cgd {
    906      1.53     lukem 	struct proc	*p;
    907      1.53     lukem 	pid_t		mypid;
    908      1.15       cgd 
    909      1.15       cgd 	mypid = selector->p_pid;
    910      1.15       cgd 	if (sip->si_pid == mypid)
    911      1.15       cgd 		return;
    912      1.15       cgd 	if (sip->si_pid && (p = pfind(sip->si_pid)) &&
    913      1.15       cgd 	    p->p_wchan == (caddr_t)&selwait)
    914      1.15       cgd 		sip->si_flags |= SI_COLL;
    915      1.57    atatat 	else {
    916      1.57    atatat 		sip->si_flags &= ~SI_COLL;
    917      1.15       cgd 		sip->si_pid = mypid;
    918      1.57    atatat 	}
    919      1.15       cgd }
    920      1.15       cgd 
    921      1.15       cgd /*
    922      1.15       cgd  * Do a wakeup when a selectable event occurs.
    923      1.15       cgd  */
    924      1.15       cgd void
    925      1.15       cgd selwakeup(sip)
    926      1.47  augustss 	struct selinfo *sip;
    927      1.15       cgd {
    928      1.47  augustss 	struct proc *p;
    929      1.15       cgd 	int s;
    930      1.15       cgd 
    931      1.15       cgd 	if (sip->si_pid == 0)
    932      1.15       cgd 		return;
    933      1.15       cgd 	if (sip->si_flags & SI_COLL) {
    934      1.15       cgd 		nselcoll++;
    935      1.15       cgd 		sip->si_flags &= ~SI_COLL;
    936      1.15       cgd 		wakeup((caddr_t)&selwait);
    937      1.15       cgd 	}
    938      1.15       cgd 	p = pfind(sip->si_pid);
    939      1.15       cgd 	sip->si_pid = 0;
    940      1.15       cgd 	if (p != NULL) {
    941      1.51   thorpej 		SCHED_LOCK(s);
    942      1.15       cgd 		if (p->p_wchan == (caddr_t)&selwait) {
    943      1.15       cgd 			if (p->p_stat == SSLEEP)
    944      1.15       cgd 				setrunnable(p);
    945      1.15       cgd 			else
    946      1.15       cgd 				unsleep(p);
    947      1.15       cgd 		} else if (p->p_flag & P_SELECT)
    948      1.15       cgd 			p->p_flag &= ~P_SELECT;
    949      1.51   thorpej 		SCHED_UNLOCK(s);
    950      1.15       cgd 	}
    951      1.15       cgd }
    952