xref: /freebsd/sys/kern/sys_generic.c (revision c697fb7f)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1989, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  * (c) UNIX System Laboratories, Inc.
7  * All or some portions of this file are derived from material licensed
8  * to the University of California by American Telephone and Telegraph
9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10  * the permission of UNIX System Laboratories, Inc.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *	@(#)sys_generic.c	8.5 (Berkeley) 1/21/94
37  */
38 
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD$");
41 
42 #include "opt_capsicum.h"
43 #include "opt_ktrace.h"
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/sysproto.h>
48 #include <sys/capsicum.h>
49 #include <sys/filedesc.h>
50 #include <sys/filio.h>
51 #include <sys/fcntl.h>
52 #include <sys/file.h>
53 #include <sys/lock.h>
54 #include <sys/proc.h>
55 #include <sys/signalvar.h>
56 #include <sys/socketvar.h>
57 #include <sys/uio.h>
58 #include <sys/kernel.h>
59 #include <sys/ktr.h>
60 #include <sys/limits.h>
61 #include <sys/malloc.h>
62 #include <sys/poll.h>
63 #include <sys/resourcevar.h>
64 #include <sys/selinfo.h>
65 #include <sys/sleepqueue.h>
66 #include <sys/syscallsubr.h>
67 #include <sys/sysctl.h>
68 #include <sys/sysent.h>
69 #include <sys/vnode.h>
70 #include <sys/bio.h>
71 #include <sys/buf.h>
72 #include <sys/condvar.h>
73 #ifdef KTRACE
74 #include <sys/ktrace.h>
75 #endif
76 
77 #include <security/audit/audit.h>
78 
79 /*
80  * The following macro defines how many bytes will be allocated from
81  * the stack instead of memory allocated when passing the IOCTL data
82  * structures from userspace and to the kernel. Some IOCTLs having
83  * small data structures are used very frequently and this small
84  * buffer on the stack gives a significant speedup improvement for
85  * those requests. The value of this define should be greater or equal
86  * to 64 bytes and should also be power of two. The data structure is
87  * currently hard-aligned to a 8-byte boundary on the stack. This
88  * should currently be sufficient for all supported platforms.
89  */
90 #define	SYS_IOCTL_SMALL_SIZE	128	/* bytes */
91 #define	SYS_IOCTL_SMALL_ALIGN	8	/* bytes */
92 
93 #ifdef __LP64__
94 static int iosize_max_clamp = 0;
95 SYSCTL_INT(_debug, OID_AUTO, iosize_max_clamp, CTLFLAG_RW,
96     &iosize_max_clamp, 0, "Clamp max i/o size to INT_MAX");
97 static int devfs_iosize_max_clamp = 1;
98 SYSCTL_INT(_debug, OID_AUTO, devfs_iosize_max_clamp, CTLFLAG_RW,
99     &devfs_iosize_max_clamp, 0, "Clamp max i/o size to INT_MAX for devices");
100 #endif
101 
102 /*
103  * Assert that the return value of read(2) and write(2) syscalls fits
104  * into a register.  If not, an architecture will need to provide the
105  * usermode wrappers to reconstruct the result.
106  */
107 CTASSERT(sizeof(register_t) >= sizeof(size_t));
108 
109 static MALLOC_DEFINE(M_IOCTLOPS, "ioctlops", "ioctl data buffer");
110 static MALLOC_DEFINE(M_SELECT, "select", "select() buffer");
111 MALLOC_DEFINE(M_IOV, "iov", "large iov's");
112 
113 static int	pollout(struct thread *, struct pollfd *, struct pollfd *,
114 		    u_int);
115 static int	pollscan(struct thread *, struct pollfd *, u_int);
116 static int	pollrescan(struct thread *);
117 static int	selscan(struct thread *, fd_mask **, fd_mask **, int);
118 static int	selrescan(struct thread *, fd_mask **, fd_mask **);
119 static void	selfdalloc(struct thread *, void *);
120 static void	selfdfree(struct seltd *, struct selfd *);
121 static int	dofileread(struct thread *, int, struct file *, struct uio *,
122 		    off_t, int);
123 static int	dofilewrite(struct thread *, int, struct file *, struct uio *,
124 		    off_t, int);
125 static void	doselwakeup(struct selinfo *, int);
126 static void	seltdinit(struct thread *);
127 static int	seltdwait(struct thread *, sbintime_t, sbintime_t);
128 static void	seltdclear(struct thread *);
129 
130 /*
131  * One seltd per-thread allocated on demand as needed.
132  *
133  *	t - protected by st_mtx
134  * 	k - Only accessed by curthread or read-only
135  */
136 struct seltd {
137 	STAILQ_HEAD(, selfd)	st_selq;	/* (k) List of selfds. */
138 	struct selfd		*st_free1;	/* (k) free fd for read set. */
139 	struct selfd		*st_free2;	/* (k) free fd for write set. */
140 	struct mtx		st_mtx;		/* Protects struct seltd */
141 	struct cv		st_wait;	/* (t) Wait channel. */
142 	int			st_flags;	/* (t) SELTD_ flags. */
143 };
144 
145 #define	SELTD_PENDING	0x0001			/* We have pending events. */
146 #define	SELTD_RESCAN	0x0002			/* Doing a rescan. */
147 
148 /*
149  * One selfd allocated per-thread per-file-descriptor.
150  *	f - protected by sf_mtx
151  */
152 struct selfd {
153 	STAILQ_ENTRY(selfd)	sf_link;	/* (k) fds owned by this td. */
154 	TAILQ_ENTRY(selfd)	sf_threads;	/* (f) fds on this selinfo. */
155 	struct selinfo		*sf_si;		/* (f) selinfo when linked. */
156 	struct mtx		*sf_mtx;	/* Pointer to selinfo mtx. */
157 	struct seltd		*sf_td;		/* (k) owning seltd. */
158 	void			*sf_cookie;	/* (k) fd or pollfd. */
159 	u_int			sf_refs;
160 };
161 
162 static uma_zone_t selfd_zone;
163 static struct mtx_pool *mtxpool_select;
164 
165 #ifdef __LP64__
166 size_t
167 devfs_iosize_max(void)
168 {
169 
170 	return (devfs_iosize_max_clamp || SV_CURPROC_FLAG(SV_ILP32) ?
171 	    INT_MAX : SSIZE_MAX);
172 }
173 
174 size_t
175 iosize_max(void)
176 {
177 
178 	return (iosize_max_clamp || SV_CURPROC_FLAG(SV_ILP32) ?
179 	    INT_MAX : SSIZE_MAX);
180 }
181 #endif
182 
183 #ifndef _SYS_SYSPROTO_H_
184 struct read_args {
185 	int	fd;
186 	void	*buf;
187 	size_t	nbyte;
188 };
189 #endif
190 int
191 sys_read(struct thread *td, struct read_args *uap)
192 {
193 	struct uio auio;
194 	struct iovec aiov;
195 	int error;
196 
197 	if (uap->nbyte > IOSIZE_MAX)
198 		return (EINVAL);
199 	aiov.iov_base = uap->buf;
200 	aiov.iov_len = uap->nbyte;
201 	auio.uio_iov = &aiov;
202 	auio.uio_iovcnt = 1;
203 	auio.uio_resid = uap->nbyte;
204 	auio.uio_segflg = UIO_USERSPACE;
205 	error = kern_readv(td, uap->fd, &auio);
206 	return (error);
207 }
208 
209 /*
210  * Positioned read system call
211  */
212 #ifndef _SYS_SYSPROTO_H_
213 struct pread_args {
214 	int	fd;
215 	void	*buf;
216 	size_t	nbyte;
217 	int	pad;
218 	off_t	offset;
219 };
220 #endif
221 int
222 sys_pread(struct thread *td, struct pread_args *uap)
223 {
224 
225 	return (kern_pread(td, uap->fd, uap->buf, uap->nbyte, uap->offset));
226 }
227 
228 int
229 kern_pread(struct thread *td, int fd, void *buf, size_t nbyte, off_t offset)
230 {
231 	struct uio auio;
232 	struct iovec aiov;
233 	int error;
234 
235 	if (nbyte > IOSIZE_MAX)
236 		return (EINVAL);
237 	aiov.iov_base = buf;
238 	aiov.iov_len = nbyte;
239 	auio.uio_iov = &aiov;
240 	auio.uio_iovcnt = 1;
241 	auio.uio_resid = nbyte;
242 	auio.uio_segflg = UIO_USERSPACE;
243 	error = kern_preadv(td, fd, &auio, offset);
244 	return (error);
245 }
246 
247 #if defined(COMPAT_FREEBSD6)
248 int
249 freebsd6_pread(struct thread *td, struct freebsd6_pread_args *uap)
250 {
251 
252 	return (kern_pread(td, uap->fd, uap->buf, uap->nbyte, uap->offset));
253 }
254 #endif
255 
256 /*
257  * Scatter read system call.
258  */
259 #ifndef _SYS_SYSPROTO_H_
260 struct readv_args {
261 	int	fd;
262 	struct	iovec *iovp;
263 	u_int	iovcnt;
264 };
265 #endif
266 int
267 sys_readv(struct thread *td, struct readv_args *uap)
268 {
269 	struct uio *auio;
270 	int error;
271 
272 	error = copyinuio(uap->iovp, uap->iovcnt, &auio);
273 	if (error)
274 		return (error);
275 	error = kern_readv(td, uap->fd, auio);
276 	free(auio, M_IOV);
277 	return (error);
278 }
279 
280 int
281 kern_readv(struct thread *td, int fd, struct uio *auio)
282 {
283 	struct file *fp;
284 	int error;
285 
286 	error = fget_read(td, fd, &cap_read_rights, &fp);
287 	if (error)
288 		return (error);
289 	error = dofileread(td, fd, fp, auio, (off_t)-1, 0);
290 	fdrop(fp, td);
291 	return (error);
292 }
293 
294 /*
295  * Scatter positioned read system call.
296  */
297 #ifndef _SYS_SYSPROTO_H_
298 struct preadv_args {
299 	int	fd;
300 	struct	iovec *iovp;
301 	u_int	iovcnt;
302 	off_t	offset;
303 };
304 #endif
305 int
306 sys_preadv(struct thread *td, struct preadv_args *uap)
307 {
308 	struct uio *auio;
309 	int error;
310 
311 	error = copyinuio(uap->iovp, uap->iovcnt, &auio);
312 	if (error)
313 		return (error);
314 	error = kern_preadv(td, uap->fd, auio, uap->offset);
315 	free(auio, M_IOV);
316 	return (error);
317 }
318 
319 int
320 kern_preadv(struct thread *td, int fd, struct uio *auio, off_t offset)
321 {
322 	struct file *fp;
323 	int error;
324 
325 	error = fget_read(td, fd, &cap_pread_rights, &fp);
326 	if (error)
327 		return (error);
328 	if (!(fp->f_ops->fo_flags & DFLAG_SEEKABLE))
329 		error = ESPIPE;
330 	else if (offset < 0 &&
331 	    (fp->f_vnode == NULL || fp->f_vnode->v_type != VCHR))
332 		error = EINVAL;
333 	else
334 		error = dofileread(td, fd, fp, auio, offset, FOF_OFFSET);
335 	fdrop(fp, td);
336 	return (error);
337 }
338 
339 /*
340  * Common code for readv and preadv that reads data in
341  * from a file using the passed in uio, offset, and flags.
342  */
343 static int
344 dofileread(struct thread *td, int fd, struct file *fp, struct uio *auio,
345     off_t offset, int flags)
346 {
347 	ssize_t cnt;
348 	int error;
349 #ifdef KTRACE
350 	struct uio *ktruio = NULL;
351 #endif
352 
353 	AUDIT_ARG_FD(fd);
354 
355 	/* Finish zero length reads right here */
356 	if (auio->uio_resid == 0) {
357 		td->td_retval[0] = 0;
358 		return (0);
359 	}
360 	auio->uio_rw = UIO_READ;
361 	auio->uio_offset = offset;
362 	auio->uio_td = td;
363 #ifdef KTRACE
364 	if (KTRPOINT(td, KTR_GENIO))
365 		ktruio = cloneuio(auio);
366 #endif
367 	cnt = auio->uio_resid;
368 	if ((error = fo_read(fp, auio, td->td_ucred, flags, td))) {
369 		if (auio->uio_resid != cnt && (error == ERESTART ||
370 		    error == EINTR || error == EWOULDBLOCK))
371 			error = 0;
372 	}
373 	cnt -= auio->uio_resid;
374 #ifdef KTRACE
375 	if (ktruio != NULL) {
376 		ktruio->uio_resid = cnt;
377 		ktrgenio(fd, UIO_READ, ktruio, error);
378 	}
379 #endif
380 	td->td_retval[0] = cnt;
381 	return (error);
382 }
383 
384 #ifndef _SYS_SYSPROTO_H_
385 struct write_args {
386 	int	fd;
387 	const void *buf;
388 	size_t	nbyte;
389 };
390 #endif
391 int
392 sys_write(struct thread *td, struct write_args *uap)
393 {
394 	struct uio auio;
395 	struct iovec aiov;
396 	int error;
397 
398 	if (uap->nbyte > IOSIZE_MAX)
399 		return (EINVAL);
400 	aiov.iov_base = (void *)(uintptr_t)uap->buf;
401 	aiov.iov_len = uap->nbyte;
402 	auio.uio_iov = &aiov;
403 	auio.uio_iovcnt = 1;
404 	auio.uio_resid = uap->nbyte;
405 	auio.uio_segflg = UIO_USERSPACE;
406 	error = kern_writev(td, uap->fd, &auio);
407 	return (error);
408 }
409 
410 /*
411  * Positioned write system call.
412  */
413 #ifndef _SYS_SYSPROTO_H_
414 struct pwrite_args {
415 	int	fd;
416 	const void *buf;
417 	size_t	nbyte;
418 	int	pad;
419 	off_t	offset;
420 };
421 #endif
422 int
423 sys_pwrite(struct thread *td, struct pwrite_args *uap)
424 {
425 
426 	return (kern_pwrite(td, uap->fd, uap->buf, uap->nbyte, uap->offset));
427 }
428 
429 int
430 kern_pwrite(struct thread *td, int fd, const void *buf, size_t nbyte,
431     off_t offset)
432 {
433 	struct uio auio;
434 	struct iovec aiov;
435 	int error;
436 
437 	if (nbyte > IOSIZE_MAX)
438 		return (EINVAL);
439 	aiov.iov_base = (void *)(uintptr_t)buf;
440 	aiov.iov_len = nbyte;
441 	auio.uio_iov = &aiov;
442 	auio.uio_iovcnt = 1;
443 	auio.uio_resid = nbyte;
444 	auio.uio_segflg = UIO_USERSPACE;
445 	error = kern_pwritev(td, fd, &auio, offset);
446 	return (error);
447 }
448 
449 #if defined(COMPAT_FREEBSD6)
450 int
451 freebsd6_pwrite(struct thread *td, struct freebsd6_pwrite_args *uap)
452 {
453 
454 	return (kern_pwrite(td, uap->fd, uap->buf, uap->nbyte, uap->offset));
455 }
456 #endif
457 
458 /*
459  * Gather write system call.
460  */
461 #ifndef _SYS_SYSPROTO_H_
462 struct writev_args {
463 	int	fd;
464 	struct	iovec *iovp;
465 	u_int	iovcnt;
466 };
467 #endif
468 int
469 sys_writev(struct thread *td, struct writev_args *uap)
470 {
471 	struct uio *auio;
472 	int error;
473 
474 	error = copyinuio(uap->iovp, uap->iovcnt, &auio);
475 	if (error)
476 		return (error);
477 	error = kern_writev(td, uap->fd, auio);
478 	free(auio, M_IOV);
479 	return (error);
480 }
481 
482 int
483 kern_writev(struct thread *td, int fd, struct uio *auio)
484 {
485 	struct file *fp;
486 	int error;
487 
488 	error = fget_write(td, fd, &cap_write_rights, &fp);
489 	if (error)
490 		return (error);
491 	error = dofilewrite(td, fd, fp, auio, (off_t)-1, 0);
492 	fdrop(fp, td);
493 	return (error);
494 }
495 
496 /*
497  * Gather positioned write system call.
498  */
499 #ifndef _SYS_SYSPROTO_H_
500 struct pwritev_args {
501 	int	fd;
502 	struct	iovec *iovp;
503 	u_int	iovcnt;
504 	off_t	offset;
505 };
506 #endif
507 int
508 sys_pwritev(struct thread *td, struct pwritev_args *uap)
509 {
510 	struct uio *auio;
511 	int error;
512 
513 	error = copyinuio(uap->iovp, uap->iovcnt, &auio);
514 	if (error)
515 		return (error);
516 	error = kern_pwritev(td, uap->fd, auio, uap->offset);
517 	free(auio, M_IOV);
518 	return (error);
519 }
520 
521 int
522 kern_pwritev(struct thread *td, int fd, struct uio *auio, off_t offset)
523 {
524 	struct file *fp;
525 	int error;
526 
527 	error = fget_write(td, fd, &cap_pwrite_rights, &fp);
528 	if (error)
529 		return (error);
530 	if (!(fp->f_ops->fo_flags & DFLAG_SEEKABLE))
531 		error = ESPIPE;
532 	else if (offset < 0 &&
533 	    (fp->f_vnode == NULL || fp->f_vnode->v_type != VCHR))
534 		error = EINVAL;
535 	else
536 		error = dofilewrite(td, fd, fp, auio, offset, FOF_OFFSET);
537 	fdrop(fp, td);
538 	return (error);
539 }
540 
541 /*
542  * Common code for writev and pwritev that writes data to
543  * a file using the passed in uio, offset, and flags.
544  */
545 static int
546 dofilewrite(struct thread *td, int fd, struct file *fp, struct uio *auio,
547     off_t offset, int flags)
548 {
549 	ssize_t cnt;
550 	int error;
551 #ifdef KTRACE
552 	struct uio *ktruio = NULL;
553 #endif
554 
555 	AUDIT_ARG_FD(fd);
556 	auio->uio_rw = UIO_WRITE;
557 	auio->uio_td = td;
558 	auio->uio_offset = offset;
559 #ifdef KTRACE
560 	if (KTRPOINT(td, KTR_GENIO))
561 		ktruio = cloneuio(auio);
562 #endif
563 	cnt = auio->uio_resid;
564 	if ((error = fo_write(fp, auio, td->td_ucred, flags, td))) {
565 		if (auio->uio_resid != cnt && (error == ERESTART ||
566 		    error == EINTR || error == EWOULDBLOCK))
567 			error = 0;
568 		/* Socket layer is responsible for issuing SIGPIPE. */
569 		if (fp->f_type != DTYPE_SOCKET && error == EPIPE) {
570 			PROC_LOCK(td->td_proc);
571 			tdsignal(td, SIGPIPE);
572 			PROC_UNLOCK(td->td_proc);
573 		}
574 	}
575 	cnt -= auio->uio_resid;
576 #ifdef KTRACE
577 	if (ktruio != NULL) {
578 		ktruio->uio_resid = cnt;
579 		ktrgenio(fd, UIO_WRITE, ktruio, error);
580 	}
581 #endif
582 	td->td_retval[0] = cnt;
583 	return (error);
584 }
585 
586 /*
587  * Truncate a file given a file descriptor.
588  *
589  * Can't use fget_write() here, since must return EINVAL and not EBADF if the
590  * descriptor isn't writable.
591  */
592 int
593 kern_ftruncate(struct thread *td, int fd, off_t length)
594 {
595 	struct file *fp;
596 	int error;
597 
598 	AUDIT_ARG_FD(fd);
599 	if (length < 0)
600 		return (EINVAL);
601 	error = fget(td, fd, &cap_ftruncate_rights, &fp);
602 	if (error)
603 		return (error);
604 	AUDIT_ARG_FILE(td->td_proc, fp);
605 	if (!(fp->f_flag & FWRITE)) {
606 		fdrop(fp, td);
607 		return (EINVAL);
608 	}
609 	error = fo_truncate(fp, length, td->td_ucred, td);
610 	fdrop(fp, td);
611 	return (error);
612 }
613 
614 #ifndef _SYS_SYSPROTO_H_
615 struct ftruncate_args {
616 	int	fd;
617 	int	pad;
618 	off_t	length;
619 };
620 #endif
621 int
622 sys_ftruncate(struct thread *td, struct ftruncate_args *uap)
623 {
624 
625 	return (kern_ftruncate(td, uap->fd, uap->length));
626 }
627 
628 #if defined(COMPAT_43)
629 #ifndef _SYS_SYSPROTO_H_
630 struct oftruncate_args {
631 	int	fd;
632 	long	length;
633 };
634 #endif
635 int
636 oftruncate(struct thread *td, struct oftruncate_args *uap)
637 {
638 
639 	return (kern_ftruncate(td, uap->fd, uap->length));
640 }
641 #endif /* COMPAT_43 */
642 
643 #ifndef _SYS_SYSPROTO_H_
644 struct ioctl_args {
645 	int	fd;
646 	u_long	com;
647 	caddr_t	data;
648 };
649 #endif
650 /* ARGSUSED */
651 int
652 sys_ioctl(struct thread *td, struct ioctl_args *uap)
653 {
654 	u_char smalldata[SYS_IOCTL_SMALL_SIZE] __aligned(SYS_IOCTL_SMALL_ALIGN);
655 	u_long com;
656 	int arg, error;
657 	u_int size;
658 	caddr_t data;
659 
660 	if (uap->com > 0xffffffff) {
661 		printf(
662 		    "WARNING pid %d (%s): ioctl sign-extension ioctl %lx\n",
663 		    td->td_proc->p_pid, td->td_name, uap->com);
664 		uap->com &= 0xffffffff;
665 	}
666 	com = uap->com;
667 
668 	/*
669 	 * Interpret high order word to find amount of data to be
670 	 * copied to/from the user's address space.
671 	 */
672 	size = IOCPARM_LEN(com);
673 	if ((size > IOCPARM_MAX) ||
674 	    ((com & (IOC_VOID  | IOC_IN | IOC_OUT)) == 0) ||
675 #if defined(COMPAT_FREEBSD5) || defined(COMPAT_FREEBSD4) || defined(COMPAT_43)
676 	    ((com & IOC_OUT) && size == 0) ||
677 #else
678 	    ((com & (IOC_IN | IOC_OUT)) && size == 0) ||
679 #endif
680 	    ((com & IOC_VOID) && size > 0 && size != sizeof(int)))
681 		return (ENOTTY);
682 
683 	if (size > 0) {
684 		if (com & IOC_VOID) {
685 			/* Integer argument. */
686 			arg = (intptr_t)uap->data;
687 			data = (void *)&arg;
688 			size = 0;
689 		} else {
690 			if (size > SYS_IOCTL_SMALL_SIZE)
691 				data = malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
692 			else
693 				data = smalldata;
694 		}
695 	} else
696 		data = (void *)&uap->data;
697 	if (com & IOC_IN) {
698 		error = copyin(uap->data, data, (u_int)size);
699 		if (error != 0)
700 			goto out;
701 	} else if (com & IOC_OUT) {
702 		/*
703 		 * Zero the buffer so the user always
704 		 * gets back something deterministic.
705 		 */
706 		bzero(data, size);
707 	}
708 
709 	error = kern_ioctl(td, uap->fd, com, data);
710 
711 	if (error == 0 && (com & IOC_OUT))
712 		error = copyout(data, uap->data, (u_int)size);
713 
714 out:
715 	if (size > SYS_IOCTL_SMALL_SIZE)
716 		free(data, M_IOCTLOPS);
717 	return (error);
718 }
719 
720 int
721 kern_ioctl(struct thread *td, int fd, u_long com, caddr_t data)
722 {
723 	struct file *fp;
724 	struct filedesc *fdp;
725 	int error, tmp, locked;
726 
727 	AUDIT_ARG_FD(fd);
728 	AUDIT_ARG_CMD(com);
729 
730 	fdp = td->td_proc->p_fd;
731 
732 	switch (com) {
733 	case FIONCLEX:
734 	case FIOCLEX:
735 		FILEDESC_XLOCK(fdp);
736 		locked = LA_XLOCKED;
737 		break;
738 	default:
739 #ifdef CAPABILITIES
740 		FILEDESC_SLOCK(fdp);
741 		locked = LA_SLOCKED;
742 #else
743 		locked = LA_UNLOCKED;
744 #endif
745 		break;
746 	}
747 
748 #ifdef CAPABILITIES
749 	if ((fp = fget_locked(fdp, fd)) == NULL) {
750 		error = EBADF;
751 		goto out;
752 	}
753 	if ((error = cap_ioctl_check(fdp, fd, com)) != 0) {
754 		fp = NULL;	/* fhold() was not called yet */
755 		goto out;
756 	}
757 	if (!fhold(fp)) {
758 		error = EBADF;
759 		fp = NULL;
760 		goto out;
761 	}
762 	if (locked == LA_SLOCKED) {
763 		FILEDESC_SUNLOCK(fdp);
764 		locked = LA_UNLOCKED;
765 	}
766 #else
767 	error = fget(td, fd, &cap_ioctl_rights, &fp);
768 	if (error != 0) {
769 		fp = NULL;
770 		goto out;
771 	}
772 #endif
773 	if ((fp->f_flag & (FREAD | FWRITE)) == 0) {
774 		error = EBADF;
775 		goto out;
776 	}
777 
778 	switch (com) {
779 	case FIONCLEX:
780 		fdp->fd_ofiles[fd].fde_flags &= ~UF_EXCLOSE;
781 		goto out;
782 	case FIOCLEX:
783 		fdp->fd_ofiles[fd].fde_flags |= UF_EXCLOSE;
784 		goto out;
785 	case FIONBIO:
786 		if ((tmp = *(int *)data))
787 			atomic_set_int(&fp->f_flag, FNONBLOCK);
788 		else
789 			atomic_clear_int(&fp->f_flag, FNONBLOCK);
790 		data = (void *)&tmp;
791 		break;
792 	case FIOASYNC:
793 		if ((tmp = *(int *)data))
794 			atomic_set_int(&fp->f_flag, FASYNC);
795 		else
796 			atomic_clear_int(&fp->f_flag, FASYNC);
797 		data = (void *)&tmp;
798 		break;
799 	}
800 
801 	error = fo_ioctl(fp, com, data, td->td_ucred, td);
802 out:
803 	switch (locked) {
804 	case LA_XLOCKED:
805 		FILEDESC_XUNLOCK(fdp);
806 		break;
807 #ifdef CAPABILITIES
808 	case LA_SLOCKED:
809 		FILEDESC_SUNLOCK(fdp);
810 		break;
811 #endif
812 	default:
813 		FILEDESC_UNLOCK_ASSERT(fdp);
814 		break;
815 	}
816 	if (fp != NULL)
817 		fdrop(fp, td);
818 	return (error);
819 }
820 
821 int
822 sys_posix_fallocate(struct thread *td, struct posix_fallocate_args *uap)
823 {
824 	int error;
825 
826 	error = kern_posix_fallocate(td, uap->fd, uap->offset, uap->len);
827 	return (kern_posix_error(td, error));
828 }
829 
830 int
831 kern_posix_fallocate(struct thread *td, int fd, off_t offset, off_t len)
832 {
833 	struct file *fp;
834 	int error;
835 
836 	AUDIT_ARG_FD(fd);
837 	if (offset < 0 || len <= 0)
838 		return (EINVAL);
839 	/* Check for wrap. */
840 	if (offset > OFF_MAX - len)
841 		return (EFBIG);
842 	AUDIT_ARG_FD(fd);
843 	error = fget(td, fd, &cap_pwrite_rights, &fp);
844 	if (error != 0)
845 		return (error);
846 	AUDIT_ARG_FILE(td->td_proc, fp);
847 	if ((fp->f_ops->fo_flags & DFLAG_SEEKABLE) == 0) {
848 		error = ESPIPE;
849 		goto out;
850 	}
851 	if ((fp->f_flag & FWRITE) == 0) {
852 		error = EBADF;
853 		goto out;
854 	}
855 
856 	error = fo_fallocate(fp, offset, len, td);
857  out:
858 	fdrop(fp, td);
859 	return (error);
860 }
861 
862 int
863 poll_no_poll(int events)
864 {
865 	/*
866 	 * Return true for read/write.  If the user asked for something
867 	 * special, return POLLNVAL, so that clients have a way of
868 	 * determining reliably whether or not the extended
869 	 * functionality is present without hard-coding knowledge
870 	 * of specific filesystem implementations.
871 	 */
872 	if (events & ~POLLSTANDARD)
873 		return (POLLNVAL);
874 
875 	return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
876 }
877 
878 int
879 sys_pselect(struct thread *td, struct pselect_args *uap)
880 {
881 	struct timespec ts;
882 	struct timeval tv, *tvp;
883 	sigset_t set, *uset;
884 	int error;
885 
886 	if (uap->ts != NULL) {
887 		error = copyin(uap->ts, &ts, sizeof(ts));
888 		if (error != 0)
889 		    return (error);
890 		TIMESPEC_TO_TIMEVAL(&tv, &ts);
891 		tvp = &tv;
892 	} else
893 		tvp = NULL;
894 	if (uap->sm != NULL) {
895 		error = copyin(uap->sm, &set, sizeof(set));
896 		if (error != 0)
897 			return (error);
898 		uset = &set;
899 	} else
900 		uset = NULL;
901 	return (kern_pselect(td, uap->nd, uap->in, uap->ou, uap->ex, tvp,
902 	    uset, NFDBITS));
903 }
904 
905 int
906 kern_pselect(struct thread *td, int nd, fd_set *in, fd_set *ou, fd_set *ex,
907     struct timeval *tvp, sigset_t *uset, int abi_nfdbits)
908 {
909 	int error;
910 
911 	if (uset != NULL) {
912 		error = kern_sigprocmask(td, SIG_SETMASK, uset,
913 		    &td->td_oldsigmask, 0);
914 		if (error != 0)
915 			return (error);
916 		td->td_pflags |= TDP_OLDMASK;
917 		/*
918 		 * Make sure that ast() is called on return to
919 		 * usermode and TDP_OLDMASK is cleared, restoring old
920 		 * sigmask.
921 		 */
922 		thread_lock(td);
923 		td->td_flags |= TDF_ASTPENDING;
924 		thread_unlock(td);
925 	}
926 	error = kern_select(td, nd, in, ou, ex, tvp, abi_nfdbits);
927 	return (error);
928 }
929 
930 #ifndef _SYS_SYSPROTO_H_
931 struct select_args {
932 	int	nd;
933 	fd_set	*in, *ou, *ex;
934 	struct	timeval *tv;
935 };
936 #endif
937 int
938 sys_select(struct thread *td, struct select_args *uap)
939 {
940 	struct timeval tv, *tvp;
941 	int error;
942 
943 	if (uap->tv != NULL) {
944 		error = copyin(uap->tv, &tv, sizeof(tv));
945 		if (error)
946 			return (error);
947 		tvp = &tv;
948 	} else
949 		tvp = NULL;
950 
951 	return (kern_select(td, uap->nd, uap->in, uap->ou, uap->ex, tvp,
952 	    NFDBITS));
953 }
954 
955 /*
956  * In the unlikely case when user specified n greater then the last
957  * open file descriptor, check that no bits are set after the last
958  * valid fd.  We must return EBADF if any is set.
959  *
960  * There are applications that rely on the behaviour.
961  *
962  * nd is fd_lastfile + 1.
963  */
964 static int
965 select_check_badfd(fd_set *fd_in, int nd, int ndu, int abi_nfdbits)
966 {
967 	char *addr, *oaddr;
968 	int b, i, res;
969 	uint8_t bits;
970 
971 	if (nd >= ndu || fd_in == NULL)
972 		return (0);
973 
974 	oaddr = NULL;
975 	bits = 0; /* silence gcc */
976 	for (i = nd; i < ndu; i++) {
977 		b = i / NBBY;
978 #if BYTE_ORDER == LITTLE_ENDIAN
979 		addr = (char *)fd_in + b;
980 #else
981 		addr = (char *)fd_in;
982 		if (abi_nfdbits == NFDBITS) {
983 			addr += rounddown(b, sizeof(fd_mask)) +
984 			    sizeof(fd_mask) - 1 - b % sizeof(fd_mask);
985 		} else {
986 			addr += rounddown(b, sizeof(uint32_t)) +
987 			    sizeof(uint32_t) - 1 - b % sizeof(uint32_t);
988 		}
989 #endif
990 		if (addr != oaddr) {
991 			res = fubyte(addr);
992 			if (res == -1)
993 				return (EFAULT);
994 			oaddr = addr;
995 			bits = res;
996 		}
997 		if ((bits & (1 << (i % NBBY))) != 0)
998 			return (EBADF);
999 	}
1000 	return (0);
1001 }
1002 
1003 int
1004 kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
1005     fd_set *fd_ex, struct timeval *tvp, int abi_nfdbits)
1006 {
1007 	struct filedesc *fdp;
1008 	/*
1009 	 * The magic 2048 here is chosen to be just enough for FD_SETSIZE
1010 	 * infds with the new FD_SETSIZE of 1024, and more than enough for
1011 	 * FD_SETSIZE infds, outfds and exceptfds with the old FD_SETSIZE
1012 	 * of 256.
1013 	 */
1014 	fd_mask s_selbits[howmany(2048, NFDBITS)];
1015 	fd_mask *ibits[3], *obits[3], *selbits, *sbp;
1016 	struct timeval rtv;
1017 	sbintime_t asbt, precision, rsbt;
1018 	u_int nbufbytes, ncpbytes, ncpubytes, nfdbits;
1019 	int error, lf, ndu;
1020 
1021 	if (nd < 0)
1022 		return (EINVAL);
1023 	fdp = td->td_proc->p_fd;
1024 	ndu = nd;
1025 	lf = fdp->fd_lastfile;
1026 	if (nd > lf + 1)
1027 		nd = lf + 1;
1028 
1029 	error = select_check_badfd(fd_in, nd, ndu, abi_nfdbits);
1030 	if (error != 0)
1031 		return (error);
1032 	error = select_check_badfd(fd_ou, nd, ndu, abi_nfdbits);
1033 	if (error != 0)
1034 		return (error);
1035 	error = select_check_badfd(fd_ex, nd, ndu, abi_nfdbits);
1036 	if (error != 0)
1037 		return (error);
1038 
1039 	/*
1040 	 * Allocate just enough bits for the non-null fd_sets.  Use the
1041 	 * preallocated auto buffer if possible.
1042 	 */
1043 	nfdbits = roundup(nd, NFDBITS);
1044 	ncpbytes = nfdbits / NBBY;
1045 	ncpubytes = roundup(nd, abi_nfdbits) / NBBY;
1046 	nbufbytes = 0;
1047 	if (fd_in != NULL)
1048 		nbufbytes += 2 * ncpbytes;
1049 	if (fd_ou != NULL)
1050 		nbufbytes += 2 * ncpbytes;
1051 	if (fd_ex != NULL)
1052 		nbufbytes += 2 * ncpbytes;
1053 	if (nbufbytes <= sizeof s_selbits)
1054 		selbits = &s_selbits[0];
1055 	else
1056 		selbits = malloc(nbufbytes, M_SELECT, M_WAITOK);
1057 
1058 	/*
1059 	 * Assign pointers into the bit buffers and fetch the input bits.
1060 	 * Put the output buffers together so that they can be bzeroed
1061 	 * together.
1062 	 */
1063 	sbp = selbits;
1064 #define	getbits(name, x) \
1065 	do {								\
1066 		if (name == NULL) {					\
1067 			ibits[x] = NULL;				\
1068 			obits[x] = NULL;				\
1069 		} else {						\
1070 			ibits[x] = sbp + nbufbytes / 2 / sizeof *sbp;	\
1071 			obits[x] = sbp;					\
1072 			sbp += ncpbytes / sizeof *sbp;			\
1073 			error = copyin(name, ibits[x], ncpubytes);	\
1074 			if (error != 0)					\
1075 				goto done;				\
1076 			if (ncpbytes != ncpubytes)			\
1077 				bzero((char *)ibits[x] + ncpubytes,	\
1078 				    ncpbytes - ncpubytes);		\
1079 		}							\
1080 	} while (0)
1081 	getbits(fd_in, 0);
1082 	getbits(fd_ou, 1);
1083 	getbits(fd_ex, 2);
1084 #undef	getbits
1085 
1086 #if BYTE_ORDER == BIG_ENDIAN && defined(__LP64__)
1087 	/*
1088 	 * XXX: swizzle_fdset assumes that if abi_nfdbits != NFDBITS,
1089 	 * we are running under 32-bit emulation. This should be more
1090 	 * generic.
1091 	 */
1092 #define swizzle_fdset(bits)						\
1093 	if (abi_nfdbits != NFDBITS && bits != NULL) {			\
1094 		int i;							\
1095 		for (i = 0; i < ncpbytes / sizeof *sbp; i++)		\
1096 			bits[i] = (bits[i] >> 32) | (bits[i] << 32);	\
1097 	}
1098 #else
1099 #define swizzle_fdset(bits)
1100 #endif
1101 
1102 	/* Make sure the bit order makes it through an ABI transition */
1103 	swizzle_fdset(ibits[0]);
1104 	swizzle_fdset(ibits[1]);
1105 	swizzle_fdset(ibits[2]);
1106 
1107 	if (nbufbytes != 0)
1108 		bzero(selbits, nbufbytes / 2);
1109 
1110 	precision = 0;
1111 	if (tvp != NULL) {
1112 		rtv = *tvp;
1113 		if (rtv.tv_sec < 0 || rtv.tv_usec < 0 ||
1114 		    rtv.tv_usec >= 1000000) {
1115 			error = EINVAL;
1116 			goto done;
1117 		}
1118 		if (!timevalisset(&rtv))
1119 			asbt = 0;
1120 		else if (rtv.tv_sec <= INT32_MAX) {
1121 			rsbt = tvtosbt(rtv);
1122 			precision = rsbt;
1123 			precision >>= tc_precexp;
1124 			if (TIMESEL(&asbt, rsbt))
1125 				asbt += tc_tick_sbt;
1126 			if (asbt <= SBT_MAX - rsbt)
1127 				asbt += rsbt;
1128 			else
1129 				asbt = -1;
1130 		} else
1131 			asbt = -1;
1132 	} else
1133 		asbt = -1;
1134 	seltdinit(td);
1135 	/* Iterate until the timeout expires or descriptors become ready. */
1136 	for (;;) {
1137 		error = selscan(td, ibits, obits, nd);
1138 		if (error || td->td_retval[0] != 0)
1139 			break;
1140 		error = seltdwait(td, asbt, precision);
1141 		if (error)
1142 			break;
1143 		error = selrescan(td, ibits, obits);
1144 		if (error || td->td_retval[0] != 0)
1145 			break;
1146 	}
1147 	seltdclear(td);
1148 
1149 done:
1150 	/* select is not restarted after signals... */
1151 	if (error == ERESTART)
1152 		error = EINTR;
1153 	if (error == EWOULDBLOCK)
1154 		error = 0;
1155 
1156 	/* swizzle bit order back, if necessary */
1157 	swizzle_fdset(obits[0]);
1158 	swizzle_fdset(obits[1]);
1159 	swizzle_fdset(obits[2]);
1160 #undef swizzle_fdset
1161 
1162 #define	putbits(name, x) \
1163 	if (name && (error2 = copyout(obits[x], name, ncpubytes))) \
1164 		error = error2;
1165 	if (error == 0) {
1166 		int error2;
1167 
1168 		putbits(fd_in, 0);
1169 		putbits(fd_ou, 1);
1170 		putbits(fd_ex, 2);
1171 #undef putbits
1172 	}
1173 	if (selbits != &s_selbits[0])
1174 		free(selbits, M_SELECT);
1175 
1176 	return (error);
1177 }
1178 /*
1179  * Convert a select bit set to poll flags.
1180  *
1181  * The backend always returns POLLHUP/POLLERR if appropriate and we
1182  * return this as a set bit in any set.
1183  */
1184 static int select_flags[3] = {
1185     POLLRDNORM | POLLHUP | POLLERR,
1186     POLLWRNORM | POLLHUP | POLLERR,
1187     POLLRDBAND | POLLERR
1188 };
1189 
1190 /*
1191  * Compute the fo_poll flags required for a fd given by the index and
1192  * bit position in the fd_mask array.
1193  */
1194 static __inline int
1195 selflags(fd_mask **ibits, int idx, fd_mask bit)
1196 {
1197 	int flags;
1198 	int msk;
1199 
1200 	flags = 0;
1201 	for (msk = 0; msk < 3; msk++) {
1202 		if (ibits[msk] == NULL)
1203 			continue;
1204 		if ((ibits[msk][idx] & bit) == 0)
1205 			continue;
1206 		flags |= select_flags[msk];
1207 	}
1208 	return (flags);
1209 }
1210 
1211 /*
1212  * Set the appropriate output bits given a mask of fired events and the
1213  * input bits originally requested.
1214  */
1215 static __inline int
1216 selsetbits(fd_mask **ibits, fd_mask **obits, int idx, fd_mask bit, int events)
1217 {
1218 	int msk;
1219 	int n;
1220 
1221 	n = 0;
1222 	for (msk = 0; msk < 3; msk++) {
1223 		if ((events & select_flags[msk]) == 0)
1224 			continue;
1225 		if (ibits[msk] == NULL)
1226 			continue;
1227 		if ((ibits[msk][idx] & bit) == 0)
1228 			continue;
1229 		/*
1230 		 * XXX Check for a duplicate set.  This can occur because a
1231 		 * socket calls selrecord() twice for each poll() call
1232 		 * resulting in two selfds per real fd.  selrescan() will
1233 		 * call selsetbits twice as a result.
1234 		 */
1235 		if ((obits[msk][idx] & bit) != 0)
1236 			continue;
1237 		obits[msk][idx] |= bit;
1238 		n++;
1239 	}
1240 
1241 	return (n);
1242 }
1243 
1244 static __inline int
1245 getselfd_cap(struct filedesc *fdp, int fd, struct file **fpp)
1246 {
1247 
1248 	return (fget_unlocked(fdp, fd, &cap_event_rights, fpp));
1249 }
1250 
1251 /*
1252  * Traverse the list of fds attached to this thread's seltd and check for
1253  * completion.
1254  */
1255 static int
1256 selrescan(struct thread *td, fd_mask **ibits, fd_mask **obits)
1257 {
1258 	struct filedesc *fdp;
1259 	struct selinfo *si;
1260 	struct seltd *stp;
1261 	struct selfd *sfp;
1262 	struct selfd *sfn;
1263 	struct file *fp;
1264 	fd_mask bit;
1265 	int fd, ev, n, idx;
1266 	int error;
1267 
1268 	fdp = td->td_proc->p_fd;
1269 	stp = td->td_sel;
1270 	n = 0;
1271 	STAILQ_FOREACH_SAFE(sfp, &stp->st_selq, sf_link, sfn) {
1272 		fd = (int)(uintptr_t)sfp->sf_cookie;
1273 		si = sfp->sf_si;
1274 		selfdfree(stp, sfp);
1275 		/* If the selinfo wasn't cleared the event didn't fire. */
1276 		if (si != NULL)
1277 			continue;
1278 		error = getselfd_cap(fdp, fd, &fp);
1279 		if (error)
1280 			return (error);
1281 		idx = fd / NFDBITS;
1282 		bit = (fd_mask)1 << (fd % NFDBITS);
1283 		ev = fo_poll(fp, selflags(ibits, idx, bit), td->td_ucred, td);
1284 		fdrop(fp, td);
1285 		if (ev != 0)
1286 			n += selsetbits(ibits, obits, idx, bit, ev);
1287 	}
1288 	stp->st_flags = 0;
1289 	td->td_retval[0] = n;
1290 	return (0);
1291 }
1292 
1293 /*
1294  * Perform the initial filedescriptor scan and register ourselves with
1295  * each selinfo.
1296  */
1297 static int
1298 selscan(struct thread *td, fd_mask **ibits, fd_mask **obits, int nfd)
1299 {
1300 	struct filedesc *fdp;
1301 	struct file *fp;
1302 	fd_mask bit;
1303 	int ev, flags, end, fd;
1304 	int n, idx;
1305 	int error;
1306 
1307 	fdp = td->td_proc->p_fd;
1308 	n = 0;
1309 	for (idx = 0, fd = 0; fd < nfd; idx++) {
1310 		end = imin(fd + NFDBITS, nfd);
1311 		for (bit = 1; fd < end; bit <<= 1, fd++) {
1312 			/* Compute the list of events we're interested in. */
1313 			flags = selflags(ibits, idx, bit);
1314 			if (flags == 0)
1315 				continue;
1316 			error = getselfd_cap(fdp, fd, &fp);
1317 			if (error)
1318 				return (error);
1319 			selfdalloc(td, (void *)(uintptr_t)fd);
1320 			ev = fo_poll(fp, flags, td->td_ucred, td);
1321 			fdrop(fp, td);
1322 			if (ev != 0)
1323 				n += selsetbits(ibits, obits, idx, bit, ev);
1324 		}
1325 	}
1326 
1327 	td->td_retval[0] = n;
1328 	return (0);
1329 }
1330 
1331 int
1332 sys_poll(struct thread *td, struct poll_args *uap)
1333 {
1334 	struct timespec ts, *tsp;
1335 
1336 	if (uap->timeout != INFTIM) {
1337 		if (uap->timeout < 0)
1338 			return (EINVAL);
1339 		ts.tv_sec = uap->timeout / 1000;
1340 		ts.tv_nsec = (uap->timeout % 1000) * 1000000;
1341 		tsp = &ts;
1342 	} else
1343 		tsp = NULL;
1344 
1345 	return (kern_poll(td, uap->fds, uap->nfds, tsp, NULL));
1346 }
1347 
1348 int
1349 kern_poll(struct thread *td, struct pollfd *ufds, u_int nfds,
1350     struct timespec *tsp, sigset_t *uset)
1351 {
1352 	struct pollfd *kfds;
1353 	struct pollfd stackfds[32];
1354 	sbintime_t sbt, precision, tmp;
1355 	time_t over;
1356 	struct timespec ts;
1357 	int error;
1358 
1359 	precision = 0;
1360 	if (tsp != NULL) {
1361 		if (tsp->tv_sec < 0)
1362 			return (EINVAL);
1363 		if (tsp->tv_nsec < 0 || tsp->tv_nsec >= 1000000000)
1364 			return (EINVAL);
1365 		if (tsp->tv_sec == 0 && tsp->tv_nsec == 0)
1366 			sbt = 0;
1367 		else {
1368 			ts = *tsp;
1369 			if (ts.tv_sec > INT32_MAX / 2) {
1370 				over = ts.tv_sec - INT32_MAX / 2;
1371 				ts.tv_sec -= over;
1372 			} else
1373 				over = 0;
1374 			tmp = tstosbt(ts);
1375 			precision = tmp;
1376 			precision >>= tc_precexp;
1377 			if (TIMESEL(&sbt, tmp))
1378 				sbt += tc_tick_sbt;
1379 			sbt += tmp;
1380 		}
1381 	} else
1382 		sbt = -1;
1383 
1384 	/*
1385 	 * This is kinda bogus.  We have fd limits, but that is not
1386 	 * really related to the size of the pollfd array.  Make sure
1387 	 * we let the process use at least FD_SETSIZE entries and at
1388 	 * least enough for the system-wide limits.  We want to be reasonably
1389 	 * safe, but not overly restrictive.
1390 	 */
1391 	if (nfds > maxfilesperproc && nfds > FD_SETSIZE)
1392 		return (EINVAL);
1393 	if (nfds > nitems(stackfds))
1394 		kfds = mallocarray(nfds, sizeof(*kfds), M_TEMP, M_WAITOK);
1395 	else
1396 		kfds = stackfds;
1397 	error = copyin(ufds, kfds, nfds * sizeof(*kfds));
1398 	if (error)
1399 		goto done;
1400 
1401 	if (uset != NULL) {
1402 		error = kern_sigprocmask(td, SIG_SETMASK, uset,
1403 		    &td->td_oldsigmask, 0);
1404 		if (error)
1405 			goto done;
1406 		td->td_pflags |= TDP_OLDMASK;
1407 		/*
1408 		 * Make sure that ast() is called on return to
1409 		 * usermode and TDP_OLDMASK is cleared, restoring old
1410 		 * sigmask.
1411 		 */
1412 		thread_lock(td);
1413 		td->td_flags |= TDF_ASTPENDING;
1414 		thread_unlock(td);
1415 	}
1416 
1417 	seltdinit(td);
1418 	/* Iterate until the timeout expires or descriptors become ready. */
1419 	for (;;) {
1420 		error = pollscan(td, kfds, nfds);
1421 		if (error || td->td_retval[0] != 0)
1422 			break;
1423 		error = seltdwait(td, sbt, precision);
1424 		if (error)
1425 			break;
1426 		error = pollrescan(td);
1427 		if (error || td->td_retval[0] != 0)
1428 			break;
1429 	}
1430 	seltdclear(td);
1431 
1432 done:
1433 	/* poll is not restarted after signals... */
1434 	if (error == ERESTART)
1435 		error = EINTR;
1436 	if (error == EWOULDBLOCK)
1437 		error = 0;
1438 	if (error == 0) {
1439 		error = pollout(td, kfds, ufds, nfds);
1440 		if (error)
1441 			goto out;
1442 	}
1443 out:
1444 	if (nfds > nitems(stackfds))
1445 		free(kfds, M_TEMP);
1446 	return (error);
1447 }
1448 
1449 int
1450 sys_ppoll(struct thread *td, struct ppoll_args *uap)
1451 {
1452 	struct timespec ts, *tsp;
1453 	sigset_t set, *ssp;
1454 	int error;
1455 
1456 	if (uap->ts != NULL) {
1457 		error = copyin(uap->ts, &ts, sizeof(ts));
1458 		if (error)
1459 			return (error);
1460 		tsp = &ts;
1461 	} else
1462 		tsp = NULL;
1463 	if (uap->set != NULL) {
1464 		error = copyin(uap->set, &set, sizeof(set));
1465 		if (error)
1466 			return (error);
1467 		ssp = &set;
1468 	} else
1469 		ssp = NULL;
1470 	/*
1471 	 * fds is still a pointer to user space. kern_poll() will
1472 	 * take care of copyin that array to the kernel space.
1473 	 */
1474 
1475 	return (kern_poll(td, uap->fds, uap->nfds, tsp, ssp));
1476 }
1477 
1478 static int
1479 pollrescan(struct thread *td)
1480 {
1481 	struct seltd *stp;
1482 	struct selfd *sfp;
1483 	struct selfd *sfn;
1484 	struct selinfo *si;
1485 	struct filedesc *fdp;
1486 	struct file *fp;
1487 	struct pollfd *fd;
1488 	int n;
1489 
1490 	n = 0;
1491 	fdp = td->td_proc->p_fd;
1492 	stp = td->td_sel;
1493 	FILEDESC_SLOCK(fdp);
1494 	STAILQ_FOREACH_SAFE(sfp, &stp->st_selq, sf_link, sfn) {
1495 		fd = (struct pollfd *)sfp->sf_cookie;
1496 		si = sfp->sf_si;
1497 		selfdfree(stp, sfp);
1498 		/* If the selinfo wasn't cleared the event didn't fire. */
1499 		if (si != NULL)
1500 			continue;
1501 		fp = fdp->fd_ofiles[fd->fd].fde_file;
1502 #ifdef CAPABILITIES
1503 		if (fp == NULL ||
1504 		    cap_check(cap_rights(fdp, fd->fd), &cap_event_rights) != 0)
1505 #else
1506 		if (fp == NULL)
1507 #endif
1508 		{
1509 			fd->revents = POLLNVAL;
1510 			n++;
1511 			continue;
1512 		}
1513 
1514 		/*
1515 		 * Note: backend also returns POLLHUP and
1516 		 * POLLERR if appropriate.
1517 		 */
1518 		fd->revents = fo_poll(fp, fd->events, td->td_ucred, td);
1519 		if (fd->revents != 0)
1520 			n++;
1521 	}
1522 	FILEDESC_SUNLOCK(fdp);
1523 	stp->st_flags = 0;
1524 	td->td_retval[0] = n;
1525 	return (0);
1526 }
1527 
1528 static int
1529 pollout(struct thread *td, struct pollfd *fds, struct pollfd *ufds, u_int nfd)
1530 {
1531 	int error = 0;
1532 	u_int i = 0;
1533 	u_int n = 0;
1534 
1535 	for (i = 0; i < nfd; i++) {
1536 		error = copyout(&fds->revents, &ufds->revents,
1537 		    sizeof(ufds->revents));
1538 		if (error)
1539 			return (error);
1540 		if (fds->revents != 0)
1541 			n++;
1542 		fds++;
1543 		ufds++;
1544 	}
1545 	td->td_retval[0] = n;
1546 	return (0);
1547 }
1548 
1549 static int
1550 pollscan(struct thread *td, struct pollfd *fds, u_int nfd)
1551 {
1552 	struct filedesc *fdp = td->td_proc->p_fd;
1553 	struct file *fp;
1554 	int i, n = 0;
1555 
1556 	FILEDESC_SLOCK(fdp);
1557 	for (i = 0; i < nfd; i++, fds++) {
1558 		if (fds->fd > fdp->fd_lastfile) {
1559 			fds->revents = POLLNVAL;
1560 			n++;
1561 		} else if (fds->fd < 0) {
1562 			fds->revents = 0;
1563 		} else {
1564 			fp = fdp->fd_ofiles[fds->fd].fde_file;
1565 #ifdef CAPABILITIES
1566 			if (fp == NULL ||
1567 			    cap_check(cap_rights(fdp, fds->fd), &cap_event_rights) != 0)
1568 #else
1569 			if (fp == NULL)
1570 #endif
1571 			{
1572 				fds->revents = POLLNVAL;
1573 				n++;
1574 			} else {
1575 				/*
1576 				 * Note: backend also returns POLLHUP and
1577 				 * POLLERR if appropriate.
1578 				 */
1579 				selfdalloc(td, fds);
1580 				fds->revents = fo_poll(fp, fds->events,
1581 				    td->td_ucred, td);
1582 				/*
1583 				 * POSIX requires POLLOUT to be never
1584 				 * set simultaneously with POLLHUP.
1585 				 */
1586 				if ((fds->revents & POLLHUP) != 0)
1587 					fds->revents &= ~POLLOUT;
1588 
1589 				if (fds->revents != 0)
1590 					n++;
1591 			}
1592 		}
1593 	}
1594 	FILEDESC_SUNLOCK(fdp);
1595 	td->td_retval[0] = n;
1596 	return (0);
1597 }
1598 
1599 /*
1600  * XXX This was created specifically to support netncp and netsmb.  This
1601  * allows the caller to specify a socket to wait for events on.  It returns
1602  * 0 if any events matched and an error otherwise.  There is no way to
1603  * determine which events fired.
1604  */
1605 int
1606 selsocket(struct socket *so, int events, struct timeval *tvp, struct thread *td)
1607 {
1608 	struct timeval rtv;
1609 	sbintime_t asbt, precision, rsbt;
1610 	int error;
1611 
1612 	precision = 0;	/* stupid gcc! */
1613 	if (tvp != NULL) {
1614 		rtv = *tvp;
1615 		if (rtv.tv_sec < 0 || rtv.tv_usec < 0 ||
1616 		    rtv.tv_usec >= 1000000)
1617 			return (EINVAL);
1618 		if (!timevalisset(&rtv))
1619 			asbt = 0;
1620 		else if (rtv.tv_sec <= INT32_MAX) {
1621 			rsbt = tvtosbt(rtv);
1622 			precision = rsbt;
1623 			precision >>= tc_precexp;
1624 			if (TIMESEL(&asbt, rsbt))
1625 				asbt += tc_tick_sbt;
1626 			if (asbt <= SBT_MAX - rsbt)
1627 				asbt += rsbt;
1628 			else
1629 				asbt = -1;
1630 		} else
1631 			asbt = -1;
1632 	} else
1633 		asbt = -1;
1634 	seltdinit(td);
1635 	/*
1636 	 * Iterate until the timeout expires or the socket becomes ready.
1637 	 */
1638 	for (;;) {
1639 		selfdalloc(td, NULL);
1640 		error = sopoll(so, events, NULL, td);
1641 		/* error here is actually the ready events. */
1642 		if (error)
1643 			return (0);
1644 		error = seltdwait(td, asbt, precision);
1645 		if (error)
1646 			break;
1647 	}
1648 	seltdclear(td);
1649 	/* XXX Duplicates ncp/smb behavior. */
1650 	if (error == ERESTART)
1651 		error = 0;
1652 	return (error);
1653 }
1654 
1655 /*
1656  * Preallocate two selfds associated with 'cookie'.  Some fo_poll routines
1657  * have two select sets, one for read and another for write.
1658  */
1659 static void
1660 selfdalloc(struct thread *td, void *cookie)
1661 {
1662 	struct seltd *stp;
1663 
1664 	stp = td->td_sel;
1665 	if (stp->st_free1 == NULL)
1666 		stp->st_free1 = uma_zalloc(selfd_zone, M_WAITOK|M_ZERO);
1667 	stp->st_free1->sf_td = stp;
1668 	stp->st_free1->sf_cookie = cookie;
1669 	if (stp->st_free2 == NULL)
1670 		stp->st_free2 = uma_zalloc(selfd_zone, M_WAITOK|M_ZERO);
1671 	stp->st_free2->sf_td = stp;
1672 	stp->st_free2->sf_cookie = cookie;
1673 }
1674 
1675 static void
1676 selfdfree(struct seltd *stp, struct selfd *sfp)
1677 {
1678 	STAILQ_REMOVE(&stp->st_selq, sfp, selfd, sf_link);
1679 	if (sfp->sf_si != NULL) {
1680 		mtx_lock(sfp->sf_mtx);
1681 		if (sfp->sf_si != NULL) {
1682 			TAILQ_REMOVE(&sfp->sf_si->si_tdlist, sfp, sf_threads);
1683 			refcount_release(&sfp->sf_refs);
1684 		}
1685 		mtx_unlock(sfp->sf_mtx);
1686 	}
1687 	if (refcount_release(&sfp->sf_refs))
1688 		uma_zfree(selfd_zone, sfp);
1689 }
1690 
1691 /* Drain the waiters tied to all the selfd belonging the specified selinfo. */
1692 void
1693 seldrain(struct selinfo *sip)
1694 {
1695 
1696 	/*
1697 	 * This feature is already provided by doselwakeup(), thus it is
1698 	 * enough to go for it.
1699 	 * Eventually, the context, should take care to avoid races
1700 	 * between thread calling select()/poll() and file descriptor
1701 	 * detaching, but, again, the races are just the same as
1702 	 * selwakeup().
1703 	 */
1704         doselwakeup(sip, -1);
1705 }
1706 
1707 /*
1708  * Record a select request.
1709  */
1710 void
1711 selrecord(struct thread *selector, struct selinfo *sip)
1712 {
1713 	struct selfd *sfp;
1714 	struct seltd *stp;
1715 	struct mtx *mtxp;
1716 
1717 	stp = selector->td_sel;
1718 	/*
1719 	 * Don't record when doing a rescan.
1720 	 */
1721 	if (stp->st_flags & SELTD_RESCAN)
1722 		return;
1723 	/*
1724 	 * Grab one of the preallocated descriptors.
1725 	 */
1726 	sfp = NULL;
1727 	if ((sfp = stp->st_free1) != NULL)
1728 		stp->st_free1 = NULL;
1729 	else if ((sfp = stp->st_free2) != NULL)
1730 		stp->st_free2 = NULL;
1731 	else
1732 		panic("selrecord: No free selfd on selq");
1733 	mtxp = sip->si_mtx;
1734 	if (mtxp == NULL)
1735 		mtxp = mtx_pool_find(mtxpool_select, sip);
1736 	/*
1737 	 * Initialize the sfp and queue it in the thread.
1738 	 */
1739 	sfp->sf_si = sip;
1740 	sfp->sf_mtx = mtxp;
1741 	refcount_init(&sfp->sf_refs, 2);
1742 	STAILQ_INSERT_TAIL(&stp->st_selq, sfp, sf_link);
1743 	/*
1744 	 * Now that we've locked the sip, check for initialization.
1745 	 */
1746 	mtx_lock(mtxp);
1747 	if (sip->si_mtx == NULL) {
1748 		sip->si_mtx = mtxp;
1749 		TAILQ_INIT(&sip->si_tdlist);
1750 	}
1751 	/*
1752 	 * Add this thread to the list of selfds listening on this selinfo.
1753 	 */
1754 	TAILQ_INSERT_TAIL(&sip->si_tdlist, sfp, sf_threads);
1755 	mtx_unlock(sip->si_mtx);
1756 }
1757 
1758 /* Wake up a selecting thread. */
1759 void
1760 selwakeup(struct selinfo *sip)
1761 {
1762 	doselwakeup(sip, -1);
1763 }
1764 
1765 /* Wake up a selecting thread, and set its priority. */
1766 void
1767 selwakeuppri(struct selinfo *sip, int pri)
1768 {
1769 	doselwakeup(sip, pri);
1770 }
1771 
1772 /*
1773  * Do a wakeup when a selectable event occurs.
1774  */
1775 static void
1776 doselwakeup(struct selinfo *sip, int pri)
1777 {
1778 	struct selfd *sfp;
1779 	struct selfd *sfn;
1780 	struct seltd *stp;
1781 
1782 	/* If it's not initialized there can't be any waiters. */
1783 	if (sip->si_mtx == NULL)
1784 		return;
1785 	/*
1786 	 * Locking the selinfo locks all selfds associated with it.
1787 	 */
1788 	mtx_lock(sip->si_mtx);
1789 	TAILQ_FOREACH_SAFE(sfp, &sip->si_tdlist, sf_threads, sfn) {
1790 		/*
1791 		 * Once we remove this sfp from the list and clear the
1792 		 * sf_si seltdclear will know to ignore this si.
1793 		 */
1794 		TAILQ_REMOVE(&sip->si_tdlist, sfp, sf_threads);
1795 		sfp->sf_si = NULL;
1796 		stp = sfp->sf_td;
1797 		mtx_lock(&stp->st_mtx);
1798 		stp->st_flags |= SELTD_PENDING;
1799 		cv_broadcastpri(&stp->st_wait, pri);
1800 		mtx_unlock(&stp->st_mtx);
1801 		if (refcount_release(&sfp->sf_refs))
1802 			uma_zfree(selfd_zone, sfp);
1803 	}
1804 	mtx_unlock(sip->si_mtx);
1805 }
1806 
1807 static void
1808 seltdinit(struct thread *td)
1809 {
1810 	struct seltd *stp;
1811 
1812 	if ((stp = td->td_sel) != NULL)
1813 		goto out;
1814 	td->td_sel = stp = malloc(sizeof(*stp), M_SELECT, M_WAITOK|M_ZERO);
1815 	mtx_init(&stp->st_mtx, "sellck", NULL, MTX_DEF);
1816 	cv_init(&stp->st_wait, "select");
1817 out:
1818 	stp->st_flags = 0;
1819 	STAILQ_INIT(&stp->st_selq);
1820 }
1821 
1822 static int
1823 seltdwait(struct thread *td, sbintime_t sbt, sbintime_t precision)
1824 {
1825 	struct seltd *stp;
1826 	int error;
1827 
1828 	stp = td->td_sel;
1829 	/*
1830 	 * An event of interest may occur while we do not hold the seltd
1831 	 * locked so check the pending flag before we sleep.
1832 	 */
1833 	mtx_lock(&stp->st_mtx);
1834 	/*
1835 	 * Any further calls to selrecord will be a rescan.
1836 	 */
1837 	stp->st_flags |= SELTD_RESCAN;
1838 	if (stp->st_flags & SELTD_PENDING) {
1839 		mtx_unlock(&stp->st_mtx);
1840 		return (0);
1841 	}
1842 	if (sbt == 0)
1843 		error = EWOULDBLOCK;
1844 	else if (sbt != -1)
1845 		error = cv_timedwait_sig_sbt(&stp->st_wait, &stp->st_mtx,
1846 		    sbt, precision, C_ABSOLUTE);
1847 	else
1848 		error = cv_wait_sig(&stp->st_wait, &stp->st_mtx);
1849 	mtx_unlock(&stp->st_mtx);
1850 
1851 	return (error);
1852 }
1853 
1854 void
1855 seltdfini(struct thread *td)
1856 {
1857 	struct seltd *stp;
1858 
1859 	stp = td->td_sel;
1860 	if (stp == NULL)
1861 		return;
1862 	if (stp->st_free1)
1863 		uma_zfree(selfd_zone, stp->st_free1);
1864 	if (stp->st_free2)
1865 		uma_zfree(selfd_zone, stp->st_free2);
1866 	td->td_sel = NULL;
1867 	cv_destroy(&stp->st_wait);
1868 	mtx_destroy(&stp->st_mtx);
1869 	free(stp, M_SELECT);
1870 }
1871 
1872 /*
1873  * Remove the references to the thread from all of the objects we were
1874  * polling.
1875  */
1876 static void
1877 seltdclear(struct thread *td)
1878 {
1879 	struct seltd *stp;
1880 	struct selfd *sfp;
1881 	struct selfd *sfn;
1882 
1883 	stp = td->td_sel;
1884 	STAILQ_FOREACH_SAFE(sfp, &stp->st_selq, sf_link, sfn)
1885 		selfdfree(stp, sfp);
1886 	stp->st_flags = 0;
1887 }
1888 
1889 static void selectinit(void *);
1890 SYSINIT(select, SI_SUB_SYSCALLS, SI_ORDER_ANY, selectinit, NULL);
1891 static void
1892 selectinit(void *dummy __unused)
1893 {
1894 
1895 	selfd_zone = uma_zcreate("selfd", sizeof(struct selfd), NULL, NULL,
1896 	    NULL, NULL, UMA_ALIGN_PTR, 0);
1897 	mtxpool_select = mtx_pool_create("select mtxpool", 128, MTX_DEF);
1898 }
1899 
1900 /*
1901  * Set up a syscall return value that follows the convention specified for
1902  * posix_* functions.
1903  */
1904 int
1905 kern_posix_error(struct thread *td, int error)
1906 {
1907 
1908 	if (error <= 0)
1909 		return (error);
1910 	td->td_errno = error;
1911 	td->td_pflags |= TDP_NERRNO;
1912 	td->td_retval[0] = error;
1913 	return (0);
1914 }
1915