xref: /freebsd/sys/kern/sys_generic.c (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the University of
21  *	California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *	@(#)sys_generic.c	8.5 (Berkeley) 1/21/94
39  * $FreeBSD$
40  */
41 
42 #include "opt_ktrace.h"
43 
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/sysproto.h>
47 #include <sys/filedesc.h>
48 #include <sys/filio.h>
49 #include <sys/fcntl.h>
50 #include <sys/file.h>
51 #include <sys/proc.h>
52 #include <sys/signalvar.h>
53 #include <sys/socketvar.h>
54 #include <sys/uio.h>
55 #include <sys/kernel.h>
56 #include <sys/malloc.h>
57 #include <sys/poll.h>
58 #include <sys/resourcevar.h>
59 #include <sys/selinfo.h>
60 #include <sys/sysctl.h>
61 #include <sys/sysent.h>
62 #include <sys/bio.h>
63 #include <sys/buf.h>
64 #include <sys/condvar.h>
65 #ifdef __alpha__
66 #include <sys/disklabel.h>
67 #endif
68 #ifdef KTRACE
69 #include <sys/ktrace.h>
70 #endif
71 #include <vm/vm.h>
72 #include <vm/vm_page.h>
73 
74 #include <machine/limits.h>
75 
76 static MALLOC_DEFINE(M_IOCTLOPS, "ioctlops", "ioctl data buffer");
77 static MALLOC_DEFINE(M_SELECT, "select", "select() buffer");
78 MALLOC_DEFINE(M_IOV, "iov", "large iov's");
79 
80 static int	pollscan(struct thread *, struct pollfd *, u_int);
81 static int	selscan(struct thread *, fd_mask **, fd_mask **, int);
82 static int	dofileread(struct thread *, struct file *, int, void *,
83 		    size_t, off_t, int);
84 static int	dofilewrite(struct thread *, struct file *, int,
85 		    const void *, size_t, off_t, int);
86 
87 /*
88  * Read system call.
89  */
90 #ifndef _SYS_SYSPROTO_H_
91 struct read_args {
92 	int	fd;
93 	void	*buf;
94 	size_t	nbyte;
95 };
96 #endif
97 /*
98  * MPSAFE
99  */
100 int
101 read(td, uap)
102 	struct thread *td;
103 	struct read_args *uap;
104 {
105 	struct file *fp;
106 	int error;
107 
108 	if ((error = fget_read(td, uap->fd, &fp)) == 0) {
109 		error = dofileread(td, fp, uap->fd, uap->buf,
110 			    uap->nbyte, (off_t)-1, 0);
111 		fdrop(fp, td);
112 	}
113 	return(error);
114 }
115 
116 /*
117  * Pread system call
118  */
119 #ifndef _SYS_SYSPROTO_H_
120 struct pread_args {
121 	int	fd;
122 	void	*buf;
123 	size_t	nbyte;
124 	int	pad;
125 	off_t	offset;
126 };
127 #endif
128 /*
129  * MPSAFE
130  */
131 int
132 pread(td, uap)
133 	struct thread *td;
134 	struct pread_args *uap;
135 {
136 	struct file *fp;
137 	int error;
138 
139 	if ((error = fget_read(td, uap->fd, &fp)) != 0)
140 		return (error);
141 	if (fp->f_type != DTYPE_VNODE) {
142 		error = ESPIPE;
143 	} else {
144 		error = dofileread(td, fp, uap->fd, uap->buf, uap->nbyte,
145 			    uap->offset, FOF_OFFSET);
146 	}
147 	fdrop(fp, td);
148 	return(error);
149 }
150 
151 /*
152  * Code common for read and pread
153  */
154 int
155 dofileread(td, fp, fd, buf, nbyte, offset, flags)
156 	struct thread *td;
157 	struct file *fp;
158 	int fd, flags;
159 	void *buf;
160 	size_t nbyte;
161 	off_t offset;
162 {
163 	struct uio auio;
164 	struct iovec aiov;
165 	long cnt, error = 0;
166 #ifdef KTRACE
167 	struct iovec ktriov;
168 	struct uio ktruio;
169 	int didktr = 0;
170 #endif
171 
172 	aiov.iov_base = buf;
173 	aiov.iov_len = nbyte;
174 	auio.uio_iov = &aiov;
175 	auio.uio_iovcnt = 1;
176 	auio.uio_offset = offset;
177 	if (nbyte > INT_MAX)
178 		return (EINVAL);
179 	auio.uio_resid = nbyte;
180 	auio.uio_rw = UIO_READ;
181 	auio.uio_segflg = UIO_USERSPACE;
182 	auio.uio_td = td;
183 #ifdef KTRACE
184 	/*
185 	 * if tracing, save a copy of iovec
186 	 */
187 	if (KTRPOINT(td, KTR_GENIO)) {
188 		ktriov = aiov;
189 		ktruio = auio;
190 		didktr = 1;
191 	}
192 #endif
193 	cnt = nbyte;
194 
195 	if ((error = fo_read(fp, &auio, fp->f_cred, flags, td))) {
196 		if (auio.uio_resid != cnt && (error == ERESTART ||
197 		    error == EINTR || error == EWOULDBLOCK))
198 			error = 0;
199 	}
200 	cnt -= auio.uio_resid;
201 #ifdef KTRACE
202 	if (didktr && error == 0) {
203 		ktruio.uio_iov = &ktriov;
204 		ktruio.uio_resid = cnt;
205 		ktrgenio(fd, UIO_READ, &ktruio, error);
206 	}
207 #endif
208 	td->td_retval[0] = cnt;
209 	return (error);
210 }
211 
212 /*
213  * Scatter read system call.
214  */
215 #ifndef _SYS_SYSPROTO_H_
216 struct readv_args {
217 	int	fd;
218 	struct	iovec *iovp;
219 	u_int	iovcnt;
220 };
221 #endif
222 /*
223  * MPSAFE
224  */
225 int
226 readv(td, uap)
227 	struct thread *td;
228 	struct readv_args *uap;
229 {
230 	struct file *fp;
231 	struct uio auio;
232 	struct iovec *iov;
233 	struct iovec *needfree;
234 	struct iovec aiov[UIO_SMALLIOV];
235 	long i, cnt;
236 	int error;
237 	u_int iovlen;
238 #ifdef KTRACE
239 	struct iovec *ktriov = NULL;
240 	struct uio ktruio;
241 #endif
242 
243 	if ((error = fget_read(td, uap->fd, &fp)) != 0)
244 		return (error);
245 	needfree = NULL;
246 	/* note: can't use iovlen until iovcnt is validated */
247 	iovlen = uap->iovcnt * sizeof (struct iovec);
248 	if (uap->iovcnt > UIO_SMALLIOV) {
249 		if (uap->iovcnt > UIO_MAXIOV) {
250 			error = EINVAL;
251 			goto done;
252 		}
253 		MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
254 		needfree = iov;
255 	} else
256 		iov = aiov;
257 	auio.uio_iov = iov;
258 	auio.uio_iovcnt = uap->iovcnt;
259 	auio.uio_rw = UIO_READ;
260 	auio.uio_segflg = UIO_USERSPACE;
261 	auio.uio_td = td;
262 	auio.uio_offset = -1;
263 	if ((error = copyin(uap->iovp, iov, iovlen)))
264 		goto done;
265 	auio.uio_resid = 0;
266 	for (i = 0; i < uap->iovcnt; i++) {
267 		if (iov->iov_len > INT_MAX - auio.uio_resid) {
268 			error = EINVAL;
269 			goto done;
270 		}
271 		auio.uio_resid += iov->iov_len;
272 		iov++;
273 	}
274 #ifdef KTRACE
275 	/*
276 	 * if tracing, save a copy of iovec
277 	 */
278 	if (KTRPOINT(td, KTR_GENIO))  {
279 		MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
280 		bcopy(auio.uio_iov, ktriov, iovlen);
281 		ktruio = auio;
282 	}
283 #endif
284 	cnt = auio.uio_resid;
285 	if ((error = fo_read(fp, &auio, fp->f_cred, 0, td))) {
286 		if (auio.uio_resid != cnt && (error == ERESTART ||
287 		    error == EINTR || error == EWOULDBLOCK))
288 			error = 0;
289 	}
290 	cnt -= auio.uio_resid;
291 #ifdef KTRACE
292 	if (ktriov != NULL) {
293 		if (error == 0) {
294 			ktruio.uio_iov = ktriov;
295 			ktruio.uio_resid = cnt;
296 			ktrgenio(uap->fd, UIO_READ, &ktruio, error);
297 		}
298 		FREE(ktriov, M_TEMP);
299 	}
300 #endif
301 	td->td_retval[0] = cnt;
302 done:
303 	fdrop(fp, td);
304 	if (needfree)
305 		FREE(needfree, M_IOV);
306 	return (error);
307 }
308 
309 /*
310  * Write system call
311  */
312 #ifndef _SYS_SYSPROTO_H_
313 struct write_args {
314 	int	fd;
315 	const void *buf;
316 	size_t	nbyte;
317 };
318 #endif
319 /*
320  * MPSAFE
321  */
322 int
323 write(td, uap)
324 	struct thread *td;
325 	struct write_args *uap;
326 {
327 	struct file *fp;
328 	int error;
329 
330 	if ((error = fget_write(td, uap->fd, &fp)) == 0) {
331 		error = dofilewrite(td, fp, uap->fd, uap->buf, uap->nbyte,
332 			    (off_t)-1, 0);
333 		fdrop(fp, td);
334 	} else {
335 		error = EBADF;	/* XXX this can't be right */
336 	}
337 	return(error);
338 }
339 
340 /*
341  * Pwrite system call
342  */
343 #ifndef _SYS_SYSPROTO_H_
344 struct pwrite_args {
345 	int	fd;
346 	const void *buf;
347 	size_t	nbyte;
348 	int	pad;
349 	off_t	offset;
350 };
351 #endif
352 /*
353  * MPSAFE
354  */
355 int
356 pwrite(td, uap)
357 	struct thread *td;
358 	struct pwrite_args *uap;
359 {
360 	struct file *fp;
361 	int error;
362 
363 	if ((error = fget_write(td, uap->fd, &fp)) == 0) {
364 		if (fp->f_type == DTYPE_VNODE) {
365 			error = dofilewrite(td, fp, uap->fd, uap->buf,
366 				    uap->nbyte, uap->offset, FOF_OFFSET);
367 		} else {
368 			error = ESPIPE;
369 		}
370 		fdrop(fp, td);
371 	} else {
372 		error = EBADF;	/* this can't be right */
373 	}
374 	return(error);
375 }
376 
377 static int
378 dofilewrite(td, fp, fd, buf, nbyte, offset, flags)
379 	struct thread *td;
380 	struct file *fp;
381 	int fd, flags;
382 	const void *buf;
383 	size_t nbyte;
384 	off_t offset;
385 {
386 	struct uio auio;
387 	struct iovec aiov;
388 	long cnt, error = 0;
389 #ifdef KTRACE
390 	struct iovec ktriov;
391 	struct uio ktruio;
392 	int didktr = 0;
393 #endif
394 
395 	aiov.iov_base = (void *)(uintptr_t)buf;
396 	aiov.iov_len = nbyte;
397 	auio.uio_iov = &aiov;
398 	auio.uio_iovcnt = 1;
399 	auio.uio_offset = offset;
400 	if (nbyte > INT_MAX)
401 		return (EINVAL);
402 	auio.uio_resid = nbyte;
403 	auio.uio_rw = UIO_WRITE;
404 	auio.uio_segflg = UIO_USERSPACE;
405 	auio.uio_td = td;
406 #ifdef KTRACE
407 	/*
408 	 * if tracing, save a copy of iovec and uio
409 	 */
410 	if (KTRPOINT(td, KTR_GENIO)) {
411 		ktriov = aiov;
412 		ktruio = auio;
413 		didktr = 1;
414 	}
415 #endif
416 	cnt = nbyte;
417 	if (fp->f_type == DTYPE_VNODE)
418 		bwillwrite();
419 	if ((error = fo_write(fp, &auio, fp->f_cred, flags, td))) {
420 		if (auio.uio_resid != cnt && (error == ERESTART ||
421 		    error == EINTR || error == EWOULDBLOCK))
422 			error = 0;
423 		/* Socket layer is responsible for issuing SIGPIPE. */
424 		if (error == EPIPE && fp->f_type != DTYPE_SOCKET) {
425 			PROC_LOCK(td->td_proc);
426 			psignal(td->td_proc, SIGPIPE);
427 			PROC_UNLOCK(td->td_proc);
428 		}
429 	}
430 	cnt -= auio.uio_resid;
431 #ifdef KTRACE
432 	if (didktr && error == 0) {
433 		ktruio.uio_iov = &ktriov;
434 		ktruio.uio_resid = cnt;
435 		ktrgenio(fd, UIO_WRITE, &ktruio, error);
436 	}
437 #endif
438 	td->td_retval[0] = cnt;
439 	return (error);
440 }
441 
442 /*
443  * Gather write system call
444  */
445 #ifndef _SYS_SYSPROTO_H_
446 struct writev_args {
447 	int	fd;
448 	struct	iovec *iovp;
449 	u_int	iovcnt;
450 };
451 #endif
452 /*
453  * MPSAFE
454  */
455 int
456 writev(td, uap)
457 	struct thread *td;
458 	register struct writev_args *uap;
459 {
460 	struct file *fp;
461 	struct uio auio;
462 	register struct iovec *iov;
463 	struct iovec *needfree;
464 	struct iovec aiov[UIO_SMALLIOV];
465 	long i, cnt, error = 0;
466 	u_int iovlen;
467 #ifdef KTRACE
468 	struct iovec *ktriov = NULL;
469 	struct uio ktruio;
470 #endif
471 
472 	mtx_lock(&Giant);
473 	if ((error = fget_write(td, uap->fd, &fp)) != 0) {
474 		error = EBADF;
475 		goto done2;
476 	}
477 	/* note: can't use iovlen until iovcnt is validated */
478 	iovlen = uap->iovcnt * sizeof (struct iovec);
479 	if (uap->iovcnt > UIO_SMALLIOV) {
480 		if (uap->iovcnt > UIO_MAXIOV) {
481 			needfree = NULL;
482 			error = EINVAL;
483 			goto done;
484 		}
485 		MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
486 		needfree = iov;
487 	} else {
488 		iov = aiov;
489 		needfree = NULL;
490 	}
491 	auio.uio_iov = iov;
492 	auio.uio_iovcnt = uap->iovcnt;
493 	auio.uio_rw = UIO_WRITE;
494 	auio.uio_segflg = UIO_USERSPACE;
495 	auio.uio_td = td;
496 	auio.uio_offset = -1;
497 	if ((error = copyin(uap->iovp, iov, iovlen)))
498 		goto done;
499 	auio.uio_resid = 0;
500 	for (i = 0; i < uap->iovcnt; i++) {
501 		if (iov->iov_len > INT_MAX - auio.uio_resid) {
502 			error = EINVAL;
503 			goto done;
504 		}
505 		auio.uio_resid += iov->iov_len;
506 		iov++;
507 	}
508 #ifdef KTRACE
509 	/*
510 	 * if tracing, save a copy of iovec and uio
511 	 */
512 	if (KTRPOINT(td, KTR_GENIO))  {
513 		MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
514 		bcopy(auio.uio_iov, ktriov, iovlen);
515 		ktruio = auio;
516 	}
517 #endif
518 	cnt = auio.uio_resid;
519 	if (fp->f_type == DTYPE_VNODE)
520 		bwillwrite();
521 	if ((error = fo_write(fp, &auio, fp->f_cred, 0, td))) {
522 		if (auio.uio_resid != cnt && (error == ERESTART ||
523 		    error == EINTR || error == EWOULDBLOCK))
524 			error = 0;
525 		if (error == EPIPE) {
526 			PROC_LOCK(td->td_proc);
527 			psignal(td->td_proc, SIGPIPE);
528 			PROC_UNLOCK(td->td_proc);
529 		}
530 	}
531 	cnt -= auio.uio_resid;
532 #ifdef KTRACE
533 	if (ktriov != NULL) {
534 		if (error == 0) {
535 			ktruio.uio_iov = ktriov;
536 			ktruio.uio_resid = cnt;
537 			ktrgenio(uap->fd, UIO_WRITE, &ktruio, error);
538 		}
539 		FREE(ktriov, M_TEMP);
540 	}
541 #endif
542 	td->td_retval[0] = cnt;
543 done:
544 	fdrop(fp, td);
545 	if (needfree)
546 		FREE(needfree, M_IOV);
547 done2:
548 	mtx_unlock(&Giant);
549 	return (error);
550 }
551 
552 /*
553  * Ioctl system call
554  */
555 #ifndef _SYS_SYSPROTO_H_
556 struct ioctl_args {
557 	int	fd;
558 	u_long	com;
559 	caddr_t	data;
560 };
561 #endif
562 /*
563  * MPSAFE
564  */
565 /* ARGSUSED */
566 int
567 ioctl(td, uap)
568 	struct thread *td;
569 	register struct ioctl_args *uap;
570 {
571 	struct file *fp;
572 	register struct filedesc *fdp;
573 	register u_long com;
574 	int error = 0;
575 	register u_int size;
576 	caddr_t data, memp;
577 	int tmp;
578 #define STK_PARAMS	128
579 	union {
580 	    char stkbuf[STK_PARAMS];
581 	    long align;
582 	} ubuf;
583 
584 	if ((error = fget(td, uap->fd, &fp)) != 0)
585 		return (error);
586 	mtx_lock(&Giant);
587 	if ((fp->f_flag & (FREAD | FWRITE)) == 0) {
588 		fdrop(fp, td);
589 		mtx_unlock(&Giant);
590 		return (EBADF);
591 	}
592 	fdp = td->td_proc->p_fd;
593 	switch (com = uap->com) {
594 	case FIONCLEX:
595 		FILEDESC_LOCK(fdp);
596 		fdp->fd_ofileflags[uap->fd] &= ~UF_EXCLOSE;
597 		FILEDESC_UNLOCK(fdp);
598 		fdrop(fp, td);
599 		mtx_unlock(&Giant);
600 		return (0);
601 	case FIOCLEX:
602 		FILEDESC_LOCK(fdp);
603 		fdp->fd_ofileflags[uap->fd] |= UF_EXCLOSE;
604 		FILEDESC_UNLOCK(fdp);
605 		fdrop(fp, td);
606 		mtx_unlock(&Giant);
607 		return (0);
608 	}
609 
610 	/*
611 	 * Interpret high order word to find amount of data to be
612 	 * copied to/from the user's address space.
613 	 */
614 	size = IOCPARM_LEN(com);
615 	if (size > IOCPARM_MAX) {
616 		fdrop(fp, td);
617 		mtx_unlock(&Giant);
618 		return (ENOTTY);
619 	}
620 
621 	memp = NULL;
622 	if (size > sizeof (ubuf.stkbuf)) {
623 		memp = malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
624 		data = memp;
625 	} else {
626 		data = ubuf.stkbuf;
627 	}
628 	if (com&IOC_IN) {
629 		if (size) {
630 			error = copyin(uap->data, data, (u_int)size);
631 			if (error) {
632 				if (memp)
633 					free(memp, M_IOCTLOPS);
634 				fdrop(fp, td);
635 				goto done;
636 			}
637 		} else {
638 			*(caddr_t *)data = uap->data;
639 		}
640 	} else if ((com&IOC_OUT) && size) {
641 		/*
642 		 * Zero the buffer so the user always
643 		 * gets back something deterministic.
644 		 */
645 		bzero(data, size);
646 	} else if (com&IOC_VOID) {
647 		*(caddr_t *)data = uap->data;
648 	}
649 
650 	switch (com) {
651 
652 	case FIONBIO:
653 		FILE_LOCK(fp);
654 		if ((tmp = *(int *)data))
655 			fp->f_flag |= FNONBLOCK;
656 		else
657 			fp->f_flag &= ~FNONBLOCK;
658 		FILE_UNLOCK(fp);
659 		error = fo_ioctl(fp, FIONBIO, &tmp, td);
660 		break;
661 
662 	case FIOASYNC:
663 		FILE_LOCK(fp);
664 		if ((tmp = *(int *)data))
665 			fp->f_flag |= FASYNC;
666 		else
667 			fp->f_flag &= ~FASYNC;
668 		FILE_UNLOCK(fp);
669 		error = fo_ioctl(fp, FIOASYNC, &tmp, td);
670 		break;
671 
672 	default:
673 		error = fo_ioctl(fp, com, data, td);
674 		/*
675 		 * Copy any data to user, size was
676 		 * already set and checked above.
677 		 */
678 		if (error == 0 && (com&IOC_OUT) && size)
679 			error = copyout(data, uap->data, (u_int)size);
680 		break;
681 	}
682 	if (memp)
683 		free(memp, M_IOCTLOPS);
684 	fdrop(fp, td);
685 done:
686 	mtx_unlock(&Giant);
687 	return (error);
688 }
689 
690 /*
691  * sellock and selwait are initialized in selectinit() via SYSINIT.
692  */
693 struct mtx	sellock;
694 struct cv	selwait;
695 u_int		nselcoll;	/* Select collisions since boot */
696 SYSCTL_UINT(_kern, OID_AUTO, nselcoll, CTLFLAG_RD, &nselcoll, 0, "");
697 
698 /*
699  * Select system call.
700  */
701 #ifndef _SYS_SYSPROTO_H_
702 struct select_args {
703 	int	nd;
704 	fd_set	*in, *ou, *ex;
705 	struct	timeval *tv;
706 };
707 #endif
708 /*
709  * MPSAFE
710  */
711 int
712 select(td, uap)
713 	register struct thread *td;
714 	register struct select_args *uap;
715 {
716 	struct filedesc *fdp;
717 	/*
718 	 * The magic 2048 here is chosen to be just enough for FD_SETSIZE
719 	 * infds with the new FD_SETSIZE of 1024, and more than enough for
720 	 * FD_SETSIZE infds, outfds and exceptfds with the old FD_SETSIZE
721 	 * of 256.
722 	 */
723 	fd_mask s_selbits[howmany(2048, NFDBITS)];
724 	fd_mask *ibits[3], *obits[3], *selbits, *sbp;
725 	struct timeval atv, rtv, ttv;
726 	int error, timo;
727 	u_int ncoll, nbufbytes, ncpbytes, nfdbits;
728 
729 	if (uap->nd < 0)
730 		return (EINVAL);
731 	fdp = td->td_proc->p_fd;
732 	mtx_lock(&Giant);
733 	FILEDESC_LOCK(fdp);
734 
735 	if (uap->nd > td->td_proc->p_fd->fd_nfiles)
736 		uap->nd = td->td_proc->p_fd->fd_nfiles;   /* forgiving; slightly wrong */
737 	FILEDESC_UNLOCK(fdp);
738 
739 	/*
740 	 * Allocate just enough bits for the non-null fd_sets.  Use the
741 	 * preallocated auto buffer if possible.
742 	 */
743 	nfdbits = roundup(uap->nd, NFDBITS);
744 	ncpbytes = nfdbits / NBBY;
745 	nbufbytes = 0;
746 	if (uap->in != NULL)
747 		nbufbytes += 2 * ncpbytes;
748 	if (uap->ou != NULL)
749 		nbufbytes += 2 * ncpbytes;
750 	if (uap->ex != NULL)
751 		nbufbytes += 2 * ncpbytes;
752 	if (nbufbytes <= sizeof s_selbits)
753 		selbits = &s_selbits[0];
754 	else
755 		selbits = malloc(nbufbytes, M_SELECT, M_WAITOK);
756 
757 	/*
758 	 * Assign pointers into the bit buffers and fetch the input bits.
759 	 * Put the output buffers together so that they can be bzeroed
760 	 * together.
761 	 */
762 	sbp = selbits;
763 #define	getbits(name, x) \
764 	do {								\
765 		if (uap->name == NULL)					\
766 			ibits[x] = NULL;				\
767 		else {							\
768 			ibits[x] = sbp + nbufbytes / 2 / sizeof *sbp;	\
769 			obits[x] = sbp;					\
770 			sbp += ncpbytes / sizeof *sbp;			\
771 			error = copyin(uap->name, ibits[x], ncpbytes);	\
772 			if (error != 0)					\
773 				goto done_nosellock;			\
774 		}							\
775 	} while (0)
776 	getbits(in, 0);
777 	getbits(ou, 1);
778 	getbits(ex, 2);
779 #undef	getbits
780 	if (nbufbytes != 0)
781 		bzero(selbits, nbufbytes / 2);
782 
783 	if (uap->tv) {
784 		error = copyin(uap->tv, &atv, sizeof (atv));
785 		if (error)
786 			goto done_nosellock;
787 		if (itimerfix(&atv)) {
788 			error = EINVAL;
789 			goto done_nosellock;
790 		}
791 		getmicrouptime(&rtv);
792 		timevaladd(&atv, &rtv);
793 	} else {
794 		atv.tv_sec = 0;
795 		atv.tv_usec = 0;
796 	}
797 	timo = 0;
798 	mtx_lock(&sellock);
799 retry:
800 	ncoll = nselcoll;
801 	mtx_lock_spin(&sched_lock);
802 	td->td_flags |= TDF_SELECT;
803 	mtx_unlock_spin(&sched_lock);
804 	mtx_unlock(&sellock);
805 
806 	/* XXX Is there a better place for this? */
807 	TAILQ_INIT(&td->td_selq);
808 	error = selscan(td, ibits, obits, uap->nd);
809 	mtx_lock(&sellock);
810 	if (error || td->td_retval[0])
811 		goto done;
812 	if (atv.tv_sec || atv.tv_usec) {
813 		getmicrouptime(&rtv);
814 		if (timevalcmp(&rtv, &atv, >=))
815 			goto done;
816 		ttv = atv;
817 		timevalsub(&ttv, &rtv);
818 		timo = ttv.tv_sec > 24 * 60 * 60 ?
819 		    24 * 60 * 60 * hz : tvtohz(&ttv);
820 	}
821 
822 	/*
823 	 * An event of interest may occur while we do not hold
824 	 * sellock, so check TDF_SELECT and the number of
825 	 * collisions and rescan the file descriptors if
826 	 * necessary.
827 	 */
828 	mtx_lock_spin(&sched_lock);
829 	if ((td->td_flags & TDF_SELECT) == 0 || nselcoll != ncoll) {
830 		mtx_unlock_spin(&sched_lock);
831 		goto retry;
832 	}
833 	mtx_unlock_spin(&sched_lock);
834 
835 	if (timo > 0)
836 		error = cv_timedwait_sig(&selwait, &sellock, timo);
837 	else
838 		error = cv_wait_sig(&selwait, &sellock);
839 
840 	if (error == 0)
841 		goto retry;
842 
843 done:
844 	clear_selinfo_list(td);
845 	mtx_lock_spin(&sched_lock);
846 	td->td_flags &= ~TDF_SELECT;
847 	mtx_unlock_spin(&sched_lock);
848 	mtx_unlock(&sellock);
849 
850 done_nosellock:
851 	/* select is not restarted after signals... */
852 	if (error == ERESTART)
853 		error = EINTR;
854 	if (error == EWOULDBLOCK)
855 		error = 0;
856 #define	putbits(name, x) \
857 	if (uap->name && (error2 = copyout(obits[x], uap->name, ncpbytes))) \
858 		error = error2;
859 	if (error == 0) {
860 		int error2;
861 
862 		putbits(in, 0);
863 		putbits(ou, 1);
864 		putbits(ex, 2);
865 #undef putbits
866 	}
867 	if (selbits != &s_selbits[0])
868 		free(selbits, M_SELECT);
869 
870 	mtx_unlock(&Giant);
871 	return (error);
872 }
873 
874 static int
875 selscan(td, ibits, obits, nfd)
876 	struct thread *td;
877 	fd_mask **ibits, **obits;
878 	int nfd;
879 {
880 	int msk, i, fd;
881 	fd_mask bits;
882 	struct file *fp;
883 	int n = 0;
884 	/* Note: backend also returns POLLHUP/POLLERR if appropriate. */
885 	static int flag[3] = { POLLRDNORM, POLLWRNORM, POLLRDBAND };
886 	struct filedesc *fdp = td->td_proc->p_fd;
887 
888 	FILEDESC_LOCK(fdp);
889 	for (msk = 0; msk < 3; msk++) {
890 		if (ibits[msk] == NULL)
891 			continue;
892 		for (i = 0; i < nfd; i += NFDBITS) {
893 			bits = ibits[msk][i/NFDBITS];
894 			/* ffs(int mask) not portable, fd_mask is long */
895 			for (fd = i; bits && fd < nfd; fd++, bits >>= 1) {
896 				if (!(bits & 1))
897 					continue;
898 				if ((fp = fget_locked(fdp, fd)) == NULL) {
899 					FILEDESC_UNLOCK(fdp);
900 					return (EBADF);
901 				}
902 				if (fo_poll(fp, flag[msk], fp->f_cred, td)) {
903 					obits[msk][(fd)/NFDBITS] |=
904 					    ((fd_mask)1 << ((fd) % NFDBITS));
905 					n++;
906 				}
907 			}
908 		}
909 	}
910 	FILEDESC_UNLOCK(fdp);
911 	td->td_retval[0] = n;
912 	return (0);
913 }
914 
915 /*
916  * Poll system call.
917  */
918 #ifndef _SYS_SYSPROTO_H_
919 struct poll_args {
920 	struct pollfd *fds;
921 	u_int	nfds;
922 	int	timeout;
923 };
924 #endif
925 /*
926  * MPSAFE
927  */
928 int
929 poll(td, uap)
930 	struct thread *td;
931 	struct poll_args *uap;
932 {
933 	caddr_t bits;
934 	char smallbits[32 * sizeof(struct pollfd)];
935 	struct timeval atv, rtv, ttv;
936 	int error = 0, timo;
937 	u_int ncoll, nfds;
938 	size_t ni;
939 
940 	nfds = SCARG(uap, nfds);
941 
942 	mtx_lock(&Giant);
943 	/*
944 	 * This is kinda bogus.  We have fd limits, but that is not
945 	 * really related to the size of the pollfd array.  Make sure
946 	 * we let the process use at least FD_SETSIZE entries and at
947 	 * least enough for the current limits.  We want to be reasonably
948 	 * safe, but not overly restrictive.
949 	 */
950 	if ((nfds > td->td_proc->p_rlimit[RLIMIT_NOFILE].rlim_cur) &&
951 	    (nfds > FD_SETSIZE)) {
952 		error = EINVAL;
953 		goto done2;
954 	}
955 	ni = nfds * sizeof(struct pollfd);
956 	if (ni > sizeof(smallbits))
957 		bits = malloc(ni, M_TEMP, M_WAITOK);
958 	else
959 		bits = smallbits;
960 	error = copyin(SCARG(uap, fds), bits, ni);
961 	if (error)
962 		goto done_nosellock;
963 	if (SCARG(uap, timeout) != INFTIM) {
964 		atv.tv_sec = SCARG(uap, timeout) / 1000;
965 		atv.tv_usec = (SCARG(uap, timeout) % 1000) * 1000;
966 		if (itimerfix(&atv)) {
967 			error = EINVAL;
968 			goto done_nosellock;
969 		}
970 		getmicrouptime(&rtv);
971 		timevaladd(&atv, &rtv);
972 	} else {
973 		atv.tv_sec = 0;
974 		atv.tv_usec = 0;
975 	}
976 	timo = 0;
977 	mtx_lock(&sellock);
978 retry:
979 	ncoll = nselcoll;
980 	mtx_lock_spin(&sched_lock);
981 	td->td_flags |= TDF_SELECT;
982 	mtx_unlock_spin(&sched_lock);
983 	mtx_unlock(&sellock);
984 
985 	/* XXX Is there a better place for this? */
986 	TAILQ_INIT(&td->td_selq);
987 	error = pollscan(td, (struct pollfd *)bits, nfds);
988 	mtx_lock(&sellock);
989 	if (error || td->td_retval[0])
990 		goto done;
991 	if (atv.tv_sec || atv.tv_usec) {
992 		getmicrouptime(&rtv);
993 		if (timevalcmp(&rtv, &atv, >=))
994 			goto done;
995 		ttv = atv;
996 		timevalsub(&ttv, &rtv);
997 		timo = ttv.tv_sec > 24 * 60 * 60 ?
998 		    24 * 60 * 60 * hz : tvtohz(&ttv);
999 	}
1000 	/*
1001 	 * An event of interest may occur while we do not hold
1002 	 * sellock, so check TDF_SELECT and the number of collisions
1003 	 * and rescan the file descriptors if necessary.
1004 	 */
1005 	mtx_lock_spin(&sched_lock);
1006 	if ((td->td_flags & TDF_SELECT) == 0 || nselcoll != ncoll) {
1007 		mtx_unlock_spin(&sched_lock);
1008 		goto retry;
1009 	}
1010 	mtx_unlock_spin(&sched_lock);
1011 
1012 	if (timo > 0)
1013 		error = cv_timedwait_sig(&selwait, &sellock, timo);
1014 	else
1015 		error = cv_wait_sig(&selwait, &sellock);
1016 
1017 	if (error == 0)
1018 		goto retry;
1019 
1020 done:
1021 	clear_selinfo_list(td);
1022 	mtx_lock_spin(&sched_lock);
1023 	td->td_flags &= ~TDF_SELECT;
1024 	mtx_unlock_spin(&sched_lock);
1025 	mtx_unlock(&sellock);
1026 
1027 done_nosellock:
1028 	/* poll is not restarted after signals... */
1029 	if (error == ERESTART)
1030 		error = EINTR;
1031 	if (error == EWOULDBLOCK)
1032 		error = 0;
1033 	if (error == 0) {
1034 		error = copyout(bits, SCARG(uap, fds), ni);
1035 		if (error)
1036 			goto out;
1037 	}
1038 out:
1039 	if (ni > sizeof(smallbits))
1040 		free(bits, M_TEMP);
1041 done2:
1042 	mtx_unlock(&Giant);
1043 	return (error);
1044 }
1045 
1046 static int
1047 pollscan(td, fds, nfd)
1048 	struct thread *td;
1049 	struct pollfd *fds;
1050 	u_int nfd;
1051 {
1052 	register struct filedesc *fdp = td->td_proc->p_fd;
1053 	int i;
1054 	struct file *fp;
1055 	int n = 0;
1056 
1057 	FILEDESC_LOCK(fdp);
1058 	for (i = 0; i < nfd; i++, fds++) {
1059 		if (fds->fd >= fdp->fd_nfiles) {
1060 			fds->revents = POLLNVAL;
1061 			n++;
1062 		} else if (fds->fd < 0) {
1063 			fds->revents = 0;
1064 		} else {
1065 			fp = fdp->fd_ofiles[fds->fd];
1066 			if (fp == NULL) {
1067 				fds->revents = POLLNVAL;
1068 				n++;
1069 			} else {
1070 				/*
1071 				 * Note: backend also returns POLLHUP and
1072 				 * POLLERR if appropriate.
1073 				 */
1074 				fds->revents = fo_poll(fp, fds->events,
1075 				    fp->f_cred, td);
1076 				if (fds->revents != 0)
1077 					n++;
1078 			}
1079 		}
1080 	}
1081 	FILEDESC_UNLOCK(fdp);
1082 	td->td_retval[0] = n;
1083 	return (0);
1084 }
1085 
1086 /*
1087  * OpenBSD poll system call.
1088  * XXX this isn't quite a true representation..  OpenBSD uses select ops.
1089  */
1090 #ifndef _SYS_SYSPROTO_H_
1091 struct openbsd_poll_args {
1092 	struct pollfd *fds;
1093 	u_int	nfds;
1094 	int	timeout;
1095 };
1096 #endif
1097 /*
1098  * MPSAFE
1099  */
1100 int
1101 openbsd_poll(td, uap)
1102 	register struct thread *td;
1103 	register struct openbsd_poll_args *uap;
1104 {
1105 	return (poll(td, (struct poll_args *)uap));
1106 }
1107 
1108 /*
1109  * Remove the references to the thread from all of the objects
1110  * we were polling.
1111  *
1112  * This code assumes that the underlying owner of the selinfo
1113  * structure will hold sellock before it changes it, and that
1114  * it will unlink itself from our list if it goes away.
1115  */
1116 void
1117 clear_selinfo_list(td)
1118 	struct thread *td;
1119 {
1120 	struct selinfo *si;
1121 
1122 	mtx_assert(&sellock, MA_OWNED);
1123 	TAILQ_FOREACH(si, &td->td_selq, si_thrlist)
1124 		si->si_thread = NULL;
1125 	TAILQ_INIT(&td->td_selq);
1126 }
1127 
1128 /*ARGSUSED*/
1129 int
1130 seltrue(dev, events, td)
1131 	dev_t dev;
1132 	int events;
1133 	struct thread *td;
1134 {
1135 
1136 	return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
1137 }
1138 
1139 /*
1140  * Record a select request.
1141  */
1142 void
1143 selrecord(selector, sip)
1144 	struct thread *selector;
1145 	struct selinfo *sip;
1146 {
1147 
1148 	mtx_lock(&sellock);
1149 	/*
1150 	 * If the selinfo's thread pointer is NULL then take ownership of it.
1151 	 *
1152 	 * If the thread pointer is not NULL and it points to another
1153 	 * thread, then we have a collision.
1154 	 *
1155 	 * If the thread pointer is not NULL and points back to us then leave
1156 	 * it alone as we've already added pointed it at us and added it to
1157 	 * our list.
1158 	 */
1159 	if (sip->si_thread == NULL) {
1160 		sip->si_thread = selector;
1161 		TAILQ_INSERT_TAIL(&selector->td_selq, sip, si_thrlist);
1162 	} else if (sip->si_thread != selector) {
1163 		sip->si_flags |= SI_COLL;
1164 	}
1165 
1166 	mtx_unlock(&sellock);
1167 }
1168 
1169 /*
1170  * Do a wakeup when a selectable event occurs.
1171  */
1172 void
1173 selwakeup(sip)
1174 	struct selinfo *sip;
1175 {
1176 	struct thread *td;
1177 
1178 	mtx_lock(&sellock);
1179 	td = sip->si_thread;
1180 	if ((sip->si_flags & SI_COLL) != 0) {
1181 		nselcoll++;
1182 		sip->si_flags &= ~SI_COLL;
1183 		cv_broadcast(&selwait);
1184 	}
1185 	if (td == NULL) {
1186 		mtx_unlock(&sellock);
1187 		return;
1188 	}
1189 	TAILQ_REMOVE(&td->td_selq, sip, si_thrlist);
1190 	sip->si_thread = NULL;
1191 	mtx_lock_spin(&sched_lock);
1192 	if (td->td_wchan == &selwait) {
1193 		if (td->td_state == TDS_SLP)
1194 			setrunnable(td);
1195 		else
1196 			cv_waitq_remove(td);
1197 	} else
1198 		td->td_flags &= ~TDF_SELECT;
1199 	mtx_unlock_spin(&sched_lock);
1200 	mtx_unlock(&sellock);
1201 }
1202 
1203 static void selectinit(void *);
1204 SYSINIT(select, SI_SUB_LOCK, SI_ORDER_FIRST, selectinit, NULL)
1205 
1206 /* ARGSUSED*/
1207 static void
1208 selectinit(dummy)
1209 	void *dummy;
1210 {
1211 	cv_init(&selwait, "select");
1212 	mtx_init(&sellock, "sellck", NULL, MTX_DEF);
1213 }
1214