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
/* * Copyright (c) 2020 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <sys/domain.h> #include <sys/socket.h> #include <sys/protosw.h> #include <sys/mcache.h> #include <sys/systm.h> #include <sys/sysctl.h> #include <sys/random.h> #include <sys/mbuf.h> #include <sys/vsock_domain.h> #include <sys/vsock_transport.h> #include <kern/task.h> #include <kern/zalloc.h> #include <kern/locks.h> #include <machine/atomic.h> #include <IOKit/IOBSD.h> #define sotovsockpcb(so) ((struct vsockpcb *)(so)->so_pcb) #define VSOCK_PORT_RESERVED 1024 #define VSOCK_PRIVATE_ENTITLEMENT "com.apple.private.vsock" /* VSock Protocol Globals */ static struct vsock_transport * _Atomic the_vsock_transport[VSOCK_PROTO_MAX]; static ZONE_DEFINE_TYPE(vsockpcb_zone, "vsockpcbzone", struct vsockpcb, ZC_NONE); static struct vsockpcbinfo vsockinfo[VSOCK_PROTO_MAX]; static uint32_t vsock_sendspace[VSOCK_PROTO_MAX]; static uint32_t vsock_recvspace[VSOCK_PROTO_MAX]; /* VSock Private Entitlements */ static errno_t vsock_validate_entitlements(uint16_t protocol, struct proc *p) { if (protocol != VSOCK_PROTO_PRIVATE) { return 0; } if (!p) { p = current_proc(); } if (p == kernproc) { // Assume kernel callers are entitled. return 0; } if (!IOTaskHasEntitlement(proc_task(p), VSOCK_PRIVATE_ENTITLEMENT)) { return EPERM; } return 0; } /* VSock PCB Helpers */ static uint32_t vsock_get_peer_space(struct vsockpcb *_Nonnull pcb) { VERIFY(pcb != NULL); return pcb->peer_buf_alloc - (pcb->tx_cnt - pcb->peer_fwd_cnt); } static void vsock_update_send_buffer_space(struct vsockpcb *_Nonnull pcb) { VERIFY(pcb != NULL); socket_lock_assert_owned(pcb->so); // rdar://152542875 (xpc_file_transfer_create_with_path() fails for VIRTUALMACHINE_DEVICE) // We must keep the socket send buffer high water count aligned with our calculated // peer receive buffer space to workaround a quirk in `sendmsg()` / `sosend()` for // non-blocking sockets where a EWOULDBLOCK return code is quietly hidden from the caller. uint32_t free_space = vsock_get_peer_space(pcb); pcb->so->so_snd.sb_hiwat = min(pcb->send_space, free_space); } static struct vsockpcb * vsock_get_matching_pcb(struct vsock_address src, struct vsock_address dst, uint16_t protocol) { struct vsockpcb *preferred = NULL; struct vsockpcb *match = NULL; struct vsockpcb *pcb = NULL; lck_rw_lock_shared(&vsockinfo[protocol].bound_lock); LIST_FOREACH(pcb, &vsockinfo[protocol].bound, bound) { // Source cid and port must match. Only destination port must match. (Allows for a changing CID during migration) socket_lock(pcb->so, 1); if ((pcb->so->so_state & SS_ISCONNECTED || pcb->so->so_state & SS_ISCONNECTING) && pcb->local_address.cid == src.cid && pcb->local_address.port == src.port && pcb->remote_address.port == dst.port) { preferred = pcb; break; } else if ((pcb->local_address.cid == src.cid || pcb->local_address.cid == VMADDR_CID_ANY) && pcb->local_address.port == src.port) { match = pcb; } socket_unlock(pcb->so, 1); } if (!preferred && match) { socket_lock(match->so, 1); preferred = match; } lck_rw_done(&vsockinfo[protocol].bound_lock); return preferred; } static errno_t vsock_bind_address_if_free(struct vsockpcb *_Nonnull pcb, uint32_t local_cid, uint32_t local_port, uint32_t remote_cid, uint32_t remote_port) { VERIFY(pcb != NULL); socket_lock_assert_owned(pcb->so); // Privileged ports. if (local_port != VMADDR_PORT_ANY && local_port < VSOCK_PORT_RESERVED && current_task() != kernel_task && proc_suser(current_proc()) != 0) { return EACCES; } bool taken = false; const bool check_remote = (remote_cid != VMADDR_CID_ANY && remote_port != VMADDR_PORT_ANY); const uint16_t protocol = pcb->so->so_protocol; struct vsockpcb *pcb_match = NULL; socket_unlock(pcb->so, 0); lck_rw_lock_exclusive(&vsockinfo[protocol].bound_lock); LIST_FOREACH(pcb_match, &vsockinfo[protocol].bound, bound) { socket_lock(pcb_match->so, 1); if (pcb == pcb_match || (!check_remote && pcb_match->local_address.port == local_port) || (check_remote && pcb_match->local_address.port == local_port && pcb_match->remote_address.cid == remote_cid && pcb_match->remote_address.port == remote_port)) { socket_unlock(pcb_match->so, 1); taken = true; break; } socket_unlock(pcb_match->so, 1); } socket_lock(pcb->so, 0); if (!taken) { pcb->local_address = (struct vsock_address) { .cid = local_cid, .port = local_port }; pcb->remote_address = (struct vsock_address) { .cid = remote_cid, .port = remote_port }; LIST_INSERT_HEAD(&vsockinfo[protocol].bound, pcb, bound); } lck_rw_done(&vsockinfo[protocol].bound_lock); return taken ? EADDRINUSE : 0; } static errno_t vsock_bind_address(struct vsockpcb *pcb, struct vsock_address laddr, struct vsock_address raddr) { if (!pcb) { return EINVAL; } socket_lock_assert_owned(pcb->so); // Certain CIDs are reserved. if (laddr.cid == VMADDR_CID_HYPERVISOR || laddr.cid == VMADDR_CID_RESERVED || laddr.cid == VMADDR_CID_HOST) { return EADDRNOTAVAIL; } // Remote address must be fully specified or not specified at all. if ((raddr.cid == VMADDR_CID_ANY) ^ (raddr.port == VMADDR_PORT_ANY)) { return EINVAL; } // Cannot bind if already bound. if (pcb->local_address.port != VMADDR_PORT_ANY) { return EINVAL; } uint32_t transport_cid; struct vsock_transport *transport = pcb->transport; errno_t error = transport->get_cid(transport->provider, &transport_cid); if (error) { return error; } // Local CID must be this transport's CID or any. if (laddr.cid != transport_cid && laddr.cid != VMADDR_CID_ANY) { return EINVAL; } if (laddr.port != VMADDR_PORT_ANY) { error = vsock_bind_address_if_free(pcb, laddr.cid, laddr.port, raddr.cid, raddr.port); } else { const uint16_t protocol = pcb->so->so_protocol; socket_unlock(pcb->so, 0); lck_mtx_lock(&vsockinfo[protocol].port_lock); socket_lock(pcb->so, 0); const uint32_t first = VSOCK_PORT_RESERVED; const uint32_t last = VMADDR_PORT_ANY - 1; uint32_t count = last - first + 1; uint32_t *last_port = &vsockinfo[protocol].last_port; if (pcb->so->so_flags & SOF_BINDRANDOMPORT) { uint32_t random = 0; read_frandom(&random, sizeof(random)); *last_port = first + (random % count); } do { if (count == 0) { lck_mtx_unlock(&vsockinfo[protocol].port_lock); return EADDRNOTAVAIL; } count--; ++*last_port; if (*last_port < first || *last_port > last) { *last_port = first; } error = vsock_bind_address_if_free(pcb, laddr.cid, *last_port, raddr.cid, raddr.port); } while (error); lck_mtx_unlock(&vsockinfo[protocol].port_lock); } return error; } static void vsock_unbind_pcb_locked(struct vsockpcb *pcb, bool is_locked) { if (!pcb) { return; } struct socket *so = pcb->so; socket_lock_assert_owned(so); // Bail if disconnect and already unbound. if (so->so_state & SS_ISDISCONNECTED) { assert(pcb->bound.le_next == NULL); assert(pcb->bound.le_prev == NULL); return; } const uint16_t protocol = so->so_protocol; if (!is_locked) { socket_unlock(so, 0); lck_rw_lock_exclusive(&vsockinfo[protocol].bound_lock); socket_lock(so, 0); // Case where some other thread also called unbind() on this socket while waiting to acquire its lock. if (!pcb->bound.le_prev) { soisdisconnected(so); lck_rw_done(&vsockinfo[protocol].bound_lock); return; } } soisdisconnected(so); LIST_REMOVE(pcb, bound); pcb->bound.le_next = NULL; pcb->bound.le_prev = NULL; if (!is_locked) { lck_rw_done(&vsockinfo[protocol].bound_lock); } } static void vsock_unbind_pcb(struct vsockpcb *pcb) { vsock_unbind_pcb_locked(pcb, false); } static struct sockaddr * vsock_new_sockaddr(struct vsock_address *address) { if (!address) { return NULL; } struct sockaddr_vm *addr; addr = (struct sockaddr_vm *)alloc_sockaddr(sizeof(*addr), Z_WAITOK | Z_NOFAIL); addr->svm_family = AF_VSOCK; addr->svm_port = address->port; addr->svm_cid = address->cid; return (struct sockaddr *)addr; } static errno_t vsock_pcb_send_message(struct vsockpcb *pcb, enum vsock_operation operation, mbuf_t m) { if (!pcb) { if (m != NULL) { mbuf_freem_list(m); } return EINVAL; } socket_lock_assert_owned(pcb->so); errno_t error; struct vsock_address dst = pcb->remote_address; if (dst.cid == VMADDR_CID_ANY || dst.port == VMADDR_PORT_ANY) { if (m != NULL) { mbuf_freem_list(m); } return EINVAL; } struct vsock_address src = pcb->local_address; if (src.cid == VMADDR_CID_ANY) { uint32_t transport_cid; struct vsock_transport *transport = pcb->transport; error = transport->get_cid(transport->provider, &transport_cid); if (error) { if (m != NULL) { mbuf_freem_list(m); } return error; } src.cid = transport_cid; } const uint16_t protocol = pcb->so->so_protocol; const uint32_t buf_alloc = pcb->so->so_rcv.sb_hiwat; const uint32_t fwd_cnt = pcb->fwd_cnt; if (src.cid == dst.cid) { pcb->last_buf_alloc = buf_alloc; pcb->last_fwd_cnt = fwd_cnt; socket_unlock(pcb->so, 0); error = vsock_put_message(src, dst, operation, buf_alloc, fwd_cnt, m, protocol); socket_lock(pcb->so, 0); } else { struct vsock_transport *transport = pcb->transport; error = transport->put_message(transport->provider, src, dst, operation, buf_alloc, fwd_cnt, m); if (!error) { pcb->last_buf_alloc = buf_alloc; pcb->last_fwd_cnt = fwd_cnt; } } return error; } static errno_t vsock_pcb_reset_address(struct vsock_address src, struct vsock_address dst, uint16_t protocol) { if (dst.cid == VMADDR_CID_ANY || dst.port == VMADDR_PORT_ANY) { return EINVAL; } errno_t error = 0; struct vsock_transport *transport = NULL; if (src.cid == VMADDR_CID_ANY) { transport = os_atomic_load(&the_vsock_transport[protocol], relaxed); if (transport == NULL) { return ENODEV; } uint32_t transport_cid; error = transport->get_cid(transport->provider, &transport_cid); if (error) { return error; } src.cid = transport_cid; } if (src.cid == dst.cid) { // Reset both sockets. struct vsockpcb *pcb = vsock_get_matching_pcb(src, dst, protocol); if (pcb) { socket_lock_assert_owned(pcb->so); vsock_unbind_pcb(pcb); socket_unlock(pcb->so, 1); } } else { if (!transport) { transport = os_atomic_load(&the_vsock_transport[protocol], relaxed); if (transport == NULL) { return ENODEV; } } error = transport->put_message(transport->provider, src, dst, VSOCK_RESET, 0, 0, NULL); } return error; } static errno_t vsock_pcb_safe_reset_address(struct vsockpcb *pcb, struct vsock_address src, struct vsock_address dst, uint16_t protocol) { if (pcb) { socket_lock_assert_owned(pcb->so); socket_unlock(pcb->so, 0); } errno_t error = vsock_pcb_reset_address(src, dst, protocol); if (pcb) { socket_lock(pcb->so, 0); } return error; } static errno_t vsock_pcb_connect(struct vsockpcb *pcb) { return vsock_pcb_send_message(pcb, VSOCK_REQUEST, NULL); } static errno_t vsock_pcb_respond(struct vsockpcb *pcb) { return vsock_pcb_send_message(pcb, VSOCK_RESPONSE, NULL); } static errno_t vsock_pcb_send(struct vsockpcb *pcb, mbuf_t m) { return vsock_pcb_send_message(pcb, VSOCK_PAYLOAD, m); } static errno_t vsock_pcb_shutdown_send(struct vsockpcb *pcb) { return vsock_pcb_send_message(pcb, VSOCK_SHUTDOWN_SEND, NULL); } static errno_t vsock_pcb_reset(struct vsockpcb *pcb) { return vsock_pcb_send_message(pcb, VSOCK_RESET, NULL); } static errno_t vsock_pcb_credit_update(struct vsockpcb *pcb) { return vsock_pcb_send_message(pcb, VSOCK_CREDIT_UPDATE, NULL); } static errno_t vsock_pcb_credit_update_if_needed(struct vsockpcb *_Nonnull pcb) { VERIFY(pcb != NULL); // Sends a credit update if the credit values have changed since the last sent message. if (pcb->so->so_rcv.sb_hiwat != pcb->last_buf_alloc || pcb->fwd_cnt != pcb->last_fwd_cnt) { return vsock_pcb_credit_update(pcb); } return 0; } static errno_t vsock_pcb_credit_request(struct vsockpcb *pcb) { return vsock_pcb_send_message(pcb, VSOCK_CREDIT_REQUEST, NULL); } static errno_t vsock_disconnect_pcb_common(struct vsockpcb *pcb, bool is_locked) { socket_lock_assert_owned(pcb->so); vsock_unbind_pcb_locked(pcb, is_locked); return vsock_pcb_reset(pcb); } static errno_t vsock_disconnect_pcb_locked(struct vsockpcb *pcb) { return vsock_disconnect_pcb_common(pcb, true); } static errno_t vsock_disconnect_pcb(struct vsockpcb *pcb) { return vsock_disconnect_pcb_common(pcb, false); } static errno_t vsock_sockaddr_vm_validate(struct vsockpcb *pcb, struct sockaddr_vm *addr, struct proc *p) { if (!pcb || !pcb->so || !addr) { return EINVAL; } // Validate address length. if (addr->svm_len < sizeof(struct sockaddr_vm)) { return EINVAL; } // Validate address family. if (addr->svm_family != AF_UNSPEC && addr->svm_family != AF_VSOCK) { return EAFNOSUPPORT; } // Only stream is supported currently. if (pcb->so->so_type != SOCK_STREAM) { return EAFNOSUPPORT; } errno_t error = vsock_validate_entitlements(pcb->so->so_protocol, p); if (error) { return error; } return 0; } /* VSock Receive Handlers */ static errno_t vsock_put_message_connected(struct vsockpcb *_Nonnull pcb, enum vsock_operation op, mbuf_t m) { VERIFY(pcb != NULL); socket_lock_assert_owned(pcb->so); errno_t error = 0; switch (op) { case VSOCK_SHUTDOWN: socantsendmore(pcb->so); socantrcvmore(pcb->so); break; case VSOCK_SHUTDOWN_RECEIVE: socantsendmore(pcb->so); break; case VSOCK_SHUTDOWN_SEND: socantrcvmore(pcb->so); break; case VSOCK_PAYLOAD: // Add data to the receive queue then wakeup any reading threads. error = !sbappendstream(&pcb->so->so_rcv, m); if (!error) { sorwakeup(pcb->so); } break; case VSOCK_RESET: vsock_unbind_pcb(pcb); break; default: error = ENOTSUP; break; } return error; } static errno_t vsock_put_message_connecting(struct vsockpcb *_Nonnull pcb, enum vsock_operation op) { VERIFY(pcb != NULL); socket_lock_assert_owned(pcb->so); errno_t error = 0; switch (op) { case VSOCK_RESPONSE: soisconnected(pcb->so); break; case VSOCK_RESET: pcb->so->so_error = EAGAIN; error = vsock_disconnect_pcb(pcb); break; default: vsock_disconnect_pcb(pcb); error = ENOTSUP; break; } return error; } static errno_t vsock_put_message_listening(struct vsockpcb *_Nonnull pcb, enum vsock_operation op, struct vsock_address src, struct vsock_address dst) { VERIFY(pcb != NULL); socket_lock_assert_owned(pcb->so); struct sockaddr_vm addr; struct socket *so2 = NULL; struct vsockpcb *pcb2 = NULL; const uint16_t protocol = pcb->so->so_protocol; errno_t error = 0; switch (op) { case VSOCK_REQUEST: addr = (struct sockaddr_vm) { .svm_len = sizeof(addr), .svm_family = AF_VSOCK, .svm_reserved1 = 0, .svm_port = pcb->local_address.port, .svm_cid = pcb->local_address.cid }; so2 = sonewconn(pcb->so, 0, (struct sockaddr *)&addr); if (!so2) { // It is likely that the backlog is full. Deny this request. vsock_pcb_safe_reset_address(pcb, dst, src, protocol); error = ECONNREFUSED; break; } pcb2 = sotovsockpcb(so2); if (!pcb2) { error = EINVAL; goto done; } error = vsock_bind_address(pcb2, dst, src); if (error) { goto done; } // Initialize the new socket peer credits using the listening socket. // This ensures sb_hiwat is updated based on peer buffer space before we try to send. pcb2->peer_buf_alloc = pcb->peer_buf_alloc; pcb2->peer_fwd_cnt = pcb->peer_fwd_cnt; vsock_update_send_buffer_space(pcb2); error = vsock_pcb_respond(pcb2); if (error) { goto done; } soisconnected(so2); done: if (error) { if (pcb2) { vsock_unbind_pcb(pcb2); } else { soisdisconnected(so2); } socket_unlock(so2, 1); vsock_pcb_reset_address(dst, src, protocol); } else { socket_unlock(so2, 0); } socket_lock(pcb->so, 0); break; case VSOCK_RESET: error = vsock_pcb_safe_reset_address(pcb, dst, src, protocol); break; default: vsock_pcb_safe_reset_address(pcb, dst, src, protocol); error = ENOTSUP; break; } return error; } /* VSock Transport */ errno_t vsock_add_transport(struct vsock_transport *transport) { if (transport == NULL || transport->provider == NULL || transport->protocol >= VSOCK_PROTO_MAX) { return EINVAL; } if (!os_atomic_cmpxchg((void * volatile *)&the_vsock_transport[transport->protocol], NULL, transport, acq_rel)) { return EEXIST; } return 0; } errno_t vsock_remove_transport(struct vsock_transport *transport) { if (!os_atomic_cmpxchg((void * volatile *)&the_vsock_transport[transport->protocol], transport, NULL, acq_rel)) { return ENODEV; } return 0; } errno_t vsock_reset_transport(struct vsock_transport *transport) { if (transport == NULL) { return EINVAL; } errno_t error = 0; struct vsockpcb *pcb = NULL; struct vsockpcb *tmp_pcb = NULL; lck_rw_lock_exclusive(&vsockinfo[transport->protocol].bound_lock); LIST_FOREACH_SAFE(pcb, &vsockinfo[transport->protocol].bound, bound, tmp_pcb) { // Disconnect this transport's sockets. Listen and bind sockets must stay alive. socket_lock(pcb->so, 1); if (pcb->transport == transport && pcb->so->so_state & (SS_ISCONNECTED | SS_ISCONNECTING | SS_ISDISCONNECTING)) { errno_t dc_error = vsock_disconnect_pcb_locked(pcb); if (dc_error && !error) { error = dc_error; } } socket_unlock(pcb->so, 1); } lck_rw_done(&vsockinfo[transport->protocol].bound_lock); return error; } errno_t vsock_put_message(struct vsock_address src, struct vsock_address dst, enum vsock_operation op, uint32_t buf_alloc, uint32_t fwd_cnt, mbuf_t m, uint16_t protocol) { struct vsockpcb *pcb = vsock_get_matching_pcb(dst, src, protocol); if (!pcb) { if (op != VSOCK_RESET) { vsock_pcb_reset_address(dst, src, protocol); } if (m != NULL) { mbuf_freem_list(m); } return EINVAL; } socket_lock_assert_owned(pcb->so); struct socket *so = pcb->so; errno_t error = 0; // Check if the peer's buffer has changed. Update our view of the peer's forwarded bytes. int buffers_changed = (pcb->peer_buf_alloc != buf_alloc) || (pcb->peer_fwd_cnt) != fwd_cnt; pcb->peer_buf_alloc = buf_alloc; pcb->peer_fwd_cnt = fwd_cnt; vsock_update_send_buffer_space(pcb); // Peer's buffer has enough space for the next packet. Notify any threads waiting for space. if (buffers_changed && vsock_get_peer_space(pcb) >= pcb->waiting_send_size) { sowwakeup(so); } switch (op) { case VSOCK_CREDIT_REQUEST: error = vsock_pcb_credit_update(pcb); break; case VSOCK_CREDIT_UPDATE: break; default: if (so->so_state & SS_ISCONNECTED) { error = vsock_put_message_connected(pcb, op, m); m = NULL; } else if (so->so_state & SS_ISCONNECTING) { error = vsock_put_message_connecting(pcb, op); } else if (so->so_options & SO_ACCEPTCONN) { error = vsock_put_message_listening(pcb, op, src, dst); } else { // Reset the connection for other states such as 'disconnecting'. error = vsock_disconnect_pcb(pcb); if (!error) { error = ENODEV; } } break; } socket_unlock(so, 1); if (m != NULL) { mbuf_freem_list(m); } return error; } /* VSock Sysctl */ static int common_vsock_pcblist(struct sysctl_oid *oidp __unused, void *arg1, int arg2 __unused, struct sysctl_req *_Nonnull req, uint16_t protocol) { #pragma unused(oidp,arg2) VERIFY(req != NULL); int error; // Only stream is supported. if ((intptr_t)arg1 != SOCK_STREAM) { return EINVAL; } // Get the generation count and the count of all vsock sockets. lck_rw_lock_shared(&vsockinfo[protocol].all_lock); uint64_t n = vsockinfo[protocol].all_pcb_count; vsock_gen_t gen_count = vsockinfo[protocol].vsock_gencnt; lck_rw_done(&vsockinfo[protocol].all_lock); const size_t xpcb_len = sizeof(struct xvsockpcb); struct xvsockpgen xvg; /* * The process of preparing the PCB list is too time-consuming and * resource-intensive to repeat twice on every request. */ if (req->oldptr == USER_ADDR_NULL) { req->oldidx = (size_t)(2 * sizeof(xvg) + (n + n / 8) * xpcb_len); return 0; } if (req->newptr != USER_ADDR_NULL) { return EPERM; } bzero(&xvg, sizeof(xvg)); xvg.xvg_len = sizeof(xvg); xvg.xvg_count = n; xvg.xvg_gen = gen_count; xvg.xvg_sogen = so_gencnt; error = SYSCTL_OUT(req, &xvg, sizeof(xvg)); if (error) { return error; } // Return if no sockets exist. if (n == 0) { return 0; } lck_rw_lock_shared(&vsockinfo[protocol].all_lock); n = 0; struct vsockpcb *pcb = NULL; TAILQ_FOREACH(pcb, &vsockinfo[protocol].all, all) { // Bail if there is not enough user buffer for this next socket. if (req->oldlen - req->oldidx - sizeof(xvg) < xpcb_len) { break; } // Populate the socket structure. socket_lock(pcb->so, 1); if (pcb->vsock_gencnt <= gen_count) { struct xvsockpcb xpcb; bzero(&xpcb, xpcb_len); xpcb.xv_len = xpcb_len; xpcb.xv_vsockpp = (uint64_t)VM_KERNEL_ADDRHASH(pcb); xpcb.xvp_local_cid = pcb->local_address.cid; xpcb.xvp_local_port = pcb->local_address.port; xpcb.xvp_remote_cid = pcb->remote_address.cid; xpcb.xvp_remote_port = pcb->remote_address.port; xpcb.xvp_rxcnt = pcb->fwd_cnt; xpcb.xvp_txcnt = pcb->tx_cnt; xpcb.xvp_peer_rxhiwat = pcb->peer_buf_alloc; xpcb.xvp_peer_rxcnt = pcb->peer_fwd_cnt; xpcb.xvp_last_pid = pcb->so->last_pid; xpcb.xvp_gencnt = pcb->vsock_gencnt; if (pcb->so) { sotoxsocket(pcb->so, &xpcb.xv_socket); } socket_unlock(pcb->so, 1); error = SYSCTL_OUT(req, &xpcb, xpcb_len); if (error != 0) { break; } n++; } else { socket_unlock(pcb->so, 1); } } // Update the generation count to match the sockets being returned. gen_count = vsockinfo[protocol].vsock_gencnt; lck_rw_done(&vsockinfo[protocol].all_lock); if (!error) { /* * Give the user an updated idea of our state. * If the generation differs from what we told * her before, she knows that something happened * while we were processing this request, and it * might be necessary to retry. */ bzero(&xvg, sizeof(xvg)); xvg.xvg_len = sizeof(xvg); xvg.xvg_count = n; xvg.xvg_gen = gen_count; xvg.xvg_sogen = so_gencnt; error = SYSCTL_OUT(req, &xvg, sizeof(xvg)); } return error; } static int vsock_pcblist SYSCTL_HANDLER_ARGS { return common_vsock_pcblist(oidp, arg1, arg2, req, VSOCK_PROTO_STANDARD); } static int vsock_private_pcblist SYSCTL_HANDLER_ARGS { return common_vsock_pcblist(oidp, arg1, arg2, req, VSOCK_PROTO_PRIVATE); } #ifdef SYSCTL_DECL // Standard namespace. SYSCTL_NODE(_net, OID_AUTO, vsock, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "vsock"); SYSCTL_UINT(_net_vsock, OID_AUTO, sendspace, CTLFLAG_RW | CTLFLAG_LOCKED, &vsock_sendspace[VSOCK_PROTO_STANDARD], 0, "Maximum outgoing vsock datagram size"); SYSCTL_UINT(_net_vsock, OID_AUTO, recvspace, CTLFLAG_RW | CTLFLAG_LOCKED, &vsock_recvspace[VSOCK_PROTO_STANDARD], 0, "Maximum incoming vsock datagram size"); SYSCTL_PROC(_net_vsock, OID_AUTO, pcblist, CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_LOCKED, __unsafe_forge_single(caddr_t, SOCK_STREAM), 0, vsock_pcblist, "S,xvsockpcb", "List of active vsock sockets"); SYSCTL_UINT(_net_vsock, OID_AUTO, pcbcount, CTLFLAG_RD | CTLFLAG_LOCKED, (u_int *)&vsockinfo[VSOCK_PROTO_STANDARD].all_pcb_count, 0, ""); // Private namespace. SYSCTL_NODE(_net, OID_AUTO, vsock_private, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "vsock_private"); SYSCTL_PROC(_net_vsock_private, OID_AUTO, pcblist, CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_LOCKED, __unsafe_forge_single(caddr_t, SOCK_STREAM), 0, vsock_private_pcblist, "S,xvsockpcb", "List of active private vsock sockets"); SYSCTL_UINT(_net_vsock_private, OID_AUTO, pcbcount, CTLFLAG_RD | CTLFLAG_LOCKED, (u_int *)&vsockinfo[VSOCK_PROTO_PRIVATE].all_pcb_count, 0, ""); #endif /* VSock Protocol */ static int vsock_attach(struct socket *_Nonnull so, int proto, struct proc *p) { #pragma unused(proto, p) VERIFY(so != NULL); const uint16_t protocol = so->so_protocol; if (protocol >= VSOCK_PROTO_MAX) { return EINVAL; } errno_t error = vsock_validate_entitlements(protocol, p); if (error) { return error; } const uint32_t send_space = vsock_sendspace[protocol]; const uint32_t receive_space = vsock_recvspace[protocol]; if (send_space == 0 || receive_space == 0) { return ENOMEM; } // Reserve send and receive buffers. error = soreserve(so, send_space, receive_space); if (error) { return error; } // Initially set send buffer high water mark to 0 - it will be updated based on peer credits. // This allows sosendcheck() to naturally block when peer has no space. so->so_snd.sb_hiwat = 0; // Set SB_LIMITED to prevent sbreserve() from overriding our hiwat value. so->so_snd.sb_flags |= SB_LIMITED; // Attach should only be run once per socket. struct vsockpcb *pcb = sotovsockpcb(so); if (pcb) { return EINVAL; } // Get the transport for this socket. struct vsock_transport *transport = os_atomic_load(&the_vsock_transport[protocol], relaxed); if (transport == NULL) { return ENODEV; } // Initialize the vsock protocol control block. pcb = zalloc_flags(vsockpcb_zone, Z_WAITOK | Z_ZERO | Z_NOFAIL); pcb->so = so; pcb->transport = transport; pcb->send_space = send_space; pcb->local_address = (struct vsock_address) { .cid = VMADDR_CID_ANY, .port = VMADDR_PORT_ANY }; pcb->remote_address = (struct vsock_address) { .cid = VMADDR_CID_ANY, .port = VMADDR_PORT_ANY }; so->so_pcb = pcb; // Tell the transport that this socket has attached. error = transport->attach_socket(transport->provider); if (error) { zfree(vsockpcb_zone, pcb); so->so_pcb = NULL; return error; } // Add to the list of all vsock sockets. lck_rw_lock_exclusive(&vsockinfo[protocol].all_lock); TAILQ_INSERT_TAIL(&vsockinfo[protocol].all, pcb, all); vsockinfo[protocol].all_pcb_count++; pcb->vsock_gencnt = ++vsockinfo[protocol].vsock_gencnt; lck_rw_done(&vsockinfo[protocol].all_lock); return 0; } static int vsock_control(struct socket *so, u_long cmd, caddr_t __sized_by(IOCPARM_LEN(cmd)) data, struct ifnet *ifp, struct proc *p) { #pragma unused(ifp, p) VERIFY(so != NULL); if (cmd != IOCTL_VM_SOCKETS_GET_LOCAL_CID) { return EINVAL; } if (so == NULL) { return EINVAL; } struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } struct vsock_transport *transport = pcb->transport; if (transport == NULL) { return ENODEV; } uint32_t transport_cid; errno_t error = transport->get_cid(transport->provider, &transport_cid); if (error) { return error; } memcpy(data, &transport_cid, sizeof(transport_cid)); return 0; } static int vsock_detach(struct socket *so) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } vsock_unbind_pcb(pcb); // Tell the transport that this socket has detached. struct vsock_transport *transport = pcb->transport; errno_t error = transport->detach_socket(transport->provider); if (error) { return error; } const uint16_t protocol = so->so_protocol; // Mark this socket for deallocation. so->so_flags |= SOF_PCBCLEARING; // Reorder locks. socket_unlock(so, 0); lck_rw_lock_exclusive(&vsockinfo[protocol].all_lock); socket_lock(so, 0); // Remove from the list of all vsock sockets. TAILQ_REMOVE(&vsockinfo[protocol].all, pcb, all); pcb->all.tqe_next = NULL; pcb->all.tqe_prev = NULL; vsockinfo[protocol].all_pcb_count--; vsockinfo[protocol].vsock_gencnt++; lck_rw_done(&vsockinfo[protocol].all_lock); return 0; } static int vsock_abort(struct socket *so) { return vsock_detach(so); } static int vsock_bind(struct socket *so, struct sockaddr *nam, struct proc *p) { #pragma unused(p) struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } struct sockaddr_vm *addr = (struct sockaddr_vm *)nam; errno_t error = vsock_sockaddr_vm_validate(pcb, addr, p); if (error) { return error; } struct vsock_address laddr = (struct vsock_address) { .cid = addr->svm_cid, .port = addr->svm_port, }; struct vsock_address raddr = (struct vsock_address) { .cid = VMADDR_CID_ANY, .port = VMADDR_PORT_ANY, }; error = vsock_bind_address(pcb, laddr, raddr); if (error) { return error; } return 0; } static int vsock_listen(struct socket *so, struct proc *p) { #pragma unused(p) struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } // Only stream is supported currently. if (so->so_type != SOCK_STREAM) { return EAFNOSUPPORT; } struct vsock_address *addr = &pcb->local_address; if (addr->port == VMADDR_CID_ANY) { return EFAULT; } struct vsock_transport *transport = pcb->transport; uint32_t transport_cid; errno_t error = transport->get_cid(transport->provider, &transport_cid); if (error) { return error; } // Can listen on the transport's cid or any. if (addr->cid != transport_cid && addr->cid != VMADDR_CID_ANY) { return EFAULT; } return 0; } static int vsock_accept(struct socket *so, struct sockaddr **nam) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } // Do not accept disconnected sockets. if (so->so_state & SS_ISDISCONNECTED) { return ECONNABORTED; } *nam = vsock_new_sockaddr(&pcb->remote_address); return 0; } static int vsock_connect(struct socket *so, struct sockaddr *nam, struct proc *p) { #pragma unused(p) struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } struct sockaddr_vm *addr = (struct sockaddr_vm *)nam; errno_t error = vsock_sockaddr_vm_validate(pcb, addr, p); if (error) { return error; } uint32_t transport_cid; struct vsock_transport *transport = pcb->transport; error = transport->get_cid(transport->provider, &transport_cid); if (error) { return error; } // Only supporting connections to the host, hypervisor, or self for now. if (addr->svm_cid != VMADDR_CID_HOST && addr->svm_cid != VMADDR_CID_HYPERVISOR && addr->svm_cid != transport_cid) { return EFAULT; } soisconnecting(so); // Set the remote and local address. struct vsock_address remote_addr = (struct vsock_address) { .cid = addr->svm_cid, .port = addr->svm_port, }; struct vsock_address local_addr = (struct vsock_address) { .cid = transport_cid, .port = VMADDR_PORT_ANY, }; // Bind to the address. error = vsock_bind_address(pcb, local_addr, remote_addr); if (error) { goto cleanup; } // Attempt a connection using the socket's transport. error = vsock_pcb_connect(pcb); if (error) { goto cleanup; } if ((so->so_state & SS_ISCONNECTED) == 0) { // Don't wait for peer's response if non-blocking. if (so->so_state & SS_NBIO) { goto done; } struct timespec ts = (struct timespec) { .tv_sec = so->so_snd.sb_timeo.tv_sec, .tv_nsec = so->so_snd.sb_timeo.tv_usec * 1000, }; lck_mtx_t *mutex_held; if (so->so_proto->pr_getlock != NULL) { mutex_held = (*so->so_proto->pr_getlock)(so, PR_F_WILLUNLOCK); } else { mutex_held = so->so_proto->pr_domain->dom_mtx; } // Wait until we receive a response to the connect request. error = msleep((caddr_t)&so->so_timeo, mutex_held, PSOCK | PCATCH, "vsock_connect", &ts); if (error) { if (error == EAGAIN) { error = ETIMEDOUT; } goto cleanup; } } cleanup: if (so->so_error && !error) { error = so->so_error; so->so_error = 0; } if (!error) { error = !(so->so_state & SS_ISCONNECTED); } if (error) { vsock_unbind_pcb(pcb); } done: return error; } static int vsock_disconnect(struct socket *so) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } return vsock_disconnect_pcb(pcb); } static int vsock_sockaddr(struct socket *so, struct sockaddr **nam) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } *nam = vsock_new_sockaddr(&pcb->local_address); return 0; } static int vsock_peeraddr(struct socket *so, struct sockaddr **nam) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } *nam = vsock_new_sockaddr(&pcb->remote_address); return 0; } static int vsock_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam, struct mbuf *control, proc_t p) { #pragma unused(flags, nam, p) errno_t error = 0; struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL || m == NULL) { error = EINVAL; goto out; } if (control != NULL) { error = EOPNOTSUPP; goto out; } // Ensure this socket is connected. if ((so->so_state & SS_ISCONNECTED) == 0) { error = EPERM; goto out; } // rdar://84098487 (SEED: Web: Virtio-socket sent data lost after 128KB) // For writes larger than the default `sosendmaxchain` of 65536, vsock_send() is called multiple times per write(). // Only the first call to vsock_send() is passed a valid mbuf packet, while subsequent calls are not marked as a packet // with a valid length. We should mark all mbufs as a packet and set the correct packet length so that the downstream // socket transport layer can correctly generate physical segments. if (!(mbuf_flags(m) & MBUF_PKTHDR)) { if (!(mbuf_flags(m) & M_EXT)) { struct mbuf *header = NULL; MGETHDR(header, M_WAITOK, MT_HEADER); if (header == NULL) { error = ENOBUFS; goto out; } header->m_next = m; m = header; } else { mbuf_setflags(m, mbuf_flags(m) | MBUF_PKTHDR); } size_t len = 0; struct mbuf *next = m; while (next) { len += mbuf_len(next); next = mbuf_next(next); } mbuf_pkthdr_setlen(m, len); } const size_t len = mbuf_pkthdr_len(m); uint32_t free_space = vsock_get_peer_space(pcb); // Ensure the peer has enough space in their receive buffer. while (len > free_space) { // Record the number of free peer bytes necessary before we can send. if (len > pcb->waiting_send_size) { pcb->waiting_send_size = len; } // Send a credit request. error = vsock_pcb_credit_request(pcb); if (error) { goto out; } // Check again in case free space was automatically updated in loopback case. free_space = vsock_get_peer_space(pcb); if (len <= free_space) { pcb->waiting_send_size = 0; break; } // Bail if this is a non-blocking socket. if (so->so_state & SS_NBIO) { error = EWOULDBLOCK; goto out; } // Wait until our peer has enough free space in their receive buffer. error = sbwait(&so->so_snd); pcb->waiting_send_size = 0; if (error) { goto out; } // Bail if an error occured or we can't send more. if (so->so_state & SS_CANTSENDMORE) { error = EPIPE; goto out; } else if (so->so_error) { error = so->so_error; so->so_error = 0; goto out; } free_space = vsock_get_peer_space(pcb); } // Send a payload over the transport. error = vsock_pcb_send(pcb, m); if (error) { return error; } pcb->tx_cnt += len; vsock_update_send_buffer_space(pcb); return 0; out: if (control != NULL) { m_freem(control); } if (m != NULL) { mbuf_freem_list(m); } return error; } static int vsock_shutdown(struct socket *so) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } socantsendmore(so); // Tell peer we will no longer send. errno_t error = vsock_pcb_shutdown_send(pcb); if (error) { return error; } return 0; } static int vsock_soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp) { struct vsockpcb *pcb = sotovsockpcb(so); if (pcb == NULL) { return EINVAL; } user_ssize_t length = uio_resid(uio); int result = soreceive(so, psa, uio, mp0, controlp, flagsp); length -= uio_resid(uio); socket_lock(so, 1); pcb->fwd_cnt += length; const uint32_t threshold = VSOCK_MAX_PACKET_SIZE; // Send a credit update if it is possible that the peer will no longer send. if ((pcb->fwd_cnt - pcb->last_fwd_cnt + threshold) >= pcb->last_buf_alloc) { errno_t error = vsock_pcb_credit_update_if_needed(pcb); if (!result && error) { result = error; } } socket_unlock(so, 1); return result; } static struct pr_usrreqs vsock_usrreqs = { .pru_abort = vsock_abort, .pru_attach = vsock_attach, .pru_control = vsock_control, .pru_detach = vsock_detach, .pru_bind = vsock_bind, .pru_listen = vsock_listen, .pru_accept = vsock_accept, .pru_connect = vsock_connect, .pru_disconnect = vsock_disconnect, .pru_send = vsock_send, .pru_shutdown = vsock_shutdown, .pru_sockaddr = vsock_sockaddr, .pru_peeraddr = vsock_peeraddr, .pru_sosend = sosend, .pru_soreceive = vsock_soreceive, }; static void common_vsock_init(struct protosw *pp, struct domain *dp, uint16_t protocol, lck_grp_t *lock_group) { #pragma unused(dp) static int vsock_initialized[VSOCK_PROTO_MAX] = {0}; VERIFY((pp->pr_flags & (PR_INITIALIZED | PR_ATTACHED)) == PR_ATTACHED); if (!os_atomic_cmpxchg((volatile int *)&vsock_initialized[protocol], 0, 1, acq_rel)) { return; } // Setup VSock protocol info struct. lck_rw_init(&vsockinfo[protocol].all_lock, lock_group, LCK_ATTR_NULL); lck_rw_init(&vsockinfo[protocol].bound_lock, lock_group, LCK_ATTR_NULL); lck_mtx_init(&vsockinfo[protocol].port_lock, lock_group, LCK_ATTR_NULL); TAILQ_INIT(&vsockinfo[protocol].all); LIST_INIT(&vsockinfo[protocol].bound); vsockinfo[protocol].last_port = VMADDR_PORT_ANY; } static void vsock_init(struct protosw *pp, struct domain *dp) { static LCK_GRP_DECLARE(vsock_lock_grp, "vsock"); common_vsock_init(pp, dp, VSOCK_PROTO_STANDARD, &vsock_lock_grp); } static void vsock_private_init(struct protosw *pp, struct domain *dp) { static LCK_GRP_DECLARE(vsock_private_lock_grp, "vsock_private"); common_vsock_init(pp, dp, VSOCK_PROTO_PRIVATE, &vsock_private_lock_grp); } static int vsock_sofreelastref(struct socket *so, int dealloc) { socket_lock_assert_owned(so); struct vsockpcb *pcb = sotovsockpcb(so); if (pcb != NULL) { zfree(vsockpcb_zone, pcb); } so->so_pcb = NULL; sofreelastref(so, dealloc); return 0; } static int vsock_unlock(struct socket *_Nonnull so, int refcount, void *lr_saved) { VERIFY(so != NULL); lck_mtx_t *mutex_held = so->so_proto->pr_domain->dom_mtx; #ifdef MORE_LOCKING_DEBUG LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); #endif so->unlock_lr[so->next_unlock_lr] = lr_saved; so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; if (refcount) { if (so->so_usecount <= 0) { panic("%s: bad refcount=%d so=%p (%d, %d, %d) " "lrh=%s", __func__, so->so_usecount, so, SOCK_DOM(so), so->so_type, SOCK_PROTO(so), solockhistory_nr(so)); /* NOTREACHED */ } so->so_usecount--; if (so->so_usecount == 0) { vsock_sofreelastref(so, 1); } } lck_mtx_unlock(mutex_held); return 0; } static struct protosw vsocksw[VSOCK_PROTO_MAX] = { { .pr_type = SOCK_STREAM, .pr_protocol = VSOCK_PROTO_STANDARD, .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD, .pr_init = vsock_init, .pr_unlock = vsock_unlock, .pr_usrreqs = &vsock_usrreqs, }, { .pr_type = SOCK_STREAM, .pr_protocol = VSOCK_PROTO_PRIVATE, .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD, .pr_init = vsock_private_init, .pr_unlock = vsock_unlock, .pr_usrreqs = &vsock_usrreqs, } }; static const int vsock_proto_count = (sizeof(vsocksw) / sizeof(struct protosw)); /* VSock Domain */ static struct domain *vsock_domain = NULL; static void vsock_dinit(struct domain *_Nonnull dp) { // The VSock domain is initialized with a singleton pattern. VERIFY(dp != NULL); VERIFY(!(dp->dom_flags & DOM_INITIALIZED)); VERIFY(vsock_domain == NULL); vsock_domain = dp; const uint32_t default_buffer_size = VSOCK_MAX_PACKET_SIZE * 8; // Add protocols and initialize. for (int i = 0; i < vsock_proto_count; i++) { vsock_sendspace[i] = default_buffer_size; vsock_recvspace[i] = default_buffer_size; net_add_proto((struct protosw *)&vsocksw[i], dp, 1); } } struct domain vsockdomain_s = { .dom_family = PF_VSOCK, .dom_name = "vsock", .dom_init = vsock_dinit, .dom_maxrtkey = sizeof(struct sockaddr_vm), .dom_protohdrlen = sizeof(struct sockaddr_vm), };