sys/kern/sys_generic.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 | /* * Copyright (c) 1982, 1986, 1989, 1993 * The Regents of the University of California. All rights reserved. * (c) UNIX System Laboratories, Inc. * All or some portions of this file are derived from material licensed * to the University of California by American Telephone and Telegraph * Co. or Unix System Laboratories, Inc. and are reproduced herein with * the permission of UNIX System Laboratories, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)sys_generic.c 8.5 (Berkeley) 1/21/94 * $FreeBSD: src/sys/kern/sys_generic.c,v 1.55.2.10 2001/03/17 10:39:32 peter Exp $ */ #include "opt_ktrace.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/sysmsg.h> #include <sys/event.h> #include <sys/filedesc.h> #include <sys/filio.h> #include <sys/fcntl.h> #include <sys/file.h> #include <sys/proc.h> #include <sys/signalvar.h> #include <sys/socketvar.h> #include <sys/malloc.h> #include <sys/uio.h> #include <sys/kernel.h> #include <sys/kern_syscall.h> #include <sys/mapped_ioctl.h> #include <sys/poll.h> #include <sys/queue.h> #include <sys/resourcevar.h> #include <sys/socketops.h> #include <sys/sysctl.h> #include <sys/sysent.h> #include <sys/buf.h> #ifdef KTRACE #include <sys/ktrace.h> #endif #include <vm/vm.h> #include <vm/vm_page.h> #include <sys/file2.h> #include <sys/spinlock2.h> #include <sys/signal2.h> #include <machine/limits.h> static MALLOC_DEFINE(M_IOCTLOPS, "ioctlops", "ioctl data buffer"); static MALLOC_DEFINE(M_IOCTLMAP, "ioctlmap", "mapped ioctl handler buffer"); static MALLOC_DEFINE(M_SELECT, "select", "select() buffer"); MALLOC_DEFINE(M_IOV, "iov", "large iov's"); static struct krate krate_poll = { .freq = 1 }; typedef struct kfd_set { fd_mask fds_bits[2]; } kfd_set; enum select_copyin_states { COPYIN_READ, COPYIN_WRITE, COPYIN_EXCEPT, COPYIN_DONE }; struct select_kevent_copyin_args { kfd_set *read_set; kfd_set *write_set; kfd_set *except_set; int active_set; /* One of select_copyin_states */ struct lwp *lwp; /* Pointer to our lwp */ int num_fds; /* Number of file descriptors (syscall arg) */ int proc_fds; /* Processed fd's (wraps) */ int error; /* Returned to userland */ }; struct poll_kevent_copyin_args { struct lwp *lwp; struct pollfd *fds; int nfds; int pfds; int error; }; static struct lwkt_token mioctl_token = LWKT_TOKEN_INITIALIZER(mioctl_token); static int doselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timespec *ts, int *res); static int dopoll(int nfds, struct pollfd *fds, struct timespec *ts, int *res, int flags); static int dofileread(int, struct file *, struct uio *, int, size_t *); static int dofilewrite(int, struct file *, struct uio *, int, size_t *); /* * Read system call. * * MPSAFE */ int sys_read(struct sysmsg *sysmsg, const struct read_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov; int error; if ((ssize_t)uap->nbyte < 0) error = EINVAL; aiov.iov_base = uap->buf; aiov.iov_len = uap->nbyte; auio.uio_iov = &aiov; auio.uio_iovcnt = 1; auio.uio_offset = -1; auio.uio_resid = uap->nbyte; auio.uio_rw = UIO_READ; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; error = kern_preadv(uap->fd, &auio, 0, &sysmsg->sysmsg_szresult); return(error); } /* * Positioned (Pread) read system call * * MPSAFE */ int sys_extpread(struct sysmsg *sysmsg, const struct extpread_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov; int error; int flags; if ((ssize_t)uap->nbyte < 0) return(EINVAL); aiov.iov_base = uap->buf; aiov.iov_len = uap->nbyte; auio.uio_iov = &aiov; auio.uio_iovcnt = 1; auio.uio_offset = uap->offset; auio.uio_resid = uap->nbyte; auio.uio_rw = UIO_READ; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; flags = uap->flags & O_FMASK; if (uap->offset != (off_t)-1) flags |= O_FOFFSET; error = kern_preadv(uap->fd, &auio, flags, &sysmsg->sysmsg_szresult); return(error); } /* * Scatter read system call. * * MPSAFE */ int sys_readv(struct sysmsg *sysmsg, const struct readv_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov[UIO_SMALLIOV], *iov = NULL; int error; error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, &auio.uio_resid); if (error) return (error); auio.uio_iov = iov; auio.uio_iovcnt = uap->iovcnt; auio.uio_offset = -1; auio.uio_rw = UIO_READ; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; error = kern_preadv(uap->fd, &auio, 0, &sysmsg->sysmsg_szresult); iovec_free(&iov, aiov); return (error); } /* * Scatter positioned read system call. * * MPSAFE */ int sys_extpreadv(struct sysmsg *sysmsg, const struct extpreadv_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov[UIO_SMALLIOV], *iov = NULL; int error; int flags; error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, &auio.uio_resid); if (error) return (error); auio.uio_iov = iov; auio.uio_iovcnt = uap->iovcnt; auio.uio_offset = uap->offset; auio.uio_rw = UIO_READ; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; flags = uap->flags & O_FMASK; if (uap->offset != (off_t)-1) flags |= O_FOFFSET; error = kern_preadv(uap->fd, &auio, flags, &sysmsg->sysmsg_szresult); iovec_free(&iov, aiov); return(error); } /* * MPSAFE */ int kern_preadv(int fd, struct uio *auio, int flags, size_t *res) { struct thread *td = curthread; struct file *fp; int error; fp = holdfp(td, fd, FREAD); if (fp == NULL) return (EBADF); if (flags & O_FOFFSET && fp->f_type != DTYPE_VNODE) { error = ESPIPE; } else { error = dofileread(fd, fp, auio, flags, res); } dropfp(td, fd, fp); return(error); } /* * Common code for readv and preadv that reads data in * from a file using the passed in uio, offset, and flags. * * MPALMOSTSAFE - ktrace needs help */ static int dofileread(int fd, struct file *fp, struct uio *auio, int flags, size_t *res) { int error; size_t len; #ifdef KTRACE struct thread *td = curthread; struct iovec *ktriov = NULL; struct uio ktruio; #endif #ifdef KTRACE /* * if tracing, save a copy of iovec */ if (KTRPOINT(td, KTR_GENIO)) { int iovlen = auio->uio_iovcnt * sizeof(struct iovec); ktriov = kmalloc(iovlen, M_TEMP, M_WAITOK); bcopy((caddr_t)auio->uio_iov, (caddr_t)ktriov, iovlen); ktruio = *auio; } #endif len = auio->uio_resid; error = fo_read(fp, auio, fp->f_cred, flags); if (error) { if (auio->uio_resid != len && (error == ERESTART || error == EINTR || error == EWOULDBLOCK)) error = 0; } #ifdef KTRACE if (ktriov != NULL) { if (error == 0) { ktruio.uio_iov = ktriov; ktruio.uio_resid = len - auio->uio_resid; ktrgenio(td->td_lwp, fd, UIO_READ, &ktruio, error); } kfree(ktriov, M_TEMP); } #endif if (error == 0) *res = len - auio->uio_resid; return(error); } /* * Write system call * * MPSAFE */ int sys_write(struct sysmsg *sysmsg, const struct write_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov; int error; if ((ssize_t)uap->nbyte < 0) error = EINVAL; aiov.iov_base = (void *)(uintptr_t)uap->buf; aiov.iov_len = uap->nbyte; auio.uio_iov = &aiov; auio.uio_iovcnt = 1; auio.uio_offset = -1; auio.uio_resid = uap->nbyte; auio.uio_rw = UIO_WRITE; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; error = kern_pwritev(uap->fd, &auio, 0, &sysmsg->sysmsg_szresult); return(error); } /* * Pwrite system call * * MPSAFE */ int sys_extpwrite(struct sysmsg *sysmsg, const struct extpwrite_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov; int error; int flags; if ((ssize_t)uap->nbyte < 0) error = EINVAL; aiov.iov_base = (void *)(uintptr_t)uap->buf; aiov.iov_len = uap->nbyte; auio.uio_iov = &aiov; auio.uio_iovcnt = 1; auio.uio_offset = uap->offset; auio.uio_resid = uap->nbyte; auio.uio_rw = UIO_WRITE; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; flags = uap->flags & O_FMASK; if (uap->offset != (off_t)-1) flags |= O_FOFFSET; error = kern_pwritev(uap->fd, &auio, flags, &sysmsg->sysmsg_szresult); return(error); } /* * MPSAFE */ int sys_writev(struct sysmsg *sysmsg, const struct writev_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov[UIO_SMALLIOV], *iov = NULL; int error; error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, &auio.uio_resid); if (error) return (error); auio.uio_iov = iov; auio.uio_iovcnt = uap->iovcnt; auio.uio_offset = -1; auio.uio_rw = UIO_WRITE; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; error = kern_pwritev(uap->fd, &auio, 0, &sysmsg->sysmsg_szresult); iovec_free(&iov, aiov); return (error); } /* * Gather positioned write system call * * MPSAFE */ int sys_extpwritev(struct sysmsg *sysmsg, const struct extpwritev_args *uap) { struct thread *td = curthread; struct uio auio; struct iovec aiov[UIO_SMALLIOV], *iov = NULL; int error; int flags; error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, &auio.uio_resid); if (error) return (error); auio.uio_iov = iov; auio.uio_iovcnt = uap->iovcnt; auio.uio_offset = uap->offset; auio.uio_rw = UIO_WRITE; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; flags = uap->flags & O_FMASK; if (uap->offset != (off_t)-1) flags |= O_FOFFSET; error = kern_pwritev(uap->fd, &auio, flags, &sysmsg->sysmsg_szresult); iovec_free(&iov, aiov); return(error); } /* * MPSAFE */ int kern_pwritev(int fd, struct uio *auio, int flags, size_t *res) { struct thread *td = curthread; struct file *fp; int error; fp = holdfp(td, fd, FWRITE); if (fp == NULL) return (EBADF); else if ((flags & O_FOFFSET) && fp->f_type != DTYPE_VNODE) { error = ESPIPE; } else { error = dofilewrite(fd, fp, auio, flags, res); } dropfp(td, fd, fp); return(error); } /* * Common code for writev and pwritev that writes data to * a file using the passed in uio, offset, and flags. * * MPALMOSTSAFE - ktrace needs help */ static int dofilewrite(int fd, struct file *fp, struct uio *auio, int flags, size_t *res) { struct thread *td = curthread; struct lwp *lp = td->td_lwp; int error; size_t len; #ifdef KTRACE struct iovec *ktriov = NULL; struct uio ktruio; #endif #ifdef KTRACE /* * if tracing, save a copy of iovec and uio */ if (KTRPOINT(td, KTR_GENIO)) { int iovlen = auio->uio_iovcnt * sizeof(struct iovec); ktriov = kmalloc(iovlen, M_TEMP, M_WAITOK); bcopy((caddr_t)auio->uio_iov, (caddr_t)ktriov, iovlen); ktruio = *auio; } #endif len = auio->uio_resid; error = fo_write(fp, auio, fp->f_cred, flags); if (error) { if (auio->uio_resid != len && (error == ERESTART || error == EINTR || error == EWOULDBLOCK)) error = 0; /* Socket layer is responsible for issuing SIGPIPE. */ if (error == EPIPE && fp->f_type != DTYPE_SOCKET) lwpsignal(lp->lwp_proc, lp, SIGPIPE); } #ifdef KTRACE if (ktriov != NULL) { if (error == 0) { ktruio.uio_iov = ktriov; ktruio.uio_resid = len - auio->uio_resid; ktrgenio(lp, fd, UIO_WRITE, &ktruio, error); } kfree(ktriov, M_TEMP); } #endif if (error == 0) *res = len - auio->uio_resid; return(error); } /* * Ioctl system call * * MPSAFE */ int sys_ioctl(struct sysmsg *sysmsg, const struct ioctl_args *uap) { int error; error = mapped_ioctl(uap->fd, uap->com, uap->data, NULL, sysmsg); return (error); } struct ioctl_map_entry { const char *subsys; struct ioctl_map_range *cmd_ranges; LIST_ENTRY(ioctl_map_entry) entries; }; /* * The true heart of all ioctl syscall handlers (native, emulation). * If map != NULL, it will be searched for a matching entry for com, * and appropriate conversions/conversion functions will be utilized. * * MPSAFE */ int mapped_ioctl(int fd, u_long com, caddr_t uspc_data, struct ioctl_map *map, struct sysmsg *msg) { struct thread *td = curthread; struct proc *p = td->td_proc; struct ucred *cred; struct file *fp; struct ioctl_map_range *iomc = NULL; int error; u_int size; u_long ocom = com; caddr_t data, memp; int tmp; #define STK_PARAMS 128 union { char stkbuf[STK_PARAMS]; long align; } ubuf; KKASSERT(p); cred = td->td_ucred; memp = NULL; fp = holdfp(td, fd, FREAD|FWRITE); if (fp == NULL) return(EBADF); if (map != NULL) { /* obey translation map */ u_long maskcmd; struct ioctl_map_entry *e; maskcmd = com & map->mask; lwkt_gettoken(&mioctl_token); LIST_FOREACH(e, &map->mapping, entries) { for (iomc = e->cmd_ranges; iomc->start != 0 || iomc->maptocmd != 0 || iomc->wrapfunc != NULL || iomc->mapfunc != NULL; iomc++) { if (maskcmd >= iomc->start && maskcmd <= iomc->end) break; } /* Did we find a match? */ if (iomc->start != 0 || iomc->maptocmd != 0 || iomc->wrapfunc != NULL || iomc->mapfunc != NULL) break; } lwkt_reltoken(&mioctl_token); if (iomc == NULL || (iomc->start == 0 && iomc->maptocmd == 0 && iomc->wrapfunc == NULL && iomc->mapfunc == NULL)) { krateprintf(&krate_poll, "%s: 'ioctl' fd=%d, cmd=0x%lx ('%c',%d) " "not implemented\n", map->sys, fd, maskcmd, (int)((maskcmd >> 8) & 0xff), (int)(maskcmd & 0xff)); error = EINVAL; goto done; } /* * If it's a non-range one to one mapping, maptocmd should be * correct. If it's a ranged one to one mapping, we pass the * original value of com, and for a range mapped to a different * range, we always need a mapping function to translate the * ioctl to our native ioctl. Ex. 6500-65ff <-> 9500-95ff */ if (iomc->start == iomc->end && iomc->maptocmd == iomc->maptoend) { com = iomc->maptocmd; } else if (iomc->start == iomc->maptocmd && iomc->end == iomc->maptoend) { if (iomc->mapfunc != NULL) com = iomc->mapfunc(iomc->start, iomc->end, iomc->start, iomc->end, com, com); } else { if (iomc->mapfunc != NULL) { com = iomc->mapfunc(iomc->start, iomc->end, iomc->maptocmd, iomc->maptoend, com, ocom); } else { krateprintf(&krate_poll, "%s: Invalid mapping for fd=%d, " "cmd=%#lx ('%c',%d)\n", map->sys, fd, maskcmd, (int)((maskcmd >> 8) & 0xff), (int)(maskcmd & 0xff)); error = EINVAL; goto done; } } } switch (com) { case FIONCLEX: error = fclrfdflags(p->p_fd, fd, UF_EXCLOSE); goto done; case FIOCLEX: error = faddfdflags(p->p_fd, fd, UF_EXCLOSE); goto done; } /* * Interpret high order word to find amount of data to be * copied to/from the user's address space. */ size = IOCPARM_LEN(com); if (size > IOCPARM_MAX) { error = ENOTTY; goto done; } if ((com & IOC_VOID) == 0 && size > sizeof(ubuf.stkbuf)) { memp = kmalloc(size, M_IOCTLOPS, M_WAITOK); data = memp; } else { memp = NULL; data = ubuf.stkbuf; } if (com & IOC_VOID) { *(caddr_t *)data = uspc_data; } else if (com & IOC_IN) { if (size != 0) { error = copyin(uspc_data, data, (size_t)size); if (error) goto done; } else { *(caddr_t *)data = uspc_data; } } else if ((com & IOC_OUT) != 0 && size) { /* * Zero the buffer so the user always * gets back something deterministic. */ bzero(data, (size_t)size); } switch (com) { case FIONBIO: if ((tmp = *(int *)data)) atomic_set_int(&fp->f_flag, FNONBLOCK); else atomic_clear_int(&fp->f_flag, FNONBLOCK); error = 0; break; case FIOASYNC: if ((tmp = *(int *)data)) atomic_set_int(&fp->f_flag, FASYNC); else atomic_clear_int(&fp->f_flag, FASYNC); error = fo_ioctl(fp, FIOASYNC, (caddr_t)&tmp, cred, msg); break; default: /* * If there is a override function, * call it instead of directly routing the call */ if (map != NULL && iomc->wrapfunc != NULL) error = iomc->wrapfunc(fp, com, ocom, data, cred); else error = fo_ioctl(fp, com, data, cred, msg); /* * Copy any data to user, size was * already set and checked above. */ if (error == 0 && (com & IOC_OUT) != 0 && size != 0) error = copyout(data, uspc_data, (size_t)size); break; } done: if (memp != NULL) kfree(memp, M_IOCTLOPS); dropfp(td, fd, fp); return(error); } /* * MPSAFE */ int mapped_ioctl_register_handler(struct ioctl_map_handler *he) { struct ioctl_map_entry *ne; KKASSERT(he != NULL && he->map != NULL && he->cmd_ranges != NULL && he->subsys != NULL && *he->subsys != '\0'); ne = kmalloc(sizeof(struct ioctl_map_entry), M_IOCTLMAP, M_WAITOK | M_ZERO); ne->subsys = he->subsys; ne->cmd_ranges = he->cmd_ranges; lwkt_gettoken(&mioctl_token); LIST_INSERT_HEAD(&he->map->mapping, ne, entries); lwkt_reltoken(&mioctl_token); return(0); } /* * MPSAFE */ int mapped_ioctl_unregister_handler(struct ioctl_map_handler *he) { struct ioctl_map_entry *ne; int error = EINVAL; KKASSERT(he != NULL && he->map != NULL && he->cmd_ranges != NULL); lwkt_gettoken(&mioctl_token); LIST_FOREACH(ne, &he->map->mapping, entries) { if (ne->cmd_ranges == he->cmd_ranges) { LIST_REMOVE(ne, entries); kfree(ne, M_IOCTLMAP); error = 0; break; } } lwkt_reltoken(&mioctl_token); return(error); } static int nseldebug; SYSCTL_INT(_kern, OID_AUTO, nseldebug, CTLFLAG_RW, &nseldebug, 0, ""); /* * Select system call. * * MPSAFE */ int sys_select(struct sysmsg *sysmsg, const struct select_args *uap) { struct timeval ktv; struct timespec *ktsp, kts; int error; /* * Get timeout if any. */ if (uap->tv != NULL) { error = copyin(uap->tv, &ktv, sizeof (ktv)); if (error) return (error); TIMEVAL_TO_TIMESPEC(&ktv, &kts); ktsp = &kts; } else { ktsp = NULL; } /* * Do real work. */ error = doselect(uap->nd, uap->in, uap->ou, uap->ex, ktsp, &sysmsg->sysmsg_result); return (error); } /* * Pselect system call. */ int sys_pselect(struct sysmsg *sysmsg, const struct pselect_args *uap) { struct thread *td = curthread; struct lwp *lp = td->td_lwp; struct timespec *ktsp, kts; sigset_t sigmask; int error; /* * Get timeout if any. */ if (uap->ts != NULL) { error = copyin(uap->ts, &kts, sizeof (kts)); if (error) return (error); ktsp = &kts; } else { ktsp = NULL; } /* * Install temporary signal mask if any provided. */ if (uap->sigmask != NULL) { error = copyin(uap->sigmask, &sigmask, sizeof(sigmask)); if (error) return (error); lwkt_gettoken(&lp->lwp_proc->p_token); lp->lwp_oldsigmask = lp->lwp_sigmask; SIG_CANTMASK(sigmask); lp->lwp_sigmask = sigmask; lwkt_reltoken(&lp->lwp_proc->p_token); sigirefs_wait(lp->lwp_proc); } /* * Do real job. */ error = doselect(uap->nd, uap->in, uap->ou, uap->ex, ktsp, &sysmsg->sysmsg_result); if (uap->sigmask != NULL) { lwkt_gettoken(&lp->lwp_proc->p_token); /* doselect() responsible for turning ERESTART into EINTR */ KKASSERT(error != ERESTART); if (error == EINTR) { /* * We can't restore the previous signal mask now * because it could block the signal that interrupted * us. So make a note to restore it after executing * the handler. */ lp->lwp_flags |= LWP_OLDMASK; } else { /* * No handler to run. Restore previous mask immediately. */ lp->lwp_sigmask = lp->lwp_oldsigmask; sigirefs_wait(lp->lwp_proc); } lwkt_reltoken(&lp->lwp_proc->p_token); } return (error); } static int select_copyin(void *arg, struct kevent *kevp, int maxevents, int *events) { struct select_kevent_copyin_args *skap = NULL; struct kevent *kev; int fd; kfd_set *fdp = NULL; short filter = 0; u_int fflags = 0; skap = (struct select_kevent_copyin_args *)arg; if (*events == maxevents) return (0); while (skap->active_set < COPYIN_DONE) { switch (skap->active_set) { case COPYIN_READ: /* * Register descriptors for the read filter */ fdp = skap->read_set; filter = EVFILT_READ; fflags = NOTE_OLDAPI; if (fdp) break; ++skap->active_set; skap->proc_fds = 0; /* fall through */ case COPYIN_WRITE: /* * Register descriptors for the write filter */ fdp = skap->write_set; filter = EVFILT_WRITE; fflags = NOTE_OLDAPI; if (fdp) break; ++skap->active_set; skap->proc_fds = 0; /* fall through */ case COPYIN_EXCEPT: /* * Register descriptors for the exception filter */ fdp = skap->except_set; filter = EVFILT_EXCEPT; fflags = NOTE_OLDAPI | NOTE_OOB; if (fdp) break; ++skap->active_set; skap->proc_fds = 0; /* fall through */ case COPYIN_DONE: /* * Nothing left to register */ return(0); /* NOT REACHED */ } while (skap->proc_fds < skap->num_fds) { fd = skap->proc_fds; if (FD_ISSET(fd, fdp)) { kev = &kevp[*events]; EV_SET(kev, fd, filter, EV_ADD|EV_ENABLE, fflags, 0, (void *)(uintptr_t) skap->lwp->lwp_kqueue_serial); FD_CLR(fd, fdp); ++*events; if (nseldebug) { kprintf( "select fd %d filter %d " "serial %ju\n", fd, filter, (uintmax_t) skap->lwp->lwp_kqueue_serial); } } ++skap->proc_fds; if (*events == maxevents) return (0); } skap->active_set++; skap->proc_fds = 0; } return (0); } static int select_copyout(void *arg, struct kevent *kevp, int count, int *res) { struct select_kevent_copyin_args *skap; struct kevent kev; int i; int n; skap = (struct select_kevent_copyin_args *)arg; for (i = 0; i < count; ++i) { /* * Filter out and delete spurious events */ if ((uint64_t)(uintptr_t)kevp[i].udata != skap->lwp->lwp_kqueue_serial) { panic("select_copyout: unexpected udata"); deregister: kev = kevp[i]; kev.flags = EV_DISABLE|EV_DELETE; n = 1; kqueue_register(&skap->lwp->lwp_kqueue, &kev, &n, 0); if (nseldebug) { kprintf("select fd %ju mismatched serial %ju\n", (uintmax_t)kevp[i].ident, (uintmax_t)skap->lwp->lwp_kqueue_serial); } continue; } /* * Handle errors */ if (kevp[i].flags & EV_ERROR) { int error = kevp[i].data; switch (error) { case EBADF: /* * A bad file descriptor is considered a * fatal error for select, bail out. */ skap->error = error; *res = -1; return error; default: /* * Select silently swallows any unknown errors * for descriptors in the read or write sets. * * ALWAYS filter out EOPNOTSUPP errors from * filters (at least until all filters support * EVFILT_EXCEPT) * * We also filter out ENODEV since dev_dkqfilter * returns ENODEV if EOPNOTSUPP is returned in an * inner call. * * XXX: fix this */ if (kevp[i].filter != EVFILT_READ && kevp[i].filter != EVFILT_WRITE && error != EOPNOTSUPP && error != ENODEV) { skap->error = error; *res = -1; return error; } break; } /* * We must deregister any unsupported select events * to avoid a live-lock. */ if (nseldebug) { kprintf("select fd %ju filter %d error %d\n", (uintmax_t)kevp[i].ident, kevp[i].filter, error); } goto deregister; } switch (kevp[i].filter) { case EVFILT_READ: FD_SET(kevp[i].ident, skap->read_set); break; case EVFILT_WRITE: FD_SET(kevp[i].ident, skap->write_set); break; case EVFILT_EXCEPT: FD_SET(kevp[i].ident, skap->except_set); break; } ++*res; } return (0); } /* * Copy select bits in from userland. Allocate kernel memory if the * set is large. */ static int getbits(int bytes, fd_set *in_set, kfd_set **out_set, kfd_set *tmp_set) { int error; if (in_set) { if (bytes < sizeof(*tmp_set)) *out_set = tmp_set; else *out_set = kmalloc(bytes, M_SELECT, M_WAITOK); error = copyin(in_set, *out_set, bytes); } else { *out_set = NULL; error = 0; } return (error); } /* * Copy returned select bits back out to userland. */ static int putbits(int bytes, kfd_set *in_set, fd_set *out_set) { int error; if (in_set) { error = copyout(in_set, out_set, bytes); } else { error = 0; } return (error); } static int dotimeout_only(struct timespec *ts) { return(nanosleep1(ts, NULL)); } /* * Common code for sys_select() and sys_pselect(). * * in, out and ex are userland pointers. ts must point to validated * kernel-side timeout value or NULL for infinite timeout. res must * point to syscall return value. */ static int doselect(int nd, fd_set *read, fd_set *write, fd_set *except, struct timespec *ts, int *res) { struct proc *p = curproc; struct select_kevent_copyin_args *kap, ka; int bytes, error; kfd_set read_tmp; kfd_set write_tmp; kfd_set except_tmp; *res = 0; if (nd < 0) return (EINVAL); if (nd == 0 && ts) return (dotimeout_only(ts)); if (nd > p->p_fd->fd_nfiles) /* limit kmalloc */ nd = p->p_fd->fd_nfiles; kap = &ka; kap->lwp = curthread->td_lwp; kap->num_fds = nd; kap->proc_fds = 0; kap->error = 0; kap->active_set = COPYIN_READ; /* * Calculate bytes based on the number of __fd_mask[] array entries * multiplied by the size of __fd_mask. */ bytes = howmany(nd, __NFDBITS) * sizeof(__fd_mask); /* kap->read_set = NULL; not needed */ kap->write_set = NULL; kap->except_set = NULL; error = getbits(bytes, read, &kap->read_set, &read_tmp); if (error == 0) error = getbits(bytes, write, &kap->write_set, &write_tmp); if (error == 0) error = getbits(bytes, except, &kap->except_set, &except_tmp); if (error) goto done; /* * NOTE: Make sure the max events passed to kern_kevent() is * effectively unlimited. (nd * 3) accomplishes this. * * (*res) continues to increment as returned events are * loaded in. */ error = kern_kevent(&kap->lwp->lwp_kqueue, 0x7FFFFFFF, res, kap, select_copyin, select_copyout, ts, KEVENT_AUTO_STALE); if (error == 0) error = putbits(bytes, kap->read_set, read); if (error == 0) error = putbits(bytes, kap->write_set, write); if (error == 0) error = putbits(bytes, kap->except_set, except); /* * An error from an individual event that should be passed * back to userland (EBADF) */ if (kap->error) error = kap->error; /* * Clean up. */ done: if (kap->read_set && kap->read_set != &read_tmp) kfree(kap->read_set, M_SELECT); if (kap->write_set && kap->write_set != &write_tmp) kfree(kap->write_set, M_SELECT); if (kap->except_set && kap->except_set != &except_tmp) kfree(kap->except_set, M_SELECT); kap->lwp->lwp_kqueue_serial += kap->num_fds; return (error); } /* * Poll system call. * * MPSAFE */ int sys_poll(struct sysmsg *sysmsg, const struct poll_args *uap) { struct timespec ts, *tsp; int error; if (uap->timeout != INFTIM) { if (uap->timeout < 0) return (EINVAL); ts.tv_sec = uap->timeout / 1000; ts.tv_nsec = (uap->timeout % 1000) * 1000 * 1000; tsp = &ts; } else { tsp = NULL; } error = dopoll(uap->nfds, uap->fds, tsp, &sysmsg->sysmsg_result, 0); return (error); } /* * Ppoll system call. * * MPSAFE */ int sys_ppoll(struct sysmsg *sysmsg, const struct ppoll_args *uap) { struct thread *td = curthread; struct lwp *lp = td->td_lwp; struct timespec *ktsp, kts; sigset_t sigmask; int error; /* * Get timeout if any. */ if (uap->ts != NULL) { error = copyin(uap->ts, &kts, sizeof (kts)); if (error) return (error); ktsp = &kts; } else { ktsp = NULL; } /* * Install temporary signal mask if any provided. */ if (uap->sigmask != NULL) { error = copyin(uap->sigmask, &sigmask, sizeof(sigmask)); if (error) return (error); lwkt_gettoken(&lp->lwp_proc->p_token); lp->lwp_oldsigmask = lp->lwp_sigmask; SIG_CANTMASK(sigmask); lp->lwp_sigmask = sigmask; lwkt_reltoken(&lp->lwp_proc->p_token); sigirefs_wait(lp->lwp_proc); } error = dopoll(uap->nfds, uap->fds, ktsp, &sysmsg->sysmsg_result, ktsp != NULL ? KEVENT_TIMEOUT_PRECISE : 0); if (uap->sigmask != NULL) { lwkt_gettoken(&lp->lwp_proc->p_token); /* dopoll() responsible for turning ERESTART into EINTR */ KKASSERT(error != ERESTART); if (error == EINTR) { /* * We can't restore the previous signal mask now * because it could block the signal that interrupted * us. So make a note to restore it after executing * the handler. */ lp->lwp_flags |= LWP_OLDMASK; } else { /* * No handler to run. Restore previous mask immediately. */ lp->lwp_sigmask = lp->lwp_oldsigmask; sigirefs_wait(lp->lwp_proc); } lwkt_reltoken(&lp->lwp_proc->p_token); } return (error); } static int poll_copyin(void *arg, struct kevent *kevp, int maxevents, int *events) { struct poll_kevent_copyin_args *pkap; struct pollfd *pfd; struct kevent *kev; int kev_count; pkap = (struct poll_kevent_copyin_args *)arg; while (pkap->pfds < pkap->nfds) { pfd = &pkap->fds[pkap->pfds]; /* Clear return events */ pfd->revents = 0; /* Do not check if fd is equal to -1 */ if (pfd->fd == -1) { ++pkap->pfds; continue; } /* * NOTE: pfd->events == 0 implies POLLHUP in BSDs. Used * by at least sshd and X11 udev support. */ kev_count = 0; if (pfd->events == 0) kev_count++; if (pfd->events & (POLLIN | POLLHUP | POLLRDNORM)) kev_count++; if (pfd->events & (POLLOUT | POLLWRNORM)) kev_count++; if (pfd->events & (POLLPRI | POLLRDBAND)) kev_count++; if (*events + kev_count > maxevents) return (0); /* * NOTE: A combined serial number and poll array index is * stored in kev->udata. * * NOTE: Events will be registered with KEVENT_UNIQUE_NOTES * set, using kev->data for the uniqifier. kev->data * is an implied in the actual registration. */ kev = &kevp[*events]; /* * Implied POLLHUP */ if (pfd->events == 0) { int notes = NOTE_OLDAPI | NOTE_HUPONLY; EV_SET(kev++, pfd->fd, EVFILT_READ, EV_ADD|EV_ENABLE, notes, pkap->pfds, (void *)(uintptr_t) (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); } /* * Nominal read events */ if (pfd->events & (POLLIN | POLLHUP | POLLRDNORM)) { int notes = NOTE_OLDAPI; if ((pfd->events & (POLLIN | POLLRDNORM)) == 0) notes |= NOTE_HUPONLY; EV_SET(kev++, pfd->fd, EVFILT_READ, EV_ADD|EV_ENABLE, notes, pkap->pfds, (void *)(uintptr_t) (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); } /* * Nominal write events */ if (pfd->events & (POLLOUT | POLLWRNORM)) { EV_SET(kev++, pfd->fd, EVFILT_WRITE, EV_ADD|EV_ENABLE, NOTE_OLDAPI, pkap->pfds, (void *)(uintptr_t) (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); } /* * Nominal exceptional events */ if (pfd->events & (POLLPRI | POLLRDBAND)) { EV_SET(kev++, pfd->fd, EVFILT_EXCEPT, EV_ADD|EV_ENABLE, NOTE_OLDAPI | NOTE_OOB, pkap->pfds, (void *)(uintptr_t) (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); } if (nseldebug) { kprintf("poll index %d/%d fd %d events %08x " "serial %ju\n", pkap->pfds, pkap->nfds-1, pfd->fd, pfd->events, (uintmax_t)pkap->lwp->lwp_kqueue_serial); } ++pkap->pfds; (*events) += kev_count; } return (0); } static int poll_copyout(void *arg, struct kevent *kevp, int count, int *res) { struct poll_kevent_copyin_args *pkap; struct pollfd *pfd; struct kevent kev; int count_res; int i; int n; uint64_t pi; pkap = (struct poll_kevent_copyin_args *)arg; for (i = 0; i < count; ++i) { /* * Extract the poll array index and delete spurious events. * We can easily tell if the serial number is incorrect * by checking whether the extracted index is out of range. */ pi = (uint64_t)(uintptr_t)kevp[i].udata - pkap->lwp->lwp_kqueue_serial; if (pi >= pkap->nfds) { panic("poll_copyout: unexpected udata"); deregister: kev = kevp[i]; kev.flags = EV_DISABLE|EV_DELETE; kev.data = pi; /* uniquifier */ n = 1; kqueue_register(&pkap->lwp->lwp_kqueue, &kev, &n, KEVENT_UNIQUE_NOTES); if (nseldebug) { kprintf("poll index %ju out of range against " "serial %ju\n", (uintmax_t)pi, (uintmax_t)pkap->lwp->lwp_kqueue_serial); } continue; } /* * Locate the pollfd and process events */ pfd = &pkap->fds[pi]; if (kevp[i].ident == pfd->fd) { /* * A single descriptor may generate an error against * more than one filter, make sure to set the * appropriate flags but do not increment (*res) * more than once. */ count_res = (pfd->revents == 0); if (kevp[i].flags & EV_ERROR) { switch(kevp[i].data) { case EBADF: case POLLNVAL: /* Bad file descriptor */ if (count_res) ++*res; pfd->revents |= POLLNVAL; break; default: /* * Poll silently swallows any unknown * errors except in the case of POLLPRI * (OOB/urgent data). * * ALWAYS filter out EOPNOTSUPP errors * from filters, common applications * set POLLPRI|POLLRDBAND and most * filters do not support EVFILT_EXCEPT. * * We also filter out ENODEV since * dev_dkqfilter returns ENODEV if * EOPNOTSUPP is returned in an * inner call. * * XXX: fix this */ if (kevp[i].filter != EVFILT_READ && kevp[i].filter != EVFILT_WRITE && kevp[i].data != EOPNOTSUPP && kevp[i].data != ENODEV) { if (count_res) ++*res; pfd->revents |= POLLERR; } break; } if (pfd->revents == 0 && nseldebug) { kprintf("poll index EV_ERROR %ju fd %d " "filter %d error %jd\n", (uintmax_t)pi, pfd->fd, kevp[i].filter, (intmax_t)kevp[i].data); } /* * Silently deregister any unhandled EV_ERROR * condition (usually EOPNOTSUPP). */ if (pfd->revents == 0) goto deregister; continue; } switch (kevp[i].filter) { case EVFILT_READ: /* * NODATA on the read side can indicate a * half-closed situation and not necessarily * a disconnect, so depend on the user * issuing a read() and getting 0 bytes back. * * If EV_HUP is set the peer completely * disconnected and we can set POLLHUP. * Linux can return POLLHUP even if read * data has not been drained, so we should * too. */ /* if (kevp[i].flags & EV_NODATA) */ { if (kevp[i].flags & EV_HUP) pfd->revents |= POLLHUP; } if ((kevp[i].flags & EV_EOF) && kevp[i].fflags != 0) pfd->revents |= POLLERR; if (pfd->events & POLLIN) pfd->revents |= POLLIN; if (pfd->events & POLLRDNORM) pfd->revents |= POLLRDNORM; break; case EVFILT_WRITE: /* * As per the OpenGroup POLLHUP is mutually * exclusive with the writability flags. I * consider this a bit broken but... * * In this case a disconnect is implied even * for a half-closed (write side) situation. */ if (kevp[i].flags & EV_EOF) { pfd->revents |= POLLHUP; if (kevp[i].fflags != 0) pfd->revents |= POLLERR; } else { if (pfd->events & POLLOUT) pfd->revents |= POLLOUT; if (pfd->events & POLLWRNORM) pfd->revents |= POLLWRNORM; } break; case EVFILT_EXCEPT: /* * EV_NODATA should never be tagged for this * filter. */ if (pfd->events & POLLPRI) pfd->revents |= POLLPRI; if (pfd->events & POLLRDBAND) pfd->revents |= POLLRDBAND; break; } if (nseldebug) { kprintf("poll index %ju/%d fd %d " "revents %08x\n", (uintmax_t)pi, pkap->nfds, pfd->fd, pfd->revents); } if (count_res && pfd->revents) ++*res; } /* * We must deregister any kqueue poll event that does not * set poll return bits to prevent a live-lock. */ if (pfd->revents == 0) { krateprintf(&krate_poll, "poll index %ju no-action %ju/%d " "events=%08x kevpfilt=%d/%08x\n", (uintmax_t)pi, (uintmax_t)kevp[i].ident, pfd->fd, pfd->events, kevp[i].filter, kevp[i].flags); goto deregister; } } return (0); } static int dopoll(int nfds, struct pollfd *fds, struct timespec *ts, int *res, int flags) { struct poll_kevent_copyin_args ka; struct pollfd sfds[64]; int bytes; int error; flags |= KEVENT_AUTO_STALE | KEVENT_UNIQUE_NOTES; *res = 0; if (nfds < 0) return (EINVAL); if (nfds == 0 && ts) return (dotimeout_only(ts)); /* * This is a bit arbitrary but we need to limit internal kmallocs. */ if (nfds > maxfilesperproc * 2) nfds = maxfilesperproc * 2; bytes = sizeof(struct pollfd) * nfds; ka.lwp = curthread->td_lwp; ka.nfds = nfds; ka.pfds = 0; ka.error = 0; if (ka.nfds < 64) ka.fds = sfds; else ka.fds = kmalloc(bytes, M_SELECT, M_WAITOK); error = copyin(fds, ka.fds, bytes); if (error == 0) error = kern_kevent(&ka.lwp->lwp_kqueue, 0x7FFFFFFF, res, &ka, poll_copyin, poll_copyout, ts, flags); if (error == 0) error = copyout(ka.fds, fds, bytes); if (ka.fds != sfds) kfree(ka.fds, M_SELECT); ka.lwp->lwp_kqueue_serial += nfds; return (error); } static int socket_wait_copyin(void *arg, struct kevent *kevp, int maxevents, int *events) { return (0); } static int socket_wait_copyout(void *arg, struct kevent *kevp, int count, int *res) { ++*res; return (0); } extern struct fileops socketops; /* * NOTE: Callers of socket_wait() must already have a reference on the * socket. */ int socket_wait(struct socket *so, struct timespec *ts, int *res) { struct thread *td = curthread; struct file *fp; struct kqueue kq; struct kevent kev; int error, fd; int n; if ((error = falloc(td->td_lwp, &fp, &fd)) != 0) return (error); fp->f_type = DTYPE_SOCKET; fp->f_flag = FREAD | FWRITE; fp->f_ops = &socketops; fp->f_data = so; fsetfd(td->td_lwp->lwp_proc->p_fd, fp, fd); faddfdflags(td->td_proc->p_fd, fd, UF_EXCLOSE); bzero(&kq, sizeof(kq)); kqueue_init(&kq, td->td_lwp->lwp_proc->p_fd); EV_SET(&kev, fd, EVFILT_READ, EV_ADD|EV_ENABLE, 0, 0, NULL); n = 1; if ((error = kqueue_register(&kq, &kev, &n, 0)) != 0) { fdrop(fp); return (error); } error = kern_kevent(&kq, 1, res, NULL, socket_wait_copyin, socket_wait_copyout, ts, 0); EV_SET(&kev, fd, EVFILT_READ, EV_DELETE|EV_DISABLE, 0, 0, NULL); n = 1; kqueue_register(&kq, &kev, &n, 0); fp->f_ops = &badfileops; fdrop(fp); return (error); } /* * OpenBSD poll system call. * XXX this isn't quite a true representation.. OpenBSD uses select ops. * * MPSAFE */ int sys_openbsd_poll(struct sysmsg *sysmsg, const struct openbsd_poll_args *uap) { return (sys_poll(sysmsg, (const struct poll_args *)uap)); } /*ARGSUSED*/ int seltrue(cdev_t dev, int events) { return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)); } |