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 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812
|
/*
* SRT - Secure, Reliable, Transport
* Copyright (c) 2018 Haivision Systems Inc.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
/*****************************************************************************
Copyright (c) 2001 - 2011, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.
* Redistributions in binary form must reproduce the
above copyright notice, this list of conditions
and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Illinois
nor the names of its contributors may be used to
endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
/*****************************************************************************
written by
Yunhong Gu, last updated 07/09/2011
modified by
Haivision Systems Inc.
*****************************************************************************/
#include "platform_sys.h"
#include <exception>
#include <stdexcept>
#include <typeinfo>
#include <iterator>
#include <vector>
#include <cstring>
#include "utilities.h"
#include "netinet_any.h"
#include "api.h"
#include "core.h"
#include "epoll.h"
#include "logging.h"
#include "threadname.h"
#include "srt.h"
#include "udt.h"
#ifdef _WIN32
#include <win/wintime.h>
#endif
#ifdef _MSC_VER
#pragma warning(error : 4530)
#endif
using namespace std;
using namespace srt_logging;
using namespace srt::sync;
void srt::CUDTSocket::construct()
{
#if ENABLE_BONDING
m_GroupOf = NULL;
m_GroupMemberData = NULL;
#endif
setupMutex(m_AcceptLock, "Accept");
setupCond(m_AcceptCond, "Accept");
setupMutex(m_ControlLock, "Control");
}
srt::CUDTSocket::~CUDTSocket()
{
releaseMutex(m_AcceptLock);
releaseCond(m_AcceptCond);
releaseMutex(m_ControlLock);
}
SRT_SOCKSTATUS srt::CUDTSocket::getStatus()
{
// TTL in CRendezvousQueue::updateConnStatus() will set m_bConnecting to false.
// Although m_Status is still SRTS_CONNECTING, the connection is in fact to be closed due to TTL expiry.
// In this case m_bConnected is also false. Both checks are required to avoid hitting
// a regular state transition from CONNECTING to CONNECTED.
if (m_UDT.m_bBroken)
return SRTS_BROKEN;
// Connecting timed out
if ((m_Status == SRTS_CONNECTING) && !m_UDT.m_bConnecting && !m_UDT.m_bConnected)
return SRTS_BROKEN;
return m_Status;
}
// [[using locked(m_GlobControlLock)]]
void srt::CUDTSocket::breakSocket_LOCKED()
{
// This function is intended to be called from GC,
// under a lock of m_GlobControlLock.
m_UDT.m_bBroken = true;
m_UDT.m_iBrokenCounter = 0;
HLOGC(smlog.Debug, log << "@" << m_SocketID << " CLOSING AS SOCKET");
m_UDT.closeInternal();
setClosed();
}
void srt::CUDTSocket::setClosed()
{
m_Status = SRTS_CLOSED;
// a socket will not be immediately removed when it is closed
// in order to prevent other methods from accessing invalid address
// a timer is started and the socket will be removed after approximately
// 1 second
m_tsClosureTimeStamp = steady_clock::now();
}
void srt::CUDTSocket::setBrokenClosed()
{
m_UDT.m_iBrokenCounter = 60;
m_UDT.m_bBroken = true;
setClosed();
}
bool srt::CUDTSocket::readReady()
{
if (m_UDT.m_bConnected && m_UDT.isRcvBufferReady())
return true;
if (m_UDT.m_bListening)
return !m_QueuedSockets.empty();
return broken();
}
bool srt::CUDTSocket::writeReady() const
{
return (m_UDT.m_bConnected && (m_UDT.m_pSndBuffer->getCurrBufSize() < m_UDT.m_config.iSndBufSize)) || broken();
}
bool srt::CUDTSocket::broken() const
{
return m_UDT.m_bBroken || !m_UDT.m_bConnected;
}
////////////////////////////////////////////////////////////////////////////////
srt::CUDTUnited::CUDTUnited()
: m_Sockets()
, m_GlobControlLock()
, m_IDLock()
, m_mMultiplexer()
, m_pCache(new CCache<CInfoBlock>)
, m_bClosing(false)
, m_GCStopCond()
, m_InitLock()
, m_iInstanceCount(0)
, m_bGCStatus(false)
, m_ClosedSockets()
{
// Socket ID MUST start from a random value
m_SocketIDGenerator = genRandomInt(1, MAX_SOCKET_VAL);
m_SocketIDGenerator_init = m_SocketIDGenerator;
// XXX An unlikely exception thrown from the below calls
// might destroy the application before `main`. This shouldn't
// be a problem in general.
setupMutex(m_GCStopLock, "GCStop");
setupCond(m_GCStopCond, "GCStop");
setupMutex(m_GlobControlLock, "GlobControl");
setupMutex(m_IDLock, "ID");
setupMutex(m_InitLock, "Init");
}
srt::CUDTUnited::~CUDTUnited()
{
// Call it if it wasn't called already.
// This will happen at the end of main() of the application,
// when the user didn't call srt_cleanup().
if (m_bGCStatus)
{
cleanup();
}
releaseMutex(m_GlobControlLock);
releaseMutex(m_IDLock);
releaseMutex(m_InitLock);
// XXX There's some weird bug here causing this
// to hangup on Windows. This might be either something
// bigger, or some problem in pthread-win32. As this is
// the application cleanup section, this can be temporarily
// tolerated with simply exit the application without cleanup,
// counting on that the system will take care of it anyway.
#ifndef _WIN32
releaseCond(m_GCStopCond);
#endif
releaseMutex(m_GCStopLock);
delete m_pCache;
}
string srt::CUDTUnited::CONID(SRTSOCKET sock)
{
if (sock == 0)
return "";
std::ostringstream os;
os << "@" << sock << ":";
return os.str();
}
int srt::CUDTUnited::startup()
{
ScopedLock gcinit(m_InitLock);
if (m_bGCStatus)
return 1;
if (m_iInstanceCount++ > 0)
return 1;
// Global initialization code
#ifdef _WIN32
WORD wVersionRequested;
WSADATA wsaData;
wVersionRequested = MAKEWORD(2, 2);
if (0 != WSAStartup(wVersionRequested, &wsaData))
throw CUDTException(MJ_SETUP, MN_NONE, WSAGetLastError());
#endif
CCryptoControl::globalInit();
PacketFilter::globalInit();
m_bClosing = false;
if (!StartThread(m_GCThread, garbageCollect, this, "SRT:GC"))
return -1;
m_bGCStatus = true;
HLOGC(inlog.Debug, log << "SRT Clock Type: " << SRT_SYNC_CLOCK_STR);
return 0;
}
int srt::CUDTUnited::cleanup()
{
// IMPORTANT!!!
// In this function there must be NO LOGGING AT ALL. This function may
// potentially be called from within the global program destructor, and
// therefore some of the facilities used by the logging system - including
// the default std::cerr object bound to it by default, but also a different
// stream that the user's app has bound to it, and which got destroyed
// together with already exited main() - may be already deleted when
// executing this procedure.
ScopedLock gcinit(m_InitLock);
if (--m_iInstanceCount > 0)
return 0;
if (!m_bGCStatus)
return 0;
{
UniqueLock gclock(m_GCStopLock);
m_bClosing = true;
}
// NOTE: we can do relaxed signaling here because
// waiting on m_GCStopCond has a 1-second timeout,
// after which the m_bClosing flag is cheched, which
// is set here above. Worst case secenario, this
// pthread_join() call will block for 1 second.
CSync::notify_one_relaxed(m_GCStopCond);
m_GCThread.join();
m_bGCStatus = false;
// Global destruction code
#ifdef _WIN32
WSACleanup();
#endif
return 0;
}
SRTSOCKET srt::CUDTUnited::generateSocketID(bool for_group)
{
ScopedLock guard(m_IDLock);
int sockval = m_SocketIDGenerator - 1;
// First problem: zero-value should be avoided by various reasons.
if (sockval <= 0)
{
// We have a rollover on the socket value, so
// definitely we haven't made the Columbus mistake yet.
m_SocketIDGenerator = MAX_SOCKET_VAL;
sockval = MAX_SOCKET_VAL;
}
// Check all sockets if any of them has this value.
// Socket IDs are begin created this way:
//
// Initial random
// |
// |
// |
// |
// ...
// The only problem might be if the number rolls over
// and reaches the same value from the opposite side.
// This is still a valid socket value, but this time
// we have to check, which sockets have been used already.
if (sockval == m_SocketIDGenerator_init)
{
// Mark that since this point on the checks for
// whether the socket ID is in use must be done.
m_SocketIDGenerator_init = 0;
}
// This is when all socket numbers have been already used once.
// This may happen after many years of running an application
// constantly when the connection breaks and gets restored often.
if (m_SocketIDGenerator_init == 0)
{
int startval = sockval;
for (;;) // Roll until an unused value is found
{
enterCS(m_GlobControlLock);
const bool exists =
#if ENABLE_BONDING
for_group
? m_Groups.count(sockval | SRTGROUP_MASK)
:
#endif
m_Sockets.count(sockval);
leaveCS(m_GlobControlLock);
if (exists)
{
// The socket value is in use.
--sockval;
if (sockval <= 0)
sockval = MAX_SOCKET_VAL;
// Before continuing, check if we haven't rolled back to start again
// This is virtually impossible, so just make an RTI error.
if (sockval == startval)
{
// Of course, we don't lack memory, but actually this is so impossible
// that a complete memory extinction is much more possible than this.
// So treat this rather as a formal fallback for something that "should
// never happen". This should make the socket creation functions, from
// socket_create and accept, return this error.
m_SocketIDGenerator = sockval + 1; // so that any next call will cause the same error
throw CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0);
}
// try again, if this is a free socket
continue;
}
// No socket found, this ID is free to use
m_SocketIDGenerator = sockval;
break;
}
}
else
{
m_SocketIDGenerator = sockval;
}
// The socket value counter remains with the value rolled
// without the group bit set; only the returned value may have
// the group bit set.
if (for_group)
sockval = m_SocketIDGenerator | SRTGROUP_MASK;
else
sockval = m_SocketIDGenerator;
LOGC(smlog.Debug, log << "generateSocketID: " << (for_group ? "(group)" : "") << ": @" << sockval);
return sockval;
}
SRTSOCKET srt::CUDTUnited::newSocket(CUDTSocket** pps)
{
// XXX consider using some replacement of std::unique_ptr
// so that exceptions will clean up the object without the
// need for a dedicated code.
CUDTSocket* ns = NULL;
try
{
ns = new CUDTSocket;
}
catch (...)
{
delete ns;
throw CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0);
}
try
{
ns->m_SocketID = generateSocketID();
}
catch (...)
{
delete ns;
throw;
}
ns->m_Status = SRTS_INIT;
ns->m_ListenSocket = 0;
ns->core().m_SocketID = ns->m_SocketID;
ns->core().m_pCache = m_pCache;
try
{
HLOGC(smlog.Debug, log << CONID(ns->m_SocketID) << "newSocket: mapping socket " << ns->m_SocketID);
// protect the m_Sockets structure.
ScopedLock cs(m_GlobControlLock);
m_Sockets[ns->m_SocketID] = ns;
}
catch (...)
{
// failure and rollback
delete ns;
ns = NULL;
throw CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0);
}
if (pps)
*pps = ns;
return ns->m_SocketID;
}
int srt::CUDTUnited::newConnection(const SRTSOCKET listen,
const sockaddr_any& peer,
const CPacket& hspkt,
CHandShake& w_hs,
int& w_error,
CUDT*& w_acpu)
{
CUDTSocket* ns = NULL;
w_acpu = NULL;
w_error = SRT_REJ_IPE;
// Can't manage this error through an exception because this is
// running in the listener loop.
CUDTSocket* ls = locateSocket(listen);
if (!ls)
{
LOGC(cnlog.Error, log << "IPE: newConnection by listener socket id=" << listen << " which DOES NOT EXIST.");
return -1;
}
HLOGC(cnlog.Debug,
log << "newConnection: creating new socket after listener @" << listen
<< " contacted with backlog=" << ls->m_uiBackLog);
// if this connection has already been processed
if ((ns = locatePeer(peer, w_hs.m_iID, w_hs.m_iISN)) != NULL)
{
if (ns->core().m_bBroken)
{
// last connection from the "peer" address has been broken
ns->setClosed();
ScopedLock acceptcg(ls->m_AcceptLock);
ls->m_QueuedSockets.erase(ns->m_SocketID);
}
else
{
// connection already exist, this is a repeated connection request
// respond with existing HS information
HLOGC(cnlog.Debug, log << "newConnection: located a WORKING peer @" << w_hs.m_iID << " - ADAPTING.");
w_hs.m_iISN = ns->core().m_iISN;
w_hs.m_iMSS = ns->core().MSS();
w_hs.m_iFlightFlagSize = ns->core().m_config.iFlightFlagSize;
w_hs.m_iReqType = URQ_CONCLUSION;
w_hs.m_iID = ns->m_SocketID;
// Report the original UDT because it will be
// required to complete the HS data for conclusion response.
w_acpu = &ns->core();
return 0;
// except for this situation a new connection should be started
}
}
else
{
HLOGC(cnlog.Debug,
log << "newConnection: NOT located any peer @" << w_hs.m_iID << " - resuming with initial connection.");
}
// exceeding backlog, refuse the connection request
if (ls->m_QueuedSockets.size() >= ls->m_uiBackLog)
{
w_error = SRT_REJ_BACKLOG;
LOGC(cnlog.Note, log << "newConnection: listen backlog=" << ls->m_uiBackLog << " EXCEEDED");
return -1;
}
try
{
// Protect the config of the listener socket from a data race.
ScopedLock lck(ls->core().m_ConnectionLock);
ns = new CUDTSocket(*ls);
// No need to check the peer, this is the address from which the request has come.
ns->m_PeerAddr = peer;
}
catch (...)
{
w_error = SRT_REJ_RESOURCE;
delete ns;
LOGC(cnlog.Error, log << "IPE: newConnection: unexpected exception (probably std::bad_alloc)");
return -1;
}
ns->core().m_RejectReason = SRT_REJ_UNKNOWN; // pre-set a universal value
try
{
ns->m_SocketID = generateSocketID();
}
catch (const CUDTException&)
{
LOGC(cnlog.Fatal, log << "newConnection: IPE: all sockets occupied? Last gen=" << m_SocketIDGenerator);
// generateSocketID throws exception, which can be naturally handled
// when the call is derived from the API call, but here it's called
// internally in response to receiving a handshake. It must be handled
// here and turned into an erroneous return value.
delete ns;
return -1;
}
ns->m_ListenSocket = listen;
ns->core().m_SocketID = ns->m_SocketID;
ns->m_PeerID = w_hs.m_iID;
ns->m_iISN = w_hs.m_iISN;
HLOGC(cnlog.Debug,
log << "newConnection: DATA: lsnid=" << listen << " id=" << ns->core().m_SocketID
<< " peerid=" << ns->core().m_PeerID << " ISN=" << ns->m_iISN);
int error = 0;
bool should_submit_to_accept = true;
// Set the error code for all prospective problems below.
// It won't be interpreted when result was successful.
w_error = SRT_REJ_RESOURCE;
// These can throw exception only when the memory allocation failed.
// CUDT::connect() translates exception into CUDTException.
// CUDT::open() may only throw original std::bad_alloc from new.
// This is only to make the library extra safe (when your machine lacks
// memory, it will continue to work, but fail to accept connection).
try
{
// This assignment must happen b4 the call to CUDT::connect() because
// this call causes sending the SRT Handshake through this socket.
// Without this mapping the socket cannot be found and therefore
// the SRT Handshake message would fail.
HLOGC(cnlog.Debug, log <<
"newConnection: incoming " << peer.str() << ", mapping socket " << ns->m_SocketID);
{
ScopedLock cg(m_GlobControlLock);
m_Sockets[ns->m_SocketID] = ns;
}
if (ls->core().m_cbAcceptHook)
{
if (!ls->core().runAcceptHook(&ns->core(), peer.get(), w_hs, hspkt))
{
w_error = ns->core().m_RejectReason;
error = 1;
goto ERR_ROLLBACK;
}
}
// bind to the same addr of listening socket
ns->core().open();
if (!updateListenerMux(ns, ls))
{
// This is highly unlikely if not impossible, but there's
// a theoretical runtime chance of failure so it should be
// handled
ns->core().m_RejectReason = SRT_REJ_IPE;
throw false; // let it jump directly into the omni exception handler
}
ns->core().acceptAndRespond(ls->m_SelfAddr, peer, hspkt, (w_hs));
}
catch (...)
{
// Extract the error that was set in this new failed entity.
w_error = ns->core().m_RejectReason;
error = 1;
goto ERR_ROLLBACK;
}
ns->m_Status = SRTS_CONNECTED;
// copy address information of local node
// Precisely, what happens here is:
// - Get the IP address and port from the system database
ns->core().m_pSndQueue->m_pChannel->getSockAddr((ns->m_SelfAddr));
// - OVERWRITE just the IP address itself by a value taken from piSelfIP
// (the family is used exactly as the one taken from what has been returned
// by getsockaddr)
CIPAddress::pton((ns->m_SelfAddr), ns->core().m_piSelfIP, peer);
{
// protect the m_PeerRec structure (and group existence)
ScopedLock glock(m_GlobControlLock);
try
{
HLOGC(cnlog.Debug, log << "newConnection: mapping peer " << ns->m_PeerID
<< " to that socket (" << ns->m_SocketID << ")");
m_PeerRec[ns->getPeerSpec()].insert(ns->m_SocketID);
LOGC(cnlog.Note, log << "@" << ns->m_SocketID << " connection on listener @" << listen
<< " (" << ns->m_SelfAddr.str() << ") from peer @" << ns->m_PeerID << " (" << peer.str() << ")");
}
catch (...)
{
LOGC(cnlog.Error, log << "newConnection: error when mapping peer!");
error = 2;
}
// The access to m_GroupOf should be also protected, as the group
// could be requested deletion in the meantime. This will hold any possible
// removal from group and resetting m_GroupOf field.
#if ENABLE_BONDING
if (ns->m_GroupOf)
{
// XXX this might require another check of group type.
// For redundancy group, at least, update the status in the group
CUDTGroup* g = ns->m_GroupOf;
ScopedLock grlock(g->m_GroupLock);
if (g->m_bClosing)
{
error = 1; // "INTERNAL REJECTION"
goto ERR_ROLLBACK;
}
// Check if this is the first socket in the group.
// If so, give it up to accept, otherwise just do nothing
// The client will be informed about the newly added connection at the
// first moment when attempting to get the group status.
for (CUDTGroup::gli_t gi = g->m_Group.begin(); gi != g->m_Group.end(); ++gi)
{
if (gi->laststatus == SRTS_CONNECTED)
{
HLOGC(cnlog.Debug,
log << "Found another connected socket in the group: $" << gi->id
<< " - socket will be NOT given up for accepting");
should_submit_to_accept = false;
break;
}
}
// Update the status in the group so that the next
// operation can include the socket in the group operation.
CUDTGroup::SocketData* gm = ns->m_GroupMemberData;
HLOGC(cnlog.Debug,
log << "newConnection(GROUP): Socket @" << ns->m_SocketID << " BELONGS TO $" << g->id() << " - will "
<< (should_submit_to_accept ? "" : "NOT ") << "report in accept");
gm->sndstate = SRT_GST_IDLE;
gm->rcvstate = SRT_GST_IDLE;
gm->laststatus = SRTS_CONNECTED;
if (!g->m_bConnected)
{
HLOGC(cnlog.Debug, log << "newConnection(GROUP): First socket connected, SETTING GROUP CONNECTED");
g->m_bConnected = true;
}
// XXX PROLBEM!!! These events are subscribed here so that this is done once, lazily,
// but groupwise connections could be accepted from multiple listeners for the same group!
// m_listener MUST BE A CONTAINER, NOT POINTER!!!
// ALSO: Maybe checking "the same listener" is not necessary as subscruption may be done
// multiple times anyway?
if (!g->m_listener)
{
// Newly created group from the listener, which hasn't yet
// the listener set.
g->m_listener = ls;
// Listen on both first connected socket and continued sockets.
// This might help with jump-over situations, and in regular continued
// sockets the IN event won't be reported anyway.
int listener_modes = SRT_EPOLL_ACCEPT | SRT_EPOLL_UPDATE;
epoll_add_usock_INTERNAL(g->m_RcvEID, ls, &listener_modes);
// This listening should be done always when a first connected socket
// appears as accepted off the listener. This is for the sake of swait() calls
// inside the group receiving and sending functions so that they get
// interrupted when a new socket is connected.
}
// Add also per-direction subscription for the about-to-be-accepted socket.
// Both first accepted socket that makes the group-accept and every next
// socket that adds a new link.
int read_modes = SRT_EPOLL_IN | SRT_EPOLL_ERR;
int write_modes = SRT_EPOLL_OUT | SRT_EPOLL_ERR;
epoll_add_usock_INTERNAL(g->m_RcvEID, ns, &read_modes);
epoll_add_usock_INTERNAL(g->m_SndEID, ns, &write_modes);
// With app reader, do not set groupPacketArrival (block the
// provider array feature completely for now).
/* SETUP HERE IF NEEDED
ns->core().m_cbPacketArrival.set(ns->m_pUDT, &CUDT::groupPacketArrival);
*/
}
else
{
HLOGC(cnlog.Debug, log << "newConnection: Socket @" << ns->m_SocketID << " is not in a group");
}
#endif
}
if (should_submit_to_accept)
{
enterCS(ls->m_AcceptLock);
try
{
ls->m_QueuedSockets[ns->m_SocketID] = ns->m_PeerAddr;
}
catch (...)
{
LOGC(cnlog.Error, log << "newConnection: error when queuing socket!");
error = 3;
}
leaveCS(ls->m_AcceptLock);
HLOGC(cnlog.Debug, log << "ACCEPT: new socket @" << ns->m_SocketID << " submitted for acceptance");
// acknowledge users waiting for new connections on the listening socket
m_EPoll.update_events(listen, ls->core().m_sPollID, SRT_EPOLL_ACCEPT, true);
CGlobEvent::triggerEvent();
// XXX the exact value of 'error' is ignored
if (error > 0)
{
goto ERR_ROLLBACK;
}
// wake up a waiting accept() call
CSync::lock_notify_one(ls->m_AcceptCond, ls->m_AcceptLock);
}
else
{
HLOGC(cnlog.Debug,
log << "ACCEPT: new socket @" << ns->m_SocketID
<< " NOT submitted to acceptance, another socket in the group is already connected");
// acknowledge INTERNAL users waiting for new connections on the listening socket
// that are reported when a new socket is connected within an already connected group.
m_EPoll.update_events(listen, ls->core().m_sPollID, SRT_EPOLL_UPDATE, true);
CGlobEvent::triggerEvent();
}
ERR_ROLLBACK:
// XXX the exact value of 'error' is ignored
if (error > 0)
{
#if ENABLE_LOGGING
static const char* why[] = {
"UNKNOWN ERROR", "INTERNAL REJECTION", "IPE when mapping a socket", "IPE when inserting a socket"};
LOGC(cnlog.Warn,
log << CONID(ns->m_SocketID) << "newConnection: connection rejected due to: " << why[error] << " - "
<< RequestTypeStr(URQFailure(w_error)));
#endif
SRTSOCKET id = ns->m_SocketID;
ns->core().closeInternal();
ns->setClosed();
// The mapped socket should be now unmapped to preserve the situation that
// was in the original UDT code.
// In SRT additionally the acceptAndRespond() function (it was called probably
// connect() in UDT code) may fail, in which case this socket should not be
// further processed and should be removed.
{
ScopedLock cg(m_GlobControlLock);
#if ENABLE_BONDING
if (ns->m_GroupOf)
{
HLOGC(smlog.Debug,
log << "@" << ns->m_SocketID << " IS MEMBER OF $" << ns->m_GroupOf->id()
<< " - REMOVING FROM GROUP");
ns->removeFromGroup(true);
}
#endif
m_Sockets.erase(id);
m_ClosedSockets[id] = ns;
}
return -1;
}
return 1;
}
// static forwarder
int srt::CUDT::installAcceptHook(SRTSOCKET lsn, srt_listen_callback_fn* hook, void* opaq)
{
return uglobal().installAcceptHook(lsn, hook, opaq);
}
int srt::CUDTUnited::installAcceptHook(const SRTSOCKET lsn, srt_listen_callback_fn* hook, void* opaq)
{
try
{
CUDTSocket* s = locateSocket(lsn, ERH_THROW);
s->core().installAcceptHook(hook, opaq);
}
catch (CUDTException& e)
{
SetThreadLocalError(e);
return SRT_ERROR;
}
return 0;
}
int srt::CUDT::installConnectHook(SRTSOCKET lsn, srt_connect_callback_fn* hook, void* opaq)
{
return uglobal().installConnectHook(lsn, hook, opaq);
}
int srt::CUDTUnited::installConnectHook(const SRTSOCKET u, srt_connect_callback_fn* hook, void* opaq)
{
try
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
GroupKeeper k(*this, u, ERH_THROW);
k.group->installConnectHook(hook, opaq);
return 0;
}
#endif
CUDTSocket* s = locateSocket(u, ERH_THROW);
s->core().installConnectHook(hook, opaq);
}
catch (CUDTException& e)
{
SetThreadLocalError(e);
return SRT_ERROR;
}
return 0;
}
SRT_SOCKSTATUS srt::CUDTUnited::getStatus(const SRTSOCKET u)
{
// protects the m_Sockets structure
ScopedLock cg(m_GlobControlLock);
sockets_t::const_iterator i = m_Sockets.find(u);
if (i == m_Sockets.end())
{
if (m_ClosedSockets.find(u) != m_ClosedSockets.end())
return SRTS_CLOSED;
return SRTS_NONEXIST;
}
return i->second->getStatus();
}
int srt::CUDTUnited::bind(CUDTSocket* s, const sockaddr_any& name)
{
ScopedLock cg(s->m_ControlLock);
// cannot bind a socket more than once
if (s->m_Status != SRTS_INIT)
throw CUDTException(MJ_NOTSUP, MN_NONE, 0);
if (s->core().m_config.iIpV6Only == -1 && name.family() == AF_INET6 && name.isany())
{
// V6ONLY option must be set explicitly if you want to bind to a wildcard address in IPv6
HLOGP(smlog.Error,
"bind: when binding to :: (IPv6 wildcard), SRTO_IPV6ONLY option must be set explicitly to 0 or 1");
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
}
s->core().open();
updateMux(s, name);
s->m_Status = SRTS_OPENED;
// copy address information of local node
s->core().m_pSndQueue->m_pChannel->getSockAddr((s->m_SelfAddr));
return 0;
}
int srt::CUDTUnited::bind(CUDTSocket* s, UDPSOCKET udpsock)
{
ScopedLock cg(s->m_ControlLock);
// cannot bind a socket more than once
if (s->m_Status != SRTS_INIT)
throw CUDTException(MJ_NOTSUP, MN_NONE, 0);
sockaddr_any name;
socklen_t namelen = sizeof name; // max of inet and inet6
// This will preset the sa_family as well; the namelen is given simply large
// enough for any family here.
if (::getsockname(udpsock, &name.sa, &namelen) == -1)
throw CUDTException(MJ_NOTSUP, MN_INVAL);
// Successfully extracted, so update the size
name.len = namelen;
s->core().open();
updateMux(s, name, &udpsock);
s->m_Status = SRTS_OPENED;
// copy address information of local node
s->core().m_pSndQueue->m_pChannel->getSockAddr(s->m_SelfAddr);
return 0;
}
int srt::CUDTUnited::listen(const SRTSOCKET u, int backlog)
{
if (backlog <= 0)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
// Don't search for the socket if it's already -1;
// this never is a valid socket.
if (u == UDT::INVALID_SOCK)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
CUDTSocket* s = locateSocket(u);
if (!s)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
ScopedLock cg(s->m_ControlLock);
// NOTE: since now the socket is protected against simultaneous access.
// In the meantime the socket might have been closed, which means that
// it could have changed the state. It could be also set listen in another
// thread, so check it out.
// do nothing if the socket is already listening
if (s->m_Status == SRTS_LISTENING)
return 0;
// a socket can listen only if is in OPENED status
if (s->m_Status != SRTS_OPENED)
throw CUDTException(MJ_NOTSUP, MN_ISUNBOUND, 0);
// [[using assert(s->m_Status == OPENED)]];
// listen is not supported in rendezvous connection setup
if (s->core().m_config.bRendezvous)
throw CUDTException(MJ_NOTSUP, MN_ISRENDEZVOUS, 0);
s->m_uiBackLog = backlog;
// [[using assert(s->m_Status == OPENED)]]; // (still, unchanged)
s->core().setListenState(); // propagates CUDTException,
// if thrown, remains in OPENED state if so.
s->m_Status = SRTS_LISTENING;
return 0;
}
SRTSOCKET srt::CUDTUnited::accept_bond(const SRTSOCKET listeners[], int lsize, int64_t msTimeOut)
{
CEPollDesc* ed = 0;
int eid = m_EPoll.create(&ed);
// Destroy it at return - this function can be interrupted
// by an exception.
struct AtReturn
{
int eid;
CUDTUnited* that;
AtReturn(CUDTUnited* t, int e)
: eid(e)
, that(t)
{
}
~AtReturn() { that->m_EPoll.release(eid); }
} l_ar(this, eid);
// Subscribe all of listeners for accept
int events = SRT_EPOLL_ACCEPT;
for (int i = 0; i < lsize; ++i)
{
srt_epoll_add_usock(eid, listeners[i], &events);
}
CEPoll::fmap_t st;
m_EPoll.swait(*ed, (st), msTimeOut, true);
if (st.empty())
{
// Sanity check
throw CUDTException(MJ_AGAIN, MN_XMTIMEOUT, 0);
}
// Theoretically we can have a situation that more than one
// listener is ready for accept. In this case simply get
// only the first found.
int lsn = st.begin()->first;
sockaddr_storage dummy;
int outlen = sizeof dummy;
return accept(lsn, ((sockaddr*)&dummy), (&outlen));
}
SRTSOCKET srt::CUDTUnited::accept(const SRTSOCKET listen, sockaddr* pw_addr, int* pw_addrlen)
{
if (pw_addr && !pw_addrlen)
{
LOGC(cnlog.Error, log << "srt_accept: provided address, but address length parameter is missing");
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
}
CUDTSocket* ls = locateSocket(listen);
if (ls == NULL)
{
LOGC(cnlog.Error, log << "srt_accept: invalid listener socket ID value: " << listen);
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
}
// the "listen" socket must be in LISTENING status
if (ls->m_Status != SRTS_LISTENING)
{
LOGC(cnlog.Error, log << "srt_accept: socket @" << listen << " is not in listening state (forgot srt_listen?)");
throw CUDTException(MJ_NOTSUP, MN_NOLISTEN, 0);
}
// no "accept" in rendezvous connection setup
if (ls->core().m_config.bRendezvous)
{
LOGC(cnlog.Fatal,
log << "CUDTUnited::accept: RENDEZVOUS flag passed through check in srt_listen when it set listen state");
// This problem should never happen because `srt_listen` function should have
// checked this situation before and not set listen state in result.
// Inform the user about the invalid state in the universal way.
throw CUDTException(MJ_NOTSUP, MN_NOLISTEN, 0);
}
SRTSOCKET u = CUDT::INVALID_SOCK;
bool accepted = false;
// !!only one connection can be set up each time!!
while (!accepted)
{
UniqueLock accept_lock(ls->m_AcceptLock);
CSync accept_sync(ls->m_AcceptCond, accept_lock);
if ((ls->m_Status != SRTS_LISTENING) || ls->core().m_bBroken)
{
// This socket has been closed.
accepted = true;
}
else if (ls->m_QueuedSockets.size() > 0)
{
map<SRTSOCKET, sockaddr_any>::iterator b = ls->m_QueuedSockets.begin();
if (pw_addr != NULL && pw_addrlen != NULL)
{
// Check if the length of the buffer to fill the name in
// was large enough.
const int len = b->second.size();
if (*pw_addrlen < len)
{
// In case when the address cannot be rewritten,
// DO NOT accept, but leave the socket in the queue.
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
}
}
u = b->first;
ls->m_QueuedSockets.erase(b);
accepted = true;
}
else if (!ls->core().m_config.bSynRecving)
{
accepted = true;
}
if (!accepted && (ls->m_Status == SRTS_LISTENING))
accept_sync.wait();
if (ls->m_QueuedSockets.empty())
m_EPoll.update_events(listen, ls->core().m_sPollID, SRT_EPOLL_ACCEPT, false);
}
if (u == CUDT::INVALID_SOCK)
{
// non-blocking receiving, no connection available
if (!ls->core().m_config.bSynRecving)
{
LOGC(cnlog.Error, log << "srt_accept: no pending connection available at the moment");
throw CUDTException(MJ_AGAIN, MN_RDAVAIL, 0);
}
LOGC(cnlog.Error, log << "srt_accept: listener socket @" << listen << " is already closed");
// listening socket is closed
throw CUDTException(MJ_SETUP, MN_CLOSED, 0);
}
CUDTSocket* s = locateSocket(u);
if (s == NULL)
{
LOGC(cnlog.Error, log << "srt_accept: pending connection has unexpectedly closed");
throw CUDTException(MJ_SETUP, MN_CLOSED, 0);
}
// Set properly the SRTO_GROUPCONNECT flag
s->core().m_config.iGroupConnect = 0;
// Check if LISTENER has the SRTO_GROUPCONNECT flag set,
// and the already accepted socket has successfully joined
// the mirror group. If so, RETURN THE GROUP ID, not the socket ID.
#if ENABLE_BONDING
if (ls->core().m_config.iGroupConnect == 1 && s->m_GroupOf)
{
// Put a lock to protect the group against accidental deletion
// in the meantime.
ScopedLock glock(m_GlobControlLock);
// Check again; it's unlikely to happen, but
// it's a theoretically possible scenario
if (s->m_GroupOf)
{
u = s->m_GroupOf->m_GroupID;
s->core().m_config.iGroupConnect = 1; // should be derived from ls, but make sure
// Mark the beginning of the connection at the moment
// when the group ID is returned to the app caller
s->m_GroupOf->m_stats.tsLastSampleTime = steady_clock::now();
}
else
{
LOGC(smlog.Error, log << "accept: IPE: socket's group deleted in the meantime of accept process???");
}
}
#endif
ScopedLock cg(s->m_ControlLock);
if (pw_addr != NULL && pw_addrlen != NULL)
{
memcpy((pw_addr), s->m_PeerAddr.get(), s->m_PeerAddr.size());
*pw_addrlen = s->m_PeerAddr.size();
}
return u;
}
int srt::CUDTUnited::connect(SRTSOCKET u, const sockaddr* srcname, const sockaddr* tarname, int namelen)
{
// Here both srcname and tarname must be specified
if (!srcname || !tarname || namelen < int(sizeof(sockaddr_in)))
{
LOGC(aclog.Error,
log << "connect(with source): invalid call: srcname=" << srcname << " tarname=" << tarname
<< " namelen=" << namelen);
throw CUDTException(MJ_NOTSUP, MN_INVAL);
}
sockaddr_any source_addr(srcname, namelen);
if (source_addr.len == 0)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
sockaddr_any target_addr(tarname, namelen);
if (target_addr.len == 0)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
#if ENABLE_BONDING
// Check affiliation of the socket. It's now allowed for it to be
// a group or socket. For a group, add automatically a socket to
// the group.
if (u & SRTGROUP_MASK)
{
GroupKeeper k(*this, u, ERH_THROW);
// Note: forced_isn is ignored when connecting a group.
// The group manages the ISN by itself ALWAYS, that is,
// it's generated anew for the very first socket, and then
// derived by all sockets in the group.
SRT_SOCKGROUPCONFIG gd[1] = {srt_prepare_endpoint(srcname, tarname, namelen)};
// When connecting to exactly one target, only this very target
// can be returned as a socket, so rewritten back array can be ignored.
return singleMemberConnect(k.group, gd);
}
#endif
CUDTSocket* s = locateSocket(u);
if (s == NULL)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
// For a single socket, just do bind, then connect
bind(s, source_addr);
return connectIn(s, target_addr, SRT_SEQNO_NONE);
}
int srt::CUDTUnited::connect(const SRTSOCKET u, const sockaddr* name, int namelen, int32_t forced_isn)
{
if (!name || namelen < int(sizeof(sockaddr_in)))
{
LOGC(aclog.Error, log << "connect(): invalid call: name=" << name << " namelen=" << namelen);
throw CUDTException(MJ_NOTSUP, MN_INVAL);
}
sockaddr_any target_addr(name, namelen);
if (target_addr.len == 0)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
#if ENABLE_BONDING
// Check affiliation of the socket. It's now allowed for it to be
// a group or socket. For a group, add automatically a socket to
// the group.
if (u & SRTGROUP_MASK)
{
GroupKeeper k(*this, u, ERH_THROW);
// Note: forced_isn is ignored when connecting a group.
// The group manages the ISN by itself ALWAYS, that is,
// it's generated anew for the very first socket, and then
// derived by all sockets in the group.
SRT_SOCKGROUPCONFIG gd[1] = {srt_prepare_endpoint(NULL, name, namelen)};
return singleMemberConnect(k.group, gd);
}
#endif
CUDTSocket* s = locateSocket(u);
if (!s)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
return connectIn(s, target_addr, forced_isn);
}
#if ENABLE_BONDING
int srt::CUDTUnited::singleMemberConnect(CUDTGroup* pg, SRT_SOCKGROUPCONFIG* gd)
{
int gstat = groupConnect(pg, gd, 1);
if (gstat == -1)
{
// We have only one element here, so refer to it.
// Sanity check
if (gd->errorcode == SRT_SUCCESS)
gd->errorcode = SRT_EINVPARAM;
CodeMajor mj = CodeMajor(gd->errorcode / 1000);
CodeMinor mn = CodeMinor(gd->errorcode % 1000);
return CUDT::APIError(mj, mn);
}
return gstat;
}
// [[using assert(pg->m_iBusy > 0)]]
int srt::CUDTUnited::groupConnect(CUDTGroup* pg, SRT_SOCKGROUPCONFIG* targets, int arraysize)
{
CUDTGroup& g = *pg;
SRT_ASSERT(g.m_iBusy > 0);
// Check and report errors on data brought in by srt_prepare_endpoint,
// as the latter function has no possibility to report errors.
for (int tii = 0; tii < arraysize; ++tii)
{
if (targets[tii].srcaddr.ss_family != targets[tii].peeraddr.ss_family)
{
LOGC(aclog.Error, log << "srt_connect/group: family differs on source and target address");
throw CUDTException(MJ_NOTSUP, MN_INVAL);
}
if (targets[tii].weight > CUDT::MAX_WEIGHT)
{
LOGC(aclog.Error, log << "srt_connect/group: weight value must be between 0 and " << (+CUDT::MAX_WEIGHT));
throw CUDTException(MJ_NOTSUP, MN_INVAL);
}
}
// If the open state switched to OPENED, the blocking mode
// must make it wait for connecting it. Doing connect when the
// group is already OPENED returns immediately, regardless if the
// connection is going to later succeed or fail (this will be
// known in the group state information).
bool block_new_opened = !g.m_bOpened && g.m_bSynRecving;
const bool was_empty = g.groupEmpty();
// In case the group was retried connection, clear first all epoll readiness.
const int ncleared = m_EPoll.update_events(g.id(), g.m_sPollID, SRT_EPOLL_ERR, false);
if (was_empty || ncleared)
{
HLOGC(aclog.Debug,
log << "srt_connect/group: clearing IN/OUT because was_empty=" << was_empty
<< " || ncleared=" << ncleared);
// IN/OUT only in case when the group is empty, otherwise it would
// clear out correct readiness resulting from earlier calls.
// This also should happen if ERR flag was set, as IN and OUT could be set, too.
m_EPoll.update_events(g.id(), g.m_sPollID, SRT_EPOLL_IN | SRT_EPOLL_OUT, false);
}
SRTSOCKET retval = -1;
int eid = -1;
int connect_modes = SRT_EPOLL_CONNECT | SRT_EPOLL_ERR;
if (block_new_opened)
{
// Create this eid only to block-wait for the first
// connection.
eid = srt_epoll_create();
}
// Use private map to avoid searching in the
// overall map.
map<SRTSOCKET, CUDTSocket*> spawned;
HLOGC(aclog.Debug,
log << "groupConnect: will connect " << arraysize << " links and "
<< (block_new_opened ? "BLOCK until any is ready" : "leave the process in background"));
for (int tii = 0; tii < arraysize; ++tii)
{
sockaddr_any target_addr(targets[tii].peeraddr);
sockaddr_any source_addr(targets[tii].srcaddr);
SRTSOCKET& sid_rloc = targets[tii].id;
int& erc_rloc = targets[tii].errorcode;
erc_rloc = SRT_SUCCESS; // preinitialized
HLOGC(aclog.Debug, log << "groupConnect: taking on " << sockaddr_any(targets[tii].peeraddr).str());
CUDTSocket* ns = 0;
// NOTE: After calling newSocket, the socket is mapped into m_Sockets.
// It must be MANUALLY removed from this list in case we need it deleted.
SRTSOCKET sid = newSocket(&ns);
if (pg->m_cbConnectHook)
{
// Derive the connect hook by the socket, if set on the group
ns->core().m_cbConnectHook = pg->m_cbConnectHook;
}
SRT_SocketOptionObject* config = targets[tii].config;
// XXX Support non-blocking mode:
// If the group has nonblocking set for connect (SNDSYN),
// then it must set so on the socket. Then, the connection
// process is asynchronous. The socket appears first as
// GST_PENDING state, and only after the socket becomes
// connected does its status in the group turn into GST_IDLE.
// Set all options that were requested by the options set on a group
// prior to connecting.
string error_reason SRT_ATR_UNUSED;
try
{
for (size_t i = 0; i < g.m_config.size(); ++i)
{
HLOGC(aclog.Debug, log << "groupConnect: OPTION @" << sid << " #" << g.m_config[i].so);
error_reason = "group-derived option: #" + Sprint(g.m_config[i].so);
ns->core().setOpt(g.m_config[i].so, &g.m_config[i].value[0], (int)g.m_config[i].value.size());
}
// Do not try to set a user option if failed already.
if (config)
{
error_reason = "user option";
ns->core().applyMemberConfigObject(*config);
}
error_reason = "bound address";
// We got it. Bind the socket, if the source address was set
if (!source_addr.empty())
bind(ns, source_addr);
}
catch (CUDTException& e)
{
// Just notify the problem, but the loop must continue.
// Set the original error as reported.
targets[tii].errorcode = e.getErrorCode();
LOGC(aclog.Error, log << "srt_connect_group: failed to set " << error_reason);
}
catch (...)
{
// Set the general EINVPARAM - this error should never happen
LOGC(aclog.Error, log << "IPE: CUDT::setOpt reported unknown exception");
targets[tii].errorcode = SRT_EINVPARAM;
}
// Add socket to the group.
// Do it after setting all stored options, as some of them may
// influence some group data.
srt::groups::SocketData data = srt::groups::prepareSocketData(ns);
if (targets[tii].token != -1)
{
// Reuse the token, if specified by the caller
data.token = targets[tii].token;
}
else
{
// Otherwise generate and write back the token
data.token = CUDTGroup::genToken();
targets[tii].token = data.token;
}
{
ScopedLock cs(m_GlobControlLock);
if (m_Sockets.count(sid) == 0)
{
HLOGC(aclog.Debug, log << "srt_connect_group: socket @" << sid << " deleted in process");
// Someone deleted the socket in the meantime?
// Unlikely, but possible in theory.
// Don't delete anyhting - it's alreay done.
continue;
}
// There's nothing wrong with preparing the data first
// even if this happens for nothing. But now, under the lock
// and after checking that the socket still exists, check now
// if this succeeded, and then also if the group is still usable.
// The group will surely exist because it's set busy, until the
// end of this function. But it might be simultaneously requested closed.
bool proceed = true;
if (targets[tii].errorcode != SRT_SUCCESS)
{
HLOGC(aclog.Debug,
log << "srt_connect_group: not processing @" << sid << " due to error in setting options");
proceed = false;
}
if (g.m_bClosing)
{
HLOGC(aclog.Debug,
log << "srt_connect_group: not processing @" << sid << " due to CLOSED GROUP $" << g.m_GroupID);
proceed = false;
}
if (proceed)
{
CUDTGroup::SocketData* f = g.add(data);
ns->m_GroupMemberData = f;
ns->m_GroupOf = &g;
f->weight = targets[tii].weight;
HLOGC(aclog.Debug, log << "srt_connect_group: socket @" << sid << " added to group $" << g.m_GroupID);
}
else
{
targets[tii].id = CUDT::INVALID_SOCK;
delete ns;
m_Sockets.erase(sid);
// If failed to set options, then do not continue
// neither with binding, nor with connecting.
continue;
}
}
// XXX This should be reenabled later, this should
// be probably still in use to exchange information about
// packets asymmetrically lost. But for no other purpose.
/*
ns->core().m_cbPacketArrival.set(ns->m_pUDT, &CUDT::groupPacketArrival);
*/
int isn = g.currentSchedSequence();
// Set it the groupconnect option, as all in-group sockets should have.
ns->core().m_config.iGroupConnect = 1;
// Every group member will have always nonblocking
// (this implies also non-blocking connect/accept).
// The group facility functions will block when necessary
// using epoll_wait.
ns->core().m_config.bSynRecving = false;
ns->core().m_config.bSynSending = false;
HLOGC(aclog.Debug, log << "groupConnect: NOTIFIED AS PENDING @" << sid << " both read and write");
// If this socket is not to block the current connect process,
// it may still be needed for the further check if the redundant
// connection succeeded or failed and whether the new socket is
// ready to use or needs to be closed.
epoll_add_usock_INTERNAL(g.m_SndEID, ns, &connect_modes);
epoll_add_usock_INTERNAL(g.m_RcvEID, ns, &connect_modes);
// Adding a socket on which we need to block to BOTH these tracking EIDs
// and the blocker EID. We'll simply remove from them later all sockets that
// got connected state or were broken.
if (block_new_opened)
{
HLOGC(aclog.Debug, log << "groupConnect: WILL BLOCK on @" << sid << " until connected");
epoll_add_usock_INTERNAL(eid, ns, &connect_modes);
}
// And connect
try
{
HLOGC(aclog.Debug, log << "groupConnect: connecting a new socket with ISN=" << isn);
connectIn(ns, target_addr, isn);
}
catch (const CUDTException& e)
{
LOGC(aclog.Error,
log << "groupConnect: socket @" << sid << " in group " << pg->id() << " failed to connect");
// We know it does belong to a group.
// Remove it first because this involves a mutex, and we want
// to avoid locking more than one mutex at a time.
erc_rloc = e.getErrorCode();
targets[tii].errorcode = e.getErrorCode();
targets[tii].id = CUDT::INVALID_SOCK;
ScopedLock cl(m_GlobControlLock);
ns->removeFromGroup(false);
m_Sockets.erase(ns->m_SocketID);
// Intercept to delete the socket on failure.
delete ns;
continue;
}
catch (...)
{
LOGC(aclog.Fatal, log << "groupConnect: IPE: UNKNOWN EXCEPTION from connectIn");
targets[tii].errorcode = SRT_ESYSOBJ;
targets[tii].id = CUDT::INVALID_SOCK;
ScopedLock cl(m_GlobControlLock);
ns->removeFromGroup(false);
m_Sockets.erase(ns->m_SocketID);
// Intercept to delete the socket on failure.
delete ns;
// Do not use original exception, it may crash off a C API.
throw CUDTException(MJ_SYSTEMRES, MN_OBJECT);
}
SRT_SOCKSTATUS st;
{
ScopedLock grd(ns->m_ControlLock);
st = ns->getStatus();
}
{
// NOTE: Not applying m_GlobControlLock because the group is now
// set busy, so it won't be deleted, even if it was requested to be closed.
ScopedLock grd(g.m_GroupLock);
if (!ns->m_GroupOf)
{
// The situation could get changed between the unlock and lock of m_GroupLock.
// This must be checked again.
// If a socket has been removed from group, it means that some other thread is
// currently trying to delete the socket. Therefore it doesn't have, and even shouldn't,
// be deleted here. Just exit with error report.
LOGC(aclog.Error, log << "groupConnect: self-created member socket deleted during process, SKIPPING.");
// Do not report the error from here, just ignore this socket.
continue;
}
// If m_GroupOf is not NULL, the m_IncludedIter is still valid.
CUDTGroup::SocketData* f = ns->m_GroupMemberData;
// Now under a group lock, we need to make sure the group isn't being closed
// in order not to add a socket to a dead group.
if (g.m_bClosing)
{
LOGC(aclog.Error, log << "groupConnect: group deleted while connecting; breaking the process");
// Set the status as pending so that the socket is taken care of later.
// Note that all earlier sockets that were processed in this loop were either
// set BROKEN or PENDING.
f->sndstate = SRT_GST_PENDING;
f->rcvstate = SRT_GST_PENDING;
retval = -1;
break;
}
HLOGC(aclog.Debug,
log << "groupConnect: @" << sid << " connection successful, setting group OPEN (was "
<< (g.m_bOpened ? "ALREADY" : "NOT") << "), will " << (block_new_opened ? "" : "NOT ")
<< "block the connect call, status:" << SockStatusStr(st));
// XXX OPEN OR CONNECTED?
// BLOCK IF NOT OPEN OR BLOCK IF NOT CONNECTED?
//
// What happens to blocking when there are 2 connections
// pending, about to be broken, and srt_connect() is called again?
// SHOULD BLOCK the latter, even though is OPEN.
// Or, OPEN should be removed from here and srt_connect(_group)
// should block always if the group doesn't have neither 1 conencted link
g.m_bOpened = true;
g.m_stats.tsLastSampleTime = steady_clock::now();
f->laststatus = st;
// Check the socket status and update it.
// Turn the group state of the socket to IDLE only if
// connection is established or in progress
f->agent = source_addr;
f->peer = target_addr;
if (st >= SRTS_BROKEN)
{
f->sndstate = SRT_GST_BROKEN;
f->rcvstate = SRT_GST_BROKEN;
epoll_remove_socket_INTERNAL(g.m_SndEID, ns);
epoll_remove_socket_INTERNAL(g.m_RcvEID, ns);
}
else
{
f->sndstate = SRT_GST_PENDING;
f->rcvstate = SRT_GST_PENDING;
spawned[sid] = ns;
sid_rloc = sid;
erc_rloc = 0;
retval = sid;
}
}
}
if (retval == -1)
{
HLOGC(aclog.Debug, log << "groupConnect: none succeeded as background-spawn, exit with error");
block_new_opened = false; // Avoid executing further while loop
}
vector<SRTSOCKET> broken;
while (block_new_opened)
{
if (spawned.empty())
{
// All were removed due to errors.
retval = -1;
break;
}
HLOGC(aclog.Debug, log << "groupConnect: first connection, applying EPOLL WAITING.");
int len = (int)spawned.size();
vector<SRTSOCKET> ready(spawned.size());
const int estat = srt_epoll_wait(eid,
NULL,
NULL, // IN/ACCEPT
&ready[0],
&len, // OUT/CONNECT
-1, // indefinitely (FIXME Check if it needs to REGARD CONNECTION TIMEOUT!)
NULL,
NULL,
NULL,
NULL);
// Sanity check. Shouldn't happen if subs are in sync with spawned.
if (estat == -1)
{
#if ENABLE_LOGGING
CUDTException& x = CUDT::getlasterror();
if (x.getErrorCode() != SRT_EPOLLEMPTY)
{
LOGC(aclog.Error,
log << "groupConnect: srt_epoll_wait failed not because empty, unexpected IPE:"
<< x.getErrorMessage());
}
#endif
HLOGC(aclog.Debug, log << "groupConnect: srt_epoll_wait failed - breaking the wait loop");
retval = -1;
break;
}
// At the moment when you are going to work with real sockets,
// lock the groups so that no one messes up with something here
// in the meantime.
ScopedLock lock(*g.exp_groupLock());
// NOTE: UNDER m_GroupLock, NO API FUNCTION CALLS DARE TO HAPPEN BELOW!
// Check first if a socket wasn't closed in the meantime. It will be
// automatically removed from all EIDs, but there's no sense in keeping
// them in 'spawned' map.
for (map<SRTSOCKET, CUDTSocket*>::iterator y = spawned.begin(); y != spawned.end(); ++y)
{
SRTSOCKET sid = y->first;
if (y->second->getStatus() >= SRTS_BROKEN)
{
HLOGC(aclog.Debug,
log << "groupConnect: Socket @" << sid
<< " got BROKEN in the meantine during the check, remove from candidates");
// Remove from spawned and try again
broken.push_back(sid);
epoll_remove_socket_INTERNAL(eid, y->second);
epoll_remove_socket_INTERNAL(g.m_SndEID, y->second);
epoll_remove_socket_INTERNAL(g.m_RcvEID, y->second);
}
}
// Remove them outside the loop because this can't be done
// while iterating over the same container.
for (size_t i = 0; i < broken.size(); ++i)
spawned.erase(broken[i]);
// Check the sockets if they were reported due
// to have connected or due to have failed.
// Distill successful ones. If distilled nothing, return -1.
// If not all sockets were reported in this instance, repeat
// the call until you get information about all of them.
for (int i = 0; i < len; ++i)
{
map<SRTSOCKET, CUDTSocket*>::iterator x = spawned.find(ready[i]);
if (x == spawned.end())
{
// Might be removed above - ignore it.
continue;
}
SRTSOCKET sid = x->first;
CUDTSocket* s = x->second;
// Check status. If failed, remove from spawned
// and try again.
SRT_SOCKSTATUS st = s->getStatus();
if (st >= SRTS_BROKEN)
{
HLOGC(aclog.Debug,
log << "groupConnect: Socket @" << sid
<< " got BROKEN during background connect, remove & TRY AGAIN");
// Remove from spawned and try again
if (spawned.erase(sid))
broken.push_back(sid);
epoll_remove_socket_INTERNAL(eid, s);
epoll_remove_socket_INTERNAL(g.m_SndEID, s);
epoll_remove_socket_INTERNAL(g.m_RcvEID, s);
continue;
}
if (st == SRTS_CONNECTED)
{
HLOGC(aclog.Debug,
log << "groupConnect: Socket @" << sid << " got CONNECTED as first in the group - reporting");
retval = sid;
g.m_bConnected = true;
block_new_opened = false; // Interrupt also rolling epoll (outer loop)
// Remove this socket from SND EID because it doesn't need to
// be connection-tracked anymore. Don't remove from the RCV EID
// however because RCV procedure relies on epoll also for reading
// and when found this socket connected it will "upgrade" it to
// read-ready tracking only.
epoll_remove_socket_INTERNAL(g.m_SndEID, s);
break;
}
// Spurious?
HLOGC(aclog.Debug,
log << "groupConnect: Socket @" << sid << " got spurious wakeup in " << SockStatusStr(st)
<< " TRY AGAIN");
}
// END of m_GroupLock CS - you can safely use API functions now.
}
// Finished, delete epoll.
if (eid != -1)
{
HLOGC(aclog.Debug, log << "connect FIRST IN THE GROUP finished, removing E" << eid);
srt_epoll_release(eid);
}
for (vector<SRTSOCKET>::iterator b = broken.begin(); b != broken.end(); ++b)
{
CUDTSocket* s = locateSocket(*b, ERH_RETURN);
if (!s)
continue;
// This will also automatically remove it from the group and all eids
close(s);
}
// There's no possibility to report a problem on every connection
// separately in case when every single connection has failed. What
// is more interesting, it's only a matter of luck that all connections
// fail at exactly the same time. OTOH if all are to fail, this
// function will still be polling sockets to determine the last man
// standing. Each one could, however, break by a different reason,
// for example, one by timeout, another by wrong passphrase. Check
// the `errorcode` field to determine the reaon for particular link.
if (retval == -1)
throw CUDTException(MJ_CONNECTION, MN_CONNLOST, 0);
return retval;
}
#endif
int srt::CUDTUnited::connectIn(CUDTSocket* s, const sockaddr_any& target_addr, int32_t forced_isn)
{
ScopedLock cg(s->m_ControlLock);
// a socket can "connect" only if it is in the following states:
// - OPENED: assume the socket binding parameters are configured
// - INIT: configure binding parameters here
// - any other (meaning, already connected): report error
if (s->m_Status == SRTS_INIT)
{
if (s->core().m_config.bRendezvous)
throw CUDTException(MJ_NOTSUP, MN_ISRENDUNBOUND, 0);
// If bind() was done first on this socket, then the
// socket will not perform this step. This actually does the
// same thing as bind() does, just with empty address so that
// the binding parameters are autoselected.
s->core().open();
sockaddr_any autoselect_sa(target_addr.family());
// This will create such a sockaddr_any that
// will return true from empty().
updateMux(s, autoselect_sa); // <<---- updateMux
// -> C(Snd|Rcv)Queue::init
// -> pthread_create(...C(Snd|Rcv)Queue::worker...)
s->m_Status = SRTS_OPENED;
}
else
{
if (s->m_Status != SRTS_OPENED)
throw CUDTException(MJ_NOTSUP, MN_ISCONNECTED, 0);
// status = SRTS_OPENED, so family should be known already.
if (target_addr.family() != s->m_SelfAddr.family())
{
LOGP(cnlog.Error, "srt_connect: socket is bound to a different family than target address");
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
}
}
// connect_complete() may be called before connect() returns.
// So we need to update the status before connect() is called,
// otherwise the status may be overwritten with wrong value
// (CONNECTED vs. CONNECTING).
s->m_Status = SRTS_CONNECTING;
/*
* In blocking mode, connect can block for up to 30 seconds for
* rendez-vous mode. Holding the s->m_ControlLock prevent close
* from cancelling the connect
*/
try
{
// record peer address
s->m_PeerAddr = target_addr;
s->core().startConnect(target_addr, forced_isn);
}
catch (const CUDTException&) // Interceptor, just to change the state.
{
s->m_Status = SRTS_OPENED;
throw;
}
return 0;
}
int srt::CUDTUnited::close(const SRTSOCKET u)
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
GroupKeeper k(*this, u, ERH_THROW);
k.group->close();
deleteGroup(k.group);
return 0;
}
#endif
#if ENABLE_HEAVY_LOGGING
// Wrapping the log into a destructor so that it
// is printed AFTER the destructor of SocketKeeper.
struct ScopedExitLog
{
const CUDTSocket* const ps;
ScopedExitLog(const CUDTSocket* p): ps(p){}
~ScopedExitLog()
{
if (ps) // Could be not acquired by SocketKeeper, occasionally
{
HLOGC(smlog.Debug, log << "CUDTUnited::close/end: @" << ps->m_SocketID << " busy=" << ps->isStillBusy());
}
}
};
#endif
SocketKeeper k(*this, u, ERH_THROW);
IF_HEAVY_LOGGING(ScopedExitLog slog(k.socket));
HLOGC(smlog.Debug, log << "CUDTUnited::close/begin: @" << u << " busy=" << k.socket->isStillBusy());
return close(k.socket);
}
#if ENABLE_BONDING
void srt::CUDTUnited::deleteGroup(CUDTGroup* g)
{
using srt_logging::gmlog;
srt::sync::ScopedLock cg(m_GlobControlLock);
return deleteGroup_LOCKED(g);
}
// [[using locked(m_GlobControlLock)]]
void srt::CUDTUnited::deleteGroup_LOCKED(CUDTGroup* g)
{
SRT_ASSERT(g->groupEmpty());
// After that the group is no longer findable by GroupKeeper
m_Groups.erase(g->m_GroupID);
m_ClosedGroups[g->m_GroupID] = g;
// Paranoid check: since the group is in m_ClosedGroups
// it may potentially be deleted. Make sure no socket points
// to it. Actually all sockets should have been already removed
// from the group container, so if any does, it's invalid.
for (sockets_t::iterator i = m_Sockets.begin(); i != m_Sockets.end(); ++i)
{
CUDTSocket* s = i->second;
if (s->m_GroupOf == g)
{
HLOGC(smlog.Debug, log << "deleteGroup: IPE: existing @" << s->m_SocketID << " points to a dead group!");
s->m_GroupOf = NULL;
s->m_GroupMemberData = NULL;
}
}
// Just in case, do it in closed sockets, too, although this should be
// always done before moving to it.
for (sockets_t::iterator i = m_ClosedSockets.begin(); i != m_ClosedSockets.end(); ++i)
{
CUDTSocket* s = i->second;
if (s->m_GroupOf == g)
{
HLOGC(smlog.Debug, log << "deleteGroup: IPE: closed @" << s->m_SocketID << " points to a dead group!");
s->m_GroupOf = NULL;
s->m_GroupMemberData = NULL;
}
}
}
#endif
int srt::CUDTUnited::close(CUDTSocket* s)
{
HLOGC(smlog.Debug, log << s->core().CONID() << "CLOSE. Acquiring control lock");
ScopedLock socket_cg(s->m_ControlLock);
HLOGC(smlog.Debug, log << s->core().CONID() << "CLOSING (removing from listening, closing CUDT)");
const bool synch_close_snd = s->core().m_config.bSynSending;
SRTSOCKET u = s->m_SocketID;
if (s->m_Status == SRTS_LISTENING)
{
if (s->core().m_bBroken)
return 0;
s->m_tsClosureTimeStamp = steady_clock::now();
s->core().m_bBroken = true;
// Change towards original UDT:
// Leave all the closing activities for garbageCollect to happen,
// however remove the listener from the RcvQueue IMMEDIATELY.
// Even though garbageCollect would eventually remove the listener
// as well, there would be some time interval between now and the
// moment when it's done, and during this time the application will
// be unable to bind to this port that the about-to-delete listener
// is currently occupying (due to blocked slot in the RcvQueue).
HLOGC(smlog.Debug, log << s->core().CONID() << "CLOSING (removing listener immediately)");
s->core().notListening();
s->m_Status = SRTS_CLOSING;
// broadcast all "accept" waiting
CSync::lock_notify_all(s->m_AcceptCond, s->m_AcceptLock);
}
else
{
s->m_Status = SRTS_CLOSING;
// Note: this call may be done on a socket that hasn't finished
// sending all packets scheduled for sending, which means, this call
// may block INDEFINITELY. As long as it's acceptable to block the
// call to srt_close(), and all functions in all threads where this
// very socket is used, this shall not block the central database.
s->core().closeInternal();
// synchronize with garbage collection.
HLOGC(smlog.Debug,
log << "@" << u << "U::close done. GLOBAL CLOSE: " << s->core().CONID()
<< "Acquiring GLOBAL control lock");
ScopedLock manager_cg(m_GlobControlLock);
// since "s" is located before m_GlobControlLock, locate it again in case
// it became invalid
// XXX This is very weird; if we state that the CUDTSocket object
// could not be deleted between locks, then definitely it couldn't
// also change the pointer value. There's no other reason for getting
// this iterator but to obtain the 's' pointer, which is impossible to
// be different than previous 's' (m_Sockets is a map that stores pointers
// transparently). This iterator isn't even later used to delete the socket
// from the container, though it would be more efficient.
// FURTHER RESEARCH REQUIRED.
sockets_t::iterator i = m_Sockets.find(u);
if ((i == m_Sockets.end()) || (i->second->m_Status == SRTS_CLOSED))
{
HLOGC(smlog.Debug, log << "@" << u << "U::close: NOT AN ACTIVE SOCKET, returning.");
return 0;
}
s = i->second;
s->setClosed();
#if ENABLE_BONDING
if (s->m_GroupOf)
{
HLOGC(smlog.Debug,
log << "@" << s->m_SocketID << " IS MEMBER OF $" << s->m_GroupOf->id() << " - REMOVING FROM GROUP");
s->removeFromGroup(true);
}
#endif
m_Sockets.erase(s->m_SocketID);
m_ClosedSockets[s->m_SocketID] = s;
HLOGC(smlog.Debug, log << "@" << u << "U::close: Socket MOVED TO CLOSED for collecting later.");
CGlobEvent::triggerEvent();
}
HLOGC(smlog.Debug, log << "@" << u << ": GLOBAL: CLOSING DONE");
// Check if the ID is still in closed sockets before you access it
// (the last triggerEvent could have deleted it).
if (synch_close_snd)
{
#if SRT_ENABLE_CLOSE_SYNCH
HLOGC(smlog.Debug, log << "@" << u << " GLOBAL CLOSING: sync-waiting for releasing sender resources...");
for (;;)
{
CSndBuffer* sb = s->core().m_pSndBuffer;
// Disconnected from buffer - nothing more to check.
if (!sb)
{
HLOGC(smlog.Debug,
log << "@" << u << " GLOBAL CLOSING: sending buffer disconnected. Allowed to close.");
break;
}
// Sender buffer empty
if (sb->getCurrBufSize() == 0)
{
HLOGC(smlog.Debug, log << "@" << u << " GLOBAL CLOSING: sending buffer depleted. Allowed to close.");
break;
}
// Ok, now you are keeping GC thread hands off the internal data.
// You can check then if it has already deleted the socket or not.
// The socket is either in m_ClosedSockets or is already gone.
// Done the other way, but still done. You can stop waiting.
bool isgone = false;
{
ScopedLock manager_cg(m_GlobControlLock);
isgone = m_ClosedSockets.count(u) == 0;
}
if (!isgone)
{
isgone = !s->core().m_bOpened;
}
if (isgone)
{
HLOGC(smlog.Debug,
log << "@" << u << " GLOBAL CLOSING: ... gone in the meantime, whatever. Exiting close().");
break;
}
HLOGC(smlog.Debug, log << "@" << u << " GLOBAL CLOSING: ... still waiting for any update.");
// How to handle a possible error here?
CGlobEvent::waitForEvent();
// Continue waiting in case when an event happened or 1s waiting time passed for checkpoint.
}
#endif
}
/*
This code is PUT ASIDE for now.
Most likely this will be never required.
It had to hold the closing activity until the time when the receiver buffer is depleted.
However the closing of the socket should only happen when the receiver has received
an information about that the reading is no longer possible (error report from recv/recvfile).
When this happens, the receiver buffer is definitely depleted already and there's no need to check
anything.
Should there appear any other conditions in future under which the closing process should be
delayed until the receiver buffer is empty, this code can be filled here.
if ( synch_close_rcv )
{
...
}
*/
CSync::notify_one_relaxed(m_GCStopCond);
return 0;
}
void srt::CUDTUnited::getpeername(const SRTSOCKET u, sockaddr* pw_name, int* pw_namelen)
{
if (!pw_name || !pw_namelen)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
if (getStatus(u) != SRTS_CONNECTED)
throw CUDTException(MJ_CONNECTION, MN_NOCONN, 0);
CUDTSocket* s = locateSocket(u);
if (!s)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
if (!s->core().m_bConnected || s->core().m_bBroken)
throw CUDTException(MJ_CONNECTION, MN_NOCONN, 0);
const int len = s->m_PeerAddr.size();
if (*pw_namelen < len)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
memcpy((pw_name), &s->m_PeerAddr.sa, len);
*pw_namelen = len;
}
void srt::CUDTUnited::getsockname(const SRTSOCKET u, sockaddr* pw_name, int* pw_namelen)
{
if (!pw_name || !pw_namelen)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
CUDTSocket* s = locateSocket(u);
if (!s)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
if (s->core().m_bBroken)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
if (s->m_Status == SRTS_INIT)
throw CUDTException(MJ_CONNECTION, MN_NOCONN, 0);
const int len = s->m_SelfAddr.size();
if (*pw_namelen < len)
throw CUDTException(MJ_NOTSUP, MN_INVAL, 0);
memcpy((pw_name), &s->m_SelfAddr.sa, len);
*pw_namelen = len;
}
int srt::CUDTUnited::select(UDT::UDSET* readfds, UDT::UDSET* writefds, UDT::UDSET* exceptfds, const timeval* timeout)
{
const steady_clock::time_point entertime = steady_clock::now();
const int64_t timeo_us = timeout ? static_cast<int64_t>(timeout->tv_sec) * 1000000 + timeout->tv_usec : -1;
const steady_clock::duration timeo(microseconds_from(timeo_us));
// initialize results
int count = 0;
set<SRTSOCKET> rs, ws, es;
// retrieve related UDT sockets
vector<CUDTSocket*> ru, wu, eu;
CUDTSocket* s;
if (readfds)
for (set<SRTSOCKET>::iterator i1 = readfds->begin(); i1 != readfds->end(); ++i1)
{
if (getStatus(*i1) == SRTS_BROKEN)
{
rs.insert(*i1);
++count;
}
else if (!(s = locateSocket(*i1)))
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
else
ru.push_back(s);
}
if (writefds)
for (set<SRTSOCKET>::iterator i2 = writefds->begin(); i2 != writefds->end(); ++i2)
{
if (getStatus(*i2) == SRTS_BROKEN)
{
ws.insert(*i2);
++count;
}
else if (!(s = locateSocket(*i2)))
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
else
wu.push_back(s);
}
if (exceptfds)
for (set<SRTSOCKET>::iterator i3 = exceptfds->begin(); i3 != exceptfds->end(); ++i3)
{
if (getStatus(*i3) == SRTS_BROKEN)
{
es.insert(*i3);
++count;
}
else if (!(s = locateSocket(*i3)))
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
else
eu.push_back(s);
}
do
{
// query read sockets
for (vector<CUDTSocket*>::iterator j1 = ru.begin(); j1 != ru.end(); ++j1)
{
s = *j1;
if (s->readReady() || s->m_Status == SRTS_CLOSED)
{
rs.insert(s->m_SocketID);
++count;
}
}
// query write sockets
for (vector<CUDTSocket*>::iterator j2 = wu.begin(); j2 != wu.end(); ++j2)
{
s = *j2;
if (s->writeReady() || s->m_Status == SRTS_CLOSED)
{
ws.insert(s->m_SocketID);
++count;
}
}
// query exceptions on sockets
for (vector<CUDTSocket*>::iterator j3 = eu.begin(); j3 != eu.end(); ++j3)
{
// check connection request status, not supported now
}
if (0 < count)
break;
CGlobEvent::waitForEvent();
} while (timeo > steady_clock::now() - entertime);
if (readfds)
*readfds = rs;
if (writefds)
*writefds = ws;
if (exceptfds)
*exceptfds = es;
return count;
}
int srt::CUDTUnited::selectEx(const vector<SRTSOCKET>& fds,
vector<SRTSOCKET>* readfds,
vector<SRTSOCKET>* writefds,
vector<SRTSOCKET>* exceptfds,
int64_t msTimeOut)
{
const steady_clock::time_point entertime = steady_clock::now();
const int64_t timeo_us = msTimeOut >= 0 ? msTimeOut * 1000 : -1;
const steady_clock::duration timeo(microseconds_from(timeo_us));
// initialize results
int count = 0;
if (readfds)
readfds->clear();
if (writefds)
writefds->clear();
if (exceptfds)
exceptfds->clear();
do
{
for (vector<SRTSOCKET>::const_iterator i = fds.begin(); i != fds.end(); ++i)
{
CUDTSocket* s = locateSocket(*i);
if ((!s) || s->core().m_bBroken || (s->m_Status == SRTS_CLOSED))
{
if (exceptfds)
{
exceptfds->push_back(*i);
++count;
}
continue;
}
if (readfds)
{
if ((s->core().m_bConnected && s->core().m_pRcvBuffer->isRcvDataReady()) ||
(s->core().m_bListening && (s->m_QueuedSockets.size() > 0)))
{
readfds->push_back(s->m_SocketID);
++count;
}
}
if (writefds)
{
if (s->core().m_bConnected &&
(s->core().m_pSndBuffer->getCurrBufSize() < s->core().m_config.iSndBufSize))
{
writefds->push_back(s->m_SocketID);
++count;
}
}
}
if (count > 0)
break;
CGlobEvent::waitForEvent();
} while (timeo > steady_clock::now() - entertime);
return count;
}
int srt::CUDTUnited::epoll_create()
{
return m_EPoll.create();
}
int srt::CUDTUnited::epoll_clear_usocks(int eid)
{
return m_EPoll.clear_usocks(eid);
}
int srt::CUDTUnited::epoll_add_usock(const int eid, const SRTSOCKET u, const int* events)
{
int ret = -1;
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
GroupKeeper k(*this, u, ERH_THROW);
ret = m_EPoll.update_usock(eid, u, events);
k.group->addEPoll(eid);
return 0;
}
#endif
CUDTSocket* s = locateSocket(u);
if (s)
{
ret = epoll_add_usock_INTERNAL(eid, s, events);
}
else
{
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL);
}
return ret;
}
// NOTE: WILL LOCK (serially):
// - CEPoll::m_EPollLock
// - CUDT::m_RecvLock
int srt::CUDTUnited::epoll_add_usock_INTERNAL(const int eid, CUDTSocket* s, const int* events)
{
int ret = m_EPoll.update_usock(eid, s->m_SocketID, events);
s->core().addEPoll(eid);
return ret;
}
int srt::CUDTUnited::epoll_add_ssock(const int eid, const SYSSOCKET s, const int* events)
{
return m_EPoll.add_ssock(eid, s, events);
}
int srt::CUDTUnited::epoll_update_ssock(const int eid, const SYSSOCKET s, const int* events)
{
return m_EPoll.update_ssock(eid, s, events);
}
template <class EntityType>
int srt::CUDTUnited::epoll_remove_entity(const int eid, EntityType* ent)
{
// XXX Not sure if this is anyhow necessary because setting readiness
// to false doesn't actually trigger any action. Further research needed.
HLOGC(ealog.Debug, log << "epoll_remove_usock: CLEARING readiness on E" << eid << " of @" << ent->id());
ent->removeEPollEvents(eid);
// First remove the EID from the subscribed in the socket so that
// a possible call to update_events:
// - if happens before this call, can find the epoll bit update possible
// - if happens after this call, will not strike this EID
HLOGC(ealog.Debug, log << "epoll_remove_usock: REMOVING E" << eid << " from back-subscirbers in @" << ent->id());
ent->removeEPollID(eid);
HLOGC(ealog.Debug, log << "epoll_remove_usock: CLEARING subscription on E" << eid << " of @" << ent->id());
int no_events = 0;
int ret = m_EPoll.update_usock(eid, ent->id(), &no_events);
return ret;
}
// Needed internal access!
int srt::CUDTUnited::epoll_remove_socket_INTERNAL(const int eid, CUDTSocket* s)
{
return epoll_remove_entity(eid, &s->core());
}
#if ENABLE_BONDING
int srt::CUDTUnited::epoll_remove_group_INTERNAL(const int eid, CUDTGroup* g)
{
return epoll_remove_entity(eid, g);
}
#endif
int srt::CUDTUnited::epoll_remove_usock(const int eid, const SRTSOCKET u)
{
CUDTSocket* s = 0;
#if ENABLE_BONDING
CUDTGroup* g = 0;
if (u & SRTGROUP_MASK)
{
GroupKeeper k(*this, u, ERH_THROW);
g = k.group;
return epoll_remove_entity(eid, g);
}
else
#endif
{
s = locateSocket(u);
if (s)
return epoll_remove_entity(eid, &s->core());
}
LOGC(ealog.Error,
log << "remove_usock: @" << u << " not found as either socket or group. Removing only from epoll system.");
int no_events = 0;
return m_EPoll.update_usock(eid, u, &no_events);
}
int srt::CUDTUnited::epoll_remove_ssock(const int eid, const SYSSOCKET s)
{
return m_EPoll.remove_ssock(eid, s);
}
int srt::CUDTUnited::epoll_uwait(const int eid, SRT_EPOLL_EVENT* fdsSet, int fdsSize, int64_t msTimeOut)
{
return m_EPoll.uwait(eid, fdsSet, fdsSize, msTimeOut);
}
int32_t srt::CUDTUnited::epoll_set(int eid, int32_t flags)
{
return m_EPoll.setflags(eid, flags);
}
int srt::CUDTUnited::epoll_release(const int eid)
{
return m_EPoll.release(eid);
}
srt::CUDTSocket* srt::CUDTUnited::locateSocket(const SRTSOCKET u, ErrorHandling erh)
{
ScopedLock cg(m_GlobControlLock);
CUDTSocket* s = locateSocket_LOCKED(u);
if (!s)
{
if (erh == ERH_RETURN)
return NULL;
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
}
return s;
}
// [[using locked(m_GlobControlLock)]];
srt::CUDTSocket* srt::CUDTUnited::locateSocket_LOCKED(SRTSOCKET u)
{
sockets_t::iterator i = m_Sockets.find(u);
if ((i == m_Sockets.end()) || (i->second->m_Status == SRTS_CLOSED))
{
return NULL;
}
return i->second;
}
#if ENABLE_BONDING
srt::CUDTGroup* srt::CUDTUnited::locateAcquireGroup(SRTSOCKET u, ErrorHandling erh)
{
ScopedLock cg(m_GlobControlLock);
const groups_t::iterator i = m_Groups.find(u);
if (i == m_Groups.end())
{
if (erh == ERH_THROW)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
return NULL;
}
ScopedLock cgroup(*i->second->exp_groupLock());
i->second->apiAcquire();
return i->second;
}
srt::CUDTGroup* srt::CUDTUnited::acquireSocketsGroup(CUDTSocket* s)
{
ScopedLock cg(m_GlobControlLock);
CUDTGroup* g = s->m_GroupOf;
if (!g)
return NULL;
// With m_GlobControlLock locked, we are sure the group
// still exists, if it wasn't removed from this socket.
g->apiAcquire();
return g;
}
#endif
srt::CUDTSocket* srt::CUDTUnited::locateAcquireSocket(SRTSOCKET u, ErrorHandling erh)
{
ScopedLock cg(m_GlobControlLock);
CUDTSocket* s = locateSocket_LOCKED(u);
if (!s)
{
if (erh == ERH_THROW)
throw CUDTException(MJ_NOTSUP, MN_SIDINVAL, 0);
return NULL;
}
s->apiAcquire();
return s;
}
bool srt::CUDTUnited::acquireSocket(CUDTSocket* s)
{
// Note that before using this function you must be certain
// that the socket isn't broken already and it still has at least
// one more GC cycle to live. In other words, you must be certain
// that this pointer passed here isn't dangling and was obtained
// directly from m_Sockets, or even better, has been acquired
// by some other functionality already, which is only about to
// be released earlier than you need.
ScopedLock cg(m_GlobControlLock);
s->apiAcquire();
// Keep the lock so that no one changes anything in the meantime.
// If the socket m_Status == SRTS_CLOSED (set by setClosed()), then
// this socket is no longer present in the m_Sockets container
if (s->m_Status >= SRTS_BROKEN)
{
s->apiRelease();
return false;
}
return true;
}
srt::CUDTSocket* srt::CUDTUnited::locatePeer(const sockaddr_any& peer, const SRTSOCKET id, int32_t isn)
{
ScopedLock cg(m_GlobControlLock);
map<int64_t, set<SRTSOCKET> >::iterator i = m_PeerRec.find(CUDTSocket::getPeerSpec(id, isn));
if (i == m_PeerRec.end())
return NULL;
for (set<SRTSOCKET>::iterator j = i->second.begin(); j != i->second.end(); ++j)
{
sockets_t::iterator k = m_Sockets.find(*j);
// this socket might have been closed and moved m_ClosedSockets
if (k == m_Sockets.end())
continue;
if (k->second->m_PeerAddr == peer)
{
return k->second;
}
}
return NULL;
}
void srt::CUDTUnited::checkBrokenSockets()
{
ScopedLock cg(m_GlobControlLock);
#if ENABLE_BONDING
vector<SRTSOCKET> delgids;
for (groups_t::iterator i = m_ClosedGroups.begin(); i != m_ClosedGroups.end(); ++i)
{
// isStillBusy requires lock on the group, so only after an API
// function that uses it returns, and so clears the busy flag,
// a new API function won't be called anyway until it can acquire
// GlobControlLock, and all functions that have already seen this
// group as closing will not continue with the API and return.
// If we caught some API function still using the closed group,
// it's not going to wait, will be checked next time.
if (i->second->isStillBusy())
continue;
delgids.push_back(i->first);
delete i->second;
i->second = NULL; // just for a case, avoid a dangling pointer
}
for (vector<SRTSOCKET>::iterator di = delgids.begin(); di != delgids.end(); ++di)
{
m_ClosedGroups.erase(*di);
}
#endif
// set of sockets To Be Closed and To Be Removed
vector<SRTSOCKET> tbc;
vector<SRTSOCKET> tbr;
for (sockets_t::iterator i = m_Sockets.begin(); i != m_Sockets.end(); ++i)
{
CUDTSocket* s = i->second;
if (!s->core().m_bBroken)
continue;
if (s->m_Status == SRTS_LISTENING)
{
const steady_clock::duration elapsed = steady_clock::now() - s->m_tsClosureTimeStamp.load();
// A listening socket should wait an extra 3 seconds
// in case a client is connecting.
if (elapsed < milliseconds_from(CUDT::COMM_CLOSE_BROKEN_LISTENER_TIMEOUT_MS))
continue;
}
else
{
CUDT& u = s->core();
enterCS(u.m_RcvBufferLock);
bool has_avail_packets = u.m_pRcvBuffer && u.m_pRcvBuffer->hasAvailablePackets();
leaveCS(u.m_RcvBufferLock);
if (has_avail_packets)
{
const int bc = u.m_iBrokenCounter.load();
if (bc > 0)
{
// if there is still data in the receiver buffer, wait longer
s->core().m_iBrokenCounter.store(bc - 1);
continue;
}
}
}
#if ENABLE_BONDING
if (s->m_GroupOf)
{
HLOGC(smlog.Debug,
log << "@" << s->m_SocketID << " IS MEMBER OF $" << s->m_GroupOf->id() << " - REMOVING FROM GROUP");
s->removeFromGroup(true);
}
#endif
HLOGC(smlog.Debug, log << "checkBrokenSockets: moving BROKEN socket to CLOSED: @" << i->first);
// close broken connections and start removal timer
s->setClosed();
tbc.push_back(i->first);
m_ClosedSockets[i->first] = s;
// remove from listener's queue
sockets_t::iterator ls = m_Sockets.find(s->m_ListenSocket);
if (ls == m_Sockets.end())
{
ls = m_ClosedSockets.find(s->m_ListenSocket);
if (ls == m_ClosedSockets.end())
continue;
}
enterCS(ls->second->m_AcceptLock);
ls->second->m_QueuedSockets.erase(s->m_SocketID);
leaveCS(ls->second->m_AcceptLock);
}
for (sockets_t::iterator j = m_ClosedSockets.begin(); j != m_ClosedSockets.end(); ++j)
{
CUDTSocket* ps = j->second;
// NOTE: There is still a hypothetical risk here that ps
// was made busy while the socket was already moved to m_ClosedSocket,
// if the socket was acquired through CUDTUnited::acquireSocket (that is,
// busy flag acquisition was done through the CUDTSocket* pointer rather
// than through the numeric ID). Therefore this way of busy acquisition
// should be done only if at the moment of acquisition there are certainly
// other conditions applying on the socket that prevent it from being deleted.
if (ps->isStillBusy())
{
HLOGC(smlog.Debug, log << "checkBrokenSockets: @" << ps->m_SocketID << " is still busy, SKIPPING THIS CYCLE.");
continue;
}
CUDT& u = ps->core();
// HLOGC(smlog.Debug, log << "checking CLOSED socket: " << j->first);
if (!is_zero(u.m_tsLingerExpiration))
{
// asynchronous close:
if ((!u.m_pSndBuffer) || (0 == u.m_pSndBuffer->getCurrBufSize()) ||
(u.m_tsLingerExpiration <= steady_clock::now()))
{
HLOGC(smlog.Debug, log << "checkBrokenSockets: marking CLOSED qualified @" << ps->m_SocketID);
u.m_tsLingerExpiration = steady_clock::time_point();
u.m_bClosing = true;
ps->m_tsClosureTimeStamp = steady_clock::now();
}
}
// timeout 1 second to destroy a socket AND it has been removed from
// RcvUList
const steady_clock::time_point now = steady_clock::now();
const steady_clock::duration closed_ago = now - ps->m_tsClosureTimeStamp.load();
if (closed_ago > seconds_from(1))
{
CRNode* rnode = u.m_pRNode;
if (!rnode || !rnode->m_bOnList)
{
HLOGC(smlog.Debug,
log << "checkBrokenSockets: @" << ps->m_SocketID << " closed "
<< FormatDuration(closed_ago) << " ago and removed from RcvQ - will remove");
// HLOGC(smlog.Debug, log << "will unref socket: " << j->first);
tbr.push_back(j->first);
}
}
}
// move closed sockets to the ClosedSockets structure
for (vector<SRTSOCKET>::iterator k = tbc.begin(); k != tbc.end(); ++k)
m_Sockets.erase(*k);
// remove those timeout sockets
for (vector<SRTSOCKET>::iterator l = tbr.begin(); l != tbr.end(); ++l)
removeSocket(*l);
HLOGC(smlog.Debug, log << "checkBrokenSockets: after removal: m_ClosedSockets.size()=" << m_ClosedSockets.size());
}
// [[using locked(m_GlobControlLock)]]
void srt::CUDTUnited::removeSocket(const SRTSOCKET u)
{
sockets_t::iterator i = m_ClosedSockets.find(u);
// invalid socket ID
if (i == m_ClosedSockets.end())
return;
CUDTSocket* const s = i->second;
// The socket may be in the trashcan now, but could
// still be under processing in the sender/receiver worker
// threads. If that's the case, SKIP IT THIS TIME. The
// socket will be checked next time the GC rollover starts.
CSNode* sn = s->core().m_pSNode;
if (sn && sn->m_iHeapLoc != -1)
return;
CRNode* rn = s->core().m_pRNode;
if (rn && rn->m_bOnList)
return;
if (s->isStillBusy())
{
HLOGC(smlog.Debug, log << "@" << s->m_SocketID << " is still busy, NOT deleting");
return;
}
LOGC(smlog.Note, log << "@" << s->m_SocketID << " busy=" << s->isStillBusy());
#if ENABLE_BONDING
if (s->m_GroupOf)
{
HLOGC(smlog.Debug,
log << "@" << s->m_SocketID << " IS MEMBER OF $" << s->m_GroupOf->id() << " - REMOVING FROM GROUP");
s->removeFromGroup(true);
}
#endif
// decrease multiplexer reference count, and remove it if necessary
const int mid = s->m_iMuxID;
{
ScopedLock cg(s->m_AcceptLock);
// if it is a listener, close all un-accepted sockets in its queue
// and remove them later
for (map<SRTSOCKET, sockaddr_any>::iterator q = s->m_QueuedSockets.begin();
q != s->m_QueuedSockets.end(); ++ q)
{
sockets_t::iterator si = m_Sockets.find(q->first);
if (si == m_Sockets.end())
{
// gone in the meantime
LOGC(smlog.Error,
log << "removeSocket: IPE? socket @" << (q->first) << " being queued for listener socket @"
<< s->m_SocketID << " is GONE in the meantime ???");
continue;
}
CUDTSocket* as = si->second;
as->breakSocket_LOCKED();
m_ClosedSockets[q->first] = as;
m_Sockets.erase(q->first);
}
}
// remove from peer rec
map<int64_t, set<SRTSOCKET> >::iterator j = m_PeerRec.find(s->getPeerSpec());
if (j != m_PeerRec.end())
{
j->second.erase(u);
if (j->second.empty())
m_PeerRec.erase(j);
}
/*
* Socket may be deleted while still having ePoll events set that would
* remains forever causing epoll_wait to unblock continuously for inexistent
* sockets. Get rid of all events for this socket.
*/
m_EPoll.update_events(u, s->core().m_sPollID, SRT_EPOLL_IN | SRT_EPOLL_OUT | SRT_EPOLL_ERR, false);
// delete this one
m_ClosedSockets.erase(i);
// XXX This below section can unlock m_GlobControlLock
// just for calling CUDT::closeInternal(), which is needed
// to avoid locking m_ConnectionLock after m_GlobControlLock,
// while m_ConnectionLock orders BEFORE m_GlobControlLock.
// This should be perfectly safe thing to do after the socket
// ID has been erased from m_ClosedSockets. No container access
// is done in this case.
//
// Report: P04-1.28, P04-2.27, P04-2.50, P04-2.55
HLOGC(smlog.Debug, log << "GC/removeSocket: closing associated UDT @" << u);
leaveCS(m_GlobControlLock);
s->core().closeInternal();
enterCS(m_GlobControlLock);
HLOGC(smlog.Debug, log << "GC/removeSocket: DELETING SOCKET @" << u);
delete s;
HLOGC(smlog.Debug, log << "GC/removeSocket: socket @" << u << " DELETED. Checking muxer.");
if (mid == -1)
{
HLOGC(smlog.Debug, log << "GC/removeSocket: no muxer found, finishing.");
return;
}
map<int, CMultiplexer>::iterator m;
m = m_mMultiplexer.find(mid);
if (m == m_mMultiplexer.end())
{
LOGC(smlog.Fatal, log << "IPE: For socket @" << u << " MUXER id=" << mid << " NOT FOUND!");
return;
}
CMultiplexer& mx = m->second;
mx.m_iRefCount--;
HLOGC(smlog.Debug, log << "unrefing underlying muxer " << mid << " for @" << u << ", ref=" << mx.m_iRefCount);
if (0 == mx.m_iRefCount)
{
HLOGC(smlog.Debug,
log << "MUXER id=" << mid << " lost last socket @" << u << " - deleting muxer bound to port "
<< mx.m_pChannel->bindAddressAny().hport());
// The channel has no access to the queues and
// it looks like the multiplexer is the master of all of them.
// The queues must be silenced before closing the channel
// because this will cause error to be returned in any operation
// being currently done in the queues, if any.
mx.m_pSndQueue->setClosing();
mx.m_pRcvQueue->setClosing();
mx.destroy();
m_mMultiplexer.erase(m);
}
}
void srt::CUDTUnited::configureMuxer(CMultiplexer& w_m, const CUDTSocket* s, int af)
{
w_m.m_mcfg = s->core().m_config;
w_m.m_iIPversion = af;
w_m.m_iRefCount = 1;
w_m.m_iID = s->m_SocketID;
}
uint16_t srt::CUDTUnited::installMuxer(CUDTSocket* w_s, CMultiplexer& fw_sm)
{
w_s->core().m_pSndQueue = fw_sm.m_pSndQueue;
w_s->core().m_pRcvQueue = fw_sm.m_pRcvQueue;
w_s->m_iMuxID = fw_sm.m_iID;
sockaddr_any sa;
fw_sm.m_pChannel->getSockAddr((sa));
w_s->m_SelfAddr = sa; // Will be also completed later, but here it's needed for later checks
return sa.hport();
}
bool srt::CUDTUnited::inet6SettingsCompat(const sockaddr_any& muxaddr, const CSrtMuxerConfig& cfgMuxer,
const sockaddr_any& reqaddr, const CSrtMuxerConfig& cfgSocket)
{
if (muxaddr.family() != AF_INET6)
return true; // Don't check - the family has been checked already
if (reqaddr.isany())
{
if (cfgSocket.iIpV6Only == -1) // Treat as "adaptive"
return true;
// If set explicitly, then it must be equal to the one of found muxer.
return cfgSocket.iIpV6Only == cfgMuxer.iIpV6Only;
}
// If binding to the certain IPv6 address, then this setting doesn't matter.
return true;
}
bool srt::CUDTUnited::channelSettingsMatch(const CSrtMuxerConfig& cfgMuxer, const CSrtConfig& cfgSocket)
{
if (!cfgMuxer.bReuseAddr)
{
HLOGP(smlog.Debug, "channelSettingsMatch: fail: the multiplexer is not reusable");
return false;
}
if (cfgMuxer.isCompatWith(cfgSocket))
return true;
HLOGP(smlog.Debug, "channelSettingsMatch: fail: some options have different values");
return false;
}
void srt::CUDTUnited::updateMux(CUDTSocket* s, const sockaddr_any& reqaddr, const UDPSOCKET* udpsock /*[[nullable]]*/)
{
ScopedLock cg(m_GlobControlLock);
// If udpsock is provided, then this socket will be simply
// taken for binding as a good deal. It would be nice to make
// a sanity check to see if this UDP socket isn't already installed
// in some multiplexer, but we state this UDP socket isn't accessible
// anyway so this wouldn't be possible.
if (!udpsock)
{
// If not, we need to see if there exist already a multiplexer bound
// to the same endpoint.
const int port = reqaddr.hport();
const CSrtConfig& cfgSocket = s->core().m_config;
// This loop is going to check the attempted binding of
// address:port and socket settings against every existing
// multiplexer. Possible results of the check are:
// 1. MATCH: identical address - reuse it and quit.
// 2. CONFLICT: report error: the binding partially overlaps
// so it neither can be reused nor is free to bind.
// 3. PASS: different and not overlapping - continue searching.
// In this function the convention is:
// MATCH: do nothing and proceed with binding reusage, THEN break.
// CONFLICT: throw an exception.
// PASS: use 'continue' to pass to the next element.
bool reuse_attempt = false;
for (map<int, CMultiplexer>::iterator i = m_mMultiplexer.begin(); i != m_mMultiplexer.end(); ++i)
{
CMultiplexer const& m = i->second;
// First, we need to find a multiplexer with the same port.
if (m.m_iPort != port)
{
HLOGC(smlog.Debug,
log << "bind: muxer @" << m.m_iID << " found, but for port " << m.m_iPort
<< " (requested port: " << port << ")");
continue;
}
// If this is bound to the wildcard address, it can be reused if:
// - reqaddr is also a wildcard
// - channel settings match
// Otherwise it's a conflict.
sockaddr_any mux_addr;
m.m_pChannel->getSockAddr((mux_addr));
HLOGC(smlog.Debug,
log << "bind: Found existing muxer @" << m.m_iID << " : " << mux_addr.str() << " - check against "
<< reqaddr.str());
if (mux_addr.isany())
{
if (mux_addr.family() == AF_INET6)
{
// With IPv6 we need to research two possibilities:
// iIpV6Only == 1 -> This means that it binds only :: wildcard, but not 0.0.0.0
// iIpV6Only == 0 -> This means that it binds both :: and 0.0.0.0.
// iIpV6Only == -1 -> Hard to say what to do, but treat it as a potential conflict in any doubtful case.
if (m.m_mcfg.iIpV6Only == 1)
{
// PASS IF: candidate is IPv4, no matter the address
// MATCH IF: candidate is IPv6 with only=1
// CONFLICT IF: candidate is IPv6 with only != 1 or IPv6 non-wildcard.
if (reqaddr.family() == AF_INET)
{
HLOGC(smlog.Debug, log << "bind: muxer @" << m.m_iID
<< " is :: v6only - requested IPv4 ANY is NOT IN THE WAY. Searching on.");
continue;
}
// Candidate is AF_INET6
if (cfgSocket.iIpV6Only != 1 || !reqaddr.isany())
{
// CONFLICT:
// 1. attempting to make a wildcard IPv4 + IPv6
// while the multiplexer for wildcard IPv6 exists.
// 2. If binding to a given address, it conflicts with the wildcard
LOGC(smlog.Error,
log << "bind: Address: " << reqaddr.str()
<< " conflicts with existing IPv6 wildcard binding: " << mux_addr.str());
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
// Otherwise, MATCH.
}
else if (m.m_mcfg.iIpV6Only == 0)
{
// Muxer's address is a wildcard for :: and 0.0.0.0 at once.
// This way only IPv6 wildcard with v6only=0 is a perfect match and everything
// else is a conflict.
if (reqaddr.family() == AF_INET6 && reqaddr.isany() && cfgSocket.iIpV6Only == 0)
{
// MATCH
}
else
{
// CONFLICT: attempting to make a wildcard IPv4 + IPv6 while
// the multiplexer for wildcard IPv6 exists.
LOGC(smlog.Error,
log << "bind: Address: " << reqaddr.str() << " v6only=" << cfgSocket.iIpV6Only
<< " conflicts with existing IPv6 + IPv4 wildcard binding: " << mux_addr.str());
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
}
else // Case -1, by unknown reason. Accept only with -1 setting, others are conflict.
{
if (reqaddr.family() == AF_INET6 && reqaddr.isany() && cfgSocket.iIpV6Only == -1)
{
// MATCH
}
else
{
LOGC(smlog.Error,
log << "bind: Address: " << reqaddr.str() << " v6only=" << cfgSocket.iIpV6Only
<< " conflicts with existing IPv6 v6only=unknown wildcard binding: " << mux_addr.str());
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
}
}
else // muxer is IPv4 wildcard
{
// Then only IPv4 wildcard is a match and:
// - IPv6 with only=true is PASS (not a conflict)
// - IPv6 with only=false is CONFLICT
// - IPv6 with only=undefined is CONFLICT
// REASON: we need to make a potential conflict a conflict as there will be
// no bind() call to check if this wouldn't be a conflict in result. If you want
// to have a binding to IPv6 that should avoid conflict with IPv4 wildcard binding,
// then SRTO_IPV6ONLY option must be explicitly set before binding.
// Also:
if (reqaddr.family() == AF_INET)
{
if (reqaddr.isany())
{
// MATCH
}
else
{
LOGC(smlog.Error,
log << "bind: Address: " << reqaddr.str()
<< " conflicts with existing IPv4 wildcard binding: " << mux_addr.str());
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
}
else // AF_INET6
{
if (cfgSocket.iIpV6Only == 1 || !reqaddr.isany())
{
// PASS
HLOGC(smlog.Debug, log << "bind: muxer @" << m.m_iID
<< " is IPv4 wildcard - requested " << reqaddr.str() << " v6only=" << cfgSocket.iIpV6Only
<< " is NOT IN THE WAY. Searching on.");
continue;
}
else
{
LOGC(smlog.Error,
log << "bind: Address: " << reqaddr.str() << " v6only=" << cfgSocket.iIpV6Only
<< " conflicts with existing IPv4 wildcard binding: " << mux_addr.str());
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
}
}
reuse_attempt = true;
HLOGC(smlog.Debug, log << "bind: wildcard address - multiplexer reusable");
}
// Muxer address is NOT a wildcard, so conflicts only with WILDCARD of the same type
else if (reqaddr.isany() && reqaddr.family() == mux_addr.family())
{
LOGC(smlog.Error,
log << "bind: Wildcard address: " << reqaddr.str()
<< " conflicts with existting IP binding: " << mux_addr.str());
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
// If this is bound to a certain address, AND:
else if (mux_addr.equal_address(reqaddr))
{
// - the address is the same as reqaddr
reuse_attempt = true;
HLOGC(smlog.Debug, log << "bind: same IP address - multiplexer reusable");
}
else
{
HLOGC(smlog.Debug, log << "bind: IP addresses differ - ALLOWED to create a new multiplexer");
continue;
}
// Otherwise:
// - the address is different than reqaddr
// - the address can't be reused, but this can go on with new one.
// If this is a reusage attempt:
if (reuse_attempt)
{
// - if the channel settings match, it can be reused
if (channelSettingsMatch(m.m_mcfg, cfgSocket) && inet6SettingsCompat(mux_addr, m.m_mcfg, reqaddr, cfgSocket))
{
HLOGC(smlog.Debug, log << "bind: reusing multiplexer for port " << port);
// reuse the existing multiplexer
++i->second.m_iRefCount;
installMuxer((s), (i->second));
return;
}
else
{
// - if not, it's a conflict
LOGC(smlog.Error,
log << "bind: Address: " << reqaddr.str() << " conflicts with binding: " << mux_addr.str()
<< " due to channel settings");
throw CUDTException(MJ_NOTSUP, MN_BUSYPORT, 0);
}
}
// If not, proceed to the next one, and when there are no reusage
// candidates, proceed with creating a new multiplexer.
// Note that a binding to a different IP address is not treated
// as a candidate for either reusage or conflict.
LOGC(smlog.Fatal, log << "SHOULD NOT GET HERE!!!");
SRT_ASSERT(false);
}
}
// a new multiplexer is needed
CMultiplexer m;
configureMuxer((m), s, reqaddr.family());
try
{
m.m_pChannel = new CChannel();
m.m_pChannel->setConfig(m.m_mcfg);
if (udpsock)
{
// In this case, reqaddr contains the address
// that has been extracted already from the
// given socket
m.m_pChannel->attach(*udpsock, reqaddr);
}
else if (reqaddr.empty())
{
// The case of previously used case of a NULL address.
// This here is used to pass family only, in this case
// just automatically bind to the "0" address to autoselect
// everything.
m.m_pChannel->open(reqaddr.family());
}
else
{
// If at least the IP address is specified, then bind to that
// address, but still possibly autoselect the outgoing port, if the
// port was specified as 0.
m.m_pChannel->open(reqaddr);
}
// AFTER OPENING, check the matter of IPV6_V6ONLY option,
// as it decides about the fact that the occupied binding address
// in case of wildcard is both :: and 0.0.0.0, or only ::.
if (reqaddr.family() == AF_INET6 && m.m_mcfg.iIpV6Only == -1)
{
// XXX We don't know how probable it is to get the error here
// and resulting -1 value. As a fallback for that case, the value -1
// is honored here, just all side-bindings for other sockes will be
// rejected as a potential conflict, even if binding would be accepted
// in these circumstances. Only a perfect match in case of potential
// overlapping will be accepted on the same port.
m.m_mcfg.iIpV6Only = m.m_pChannel->sockopt(IPPROTO_IPV6, IPV6_V6ONLY, -1);
}
m.m_pTimer = new CTimer;
m.m_pSndQueue = new CSndQueue;
m.m_pSndQueue->init(m.m_pChannel, m.m_pTimer);
m.m_pRcvQueue = new CRcvQueue;
m.m_pRcvQueue->init(128, s->core().maxPayloadSize(), m.m_iIPversion, 1024, m.m_pChannel, m.m_pTimer);
// Rewrite the port here, as it might be only known upon return
// from CChannel::open.
m.m_iPort = installMuxer((s), m);
m_mMultiplexer[m.m_iID] = m;
}
catch (const CUDTException&)
{
m.destroy();
throw;
}
catch (...)
{
m.destroy();
throw CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0);
}
HLOGC(smlog.Debug, log << "bind: creating new multiplexer for port " << m.m_iPort);
}
// This function is going to find a multiplexer for the port contained
// in the 'ls' listening socket. The multiplexer must exist when the listener
// exists, otherwise the dispatching procedure wouldn't even call this
// function. By historical reasons there's also a fallback for a case when the
// multiplexer wasn't found by id, the search by port number continues.
bool srt::CUDTUnited::updateListenerMux(CUDTSocket* s, const CUDTSocket* ls)
{
ScopedLock cg(m_GlobControlLock);
const int port = ls->m_SelfAddr.hport();
HLOGC(smlog.Debug,
log << "updateListenerMux: finding muxer of listener socket @" << ls->m_SocketID << " muxid=" << ls->m_iMuxID
<< " bound=" << ls->m_SelfAddr.str() << " FOR @" << s->m_SocketID << " addr=" << s->m_SelfAddr.str()
<< "_->_" << s->m_PeerAddr.str());
// First thing that should be certain here is that there should exist
// a muxer with the ID written in the listener socket's mux ID.
CMultiplexer* mux = map_getp(m_mMultiplexer, ls->m_iMuxID);
// NOTE:
// THIS BELOW CODE is only for a highly unlikely situation when the listener
// socket has been closed in the meantime when the accepted socket is being
// processed. This procedure is different than updateMux because this time we
// only want to have a multiplexer socket to be assigned to the accepted socket.
// It is also unlikely that the listener socket is garbage-collected so fast, so
// this procedure will most likely find the multiplexer of the zombie listener socket,
// which no longer accepts new connections (the listener is withdrawn immediately from
// the port) that wasn't yet completely deleted.
CMultiplexer* fallback = NULL;
if (!mux)
{
LOGC(smlog.Error, log << "updateListenerMux: IPE? listener muxer not found by ID, trying by port");
// To be used as first found with different IP version
// find the listener's address
for (map<int, CMultiplexer>::iterator i = m_mMultiplexer.begin(); i != m_mMultiplexer.end(); ++i)
{
CMultiplexer& m = i->second;
#if ENABLE_HEAVY_LOGGING
ostringstream that_muxer;
that_muxer << "id=" << m.m_iID << " port=" << m.m_iPort
<< " ip=" << (m.m_iIPversion == AF_INET ? "v4" : "v6");
#endif
if (m.m_iPort == port)
{
HLOGC(smlog.Debug, log << "updateListenerMux: reusing muxer: " << that_muxer.str());
if (m.m_iIPversion == s->m_PeerAddr.family())
{
mux = &m; // best match
break;
}
else if (m.m_iIPversion == AF_INET6)
{
// Allowed fallback case when we only need an accepted socket.
fallback = &m;
}
}
else
{
HLOGC(smlog.Debug, log << "updateListenerMux: SKIPPING muxer: " << that_muxer.str());
}
}
if (!mux && fallback)
{
// It is allowed to reuse this multiplexer, but the socket must allow both IPv4 and IPv6
if (fallback->m_mcfg.iIpV6Only == 0)
{
HLOGC(smlog.Warn, log << "updateListenerMux: reusing multiplexer from different family");
mux = fallback;
}
}
}
// Checking again because the above procedure could have set it
if (mux)
{
// reuse the existing multiplexer
++mux->m_iRefCount;
s->core().m_pSndQueue = mux->m_pSndQueue;
s->core().m_pRcvQueue = mux->m_pRcvQueue;
s->m_iMuxID = mux->m_iID;
return true;
}
return false;
}
void* srt::CUDTUnited::garbageCollect(void* p)
{
CUDTUnited* self = (CUDTUnited*)p;
THREAD_STATE_INIT("SRT:GC");
UniqueLock gclock(self->m_GCStopLock);
while (!self->m_bClosing)
{
INCREMENT_THREAD_ITERATIONS();
self->checkBrokenSockets();
HLOGC(inlog.Debug, log << "GC: sleep 1 s");
self->m_GCStopCond.wait_for(gclock, seconds_from(1));
}
// remove all sockets and multiplexers
HLOGC(inlog.Debug, log << "GC: GLOBAL EXIT - releasing all pending sockets. Acquring control lock...");
{
ScopedLock glock(self->m_GlobControlLock);
for (sockets_t::iterator i = self->m_Sockets.begin(); i != self->m_Sockets.end(); ++i)
{
CUDTSocket* s = i->second;
s->breakSocket_LOCKED();
#if ENABLE_BONDING
if (s->m_GroupOf)
{
HLOGC(smlog.Debug,
log << "@" << s->m_SocketID << " IS MEMBER OF $" << s->m_GroupOf->id()
<< " (IPE?) - REMOVING FROM GROUP");
s->removeFromGroup(false);
}
#endif
self->m_ClosedSockets[i->first] = s;
// remove from listener's queue
sockets_t::iterator ls = self->m_Sockets.find(s->m_ListenSocket);
if (ls == self->m_Sockets.end())
{
ls = self->m_ClosedSockets.find(s->m_ListenSocket);
if (ls == self->m_ClosedSockets.end())
continue;
}
enterCS(ls->second->m_AcceptLock);
ls->second->m_QueuedSockets.erase(s->m_SocketID);
leaveCS(ls->second->m_AcceptLock);
}
self->m_Sockets.clear();
for (sockets_t::iterator j = self->m_ClosedSockets.begin(); j != self->m_ClosedSockets.end(); ++j)
{
j->second->m_tsClosureTimeStamp = steady_clock::time_point();
}
}
HLOGC(inlog.Debug, log << "GC: GLOBAL EXIT - releasing all CLOSED sockets.");
while (true)
{
self->checkBrokenSockets();
enterCS(self->m_GlobControlLock);
bool empty = self->m_ClosedSockets.empty();
leaveCS(self->m_GlobControlLock);
if (empty)
break;
HLOGC(inlog.Debug, log << "GC: checkBrokenSockets didn't wipe all sockets, repeating after 1s sleep");
srt::sync::this_thread::sleep_for(milliseconds_from(1));
}
THREAD_EXIT();
return NULL;
}
////////////////////////////////////////////////////////////////////////////////
int srt::CUDT::startup()
{
return uglobal().startup();
}
int srt::CUDT::cleanup()
{
return uglobal().cleanup();
}
SRTSOCKET srt::CUDT::socket()
{
uglobal().startup();
try
{
return uglobal().newSocket();
}
catch (const CUDTException& e)
{
SetThreadLocalError(e);
return INVALID_SOCK;
}
catch (const bad_alloc&)
{
SetThreadLocalError(CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0));
return INVALID_SOCK;
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "socket: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
SetThreadLocalError(CUDTException(MJ_UNKNOWN, MN_NONE, 0));
return INVALID_SOCK;
}
}
srt::CUDT::APIError::APIError(const CUDTException& e)
{
SetThreadLocalError(e);
}
srt::CUDT::APIError::APIError(CodeMajor mj, CodeMinor mn, int syserr)
{
SetThreadLocalError(CUDTException(mj, mn, syserr));
}
#if ENABLE_BONDING
// This is an internal function; 'type' should be pre-checked if it has a correct value.
// This doesn't have argument of GroupType due to header file conflicts.
// [[using locked(s_UDTUnited.m_GlobControlLock)]]
srt::CUDTGroup& srt::CUDT::newGroup(const int type)
{
const SRTSOCKET id = uglobal().generateSocketID(true);
// Now map the group
return uglobal().addGroup(id, SRT_GROUP_TYPE(type)).set_id(id);
}
SRTSOCKET srt::CUDT::createGroup(SRT_GROUP_TYPE gt)
{
// Doing the same lazy-startup as with srt_create_socket()
uglobal().startup();
try
{
srt::sync::ScopedLock globlock(uglobal().m_GlobControlLock);
return newGroup(gt).id();
// Note: potentially, after this function exits, the group
// could be deleted, immediately, from a separate thread (tho
// unlikely because the other thread would need some handle to
// keep it). But then, the first call to any API function would
// return invalid ID error.
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (...)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
return SRT_INVALID_SOCK;
}
// [[using locked(m_ControlLock)]]
// [[using locked(CUDT::s_UDTUnited.m_GlobControlLock)]]
void srt::CUDTSocket::removeFromGroup(bool broken)
{
CUDTGroup* g = m_GroupOf;
if (g)
{
// Reset group-related fields immediately. They won't be accessed
// in the below calls, while the iterator will be invalidated for
// a short moment between removal from the group container and the end,
// while the GroupLock would be already taken out. It is safer to reset
// it to a NULL iterator before removal.
m_GroupOf = NULL;
m_GroupMemberData = NULL;
bool still_have = g->remove(m_SocketID);
if (broken)
{
// Activate the SRT_EPOLL_UPDATE event on the group
// if it was because of a socket that was earlier connected
// and became broken. This is not to be sent in case when
// it is a failure during connection, or the socket was
// explicitly removed from the group.
g->activateUpdateEvent(still_have);
}
HLOGC(smlog.Debug,
log << "removeFromGroup: socket @" << m_SocketID << " NO LONGER A MEMBER of $" << g->id() << "; group is "
<< (still_have ? "still ACTIVE" : "now EMPTY"));
}
}
SRTSOCKET srt::CUDT::getGroupOfSocket(SRTSOCKET socket)
{
// Lock this for the whole function as we need the group
// to persist the call.
ScopedLock glock(uglobal().m_GlobControlLock);
CUDTSocket* s = uglobal().locateSocket_LOCKED(socket);
if (!s || !s->m_GroupOf)
return APIError(MJ_NOTSUP, MN_INVAL, 0);
return s->m_GroupOf->id();
}
int srt::CUDT::getGroupData(SRTSOCKET groupid, SRT_SOCKGROUPDATA* pdata, size_t* psize)
{
if ((groupid & SRTGROUP_MASK) == 0 || !psize)
{
return APIError(MJ_NOTSUP, MN_INVAL, 0);
}
CUDTUnited::GroupKeeper k(uglobal(), groupid, CUDTUnited::ERH_RETURN);
if (!k.group)
{
return APIError(MJ_NOTSUP, MN_INVAL, 0);
}
// To get only the size of the group pdata=NULL can be used
return k.group->getGroupData(pdata, psize);
}
#endif
int srt::CUDT::bind(SRTSOCKET u, const sockaddr* name, int namelen)
{
try
{
sockaddr_any sa(name, namelen);
if (sa.len == 0)
{
// This happens if the namelen check proved it to be
// too small for particular family, or that family is
// not recognized (is none of AF_INET, AF_INET6).
// This is a user error.
return APIError(MJ_NOTSUP, MN_INVAL, 0);
}
CUDTSocket* s = uglobal().locateSocket(u);
if (!s)
return APIError(MJ_NOTSUP, MN_INVAL, 0);
return uglobal().bind(s, sa);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "bind: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::bind(SRTSOCKET u, UDPSOCKET udpsock)
{
try
{
CUDTSocket* s = uglobal().locateSocket(u);
if (!s)
return APIError(MJ_NOTSUP, MN_INVAL, 0);
return uglobal().bind(s, udpsock);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "bind/udp: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::listen(SRTSOCKET u, int backlog)
{
try
{
return uglobal().listen(u, backlog);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "listen: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
SRTSOCKET srt::CUDT::accept_bond(const SRTSOCKET listeners[], int lsize, int64_t msTimeOut)
{
try
{
return uglobal().accept_bond(listeners, lsize, msTimeOut);
}
catch (const CUDTException& e)
{
SetThreadLocalError(e);
return INVALID_SOCK;
}
catch (bad_alloc&)
{
SetThreadLocalError(CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0));
return INVALID_SOCK;
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "accept_bond: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
SetThreadLocalError(CUDTException(MJ_UNKNOWN, MN_NONE, 0));
return INVALID_SOCK;
}
}
SRTSOCKET srt::CUDT::accept(SRTSOCKET u, sockaddr* addr, int* addrlen)
{
try
{
return uglobal().accept(u, addr, addrlen);
}
catch (const CUDTException& e)
{
SetThreadLocalError(e);
return INVALID_SOCK;
}
catch (const bad_alloc&)
{
SetThreadLocalError(CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0));
return INVALID_SOCK;
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "accept: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
SetThreadLocalError(CUDTException(MJ_UNKNOWN, MN_NONE, 0));
return INVALID_SOCK;
}
}
int srt::CUDT::connect(SRTSOCKET u, const sockaddr* name, const sockaddr* tname, int namelen)
{
try
{
return uglobal().connect(u, name, tname, namelen);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (std::exception& ee)
{
LOGC(aclog.Fatal, log << "connect: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
#if ENABLE_BONDING
int srt::CUDT::connectLinks(SRTSOCKET grp, SRT_SOCKGROUPCONFIG targets[], int arraysize)
{
if (arraysize <= 0)
return APIError(MJ_NOTSUP, MN_INVAL, 0);
if ((grp & SRTGROUP_MASK) == 0)
{
// connectLinks accepts only GROUP id, not socket id.
return APIError(MJ_NOTSUP, MN_SIDINVAL, 0);
}
try
{
CUDTUnited::GroupKeeper k(uglobal(), grp, CUDTUnited::ERH_THROW);
return uglobal().groupConnect(k.group, targets, arraysize);
}
catch (CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (std::exception& ee)
{
LOGC(aclog.Fatal, log << "connect: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
#endif
int srt::CUDT::connect(SRTSOCKET u, const sockaddr* name, int namelen, int32_t forced_isn)
{
try
{
return uglobal().connect(u, name, namelen, forced_isn);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "connect: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::close(SRTSOCKET u)
{
try
{
return uglobal().close(u);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "close: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::getpeername(SRTSOCKET u, sockaddr* name, int* namelen)
{
try
{
uglobal().getpeername(u, name, namelen);
return 0;
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "getpeername: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::getsockname(SRTSOCKET u, sockaddr* name, int* namelen)
{
try
{
uglobal().getsockname(u, name, namelen);
return 0;
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "getsockname: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::getsockopt(SRTSOCKET u, int, SRT_SOCKOPT optname, void* pw_optval, int* pw_optlen)
{
if (!pw_optval || !pw_optlen)
{
return APIError(MJ_NOTSUP, MN_INVAL, 0);
}
try
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
CUDTUnited::GroupKeeper k(uglobal(), u, CUDTUnited::ERH_THROW);
k.group->getOpt(optname, (pw_optval), (*pw_optlen));
return 0;
}
#endif
CUDT& udt = uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core();
udt.getOpt(optname, (pw_optval), (*pw_optlen));
return 0;
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "getsockopt: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::setsockopt(SRTSOCKET u, int, SRT_SOCKOPT optname, const void* optval, int optlen)
{
if (!optval || optlen < 0)
return APIError(MJ_NOTSUP, MN_INVAL, 0);
try
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
CUDTUnited::GroupKeeper k(uglobal(), u, CUDTUnited::ERH_THROW);
k.group->setOpt(optname, optval, optlen);
return 0;
}
#endif
CUDT& udt = uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core();
udt.setOpt(optname, optval, optlen);
return 0;
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "setsockopt: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::send(SRTSOCKET u, const char* buf, int len, int)
{
SRT_MSGCTRL mctrl = srt_msgctrl_default;
return sendmsg2(u, buf, len, (mctrl));
}
// --> CUDT::recv moved down
int srt::CUDT::sendmsg(SRTSOCKET u, const char* buf, int len, int ttl, bool inorder, int64_t srctime)
{
SRT_MSGCTRL mctrl = srt_msgctrl_default;
mctrl.msgttl = ttl;
mctrl.inorder = inorder;
mctrl.srctime = srctime;
return sendmsg2(u, buf, len, (mctrl));
}
int srt::CUDT::sendmsg2(SRTSOCKET u, const char* buf, int len, SRT_MSGCTRL& w_m)
{
try
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
CUDTUnited::GroupKeeper k(uglobal(), u, CUDTUnited::ERH_THROW);
return k.group->send(buf, len, (w_m));
}
#endif
return uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core().sendmsg2(buf, len, (w_m));
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "sendmsg: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::recv(SRTSOCKET u, char* buf, int len, int)
{
SRT_MSGCTRL mctrl = srt_msgctrl_default;
int ret = recvmsg2(u, buf, len, (mctrl));
return ret;
}
int srt::CUDT::recvmsg(SRTSOCKET u, char* buf, int len, int64_t& srctime)
{
SRT_MSGCTRL mctrl = srt_msgctrl_default;
int ret = recvmsg2(u, buf, len, (mctrl));
srctime = mctrl.srctime;
return ret;
}
int srt::CUDT::recvmsg2(SRTSOCKET u, char* buf, int len, SRT_MSGCTRL& w_m)
{
try
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
{
CUDTUnited::GroupKeeper k(uglobal(), u, CUDTUnited::ERH_THROW);
return k.group->recv(buf, len, (w_m));
}
#endif
return uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core().recvmsg2(buf, len, (w_m));
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "recvmsg: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int64_t srt::CUDT::sendfile(SRTSOCKET u, fstream& ifs, int64_t& offset, int64_t size, int block)
{
try
{
CUDT& udt = uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core();
return udt.sendfile(ifs, offset, size, block);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "sendfile: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int64_t srt::CUDT::recvfile(SRTSOCKET u, fstream& ofs, int64_t& offset, int64_t size, int block)
{
try
{
return uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core().recvfile(ofs, offset, size, block);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "recvfile: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::select(int, UDT::UDSET* readfds, UDT::UDSET* writefds, UDT::UDSET* exceptfds, const timeval* timeout)
{
if ((!readfds) && (!writefds) && (!exceptfds))
{
return APIError(MJ_NOTSUP, MN_INVAL, 0);
}
try
{
return uglobal().select(readfds, writefds, exceptfds, timeout);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "select: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::selectEx(const vector<SRTSOCKET>& fds,
vector<SRTSOCKET>* readfds,
vector<SRTSOCKET>* writefds,
vector<SRTSOCKET>* exceptfds,
int64_t msTimeOut)
{
if ((!readfds) && (!writefds) && (!exceptfds))
{
return APIError(MJ_NOTSUP, MN_INVAL, 0);
}
try
{
return uglobal().selectEx(fds, readfds, writefds, exceptfds, msTimeOut);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (bad_alloc&)
{
return APIError(MJ_SYSTEMRES, MN_MEMORY, 0);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "selectEx: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN);
}
}
int srt::CUDT::epoll_create()
{
try
{
return uglobal().epoll_create();
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_create: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_clear_usocks(int eid)
{
try
{
return uglobal().epoll_clear_usocks(eid);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (std::exception& ee)
{
LOGC(aclog.Fatal,
log << "epoll_clear_usocks: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_add_usock(const int eid, const SRTSOCKET u, const int* events)
{
try
{
return uglobal().epoll_add_usock(eid, u, events);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_add_usock: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_add_ssock(const int eid, const SYSSOCKET s, const int* events)
{
try
{
return uglobal().epoll_add_ssock(eid, s, events);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_add_ssock: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_update_usock(const int eid, const SRTSOCKET u, const int* events)
{
try
{
return uglobal().epoll_add_usock(eid, u, events);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal,
log << "epoll_update_usock: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_update_ssock(const int eid, const SYSSOCKET s, const int* events)
{
try
{
return uglobal().epoll_update_ssock(eid, s, events);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal,
log << "epoll_update_ssock: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_remove_usock(const int eid, const SRTSOCKET u)
{
try
{
return uglobal().epoll_remove_usock(eid, u);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal,
log << "epoll_remove_usock: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_remove_ssock(const int eid, const SYSSOCKET s)
{
try
{
return uglobal().epoll_remove_ssock(eid, s);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal,
log << "epoll_remove_ssock: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_wait(const int eid,
set<SRTSOCKET>* readfds,
set<SRTSOCKET>* writefds,
int64_t msTimeOut,
set<SYSSOCKET>* lrfds,
set<SYSSOCKET>* lwfds)
{
try
{
return uglobal().epoll_ref().wait(eid, readfds, writefds, msTimeOut, lrfds, lwfds);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_wait: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_uwait(const int eid, SRT_EPOLL_EVENT* fdsSet, int fdsSize, int64_t msTimeOut)
{
try
{
return uglobal().epoll_uwait(eid, fdsSet, fdsSize, msTimeOut);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_uwait: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int32_t srt::CUDT::epoll_set(const int eid, int32_t flags)
{
try
{
return uglobal().epoll_set(eid, flags);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_set: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
int srt::CUDT::epoll_release(const int eid)
{
try
{
return uglobal().epoll_release(eid);
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "epoll_release: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
srt::CUDTException& srt::CUDT::getlasterror()
{
return GetThreadLocalError();
}
int srt::CUDT::bstats(SRTSOCKET u, CBytePerfMon* perf, bool clear, bool instantaneous)
{
#if ENABLE_BONDING
if (u & SRTGROUP_MASK)
return groupsockbstats(u, perf, clear);
#endif
try
{
CUDT& udt = uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core();
udt.bstats(perf, clear, instantaneous);
return 0;
}
catch (const CUDTException& e)
{
return APIError(e);
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "bstats: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
return APIError(MJ_UNKNOWN, MN_NONE, 0);
}
}
#if ENABLE_BONDING
int srt::CUDT::groupsockbstats(SRTSOCKET u, CBytePerfMon* perf, bool clear)
{
try
{
CUDTUnited::GroupKeeper k(uglobal(), u, CUDTUnited::ERH_THROW);
k.group->bstatsSocket(perf, clear);
return 0;
}
catch (const CUDTException& e)
{
SetThreadLocalError(e);
return ERROR;
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "bstats: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
SetThreadLocalError(CUDTException(MJ_UNKNOWN, MN_NONE, 0));
return ERROR;
}
}
#endif
srt::CUDT* srt::CUDT::getUDTHandle(SRTSOCKET u)
{
try
{
return &uglobal().locateSocket(u, CUDTUnited::ERH_THROW)->core();
}
catch (const CUDTException& e)
{
SetThreadLocalError(e);
return NULL;
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "getUDTHandle: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
SetThreadLocalError(CUDTException(MJ_UNKNOWN, MN_NONE, 0));
return NULL;
}
}
vector<SRTSOCKET> srt::CUDT::existingSockets()
{
vector<SRTSOCKET> out;
for (CUDTUnited::sockets_t::iterator i = uglobal().m_Sockets.begin(); i != uglobal().m_Sockets.end(); ++i)
{
out.push_back(i->first);
}
return out;
}
SRT_SOCKSTATUS srt::CUDT::getsockstate(SRTSOCKET u)
{
try
{
#if ENABLE_BONDING
if (isgroup(u))
{
CUDTUnited::GroupKeeper k(uglobal(), u, CUDTUnited::ERH_THROW);
return k.group->getStatus();
}
#endif
return uglobal().getStatus(u);
}
catch (const CUDTException& e)
{
SetThreadLocalError(e);
return SRTS_NONEXIST;
}
catch (const std::exception& ee)
{
LOGC(aclog.Fatal, log << "getsockstate: UNEXPECTED EXCEPTION: " << typeid(ee).name() << ": " << ee.what());
SetThreadLocalError(CUDTException(MJ_UNKNOWN, MN_NONE, 0));
return SRTS_NONEXIST;
}
}
////////////////////////////////////////////////////////////////////////////////
namespace UDT
{
int startup()
{
return srt::CUDT::startup();
}
int cleanup()
{
return srt::CUDT::cleanup();
}
int bind(SRTSOCKET u, const struct sockaddr* name, int namelen)
{
return srt::CUDT::bind(u, name, namelen);
}
int bind2(SRTSOCKET u, UDPSOCKET udpsock)
{
return srt::CUDT::bind(u, udpsock);
}
int listen(SRTSOCKET u, int backlog)
{
return srt::CUDT::listen(u, backlog);
}
SRTSOCKET accept(SRTSOCKET u, struct sockaddr* addr, int* addrlen)
{
return srt::CUDT::accept(u, addr, addrlen);
}
int connect(SRTSOCKET u, const struct sockaddr* name, int namelen)
{
return srt::CUDT::connect(u, name, namelen, SRT_SEQNO_NONE);
}
int close(SRTSOCKET u)
{
return srt::CUDT::close(u);
}
int getpeername(SRTSOCKET u, struct sockaddr* name, int* namelen)
{
return srt::CUDT::getpeername(u, name, namelen);
}
int getsockname(SRTSOCKET u, struct sockaddr* name, int* namelen)
{
return srt::CUDT::getsockname(u, name, namelen);
}
int getsockopt(SRTSOCKET u, int level, SRT_SOCKOPT optname, void* optval, int* optlen)
{
return srt::CUDT::getsockopt(u, level, optname, optval, optlen);
}
int setsockopt(SRTSOCKET u, int level, SRT_SOCKOPT optname, const void* optval, int optlen)
{
return srt::CUDT::setsockopt(u, level, optname, optval, optlen);
}
// DEVELOPER API
int connect_debug(SRTSOCKET u, const struct sockaddr* name, int namelen, int32_t forced_isn)
{
return srt::CUDT::connect(u, name, namelen, forced_isn);
}
int send(SRTSOCKET u, const char* buf, int len, int flags)
{
return srt::CUDT::send(u, buf, len, flags);
}
int recv(SRTSOCKET u, char* buf, int len, int flags)
{
return srt::CUDT::recv(u, buf, len, flags);
}
int sendmsg(SRTSOCKET u, const char* buf, int len, int ttl, bool inorder, int64_t srctime)
{
return srt::CUDT::sendmsg(u, buf, len, ttl, inorder, srctime);
}
int recvmsg(SRTSOCKET u, char* buf, int len, int64_t& srctime)
{
return srt::CUDT::recvmsg(u, buf, len, srctime);
}
int recvmsg(SRTSOCKET u, char* buf, int len)
{
int64_t srctime;
return srt::CUDT::recvmsg(u, buf, len, srctime);
}
int64_t sendfile(SRTSOCKET u, fstream& ifs, int64_t& offset, int64_t size, int block)
{
return srt::CUDT::sendfile(u, ifs, offset, size, block);
}
int64_t recvfile(SRTSOCKET u, fstream& ofs, int64_t& offset, int64_t size, int block)
{
return srt::CUDT::recvfile(u, ofs, offset, size, block);
}
int64_t sendfile2(SRTSOCKET u, const char* path, int64_t* offset, int64_t size, int block)
{
fstream ifs(path, ios::binary | ios::in);
int64_t ret = srt::CUDT::sendfile(u, ifs, *offset, size, block);
ifs.close();
return ret;
}
int64_t recvfile2(SRTSOCKET u, const char* path, int64_t* offset, int64_t size, int block)
{
fstream ofs(path, ios::binary | ios::out);
int64_t ret = srt::CUDT::recvfile(u, ofs, *offset, size, block);
ofs.close();
return ret;
}
int select(int nfds, UDSET* readfds, UDSET* writefds, UDSET* exceptfds, const struct timeval* timeout)
{
return srt::CUDT::select(nfds, readfds, writefds, exceptfds, timeout);
}
int selectEx(const vector<SRTSOCKET>& fds,
vector<SRTSOCKET>* readfds,
vector<SRTSOCKET>* writefds,
vector<SRTSOCKET>* exceptfds,
int64_t msTimeOut)
{
return srt::CUDT::selectEx(fds, readfds, writefds, exceptfds, msTimeOut);
}
int epoll_create()
{
return srt::CUDT::epoll_create();
}
int epoll_clear_usocks(int eid)
{
return srt::CUDT::epoll_clear_usocks(eid);
}
int epoll_add_usock(int eid, SRTSOCKET u, const int* events)
{
return srt::CUDT::epoll_add_usock(eid, u, events);
}
int epoll_add_ssock(int eid, SYSSOCKET s, const int* events)
{
return srt::CUDT::epoll_add_ssock(eid, s, events);
}
int epoll_update_usock(int eid, SRTSOCKET u, const int* events)
{
return srt::CUDT::epoll_update_usock(eid, u, events);
}
int epoll_update_ssock(int eid, SYSSOCKET s, const int* events)
{
return srt::CUDT::epoll_update_ssock(eid, s, events);
}
int epoll_remove_usock(int eid, SRTSOCKET u)
{
return srt::CUDT::epoll_remove_usock(eid, u);
}
int epoll_remove_ssock(int eid, SYSSOCKET s)
{
return srt::CUDT::epoll_remove_ssock(eid, s);
}
int epoll_wait(int eid,
set<SRTSOCKET>* readfds,
set<SRTSOCKET>* writefds,
int64_t msTimeOut,
set<SYSSOCKET>* lrfds,
set<SYSSOCKET>* lwfds)
{
return srt::CUDT::epoll_wait(eid, readfds, writefds, msTimeOut, lrfds, lwfds);
}
template <class SOCKTYPE>
inline void set_result(set<SOCKTYPE>* val, int* num, SOCKTYPE* fds)
{
if (!val || !num || !fds)
return;
if (*num > int(val->size()))
*num = int(val->size()); // will get 0 if val->empty()
int count = 0;
// This loop will run 0 times if val->empty()
for (typename set<SOCKTYPE>::const_iterator it = val->begin(); it != val->end(); ++it)
{
if (count >= *num)
break;
fds[count++] = *it;
}
}
int epoll_wait2(int eid,
SRTSOCKET* readfds,
int* rnum,
SRTSOCKET* writefds,
int* wnum,
int64_t msTimeOut,
SYSSOCKET* lrfds,
int* lrnum,
SYSSOCKET* lwfds,
int* lwnum)
{
// This API is an alternative format for epoll_wait, created for
// compatibility with other languages. Users need to pass in an array
// for holding the returned sockets, with the maximum array length
// stored in *rnum, etc., which will be updated with returned number
// of sockets.
set<SRTSOCKET> readset;
set<SRTSOCKET> writeset;
set<SYSSOCKET> lrset;
set<SYSSOCKET> lwset;
set<SRTSOCKET>* rval = NULL;
set<SRTSOCKET>* wval = NULL;
set<SYSSOCKET>* lrval = NULL;
set<SYSSOCKET>* lwval = NULL;
if ((readfds != NULL) && (rnum != NULL))
rval = &readset;
if ((writefds != NULL) && (wnum != NULL))
wval = &writeset;
if ((lrfds != NULL) && (lrnum != NULL))
lrval = &lrset;
if ((lwfds != NULL) && (lwnum != NULL))
lwval = &lwset;
int ret = srt::CUDT::epoll_wait(eid, rval, wval, msTimeOut, lrval, lwval);
if (ret > 0)
{
// set<SRTSOCKET>::const_iterator i;
// SET_RESULT(rval, rnum, readfds, i);
set_result(rval, rnum, readfds);
// SET_RESULT(wval, wnum, writefds, i);
set_result(wval, wnum, writefds);
// set<SYSSOCKET>::const_iterator j;
// SET_RESULT(lrval, lrnum, lrfds, j);
set_result(lrval, lrnum, lrfds);
// SET_RESULT(lwval, lwnum, lwfds, j);
set_result(lwval, lwnum, lwfds);
}
return ret;
}
int epoll_uwait(int eid, SRT_EPOLL_EVENT* fdsSet, int fdsSize, int64_t msTimeOut)
{
return srt::CUDT::epoll_uwait(eid, fdsSet, fdsSize, msTimeOut);
}
int epoll_release(int eid)
{
return srt::CUDT::epoll_release(eid);
}
ERRORINFO& getlasterror()
{
return srt::CUDT::getlasterror();
}
int getlasterror_code()
{
return srt::CUDT::getlasterror().getErrorCode();
}
const char* getlasterror_desc()
{
return srt::CUDT::getlasterror().getErrorMessage();
}
int getlasterror_errno()
{
return srt::CUDT::getlasterror().getErrno();
}
// Get error string of a given error code
const char* geterror_desc(int code, int err)
{
srt::CUDTException e(CodeMajor(code / 1000), CodeMinor(code % 1000), err);
return (e.getErrorMessage());
}
int bstats(SRTSOCKET u, SRT_TRACEBSTATS* perf, bool clear)
{
return srt::CUDT::bstats(u, perf, clear);
}
SRT_SOCKSTATUS getsockstate(SRTSOCKET u)
{
return srt::CUDT::getsockstate(u);
}
} // namespace UDT
namespace srt
{
void setloglevel(LogLevel::type ll)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.max_level = ll;
}
void addlogfa(LogFA fa)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.enabled_fa.set(fa, true);
}
void dellogfa(LogFA fa)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.enabled_fa.set(fa, false);
}
void resetlogfa(set<LogFA> fas)
{
ScopedLock gg(srt_logger_config.mutex);
for (int i = 0; i <= SRT_LOGFA_LASTNONE; ++i)
srt_logger_config.enabled_fa.set(i, fas.count(i));
}
void resetlogfa(const int* fara, size_t fara_size)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.enabled_fa.reset();
for (const int* i = fara; i != fara + fara_size; ++i)
srt_logger_config.enabled_fa.set(*i, true);
}
void setlogstream(std::ostream& stream)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.log_stream = &stream;
}
void setloghandler(void* opaque, SRT_LOG_HANDLER_FN* handler)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.loghandler_opaque = opaque;
srt_logger_config.loghandler_fn = handler;
}
void setlogflags(int flags)
{
ScopedLock gg(srt_logger_config.mutex);
srt_logger_config.flags = flags;
}
SRT_API bool setstreamid(SRTSOCKET u, const std::string& sid)
{
return CUDT::setstreamid(u, sid);
}
SRT_API std::string getstreamid(SRTSOCKET u)
{
return CUDT::getstreamid(u);
}
int getrejectreason(SRTSOCKET u)
{
return CUDT::rejectReason(u);
}
int setrejectreason(SRTSOCKET u, int value)
{
return CUDT::rejectReason(u, value);
}
} // namespace srt
|