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 = (caddr_t)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((caddr_t)uap->iovp, (caddr_t)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((caddr_t)auio.uio_iov, (caddr_t)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((caddr_t)uap->iovp, (caddr_t)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((caddr_t)auio.uio_iov, (caddr_t)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 = (caddr_t)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, (caddr_t)&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, (caddr_t)&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((caddr_t)uap->tv, (caddr_t)&atv, 785 sizeof (atv)); 786 if (error) 787 goto done_nosellock; 788 if (itimerfix(&atv)) { 789 error = EINVAL; 790 goto done_nosellock; 791 } 792 getmicrouptime(&rtv); 793 timevaladd(&atv, &rtv); 794 } else { 795 atv.tv_sec = 0; 796 atv.tv_usec = 0; 797 } 798 timo = 0; 799 mtx_lock(&sellock); 800 retry: 801 ncoll = nselcoll; 802 mtx_lock_spin(&sched_lock); 803 td->td_flags |= TDF_SELECT; 804 mtx_unlock_spin(&sched_lock); 805 mtx_unlock(&sellock); 806 807 /* XXX Is there a better place for this? */ 808 TAILQ_INIT(&td->td_selq); 809 error = selscan(td, ibits, obits, uap->nd); 810 mtx_lock(&sellock); 811 if (error || td->td_retval[0]) 812 goto done; 813 if (atv.tv_sec || atv.tv_usec) { 814 getmicrouptime(&rtv); 815 if (timevalcmp(&rtv, &atv, >=)) 816 goto done; 817 ttv = atv; 818 timevalsub(&ttv, &rtv); 819 timo = ttv.tv_sec > 24 * 60 * 60 ? 820 24 * 60 * 60 * hz : tvtohz(&ttv); 821 } 822 823 /* 824 * An event of interest may occur while we do not hold 825 * sellock, so check TDF_SELECT and the number of 826 * collisions and rescan the file descriptors if 827 * necessary. 828 */ 829 mtx_lock_spin(&sched_lock); 830 if ((td->td_flags & TDF_SELECT) == 0 || nselcoll != ncoll) { 831 mtx_unlock_spin(&sched_lock); 832 goto retry; 833 } 834 mtx_unlock_spin(&sched_lock); 835 836 if (timo > 0) 837 error = cv_timedwait_sig(&selwait, &sellock, timo); 838 else 839 error = cv_wait_sig(&selwait, &sellock); 840 841 if (error == 0) 842 goto retry; 843 844 done: 845 clear_selinfo_list(td); 846 mtx_lock_spin(&sched_lock); 847 td->td_flags &= ~TDF_SELECT; 848 mtx_unlock_spin(&sched_lock); 849 mtx_unlock(&sellock); 850 851 done_nosellock: 852 /* select is not restarted after signals... */ 853 if (error == ERESTART) 854 error = EINTR; 855 if (error == EWOULDBLOCK) 856 error = 0; 857 #define putbits(name, x) \ 858 if (uap->name && (error2 = copyout(obits[x], uap->name, ncpbytes))) \ 859 error = error2; 860 if (error == 0) { 861 int error2; 862 863 putbits(in, 0); 864 putbits(ou, 1); 865 putbits(ex, 2); 866 #undef putbits 867 } 868 if (selbits != &s_selbits[0]) 869 free(selbits, M_SELECT); 870 871 mtx_unlock(&Giant); 872 return (error); 873 } 874 875 static int 876 selscan(td, ibits, obits, nfd) 877 struct thread *td; 878 fd_mask **ibits, **obits; 879 int nfd; 880 { 881 int msk, i, fd; 882 fd_mask bits; 883 struct file *fp; 884 int n = 0; 885 /* Note: backend also returns POLLHUP/POLLERR if appropriate. */ 886 static int flag[3] = { POLLRDNORM, POLLWRNORM, POLLRDBAND }; 887 struct filedesc *fdp = td->td_proc->p_fd; 888 889 FILEDESC_LOCK(fdp); 890 for (msk = 0; msk < 3; msk++) { 891 if (ibits[msk] == NULL) 892 continue; 893 for (i = 0; i < nfd; i += NFDBITS) { 894 bits = ibits[msk][i/NFDBITS]; 895 /* ffs(int mask) not portable, fd_mask is long */ 896 for (fd = i; bits && fd < nfd; fd++, bits >>= 1) { 897 if (!(bits & 1)) 898 continue; 899 if ((fp = fget_locked(fdp, fd)) == NULL) { 900 FILEDESC_UNLOCK(fdp); 901 return (EBADF); 902 } 903 if (fo_poll(fp, flag[msk], fp->f_cred, td)) { 904 obits[msk][(fd)/NFDBITS] |= 905 ((fd_mask)1 << ((fd) % NFDBITS)); 906 n++; 907 } 908 } 909 } 910 } 911 FILEDESC_UNLOCK(fdp); 912 td->td_retval[0] = n; 913 return (0); 914 } 915 916 /* 917 * Poll system call. 918 */ 919 #ifndef _SYS_SYSPROTO_H_ 920 struct poll_args { 921 struct pollfd *fds; 922 u_int nfds; 923 int timeout; 924 }; 925 #endif 926 /* 927 * MPSAFE 928 */ 929 int 930 poll(td, uap) 931 struct thread *td; 932 struct poll_args *uap; 933 { 934 caddr_t bits; 935 char smallbits[32 * sizeof(struct pollfd)]; 936 struct timeval atv, rtv, ttv; 937 int error = 0, timo; 938 u_int ncoll, nfds; 939 size_t ni; 940 941 nfds = SCARG(uap, nfds); 942 943 mtx_lock(&Giant); 944 /* 945 * This is kinda bogus. We have fd limits, but that is not 946 * really related to the size of the pollfd array. Make sure 947 * we let the process use at least FD_SETSIZE entries and at 948 * least enough for the current limits. We want to be reasonably 949 * safe, but not overly restrictive. 950 */ 951 if ((nfds > td->td_proc->p_rlimit[RLIMIT_NOFILE].rlim_cur) && 952 (nfds > FD_SETSIZE)) { 953 error = EINVAL; 954 goto done2; 955 } 956 ni = nfds * sizeof(struct pollfd); 957 if (ni > sizeof(smallbits)) 958 bits = malloc(ni, M_TEMP, M_WAITOK); 959 else 960 bits = smallbits; 961 error = copyin(SCARG(uap, fds), bits, ni); 962 if (error) 963 goto done_nosellock; 964 if (SCARG(uap, timeout) != INFTIM) { 965 atv.tv_sec = SCARG(uap, timeout) / 1000; 966 atv.tv_usec = (SCARG(uap, timeout) % 1000) * 1000; 967 if (itimerfix(&atv)) { 968 error = EINVAL; 969 goto done_nosellock; 970 } 971 getmicrouptime(&rtv); 972 timevaladd(&atv, &rtv); 973 } else { 974 atv.tv_sec = 0; 975 atv.tv_usec = 0; 976 } 977 timo = 0; 978 mtx_lock(&sellock); 979 retry: 980 ncoll = nselcoll; 981 mtx_lock_spin(&sched_lock); 982 td->td_flags |= TDF_SELECT; 983 mtx_unlock_spin(&sched_lock); 984 mtx_unlock(&sellock); 985 986 /* XXX Is there a better place for this? */ 987 TAILQ_INIT(&td->td_selq); 988 error = pollscan(td, (struct pollfd *)bits, nfds); 989 mtx_lock(&sellock); 990 if (error || td->td_retval[0]) 991 goto done; 992 if (atv.tv_sec || atv.tv_usec) { 993 getmicrouptime(&rtv); 994 if (timevalcmp(&rtv, &atv, >=)) 995 goto done; 996 ttv = atv; 997 timevalsub(&ttv, &rtv); 998 timo = ttv.tv_sec > 24 * 60 * 60 ? 999 24 * 60 * 60 * hz : tvtohz(&ttv); 1000 } 1001 /* 1002 * An event of interest may occur while we do not hold 1003 * sellock, so check TDF_SELECT and the number of collisions 1004 * and rescan the file descriptors if necessary. 1005 */ 1006 mtx_lock_spin(&sched_lock); 1007 if ((td->td_flags & TDF_SELECT) == 0 || nselcoll != ncoll) { 1008 mtx_unlock_spin(&sched_lock); 1009 goto retry; 1010 } 1011 mtx_unlock_spin(&sched_lock); 1012 1013 if (timo > 0) 1014 error = cv_timedwait_sig(&selwait, &sellock, timo); 1015 else 1016 error = cv_wait_sig(&selwait, &sellock); 1017 1018 if (error == 0) 1019 goto retry; 1020 1021 done: 1022 clear_selinfo_list(td); 1023 mtx_lock_spin(&sched_lock); 1024 td->td_flags &= ~TDF_SELECT; 1025 mtx_unlock_spin(&sched_lock); 1026 mtx_unlock(&sellock); 1027 1028 done_nosellock: 1029 /* poll is not restarted after signals... */ 1030 if (error == ERESTART) 1031 error = EINTR; 1032 if (error == EWOULDBLOCK) 1033 error = 0; 1034 if (error == 0) { 1035 error = copyout(bits, SCARG(uap, fds), ni); 1036 if (error) 1037 goto out; 1038 } 1039 out: 1040 if (ni > sizeof(smallbits)) 1041 free(bits, M_TEMP); 1042 done2: 1043 mtx_unlock(&Giant); 1044 return (error); 1045 } 1046 1047 static int 1048 pollscan(td, fds, nfd) 1049 struct thread *td; 1050 struct pollfd *fds; 1051 u_int nfd; 1052 { 1053 register struct filedesc *fdp = td->td_proc->p_fd; 1054 int i; 1055 struct file *fp; 1056 int n = 0; 1057 1058 FILEDESC_LOCK(fdp); 1059 for (i = 0; i < nfd; i++, fds++) { 1060 if (fds->fd >= fdp->fd_nfiles) { 1061 fds->revents = POLLNVAL; 1062 n++; 1063 } else if (fds->fd < 0) { 1064 fds->revents = 0; 1065 } else { 1066 fp = fdp->fd_ofiles[fds->fd]; 1067 if (fp == NULL) { 1068 fds->revents = POLLNVAL; 1069 n++; 1070 } else { 1071 /* 1072 * Note: backend also returns POLLHUP and 1073 * POLLERR if appropriate. 1074 */ 1075 fds->revents = fo_poll(fp, fds->events, 1076 fp->f_cred, td); 1077 if (fds->revents != 0) 1078 n++; 1079 } 1080 } 1081 } 1082 FILEDESC_UNLOCK(fdp); 1083 td->td_retval[0] = n; 1084 return (0); 1085 } 1086 1087 /* 1088 * OpenBSD poll system call. 1089 * XXX this isn't quite a true representation.. OpenBSD uses select ops. 1090 */ 1091 #ifndef _SYS_SYSPROTO_H_ 1092 struct openbsd_poll_args { 1093 struct pollfd *fds; 1094 u_int nfds; 1095 int timeout; 1096 }; 1097 #endif 1098 /* 1099 * MPSAFE 1100 */ 1101 int 1102 openbsd_poll(td, uap) 1103 register struct thread *td; 1104 register struct openbsd_poll_args *uap; 1105 { 1106 return (poll(td, (struct poll_args *)uap)); 1107 } 1108 1109 /* 1110 * Remove the references to the thread from all of the objects 1111 * we were polling. 1112 * 1113 * This code assumes that the underlying owner of the selinfo 1114 * structure will hold sellock before it changes it, and that 1115 * it will unlink itself from our list if it goes away. 1116 */ 1117 void 1118 clear_selinfo_list(td) 1119 struct thread *td; 1120 { 1121 struct selinfo *si; 1122 1123 mtx_assert(&sellock, MA_OWNED); 1124 TAILQ_FOREACH(si, &td->td_selq, si_thrlist) 1125 si->si_thread = NULL; 1126 TAILQ_INIT(&td->td_selq); 1127 } 1128 1129 /*ARGSUSED*/ 1130 int 1131 seltrue(dev, events, td) 1132 dev_t dev; 1133 int events; 1134 struct thread *td; 1135 { 1136 1137 return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)); 1138 } 1139 1140 /* 1141 * Record a select request. 1142 */ 1143 void 1144 selrecord(selector, sip) 1145 struct thread *selector; 1146 struct selinfo *sip; 1147 { 1148 1149 mtx_lock(&sellock); 1150 /* 1151 * If the thread is NULL then take ownership of selinfo 1152 * however if the thread is not NULL and the thread points to 1153 * someone else, then we have a collision, otherwise leave it alone 1154 * as we've owned it in a previous selrecord on this selinfo. 1155 */ 1156 if (sip->si_thread == NULL) { 1157 sip->si_thread = selector; 1158 TAILQ_INSERT_TAIL(&selector->td_selq, sip, si_thrlist); 1159 } else if (sip->si_thread != selector) { 1160 sip->si_flags |= SI_COLL; 1161 } 1162 1163 mtx_unlock(&sellock); 1164 } 1165 1166 /* 1167 * Do a wakeup when a selectable event occurs. 1168 */ 1169 void 1170 selwakeup(sip) 1171 struct selinfo *sip; 1172 { 1173 struct thread *td; 1174 1175 mtx_lock(&sellock); 1176 td = sip->si_thread; 1177 if ((sip->si_flags & SI_COLL) != 0) { 1178 nselcoll++; 1179 sip->si_flags &= ~SI_COLL; 1180 cv_broadcast(&selwait); 1181 } 1182 if (td == NULL) { 1183 mtx_unlock(&sellock); 1184 return; 1185 } 1186 TAILQ_REMOVE(&td->td_selq, sip, si_thrlist); 1187 sip->si_thread = NULL; 1188 mtx_lock_spin(&sched_lock); 1189 if (td->td_wchan == (caddr_t)&selwait) { 1190 if (td->td_proc->p_stat == SSLEEP) 1191 setrunnable(td); 1192 else 1193 cv_waitq_remove(td); 1194 } else 1195 td->td_flags &= ~TDF_SELECT; 1196 mtx_unlock_spin(&sched_lock); 1197 mtx_unlock(&sellock); 1198 } 1199 1200 static void selectinit(void *); 1201 SYSINIT(select, SI_SUB_LOCK, SI_ORDER_FIRST, selectinit, NULL) 1202 1203 /* ARGSUSED*/ 1204 static void 1205 selectinit(dummy) 1206 void *dummy; 1207 { 1208 cv_init(&selwait, "select"); 1209 mtx_init(&sellock, "sellck", NULL, MTX_DEF); 1210 } 1211