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 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/io/private/socket_impl.h>
#include <aws/io/socket.h>
#include <aws/common/clock.h>
#include <aws/common/mutex.h>
#include <aws/common/string.h>
#include <aws/common/uuid.h>
#include <aws/io/logging.h>
#include "./dispatch_queue_event_loop_private.h" // private header
#include <Network/Network.h>
#include <aws/io/private/event_loop_impl.h>
#include <aws/io/private/tls_channel_handler_shared.h>
#include <arpa/inet.h>
#include <sys/socket.h>
static const char *s_aws_sec_trust_result_type_to_string(SecTrustResultType trust_result) {
switch (trust_result) {
case kSecTrustResultInvalid:
return "kSecTrustResultInvalid";
case kSecTrustResultProceed:
return "kSecTrustResultProceed";
case kSecTrustResultDeny:
return "kSecTrustResultDeny";
case kSecTrustResultUnspecified:
return "kSecTrustResultUnspecified";
case kSecTrustResultRecoverableTrustFailure:
return "kSecTrustResultRecoverableTrustFailure";
case kSecTrustResultFatalTrustFailure:
return "kSecTrustResultFatalTrustFailure";
case kSecTrustResultOtherError:
return "kSecTrustResultOtherError";
default:
return "Unknown SecTrustResultType";
}
}
static int s_determine_socket_error(int error) {
switch (error) {
/* SSL/TLS Errors */
case errSSLUnknownRootCert:
return AWS_IO_TLS_UNKNOWN_ROOT_CERTIFICATE;
case errSSLNoRootCert:
return AWS_IO_TLS_NO_ROOT_CERTIFICATE_FOUND;
case errSSLCertExpired:
return AWS_IO_TLS_CERTIFICATE_EXPIRED;
case errSSLCertNotYetValid:
return AWS_IO_TLS_CERTIFICATE_NOT_YET_VALID;
case errSSLPeerHandshakeFail:
return AWS_IO_TLS_ERROR_NEGOTIATION_FAILURE;
case errSSLBadCert:
return AWS_IO_TLS_BAD_CERTIFICATE;
case errSSLPeerCertExpired:
return AWS_IO_TLS_PEER_CERTIFICATE_EXPIRED;
case errSSLPeerBadCert:
return AWS_IO_TLS_BAD_PEER_CERTIFICATE;
case errSSLPeerCertRevoked:
return AWS_IO_TLS_PEER_CERTIFICATE_REVOKED;
case errSSLPeerCertUnknown:
return AWS_IO_TLS_PEER_CERTIFICATE_UNKNOWN;
case errSSLInternal:
return AWS_IO_TLS_INTERNAL_ERROR;
case errSSLClosedGraceful:
return AWS_IO_TLS_CLOSED_GRACEFUL;
case errSSLClosedAbort:
return AWS_IO_TLS_CLOSED_ABORT;
case errSSLXCertChainInvalid:
return AWS_IO_TLS_INVALID_CERTIFICATE_CHAIN;
case errSSLHostNameMismatch:
return AWS_IO_TLS_HOST_NAME_MISMATCH;
case errSecNotTrusted:
case errSSLPeerProtocolVersion:
return AWS_IO_TLS_ERROR_NEGOTIATION_FAILURE;
/* POSIX Errors */
case ECONNREFUSED:
return AWS_IO_SOCKET_CONNECTION_REFUSED;
case ETIMEDOUT:
return AWS_IO_SOCKET_TIMEOUT;
case EHOSTUNREACH:
case ENETUNREACH:
return AWS_IO_SOCKET_NO_ROUTE_TO_HOST;
case EADDRNOTAVAIL:
return AWS_IO_SOCKET_INVALID_ADDRESS;
case ENETDOWN:
return AWS_IO_SOCKET_NETWORK_DOWN;
case ECONNABORTED:
return AWS_IO_SOCKET_CONNECT_ABORTED;
case EADDRINUSE:
return AWS_IO_SOCKET_ADDRESS_IN_USE;
case ENOBUFS:
case ENOMEM:
return AWS_ERROR_OOM;
case EAGAIN:
return AWS_IO_READ_WOULD_BLOCK;
case EMFILE:
case ENFILE:
return AWS_ERROR_MAX_FDS_EXCEEDED;
case ENOENT:
case EINVAL:
return AWS_ERROR_FILE_INVALID_PATH;
case EAFNOSUPPORT:
return AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY;
case EACCES:
return AWS_ERROR_NO_PERMISSION;
default:
return AWS_IO_SOCKET_NOT_CONNECTED;
}
}
static int s_convert_nw_error(nw_error_t nw_error) {
int nw_error_code = nw_error ? nw_error_get_error_code(nw_error) : 0;
int crt_error_code = nw_error_code ? s_determine_socket_error(nw_error_code) : AWS_OP_SUCCESS;
return crt_error_code;
}
static inline int s_convert_pton_error(int pton_code) {
if (pton_code == 0) {
return AWS_IO_SOCKET_INVALID_ADDRESS;
}
return s_determine_socket_error(errno);
}
/*
* Helper function that gets the available human readable error description from Core Foundation.
*/
static void s_get_error_description(CFErrorRef error, char *description_buffer, size_t buffer_size) {
if (error == NULL) {
snprintf(description_buffer, buffer_size, "No error provided");
return;
}
CFStringRef error_description = CFErrorCopyDescription(error);
if (error_description) {
CFStringGetCString(error_description, description_buffer, buffer_size, kCFStringEncodingUTF8);
CFRelease(error_description);
} else {
snprintf(description_buffer, buffer_size, "Unable to retrieve error description");
}
}
/*
* A socket is only in one of these states at a time, except for CONNECTED_READ | CONNECTED_WRITE.
*
* The state can only go increasing, except for the following cases
* 1. LISTENING and STOPPED: They can switch between each other.
* 2. CLOSING -> ERROR: It is a valid case where socket state tries to transfer from CLOSING to ERROR, but we never
* actually set it to ERROR if we are already in CLOSING state. This happened in the following scenario: After we
* called aws_socket_close(), the socket state is set to CLOSING. And if a read callback invoked at this time, it
* is possible that the socket reads an ERROR and tries to set the socket state to ERROR, which makes the socket
* state goes backwards. Though this is a valid case, we don't actually set it back to ERROR as we are shutting down the
* socket.
* 3. CONNECT_WRITE and CONNECT_READ: you are allow to flip the flags for these two state, while not going
* backwards to `CONNECTING` and `INIT` state.
*/
enum aws_nw_socket_state {
AWS_NW_SOCKET_STATE_INVALID = 0x000,
AWS_NW_SOCKET_STATE_INIT = 0x001,
AWS_NW_SOCKET_STATE_CONNECTING = 0x002,
AWS_NW_SOCKET_STATE_CONNECTED_READ = 0x004,
AWS_NW_SOCKET_STATE_CONNECTED_WRITE = 0x008,
AWS_NW_SOCKET_STATE_BOUND = 0x010,
AWS_NW_SOCKET_STATE_LISTENING = 0x020,
AWS_NW_SOCKET_STATE_STOPPED = 0x040, // Stop the io events, while we could restart it later
AWS_NW_SOCKET_STATE_ERROR = 0x080,
AWS_NW_SOCKET_STATE_CLOSING = 0X100, // Only set when aws_socket_close() is called.
AWS_NW_SOCKET_STATE_CLOSED = 0x200,
};
static const char *aws_socket_state_to_c_string(enum aws_nw_socket_state state) {
switch ((int)state) {
case AWS_NW_SOCKET_STATE_INIT:
return "INIT";
case AWS_NW_SOCKET_STATE_INVALID:
return "INVALID";
case AWS_NW_SOCKET_STATE_CONNECTING:
return "CONNECTING";
case AWS_NW_SOCKET_STATE_CONNECTED_READ:
return "CONNECTED_READ";
case AWS_NW_SOCKET_STATE_CONNECTED_WRITE:
return "CONNECTED_WRITE";
case AWS_NW_SOCKET_STATE_BOUND:
return "BOUND";
case AWS_NW_SOCKET_STATE_LISTENING:
return "LISTENING";
case AWS_NW_SOCKET_STATE_STOPPED:
return "STOPPED";
case AWS_NW_SOCKET_STATE_ERROR:
return "ERROR";
case AWS_NW_SOCKET_STATE_CLOSING:
return "CLOSING";
case AWS_NW_SOCKET_STATE_CLOSED:
return "CLOSED";
case AWS_NW_SOCKET_STATE_CONNECTED_WRITE | AWS_NW_SOCKET_STATE_CONNECTED_READ:
return "CONNECTED_WRITE | CONNECTED_READ";
case AWS_NW_SOCKET_STATE_CLOSING | AWS_NW_SOCKET_STATE_CONNECTED_READ:
return "CLOSING | CONNECTED_READ";
case ~AWS_NW_SOCKET_STATE_CONNECTED_READ:
return "~CONNECTED_READ";
default:
return "UNKNOWN";
}
}
enum aws_nw_socket_mode {
NWSM_CONNECTION,
NWSM_LISTENER,
};
struct nw_listener_connection_args {
struct aws_task task;
int error_code;
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
nw_connection_t new_connection;
void *user_data;
};
struct nw_socket_timeout_args {
struct aws_task task;
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
};
struct nw_socket_scheduled_task_args {
struct aws_task task;
int error_code;
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
dispatch_data_t data;
bool is_complete;
};
struct nw_socket_written_args {
struct aws_task task;
int error_code;
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
aws_socket_on_write_completed_fn *written_fn;
void *user_data;
size_t bytes_written;
};
struct nw_socket_cancel_task_args {
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
struct aws_task task;
};
struct nw_socket {
struct aws_allocator *allocator;
/* The `nw_socket_ref_count` that keeps the nw_socket alive. The `nw_socket_ref_count` initalized on
* aws_socket_init() and decreased on aws_socket_clean_up() called. The `internal_ref_count` will also keep a
* reference of the `nw_socket_ref_count` so that the nw_socket would alive until all system callbacks and tasks are
* handled. On `nw_socket_ref_count` drops to 0, it invokes s_socket_impl_destroy, which cleanup the nw_socket
* memory and invoke on_socket_cleanup_complete_fn.
*/
struct aws_ref_count nw_socket_ref_count;
/* The `internal_ref_count` is used to track any in-flight socket operations. It would be init on socket init, and
* acquired on aws_socket_connect()/aws_socket_listen() called. The reference will be decreased on
* nw_connection/listener_state_changed_handler is invoked with a "nw_connection/listener_state_cancelled" state.
* Besides this, each network framework system call or each scheduled task in event loop would also acquire an
* internal reference, and release when the callback invoked or the task executed.
*/
struct aws_ref_count internal_ref_count;
/* The `write_ref_count` is used to track any in-flight write operations. It would be init on aws_socket_init() and
* dropped on aws_socket_close() call. Each aws_socket_write() function call will acquire a ref-count, and released
* the ref-count on nw_connection_send handler is invoked.
* When the reference is dropped to 0, it invoked the destroy function `s_nw_socket_canceled()`, and start to cancel
* and close the Apple nw_connection/nw_listener.
*/
struct aws_ref_count write_ref_count;
int last_error;
/* Apple's native structs for connection and listener. */
union {
nw_connection_t nw_connection;
nw_listener_t nw_listener;
} os_handle;
nw_parameters_t nw_parameters;
/* The socket would be either setup as nw_connection or nw_listener. */
enum aws_nw_socket_mode mode;
/* The linked list of `read_queue_node`. The read queue to store read data from io events. aws_socket_read()
* function would read data from the queue.
* WARNING: The read_queue is not lock protected so far, as we always access it on event loop thread. */
struct aws_linked_list read_queue;
/*
* nw_socket is ref counted. It is possible that the aws_socket object is released while nw_socket is still alive
* and processing events. We keep the callbacks and parameters on nw_socket to avoid bad access after the aws_socket
* is released.
*/
aws_socket_on_readable_fn *on_readable;
void *on_readable_user_data;
aws_socket_on_connection_result_fn *on_connection_result_fn;
void *connect_result_user_data;
aws_socket_on_accept_started_fn *on_accept_started_fn;
void *listen_accept_started_user_data;
aws_socket_on_shutdown_complete_fn *on_socket_close_complete_fn;
void *close_user_data;
aws_socket_on_shutdown_complete_fn *on_socket_cleanup_complete_fn;
void *cleanup_user_data;
/* nw_socket had to be assigned to an event loop to process events. The nw_socket will acquire a reference of the
* event_loop's base event group to kept the event loop alive.
*
* For client socket (nw_connection): setup on aws_socket_connect()
* For listener (nw_listener) : setup on aws_socket_start_accept()
* For incoming socket / server socket (nw_connection accepted on a listener): setup by calling
* aws_socket_assign_event_loop()
*/
struct aws_event_loop *event_loop;
/* Indicate the connection result is updated. This argument is used to cancel the timeout task. The argument should
* be only set on socket event loop. The value will be set to true if:
* 1. nw_connection returned with state=`nw_connection_state_ready`, indicating the connection succeed
* 2. nw_connection returned with state=`nw_connection_state_failed`, indicating the connection failed
* 3. directly set to true for the incoming socket, as the incoming socket is already connected
*/
bool connection_setup;
/* Timeout task that is created on aws_socket_connect(). The task will be flagged to be canceled if the connection
* succeed or failed. */
struct nw_socket_timeout_args *timeout_args;
struct aws_string *host_name;
struct aws_string *alpn_list;
struct aws_tls_ctx *tls_ctx;
struct aws_byte_buf protocol_buf;
/* synced_data and the lock to protect the synced data. */
struct {
/* Used to avoid scheduling a duplicate read call. We would like to wait for the read call complete back before
* we schedule another one. */
bool read_scheduled;
/* The aws_nw_socket_state. aws_socket also has a field `state` which should be represent the same parameter,
* however, as it is possible that the aws_socket object is released while nw_socket is still alive, we will use
* nw_socket->state instead of socket->state to verify the socket_state.
*/
enum aws_nw_socket_state state;
struct aws_mutex lock;
} synced_data;
/*
* The synced data to protect base_socket access. As aws_socket is not ref-counted. It is possible that the user
* called aws_socket_cleanup() to release the aws_socket(base_socket), while the nw_socket is still alive and the
* underlying system calls are still processing the data. Therefore, here nw_socket kept a point to base_socket to
* avoid bad access after aws_socket is cleaned up. The lock is acquired before we do any callback that might access
* the base_socket.
* We put aws_socket in a different base_socket_synced_data struct to avoid the lock contention between other
* cross-thread data, especially when we do a socket operation in a callback when the socket lock is acquired.
*
* As all the callbacks will hold the lock to make sure the base_socket is alive, we should avoid to use the lock in
* user API calls. So far we used it only in aws_socket_cleanup. And handle it in this way to avoid deadlock: if we
* are on the assigned event loop, we assume we are fired on the event loop thread, and we don't need to acquire the
* lock, otherwise, we acquire the lock.
*/
struct {
struct aws_mutex lock;
struct aws_socket *base_socket;
} base_socket_synced_data;
};
static size_t KB_16 = 16 * 1024;
static void *s_socket_acquire_internal_ref(struct nw_socket *nw_socket) {
return aws_ref_count_acquire(&nw_socket->internal_ref_count);
}
static size_t s_socket_release_internal_ref(struct nw_socket *nw_socket) {
return aws_ref_count_release(&nw_socket->internal_ref_count);
}
static void *s_socket_acquire_write_ref(struct nw_socket *nw_socket) {
return aws_ref_count_acquire(&nw_socket->write_ref_count);
}
static size_t s_socket_release_write_ref(struct nw_socket *nw_socket) {
return aws_ref_count_release(&nw_socket->write_ref_count);
}
static int s_lock_base_socket(struct nw_socket *nw_socket) {
return aws_mutex_lock(&nw_socket->base_socket_synced_data.lock);
}
static int s_unlock_base_socket(struct nw_socket *nw_socket) {
return aws_mutex_unlock(&nw_socket->base_socket_synced_data.lock);
}
static int s_lock_socket_synced_data(struct nw_socket *nw_socket) {
return aws_mutex_lock(&nw_socket->synced_data.lock);
}
static int s_unlock_socket_synced_data(struct nw_socket *nw_socket) {
return aws_mutex_unlock(&nw_socket->synced_data.lock);
}
static bool s_validate_event_loop(struct aws_event_loop *event_loop) {
return event_loop && event_loop->vtable && event_loop->impl_data;
}
static int s_set_event_loop(struct aws_socket *aws_socket, struct aws_event_loop *event_loop) {
aws_socket->event_loop = event_loop;
struct nw_socket *nw_socket = aws_socket->impl;
// Never re-assign an event loop
AWS_FATAL_ASSERT(nw_socket->event_loop == NULL);
// Acquire the event loop group from the event loop. The event loop group will be released when the socket is
// destroyed.
if (!aws_event_loop_group_acquire_from_event_loop(event_loop)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p nw_socket=%p: failed to acquire event loop group.",
(void *)aws_socket,
(void *)nw_socket);
return AWS_OP_ERR;
}
nw_socket->event_loop = event_loop;
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "id=%p nw_socket=%p: nw_socket set event loop.", (void *)aws_socket, (void *)nw_socket);
return AWS_OP_SUCCESS;
}
static void s_release_event_loop(struct nw_socket *nw_socket) {
if (nw_socket->event_loop == NULL) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "nw_socket=%p: s_release_event_loop: socket has not event loop.", (void *)nw_socket);
return;
}
aws_event_loop_group_release_from_event_loop(nw_socket->event_loop);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "nw_socket=%p: s_release_event_loop: socket release event loop group.", (void *)nw_socket);
nw_socket->event_loop = NULL;
}
/* The help function to update the socket state. The function must be called with synced_data locked (use
* s_lock_socket_synced_data() / s_unlock_socket_synced_data()), as the function touches the synced_data.state. */
static void s_set_socket_state(struct nw_socket *nw_socket, enum aws_nw_socket_state state) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p: s_set_socket_state: socket state set from %s to %s.",
(void *)nw_socket,
aws_socket_state_to_c_string(nw_socket->synced_data.state),
aws_socket_state_to_c_string(state));
enum aws_nw_socket_state result_state = nw_socket->synced_data.state;
// clip the read/write bits
enum aws_nw_socket_state read_write_bits =
state & (AWS_NW_SOCKET_STATE_CONNECTED_WRITE | AWS_NW_SOCKET_STATE_CONNECTED_READ);
result_state = result_state & ~AWS_NW_SOCKET_STATE_CONNECTED_WRITE & ~AWS_NW_SOCKET_STATE_CONNECTED_READ;
// If the caller would like simply flip the read/write bits, set the state to invalid, as we dont have further
// information there.
if (~AWS_NW_SOCKET_STATE_CONNECTED_WRITE == (int)state || ~AWS_NW_SOCKET_STATE_CONNECTED_READ == (int)state) {
state = AWS_NW_SOCKET_STATE_INVALID;
}
// The state can only go increasing, except for the following cases
// 1. LISTENING and STOPPED: They can switch between each other.
// 2. CLOSING -> ERROR: It is a valid case where socket state tries to transfer from CLOSING to ERROR. This
// happened in the following scenario: After we called aws_socket_close(), the socket state is set to CLOSING. And
// if a read callback invoked at this time, it is possible that the socket reads an ERROR and tries to set the
// socket state to ERROR, which makes the socket state goes backwards. Though this is a valid case, we don't
// actually set it back to ERROR as we are shutting down the socket.
// 3. CONNECT_WRITE and CONNECT_READ: you are allow to flip the flags for these two state, while not going
// backwards to `CONNECTING` and `INIT` state.
if (result_state < state ||
(state == AWS_NW_SOCKET_STATE_LISTENING && result_state == AWS_NW_SOCKET_STATE_STOPPED)) {
result_state = state;
}
// Set CONNECTED_WRITE and CONNECTED_READ
result_state = result_state | read_write_bits;
nw_socket->synced_data.state = result_state;
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p: s_set_socket_state: socket state set to %s.",
(void *)nw_socket,
aws_socket_state_to_c_string(nw_socket->synced_data.state));
}
/* setup the TCP options Block for use in socket parameters */
static void s_setup_tcp_options(nw_protocol_options_t tcp_options, const struct aws_socket_options *options) {
if (options->domain == AWS_SOCKET_LOCAL) {
/*
* TCP options for a local connection should use system defaults and not be modified. We have this function in
* case we need to support the setting of local connection options in the future during the creation of
* nw_parameters.
*/
return;
}
if (options->connect_timeout_ms) {
/* this value gets set in seconds. */
nw_tcp_options_set_connection_timeout(tcp_options, options->connect_timeout_ms / AWS_TIMESTAMP_MILLIS);
}
/* Only change default keepalive values if keepalive is true and both interval and timeout
* are not zero. */
if (options->keepalive && options->keep_alive_interval_sec != 0 && options->keep_alive_timeout_sec != 0) {
nw_tcp_options_set_enable_keepalive(tcp_options, options->keepalive);
nw_tcp_options_set_keepalive_idle_time(tcp_options, options->keep_alive_interval_sec);
nw_tcp_options_set_keepalive_interval(tcp_options, options->keep_alive_timeout_sec);
}
if (options->keep_alive_max_failed_probes) {
nw_tcp_options_set_keepalive_count(tcp_options, options->keep_alive_max_failed_probes);
}
if (g_aws_channel_max_fragment_size < KB_16) {
nw_tcp_options_set_maximum_segment_size(tcp_options, (uint32_t)g_aws_channel_max_fragment_size);
}
}
static void s_tls_verification_block(
sec_protocol_metadata_t metadata,
sec_trust_t trust,
sec_protocol_verify_complete_t complete,
struct nw_socket *nw_socket,
struct secure_transport_ctx *transport_ctx) {
(void)metadata;
CFErrorRef error = NULL;
SecPolicyRef policy = NULL;
SecTrustRef trust_ref = NULL;
OSStatus status;
bool verification_successful = false;
/*
* Because we manually handle the verification of the peer, the value set using
* sec_protocol_options_set_peer_authentication_required is ignored and this block is run instead. We force
* successful verification if verify_peer is false.
*/
if (!transport_ctx->verify_peer) {
AWS_LOGF_WARN(
AWS_LS_IO_TLS,
"nw_socket=%p: x.509 validation has been disabled. If this is not running in a test environment, this is "
"likely a security vulnerability.",
(void *)nw_socket);
verification_successful = true;
goto verification_done;
}
trust_ref = sec_trust_copy_ref(trust);
/* Use root ca if provided. */
if (transport_ctx->ca_cert != NULL) {
AWS_LOGF_DEBUG(
AWS_LS_IO_TLS,
"nw_socket=%p: nw_socket verify block applying provided root CA for remote verification.",
(void *)nw_socket);
// We add the ca certificate as a anchor certificate in the trust_ref
status = SecTrustSetAnchorCertificates(trust_ref, transport_ctx->ca_cert);
if (status != errSecSuccess) {
AWS_LOGF_ERROR(
AWS_LS_IO_TLS,
"nw_socket=%p: nw_socket verify block SecTrustSetAnchorCertificates failed with "
"OSStatus: %d",
(void *)nw_socket,
(int)status);
aws_raise_error(AWS_IO_TLS_ERROR_NEGOTIATION_FAILURE);
goto verification_done;
}
}
/* Add the host name to be checked against the available Certificate Authorities */
if (nw_socket->host_name != NULL) {
CFStringRef server_name = CFStringCreateWithCString(
transport_ctx->wrapped_allocator, aws_string_c_str(nw_socket->host_name), kCFStringEncodingUTF8);
policy = SecPolicyCreateSSL(true, server_name);
CFRelease(server_name);
} else {
policy = SecPolicyCreateBasicX509();
}
status = SecTrustSetPolicies(trust_ref, policy);
if (status != errSecSuccess) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "nw_socket=%p: Failed to set trust policy %d\n", (void *)nw_socket, (int)status);
aws_raise_error(AWS_IO_TLS_ERROR_NEGOTIATION_FAILURE);
goto verification_done;
}
SecTrustResultType trust_result;
/* verify peer */
bool success = SecTrustEvaluateWithError(trust_ref, &error);
if (success) {
status = SecTrustGetTrustResult(trust_ref, &trust_result);
if (status == errSecSuccess) {
AWS_LOGF_DEBUG(
AWS_LS_IO_TLS,
"nw_socket=%p: nw_socket verify block trust result: %s",
(void *)nw_socket,
s_aws_sec_trust_result_type_to_string(trust_result));
// Proceed based on the trust_result if necessary
if (trust_result == kSecTrustResultProceed || trust_result == kSecTrustResultUnspecified) {
verification_successful = true;
}
} else {
AWS_LOGF_DEBUG(
AWS_LS_IO_TLS,
"nw_socket=%p: nw_socket SecTrustGetTrustResult failed with OSStatus: %d",
(void *)nw_socket,
(int)status);
}
} else {
char description_buffer[256];
s_get_error_description(error, description_buffer, sizeof(description_buffer));
int crt_error_code = s_determine_socket_error((int)CFErrorGetCode(error));
AWS_LOGF_DEBUG(
AWS_LS_IO_TLS,
"nw_socket=%p: nw_socket SecTrustEvaluateWithError failed with crt error code: %d : %s translated from CF "
"error "
"code: %ld : %s",
(void *)nw_socket,
crt_error_code,
aws_error_name(crt_error_code),
(long)CFErrorGetCode(error),
description_buffer);
}
verification_done:
if (policy) {
CFRelease(policy);
}
if (trust_ref) {
CFRelease(trust_ref);
}
if (error) {
CFRelease(error);
}
complete(verification_successful);
}
static void s_setup_tls_options(
nw_protocol_options_t tls_options,
struct nw_socket *nw_socket,
struct secure_transport_ctx *transport_ctx) {
/*
* Obtain the security protocol options from tls_options. Changes made to the copy will impact the protocol options
* within the tls_options
*/
sec_protocol_options_t sec_options = nw_tls_copy_sec_protocol_options(tls_options);
sec_protocol_options_set_local_identity(sec_options, transport_ctx->secitem_identity);
// Set the minimum TLS version
switch (transport_ctx->minimum_tls_version) {
case AWS_IO_TLSv1_2:
sec_protocol_options_set_min_tls_protocol_version(sec_options, tls_protocol_version_TLSv12);
break;
case AWS_IO_TLSv1_3:
sec_protocol_options_set_min_tls_protocol_version(sec_options, tls_protocol_version_TLSv13);
break;
case AWS_IO_TLS_VER_SYS_DEFAULTS:
/* not assigning a min tls protocol version automatically uses the system default version. */
break;
default:
/* Already validated with error thrown in s_setup_socket_params prior to this block being called. */
AWS_FATAL_ASSERT(false);
break;
}
/*
* Enable/Disable peer authentication. This setting is ignored by network framework due to our implementation of the
* verification block below but we set it in case anything else checks this value and/or in case we decide to remove
* the verify block in the future.
*/
sec_protocol_options_set_peer_authentication_required(sec_options, transport_ctx->verify_peer);
if (nw_socket->host_name != NULL) {
sec_protocol_options_set_tls_server_name(sec_options, (const char *)nw_socket->host_name->bytes);
}
// Add alpn protocols
if (nw_socket->alpn_list != NULL) {
AWS_LOGF_DEBUG(
AWS_LS_IO_TLS,
"nw_socket=%p: Setting ALPN list %s",
(void *)nw_socket,
aws_string_c_str(nw_socket->alpn_list));
struct aws_byte_cursor alpn_data = aws_byte_cursor_from_string(nw_socket->alpn_list);
struct aws_array_list alpn_list_array;
if (aws_array_list_init_dynamic(&alpn_list_array, nw_socket->allocator, 2, sizeof(struct aws_byte_cursor)) ||
aws_byte_cursor_split_on_char(&alpn_data, ';', &alpn_list_array)) {
/*
* We cannot throw or fail from within a tls options block. We will log the error and in the event an ALPN
* was required for this connection to succeeed, the connection's state change handler will catch the
* connection failure.
*/
AWS_LOGF_ERROR(
AWS_LS_IO_TLS, "nw_socket=%p: Failed to setup array list for ALPN setup.", (void *)nw_socket);
} else {
for (size_t i = 0; i < aws_array_list_length(&alpn_list_array); ++i) {
struct aws_byte_cursor protocol_cursor;
aws_array_list_get_at(&alpn_list_array, &protocol_cursor, i);
struct aws_string *protocol_string = aws_string_new_from_cursor(nw_socket->allocator, &protocol_cursor);
sec_protocol_options_add_tls_application_protocol(sec_options, aws_string_c_str(protocol_string));
aws_string_destroy(protocol_string);
}
}
aws_array_list_clean_up(&alpn_list_array);
}
/*
* We handle the verification of the remote end here. The verify block requires a dispatch queue to execute on.
*/
struct aws_dispatch_loop *dispatch_loop = nw_socket->event_loop->impl_data;
sec_protocol_options_set_verify_block(
sec_options,
^(sec_protocol_metadata_t metadata, sec_trust_t trust, sec_protocol_verify_complete_t complete) {
s_tls_verification_block(metadata, trust, complete, nw_socket, transport_ctx);
},
dispatch_loop->dispatch_queue);
nw_release(sec_options);
}
static int s_setup_socket_params(struct nw_socket *nw_socket, const struct aws_socket_options *options) {
/* If we already have parameters set, release them before re-establishing new parameters */
if (nw_socket->nw_parameters != NULL) {
nw_release(nw_socket->nw_parameters);
nw_socket->nw_parameters = NULL;
}
bool setup_tls = false;
if (aws_is_using_secitem()) {
/* If SecItem isn't being used then the nw_parameters should not be setup to handle the TLS Negotiation. */
if (nw_socket->tls_ctx) {
setup_tls = true;
}
}
if (options->type == AWS_SOCKET_STREAM) {
if (setup_tls) {
/* The verification block of the Network Framework TLS handshake requires a dispatch queue to run on. */
if (nw_socket->event_loop == NULL) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p Apple Network Framework setup of TLS parameters requires the nw_socket to have a "
"valid "
"event_loop.",
(void *)nw_socket);
return aws_raise_error(AWS_IO_SOCKET_MISSING_EVENT_LOOP);
}
struct secure_transport_ctx *transport_ctx = nw_socket->tls_ctx->impl;
/* This check cannot be done within the TLS options block and must be handled here. */
if (transport_ctx->minimum_tls_version == AWS_IO_SSLv3 ||
transport_ctx->minimum_tls_version == AWS_IO_TLSv1 ||
transport_ctx->minimum_tls_version == AWS_IO_TLSv1_1) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p options=%p: Selected minimum tls version not supported by Apple Network Framework "
"due "
"to deprecated status and known security flaws.",
(void *)nw_socket,
(void *)options);
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
}
switch (options->domain) {
case AWS_SOCKET_IPV4:
case AWS_SOCKET_IPV6:
case AWS_SOCKET_LOCAL:
nw_socket->nw_parameters = nw_parameters_create_secure_tcp(
// TLS options block
^(nw_protocol_options_t tls_options) {
s_setup_tls_options(tls_options, nw_socket, transport_ctx);
},
// TCP options block
^(nw_protocol_options_t tcp_options) {
s_setup_tcp_options(tcp_options, options);
});
break;
default:
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p options=%p: AWS_SOCKET_VSOCK is not supported on nw_socket.",
(void *)nw_socket,
(void *)options);
return aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
}
} else {
switch (options->domain) {
case AWS_SOCKET_IPV4:
case AWS_SOCKET_IPV6:
case AWS_SOCKET_LOCAL:
// TLS options are not set and the TLS options block should be disabled.
nw_socket->nw_parameters = nw_parameters_create_secure_tcp(
// TLS options Block disabled
NW_PARAMETERS_DISABLE_PROTOCOL,
// TCP options Block
^(nw_protocol_options_t tcp_options) {
s_setup_tcp_options(tcp_options, options);
});
break;
default:
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p options=%p: AWS_SOCKET_VSOCK is not supported on nw_socket.",
(void *)nw_socket,
(void *)options);
return aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
}
}
/* allow a local address to be used by multiple parameters. */
if (options->domain == AWS_SOCKET_LOCAL) {
nw_parameters_set_reuse_local_address(nw_socket->nw_parameters, true);
}
} else if (options->type == AWS_SOCKET_DGRAM) {
if (setup_tls) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p options=%p: Cannot use TLS with UDP.",
(void *)nw_socket,
(void *)options);
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
} else {
nw_socket->nw_parameters = nw_parameters_create_secure_udp(
NW_PARAMETERS_DISABLE_PROTOCOL,
// TCP options Block
^(nw_protocol_options_t tcp_options) {
s_setup_tcp_options(tcp_options, options);
});
}
}
if (!nw_socket->nw_parameters) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p options=%p: failed to create nw_parameters_t for nw_socket.",
(void *)nw_socket,
(void *)options);
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
}
return AWS_OP_SUCCESS;
}
static void s_socket_cleanup_fn(struct aws_socket *socket);
static int s_socket_connect_fn(struct aws_socket *socket, struct aws_socket_connect_options *socket_connect_options);
static int s_socket_bind_fn(struct aws_socket *socket, struct aws_socket_bind_options *socket_bind_options);
static int s_socket_listen_fn(struct aws_socket *socket, int backlog_size);
static int s_socket_start_accept_fn(
struct aws_socket *socket,
struct aws_event_loop *accept_loop,
struct aws_socket_listener_options options);
static int s_socket_stop_accept_fn(struct aws_socket *socket);
static int s_socket_close_fn(struct aws_socket *socket);
static int s_socket_shutdown_dir_fn(struct aws_socket *socket, enum aws_channel_direction dir);
static int s_socket_set_options_fn(struct aws_socket *socket, const struct aws_socket_options *options);
static int s_socket_assign_to_event_loop_fn(struct aws_socket *socket, struct aws_event_loop *event_loop);
static int s_socket_subscribe_to_readable_events_fn(
struct aws_socket *socket,
aws_socket_on_readable_fn *on_readable,
void *user_data);
static int s_socket_read_fn(struct aws_socket *socket, struct aws_byte_buf *buffer, size_t *amount_read);
static int s_socket_write_fn(
struct aws_socket *socket,
const struct aws_byte_cursor *cursor,
aws_socket_on_write_completed_fn *written_fn,
void *user_data);
static int s_socket_get_error_fn(struct aws_socket *socket);
static bool s_socket_is_open_fn(struct aws_socket *socket);
static int s_set_close_callback(struct aws_socket *socket, aws_socket_on_shutdown_complete_fn fn, void *user_data);
static int s_set_cleanup_callback(struct aws_socket *socket, aws_socket_on_shutdown_complete_fn fn, void *user_data);
static struct aws_byte_buf s_socket_get_protocol_fn(const struct aws_socket *socket);
static struct aws_string *s_socket_get_server_name_fn(const struct aws_socket *socket);
static struct aws_socket_vtable s_vtable = {
.socket_cleanup_fn = s_socket_cleanup_fn,
.socket_connect_fn = s_socket_connect_fn,
.socket_bind_fn = s_socket_bind_fn,
.socket_listen_fn = s_socket_listen_fn,
.socket_start_accept_fn = s_socket_start_accept_fn,
.socket_stop_accept_fn = s_socket_stop_accept_fn,
.socket_close_fn = s_socket_close_fn,
.socket_shutdown_dir_fn = s_socket_shutdown_dir_fn,
.socket_set_options_fn = s_socket_set_options_fn,
.socket_assign_to_event_loop_fn = s_socket_assign_to_event_loop_fn,
.socket_subscribe_to_readable_events_fn = s_socket_subscribe_to_readable_events_fn,
.socket_read_fn = s_socket_read_fn,
.socket_write_fn = s_socket_write_fn,
.socket_get_error_fn = s_socket_get_error_fn,
.socket_is_open_fn = s_socket_is_open_fn,
.socket_set_close_callback = s_set_close_callback,
.socket_set_cleanup_callback = s_set_cleanup_callback,
.socket_get_protocol_fn = s_socket_get_protocol_fn,
.socket_get_server_name_fn = s_socket_get_server_name_fn,
};
static int s_schedule_next_read(struct nw_socket *socket);
static void s_socket_cleanup_fn(struct aws_socket *socket) {
if (!socket->impl) {
/* protect from double clean */
return;
}
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p nw_socket=%p: is cleanup...", (void *)socket, (void *)socket->impl);
if (aws_socket_is_open(socket)) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "id=%p nw_socket=%p: is still open, closing...", (void *)socket, (void *)socket->impl);
aws_socket_close(socket);
}
struct nw_socket *nw_socket = socket->impl;
if (s_validate_event_loop(socket->event_loop) && !aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
s_lock_base_socket(nw_socket);
nw_socket->base_socket_synced_data.base_socket = NULL;
s_unlock_base_socket(nw_socket);
} else {
// If we are already on event loop or event loop is unavailable, we should already acquire the lock for base
// socket access
nw_socket->base_socket_synced_data.base_socket = NULL;
}
aws_ref_count_release(&nw_socket->nw_socket_ref_count);
socket->impl = NULL;
AWS_ZERO_STRUCT(*socket);
}
struct read_queue_node {
struct aws_allocator *allocator;
dispatch_data_t received_data;
struct aws_linked_list_node node;
size_t region_offset;
// If we didn't finish reading the received_data, we need to keep track of the region offset that we would
// like to resume with
size_t resume_region;
};
static void s_read_queue_node_destroy(struct read_queue_node *node) {
/* releases reference count on dispatch_data_t that was increased during creation of read_queue_node */
dispatch_release(node->received_data);
aws_mem_release(node->allocator, node);
}
struct socket_close_complete_args {
struct aws_task task;
struct aws_allocator *allocator;
aws_socket_on_shutdown_complete_fn *shutdown_complete_fn;
void *user_data;
struct nw_socket *nw_socket;
};
static void s_close_complete_callback(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)status;
(void)task;
struct socket_close_complete_args *task_arg = arg;
struct aws_allocator *allocator = task_arg->allocator;
if (task_arg->shutdown_complete_fn) {
task_arg->shutdown_complete_fn(task_arg->user_data);
}
aws_ref_count_release(&task_arg->nw_socket->nw_socket_ref_count);
aws_mem_release(allocator, task_arg);
}
static void s_socket_impl_destroy(void *sock_ptr) {
struct nw_socket *nw_socket = sock_ptr;
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p : start s_socket_impl_destroy", (void *)sock_ptr);
/* In case we have leftovers from the read queue, clean them up. */
while (!aws_linked_list_empty(&nw_socket->read_queue)) {
struct aws_linked_list_node *node = aws_linked_list_pop_front(&nw_socket->read_queue);
struct read_queue_node *read_queue_node = AWS_CONTAINER_OF(node, struct read_queue_node, node);
s_read_queue_node_destroy(read_queue_node);
}
/* Network Framework cleanup */
if (nw_socket->nw_parameters) {
nw_release(nw_socket->nw_parameters);
nw_socket->nw_parameters = NULL;
}
aws_string_destroy(nw_socket->host_name);
aws_string_destroy(nw_socket->alpn_list);
aws_byte_buf_clean_up(&nw_socket->protocol_buf);
if (nw_socket->tls_ctx) {
aws_tls_ctx_release(nw_socket->tls_ctx);
nw_socket->tls_ctx = NULL;
}
aws_socket_on_shutdown_complete_fn *on_cleanup_complete = nw_socket->on_socket_cleanup_complete_fn;
void *cleanup_user_data = nw_socket->cleanup_user_data;
aws_mutex_clean_up(&nw_socket->synced_data.lock);
aws_mutex_clean_up(&nw_socket->base_socket_synced_data.lock);
aws_mem_release(nw_socket->allocator, nw_socket);
nw_socket = NULL;
if (on_cleanup_complete) {
on_cleanup_complete(cleanup_user_data);
}
}
static void s_process_socket_cancel_task(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)task;
(void)status;
struct nw_socket_cancel_task_args *args = arg;
struct nw_socket *nw_socket = args->nw_socket;
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "nw_socket=%p: start to process socket cancel task.", (void *)nw_socket);
// The task should always run event when status == AWS_TASK_STATUS_CANCELLED. We rely on the task to clean up the
// system connection/listener. And release the socket memory.
if ((nw_socket->mode == NWSM_CONNECTION && nw_socket->os_handle.nw_connection != NULL) ||
(nw_socket->mode == NWSM_LISTENER && nw_socket->os_handle.nw_listener != NULL)) {
// The timeout_args only setup for connected client connections.
if (nw_socket->mode == NWSM_CONNECTION && nw_socket->timeout_args && !nw_socket->connection_setup) {
// if the connection setup is not set, the timeout task has not yet triggered, cancel it.
aws_event_loop_cancel_task(nw_socket->event_loop, &nw_socket->timeout_args->task);
}
if (nw_socket->mode == NWSM_LISTENER) {
nw_listener_cancel(nw_socket->os_handle.nw_listener);
} else if (nw_socket->mode == NWSM_CONNECTION) {
nw_connection_cancel(nw_socket->os_handle.nw_connection);
}
}
s_socket_release_internal_ref(nw_socket);
aws_mem_release(args->allocator, args);
}
// Cancel the socket and close the connection. The cancel should happened on the event loop.
static void s_handle_socket_canceled(void *socket_ptr) {
struct nw_socket *nw_socket = socket_ptr;
struct nw_socket_cancel_task_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct nw_socket_cancel_task_args));
args->allocator = nw_socket->allocator;
args->nw_socket = nw_socket;
/* The socket cancel should happened on the event loop if possible. The event loop will not set
* in the case where the socket is never connected/ listener is never started accept.
*/
if (s_validate_event_loop(nw_socket->event_loop)) {
aws_task_init(&args->task, s_process_socket_cancel_task, args, "SocketCanceledTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
} else {
s_process_socket_cancel_task(&args->task, args, AWS_TASK_STATUS_RUN_READY);
}
}
static void s_socket_internal_destroy(void *sock_ptr) {
struct nw_socket *nw_socket = sock_ptr;
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p : start s_socket_internal_destroy", (void *)sock_ptr);
if (s_validate_event_loop(nw_socket->event_loop)) {
struct socket_close_complete_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct socket_close_complete_args));
args->shutdown_complete_fn = nw_socket->on_socket_close_complete_fn;
args->user_data = nw_socket->close_user_data;
args->allocator = nw_socket->allocator;
args->nw_socket = nw_socket;
// At this point the internal ref count has been dropped to 0, and we are about to release the external ref
// count.
// However, we would still keep the external ref count alive until the s_close_complete_callback callback is
// invoked. Acquire another external ref count to keep the socket alive. It will be released in
// s_close_complete_callback.
aws_ref_count_acquire(&nw_socket->nw_socket_ref_count);
aws_task_init(&args->task, s_close_complete_callback, args, "SocketShutdownCompleteTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
} else {
// If we are not on the event loop
if (nw_socket->on_socket_close_complete_fn) {
nw_socket->on_socket_close_complete_fn(nw_socket->close_user_data);
}
}
if (nw_socket->mode == NWSM_LISTENER) {
nw_release(nw_socket->os_handle.nw_listener);
} else if (nw_socket->mode == NWSM_CONNECTION) {
nw_release(nw_socket->os_handle.nw_connection);
}
s_release_event_loop(nw_socket);
aws_ref_count_release(&nw_socket->nw_socket_ref_count);
}
int aws_socket_init_apple_nw_socket(
struct aws_socket *socket,
struct aws_allocator *alloc,
const struct aws_socket_options *options) {
AWS_FATAL_ASSERT(options);
AWS_ZERO_STRUCT(*socket);
// Network Interface is not supported with Apple Network Framework yet
if (options->network_interface_name[0] != 0) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: network_interface_name is not supported on this platform.",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
}
struct nw_socket *nw_socket = aws_mem_calloc(alloc, 1, sizeof(struct nw_socket));
nw_socket->allocator = alloc;
socket->allocator = alloc;
socket->options = *options;
socket->impl = nw_socket;
socket->vtable = &s_vtable;
aws_mutex_init(&nw_socket->synced_data.lock);
aws_mutex_init(&nw_socket->base_socket_synced_data.lock);
nw_socket->base_socket_synced_data.base_socket = socket;
nw_socket->synced_data.state = AWS_NW_SOCKET_STATE_INIT;
socket->state = AWS_NW_SOCKET_STATE_INIT;
aws_ref_count_init(&nw_socket->nw_socket_ref_count, nw_socket, s_socket_impl_destroy);
aws_ref_count_init(&nw_socket->internal_ref_count, nw_socket, s_socket_internal_destroy);
// The internal_ref_count should keep a reference of the nw_socket_ref_count. When the internal_ref_count
// drop to 0, it would release the nw_socket_ref_count.
aws_ref_count_acquire(&nw_socket->nw_socket_ref_count);
aws_ref_count_init(&nw_socket->write_ref_count, nw_socket, s_handle_socket_canceled);
aws_linked_list_init(&nw_socket->read_queue);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p nw_socket=%p fd=%d: socket created.",
(void *)socket,
(void *)nw_socket,
socket->io_handle.data.fd);
return AWS_OP_SUCCESS;
}
static void s_client_set_dispatch_queue(struct aws_io_handle *handle, void *queue) {
nw_connection_set_queue(handle->data.handle, queue);
}
static void s_handle_socket_timeout(struct aws_task *task, void *args, aws_task_status status) {
(void)task;
(void)status;
struct nw_socket_timeout_args *timeout_args = args;
struct nw_socket *nw_socket = timeout_args->nw_socket;
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "task_id=%p: timeout task triggered, evaluating timeouts.", (void *)task);
s_lock_base_socket(nw_socket);
struct aws_socket *socket = nw_socket->base_socket_synced_data.base_socket;
if (!nw_socket->connection_setup && socket) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: timed out, shutting down.",
(void *)socket,
(void *)nw_socket->os_handle.nw_connection);
int error_code = AWS_IO_SOCKET_TIMEOUT;
// Must set timeout_args to NULL to avoid double cancel. Clean up the timeout task
aws_mem_release(nw_socket->allocator, nw_socket->timeout_args);
nw_socket->timeout_args = NULL;
aws_socket_close(socket);
nw_socket->on_connection_result_fn(socket, error_code, nw_socket->connect_result_user_data);
} else {
// If the socket is already setup (either succeed or failed), we have already invoked the callback to notify the
// connection result. No need to invoke again. If the aws_socket is NULL (cleaned up by user), there is no
// meaning to invoke the callback anymore. Simply release the memory in these two cases.
aws_mem_release(nw_socket->allocator, nw_socket->timeout_args);
nw_socket->timeout_args = NULL;
}
s_unlock_base_socket(nw_socket);
s_socket_release_internal_ref(nw_socket);
// No need to release task, as task lives on timeout_args on nw_socket.
}
static void s_process_incoming_data_task(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)task;
(void)status;
struct nw_socket_scheduled_task_args *readable_args = arg;
struct nw_socket *nw_socket = readable_args->nw_socket;
int crt_error = readable_args->error_code;
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: start to process read data.",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
// If data is valid, push it in read_queue. The read_queue should be only accessed in event loop, as the
// task is scheduled in event loop, it is fine to directly access it.
if (readable_args->data) {
// We directly store the dispatch_data returned from kernel. This could potentially be performance concern.
// Another option is to read the data out into heap buffer and store the heap buffer in read_queue. However,
// this would introduce extra memory copy. We would like to keep the dispatch_data_t in read_queue for now.
struct read_queue_node *node = aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct read_queue_node));
node->allocator = nw_socket->allocator;
node->received_data = readable_args->data;
aws_linked_list_push_back(&nw_socket->read_queue, &node->node);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: read data is not empty, push data to read_queue",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
}
if (status != AWS_TASK_STATUS_CANCELED) {
s_lock_base_socket(nw_socket);
struct aws_socket *socket = nw_socket->base_socket_synced_data.base_socket;
// If the protocol is TCP, `is_complete` means the connection is closed, raise the
// AWS_IO_SOCKET_CLOSED error
if (socket && socket->options.type != AWS_SOCKET_DGRAM && readable_args->is_complete) {
crt_error = AWS_IO_SOCKET_CLOSED;
s_lock_socket_synced_data(nw_socket);
s_set_socket_state(nw_socket, ~AWS_NW_SOCKET_STATE_CONNECTED_READ);
s_unlock_socket_synced_data(nw_socket);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: socket is complete, flip read flag",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
}
if (nw_socket->on_readable) {
nw_socket->on_readable(socket, crt_error, nw_socket->on_readable_user_data);
}
s_unlock_base_socket(nw_socket);
}
s_socket_release_internal_ref(nw_socket);
aws_mem_release(readable_args->allocator, readable_args);
}
static void s_handle_incoming_data(
struct nw_socket *nw_socket,
int error_code,
dispatch_data_t data,
bool is_complete) {
if (s_validate_event_loop(nw_socket->event_loop)) {
struct nw_socket_scheduled_task_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct nw_socket_scheduled_task_args));
args->is_complete = is_complete;
args->nw_socket = nw_socket;
args->allocator = nw_socket->allocator;
args->error_code = error_code;
if (data) {
dispatch_retain(data);
args->data = data;
}
s_socket_acquire_internal_ref(nw_socket);
aws_task_init(&args->task, s_process_incoming_data_task, args, "readableTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
}
}
static void s_process_connection_result_task(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)status;
(void)task;
struct nw_socket_scheduled_task_args *task_args = arg;
struct nw_socket *nw_socket = task_args->nw_socket;
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "nw_socket=%p: start to process connection result task.", (void *)nw_socket);
if (status != AWS_TASK_STATUS_CANCELED) {
s_lock_base_socket(nw_socket);
struct aws_socket *socket = nw_socket->base_socket_synced_data.base_socket;
if (socket && nw_socket->on_connection_result_fn)
nw_socket->on_connection_result_fn(socket, task_args->error_code, nw_socket->connect_result_user_data);
s_unlock_base_socket(nw_socket);
}
s_socket_release_internal_ref(nw_socket);
aws_mem_release(task_args->allocator, task_args);
}
static void s_handle_on_connection_result(struct nw_socket *nw_socket, int error_code) {
if (s_validate_event_loop(nw_socket->event_loop)) {
struct nw_socket_scheduled_task_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct nw_socket_scheduled_task_args));
args->nw_socket = s_socket_acquire_internal_ref(nw_socket);
args->allocator = nw_socket->allocator;
args->error_code = error_code;
aws_task_init(&args->task, s_process_connection_result_task, args, "connectionSuccessTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
}
}
struct connection_state_change_args {
struct aws_task task;
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
nw_connection_t nw_connection;
nw_connection_state_t state;
int error;
};
static void s_process_connection_state_changed_ready(struct nw_socket *nw_socket, nw_connection_t nw_connection) {
s_lock_base_socket(nw_socket);
struct aws_socket *socket = nw_socket->base_socket_synced_data.base_socket;
if (socket) {
nw_path_t path = nw_connection_copy_current_path(nw_connection);
nw_endpoint_t local_endpoint = nw_path_copy_effective_local_endpoint(path);
nw_release(path);
const char *hostname = nw_endpoint_get_hostname(local_endpoint);
uint16_t port = nw_endpoint_get_port(local_endpoint);
nw_release(local_endpoint);
if (hostname != NULL) {
size_t hostname_len = strlen(hostname);
size_t buffer_size = AWS_ARRAY_SIZE(socket->local_endpoint.address);
size_t to_copy = aws_min_size(hostname_len, buffer_size);
memcpy(socket->local_endpoint.address, hostname, to_copy);
socket->local_endpoint.port = port;
}
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: set local endpoint %s:%d",
(void *)socket,
socket->io_handle.data.handle,
socket->local_endpoint.address,
port);
/* Check and store protocol for connection */
if (nw_socket->tls_ctx) {
nw_protocol_metadata_t metadata =
nw_connection_copy_protocol_metadata(socket->io_handle.data.handle, nw_protocol_copy_tls_definition());
if (metadata != NULL) {
sec_protocol_metadata_t sec_metadata = (sec_protocol_metadata_t)metadata;
const char *negotiated_protocol = sec_protocol_metadata_get_negotiated_protocol(sec_metadata);
if (negotiated_protocol) {
nw_socket->protocol_buf = aws_byte_buf_from_c_str(negotiated_protocol);
AWS_LOGF_DEBUG(
AWS_LS_IO_TLS,
"id=%p handle=%p: ALPN protocol set to: '%s'",
(void *)socket,
socket->io_handle.data.handle,
nw_socket->protocol_buf.buffer);
}
nw_release(metadata);
}
}
} else {
/*
* This happens when the aws_socket_clean_up() is called before the nw_connection_state_ready is
* returned. We still want to set the socket to write/read state and fire the connection succeed
* callback until we get the "nw_connection_state_cancelled" status.
*/
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: connection succeed, however, the base socket has been cleaned up.",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
}
s_lock_socket_synced_data(nw_socket);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_CONNECTED_WRITE | AWS_NW_SOCKET_STATE_CONNECTED_READ);
s_unlock_socket_synced_data(nw_socket);
s_unlock_base_socket(nw_socket);
nw_socket->connection_setup = true;
// Cancel the connection timeout task
if (nw_socket->timeout_args) {
aws_event_loop_cancel_task(nw_socket->event_loop, &nw_socket->timeout_args->task);
}
aws_ref_count_acquire(&nw_socket->nw_socket_ref_count);
s_handle_on_connection_result(nw_socket, AWS_OP_SUCCESS);
aws_ref_count_release(&nw_socket->nw_socket_ref_count);
}
static void s_process_connection_state_changed_task(struct aws_task *task, void *args, enum aws_task_status status) {
(void)status;
(void)task;
struct connection_state_change_args *connection_args = args;
struct nw_socket *nw_socket = connection_args->nw_socket;
nw_connection_t nw_connection = connection_args->nw_connection;
nw_connection_state_t state = connection_args->state;
/* Ideally we should not have a canceled task here, as nw_socket keeps a reference to event loop, therefore the
* event loop should never be destroyed before the nw_socket get destroyed. If we manually cancel the task, we
* should make sure we carefully handled the state change eventually, as the socket relies on this task to release
* and cleanup.
*/
if (status != AWS_TASK_STATUS_CANCELED) {
switch (state) {
case nw_connection_state_cancelled: {
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: Apple network framework socket connection state changed to cancelled, nw "
"error "
"code : %d",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
connection_args->error);
s_lock_socket_synced_data(nw_socket);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_CLOSED);
s_unlock_socket_synced_data(nw_socket);
s_socket_release_internal_ref(nw_socket);
} break;
case nw_connection_state_ready: {
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: Apple network framework socket connection state changed to ready, nw "
"error "
"code : %d",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
connection_args->error);
s_process_connection_state_changed_ready(nw_socket, nw_connection);
} break;
case nw_connection_state_waiting:
case nw_connection_state_preparing:
case nw_connection_state_failed:
default:
break;
}
int crt_error_code = connection_args->error;
if (crt_error_code) {
/* any error, including if closed remotely in error */
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: socket connection got error: %d",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
crt_error_code);
nw_socket->last_error = crt_error_code;
s_lock_socket_synced_data(nw_socket);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_ERROR);
s_unlock_socket_synced_data(nw_socket);
if (!nw_socket->connection_setup) {
s_handle_on_connection_result(nw_socket, crt_error_code);
nw_socket->connection_setup = true;
// Cancel the connection timeout task
if (nw_socket->timeout_args) {
aws_event_loop_cancel_task(nw_socket->event_loop, &nw_socket->timeout_args->task);
}
} else {
s_handle_incoming_data(nw_socket, nw_socket->last_error, NULL, false);
}
}
}
s_socket_release_internal_ref(nw_socket);
aws_mem_release(connection_args->allocator, connection_args);
}
static void s_handle_connection_state_changed_fn(
struct nw_socket *nw_socket,
nw_connection_t nw_connection,
nw_connection_state_t state,
nw_error_t error) {
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "nw_socket=%p: s_handle_connection_state_changed_fn start...", (void *)nw_socket);
int crt_error_code = s_convert_nw_error(error);
if (crt_error_code) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: s_handle_connection_state_changed_fn invoked error code %d : %s.",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
crt_error_code,
aws_error_name(crt_error_code));
}
if (s_validate_event_loop(nw_socket->event_loop)) {
struct connection_state_change_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct connection_state_change_args));
args->nw_socket = nw_socket;
args->allocator = nw_socket->allocator;
args->error = crt_error_code;
args->state = state;
args->nw_connection = nw_connection;
s_socket_acquire_internal_ref(nw_socket);
aws_task_init(&args->task, s_process_connection_state_changed_task, args, "ConnectionStateChangedTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
} else if (state == nw_connection_state_cancelled) {
s_socket_release_internal_ref(nw_socket);
}
}
static void s_process_listener_success_task(struct aws_task *task, void *args, enum aws_task_status status) {
(void)task;
struct nw_listener_connection_args *task_args = args;
struct aws_allocator *allocator = task_args->allocator;
struct nw_socket *listener_nw_socket = task_args->nw_socket;
int error = task_args->error_code;
AWS_FATAL_ASSERT(listener_nw_socket && listener_nw_socket->mode == NWSM_LISTENER);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: start to process incoming connection.",
(void *)listener_nw_socket,
(void *)listener_nw_socket->os_handle.nw_listener);
if (status == AWS_TASK_STATUS_RUN_READY) {
s_lock_base_socket(listener_nw_socket);
struct aws_socket *listener = listener_nw_socket->base_socket_synced_data.base_socket;
AWS_FATAL_ASSERT(listener && listener->accept_result_fn);
struct aws_socket *new_socket = NULL;
if (error) {
goto incoming_listener_error_cleanup;
}
new_socket = aws_mem_calloc(allocator, 1, sizeof(struct aws_socket));
struct aws_socket_options options = listener->options;
error = aws_socket_init(new_socket, allocator, &options);
if (error) {
goto incoming_listener_error_cleanup;
}
nw_endpoint_t endpoint = nw_connection_copy_endpoint(task_args->new_connection);
const char *hostname = nw_endpoint_get_hostname(endpoint);
uint16_t port = nw_endpoint_get_port(endpoint);
if (hostname != NULL) {
size_t address_strlen;
if (aws_secure_strlen(hostname, AWS_ADDRESS_MAX_LEN, &address_strlen)) {
nw_release(endpoint);
goto incoming_listener_error_cleanup;
}
struct aws_byte_buf hostname_buf = aws_byte_buf_from_c_str(hostname);
struct aws_byte_buf address_buf =
aws_byte_buf_from_empty_array(new_socket->remote_endpoint.address, AWS_ADDRESS_MAX_LEN);
aws_byte_buf_write_from_whole_buffer(&address_buf, hostname_buf);
aws_byte_buf_clean_up(&address_buf);
aws_byte_buf_clean_up(&hostname_buf);
new_socket->remote_endpoint.port = port;
}
nw_release(endpoint);
new_socket->io_handle.data.handle = task_args->new_connection;
new_socket->io_handle.set_queue = s_client_set_dispatch_queue;
struct nw_socket *new_nw_socket = new_socket->impl;
new_nw_socket->os_handle.nw_connection = task_args->new_connection;
new_nw_socket->connection_setup = true;
// Setup socket state to start read/write operations. We didn't lock here as we are in initializing process, no
// other process will touch the socket state.
s_set_socket_state(new_nw_socket, AWS_NW_SOCKET_STATE_CONNECTED_READ | AWS_NW_SOCKET_STATE_CONNECTED_WRITE);
// this internal ref will be released when the connection canceled ( connection state changed to
// nw_connection_state_cancelled)
s_socket_acquire_internal_ref(new_nw_socket);
nw_connection_set_state_changed_handler(
new_socket->io_handle.data.handle, ^(nw_connection_state_t state, nw_error_t error) {
s_handle_connection_state_changed_fn(new_nw_socket, new_nw_socket->os_handle.nw_connection, state, error);
});
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: incoming connection has been successfully connected to %s:%d, the incoming "
"handle is %p",
(void *)listener,
listener->io_handle.data.handle,
new_socket->remote_endpoint.address,
new_socket->remote_endpoint.port,
new_socket->io_handle.data.handle);
goto incoming_listener_finalize;
incoming_listener_error_cleanup:
if (new_socket) {
aws_socket_clean_up(new_socket);
aws_mem_release(allocator, new_socket);
new_socket = NULL;
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: failed to setup new socket for incoming connection with error code %d.",
(void *)listener,
listener->io_handle.data.handle,
error);
nw_release(task_args->new_connection);
incoming_listener_finalize:
listener->accept_result_fn(listener, error, new_socket, task_args->user_data);
s_unlock_base_socket(listener_nw_socket);
} else {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: process incoming listener task canceled .",
(void *)listener_nw_socket,
(void *)listener_nw_socket->os_handle.nw_listener);
// If the task is not scheduled, release the connection.
nw_release(task_args->new_connection);
}
s_socket_release_internal_ref(listener_nw_socket);
aws_mem_release(task_args->allocator, task_args);
}
static void s_handle_on_listener_success(
struct nw_socket *nw_socket,
int error_code,
nw_connection_t new_connection,
void *user_data) {
if (s_validate_event_loop(nw_socket->event_loop)) {
struct nw_listener_connection_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct nw_listener_connection_args));
args->nw_socket = nw_socket;
args->allocator = nw_socket->allocator;
args->error_code = error_code;
args->new_connection = new_connection;
args->user_data = user_data;
s_socket_acquire_internal_ref(nw_socket);
nw_retain(new_connection);
aws_task_init(&args->task, s_process_listener_success_task, args, "listenerSuccessTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
}
}
static void s_process_write_task(struct aws_task *task, void *args, enum aws_task_status status) {
(void)task;
struct nw_socket_written_args *task_args = args;
struct aws_allocator *allocator = task_args->allocator;
struct nw_socket *nw_socket = task_args->nw_socket;
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "nw_socket=%p: start to process write task.", (void *)nw_socket);
if (status != AWS_TASK_STATUS_CANCELED) {
s_lock_base_socket(nw_socket);
struct aws_socket *socket = nw_socket->base_socket_synced_data.base_socket;
if (task_args->written_fn) {
task_args->written_fn(socket, task_args->error_code, task_args->bytes_written, task_args->user_data);
}
s_unlock_base_socket(nw_socket);
}
s_socket_release_internal_ref(nw_socket);
aws_mem_release(allocator, task_args);
}
static void s_handle_write_fn(
struct nw_socket *nw_socket,
int error_code,
size_t bytes_written,
void *user_data,
aws_socket_on_write_completed_fn *written_fn) {
AWS_FATAL_ASSERT(s_validate_event_loop(nw_socket->event_loop));
struct nw_socket_written_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct nw_socket_written_args));
args->nw_socket = nw_socket;
args->allocator = nw_socket->allocator;
args->error_code = error_code;
args->written_fn = written_fn;
args->user_data = user_data;
args->bytes_written = bytes_written;
s_socket_acquire_internal_ref(nw_socket);
aws_task_init(&args->task, s_process_write_task, args, "writtenTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
}
/*
* Because TLS negotiation is handled by Apple Network Framework connection using its parameters, we need access to a
* number of items typically not needed until the TLS slot and handler are being initialized. This function along with
* retrieves the necessary TLS items and stores them in nw_socket.
*/
static int s_setup_tls_options_from_tls_connection_options(
struct nw_socket *nw_socket,
struct aws_tls_connection_options *tls_connection_options) {
if (nw_socket->tls_ctx != NULL || nw_socket->host_name != NULL || nw_socket->alpn_list != NULL) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET, "nw_socket=%p: Socket cannot have TLS options set more than once.", (void *)nw_socket);
return AWS_OP_ERR;
}
/* This check allows us to safely call this function whether or not TLS related options have been set. */
if (tls_connection_options == NULL) {
return AWS_OP_SUCCESS;
}
/* The host name is needed during the setup of the verification block */
if (tls_connection_options->server_name != NULL) {
nw_socket->host_name = aws_string_new_from_string(
tls_connection_options->server_name->allocator, tls_connection_options->server_name);
if (nw_socket->host_name == NULL) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p: Error encounterd during setup of host name from tls connection options.",
(void *)nw_socket);
return AWS_OP_ERR;
}
}
/* TLS negotiation needs the alpn list if one is present for use. */
struct aws_string *alpn_list = NULL;
if (tls_connection_options->alpn_list != NULL) {
alpn_list = tls_connection_options->alpn_list;
}
/* The tls_ctx is needed to setup TLS negotiation options in the Apple Network Framework connection's parameters */
if (tls_connection_options->ctx != NULL) {
nw_socket->tls_ctx = tls_connection_options->ctx;
aws_tls_ctx_acquire(nw_socket->tls_ctx);
/* If alpn_list hasn't been set, try assigning it from the transport_ctx. It's fine if it's also NULL. */
if (alpn_list == NULL) {
struct secure_transport_ctx *transport_ctx = nw_socket->tls_ctx->impl;
alpn_list = transport_ctx->alpn_list;
}
}
/* If an alpn_list was found, we store it for use in nw_socket for the setup of TLS parameters */
if (alpn_list != NULL) {
nw_socket->alpn_list = aws_string_new_from_string(alpn_list->allocator, alpn_list);
if (nw_socket->alpn_list == NULL) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p: Error encounterd during setup of alpn list from tls context.",
(void *)nw_socket);
return AWS_OP_ERR;
}
}
return AWS_OP_SUCCESS;
}
static int s_socket_connect_fn(struct aws_socket *socket, struct aws_socket_connect_options *socket_connect_options) {
struct nw_socket *nw_socket = socket->impl;
const struct aws_socket_endpoint *remote_endpoint = socket_connect_options->remote_endpoint;
struct aws_event_loop *event_loop = socket_connect_options->event_loop;
aws_socket_on_connection_result_fn *on_connection_result = socket_connect_options->on_connection_result;
void *user_data = socket_connect_options->user_data;
AWS_ASSERT(event_loop);
AWS_FATAL_ASSERT(on_connection_result);
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p beginning connect.", (void *)socket);
if (socket->event_loop) {
return aws_raise_error(AWS_IO_EVENT_LOOP_ALREADY_ASSIGNED);
}
/* We take what we need for TLS negotiation from the tls_connection_options */
if (s_setup_tls_options_from_tls_connection_options(nw_socket, socket_connect_options->tls_connection_options)) {
return AWS_OP_ERR;
}
/* event_loop must be set prior to setup of socket parameters. */
if (s_set_event_loop(socket, event_loop)) {
goto error;
}
if (s_setup_socket_params(nw_socket, &socket->options)) {
goto error;
}
s_lock_socket_synced_data(nw_socket);
if (nw_socket->synced_data.state != AWS_NW_SOCKET_STATE_INIT) {
s_unlock_socket_synced_data(nw_socket);
aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
goto error;
}
/* fill in posix sock addr, and then let Network framework sort it out. */
size_t address_strlen;
if (aws_secure_strlen(remote_endpoint->address, AWS_ADDRESS_MAX_LEN, &address_strlen)) {
s_unlock_socket_synced_data(nw_socket);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p: failed to parse address %s:%d.",
(void *)socket,
remote_endpoint->address,
(int)remote_endpoint->port);
aws_raise_error(AWS_IO_SOCKET_INVALID_ADDRESS);
goto error;
}
struct socket_address address;
AWS_ZERO_STRUCT(address);
int pton_err = 1;
switch (socket->options.domain) {
case AWS_SOCKET_IPV4: {
pton_err = inet_pton(AF_INET, remote_endpoint->address, &address.sock_addr_types.addr_in.sin_addr);
address.sock_addr_types.addr_in.sin_port = htons((uint16_t)remote_endpoint->port);
address.sock_addr_types.addr_in.sin_family = AF_INET;
address.sock_addr_types.addr_in.sin_len = sizeof(struct sockaddr_in);
break;
}
case AWS_SOCKET_IPV6: {
pton_err = inet_pton(AF_INET6, remote_endpoint->address, &address.sock_addr_types.addr_in6.sin6_addr);
address.sock_addr_types.addr_in6.sin6_port = htons((uint16_t)remote_endpoint->port);
address.sock_addr_types.addr_in6.sin6_family = AF_INET6;
address.sock_addr_types.addr_in6.sin6_len = sizeof(struct sockaddr_in6);
break;
}
case AWS_SOCKET_LOCAL: {
address.sock_addr_types.un_addr.sun_family = AF_UNIX;
strncpy(address.sock_addr_types.un_addr.sun_path, remote_endpoint->address, AWS_ADDRESS_MAX_LEN);
address.sock_addr_types.un_addr.sun_len = sizeof(struct sockaddr_un);
break;
}
default: {
AWS_LOGF_ERROR(AWS_LS_IO_SOCKET, "id=%p: socket tried to bind to an unknow domain.", (void *)socket);
s_unlock_socket_synced_data(nw_socket);
aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
goto error;
}
}
if (pton_err != 1) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p: failed to parse address %s:%d.",
(void *)socket,
remote_endpoint->address,
(int)remote_endpoint->port);
s_unlock_socket_synced_data(nw_socket);
aws_raise_error(s_convert_pton_error(pton_err));
goto error;
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p: connecting to endpoint %s:%d.",
(void *)socket,
remote_endpoint->address,
(int)remote_endpoint->port);
nw_endpoint_t endpoint = nw_endpoint_create_address(&address.sock_addr_types.addr_base);
if (!endpoint) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p: failed to create remote address %s:%d.",
(void *)socket,
remote_endpoint->address,
(int)remote_endpoint->port);
s_unlock_socket_synced_data(nw_socket);
aws_raise_error(AWS_IO_SOCKET_INVALID_ADDRESS);
goto error;
}
socket->io_handle.data.handle = nw_connection_create(endpoint, nw_socket->nw_parameters);
nw_release(endpoint);
if (!socket->io_handle.data.handle) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: connection creation failed, please verify the socket options are setup properly.",
(void *)socket,
socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error;
} else {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p: nw_connection_create successfully created handle=%p",
(void *)socket,
socket->io_handle.data.handle);
}
socket->remote_endpoint = *remote_endpoint;
nw_socket->os_handle.nw_connection = socket->io_handle.data.handle;
socket->io_handle.set_queue = s_client_set_dispatch_queue;
aws_event_loop_connect_handle_to_io_completion_port(event_loop, &socket->io_handle);
nw_socket->on_connection_result_fn = on_connection_result;
nw_socket->connect_result_user_data = user_data;
nw_socket->timeout_args = aws_mem_calloc(socket->allocator, 1, sizeof(struct nw_socket_timeout_args));
nw_socket->timeout_args->nw_socket = nw_socket;
nw_socket->timeout_args->allocator = socket->allocator;
aws_task_init(
&nw_socket->timeout_args->task,
s_handle_socket_timeout,
nw_socket->timeout_args,
"NWSocketConnectionTimeoutTask");
/* schedule a task to run at the connect timeout interval, if this task runs before the connect
* happens, we consider that a timeout. */
uint64_t timeout = 0;
aws_event_loop_current_clock_time(event_loop, &timeout);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: start connection at %llu.",
(void *)socket,
socket->io_handle.data.handle,
(unsigned long long)timeout);
timeout +=
aws_timestamp_convert(socket->options.connect_timeout_ms, AWS_TIMESTAMP_MILLIS, AWS_TIMESTAMP_NANOS, NULL);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: scheduling timeout task for %llu.",
(void *)socket,
socket->io_handle.data.handle,
(unsigned long long)timeout);
nw_socket->timeout_args->task.timestamp = timeout;
// Acquire a nw_socket for the timeout task
s_socket_acquire_internal_ref(nw_socket);
// The timeout task must schedule before we start the system connection. We will release the timeout args when
// we finished a connection. If we start the system connection first, then it is possible that the connection
// finished before timeout task scheduled, and the timeout args is already released by the time we schedule it.
aws_event_loop_schedule_task_future(event_loop, &nw_socket->timeout_args->task, timeout);
/* set a handler for socket state changes. This is where we find out if the connection timed out, was
* successful, was disconnected etc .... */
nw_connection_set_state_changed_handler(
socket->io_handle.data.handle, ^(nw_connection_state_t state, nw_error_t error) {
s_handle_connection_state_changed_fn(nw_socket, nw_socket->os_handle.nw_connection, state, error);
});
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_CONNECTING);
socket->connect_accept_user_data = user_data;
socket->connection_result_fn = on_connection_result;
// released when the connection state changed to nw_connection_state_cancelled
s_socket_acquire_internal_ref(nw_socket);
nw_connection_start(socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
error:
s_release_event_loop(nw_socket);
return AWS_OP_ERR;
}
static int s_socket_bind_fn(struct aws_socket *socket, struct aws_socket_bind_options *socket_bind_options) {
struct nw_socket *nw_socket = socket->impl;
const struct aws_socket_endpoint *local_endpoint = socket_bind_options->local_endpoint;
s_lock_socket_synced_data(nw_socket);
if (nw_socket->synced_data.state != AWS_NW_SOCKET_STATE_INIT) {
AWS_LOGF_ERROR(AWS_LS_IO_SOCKET, "id=%p: invalid state for bind operation.", (void *)socket);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
socket->local_endpoint = *local_endpoint;
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p: binding to %s:%d.",
(void *)socket,
local_endpoint->address,
(int)local_endpoint->port);
if (nw_socket->nw_parameters == NULL) {
/* We take what we need for TLS negotiation from the tls_connection_options */
if (s_setup_tls_options_from_tls_connection_options(nw_socket, socket_bind_options->tls_connection_options)) {
return AWS_OP_ERR;
}
if (nw_socket->tls_ctx != NULL) {
/*
* Apple Network's TLS negotiation verify block requires access to an event loop. We temporarily
* assign it to the nw_socket for use during the setup of its parameters and then immediately NULL
* it afterwards.
*/
nw_socket->event_loop = socket_bind_options->event_loop;
}
s_setup_socket_params(nw_socket, &socket->options);
/* Because a refcount wasn't acquired, we NULL the event_loop right after its use in creating socket params.
*/
nw_socket->event_loop = NULL;
}
struct socket_address address;
AWS_ZERO_STRUCT(address);
int pton_err = 1;
switch (socket->options.domain) {
case AWS_SOCKET_IPV4: {
pton_err = inet_pton(AF_INET, local_endpoint->address, &address.sock_addr_types.addr_in.sin_addr);
address.sock_addr_types.addr_in.sin_port = htons((uint16_t)local_endpoint->port);
address.sock_addr_types.addr_in.sin_family = AF_INET;
address.sock_addr_types.addr_in.sin_len = sizeof(struct sockaddr_in);
break;
}
case AWS_SOCKET_IPV6: {
pton_err = inet_pton(AF_INET6, local_endpoint->address, &address.sock_addr_types.addr_in6.sin6_addr);
address.sock_addr_types.addr_in6.sin6_port = htons((uint16_t)local_endpoint->port);
address.sock_addr_types.addr_in6.sin6_family = AF_INET6;
address.sock_addr_types.addr_in6.sin6_len = sizeof(struct sockaddr_in6);
break;
}
case AWS_SOCKET_LOCAL: {
address.sock_addr_types.un_addr.sun_family = AF_UNIX;
address.sock_addr_types.un_addr.sun_len = sizeof(struct sockaddr_un);
strncpy(address.sock_addr_types.un_addr.sun_path, local_endpoint->address, AWS_ADDRESS_MAX_LEN);
break;
}
default: {
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
}
}
if (pton_err != 1) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p: failed to parse address %s:%d.",
(void *)socket,
local_endpoint->address,
(int)local_endpoint->port);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(s_convert_pton_error(pton_err));
}
nw_endpoint_t endpoint = nw_endpoint_create_address(&address.sock_addr_types.addr_base);
if (!endpoint) {
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_INVALID_ADDRESS);
}
nw_parameters_set_local_endpoint(nw_socket->nw_parameters, endpoint);
nw_release(endpoint);
// Apple network framework requires connection besides bind.
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_BOUND);
s_unlock_socket_synced_data(nw_socket);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: successfully bound to %s:%u",
(void *)socket,
socket->io_handle.data.fd,
socket->local_endpoint.address,
socket->local_endpoint.port);
return AWS_OP_SUCCESS;
}
static void s_listener_set_dispatch_queue(struct aws_io_handle *handle, void *queue) {
nw_listener_set_queue(handle->data.handle, queue);
}
static int s_socket_listen_fn(struct aws_socket *socket, int backlog_size) {
(void)backlog_size;
struct nw_socket *nw_socket = socket->impl;
s_lock_socket_synced_data(nw_socket);
if (nw_socket->synced_data.state != AWS_NW_SOCKET_STATE_BOUND) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET, "id=%p: invalid state for listen operation. You must call bind first.", (void *)socket);
aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
goto done;
}
if (nw_socket->nw_parameters == NULL) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p: socket nw_parameters needs to be set before creating a listener from socket.",
(void *)socket);
aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
goto done;
}
socket->io_handle.data.handle = nw_listener_create(nw_socket->nw_parameters);
if (!socket->io_handle.data.handle) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p: listener creation failed, please verify the socket options are setup properly.",
(void *)socket);
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto done;
}
socket->io_handle.set_queue = s_listener_set_dispatch_queue;
nw_socket->os_handle.nw_listener = socket->io_handle.data.handle;
nw_socket->mode = NWSM_LISTENER;
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: nw_socket successfully listening",
(void *)socket,
socket->io_handle.data.handle);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_LISTENING);
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
done:
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_ERR;
}
struct listener_state_changed_args {
struct aws_task task;
struct aws_allocator *allocator;
struct nw_socket *nw_socket;
nw_listener_state_t state;
int error;
};
static void s_process_listener_state_changed_task(struct aws_task *task, void *args, enum aws_task_status status) {
(void)status;
(void)task;
struct listener_state_changed_args *listener_state_changed_args = args;
struct nw_socket *nw_socket = listener_state_changed_args->nw_socket;
nw_listener_t nw_listener = nw_socket->os_handle.nw_listener;
nw_listener_state_t state = listener_state_changed_args->state;
int crt_error_code = listener_state_changed_args->error;
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: start to process listener state change task.",
(void *)nw_socket,
(void *)nw_listener);
/* Ideally we should not have a task with AWS_TASK_STATUS_CANCELED here, as the event loop should never be
* destroyed before the nw_socket get destroyed. If we manually cancel the task, we should make sure we
* carefully handled the state change eventually, as the socket relies on this task to release and cleanup.
*/
if (status != AWS_TASK_STATUS_CANCELED) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: listener state changed to %d ",
(void *)nw_socket,
(void *)nw_listener,
state);
switch (state) {
case nw_listener_state_failed: {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: listener failed with error %d",
(void *)nw_socket,
(void *)nw_listener,
crt_error_code);
s_lock_base_socket(nw_socket);
struct aws_socket *aws_socket = nw_socket->base_socket_synced_data.base_socket;
s_lock_socket_synced_data(nw_socket);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_ERROR);
s_unlock_socket_synced_data(nw_socket);
if (nw_socket->on_accept_started_fn) {
nw_socket->on_accept_started_fn(
aws_socket, crt_error_code, nw_socket->listen_accept_started_user_data);
}
s_unlock_base_socket(nw_socket);
break;
}
case nw_listener_state_ready: {
s_lock_base_socket(nw_socket);
struct aws_socket *aws_socket = nw_socket->base_socket_synced_data.base_socket;
if (aws_socket) {
AWS_FATAL_ASSERT(nw_socket->mode == NWSM_LISTENER);
aws_socket->local_endpoint.port = nw_listener_get_port(nw_socket->os_handle.nw_listener);
if (nw_socket->on_accept_started_fn) {
nw_socket->on_accept_started_fn(
aws_socket, AWS_OP_SUCCESS, nw_socket->listen_accept_started_user_data);
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: listener on port %d ready ",
(void *)nw_socket,
(void *)nw_listener,
aws_socket->local_endpoint.port);
}
s_unlock_base_socket(nw_socket);
break;
}
case nw_listener_state_cancelled: {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: listener cancelled.",
(void *)nw_socket,
(void *)nw_listener);
s_lock_socket_synced_data(nw_socket);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_CLOSED);
s_unlock_socket_synced_data(nw_socket);
s_socket_release_internal_ref(nw_socket);
break;
}
default:
break;
}
}
// Release the internal ref for the task
s_socket_release_internal_ref(nw_socket);
aws_mem_release(listener_state_changed_args->allocator, listener_state_changed_args);
}
static void s_handle_listener_state_changed_fn(
struct nw_socket *nw_socket,
nw_listener_state_t state,
nw_error_t error) {
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "nw_socket=%p: s_handle_listener_state_changed_fn start...", (void *)nw_socket);
int crt_error_code = s_convert_nw_error(error);
if (crt_error_code) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: s_handle_listener_state_changed_fn invoked error code %d : %s",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
crt_error_code,
aws_error_name(crt_error_code));
}
if (s_validate_event_loop(nw_socket->event_loop)) {
struct listener_state_changed_args *args =
aws_mem_calloc(nw_socket->allocator, 1, sizeof(struct listener_state_changed_args));
args->nw_socket = nw_socket;
args->allocator = nw_socket->allocator;
args->error = crt_error_code;
args->state = state;
s_socket_acquire_internal_ref(nw_socket);
aws_task_init(&args->task, s_process_listener_state_changed_task, args, "ListenerStateChangedTask");
aws_event_loop_schedule_task_now(nw_socket->event_loop, &args->task);
} else {
AWS_FATAL_ASSERT(false && "The nw_socket should be always attached to a valid event loop.");
}
}
static int s_socket_start_accept_fn(
struct aws_socket *socket,
struct aws_event_loop *accept_loop,
struct aws_socket_listener_options options) {
AWS_FATAL_ASSERT(options.on_accept_result);
AWS_FATAL_ASSERT(accept_loop);
struct nw_socket *nw_socket = socket->impl;
s_lock_socket_synced_data(nw_socket);
if (nw_socket->synced_data.state != AWS_NW_SOCKET_STATE_LISTENING) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: invalid state for start_accept operation. You must call listen first.",
(void *)socket,
socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
if (socket->event_loop) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: is already assigned to event-loop %p.",
(void *)socket,
socket->io_handle.data.handle,
(void *)socket->event_loop);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_EVENT_LOOP_ALREADY_ASSIGNED);
}
if (s_set_event_loop(socket, accept_loop)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: failed to set event loop %p, invalid event loop. It is most likely the event loop does "
"not has a parent event loop group.",
(void *)socket,
socket->io_handle.data.handle,
(void *)accept_loop);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
}
aws_event_loop_connect_handle_to_io_completion_port(accept_loop, &socket->io_handle);
socket->accept_result_fn = options.on_accept_result;
socket->connect_accept_user_data = options.on_accept_result_user_data;
nw_socket->on_accept_started_fn = options.on_accept_start;
nw_socket->listen_accept_started_user_data = options.on_accept_start_user_data;
nw_listener_set_state_changed_handler(
socket->io_handle.data.handle, ^(nw_listener_state_t state, nw_error_t error) {
s_handle_listener_state_changed_fn(nw_socket, state, error);
});
nw_listener_set_new_connection_handler(socket->io_handle.data.handle, ^(nw_connection_t connection) {
s_handle_on_listener_success(nw_socket, AWS_OP_SUCCESS, connection, socket->connect_accept_user_data);
});
// this ref should be released in nw_listener_set_state_changed_handler where get state ==
// nw_listener_state_cancelled
s_socket_acquire_internal_ref(nw_socket);
nw_listener_start(socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
}
static int s_socket_stop_accept_fn(struct aws_socket *socket) {
struct nw_socket *nw_socket = socket->impl;
s_lock_socket_synced_data(nw_socket);
if (nw_socket->synced_data.state != AWS_NW_SOCKET_STATE_LISTENING) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: is not in a listening state, can't stop_accept.",
(void *)socket,
socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: stopping accepting new connections",
(void *)socket,
socket->io_handle.data.handle);
nw_listener_cancel(socket->io_handle.data.handle);
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_STOPPED);
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
}
// Close should always be run on event loop
static int s_socket_close_fn(struct aws_socket *socket) {
struct nw_socket *nw_socket = socket->impl;
s_lock_socket_synced_data(nw_socket);
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: socket is closing with current state %d",
(void *)socket,
socket->io_handle.data.handle,
socket->state);
if (nw_socket->synced_data.state < AWS_NW_SOCKET_STATE_CLOSING) {
// We would like to keep CONNECTED_READ so that we could continue processing any received data until the we
// got the system callback indicates that the system connection has been closed in the receiving direction.
s_set_socket_state(nw_socket, AWS_NW_SOCKET_STATE_CLOSING | AWS_NW_SOCKET_STATE_CONNECTED_READ);
s_socket_release_write_ref(nw_socket);
}
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
}
static int s_socket_shutdown_dir_fn(struct aws_socket *socket, enum aws_channel_direction dir) {
(void)dir;
AWS_ASSERT(false);
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET, "id=%p: shutdown by direction is not support for Apple network framework.", (void *)socket);
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPERATION_FOR_TYPE);
}
static int s_socket_set_options_fn(struct aws_socket *socket, const struct aws_socket_options *options) {
if (socket->options.domain != options->domain || socket->options.type != options->type) {
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: setting socket options to: keep-alive %d, keep idle %d, keep-alive interval %d, "
"keep-alive "
"probe "
"count %d.",
(void *)socket,
socket->io_handle.data.handle,
(int)options->keepalive,
(int)options->keep_alive_timeout_sec,
(int)options->keep_alive_interval_sec,
(int)options->keep_alive_max_failed_probes);
socket->options = *options;
struct nw_socket *nw_socket = socket->impl;
return s_setup_socket_params(nw_socket, options);
}
static int s_socket_assign_to_event_loop_fn(struct aws_socket *socket, struct aws_event_loop *event_loop) {
if (!socket->event_loop) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: assigning to event loop %p",
(void *)socket,
socket->io_handle.data.handle,
(void *)event_loop);
if (s_set_event_loop(socket, event_loop)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: assigning event loop %p failed. Invalid event loop. It is likely the event loop "
"does not has a parent event loop group.",
(void *)socket,
socket->io_handle.data.handle,
(void *)event_loop);
aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
return AWS_IO_SOCKET_INVALID_OPTIONS;
}
if (aws_event_loop_connect_handle_to_io_completion_port(event_loop, &socket->io_handle)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: assigning event loop %p failed",
(void *)socket,
socket->io_handle.data.handle,
(void *)event_loop);
return AWS_OP_ERR;
}
nw_connection_start(socket->io_handle.data.handle);
return AWS_OP_SUCCESS;
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: the socket is already assigned with an event loop %p",
(void *)socket,
socket->io_handle.data.handle,
(void *)event_loop);
return aws_raise_error(AWS_IO_EVENT_LOOP_ALREADY_ASSIGNED);
}
static void s_handle_nw_connection_receive_completion_fn(
dispatch_data_t data,
nw_content_context_t context,
bool is_complete,
nw_error_t error,
struct nw_socket *nw_socket) {
s_lock_socket_synced_data(nw_socket);
nw_socket->synced_data.read_scheduled = false;
s_unlock_socket_synced_data(nw_socket);
bool complete = is_complete;
int crt_error_code = s_convert_nw_error(error);
if (!crt_error_code) {
/* For protocols such as TCP, `is_complete` will be marked when the entire stream has be closed in the
* reading direction. For protocols such as UDP, this will be marked when the end of a datagram has
* been reached. */
complete = is_complete && nw_content_context_get_is_final(context);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: queued read buffer of size %d",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
data ? (int)dispatch_data_get_size(data) : 0);
} else {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: s_handle_nw_connection_receive_completion_fn invoked error code %d : %s",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
crt_error_code,
aws_error_name(crt_error_code));
}
// The callback should be fired before schedule next read, so that if the socket is closed, we could
// prevent schedule next read earlier.
s_handle_incoming_data(nw_socket, crt_error_code, data, complete);
// keep reading from the system socket
s_schedule_next_read(nw_socket);
s_socket_release_internal_ref(nw_socket);
}
/* s_schedule_next_read() will setup the nw_connection_receive_completion_t and start a read request to the system
* socket. The handler will get invoked when the system socket has data to read.
* The function is initially fired on the following conditions, and recursively call itself on handler invocation:
* 1. on function call `aws_socket_read()`
* 2. on function call `aws_socket_subscribe_to_readable_events`
*/
static int s_schedule_next_read(struct nw_socket *nw_socket) {
s_lock_socket_synced_data(nw_socket);
// Once a read operation is scheduled, we should not schedule another one until the current one is
// completed.
if (nw_socket->synced_data.read_scheduled) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: there is already read queued, do not queue further read",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
}
if (nw_socket->synced_data.state & AWS_NW_SOCKET_STATE_CLOSING ||
!(nw_socket->synced_data.state & AWS_NW_SOCKET_STATE_CONNECTED_READ)) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: cannot read to because socket is not connected",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_NOT_CONNECTED);
}
nw_socket->synced_data.read_scheduled = true;
// Acquire nw_socket as we called nw_connection_receive, and the ref will be released when the handler is
// called.
s_socket_acquire_internal_ref(nw_socket);
/* read and let me know when you've done it. */
nw_connection_receive(
nw_socket->os_handle.nw_connection,
1,
UINT32_MAX,
^(dispatch_data_t data, nw_content_context_t context, bool is_complete, nw_error_t error) {
s_handle_nw_connection_receive_completion_fn(data, context, is_complete, error, nw_socket);
});
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
}
static int s_socket_subscribe_to_readable_events_fn(
struct aws_socket *socket,
aws_socket_on_readable_fn *on_readable,
void *user_data) {
struct nw_socket *nw_socket = socket->impl;
if (nw_socket->mode == NWSM_LISTENER) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: Apple Network Framework does not support read/write on a listener. Please use "
"the "
"incoming socket to track the read/write operation.",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_listener);
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPERATION_FOR_TYPE);
}
socket->readable_user_data = user_data;
socket->readable_fn = on_readable;
nw_socket->on_readable = on_readable;
nw_socket->on_readable_user_data = user_data;
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: socket_subscribe_to_readable_events: start to schedule read request.",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection);
return s_schedule_next_read(nw_socket);
}
// WARNING: This function should handle the locks carefully. aws_socket_read()&aws_socket_write() should always
// called on event loop thread.
static int s_socket_read_fn(struct aws_socket *socket, struct aws_byte_buf *read_buffer, size_t *amount_read) {
struct nw_socket *nw_socket = socket->impl;
AWS_FATAL_ASSERT(amount_read);
if (!aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: cannot read from a different thread than event loop %p",
(void *)socket,
socket->io_handle.data.handle,
(void *)socket->event_loop);
return aws_raise_error(AWS_ERROR_IO_EVENT_LOOP_THREAD_ONLY);
}
__block size_t max_to_read = read_buffer->capacity - read_buffer->len;
/* As the function is always called on event loop, we didn't lock protect the read_queue. */
if (aws_linked_list_empty(&nw_socket->read_queue)) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: read queue is empty, scheduling another read",
(void *)socket,
socket->io_handle.data.handle);
s_lock_socket_synced_data(nw_socket);
if (!(nw_socket->synced_data.state & AWS_NW_SOCKET_STATE_CONNECTED_READ)) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: socket is not connected to read.",
(void *)socket,
socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_CLOSED);
}
*amount_read = 0;
s_unlock_socket_synced_data(nw_socket);
s_schedule_next_read(nw_socket);
return aws_raise_error(AWS_IO_READ_WOULD_BLOCK);
}
/* loop over the read queue, take the data and copy it over, and do so til we're either out of data
* and need to schedule another read, or we've read entirely into the requested buffer. */
while (!aws_linked_list_empty(&nw_socket->read_queue) && max_to_read) {
struct aws_linked_list_node *node = aws_linked_list_front(&nw_socket->read_queue);
struct read_queue_node *read_node = AWS_CONTAINER_OF(node, struct read_queue_node, node);
bool buffer_processed = dispatch_data_apply(
read_node->received_data,
(dispatch_data_applier_t) ^ (dispatch_data_t region, size_t offset, const void *buffer, size_t size) {
(void)region;
(void)offset;
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: Starting read dispatch data region offset: %lu, buffer %p, with size %lu.",
(void *)socket,
socket->io_handle.data.handle,
offset,
buffer,
size);
if (read_node->resume_region && offset < read_node->resume_region) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: Skipped dispatch data region region : %lu, looking for region: %lu",
(void *)socket,
socket->io_handle.data.handle,
offset,
read_node->resume_region);
return true;
}
size_t to_copy = aws_min_size(max_to_read, size - read_node->region_offset);
aws_byte_buf_write(read_buffer, (const uint8_t *)buffer + read_node->region_offset, to_copy);
max_to_read -= to_copy;
*amount_read += to_copy;
read_node->region_offset += to_copy;
if (read_node->region_offset == size) {
read_node->region_offset = 0;
return true;
}
read_node->resume_region = offset;
return false;
});
if (buffer_processed) {
aws_linked_list_remove(node);
s_read_queue_node_destroy(read_node);
}
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: read of %d",
(void *)socket,
socket->io_handle.data.handle,
(int)*amount_read);
}
return AWS_OP_SUCCESS;
}
static void s_handle_nw_connection_send_completion_fn(
nw_error_t error,
dispatch_data_t data,
struct nw_socket *nw_socket,
aws_socket_on_write_completed_fn *written_fn,
void *user_data) {
int crt_error_code = s_convert_nw_error(error);
if (crt_error_code) {
nw_socket->last_error = crt_error_code;
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: error during write %d : %s",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
crt_error_code,
aws_error_name(crt_error_code));
}
size_t written_size = dispatch_data_get_size(data);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"nw_socket=%p handle=%p: send written size %d",
(void *)nw_socket,
(void *)nw_socket->os_handle.nw_connection,
(int)written_size);
s_handle_write_fn(nw_socket, crt_error_code, data ? written_size : 0, user_data, written_fn);
s_socket_release_write_ref(nw_socket);
s_socket_release_internal_ref(nw_socket);
}
// WARNING: This function should be careful with locks. aws_socket_read()&aws_socket_write() should always called on
// event loop thread.
static int s_socket_write_fn(
struct aws_socket *socket,
const struct aws_byte_cursor *cursor,
aws_socket_on_write_completed_fn *written_fn,
void *user_data) {
AWS_FATAL_ASSERT(written_fn);
if (!aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
return aws_raise_error(AWS_ERROR_IO_EVENT_LOOP_THREAD_ONLY);
}
struct nw_socket *nw_socket = socket->impl;
s_lock_socket_synced_data(nw_socket);
if (!(nw_socket->synced_data.state & AWS_NW_SOCKET_STATE_CONNECTED_WRITE)) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: cannot write to because it is not connected",
(void *)socket,
socket->io_handle.data.handle);
s_unlock_socket_synced_data(nw_socket);
return aws_raise_error(AWS_IO_SOCKET_NOT_CONNECTED);
}
dispatch_data_t data = dispatch_data_create(cursor->ptr, cursor->len, NULL, DISPATCH_DATA_DESTRUCTOR_DEFAULT);
if (!data) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p handle=%p: failed to process write data.",
(void *)socket,
socket->io_handle.data.handle);
return AWS_OP_ERR;
}
s_socket_acquire_internal_ref(nw_socket);
s_socket_acquire_write_ref(nw_socket);
nw_connection_send(
socket->io_handle.data.handle, data, _nw_content_context_default_message, true, ^(nw_error_t error) {
s_handle_nw_connection_send_completion_fn(error, data, nw_socket, written_fn, user_data);
dispatch_release(data);
});
s_unlock_socket_synced_data(nw_socket);
return AWS_OP_SUCCESS;
}
static int s_socket_get_error_fn(struct aws_socket *socket) {
struct nw_socket *nw_socket = socket->impl;
return nw_socket->last_error;
}
static bool s_socket_is_open_fn(struct aws_socket *socket) {
struct nw_socket *nw_socket = socket->impl;
s_lock_socket_synced_data(nw_socket);
bool is_open = nw_socket->synced_data.state < AWS_NW_SOCKET_STATE_CLOSING;
s_unlock_socket_synced_data(nw_socket);
return is_open;
}
static int s_set_close_callback(struct aws_socket *socket, aws_socket_on_shutdown_complete_fn fn, void *user_data) {
struct nw_socket *nw_socket = socket->impl;
nw_socket->close_user_data = user_data;
nw_socket->on_socket_close_complete_fn = fn;
return 0;
}
static int s_set_cleanup_callback(struct aws_socket *socket, aws_socket_on_shutdown_complete_fn fn, void *user_data) {
struct nw_socket *nw_socket = socket->impl;
nw_socket->cleanup_user_data = user_data;
nw_socket->on_socket_cleanup_complete_fn = fn;
return 0;
}
static struct aws_byte_buf s_socket_get_protocol_fn(const struct aws_socket *socket) {
struct nw_socket *nw_socket = socket->impl;
return nw_socket->protocol_buf;
}
static struct aws_string *s_socket_get_server_name_fn(const struct aws_socket *socket) {
struct nw_socket *nw_socket = socket->impl;
return nw_socket->host_name;
}
|