Home | History | Annotate | Line # | Download | only in kern
sys_generic.c revision 1.97.4.1
      1  1.97.4.1  wrstuden /*	$NetBSD: sys_generic.c,v 1.97.4.1 2007/09/23 21:36:33 wrstuden 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.77       agc  * 3. Neither the name of the University nor the names of its contributors
     21      1.15       cgd  *    may be used to endorse or promote products derived from this software
     22      1.15       cgd  *    without specific prior written permission.
     23      1.15       cgd  *
     24      1.15       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25      1.15       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26      1.15       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27      1.15       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28      1.15       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29      1.15       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30      1.15       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31      1.15       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32      1.15       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33      1.15       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34      1.15       cgd  * SUCH DAMAGE.
     35      1.15       cgd  *
     36      1.36      fvdl  *	@(#)sys_generic.c	8.9 (Berkeley) 2/14/95
     37      1.15       cgd  */
     38      1.59     lukem 
     39      1.59     lukem #include <sys/cdefs.h>
     40  1.97.4.1  wrstuden __KERNEL_RCSID(0, "$NetBSD: sys_generic.c,v 1.97.4.1 2007/09/23 21:36:33 wrstuden Exp $");
     41      1.37   thorpej 
     42      1.37   thorpej #include "opt_ktrace.h"
     43      1.15       cgd 
     44      1.15       cgd #include <sys/param.h>
     45      1.15       cgd #include <sys/systm.h>
     46      1.15       cgd #include <sys/filedesc.h>
     47      1.15       cgd #include <sys/ioctl.h>
     48      1.15       cgd #include <sys/file.h>
     49      1.15       cgd #include <sys/proc.h>
     50      1.15       cgd #include <sys/socketvar.h>
     51      1.22  christos #include <sys/signalvar.h>
     52      1.15       cgd #include <sys/uio.h>
     53      1.15       cgd #include <sys/kernel.h>
     54      1.15       cgd #include <sys/stat.h>
     55      1.15       cgd #include <sys/malloc.h>
     56      1.28   mycroft #include <sys/poll.h>
     57      1.15       cgd #ifdef KTRACE
     58      1.15       cgd #include <sys/ktrace.h>
     59      1.15       cgd #endif
     60      1.15       cgd 
     61      1.16       cgd #include <sys/mount.h>
     62      1.69   thorpej #include <sys/sa.h>
     63      1.16       cgd #include <sys/syscallargs.h>
     64      1.22  christos 
     65      1.85      yamt #include <uvm/uvm_extern.h>
     66      1.85      yamt 
     67      1.84  christos int selscan(struct lwp *, fd_mask *, fd_mask *, int, register_t *);
     68      1.84  christos int pollscan(struct lwp *, struct pollfd *, int, register_t *);
     69      1.22  christos 
     70      1.82      matt 
     71      1.15       cgd /*
     72      1.15       cgd  * Read system call.
     73      1.15       cgd  */
     74      1.15       cgd /* ARGSUSED */
     75      1.22  christos int
     76      1.69   thorpej sys_read(struct lwp *l, void *v, register_t *retval)
     77      1.20   thorpej {
     78      1.47  augustss 	struct sys_read_args /* {
     79      1.53     lukem 		syscallarg(int)		fd;
     80      1.53     lukem 		syscallarg(void *)	buf;
     81      1.53     lukem 		syscallarg(size_t)	nbyte;
     82      1.20   thorpej 	} */ *uap = v;
     83      1.53     lukem 	int		fd;
     84      1.53     lukem 	struct file	*fp;
     85      1.69   thorpej 	struct proc	*p;
     86      1.53     lukem 	struct filedesc	*fdp;
     87      1.39   thorpej 
     88      1.53     lukem 	fd = SCARG(uap, fd);
     89      1.69   thorpej 	p = l->l_proc;
     90      1.53     lukem 	fdp = p->p_fd;
     91      1.56   thorpej 
     92      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
     93      1.56   thorpej 		return (EBADF);
     94      1.56   thorpej 
     95      1.70        pk 	if ((fp->f_flag & FREAD) == 0) {
     96      1.70        pk 		simple_unlock(&fp->f_slock);
     97      1.39   thorpej 		return (EBADF);
     98      1.70        pk 	}
     99      1.39   thorpej 
    100      1.45   thorpej 	FILE_USE(fp);
    101      1.45   thorpej 
    102      1.45   thorpej 	/* dofileread() will unuse the descriptor for us */
    103      1.84  christos 	return (dofileread(l, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte),
    104      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    105      1.39   thorpej }
    106      1.39   thorpej 
    107      1.39   thorpej int
    108      1.84  christos dofileread(struct lwp *l, int fd, struct file *fp, void *buf, size_t nbyte,
    109      1.53     lukem 	off_t *offset, int flags, register_t *retval)
    110      1.53     lukem {
    111      1.84  christos 	struct iovec aiov;
    112      1.84  christos 	struct uio auio;
    113      1.84  christos 	struct proc *p;
    114      1.85      yamt 	struct vmspace *vm;
    115      1.84  christos 	size_t cnt;
    116      1.84  christos 	int error;
    117      1.15       cgd #ifdef KTRACE
    118      1.92  christos 	struct iovec	ktriov = { .iov_base = NULL, };
    119      1.15       cgd #endif
    120      1.84  christos 	p = l->l_proc;
    121      1.85      yamt 
    122      1.85      yamt 	error = proc_vmspace_getref(p, &vm);
    123      1.85      yamt 	if (error) {
    124  1.97.4.1  wrstuden 		FILE_UNUSE(fp, l);
    125  1.97.4.1  wrstuden 		return error;
    126      1.85      yamt 	}
    127      1.15       cgd 
    128      1.39   thorpej 	aiov.iov_base = (caddr_t)buf;
    129      1.39   thorpej 	aiov.iov_len = nbyte;
    130      1.15       cgd 	auio.uio_iov = &aiov;
    131      1.15       cgd 	auio.uio_iovcnt = 1;
    132      1.39   thorpej 	auio.uio_resid = nbyte;
    133      1.15       cgd 	auio.uio_rw = UIO_READ;
    134      1.85      yamt 	auio.uio_vmspace = vm;
    135      1.40   thorpej 
    136      1.40   thorpej 	/*
    137      1.40   thorpej 	 * Reads return ssize_t because -1 is returned on error.  Therefore
    138      1.40   thorpej 	 * we must restrict the length to SSIZE_MAX to avoid garbage return
    139      1.40   thorpej 	 * values.
    140      1.40   thorpej 	 */
    141      1.45   thorpej 	if (auio.uio_resid > SSIZE_MAX) {
    142      1.45   thorpej 		error = EINVAL;
    143      1.45   thorpej 		goto out;
    144      1.45   thorpej 	}
    145      1.40   thorpej 
    146      1.15       cgd #ifdef KTRACE
    147      1.15       cgd 	/*
    148      1.15       cgd 	 * if tracing, save a copy of iovec
    149      1.15       cgd 	 */
    150      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))
    151      1.15       cgd 		ktriov = aiov;
    152      1.15       cgd #endif
    153      1.38   thorpej 	cnt = auio.uio_resid;
    154      1.39   thorpej 	error = (*fp->f_ops->fo_read)(fp, offset, &auio, fp->f_cred, flags);
    155      1.22  christos 	if (error)
    156      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    157      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    158      1.15       cgd 			error = 0;
    159      1.15       cgd 	cnt -= auio.uio_resid;
    160      1.15       cgd #ifdef KTRACE
    161      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO) && error == 0)
    162      1.84  christos 		ktrgenio(l, fd, UIO_READ, &ktriov, cnt, error);
    163      1.15       cgd #endif
    164      1.15       cgd 	*retval = cnt;
    165      1.45   thorpej  out:
    166      1.84  christos 	FILE_UNUSE(fp, l);
    167      1.85      yamt 	uvmspace_free(vm);
    168      1.15       cgd 	return (error);
    169      1.15       cgd }
    170      1.15       cgd 
    171      1.15       cgd /*
    172      1.15       cgd  * Scatter read system call.
    173      1.15       cgd  */
    174      1.22  christos int
    175      1.69   thorpej sys_readv(struct lwp *l, void *v, register_t *retval)
    176      1.20   thorpej {
    177      1.47  augustss 	struct sys_readv_args /* {
    178      1.53     lukem 		syscallarg(int)				fd;
    179      1.53     lukem 		syscallarg(const struct iovec *)	iovp;
    180      1.53     lukem 		syscallarg(int)				iovcnt;
    181      1.20   thorpej 	} */ *uap = v;
    182      1.53     lukem 	struct filedesc	*fdp;
    183      1.84  christos 	struct file *fp;
    184      1.84  christos 	struct proc *p;
    185      1.84  christos 	int fd;
    186      1.39   thorpej 
    187      1.53     lukem 	fd = SCARG(uap, fd);
    188      1.69   thorpej 	p = l->l_proc;
    189      1.53     lukem 	fdp = p->p_fd;
    190      1.56   thorpej 
    191      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    192      1.56   thorpej 		return (EBADF);
    193      1.56   thorpej 
    194      1.70        pk 	if ((fp->f_flag & FREAD) == 0) {
    195      1.70        pk 		simple_unlock(&fp->f_slock);
    196      1.39   thorpej 		return (EBADF);
    197      1.70        pk 	}
    198      1.39   thorpej 
    199      1.45   thorpej 	FILE_USE(fp);
    200      1.45   thorpej 
    201      1.45   thorpej 	/* dofilereadv() will unuse the descriptor for us */
    202      1.84  christos 	return (dofilereadv(l, fd, fp, SCARG(uap, iovp), SCARG(uap, iovcnt),
    203      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    204      1.39   thorpej }
    205      1.39   thorpej 
    206      1.39   thorpej int
    207      1.84  christos dofilereadv(struct lwp *l, int fd, struct file *fp, const struct iovec *iovp,
    208      1.53     lukem 	int iovcnt, off_t *offset, int flags, register_t *retval)
    209      1.53     lukem {
    210      1.84  christos 	struct proc *p;
    211      1.53     lukem 	struct uio	auio;
    212      1.53     lukem 	struct iovec	*iov, *needfree, aiov[UIO_SMALLIOV];
    213      1.85      yamt 	struct vmspace	*vm;
    214      1.64   thorpej 	int		i, error;
    215      1.64   thorpej 	size_t		cnt;
    216      1.53     lukem 	u_int		iovlen;
    217      1.15       cgd #ifdef KTRACE
    218      1.53     lukem 	struct iovec	*ktriov;
    219      1.15       cgd #endif
    220      1.15       cgd 
    221      1.84  christos 	p = l->l_proc;
    222      1.85      yamt 	error = proc_vmspace_getref(p, &vm);
    223      1.85      yamt 	if (error) {
    224  1.97.4.1  wrstuden 		FILE_UNUSE(fp, l);
    225  1.97.4.1  wrstuden 		return error;
    226      1.85      yamt 	}
    227      1.85      yamt 
    228      1.53     lukem #ifdef KTRACE
    229      1.53     lukem 	ktriov = NULL;
    230      1.53     lukem #endif
    231      1.15       cgd 	/* note: can't use iovlen until iovcnt is validated */
    232      1.42     perry 	iovlen = iovcnt * sizeof(struct iovec);
    233      1.34   mycroft 	if ((u_int)iovcnt > UIO_SMALLIOV) {
    234      1.45   thorpej 		if ((u_int)iovcnt > IOV_MAX) {
    235      1.45   thorpej 			error = EINVAL;
    236      1.45   thorpej 			goto out;
    237      1.45   thorpej 		}
    238      1.50   thorpej 		iov = malloc(iovlen, M_IOV, M_WAITOK);
    239      1.15       cgd 		needfree = iov;
    240      1.41    kleink 	} else if ((u_int)iovcnt > 0) {
    241      1.15       cgd 		iov = aiov;
    242      1.15       cgd 		needfree = NULL;
    243      1.45   thorpej 	} else {
    244      1.45   thorpej 		error = EINVAL;
    245      1.45   thorpej 		goto out;
    246      1.45   thorpej 	}
    247      1.41    kleink 
    248      1.15       cgd 	auio.uio_iov = iov;
    249      1.34   mycroft 	auio.uio_iovcnt = iovcnt;
    250      1.15       cgd 	auio.uio_rw = UIO_READ;
    251      1.85      yamt 	auio.uio_vmspace = vm;
    252      1.39   thorpej 	error = copyin(iovp, iov, iovlen);
    253      1.22  christos 	if (error)
    254      1.15       cgd 		goto done;
    255      1.15       cgd 	auio.uio_resid = 0;
    256      1.34   mycroft 	for (i = 0; i < iovcnt; i++) {
    257      1.15       cgd 		auio.uio_resid += iov->iov_len;
    258      1.40   thorpej 		/*
    259      1.40   thorpej 		 * Reads return ssize_t because -1 is returned on error.
    260      1.40   thorpej 		 * Therefore we must restrict the length to SSIZE_MAX to
    261      1.40   thorpej 		 * avoid garbage return values.
    262      1.40   thorpej 		 */
    263      1.40   thorpej 		if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
    264      1.15       cgd 			error = EINVAL;
    265      1.15       cgd 			goto done;
    266      1.15       cgd 		}
    267      1.15       cgd 		iov++;
    268      1.15       cgd 	}
    269      1.15       cgd #ifdef KTRACE
    270      1.15       cgd 	/*
    271      1.15       cgd 	 * if tracing, save a copy of iovec
    272      1.15       cgd 	 */
    273      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))  {
    274      1.50   thorpej 		ktriov = malloc(iovlen, M_TEMP, M_WAITOK);
    275      1.44     perry 		memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
    276      1.15       cgd 	}
    277      1.15       cgd #endif
    278      1.15       cgd 	cnt = auio.uio_resid;
    279      1.39   thorpej 	error = (*fp->f_ops->fo_read)(fp, offset, &auio, fp->f_cred, flags);
    280      1.22  christos 	if (error)
    281      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    282      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    283      1.15       cgd 			error = 0;
    284      1.15       cgd 	cnt -= auio.uio_resid;
    285      1.15       cgd #ifdef KTRACE
    286      1.58     itohy 	if (ktriov != NULL) {
    287      1.78  drochner 		if (KTRPOINT(p, KTR_GENIO) && (error == 0))
    288      1.84  christos 			ktrgenio(l, fd, UIO_READ, ktriov, cnt, error);
    289      1.50   thorpej 		free(ktriov, M_TEMP);
    290      1.15       cgd 	}
    291      1.15       cgd #endif
    292      1.15       cgd 	*retval = cnt;
    293      1.45   thorpej  done:
    294      1.15       cgd 	if (needfree)
    295      1.50   thorpej 		free(needfree, M_IOV);
    296      1.45   thorpej  out:
    297      1.84  christos 	FILE_UNUSE(fp, l);
    298      1.85      yamt 	uvmspace_free(vm);
    299      1.15       cgd 	return (error);
    300      1.15       cgd }
    301      1.15       cgd 
    302      1.15       cgd /*
    303      1.15       cgd  * Write system call
    304      1.15       cgd  */
    305      1.22  christos int
    306      1.69   thorpej sys_write(struct lwp *l, void *v, register_t *retval)
    307      1.20   thorpej {
    308      1.47  augustss 	struct sys_write_args /* {
    309      1.53     lukem 		syscallarg(int)			fd;
    310      1.53     lukem 		syscallarg(const void *)	buf;
    311      1.53     lukem 		syscallarg(size_t)		nbyte;
    312      1.20   thorpej 	} */ *uap = v;
    313      1.53     lukem 	int		fd;
    314      1.53     lukem 	struct file	*fp;
    315      1.69   thorpej 	struct proc	*p;
    316      1.53     lukem 	struct filedesc	*fdp;
    317      1.39   thorpej 
    318      1.53     lukem 	fd = SCARG(uap, fd);
    319      1.69   thorpej 	p = l->l_proc;
    320      1.53     lukem 	fdp = p->p_fd;
    321      1.56   thorpej 
    322      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    323      1.56   thorpej 		return (EBADF);
    324      1.56   thorpej 
    325      1.70        pk 	if ((fp->f_flag & FWRITE) == 0) {
    326      1.70        pk 		simple_unlock(&fp->f_slock);
    327      1.39   thorpej 		return (EBADF);
    328      1.70        pk 	}
    329      1.39   thorpej 
    330      1.45   thorpej 	FILE_USE(fp);
    331      1.45   thorpej 
    332      1.45   thorpej 	/* dofilewrite() will unuse the descriptor for us */
    333      1.84  christos 	return (dofilewrite(l, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte),
    334      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    335      1.39   thorpej }
    336      1.39   thorpej 
    337      1.39   thorpej int
    338      1.84  christos dofilewrite(struct lwp *l, int fd, struct file *fp, const void *buf,
    339      1.53     lukem 	size_t nbyte, off_t *offset, int flags, register_t *retval)
    340      1.53     lukem {
    341      1.84  christos 	struct iovec aiov;
    342      1.84  christos 	struct uio auio;
    343      1.84  christos 	struct proc *p;
    344      1.85      yamt 	struct vmspace *vm;
    345      1.84  christos 	size_t cnt;
    346      1.84  christos 	int error;
    347      1.15       cgd #ifdef KTRACE
    348      1.92  christos 	struct iovec	ktriov = { .iov_base = NULL, };
    349      1.15       cgd #endif
    350      1.15       cgd 
    351      1.84  christos 	p = l->l_proc;
    352      1.85      yamt 	error = proc_vmspace_getref(p, &vm);
    353      1.85      yamt 	if (error) {
    354  1.97.4.1  wrstuden 		FILE_UNUSE(fp, l);
    355  1.97.4.1  wrstuden 		return error;
    356      1.85      yamt 	}
    357      1.83  christos 	aiov.iov_base = __UNCONST(buf);		/* XXXUNCONST kills const */
    358      1.39   thorpej 	aiov.iov_len = nbyte;
    359      1.15       cgd 	auio.uio_iov = &aiov;
    360      1.15       cgd 	auio.uio_iovcnt = 1;
    361      1.39   thorpej 	auio.uio_resid = nbyte;
    362      1.15       cgd 	auio.uio_rw = UIO_WRITE;
    363      1.85      yamt 	auio.uio_vmspace = vm;
    364      1.40   thorpej 
    365      1.40   thorpej 	/*
    366      1.40   thorpej 	 * Writes return ssize_t because -1 is returned on error.  Therefore
    367      1.40   thorpej 	 * we must restrict the length to SSIZE_MAX to avoid garbage return
    368      1.40   thorpej 	 * values.
    369      1.40   thorpej 	 */
    370      1.45   thorpej 	if (auio.uio_resid > SSIZE_MAX) {
    371      1.45   thorpej 		error = EINVAL;
    372      1.45   thorpej 		goto out;
    373      1.45   thorpej 	}
    374      1.40   thorpej 
    375      1.15       cgd #ifdef KTRACE
    376      1.15       cgd 	/*
    377      1.15       cgd 	 * if tracing, save a copy of iovec
    378      1.15       cgd 	 */
    379      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))
    380      1.15       cgd 		ktriov = aiov;
    381      1.15       cgd #endif
    382      1.38   thorpej 	cnt = auio.uio_resid;
    383      1.39   thorpej 	error = (*fp->f_ops->fo_write)(fp, offset, &auio, fp->f_cred, flags);
    384      1.22  christos 	if (error) {
    385      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    386      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    387      1.15       cgd 			error = 0;
    388      1.15       cgd 		if (error == EPIPE)
    389      1.15       cgd 			psignal(p, SIGPIPE);
    390      1.15       cgd 	}
    391      1.15       cgd 	cnt -= auio.uio_resid;
    392      1.15       cgd #ifdef KTRACE
    393      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO) && error == 0)
    394      1.84  christos 		ktrgenio(l, fd, UIO_WRITE, &ktriov, cnt, error);
    395      1.15       cgd #endif
    396      1.15       cgd 	*retval = cnt;
    397      1.45   thorpej  out:
    398      1.84  christos 	FILE_UNUSE(fp, l);
    399      1.85      yamt 	uvmspace_free(vm);
    400      1.15       cgd 	return (error);
    401      1.15       cgd }
    402      1.15       cgd 
    403      1.15       cgd /*
    404      1.15       cgd  * Gather write system call
    405      1.15       cgd  */
    406      1.22  christos int
    407      1.69   thorpej sys_writev(struct lwp *l, void *v, register_t *retval)
    408      1.20   thorpej {
    409      1.47  augustss 	struct sys_writev_args /* {
    410      1.53     lukem 		syscallarg(int)				fd;
    411      1.53     lukem 		syscallarg(const struct iovec *)	iovp;
    412      1.53     lukem 		syscallarg(int)				iovcnt;
    413      1.20   thorpej 	} */ *uap = v;
    414      1.53     lukem 	int		fd;
    415      1.53     lukem 	struct file	*fp;
    416      1.69   thorpej 	struct proc	*p;
    417      1.53     lukem 	struct filedesc	*fdp;
    418      1.39   thorpej 
    419      1.53     lukem 	fd = SCARG(uap, fd);
    420      1.69   thorpej 	p = l->l_proc;
    421      1.53     lukem 	fdp = p->p_fd;
    422      1.56   thorpej 
    423      1.56   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    424      1.56   thorpej 		return (EBADF);
    425      1.56   thorpej 
    426      1.70        pk 	if ((fp->f_flag & FWRITE) == 0) {
    427      1.70        pk 		simple_unlock(&fp->f_slock);
    428      1.39   thorpej 		return (EBADF);
    429      1.70        pk 	}
    430      1.39   thorpej 
    431      1.45   thorpej 	FILE_USE(fp);
    432      1.45   thorpej 
    433      1.45   thorpej 	/* dofilewritev() will unuse the descriptor for us */
    434      1.84  christos 	return (dofilewritev(l, fd, fp, SCARG(uap, iovp), SCARG(uap, iovcnt),
    435      1.39   thorpej 	    &fp->f_offset, FOF_UPDATE_OFFSET, retval));
    436      1.39   thorpej }
    437      1.39   thorpej 
    438      1.39   thorpej int
    439      1.84  christos dofilewritev(struct lwp *l, int fd, struct file *fp, const struct iovec *iovp,
    440      1.53     lukem 	int iovcnt, off_t *offset, int flags, register_t *retval)
    441      1.53     lukem {
    442      1.84  christos 	struct proc	*p;
    443      1.53     lukem 	struct uio	auio;
    444      1.53     lukem 	struct iovec	*iov, *needfree, aiov[UIO_SMALLIOV];
    445      1.85      yamt 	struct vmspace	*vm;
    446      1.64   thorpej 	int		i, error;
    447      1.64   thorpej 	size_t		cnt;
    448      1.53     lukem 	u_int		iovlen;
    449      1.15       cgd #ifdef KTRACE
    450      1.53     lukem 	struct iovec	*ktriov;
    451      1.15       cgd #endif
    452      1.15       cgd 
    453      1.84  christos 	p = l->l_proc;
    454      1.85      yamt 	error = proc_vmspace_getref(p, &vm);
    455      1.85      yamt 	if (error) {
    456  1.97.4.1  wrstuden 		FILE_UNUSE(fp, l);
    457  1.97.4.1  wrstuden 		return error;
    458      1.85      yamt 	}
    459      1.53     lukem #ifdef KTRACE
    460      1.53     lukem 	ktriov = NULL;
    461      1.53     lukem #endif
    462      1.15       cgd 	/* note: can't use iovlen until iovcnt is validated */
    463      1.42     perry 	iovlen = iovcnt * sizeof(struct iovec);
    464      1.34   mycroft 	if ((u_int)iovcnt > UIO_SMALLIOV) {
    465      1.62  jdolecek 		if ((u_int)iovcnt > IOV_MAX) {
    466      1.62  jdolecek 			error = EINVAL;
    467      1.62  jdolecek 			goto out;
    468      1.62  jdolecek 		}
    469      1.50   thorpej 		iov = malloc(iovlen, M_IOV, M_WAITOK);
    470      1.15       cgd 		needfree = iov;
    471      1.41    kleink 	} else if ((u_int)iovcnt > 0) {
    472      1.15       cgd 		iov = aiov;
    473      1.15       cgd 		needfree = NULL;
    474      1.45   thorpej 	} else {
    475      1.45   thorpej 		error = EINVAL;
    476      1.45   thorpej 		goto out;
    477      1.45   thorpej 	}
    478      1.41    kleink 
    479      1.15       cgd 	auio.uio_iov = iov;
    480      1.34   mycroft 	auio.uio_iovcnt = iovcnt;
    481      1.15       cgd 	auio.uio_rw = UIO_WRITE;
    482      1.85      yamt 	auio.uio_vmspace = vm;
    483      1.39   thorpej 	error = copyin(iovp, iov, iovlen);
    484      1.22  christos 	if (error)
    485      1.15       cgd 		goto done;
    486      1.15       cgd 	auio.uio_resid = 0;
    487      1.34   mycroft 	for (i = 0; i < iovcnt; i++) {
    488      1.15       cgd 		auio.uio_resid += iov->iov_len;
    489      1.40   thorpej 		/*
    490      1.40   thorpej 		 * Writes return ssize_t because -1 is returned on error.
    491      1.40   thorpej 		 * Therefore we must restrict the length to SSIZE_MAX to
    492      1.40   thorpej 		 * avoid garbage return values.
    493      1.40   thorpej 		 */
    494      1.40   thorpej 		if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
    495      1.15       cgd 			error = EINVAL;
    496      1.15       cgd 			goto done;
    497      1.15       cgd 		}
    498      1.15       cgd 		iov++;
    499      1.15       cgd 	}
    500      1.15       cgd #ifdef KTRACE
    501      1.15       cgd 	/*
    502      1.15       cgd 	 * if tracing, save a copy of iovec
    503      1.15       cgd 	 */
    504      1.15       cgd 	if (KTRPOINT(p, KTR_GENIO))  {
    505      1.50   thorpej 		ktriov = malloc(iovlen, M_TEMP, M_WAITOK);
    506      1.44     perry 		memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
    507      1.15       cgd 	}
    508      1.15       cgd #endif
    509      1.15       cgd 	cnt = auio.uio_resid;
    510      1.39   thorpej 	error = (*fp->f_ops->fo_write)(fp, offset, &auio, fp->f_cred, flags);
    511      1.22  christos 	if (error) {
    512      1.15       cgd 		if (auio.uio_resid != cnt && (error == ERESTART ||
    513      1.15       cgd 		    error == EINTR || error == EWOULDBLOCK))
    514      1.15       cgd 			error = 0;
    515      1.15       cgd 		if (error == EPIPE)
    516      1.15       cgd 			psignal(p, SIGPIPE);
    517      1.15       cgd 	}
    518      1.15       cgd 	cnt -= auio.uio_resid;
    519      1.15       cgd #ifdef KTRACE
    520      1.78  drochner 	if (ktriov != NULL) {
    521      1.78  drochner 		if (KTRPOINT(p, KTR_GENIO) && (error == 0))
    522      1.84  christos 			ktrgenio(l, fd, UIO_WRITE, ktriov, cnt, error);
    523      1.50   thorpej 		free(ktriov, M_TEMP);
    524      1.15       cgd 	}
    525      1.15       cgd #endif
    526      1.15       cgd 	*retval = cnt;
    527      1.45   thorpej  done:
    528      1.15       cgd 	if (needfree)
    529      1.50   thorpej 		free(needfree, M_IOV);
    530      1.45   thorpej  out:
    531      1.84  christos 	FILE_UNUSE(fp, l);
    532      1.85      yamt 	uvmspace_free(vm);
    533      1.15       cgd 	return (error);
    534      1.15       cgd }
    535      1.15       cgd 
    536      1.15       cgd /*
    537      1.15       cgd  * Ioctl system call
    538      1.15       cgd  */
    539      1.15       cgd /* ARGSUSED */
    540      1.22  christos int
    541      1.96      yamt sys_ioctl(struct lwp *l, void *v, register_t *retval)
    542      1.20   thorpej {
    543      1.47  augustss 	struct sys_ioctl_args /* {
    544      1.53     lukem 		syscallarg(int)		fd;
    545      1.53     lukem 		syscallarg(u_long)	com;
    546      1.53     lukem 		syscallarg(caddr_t)	data;
    547      1.20   thorpej 	} */ *uap = v;
    548      1.53     lukem 	struct file	*fp;
    549      1.69   thorpej 	struct proc	*p;
    550      1.53     lukem 	struct filedesc	*fdp;
    551      1.53     lukem 	u_long		com;
    552      1.53     lukem 	int		error;
    553      1.53     lukem 	u_int		size;
    554      1.53     lukem 	caddr_t		data, memp;
    555      1.53     lukem #define	STK_PARAMS	128
    556      1.53     lukem 	u_long		stkbuf[STK_PARAMS/sizeof(u_long)];
    557      1.15       cgd 
    558      1.53     lukem 	error = 0;
    559      1.69   thorpej 	p = l->l_proc;
    560      1.15       cgd 	fdp = p->p_fd;
    561      1.56   thorpej 
    562      1.56   thorpej 	if ((fp = fd_getfile(fdp, SCARG(uap, fd))) == NULL)
    563      1.15       cgd 		return (EBADF);
    564      1.15       cgd 
    565      1.45   thorpej 	FILE_USE(fp);
    566      1.45   thorpej 
    567      1.45   thorpej 	if ((fp->f_flag & (FREAD | FWRITE)) == 0) {
    568      1.45   thorpej 		error = EBADF;
    569      1.65       scw 		com = 0;
    570      1.45   thorpej 		goto out;
    571      1.45   thorpej 	}
    572      1.15       cgd 
    573      1.16       cgd 	switch (com = SCARG(uap, com)) {
    574      1.15       cgd 	case FIONCLEX:
    575      1.16       cgd 		fdp->fd_ofileflags[SCARG(uap, fd)] &= ~UF_EXCLOSE;
    576      1.45   thorpej 		goto out;
    577      1.45   thorpej 
    578      1.15       cgd 	case FIOCLEX:
    579      1.16       cgd 		fdp->fd_ofileflags[SCARG(uap, fd)] |= UF_EXCLOSE;
    580      1.45   thorpej 		goto out;
    581      1.15       cgd 	}
    582      1.15       cgd 
    583      1.15       cgd 	/*
    584      1.15       cgd 	 * Interpret high order word to find amount of data to be
    585      1.15       cgd 	 * copied to/from the user's address space.
    586      1.15       cgd 	 */
    587      1.15       cgd 	size = IOCPARM_LEN(com);
    588      1.45   thorpej 	if (size > IOCPARM_MAX) {
    589      1.45   thorpej 		error = ENOTTY;
    590      1.45   thorpej 		goto out;
    591      1.45   thorpej 	}
    592      1.15       cgd 	memp = NULL;
    593      1.42     perry 	if (size > sizeof(stkbuf)) {
    594      1.15       cgd 		memp = (caddr_t)malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
    595      1.15       cgd 		data = memp;
    596      1.15       cgd 	} else
    597      1.46   darrenr 		data = (caddr_t)stkbuf;
    598      1.15       cgd 	if (com&IOC_IN) {
    599      1.15       cgd 		if (size) {
    600      1.31       cgd 			error = copyin(SCARG(uap, data), data, size);
    601      1.15       cgd 			if (error) {
    602      1.15       cgd 				if (memp)
    603      1.15       cgd 					free(memp, M_IOCTLOPS);
    604      1.45   thorpej 				goto out;
    605      1.15       cgd 			}
    606      1.73       dsl #ifdef KTRACE
    607      1.73       dsl 			if (KTRPOINT(p, KTR_GENIO)) {
    608      1.73       dsl 				struct iovec iov;
    609      1.73       dsl 				iov.iov_base = SCARG(uap, data);
    610      1.73       dsl 				iov.iov_len = size;
    611      1.84  christos 				ktrgenio(l, SCARG(uap, fd), UIO_WRITE, &iov,
    612      1.73       dsl 					size, 0);
    613      1.73       dsl 			}
    614      1.73       dsl #endif
    615      1.15       cgd 		} else
    616      1.16       cgd 			*(caddr_t *)data = SCARG(uap, data);
    617      1.15       cgd 	} else if ((com&IOC_OUT) && size)
    618      1.15       cgd 		/*
    619      1.15       cgd 		 * Zero the buffer so the user always
    620      1.15       cgd 		 * gets back something deterministic.
    621      1.15       cgd 		 */
    622      1.44     perry 		memset(data, 0, size);
    623      1.15       cgd 	else if (com&IOC_VOID)
    624      1.16       cgd 		*(caddr_t *)data = SCARG(uap, data);
    625      1.15       cgd 
    626      1.15       cgd 	switch (com) {
    627      1.15       cgd 
    628      1.15       cgd 	case FIONBIO:
    629      1.79  jdolecek 		if (*(int *)data != 0)
    630      1.15       cgd 			fp->f_flag |= FNONBLOCK;
    631      1.15       cgd 		else
    632      1.15       cgd 			fp->f_flag &= ~FNONBLOCK;
    633      1.84  christos 		error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, data, l);
    634      1.15       cgd 		break;
    635      1.15       cgd 
    636      1.15       cgd 	case FIOASYNC:
    637      1.79  jdolecek 		if (*(int *)data != 0)
    638      1.15       cgd 			fp->f_flag |= FASYNC;
    639      1.15       cgd 		else
    640      1.15       cgd 			fp->f_flag &= ~FASYNC;
    641      1.84  christos 		error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, data, l);
    642      1.15       cgd 		break;
    643      1.15       cgd 
    644      1.15       cgd 	default:
    645      1.84  christos 		error = (*fp->f_ops->fo_ioctl)(fp, com, data, l);
    646      1.15       cgd 		/*
    647      1.15       cgd 		 * Copy any data to user, size was
    648      1.15       cgd 		 * already set and checked above.
    649      1.15       cgd 		 */
    650      1.73       dsl 		if (error == 0 && (com&IOC_OUT) && size) {
    651      1.31       cgd 			error = copyout(data, SCARG(uap, data), size);
    652      1.73       dsl #ifdef KTRACE
    653      1.73       dsl 			if (KTRPOINT(p, KTR_GENIO)) {
    654      1.73       dsl 				struct iovec iov;
    655      1.73       dsl 				iov.iov_base = SCARG(uap, data);
    656      1.73       dsl 				iov.iov_len = size;
    657      1.84  christos 				ktrgenio(l, SCARG(uap, fd), UIO_READ, &iov,
    658      1.73       dsl 					size, error);
    659      1.73       dsl 			}
    660      1.73       dsl #endif
    661      1.73       dsl 		}
    662      1.15       cgd 		break;
    663      1.15       cgd 	}
    664      1.15       cgd 	if (memp)
    665      1.15       cgd 		free(memp, M_IOCTLOPS);
    666      1.45   thorpej  out:
    667      1.84  christos 	FILE_UNUSE(fp, l);
    668      1.61    atatat 	switch (error) {
    669      1.61    atatat 	case -1:
    670      1.61    atatat 		printf("sys_ioctl: _IO%s%s('%c', %lu, %lu) returned -1: "
    671      1.61    atatat 		    "pid=%d comm=%s\n",
    672      1.61    atatat 		    (com & IOC_IN) ? "W" : "", (com & IOC_OUT) ? "R" : "",
    673      1.61    atatat 		    (char)IOCGROUP(com), (com & 0xff), IOCPARM_LEN(com),
    674      1.61    atatat 		    p->p_pid, p->p_comm);
    675      1.61    atatat 		/* FALLTHROUGH */
    676      1.61    atatat 	case EPASSTHROUGH:
    677      1.61    atatat 		error = ENOTTY;
    678      1.61    atatat 		/* FALLTHROUGH */
    679      1.61    atatat 	default:
    680      1.61    atatat 		return (error);
    681      1.61    atatat 	}
    682      1.15       cgd }
    683      1.15       cgd 
    684      1.15       cgd int	selwait, nselcoll;
    685      1.15       cgd 
    686      1.15       cgd /*
    687      1.15       cgd  * Select system call.
    688      1.15       cgd  */
    689      1.22  christos int
    690      1.82      matt sys_pselect(struct lwp *l, void *v, register_t *retval)
    691      1.82      matt {
    692      1.82      matt 	struct sys_pselect_args /* {
    693      1.82      matt 		syscallarg(int)				nd;
    694      1.82      matt 		syscallarg(fd_set *)			in;
    695      1.82      matt 		syscallarg(fd_set *)			ou;
    696      1.82      matt 		syscallarg(fd_set *)			ex;
    697      1.82      matt 		syscallarg(const struct timespec *)	ts;
    698      1.82      matt 		syscallarg(sigset_t *)			mask;
    699      1.82      matt 	} */ * const uap = v;
    700      1.82      matt 	struct timespec	ats;
    701      1.82      matt 	struct timeval	atv, *tv = NULL;
    702      1.82      matt 	sigset_t	amask, *mask = NULL;
    703      1.82      matt 	int		error;
    704      1.82      matt 
    705      1.82      matt 	if (SCARG(uap, ts)) {
    706      1.82      matt 		error = copyin(SCARG(uap, ts), &ats, sizeof(ats));
    707      1.82      matt 		if (error)
    708      1.82      matt 			return error;
    709      1.82      matt 		atv.tv_sec = ats.tv_sec;
    710      1.82      matt 		atv.tv_usec = ats.tv_nsec / 1000;
    711      1.82      matt 		tv = &atv;
    712      1.82      matt 	}
    713      1.82      matt 	if (SCARG(uap, mask) != NULL) {
    714      1.82      matt 		error = copyin(SCARG(uap, mask), &amask, sizeof(amask));
    715      1.82      matt 		if (error)
    716      1.82      matt 			return error;
    717      1.82      matt 		mask = &amask;
    718      1.82      matt 	}
    719      1.82      matt 
    720      1.82      matt 	return selcommon(l, retval, SCARG(uap, nd), SCARG(uap, in),
    721      1.82      matt 	    SCARG(uap, ou), SCARG(uap, ex), tv, mask);
    722      1.82      matt }
    723      1.82      matt 
    724      1.91    kardel int
    725      1.90  christos inittimeleft(struct timeval *tv, struct timeval *sleeptv)
    726      1.90  christos {
    727      1.90  christos 	if (itimerfix(tv))
    728      1.90  christos 		return -1;
    729      1.90  christos 	getmicrouptime(sleeptv);
    730      1.90  christos 	return 0;
    731      1.90  christos }
    732      1.90  christos 
    733      1.91    kardel int
    734      1.90  christos gettimeleft(struct timeval *tv, struct timeval *sleeptv)
    735      1.90  christos {
    736      1.90  christos 	/*
    737      1.90  christos 	 * We have to recalculate the timeout on every retry.
    738      1.90  christos 	 */
    739      1.90  christos 	struct timeval slepttv;
    740      1.90  christos 	/*
    741      1.90  christos 	 * reduce tv by elapsed time
    742      1.90  christos 	 * based on monotonic time scale
    743      1.90  christos 	 */
    744      1.90  christos 	getmicrouptime(&slepttv);
    745      1.90  christos 	timeradd(tv, sleeptv, tv);
    746      1.90  christos 	timersub(tv, &slepttv, tv);
    747      1.90  christos 	*sleeptv = slepttv;
    748      1.90  christos 	return tvtohz(tv);
    749      1.90  christos }
    750      1.90  christos 
    751      1.82      matt int
    752      1.69   thorpej sys_select(struct lwp *l, void *v, register_t *retval)
    753      1.20   thorpej {
    754      1.47  augustss 	struct sys_select_args /* {
    755      1.53     lukem 		syscallarg(int)			nd;
    756      1.53     lukem 		syscallarg(fd_set *)		in;
    757      1.53     lukem 		syscallarg(fd_set *)		ou;
    758      1.53     lukem 		syscallarg(fd_set *)		ex;
    759      1.53     lukem 		syscallarg(struct timeval *)	tv;
    760      1.82      matt 	} */ * const uap = v;
    761      1.82      matt 	struct timeval atv, *tv = NULL;
    762      1.82      matt 	int error;
    763      1.82      matt 
    764      1.82      matt 	if (SCARG(uap, tv)) {
    765      1.82      matt 		error = copyin(SCARG(uap, tv), (caddr_t)&atv,
    766      1.82      matt 			sizeof(atv));
    767      1.82      matt 		if (error)
    768      1.82      matt 			return error;
    769      1.82      matt 		tv = &atv;
    770      1.82      matt 	}
    771      1.82      matt 
    772      1.82      matt 	return selcommon(l, retval, SCARG(uap, nd), SCARG(uap, in),
    773      1.82      matt 	    SCARG(uap, ou), SCARG(uap, ex), tv, NULL);
    774      1.82      matt }
    775      1.82      matt 
    776      1.82      matt int
    777      1.82      matt selcommon(struct lwp *l, register_t *retval, int nd, fd_set *u_in,
    778      1.82      matt 	fd_set *u_ou, fd_set *u_ex, struct timeval *tv, sigset_t *mask)
    779      1.82      matt {
    780      1.86    kardel 	char		smallbits[howmany(FD_SETSIZE, NFDBITS) *
    781      1.86    kardel 			    sizeof(fd_mask) * 6];
    782      1.82      matt 	struct proc	* const p = l->l_proc;
    783      1.53     lukem 	caddr_t		bits;
    784      1.53     lukem 	int		s, ncoll, error, timo;
    785      1.53     lukem 	size_t		ni;
    786      1.82      matt 	sigset_t	oldmask;
    787      1.89  christos 	struct timeval  sleeptv;
    788      1.15       cgd 
    789      1.53     lukem 	error = 0;
    790      1.82      matt 	if (nd < 0)
    791      1.35   thorpej 		return (EINVAL);
    792      1.82      matt 	if (nd > p->p_fd->fd_nfiles) {
    793      1.16       cgd 		/* forgiving; slightly wrong */
    794      1.82      matt 		nd = p->p_fd->fd_nfiles;
    795      1.16       cgd 	}
    796      1.82      matt 	ni = howmany(nd, NFDBITS) * sizeof(fd_mask);
    797      1.27   mycroft 	if (ni * 6 > sizeof(smallbits))
    798      1.25   mycroft 		bits = malloc(ni * 6, M_TEMP, M_WAITOK);
    799      1.25   mycroft 	else
    800      1.26       cgd 		bits = smallbits;
    801      1.15       cgd 
    802      1.53     lukem #define	getbits(name, x)						\
    803      1.82      matt 	if (u_ ## name) {						\
    804      1.82      matt 		error = copyin(u_ ## name, bits + ni * x, ni);		\
    805      1.53     lukem 		if (error)						\
    806      1.53     lukem 			goto done;					\
    807      1.53     lukem 	} else								\
    808      1.44     perry 		memset(bits + ni * x, 0, ni);
    809      1.15       cgd 	getbits(in, 0);
    810      1.15       cgd 	getbits(ou, 1);
    811      1.15       cgd 	getbits(ex, 2);
    812      1.15       cgd #undef	getbits
    813      1.15       cgd 
    814      1.65       scw 	timo = 0;
    815      1.90  christos 	if (tv && inittimeleft(tv, &sleeptv) == -1) {
    816      1.90  christos 		error = EINVAL;
    817      1.90  christos 		goto done;
    818      1.65       scw 	}
    819      1.89  christos 
    820      1.82      matt 	if (mask)
    821      1.82      matt 		(void)sigprocmask1(p, SIG_SETMASK, mask, &oldmask);
    822      1.65       scw 
    823      1.53     lukem  retry:
    824      1.15       cgd 	ncoll = nselcoll;
    825      1.69   thorpej 	l->l_flag |= L_SELECT;
    826      1.84  christos 	error = selscan(l, (fd_mask *)(bits + ni * 0),
    827      1.82      matt 			   (fd_mask *)(bits + ni * 3), nd, retval);
    828      1.15       cgd 	if (error || *retval)
    829      1.97        ad 		goto donemask;
    830      1.90  christos 	if (tv && (timo = gettimeleft(tv, &sleeptv)) <= 0)
    831      1.97        ad 		goto donemask;
    832      1.52   thorpej 	s = splsched();
    833      1.69   thorpej 	if ((l->l_flag & L_SELECT) == 0 || nselcoll != ncoll) {
    834      1.15       cgd 		splx(s);
    835      1.15       cgd 		goto retry;
    836      1.15       cgd 	}
    837      1.69   thorpej 	l->l_flag &= ~L_SELECT;
    838      1.15       cgd 	error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "select", timo);
    839      1.15       cgd 	splx(s);
    840      1.15       cgd 	if (error == 0)
    841      1.15       cgd 		goto retry;
    842      1.97        ad  donemask:
    843      1.82      matt 	if (mask)
    844      1.82      matt 		(void)sigprocmask1(p, SIG_SETMASK, &oldmask, NULL);
    845      1.69   thorpej 	l->l_flag &= ~L_SELECT;
    846      1.97        ad  done:
    847      1.15       cgd 	/* select is not restarted after signals... */
    848      1.15       cgd 	if (error == ERESTART)
    849      1.15       cgd 		error = EINTR;
    850      1.15       cgd 	if (error == EWOULDBLOCK)
    851      1.15       cgd 		error = 0;
    852      1.27   mycroft 	if (error == 0) {
    853      1.53     lukem 
    854      1.53     lukem #define	putbits(name, x)						\
    855      1.82      matt 		if (u_ ## name) {					\
    856      1.82      matt 			error = copyout(bits + ni * x, u_ ## name, ni); \
    857      1.53     lukem 			if (error)					\
    858      1.53     lukem 				goto out;				\
    859      1.27   mycroft 		}
    860      1.25   mycroft 		putbits(in, 3);
    861      1.25   mycroft 		putbits(ou, 4);
    862      1.25   mycroft 		putbits(ex, 5);
    863      1.15       cgd #undef putbits
    864      1.15       cgd 	}
    865      1.53     lukem  out:
    866      1.27   mycroft 	if (ni * 6 > sizeof(smallbits))
    867      1.25   mycroft 		free(bits, M_TEMP);
    868      1.15       cgd 	return (error);
    869      1.15       cgd }
    870      1.15       cgd 
    871      1.22  christos int
    872      1.84  christos selscan(struct lwp *l, fd_mask *ibitp, fd_mask *obitp, int nfd,
    873      1.53     lukem 	register_t *retval)
    874      1.53     lukem {
    875      1.63  jdolecek 	static const int flag[3] = { POLLRDNORM | POLLHUP | POLLERR,
    876      1.28   mycroft 			       POLLWRNORM | POLLHUP | POLLERR,
    877      1.28   mycroft 			       POLLRDBAND };
    878      1.84  christos 	struct proc *p = l->l_proc;
    879      1.84  christos 	struct filedesc	*fdp;
    880      1.84  christos 	int msk, i, j, fd, n;
    881      1.84  christos 	fd_mask ibits, obits;
    882      1.84  christos 	struct file *fp;
    883      1.15       cgd 
    884      1.53     lukem 	fdp = p->p_fd;
    885      1.53     lukem 	n = 0;
    886      1.15       cgd 	for (msk = 0; msk < 3; msk++) {
    887      1.15       cgd 		for (i = 0; i < nfd; i += NFDBITS) {
    888      1.25   mycroft 			ibits = *ibitp++;
    889      1.25   mycroft 			obits = 0;
    890      1.25   mycroft 			while ((j = ffs(ibits)) && (fd = i + --j) < nfd) {
    891      1.25   mycroft 				ibits &= ~(1 << j);
    892      1.56   thorpej 				if ((fp = fd_getfile(fdp, fd)) == NULL)
    893      1.15       cgd 					return (EBADF);
    894      1.45   thorpej 				FILE_USE(fp);
    895      1.84  christos 				if ((*fp->f_ops->fo_poll)(fp, flag[msk], l)) {
    896      1.25   mycroft 					obits |= (1 << j);
    897      1.15       cgd 					n++;
    898      1.15       cgd 				}
    899      1.84  christos 				FILE_UNUSE(fp, l);
    900      1.15       cgd 			}
    901      1.25   mycroft 			*obitp++ = obits;
    902      1.15       cgd 		}
    903      1.15       cgd 	}
    904      1.15       cgd 	*retval = n;
    905      1.15       cgd 	return (0);
    906      1.15       cgd }
    907      1.15       cgd 
    908      1.28   mycroft /*
    909      1.28   mycroft  * Poll system call.
    910      1.28   mycroft  */
    911      1.28   mycroft int
    912      1.69   thorpej sys_poll(struct lwp *l, void *v, register_t *retval)
    913      1.28   mycroft {
    914      1.47  augustss 	struct sys_poll_args /* {
    915      1.53     lukem 		syscallarg(struct pollfd *)	fds;
    916      1.53     lukem 		syscallarg(u_int)		nfds;
    917      1.53     lukem 		syscallarg(int)			timeout;
    918      1.82      matt 	} */ * const uap = v;
    919      1.82      matt 	struct timeval	atv, *tv = NULL;
    920      1.82      matt 
    921      1.82      matt 	if (SCARG(uap, timeout) != INFTIM) {
    922      1.82      matt 		atv.tv_sec = SCARG(uap, timeout) / 1000;
    923      1.82      matt 		atv.tv_usec = (SCARG(uap, timeout) % 1000) * 1000;
    924      1.82      matt 		tv = &atv;
    925      1.82      matt 	}
    926      1.82      matt 
    927      1.82      matt 	return pollcommon(l, retval, SCARG(uap, fds), SCARG(uap, nfds),
    928      1.82      matt 		tv, NULL);
    929      1.82      matt }
    930      1.82      matt 
    931      1.82      matt /*
    932      1.82      matt  * Poll system call.
    933      1.82      matt  */
    934      1.82      matt int
    935      1.82      matt sys_pollts(struct lwp *l, void *v, register_t *retval)
    936      1.82      matt {
    937      1.82      matt 	struct sys_pollts_args /* {
    938      1.82      matt 		syscallarg(struct pollfd *)		fds;
    939      1.82      matt 		syscallarg(u_int)			nfds;
    940      1.82      matt 		syscallarg(const struct timespec *)	ts;
    941      1.82      matt 		syscallarg(const sigset_t *)		mask;
    942      1.82      matt 	} */ * const uap = v;
    943      1.82      matt 	struct timespec	ats;
    944      1.82      matt 	struct timeval	atv, *tv = NULL;
    945      1.82      matt 	sigset_t	amask, *mask = NULL;
    946      1.82      matt 	int		error;
    947      1.82      matt 
    948      1.82      matt 	if (SCARG(uap, ts)) {
    949      1.82      matt 		error = copyin(SCARG(uap, ts), &ats, sizeof(ats));
    950      1.82      matt 		if (error)
    951      1.82      matt 			return error;
    952      1.82      matt 		atv.tv_sec = ats.tv_sec;
    953      1.82      matt 		atv.tv_usec = ats.tv_nsec / 1000;
    954      1.82      matt 		tv = &atv;
    955      1.82      matt 	}
    956      1.82      matt 	if (SCARG(uap, mask)) {
    957      1.82      matt 		error = copyin(SCARG(uap, mask), &amask, sizeof(amask));
    958      1.82      matt 		if (error)
    959      1.82      matt 			return error;
    960      1.82      matt 		mask = &amask;
    961      1.82      matt 	}
    962      1.82      matt 
    963      1.82      matt 	return pollcommon(l, retval, SCARG(uap, fds), SCARG(uap, nfds),
    964      1.82      matt 		tv, mask);
    965      1.82      matt }
    966      1.82      matt 
    967      1.82      matt int
    968      1.82      matt pollcommon(struct lwp *l, register_t *retval,
    969      1.82      matt 	struct pollfd *u_fds, u_int nfds,
    970      1.82      matt 	struct timeval *tv, sigset_t *mask)
    971      1.82      matt {
    972      1.86    kardel 	char		smallbits[32 * sizeof(struct pollfd)];
    973      1.82      matt 	struct proc	* const p = l->l_proc;
    974      1.53     lukem 	caddr_t		bits;
    975      1.82      matt 	sigset_t	oldmask;
    976      1.53     lukem 	int		s, ncoll, error, timo;
    977      1.53     lukem 	size_t		ni;
    978      1.89  christos 	struct timeval	sleeptv;
    979      1.28   mycroft 
    980      1.82      matt 	if (nfds > p->p_fd->fd_nfiles) {
    981      1.28   mycroft 		/* forgiving; slightly wrong */
    982      1.82      matt 		nfds = p->p_fd->fd_nfiles;
    983      1.28   mycroft 	}
    984      1.82      matt 	ni = nfds * sizeof(struct pollfd);
    985      1.28   mycroft 	if (ni > sizeof(smallbits))
    986      1.28   mycroft 		bits = malloc(ni, M_TEMP, M_WAITOK);
    987      1.28   mycroft 	else
    988      1.28   mycroft 		bits = smallbits;
    989      1.28   mycroft 
    990      1.82      matt 	error = copyin(u_fds, bits, ni);
    991      1.28   mycroft 	if (error)
    992      1.28   mycroft 		goto done;
    993      1.28   mycroft 
    994      1.65       scw 	timo = 0;
    995      1.90  christos 	if (tv && inittimeleft(tv, &sleeptv) == -1) {
    996      1.90  christos 		error = EINVAL;
    997      1.90  christos 		goto done;
    998      1.65       scw 	}
    999      1.89  christos 
   1000      1.82      matt 	if (mask != NULL)
   1001      1.82      matt 		(void)sigprocmask1(p, SIG_SETMASK, mask, &oldmask);
   1002      1.65       scw 
   1003      1.53     lukem  retry:
   1004      1.28   mycroft 	ncoll = nselcoll;
   1005      1.69   thorpej 	l->l_flag |= L_SELECT;
   1006      1.84  christos 	error = pollscan(l, (struct pollfd *)bits, nfds, retval);
   1007      1.28   mycroft 	if (error || *retval)
   1008      1.97        ad 		goto donemask;
   1009      1.90  christos 	if (tv && (timo = gettimeleft(tv, &sleeptv)) <= 0)
   1010      1.97        ad 		goto donemask;
   1011      1.52   thorpej 	s = splsched();
   1012      1.69   thorpej 	if ((l->l_flag & L_SELECT) == 0 || nselcoll != ncoll) {
   1013      1.28   mycroft 		splx(s);
   1014      1.28   mycroft 		goto retry;
   1015      1.28   mycroft 	}
   1016      1.69   thorpej 	l->l_flag &= ~L_SELECT;
   1017      1.80       chs 	error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "poll", timo);
   1018      1.28   mycroft 	splx(s);
   1019      1.28   mycroft 	if (error == 0)
   1020      1.28   mycroft 		goto retry;
   1021      1.97        ad  donemask:
   1022      1.82      matt 	if (mask != NULL)
   1023      1.82      matt 		(void)sigprocmask1(p, SIG_SETMASK, &oldmask, NULL);
   1024      1.69   thorpej 	l->l_flag &= ~L_SELECT;
   1025      1.97        ad  done:
   1026      1.28   mycroft 	/* poll is not restarted after signals... */
   1027      1.28   mycroft 	if (error == ERESTART)
   1028      1.28   mycroft 		error = EINTR;
   1029      1.28   mycroft 	if (error == EWOULDBLOCK)
   1030      1.28   mycroft 		error = 0;
   1031      1.28   mycroft 	if (error == 0) {
   1032      1.82      matt 		error = copyout(bits, u_fds, ni);
   1033      1.28   mycroft 		if (error)
   1034      1.28   mycroft 			goto out;
   1035      1.28   mycroft 	}
   1036      1.53     lukem  out:
   1037      1.28   mycroft 	if (ni > sizeof(smallbits))
   1038      1.28   mycroft 		free(bits, M_TEMP);
   1039      1.28   mycroft 	return (error);
   1040      1.28   mycroft }
   1041      1.28   mycroft 
   1042      1.28   mycroft int
   1043      1.84  christos pollscan(struct lwp *l, struct pollfd *fds, int nfd, register_t *retval)
   1044      1.53     lukem {
   1045      1.84  christos 	struct proc	*p = l->l_proc;
   1046      1.53     lukem 	struct filedesc	*fdp;
   1047      1.53     lukem 	int		i, n;
   1048      1.53     lukem 	struct file	*fp;
   1049      1.28   mycroft 
   1050      1.53     lukem 	fdp = p->p_fd;
   1051      1.54     lukem 	n = 0;
   1052      1.28   mycroft 	for (i = 0; i < nfd; i++, fds++) {
   1053      1.60  christos 		if (fds->fd >= fdp->fd_nfiles) {
   1054      1.28   mycroft 			fds->revents = POLLNVAL;
   1055      1.28   mycroft 			n++;
   1056      1.60  christos 		} else if (fds->fd < 0) {
   1057      1.60  christos 			fds->revents = 0;
   1058      1.28   mycroft 		} else {
   1059      1.56   thorpej 			if ((fp = fd_getfile(fdp, fds->fd)) == NULL) {
   1060      1.32       mrg 				fds->revents = POLLNVAL;
   1061      1.28   mycroft 				n++;
   1062      1.32       mrg 			} else {
   1063      1.45   thorpej 				FILE_USE(fp);
   1064      1.32       mrg 				fds->revents = (*fp->f_ops->fo_poll)(fp,
   1065      1.84  christos 				    fds->events | POLLERR | POLLHUP, l);
   1066      1.32       mrg 				if (fds->revents != 0)
   1067      1.32       mrg 					n++;
   1068      1.84  christos 				FILE_UNUSE(fp, l);
   1069      1.32       mrg 			}
   1070      1.28   mycroft 		}
   1071      1.28   mycroft 	}
   1072      1.28   mycroft 	*retval = n;
   1073      1.28   mycroft 	return (0);
   1074      1.28   mycroft }
   1075      1.28   mycroft 
   1076      1.15       cgd /*ARGSUSED*/
   1077      1.22  christos int
   1078      1.96      yamt seltrue(dev_t dev, int events, struct lwp *l)
   1079      1.15       cgd {
   1080      1.15       cgd 
   1081      1.28   mycroft 	return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
   1082      1.15       cgd }
   1083      1.15       cgd 
   1084      1.15       cgd /*
   1085      1.15       cgd  * Record a select request.
   1086      1.15       cgd  */
   1087      1.15       cgd void
   1088      1.84  christos selrecord(struct lwp *selector, struct selinfo *sip)
   1089      1.15       cgd {
   1090      1.69   thorpej 	struct lwp	*l;
   1091      1.53     lukem 	struct proc	*p;
   1092      1.53     lukem 	pid_t		mypid;
   1093      1.15       cgd 
   1094      1.84  christos 	mypid = selector->l_proc->p_pid;
   1095      1.66  christos 	if (sip->sel_pid == mypid)
   1096      1.15       cgd 		return;
   1097      1.69   thorpej 	if (sip->sel_pid && (p = pfind(sip->sel_pid))) {
   1098      1.72  jdolecek 		LIST_FOREACH(l, &p->p_lwps, l_sibling) {
   1099      1.69   thorpej 			if (l->l_wchan == (caddr_t)&selwait) {
   1100      1.73       dsl 				sip->sel_collision = 1;
   1101      1.73       dsl 				return;
   1102      1.69   thorpej 			}
   1103      1.69   thorpej 		}
   1104      1.69   thorpej 	}
   1105      1.69   thorpej 
   1106      1.73       dsl 	sip->sel_pid = mypid;
   1107      1.15       cgd }
   1108      1.15       cgd 
   1109      1.15       cgd /*
   1110      1.15       cgd  * Do a wakeup when a selectable event occurs.
   1111      1.15       cgd  */
   1112      1.15       cgd void
   1113      1.15       cgd selwakeup(sip)
   1114      1.47  augustss 	struct selinfo *sip;
   1115      1.15       cgd {
   1116      1.69   thorpej 	struct lwp *l;
   1117      1.47  augustss 	struct proc *p;
   1118      1.15       cgd 	int s;
   1119      1.15       cgd 
   1120      1.66  christos 	if (sip->sel_pid == 0)
   1121      1.15       cgd 		return;
   1122      1.73       dsl 	if (sip->sel_collision) {
   1123      1.67  jdolecek 		sip->sel_pid = 0;
   1124      1.15       cgd 		nselcoll++;
   1125      1.73       dsl 		sip->sel_collision = 0;
   1126      1.15       cgd 		wakeup((caddr_t)&selwait);
   1127      1.67  jdolecek 		return;
   1128      1.15       cgd 	}
   1129      1.66  christos 	p = pfind(sip->sel_pid);
   1130      1.66  christos 	sip->sel_pid = 0;
   1131      1.15       cgd 	if (p != NULL) {
   1132      1.71  jdolecek 		LIST_FOREACH(l, &p->p_lwps, l_sibling) {
   1133      1.69   thorpej 			SCHED_LOCK(s);
   1134      1.69   thorpej 			if (l->l_wchan == (caddr_t)&selwait) {
   1135      1.69   thorpej 				if (l->l_stat == LSSLEEP)
   1136      1.69   thorpej 					setrunnable(l);
   1137      1.69   thorpej 				else
   1138      1.69   thorpej 					unsleep(l);
   1139      1.69   thorpej 			} else if (l->l_flag & L_SELECT)
   1140      1.69   thorpej 				l->l_flag &= ~L_SELECT;
   1141      1.69   thorpej 			SCHED_UNLOCK(s);
   1142      1.69   thorpej 		}
   1143      1.15       cgd 	}
   1144      1.15       cgd }
   1145