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
|
/*
* 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/.
*
*/
// Medium concretizations
// Just for formality. This file should be used
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <stdexcept>
#include <iterator>
#include <map>
#include <chrono>
#include <thread>
#include <srt.h>
#if !defined(_WIN32)
#include <sys/ioctl.h>
#endif
// SRT protected includes
#include "netinet_any.h"
#include "common.h"
#include "api.h"
#include "udt.h"
#include "logging.h"
#include "utilities.h"
#include "apputil.hpp"
#include "socketoptions.hpp"
#include "uriparser.hpp"
#include "testmedia.hpp"
#include "srt_compat.h"
#include "verbose.hpp"
using namespace std;
using namespace srt;
using srt_logging::KmStateStr;
using srt_logging::SockStatusStr;
#if ENABLE_BONDING
using srt_logging::MemberStatusStr;
#endif
srt::sync::atomic<bool> transmit_throw_on_interrupt {false};
srt::sync::atomic<bool> transmit_int_state {false};
int transmit_bw_report = 0;
unsigned transmit_stats_report = 0;
size_t transmit_chunk_size = SRT_LIVE_DEF_PLSIZE;
bool transmit_printformat_json = false;
srt_listen_callback_fn* transmit_accept_hook_fn = nullptr;
void* transmit_accept_hook_op = nullptr;
bool transmit_use_sourcetime = false;
int transmit_retry_connect = 0;
bool transmit_retry_always = false;
// Do not unblock. Copy this to an app that uses applog and set appropriate name.
//srt_logging::Logger applog(SRT_LOGFA_APP, srt_logger_config, "srt-test");
std::shared_ptr<SrtStatsWriter> transmit_stats_writer;
string DirectionName(SRT_EPOLL_T direction)
{
string dir_name;
if (direction & ~SRT_EPOLL_ERR)
{
if (direction & SRT_EPOLL_IN)
{
dir_name = "source";
}
if (direction & SRT_EPOLL_OUT)
{
if (!dir_name.empty())
dir_name = "relay";
else
dir_name = "target";
}
if (direction & SRT_EPOLL_ERR)
{
dir_name += "+error";
}
}
else
{
// stupid name for a case of IPE
dir_name = "stone";
}
return dir_name;
}
template<class FileBase> inline
bytevector FileRead(FileBase& ifile, size_t chunk, const string& filename)
{
bytevector data(chunk);
ifile.read(data.data(), chunk);
size_t nread = ifile.gcount();
if (nread < data.size())
data.resize(nread);
if (data.empty())
throw Source::ReadEOF(filename);
return data;
}
class FileSource: public virtual Source
{
ifstream ifile;
string filename_copy;
public:
FileSource(const string& path): ifile(path, ios::in | ios::binary), filename_copy(path)
{
if (!ifile)
throw std::runtime_error(path + ": Can't open file for reading");
}
MediaPacket Read(size_t chunk) override { return FileRead(ifile, chunk, filename_copy); }
bool IsOpen() override { return bool(ifile); }
bool End() override { return ifile.eof(); }
//~FileSource() { ifile.close(); }
};
class FileTarget: public virtual Target
{
ofstream ofile;
public:
FileTarget(const string& path): ofile(path, ios::out | ios::trunc | ios::binary) {}
void Write(const MediaPacket& data) override
{
ofile.write(data.payload.data(), data.payload.size());
#ifdef PLEASE_LOG
applog.Debug() << "FileTarget::Write: " << data.payload.size() << " written to a file";
#endif
}
bool IsOpen() override { return !!ofile; }
bool Broken() override { return !ofile.good(); }
//~FileTarget() { ofile.close(); }
void Close() override
{
#ifdef PLEASE_LOG
applog.Debug() << "FileTarget::Close";
#endif
ofile.close();
}
};
// Can't base this class on FileSource and FileTarget classes because they use two
// separate fields, which makes it unable to reliably define IsOpen(). This would
// require to use 'fstream' type field in some kind of FileCommon first. Not worth
// a shot.
class FileRelay: public Relay
{
fstream iofile;
string filename_copy;
public:
FileRelay(const string& path):
iofile(path, ios::in | ios::out | ios::binary), filename_copy(path)
{
if (!iofile)
throw std::runtime_error(path + ": Can't open file for reading");
}
MediaPacket Read(size_t chunk) override { return FileRead(iofile, chunk, filename_copy); }
void Write(const MediaPacket& data) override
{
iofile.write(data.payload.data(), data.payload.size());
}
bool IsOpen() override { return !!iofile; }
bool End() override { return iofile.eof(); }
bool Broken() override { return !iofile.good(); }
void Close() override { iofile.close(); }
};
template <class Iface> struct File;
template <> struct File<Source> { typedef FileSource type; };
template <> struct File<Target> { typedef FileTarget type; };
template <> struct File<Relay> { typedef FileRelay type; };
template <class Iface>
Iface* CreateFile(const string& name) { return new typename File<Iface>::type (name); }
void SrtCommon::InitParameters(string host, string path, map<string,string> par)
{
// Application-specific options: mode, blocking, timeout, adapter
if ( Verbose::on && !par.empty())
{
Verb() << "SRT parameters specified:\n";
for (map<string,string>::iterator i = par.begin(); i != par.end(); ++i)
{
Verb() << "\t" << i->first << " = '" << i->second << "'\n";
}
}
if (path != "")
{
// Special case handling of an unusual specification.
if (path.substr(0, 2) != "//")
{
Error("Path specification not supported for SRT (use // in front for special cases)");
}
path = path.substr(2);
#if ENABLE_BONDING
if (path == "group")
{
// Group specified, check type.
m_group_type = par["type"];
if (m_group_type == "")
{
Error("With //group, the group 'type' must be specified.");
}
vector<string> parts;
Split(m_group_type, '/', back_inserter(parts));
if (parts.size() == 0 || parts.size() > 2)
{
Error("Invalid specification for 'type' parameter");
}
if (parts.size() == 2)
{
m_group_type = parts[0];
m_group_config = parts[1];
}
vector<string> nodes;
Split(par["nodes"], ',', back_inserter(nodes));
if (nodes.empty())
{
Error("With //group, 'nodes' must specify comma-separated host:port specs.");
}
int token = 1;
// Check if correctly specified
for (string& hostport: nodes)
{
if (hostport == "")
continue;
// The attribute string, as it was embedded in another URI,
// must have had replaced the & character with another ?, so
// now all ? character, except the first one, must be now
// restored so that UriParser interprets them correctly.
size_t atq = hostport.find('?');
if (atq != string::npos)
{
while (atq+1 < hostport.size())
{
size_t next = hostport.find('?', atq+1);
if (next == string::npos)
break;
hostport[next] = '&';
atq = next;
}
}
UriParser check(hostport, UriParser::EXPECT_HOST);
if (check.host() == "" || check.port() == "")
{
Error("With //group, 'nodes' must specify comma-separated host:port specs.");
}
if (check.portno() <= 1024)
{
Error("With //group, every node in 'nodes' must have port >1024");
}
Connection cc(check.host(), check.portno());
if (check.parameters().count("weight"))
{
cc.weight = stoi(check.queryValue("weight"));
}
if (check.parameters().count("source"))
{
UriParser sourcehp(check.queryValue("source"), UriParser::EXPECT_HOST);
cc.source = CreateAddr(sourcehp.host(), sourcehp.portno());
}
// Check if there's a key with 'srto.' prefix.
UriParser::query_it start = check.parameters().lower_bound("srto.");
SRT_SOCKOPT_CONFIG* config = nullptr;
bool all_clear = true;
vector<string> fails;
map<string, string> options;
if (start != check.parameters().end())
{
for (; start != check.parameters().end(); ++start)
{
auto& y = *start;
if (y.first.substr(0, 5) != "srto.")
break;
options[y.first.substr(5)] = y.second;
}
}
if (!options.empty())
{
config = srt_create_config();
for (auto o: srt_options)
{
if (!options.count(o.name))
continue;
string value = options.at(o.name);
bool ok = o.apply<SocketOption::SRT>(config, value);
if ( !ok )
{
fails.push_back(o.name);
all_clear = false;
}
}
if (!all_clear)
{
srt_delete_config(config);
Error("With //group, failed to set options: " + Printable(fails));
}
cc.options = config;
}
cc.token = token++;
m_group_nodes.push_back(std::move(cc));
}
par.erase("type");
par.erase("nodes");
// For a group-connect specification, it's
// always the caller mode.
// XXX change it here if maybe rendezvous is also
// possible in future.
par["mode"] = "caller";
}
#endif
}
if (par.count("bind"))
{
string bindspec = par.at("bind");
UriParser u (bindspec, UriParser::EXPECT_HOST);
if ( u.scheme() != ""
|| u.path() != ""
|| !u.parameters().empty()
|| u.portno() == 0)
{
Error("Invalid syntax in 'bind' option");
}
if (u.host() != "")
par["adapter"] = u.host();
par["port"] = u.port();
par.erase("bind");
}
string adapter;
if (par.count("adapter"))
{
adapter = par.at("adapter");
}
m_mode = "default";
if (par.count("mode"))
{
m_mode = par.at("mode");
}
SocketOption::Mode mode = SrtInterpretMode(m_mode, host, adapter);
if (mode == SocketOption::FAILURE)
{
Error("Invalid mode");
}
if (!m_group_nodes.empty() && mode != SocketOption::CALLER)
{
Error("Group node specification is only available in caller mode");
}
// Fix the mode name after successful interpretation
m_mode = SocketOption::mode_names[mode];
par.erase("mode");
if (par.count("blocking"))
{
m_blocking_mode = !false_names.count(par.at("blocking"));
par.erase("blocking");
}
if (par.count("timeout"))
{
m_timeout = stoi(par.at("timeout"), 0, 0);
par.erase("timeout");
}
if (par.count("adapter"))
{
m_adapter = adapter;
par.erase("adapter");
}
else if (m_mode == "listener")
{
// For listener mode, adapter is taken from host,
// if 'adapter' parameter is not given
m_adapter = host;
}
if (par.count("tsbpd") && false_names.count(par.at("tsbpd")))
{
m_tsbpdmode = false;
}
if (par.count("port"))
{
m_outgoing_port = stoi(par.at("port"), 0, 0);
par.erase("port");
}
// That's kinda clumsy, but it must rely on the defaults.
// Default mode is live, so check if the file mode was enforced
if (par.count("transtype") == 0 || par["transtype"] != "file")
{
// If the Live chunk size was nondefault, enforce the size.
if (transmit_chunk_size != SRT_LIVE_DEF_PLSIZE)
{
if (transmit_chunk_size > SRT_LIVE_MAX_PLSIZE)
throw std::runtime_error("Chunk size in live mode exceeds 1456 bytes; this is not supported");
par["payloadsize"] = Sprint(transmit_chunk_size);
}
}
// Assigning group configuration from a special "groupconfig" attribute.
// This is the only way how you can set up this configuration at the listener side.
if (par.count("groupconfig"))
{
m_group_config = par.at("groupconfig");
par.erase("groupconfig");
}
// Fix Minversion, if specified as string
if (par.count("minversion"))
{
string v = par["minversion"];
if (v.find('.') != string::npos)
{
int version = srt::SrtParseVersion(v.c_str());
if (version == 0)
{
throw std::runtime_error(Sprint("Value for 'minversion' doesn't specify a valid version: ", v));
}
par["minversion"] = Sprint(version);
Verb() << "\tFIXED: minversion = 0x" << std::hex << std::setfill('0') << std::setw(8) << version << std::dec;
}
}
// Assign the others here.
m_options = par;
m_options["mode"] = m_mode;
}
void SrtCommon::PrepareListener(string host, int port, int backlog)
{
m_bindsock = srt_create_socket();
if (m_bindsock == SRT_ERROR)
Error("srt_create_socket");
int stat = ConfigurePre(m_bindsock);
if (stat == SRT_ERROR)
Error("ConfigurePre");
if (!m_blocking_mode)
{
srt_conn_epoll = AddPoller(m_bindsock, SRT_EPOLL_OUT);
}
auto sa = CreateAddr(host, port);
Verb() << "Binding a server on " << host << ":" << port << " ...";
stat = srt_bind(m_bindsock, sa.get(), sizeof sa);
if (stat == SRT_ERROR)
{
srt_close(m_bindsock);
Error("srt_bind");
}
Verb() << " listen... " << VerbNoEOL;
stat = srt_listen(m_bindsock, backlog);
if (stat == SRT_ERROR)
{
srt_close(m_bindsock);
Error("srt_listen");
}
}
void SrtCommon::StealFrom(SrtCommon& src)
{
// This is used when SrtCommon class designates a listener
// object that is doing Accept in appropriate direction class.
// The new object should get the accepted socket.
m_direction = src.m_direction;
m_blocking_mode = src.m_blocking_mode;
m_timeout = src.m_timeout;
m_tsbpdmode = src.m_tsbpdmode;
m_options = src.m_options;
m_bindsock = SRT_INVALID_SOCK; // no listener
m_sock = src.m_sock;
src.m_sock = SRT_INVALID_SOCK; // STEALING
}
void SrtCommon::AcceptNewClient()
{
sockaddr_any scl;
::transmit_throw_on_interrupt = true;
if (!m_blocking_mode)
{
Verb() << "[ASYNC] (conn=" << srt_conn_epoll << ")";
int len = 2;
SRTSOCKET ready[2];
while (srt_epoll_wait(srt_conn_epoll, 0, 0, ready, &len, 1000, 0, 0, 0, 0) == -1)
{
if (::transmit_int_state)
Error("srt_epoll_wait for srt_accept: interrupt");
if (srt_getlasterror(NULL) == SRT_ETIMEOUT)
continue;
Error("srt_epoll_wait(srt_conn_epoll)");
}
Verb() << "[EPOLL: " << len << " sockets] " << VerbNoEOL;
}
Verb() << " accept..." << VerbNoEOL;
m_sock = srt_accept(m_bindsock, (scl.get()), (&scl.len));
if (m_sock == SRT_INVALID_SOCK)
{
srt_close(m_bindsock);
m_bindsock = SRT_INVALID_SOCK;
Error("srt_accept");
}
#if ENABLE_BONDING
if (m_sock & SRTGROUP_MASK)
{
m_listener_group = true;
if (m_group_config != "")
{
// Don't break the connection basing on this, just ignore.
Verb() << " (ignoring setting group config: '" << m_group_config << "') " << VerbNoEOL;
}
// There might be added a poller, remove it.
// We need it work different way.
#ifndef SRT_OLD_APP_READER
if (srt_epoll != -1)
{
Verb() << "(Group: erasing epoll " << srt_epoll << ") " << VerbNoEOL;
srt_epoll_release(srt_epoll);
}
// Don't add any sockets, they will have to be added
// anew every time again.
srt_epoll = srt_epoll_create();
#endif
// Group data must have a size of at least 1
// otherwise the srt_group_data() call will fail
if (m_group_data.empty())
m_group_data.resize(1);
Verb() << " connected(group epoll " << srt_epoll <<").";
}
else
#endif
{
sockaddr_any peeraddr(AF_INET6);
string peer = "<?PEER?>";
if (-1 != srt_getpeername(m_sock, (peeraddr.get()), (&peeraddr.len)))
{
peer = peeraddr.str();
}
sockaddr_any agentaddr(AF_INET6);
string agent = "<?AGENT?>";
if (-1 != srt_getsockname(m_sock, (agentaddr.get()), (&agentaddr.len)))
{
agent = agentaddr.str();
}
Verb() << " connected [" << agent << "] <-- " << peer;
}
::transmit_throw_on_interrupt = false;
// ConfigurePre is done on bindsock, so any possible Pre flags
// are DERIVED by sock. ConfigurePost is done exclusively on sock.
int stat = ConfigurePost(m_sock);
if (stat == SRT_ERROR)
Error("ConfigurePost");
}
static string PrintEpollEvent(int events, int et_events)
{
static pair<int, const char*> const namemap [] = {
make_pair(SRT_EPOLL_IN, "R"),
make_pair(SRT_EPOLL_OUT, "W"),
make_pair(SRT_EPOLL_ERR, "E"),
make_pair(SRT_EPOLL_UPDATE, "U")
};
ostringstream os;
int N = (int)Size(namemap);
for (int i = 0; i < N; ++i)
{
if (events & namemap[i].first)
{
os << "[";
if (et_events & namemap[i].first)
os << "^";
os << namemap[i].second << "]";
}
}
return os.str();
}
void SrtCommon::Init(string host, int port, string path, map<string,string> par, SRT_EPOLL_OPT dir)
{
m_direction = dir;
InitParameters(host, path, par);
int backlog = 1;
if (m_mode == "listener" && par.count("groupconnect")
&& true_names.count(par["groupconnect"]))
{
backlog = 10;
}
Verb() << "Opening SRT " << DirectionName(dir) << " " << m_mode
<< "(" << (m_blocking_mode ? "" : "non-") << "blocking,"
<< " backlog=" << backlog << ") on "
<< host << ":" << port;
try
{
if (m_mode == "caller")
{
if (m_group_nodes.empty())
{
OpenClient(host, port);
}
#if ENABLE_BONDING
else
{
OpenGroupClient(); // Source data are in the fields already.
}
#endif
}
else if (m_mode == "listener")
OpenServer(m_adapter, port, backlog);
else if (m_mode == "rendezvous")
OpenRendezvous(m_adapter, host, port);
else
{
throw std::invalid_argument("Invalid 'mode'. Use 'client' or 'server'");
}
}
catch (...)
{
// This is an in-constructor-called function, so
// when the exception is thrown, the destructor won't
// close the sockets. This intercepts the exception
// to close them.
Verb() << "Open FAILED - closing SRT sockets";
if (m_bindsock != SRT_INVALID_SOCK)
srt_close(m_bindsock);
if (m_sock != SRT_INVALID_SOCK)
srt_close(m_sock);
m_sock = m_bindsock = SRT_INVALID_SOCK;
throw;
}
int pbkeylen = 0;
SRT_KM_STATE kmstate, snd_kmstate, rcv_kmstate;
int len = sizeof (int);
srt_getsockflag(m_sock, SRTO_PBKEYLEN, &pbkeylen, &len);
srt_getsockflag(m_sock, SRTO_KMSTATE, &kmstate, &len);
srt_getsockflag(m_sock, SRTO_SNDKMSTATE, &snd_kmstate, &len);
srt_getsockflag(m_sock, SRTO_RCVKMSTATE, &rcv_kmstate, &len);
Verb() << "ENCRYPTION status: " << KmStateStr(kmstate)
<< " (SND:" << KmStateStr(snd_kmstate) << " RCV:" << KmStateStr(rcv_kmstate)
<< ") PBKEYLEN=" << pbkeylen;
// Display some selected options on the socket.
if (Verbose::on)
{
int64_t bandwidth = 0;
int latency = 0;
bool blocking_snd = false, blocking_rcv = false;
int dropdelay = 0;
int size_int = sizeof (int), size_int64 = sizeof (int64_t), size_bool = sizeof (bool);
char packetfilter[100] = "";
int packetfilter_size = 100;
srt_getsockflag(m_sock, SRTO_MAXBW, &bandwidth, &size_int64);
srt_getsockflag(m_sock, SRTO_RCVLATENCY, &latency, &size_int);
srt_getsockflag(m_sock, SRTO_RCVSYN, &blocking_rcv, &size_bool);
srt_getsockflag(m_sock, SRTO_SNDSYN, &blocking_snd, &size_bool);
srt_getsockflag(m_sock, SRTO_SNDDROPDELAY, &dropdelay, &size_int);
srt_getsockflag(m_sock, SRTO_PACKETFILTER, (packetfilter), (&packetfilter_size));
Verb() << "OPTIONS: maxbw=" << bandwidth << " rcvlatency=" << latency << boolalpha
<< " blocking{rcv=" << blocking_rcv << " snd=" << blocking_snd
<< "} snddropdelay=" << dropdelay << " packetfilter=" << packetfilter;
}
if (!m_blocking_mode)
{
// Don't add new epoll if already created as a part
// of group management: if (srt_epoll == -1)...
if (m_mode == "caller")
dir = (dir | SRT_EPOLL_UPDATE);
Verb() << "NON-BLOCKING MODE - SUB FOR " << PrintEpollEvent(dir, 0);
srt_epoll = AddPoller(m_sock, dir);
}
}
int SrtCommon::AddPoller(SRTSOCKET socket, int modes)
{
int pollid = srt_epoll_create();
if (pollid == -1)
throw std::runtime_error("Can't create epoll in nonblocking mode");
Verb() << "EPOLL: creating eid=" << pollid << " and adding @" << socket
<< " in " << DirectionName(SRT_EPOLL_OPT(modes)) << " mode";
srt_epoll_add_usock(pollid, socket, &modes);
return pollid;
}
int SrtCommon::ConfigurePost(SRTSOCKET sock)
{
bool yes = m_blocking_mode;
int result = 0;
if (m_direction & SRT_EPOLL_OUT)
{
Verb() << "Setting SND blocking mode: " << boolalpha << yes << " timeout=" << m_timeout;
result = srt_setsockopt(sock, 0, SRTO_SNDSYN, &yes, sizeof yes);
if (result == -1)
{
#ifdef PLEASE_LOG
extern srt_logging::Logger applog;
applog.Error() << "ERROR SETTING OPTION: SRTO_SNDSYN";
#endif
return result;
}
if (m_timeout)
result = srt_setsockopt(sock, 0, SRTO_SNDTIMEO, &m_timeout, sizeof m_timeout);
if (result == -1)
{
#ifdef PLEASE_LOG
extern srt_logging::Logger applog;
applog.Error() << "ERROR SETTING OPTION: SRTO_SNDTIMEO";
#endif
return result;
}
}
if (m_direction & SRT_EPOLL_IN)
{
Verb() << "Setting RCV blocking mode: " << boolalpha << yes << " timeout=" << m_timeout;
result = srt_setsockopt(sock, 0, SRTO_RCVSYN, &yes, sizeof yes);
if (result == -1)
return result;
if (m_timeout)
result = srt_setsockopt(sock, 0, SRTO_RCVTIMEO, &m_timeout, sizeof m_timeout);
else
{
int timeout = 1000;
result = srt_setsockopt(sock, 0, SRTO_RCVTIMEO, &timeout, sizeof timeout);
}
if (result == -1)
return result;
}
// host is only checked for emptiness and depending on that the connection mode is selected.
// Here we are not exactly interested with that information.
vector<string> failures;
SrtConfigurePost(sock, m_options, &failures);
if (!failures.empty())
{
if (Verbose::on)
{
Verb() << "WARNING: failed to set options: ";
copy(failures.begin(), failures.end(), ostream_iterator<string>(*Verbose::cverb, ", "));
Verb();
}
}
return 0;
}
int SrtCommon::ConfigurePre(SRTSOCKET sock)
{
int result = 0;
int no = 0;
if (!m_tsbpdmode)
{
result = srt_setsockopt(sock, 0, SRTO_TSBPDMODE, &no, sizeof no);
if (result == -1)
return result;
}
// Let's pretend async mode is set this way.
// This is for asynchronous connect.
int maybe = m_blocking_mode;
result = srt_setsockopt(sock, 0, SRTO_RCVSYN, &maybe, sizeof maybe);
if (result == -1)
return result;
// host is only checked for emptiness and depending on that the connection mode is selected.
// Here we are not exactly interested with that information.
vector<string> failures;
// NOTE: here host = "", so the 'connmode' will be returned as LISTENER always,
// but it doesn't matter here. We don't use 'connmode' for anything else than
// checking for failures.
SocketOption::Mode conmode = SrtConfigurePre(sock, "", m_options, &failures);
if (conmode == SocketOption::FAILURE)
{
if (Verbose::on )
{
Verb() << "WARNING: failed to set options: ";
copy(failures.begin(), failures.end(), ostream_iterator<string>(*Verbose::cverb, ", "));
Verb();
}
return SRT_ERROR;
}
return 0;
}
void SrtCommon::SetupAdapter(const string& host, int port)
{
Verb() << "Binding the caller socket to " << host << ":" << port << " ...";
auto lsa = CreateAddr(host, port);
int stat = srt_bind(m_sock, lsa.get(), sizeof lsa);
if (stat == SRT_ERROR)
Error("srt_bind");
}
void SrtCommon::OpenClient(string host, int port)
{
PrepareClient();
if (m_outgoing_port || m_adapter != "")
{
SetupAdapter(m_adapter, m_outgoing_port);
}
ConnectClient(host, port);
}
void SrtCommon::PrepareClient()
{
m_sock = srt_create_socket();
if (m_sock == SRT_ERROR)
Error("srt_create_socket");
int stat = ConfigurePre(m_sock);
if (stat == SRT_ERROR)
Error("ConfigurePre");
if (!m_blocking_mode)
{
srt_conn_epoll = AddPoller(m_sock, SRT_EPOLL_CONNECT | SRT_EPOLL_ERR);
}
}
#if ENABLE_BONDING
void TransmitGroupSocketConnect(void* srtcommon, SRTSOCKET sock, int error, const sockaddr* /*peer*/, int token)
{
SrtCommon* that = (SrtCommon*)srtcommon;
if (error == SRT_SUCCESS)
{
return; // nothing to do for a successful socket
}
#ifdef PLEASE_LOG
applog.Debug("connect callback: error on @", sock, " erc=", error, " token=", token);
#endif
/* Example: identify by target address
sockaddr_any peersa = peer;
sockaddr_any agentsa;
bool haveso = (srt_getsockname(sock, agentsa.get(), &agentsa.len) != -1);
*/
for (auto& n: that->m_group_nodes)
{
if (n.token != -1 && n.token == token)
{
n.error = error;
n.reason = srt_getrejectreason(sock);
return;
}
/*
bool isso = haveso && !n.source.empty();
if (n.target == peersa && (!isso || n.source.equal_address(agentsa)))
{
Verb() << " (by target)" << VerbNoEOL;
n.error = error;
n.reason = srt_getrejectreason(sock);
return;
}
*/
}
Verb() << " IPE: LINK NOT FOUND???]";
}
SRT_GROUP_TYPE ResolveGroupType(const string& name)
{
static struct
{
string name;
SRT_GROUP_TYPE type;
} table [] {
#define E(n) {#n, SRT_GTYPE_##n}
E(BROADCAST),
E(BACKUP)
#undef E
};
typedef int charxform(int c);
string uname;
transform(name.begin(), name.end(), back_inserter(uname), (charxform*)(&toupper));
for (auto& x: table)
if (x.name == uname)
return x.type;
return SRT_GTYPE_UNDEFINED;
}
void SrtCommon::OpenGroupClient()
{
SRT_GROUP_TYPE type = ResolveGroupType(m_group_type);
if (type == SRT_GTYPE_UNDEFINED)
{
Error("With //group, type='" + m_group_type + "' undefined");
}
m_sock = srt_create_group(type);
if (m_sock == -1)
Error("srt_create_group");
srt_connect_callback(m_sock, &TransmitGroupSocketConnect, this);
int stat = -1;
if (m_group_config != "")
{
Verb() << "Ignoring setting group config: '" << m_group_config;
}
stat = ConfigurePre(m_sock);
if ( stat == SRT_ERROR )
Error("ConfigurePre");
if (!m_blocking_mode)
{
// Note: here the GROUP is added to the poller.
srt_conn_epoll = AddPoller(m_sock, SRT_EPOLL_CONNECT | SRT_EPOLL_ERR);
}
// Don't check this. Should this fail, the above would already.
// XXX Now do it regardless whether it's blocking or non-blocking
// mode - reading from group is currently manually from every socket.
srt_epoll = srt_epoll_create();
// ConnectClient can't be used here, the code must
// be more-less repeated. In this case the situation
// that not all connections can be established is tolerated,
// the only case of error is when none of the connections
// can be established.
bool any_node = false;
Verb() << "REDUNDANT connections with " << m_group_nodes.size() << " nodes:";
if (m_group_data.empty())
m_group_data.resize(1);
vector<SRT_SOCKGROUPCONFIG> targets;
int namelen = sizeof (sockaddr_any);
Verb() << "Connecting to nodes:";
int i = 1;
for (Connection& c: m_group_nodes)
{
auto sa = CreateAddr(c.host, c.port);
c.target = sa;
Verb() << "\t[" << c.token << "] " << c.host << ":" << c.port << VerbNoEOL;
vector<string> extras;
if (c.weight)
extras.push_back(Sprint("weight=", c.weight));
if (!c.source.empty())
extras.push_back("source=" + c.source.str());
if (!extras.empty())
{
Verb() << "?" << extras[0] << VerbNoEOL;
for (size_t ii = 1; ii < extras.size(); ++ii)
Verb() << "&" << extras[ii] << VerbNoEOL;
}
Verb();
++i;
const sockaddr* source = c.source.empty() ? nullptr : c.source.get();
SRT_SOCKGROUPCONFIG gd = srt_prepare_endpoint(source, sa.get(), namelen);
gd.weight = c.weight;
gd.config = c.options;
targets.push_back(gd);
}
::transmit_throw_on_interrupt = true;
for (;;) // REPEATABLE BLOCK
{
Connect_Again:
Verb() << "Waiting for group connection... " << VerbNoEOL;
int fisock = srt_connect_group(m_sock, targets.data(), int(targets.size()));
if (fisock == SRT_ERROR)
{
// Complete the error information for every member
ostringstream out;
set<int> reasons;
for (Connection& c: m_group_nodes)
{
if (c.error != SRT_SUCCESS)
{
out << "[" << c.token << "] " << c.host << ":" << c.port;
if (!c.source.empty())
out << "[[" << c.source.str() << "]]";
out << ": " << srt_strerror(c.error, 0) << ": " << srt_rejectreason_str(c.reason) << endl;
}
reasons.insert(c.reason);
}
if (transmit_retry_connect && (transmit_retry_always || (reasons.size() == 1 && *reasons.begin() == SRT_REJ_TIMEOUT)))
{
if (transmit_retry_connect != -1)
--transmit_retry_connect;
Verb() << "...all links timeout, retrying (" << transmit_retry_connect << ")...";
continue;
}
Error("srt_connect_group, nodes:\n" + out.str());
}
else
{
Verb() << "[ASYNC] will wait..." << VerbNoEOL;
}
break;
}
if (m_blocking_mode)
{
Verb() << "SUCCESSFUL";
}
else
{
Verb() << "INITIATED [ASYNC]";
}
// Configuration change applied on a group should
// spread the setting on all sockets.
ConfigurePost(m_sock);
for (size_t j = 0; j < targets.size(); ++j)
{
// As m_group_nodes is simply transformed into 'targets',
// one index can be used to index them all. You don't
// have to check if they have equal addresses because they
// are equal by definition.
if (targets[j].id != -1 && targets[j].errorcode == SRT_SUCCESS)
{
m_group_nodes[j].socket = targets[j].id;
}
}
// Now check which sockets were successful, only those
// should be added to epoll.
size_t size = m_group_data.size();
stat = srt_group_data(m_sock, m_group_data.data(), &size);
if (stat == -1 && size > m_group_data.size())
{
// Just too small buffer. Resize and continue.
m_group_data.resize(size);
stat = srt_group_data(m_sock, m_group_data.data(), &size);
}
if (stat == -1)
{
Error("srt_group_data");
}
m_group_data.resize(size);
for (size_t j = 0; j < m_group_nodes.size(); ++j)
{
SRTSOCKET insock = m_group_nodes[j].socket;
if (insock == -1)
{
Verb() << "TARGET '" << sockaddr_any(targets[i].peeraddr).str() << "' connection failed.";
continue;
}
// Have socket, store it into the group socket array.
any_node = true;
}
if (!any_node)
Error("All connections failed");
// Wait for REAL connected state if nonblocking mode, for AT LEAST one node.
if (!m_blocking_mode)
{
Verb() << "[ASYNC] " << VerbNoEOL;
// SPIN-WAITING version. Don't use it unless you know what you're doing.
// SpinWaitAsync();
// Socket readiness for connection is checked by polling on WRITE allowed sockets.
int len1 = 2, len2 = 2;
SRTSOCKET ready_conn[2], ready_err[2];
if (srt_epoll_wait(srt_conn_epoll,
ready_err, &len2,
ready_conn, &len1,
-1, // Wait infinitely
NULL, NULL,
NULL, NULL) != -1)
{
Verb() << "[C]" << VerbNoEOL;
for (int ii = 0; ii < len1; ++ii)
Verb() << " " << ready_conn[ii] << VerbNoEOL;
Verb() << "[E]" << VerbNoEOL;
for (int ii = 0; ii < len2; ++ii)
Verb() << " " << ready_err[ii] << VerbNoEOL;
Verb() << "";
// We are waiting for one entity to be ready so it's either
// in one or the other
if (find(ready_err, ready_err+len2, m_sock) != ready_err+len2)
{
Verb() << "[EPOLL: " << len2 << " entities FAILED]";
// Complete the error information for every member
ostringstream out;
set<int> reasons;
for (Connection& c: m_group_nodes)
{
if (c.error != SRT_SUCCESS)
{
out << "[" << c.token << "] " << c.host << ":" << c.port;
if (!c.source.empty())
out << "[[" << c.source.str() << "]]";
out << ": " << srt_strerror(c.error, 0) << ": " << srt_rejectreason_str(c.reason) << endl;
}
reasons.insert(c.reason);
}
if (transmit_retry_connect && (transmit_retry_always || (reasons.size() == 1 && *reasons.begin() == SRT_REJ_TIMEOUT)))
{
if (transmit_retry_connect != -1)
--transmit_retry_connect;
Verb() << "...all links timeout, retrying NOW (" << transmit_retry_connect << ")...";
goto Connect_Again;
}
Error("srt_connect_group, nodes:\n" + out.str());
}
else if (find(ready_conn, ready_conn+len1, m_sock) != ready_conn+len1)
{
Verb() << "[EPOLL: " << len1 << " entities] " << VerbNoEOL;
}
else
{
Error("Group: SPURIOUS epoll readiness");
}
}
else
{
Error("srt_epoll_wait");
}
}
stat = ConfigurePost(m_sock);
if (stat == -1)
{
// This kind of error must reject the whole operation.
// Usually you'll get this error on the first socket,
// and doing this on the others would result in the same.
Error("ConfigurePost");
}
::transmit_throw_on_interrupt = false;
Verb() << "Group connection report:";
for (auto& d: m_group_data)
{
// id, status, result, peeraddr
Verb() << "@" << d.id << " <" << SockStatusStr(d.sockstate) << "> (=" << d.result << ") PEER:"
<< sockaddr_any((sockaddr*)&d.peeraddr, sizeof d.peeraddr).str();
}
// Prepare group data for monitoring the group status.
m_group_data.resize(m_group_nodes.size());
}
#endif
/*
This may be used sometimes for testing, but it's nonportable.
void SrtCommon::SpinWaitAsync()
{
static string udt_status_names [] = {
"INIT" , "OPENED", "LISTENING", "CONNECTING", "CONNECTED", "BROKEN", "CLOSING", "CLOSED", "NONEXIST"
};
for (;;)
{
SRT_SOCKSTATUS state = srt_getsockstate(m_sock);
if (int(state) < SRTS_CONNECTED)
{
if (Verbose::on)
Verb() << state;
usleep(250000);
continue;
}
else if (int(state) > SRTS_CONNECTED)
{
Error("UDT::connect status=" + udt_status_names[state]);
}
return;
}
}
*/
struct TransmitErrorReason
{
int error;
int reason;
};
static std::map<SRTSOCKET, TransmitErrorReason> transmit_error_storage;
static void TransmitConnectCallback(void*, SRTSOCKET socket, int errorcode, const sockaddr* /*peer*/, int /*token*/)
{
int reason = srt_getrejectreason(socket);
transmit_error_storage[socket] = TransmitErrorReason { errorcode, reason };
Verb() << "[Connection error reported on @" << socket << "]";
}
void SrtCommon::ConnectClient(string host, int port)
{
auto sa = CreateAddr(host, port);
Verb() << "Connecting to " << host << ":" << port << " ... " << VerbNoEOL;
if (!m_blocking_mode)
{
srt_connect_callback(m_sock, &TransmitConnectCallback, 0);
}
int stat = -1;
for (;;)
{
::transmit_throw_on_interrupt = true;
stat = srt_connect(m_sock, sa.get(), sizeof sa);
::transmit_throw_on_interrupt = false;
if (stat == SRT_ERROR)
{
int reason = srt_getrejectreason(m_sock);
#if PLEASE_LOG
LOGP(applog.Error, "ERROR reported by srt_connect - closing socket @", m_sock,
" reject reason: ", reason, ": ", srt_rejectreason_str(reason));
#endif
if (transmit_retry_connect && (transmit_retry_always || reason == SRT_REJ_TIMEOUT))
{
if (transmit_retry_connect != -1)
--transmit_retry_connect;
Verb() << "...timeout, retrying (" << transmit_retry_connect << ")...";
continue;
}
srt_close(m_sock);
Error("srt_connect", reason);
}
break;
}
// Wait for REAL connected state if nonblocking mode
if (!m_blocking_mode)
{
Verb() << "[ASYNC] " << VerbNoEOL;
// SPIN-WAITING version. Don't use it unless you know what you're doing.
// SpinWaitAsync();
// Socket readiness for connection is checked by polling on WRITE allowed sockets.
int lenc = 2, lene = 2;
SRTSOCKET ready_connect[2], ready_error[2];
if (srt_epoll_wait(srt_conn_epoll, ready_error, &lene, ready_connect, &lenc, -1, 0, 0, 0, 0) != -1)
{
// We should have just one socket, so check whatever socket
// is in the transmit_error_storage.
if (!transmit_error_storage.empty())
{
Verb() << "[CALLBACK(error): " << VerbNoEOL;
int error, reason;
bool failed = false;
for (pair<const SRTSOCKET, TransmitErrorReason>& e: transmit_error_storage)
{
Verb() << "{@" << e.first << " error=" << e.second.error
<< " reason=" << e.second.reason << "} " << VerbNoEOL;
error = e.second.error;
reason = e.second.reason;
if (error != SRT_SUCCESS)
failed = true;
}
Verb() << "]";
transmit_error_storage.clear();
if (failed)
Error("srt_connect(async/cb)", reason, error);
}
if (lene > 0)
{
Verb() << "[EPOLL(error): " << lene << " sockets]";
int reason = srt_getrejectreason(ready_error[0]);
Error("srt_connect(async)", reason, SRT_ECONNREJ);
}
Verb() << "[EPOLL: " << lenc << " sockets] " << VerbNoEOL;
}
else
{
transmit_error_storage.clear();
Error("srt_epoll_wait(srt_conn_epoll)");
}
transmit_error_storage.clear();
}
Verb() << " connected.";
stat = ConfigurePost(m_sock);
if (stat == SRT_ERROR)
Error("ConfigurePost");
}
void SrtCommon::Error(string src, int reason, int force_result)
{
int errnov = 0;
const int result = force_result == 0 ? srt_getlasterror(&errnov) : force_result;
if (result == SRT_SUCCESS)
{
cerr << "\nERROR (app): " << src << endl;
throw std::runtime_error(src);
}
string message = srt_strerror(result, errnov);
if (result == SRT_ECONNREJ)
{
if ( Verbose::on )
Verb() << "FAILURE\n" << src << ": [" << result << "] "
<< "Connection rejected: [" << int(reason) << "]: "
<< srt_rejectreason_str(reason);
else
cerr << "\nERROR #" << result
<< ": Connection rejected: [" << int(reason) << "]: "
<< srt_rejectreason_str(reason);
}
else
{
if ( Verbose::on )
Verb() << "FAILURE\n" << src << ": [" << result << "." << errnov << "] " << message;
else
cerr << "\nERROR #" << result << "." << errnov << ": " << message << endl;
}
throw TransmissionError("error: " + src + ": " + message);
}
void SrtCommon::SetupRendezvous(string adapter, string host, int port)
{
sockaddr_any target = CreateAddr(host, port);
if (target.family() == AF_UNSPEC)
{
Error("Unable to resolve target host: " + host);
}
bool yes = true;
srt_setsockopt(m_sock, 0, SRTO_RENDEZVOUS, &yes, sizeof yes);
const int outport = m_outgoing_port ? m_outgoing_port : port;
// Prefer the same IPv as target host
auto localsa = CreateAddr(adapter, outport, target.family());
string showhost = adapter;
if (showhost == "")
showhost = "ANY";
if (target.family() == AF_INET6)
showhost = "[" + showhost + "]";
Verb() << "Binding rendezvous: " << showhost << ":" << outport << " ...";
int stat = srt_bind(m_sock, localsa.get(), localsa.size());
if (stat == SRT_ERROR)
{
srt_close(m_sock);
Error("srt_bind");
}
}
void SrtCommon::Close()
{
#if PLEASE_LOG
extern srt_logging::Logger applog;
LOGP(applog.Error, "CLOSE requested - closing socket @", m_sock);
#endif
bool any = false;
bool yes = true;
if (m_sock != SRT_INVALID_SOCK)
{
Verb() << "SrtCommon: DESTROYING CONNECTION, closing socket (rt%" << m_sock << ")...";
srt_setsockflag(m_sock, SRTO_SNDSYN, &yes, sizeof yes);
srt_close(m_sock);
any = true;
}
if (m_bindsock != SRT_INVALID_SOCK)
{
Verb() << "SrtCommon: DESTROYING SERVER, closing socket (ls%" << m_bindsock << ")...";
// Set sndsynchro to the socket to synch-close it.
srt_setsockflag(m_bindsock, SRTO_SNDSYN, &yes, sizeof yes);
srt_close(m_bindsock);
any = true;
}
if (any)
Verb() << "SrtCommon: ... done.";
}
SrtCommon::~SrtCommon()
{
Close();
}
#if ENABLE_BONDING
void SrtCommon::UpdateGroupStatus(const SRT_SOCKGROUPDATA* grpdata, size_t grpdata_size)
{
if (!grpdata)
{
// This happens when you passed too small array. Treat this as error and stop.
cerr << "ERROR: broadcast group update reports " << grpdata_size
<< " existing sockets, but app registerred only " << m_group_nodes.size() << endl;
Error("Too many unpredicted sockets in the group");
}
// Clear the active flag in all nodes so that they are reactivated
// if they are in the group list, REGARDLESS OF THE STATUS. We need to
// see all connections that are in the nodes, but not in the group,
// and this one would have to be activated.
const SRT_SOCKGROUPDATA* gend = grpdata + grpdata_size;
for (auto& n: m_group_nodes)
{
bool active = (find_if(grpdata, gend,
[&n] (const SRT_SOCKGROUPDATA& sg) { return sg.id == n.socket; }) != gend);
if (!active)
n.socket = SRT_INVALID_SOCK;
}
// Note: sockets are not necessarily in the same order. Find
// the socket by id.
for (size_t i = 0; i < grpdata_size; ++i)
{
const SRT_SOCKGROUPDATA& d = grpdata[i];
SRTSOCKET id = d.id;
SRT_SOCKSTATUS status = d.sockstate;
int result = d.result;
SRT_MEMBERSTATUS mstatus = d.memberstate;
if (result != -1 && status == SRTS_CONNECTED)
{
// Short report with the state.
Verb() << "G@" << id << "<" << MemberStatusStr(mstatus) << "> " << VerbNoEOL;
continue;
}
// id, status, result, peeraddr
Verb() << "\n\tG@" << id << " <" << SockStatusStr(status) << "/" << MemberStatusStr(mstatus) << "> (=" << result << ") PEER:"
<< sockaddr_any((sockaddr*)&d.peeraddr, sizeof d.peeraddr).str() << VerbNoEOL;
if (status >= SRTS_BROKEN)
{
Verb() << "NOTE: socket @" << id << " is pending for destruction, waiting for it.";
}
}
// This was only informative. Now we check all nodes if they
// are not active
int i = 1;
for (auto& n: m_group_nodes)
{
if (n.error != SRT_SUCCESS)
{
Verb() << "[" << i << "] CONNECTION FAILURE to '" << n.host << ":" << n.port << "': "
<< srt_strerror(n.error, 0) << ":" << srt_rejectreason_str(n.reason);
}
// Check which nodes are no longer active and activate them.
if (n.socket != SRT_INVALID_SOCK)
continue;
auto sa = CreateAddr(n.host, n.port);
Verb() << "[" << i << "] RECONNECTING to node " << n.host << ":" << n.port << " ... " << VerbNoEOL;
++i;
n.error = SRT_SUCCESS;
n.reason = SRT_REJ_UNKNOWN;
const sockaddr* source = n.source.empty() ? nullptr : n.source.get();
SRT_SOCKGROUPCONFIG gd = srt_prepare_endpoint(source, sa.get(), sa.size());
gd.weight = n.weight;
gd.config = n.options;
gd.token = n.token;
int fisock = srt_connect_group(m_sock, &gd, 1);
if (fisock == SRT_ERROR)
{
// Whatever. Skip the node.
Verb() << "FAILED: ";
}
else
{
// Have socket, store it into the group socket array.
n.socket = gd.id;
}
}
}
#endif
SrtSource::SrtSource(string host, int port, std::string path, const map<string,string>& par)
{
Init(host, port, path, par, SRT_EPOLL_IN);
ostringstream os;
os << host << ":" << port;
hostport_copy = os.str();
}
static void PrintSrtStats(SRTSOCKET sock, bool clr, bool bw, bool stats)
{
CBytePerfMon perf;
// clear only if stats report is to be read
srt_bstats(sock, &perf, clr);
if (bw)
cout << transmit_stats_writer->WriteBandwidth(perf.mbpsBandwidth);
if (stats)
cout << transmit_stats_writer->WriteStats(sock, perf);
}
#ifdef SRT_OLD_APP_READER
// NOTE: 'output' is expected to be EMPTY here.
bool SrtSource::GroupCheckPacketAhead(bytevector& output)
{
bool status = false;
vector<SRTSOCKET> past_ahead;
// This map no longer maps only ahead links.
// Here are all links, and whether ahead, it's defined by the sequence.
for (auto i = m_group_positions.begin(); i != m_group_positions.end(); ++i)
{
// i->first: socket ID
// i->second: ReadPos { sequence, packet }
// We are not interested with the socket ID because we
// aren't going to read from it - we have the packet already.
ReadPos& a = i->second;
int seqdiff = CSeqNo::seqcmp(a.sequence, m_group_seqno);
if ( seqdiff == 1)
{
// The very next packet. Return it.
m_group_seqno = a.sequence;
Verb() << " (SRT group: ahead delivery %" << a.sequence << " from @" << i->first << ")";
swap(output, a.packet);
status = true;
}
else if (seqdiff < 1 && !a.packet.empty())
{
Verb() << " (@" << i->first << " dropping collected ahead %" << a.sequence << ")";
a.packet.clear();
}
// In case when it's >1, keep it in ahead
}
return status;
}
static string DisplayEpollResults(const std::set<SRTSOCKET>& sockset, std::string prefix)
{
typedef set<SRTSOCKET> fset_t;
ostringstream os;
os << prefix << " ";
for (fset_t::const_iterator i = sockset.begin(); i != sockset.end(); ++i)
{
os << "@" << *i << " ";
}
return os.str();
}
bytevector SrtSource::GroupRead(size_t chunk)
{
// Read the current group status. m_sock is here the group id.
bytevector output;
// Later iteration over it might be less efficient than
// by vector, but we'll also often try to check a single id
// if it was ever seen broken, so that it's skipped.
set<SRTSOCKET> broken;
RETRY_READING:
size_t size = m_group_data.size();
int stat = srt_group_data(m_sock, m_group_data.data(), &size);
if (stat == -1 && size > m_group_data.size())
{
// Just too small buffer. Resize and continue.
m_group_data.resize(size);
stat = srt_group_data(m_sock, m_group_data.data(), &size);
}
else
{
// Downsize if needed.
m_group_data.resize(size);
}
if (stat == -1) // Also after the above fix
{
Error(UDT::getlasterror(), "FAILURE when reading group data");
}
if (size == 0)
{
Error("No sockets in the group - disconnected");
}
bool connected = false;
for (auto& d: m_group_data)
{
if (d.status == SRTS_CONNECTED)
{
connected = true;
break;
}
}
if (!connected)
{
Error("All sockets in the group disconnected");
}
if (Verbose::on)
{
for (auto& d: m_group_data)
{
if (d.status != SRTS_CONNECTED)
// id, status, result, peeraddr
Verb() << "@" << d.id << " <" << SockStatusStr(d.status) << "> (=" << d.result << ") PEER:"
<< sockaddr_any((sockaddr*)&d.peeraddr, sizeof d.peeraddr).str();
}
}
// Check first the ahead packets if you have any to deliver.
if (m_group_seqno != -1 && !m_group_positions.empty())
{
bytevector ahead_packet;
// This function also updates the group sequence pointer.
if (GroupCheckPacketAhead(ahead_packet))
return move(ahead_packet);
}
// LINK QUALIFICATION NAMES:
//
// HORSE: Correct link, which delivers the very next sequence.
// Not necessarily this link is currently active.
//
// KANGAROO: Got some packets dropped and the sequence number
// of the packet jumps over the very next sequence and delivers
// an ahead packet.
//
// ELEPHANT: Is not ready to read, while others are, or reading
// up to the current latest delivery sequence number does not
// reach this sequence and the link becomes non-readable earlier.
// The above condition has ruled out one kangaroo and turned it
// into a horse.
// Below there's a loop that will try to extract packets. Kangaroos
// will be among the polled ones because skipping them risks that
// the elephants will take over the reading. Links already known as
// elephants will be also polled in an attempt to revitalize the
// connection that experienced just a short living choking.
//
// After polling we attempt to read from every link that reported
// read-readiness and read at most up to the sequence equal to the
// current delivery sequence.
// Links that deliver a packet below that sequence will be retried
// until they deliver no more packets or deliver the packet of
// expected sequence. Links that don't have a record in m_group_positions
// and report readiness will be always read, at least to know what
// sequence they currently stand on.
//
// Links that are already known as kangaroos will be polled, but
// no reading attempt will be done. If after the reading series
// it will turn out that we have no more horses, the slowest kangaroo
// will be "advanced to a horse" (the ahead link with a sequence
// closest to the current delivery sequence will get its sequence
// set as current delivered and its recorded ahead packet returned
// as the read packet).
// If we find at least one horse, the packet read from that link
// will be delivered. All other link will be just ensured update
// up to this sequence number, or at worst all available packets
// will be read. In this case all kangaroos remain kangaroos,
// until the current delivery sequence m_group_seqno will be lifted
// to the sequence recorded for these links in m_group_positions,
// during the next time ahead check, after which they will become
// horses.
Verb() << "E(" << srt_epoll << ") " << VerbNoEOL;
for (size_t i = 0; i < size; ++i)
{
SRT_SOCKGROUPDATA& d = m_group_data[i];
if (d.status == SRTS_CONNECTING)
{
Verb() << "@" << d.id << "<pending> " << VerbNoEOL;
int modes = SRT_EPOLL_OUT | SRT_EPOLL_ERR;
srt_epoll_add_usock(srt_epoll, d.id, &modes);
continue; // don't read over a failed or pending socket
}
if (d.status >= SRTS_BROKEN)
{
broken.insert(d.id);
}
if (broken.count(d.id))
{
Verb() << "@" << d.id << "<broken> " << VerbNoEOL;
continue;
}
if (d.status != SRTS_CONNECTED)
{
Verb() << "@" << d.id << "<idle:" << SockStatusStr(d.status) << "> " << VerbNoEOL;
// Sockets in this state are ignored. We are waiting until it
// achieves CONNECTING state, then it's added to write.
continue;
}
// Don't skip packets that are ahead because if we have a situation
// that all links are either "elephants" (do not report read readiness)
// and "kangaroos" (have already delivered an ahead packet) then
// omitting kangaroos will result in only elephants to be polled for
// reading. Elephants, due to the strict timing requirements and
// ensurance that TSBPD on every link will result in exactly the same
// delivery time for a packet of given sequence, having an elephant
// and kangaroo in one cage means that the elephant is simply a broken
// or half-broken link (the data are not delivered, but it will get
// repaired soon, enough for SRT to maintain the connection, but it
// will still drop packets that didn't arrive in time), in both cases
// it may potentially block the reading for an indefinite time, while
// simultaneously a kangaroo might be a link that got some packets
// dropped, but then it's still capable to deliver packets on time.
// Note also that about the fact that some links turn out to be
// elephants we'll learn only after we try to poll and read them.
// Note that d.id might be a socket that was previously being polled
// on write, when it's attempting to connect, but now it's connected.
// This will update the socket with the new event set.
int modes = SRT_EPOLL_IN | SRT_EPOLL_ERR;
srt_epoll_add_usock(srt_epoll, d.id, &modes);
Verb() << "@" << d.id << "[READ] " << VerbNoEOL;
}
Verb() << "";
// Here we need to make an additional check.
// There might be a possibility that all sockets that
// were added to the reader group, are ahead. At least
// surely we don't have a situation that any link contains
// an ahead-read subsequent packet, because GroupCheckPacketAhead
// already handled that case.
//
// What we can have is that every link has:
// - no known seq position yet (is not registered in the position map yet)
// - the position equal to the latest delivered sequence
// - the ahead position
// Now the situation is that we don't have any packets
// waiting for delivery so we need to wait for any to report one.
// XXX We support blocking mode only at the moment.
// The non-blocking mode would need to simply check the readiness
// with only immediate report, and read-readiness would have to
// be done in background.
SrtPollState sready;
// Poll on this descriptor until reading is available, indefinitely.
if (UDT::epoll_swait(srt_epoll, sready, -1) == SRT_ERROR)
{
Error(UDT::getlasterror(), "UDT::epoll_swait(srt_epoll, group)");
}
if (Verbose::on)
{
Verb() << "RDY: {"
<< DisplayEpollResults(sready.rd(), "[R]")
<< DisplayEpollResults(sready.wr(), "[W]")
<< DisplayEpollResults(sready.ex(), "[E]")
<< "} " << VerbNoEOL;
}
LOGC(applog.Debug, log << "epoll_swait: "
<< DisplayEpollResults(sready.rd(), "[R]")
<< DisplayEpollResults(sready.wr(), "[W]")
<< DisplayEpollResults(sready.ex(), "[E]"));
typedef set<SRTSOCKET> fset_t;
// Handle sockets of pending connection and with errors.
broken = sready.ex();
// We don't do anything about sockets that have been configured to
// poll on writing (that is, pending for connection). What we need
// is that the epoll_swait call exit on that fact. Probably if this
// was the only socket reported, no broken and no read-ready, this
// will later check on output if still empty, if so, repeat the whole
// function. This write-ready socket will be there already in the
// connected state and will be added to read-polling.
// Ok, now we need to have some extra qualifications:
// 1. If a socket has no registry yet, we read anyway, just
// to notify the current position. We read ONLY ONE PACKET this time,
// we'll worry later about adjusting it to the current group sequence
// position.
// 2. If a socket is already position ahead, DO NOT read from it, even
// if it is ready.
// The state of things whether we were able to extract the very next
// sequence will be simply defined by the fact that `output` is nonempty.
int32_t next_seq = m_group_seqno;
// If this set is empty, it won't roll even once, therefore output
// will be surely empty. This will be checked then same way as when
// reading from every socket resulted in error.
for (fset_t::const_iterator i = sready.rd().begin(); i != sready.rd().end(); ++i)
{
// Check if this socket is in aheads
// If so, don't read from it, wait until the ahead is flushed.
SRTSOCKET id = *i;
ReadPos* p = nullptr;
auto pe = m_group_positions.find(id);
if (pe != m_group_positions.end())
{
p = &pe->second;
// Possible results of comparison:
// x < 0: the sequence is in the past, the socket should be adjusted FIRST
// x = 0: the socket should be ready to get the exactly next packet
// x = 1: the case is already handled by GroupCheckPacketAhead.
// x > 1: AHEAD. DO NOT READ.
int seqdiff = CSeqNo::seqcmp(p->sequence, m_group_seqno);
if (seqdiff > 1)
{
Verb() << "EPOLL: @" << id << " %" << p->sequence << " AHEAD, not reading.";
continue;
}
}
// Read from this socket stubbornly, until:
// - reading is no longer possible (AGAIN)
// - the sequence difference is >= 1
int fi = 1; // marker for Verb to display flushing
for (;;)
{
bytevector data(chunk);
SRT_MSGCTRL mctrl = srt_msgctrl_default;
stat = srt_recvmsg2(id, data.data(), chunk, &mctrl);
if (stat == SRT_ERROR)
{
if (fi == 0)
{
if (Verbose::on)
{
if (p)
{
int32_t pktseq = p->sequence;
int seqdiff = CSeqNo::seqcmp(p->sequence, m_group_seqno);
Verb() << ". %" << pktseq << " " << seqdiff << ")";
}
else
{
Verb() << ".)";
}
}
fi = 1;
}
int err = srt_getlasterror(0);
if (err == SRT_EASYNCRCV)
{
// Do not treat this as spurious, just stop reading.
break;
}
Verb() << "Error @" << id << ": " << srt_getlasterror_str();
broken.insert(id);
break;
}
// NOTE: checks against m_group_seqno and decisions based on it
// must NOT be done if m_group_seqno is -1, which means that we
// are about to deliver the very first packet and we take its
// sequence number as a good deal.
// The order must be:
// - check discrepancy
// - record the sequence
// - check ordering.
// The second one must be done always, but failed discrepancy
// check should exclude the socket from any further checks.
// That's why the common check for m_group_seqno != -1 can't
// embrace everything below.
// We need to first qualify the sequence, just for a case
if (m_group_seqno != -1 && abs(m_group_seqno - mctrl.pktseq) > CSeqNo::m_iSeqNoTH)
{
// This error should be returned if the link turns out
// to be the only one, or set to the group data.
// err = SRT_ESECFAIL;
if (fi == 0)
{
Verb() << ".)";
fi = 1;
}
Verb() << "Error @" << id << ": SEQUENCE DISCREPANCY: base=%" << m_group_seqno << " vs pkt=%" << mctrl.pktseq << ", setting ESECFAIL";
broken.insert(id);
break;
}
// Rewrite it to the state for a case when next reading
// would not succeed. Do not insert the buffer here because
// this is only required when the sequence is ahead; for that
// it will be fixed later.
if (!p)
{
p = &(m_group_positions[id] = ReadPos { mctrl.pktseq, {} });
}
else
{
p->sequence = mctrl.pktseq;
}
if (m_group_seqno != -1)
{
// Now we can safely check it.
int seqdiff = CSeqNo::seqcmp(mctrl.pktseq, m_group_seqno);
if (seqdiff <= 0)
{
if (fi == 1)
{
Verb() << "(@" << id << " FLUSH:" << VerbNoEOL;
fi = 0;
}
Verb() << "." << VerbNoEOL;
// The sequence is recorded, the packet has to be discarded.
// That's all.
continue;
}
// Finish flush reporting if fallen into here
if (fi == 0)
{
Verb() << ". %" << mctrl.pktseq << " " << (-seqdiff) << ")";
fi = 1;
}
// Now we have only two possibilities:
// seqdiff == 1: The very next sequence, we want to read and return the packet.
// seqdiff > 1: The packet is ahead - record the ahead packet, but continue with the others.
if (seqdiff > 1)
{
Verb() << "@" << id << " %" << mctrl.pktseq << " AHEAD";
p->packet = move(data);
break; // Don't read from that socket anymore.
}
}
// We have seqdiff = 1, or we simply have the very first packet
// which's sequence is taken as a good deal. Update the sequence
// and record output.
if (!output.empty())
{
Verb() << "@" << id << " %" << mctrl.pktseq << " REDUNDANT";
break;
}
Verb() << "@" << id << " %" << mctrl.pktseq << " DELIVERING";
output = move(data);
// Record, but do not update yet, until all sockets are handled.
next_seq = mctrl.pktseq;
break;
}
}
// ready_len is only the length of currently reported
// ready sockets, NOT NECESSARILY containing all sockets from the group.
if (broken.size() == size)
{
// All broken
Error("All sockets broken");
}
if (Verbose::on && !broken.empty())
{
Verb() << "BROKEN: " << Printable(broken) << " - removing";
}
// Now remove all broken sockets from aheads, if any.
// Even if they have already delivered a packet.
for (SRTSOCKET d: broken)
{
m_group_positions.erase(d);
srt_close(d);
}
// May be required to be re-read.
broken.clear();
if (!output.empty())
{
// We have extracted something, meaning that we have the sequence shift.
// Update it now and don't do anything else with the sockets.
// Sanity check
if (next_seq == -1)
{
Error("IPE: next_seq not set after output extracted!");
}
m_group_seqno = next_seq;
return output;
}
// Check if we have any sockets left :D
// Here we surely don't have any more HORSES,
// only ELEPHANTS and KANGAROOS. Qualify them and
// attempt to at least take advantage of KANGAROOS.
// In this position all links are either:
// - updated to the current position
// - updated to the newest possible position available
// - not yet ready for extraction (not present in the group)
// If we haven't extracted the very next sequence position,
// it means that we might only have the ahead packets read,
// that is, the next sequence has been dropped by all links.
if (!m_group_positions.empty())
{
// This might notify both lingering links, which didn't
// deliver the required sequence yet, and links that have
// the sequence ahead. Review them, and if you find at
// least one packet behind, just wait for it to be ready.
// Use again the waiting function because we don't want
// the general waiting procedure to skip others.
set<SRTSOCKET> elephants;
// const because it's `typename decltype(m_group_positions)::value_type`
pair<const SRTSOCKET, ReadPos>* slowest_kangaroo = nullptr;
for (auto& sock_rp: m_group_positions)
{
// NOTE that m_group_seqno in this place wasn't updated
// because we haven't successfully extracted anything.
int seqdiff = CSeqNo::seqcmp(sock_rp.second.sequence, m_group_seqno);
if (seqdiff < 0)
{
elephants.insert(sock_rp.first);
}
// If seqdiff == 0, we have a socket ON TRACK.
else if (seqdiff > 0)
{
if (!slowest_kangaroo)
{
slowest_kangaroo = &sock_rp;
}
else
{
// Update to find the slowest kangaroo.
int seqdiff = CSeqNo::seqcmp(slowest_kangaroo->second.sequence, sock_rp.second.sequence);
if (seqdiff > 0)
{
slowest_kangaroo = &sock_rp;
}
}
}
}
// Note that if no "slowest_kangaroo" was found, it means
// that we don't have kangaroos.
if (slowest_kangaroo)
{
// We have a slowest kangaroo. Elephants must be ignored.
// Best case, they will get revived, worst case they will be
// soon broken.
//
// As we already have the packet delivered by the slowest
// kangaroo, we can simply return it.
m_group_seqno = slowest_kangaroo->second.sequence;
Verb() << "@" << slowest_kangaroo->first << " %" << m_group_seqno << " KANGAROO->HORSE";
swap(output, slowest_kangaroo->second.packet);
return output;
}
// Here ALL LINKS ARE ELEPHANTS, stating that we still have any.
if (Verbose::on)
{
if (!elephants.empty())
{
// If we don't have kangaroos, then simply reattempt to
// poll all elephants again anyway (at worst they are all
// broken and we'll learn about it soon).
Verb() << "ALL LINKS ELEPHANTS. Re-polling.";
}
else
{
Verb() << "ONLY BROKEN WERE REPORTED. Re-polling.";
}
}
goto RETRY_READING;
}
// We have checked so far only links that were ready to poll.
// Links that are not ready should be re-checked.
// Links that were not ready at the entrance should be checked
// separately, and probably here is the best moment to do it.
// After we make sure that at least one link is ready, we can
// reattempt to read a packet from it.
// Ok, so first collect all sockets that are in
// connecting state, make a poll for connection.
srt_epoll_clear_usocks(srt_epoll);
bool have_connectors = false, have_ready = false;
for (auto& d: m_group_data)
{
if (d.status < SRTS_CONNECTED)
{
// Not sure anymore if IN or OUT signals the connect-readiness,
// but no matter. The signal will be cleared once it is used,
// while it will be always on when there's anything ready to read.
int modes = SRT_EPOLL_IN | SRT_EPOLL_OUT;
srt_epoll_add_usock(srt_epoll, d.id, &modes);
have_connectors = true;
}
else if (d.status == SRTS_CONNECTED)
{
have_ready = true;
}
}
if (have_ready || have_connectors)
{
Verb() << "(still have: " << (have_ready ? "+" : "-") << "ready, "
<< (have_connectors ? "+" : "-") << "conenctors).";
goto RETRY_READING;
}
if (have_ready)
{
Verb() << "(connected in the meantime)";
// Some have connected in the meantime, don't
// waste time on the pending ones.
goto RETRY_READING;
}
if (have_connectors)
{
Verb() << "(waiting for pending connectors to connect)";
// Wait here for them to be connected.
vector<SRTSOCKET> sready;
sready.resize(m_group_data.size());
int ready_len = m_group_data.size();
if (srt_epoll_wait(srt_epoll, sready.data(), &ready_len, 0, 0, -1, 0, 0, 0, 0) == SRT_ERROR)
{
Error("All sockets in the group disconnected");
}
goto RETRY_READING;
}
Error("No data extracted");
return output; // Just a marker - this above function throws an exception
}
#endif
MediaPacket SrtSource::Read(size_t chunk)
{
static size_t counter = 1;
bool have_group SRT_ATR_UNUSED = !m_group_nodes.empty();
bytevector data(chunk);
// EXPERIMENTAL
#ifdef SRT_OLD_APP_READER
if (have_group || m_listener_group)
{
data = GroupRead(chunk);
}
if (have_group)
{
// This is to be done for caller mode only
UpdateGroupStatus(m_group_data.data(), m_group_data.size());
}
#else
SRT_MSGCTRL mctrl = srt_msgctrl_default;
bool ready = true;
int stat;
do
{
#if ENABLE_BONDING
if (have_group || m_listener_group)
{
mctrl.grpdata = m_group_data.data();
mctrl.grpdata_size = m_group_data.size();
}
#endif
if (::transmit_int_state)
Error("srt_recvmsg2: interrupted");
::transmit_throw_on_interrupt = true;
stat = srt_recvmsg2(m_sock, data.data(), int(chunk), &mctrl);
::transmit_throw_on_interrupt = false;
if (stat != SRT_ERROR)
{
ready = true;
}
else
{
int syserr = 0;
int err = srt_getlasterror(&syserr);
if (!m_blocking_mode)
{
// EAGAIN for SRT READING
if (err == SRT_EASYNCRCV)
{
Epoll_again:
Verb() << "AGAIN: - waiting for data by epoll(" << srt_epoll << ")...";
// Poll on this descriptor until reading is available, indefinitely.
int len = 2;
SRT_EPOLL_EVENT sready[2];
len = srt_epoll_uwait(srt_epoll, sready, len, -1);
if (len != -1)
{
Verb() << "... epoll reported ready " << len << " sockets";
// If the event was SRT_EPOLL_UPDATE, report it, and still wait.
bool any_read_ready = false;
vector<int> errored;
for (int i = 0; i < len; ++i)
{
if (sready[i].events & SRT_EPOLL_UPDATE)
{
Verb() << "... [BROKEN CONNECTION reported on @" << sready[i].fd << "]";
}
if (sready[i].events & SRT_EPOLL_IN)
any_read_ready = true;
if (sready[i].events & SRT_EPOLL_ERR)
{
errored.push_back(sready[i].fd);
}
}
if (!any_read_ready)
{
Verb() << " ... [NOT READ READY - AGAIN (" << errored.size() << " errored: " << Printable(errored) << ")]";
goto Epoll_again;
}
continue;
}
// If was -1, then passthru.
}
}
else
{
// In blocking mode it uses a minimum of 1s timeout,
// and continues only if interrupt not requested.
if (!::transmit_int_state && (err == SRT_EASYNCRCV || err == SRT_ETIMEOUT))
{
ready = false;
continue;
}
}
Error("srt_recvmsg2");
}
if (stat == 0)
{
throw ReadEOF(hostport_copy);
}
#if PLEASE_LOG
extern srt_logging::Logger applog;
LOGC(applog.Debug, log << "recv: #" << mctrl.msgno << " %" << mctrl.pktseq << " "
<< BufferStamp(data.data(), stat) << " BELATED: " << ((srt_time_now()-mctrl.srctime)/1000.0) << "ms");
#endif
Verb() << "(#" << mctrl.msgno << " %" << mctrl.pktseq << " " << BufferStamp(data.data(), stat) << ") " << VerbNoEOL;
}
while (!ready);
chunk = size_t(stat);
if (chunk < data.size())
data.resize(chunk);
const bool need_bw_report = transmit_bw_report && int(counter % transmit_bw_report) == transmit_bw_report - 1;
const bool need_stats_report = transmit_stats_report && counter % transmit_stats_report == transmit_stats_report - 1;
#if ENABLE_BONDING
if (have_group) // Means, group with caller mode
{
UpdateGroupStatus(mctrl.grpdata, mctrl.grpdata_size);
if (transmit_stats_writer && (need_stats_report || need_bw_report))
{
PrintSrtStats(m_sock, need_stats_report, need_bw_report, need_stats_report);
for (size_t i = 0; i < mctrl.grpdata_size; ++i)
PrintSrtStats(mctrl.grpdata[i].id, need_stats_report, need_bw_report, need_stats_report);
}
}
else
#endif
{
if (transmit_stats_writer && (need_stats_report || need_bw_report))
{
PrintSrtStats(m_sock, need_stats_report, need_bw_report, need_stats_report);
}
}
#endif
++counter;
return MediaPacket(data, mctrl.srctime);
}
SrtTarget::SrtTarget(std::string host, int port, std::string path, const std::map<std::string,std::string>& par)
{
Init(host, port, path, par, SRT_EPOLL_OUT);
}
int SrtTarget::ConfigurePre(SRTSOCKET sock)
{
int result = SrtCommon::ConfigurePre(sock);
if (result == -1)
return result;
int yes = 1;
// This is for the HSv4 compatibility; if both parties are HSv5
// (min. version 1.2.1), then this setting simply does nothing.
// In HSv4 this setting is obligatory; otherwise the SRT handshake
// extension will not be done at all.
result = srt_setsockopt(sock, 0, SRTO_SENDER, &yes, sizeof yes);
if (result == -1)
return result;
return 0;
}
void SrtTarget::Write(const MediaPacket& data)
{
static int counter = 1;
::transmit_throw_on_interrupt = true;
// Check first if it's ready to write.
// If not, wait indefinitely.
if (!m_blocking_mode)
{
Epoll_again:
int len = 2;
SRT_EPOLL_EVENT sready[2];
len = srt_epoll_uwait(srt_epoll, sready, len, -1);
if (len != -1)
{
bool any_write_ready = false;
for (int i = 0; i < len; ++i)
{
if (sready[i].events & SRT_EPOLL_UPDATE)
{
Verb() << "... [BROKEN CONNECTION reported on @" << sready[i].fd << "]";
}
if (sready[i].events & SRT_EPOLL_OUT)
any_write_ready = true;
}
if (!any_write_ready)
{
Verb() << " ... [NOT WRITE READY - AGAIN]";
goto Epoll_again;
}
// Pass on, write ready.
}
else
{
Error("srt_epoll_uwait");
}
}
SRT_MSGCTRL mctrl = srt_msgctrl_default;
#if ENABLE_BONDING
bool have_group = !m_group_nodes.empty();
if (have_group || m_listener_group)
{
mctrl.grpdata = m_group_data.data();
mctrl.grpdata_size = m_group_data.size();
}
#endif
if (transmit_use_sourcetime)
{
mctrl.srctime = data.time;
}
int stat = srt_sendmsg2(m_sock, data.payload.data(), int(data.payload.size()), &mctrl);
// For a socket group, the error is reported only
// if ALL links from the group have failed to perform
// the operation. If only one did, the result will be
// visible in the status array.
if (stat == SRT_ERROR)
Error("srt_sendmsg");
::transmit_throw_on_interrupt = false;
const bool need_bw_report = transmit_bw_report && int(counter % transmit_bw_report) == transmit_bw_report - 1;
const bool need_stats_report = transmit_stats_report && counter % transmit_stats_report == transmit_stats_report - 1;
#if ENABLE_BONDING
if (have_group)
{
// For listener group this is not necessary. The group information
// is updated in mctrl.
UpdateGroupStatus(mctrl.grpdata, mctrl.grpdata_size);
if (transmit_stats_writer && (need_stats_report || need_bw_report))
{
PrintSrtStats(m_sock, need_stats_report, need_bw_report, need_stats_report);
for (size_t i = 0; i < mctrl.grpdata_size; ++i)
PrintSrtStats(mctrl.grpdata[i].id, need_stats_report, need_bw_report, need_stats_report);
}
}
else
#endif
{
if (transmit_stats_writer && (need_stats_report || need_bw_report))
{
PrintSrtStats(m_sock, need_stats_report, need_bw_report, need_stats_report);
}
}
Verb() << "(#" << mctrl.msgno << " %" << mctrl.pktseq << " " << BufferStamp(data.payload.data(), data.payload.size()) << ") " << VerbNoEOL;
++counter;
}
SrtRelay::SrtRelay(std::string host, int port, std::string path, const std::map<std::string,std::string>& par)
{
Init(host, port, path, par, SRT_EPOLL_IN | SRT_EPOLL_OUT);
}
SrtModel::SrtModel(string host, int port, map<string,string> par)
{
InitParameters(host, "", par);
if (m_mode == "caller")
is_caller = true;
else if (m_mode == "rendezvous")
is_rend = true;
else if (m_mode != "listener")
throw std::invalid_argument("Wrong 'mode' attribute; expected: caller, listener, rendezvous");
m_host = host;
m_port = port;
}
void SrtModel::Establish(std::string& w_name)
{
// This does connect or accept.
// When this returned true, the caller should create
// a new SrtSource or SrtTaget then call StealFrom(*this) on it.
// If this is a connector and the peer doesn't have a corresponding
// medium, it should send back a single byte with value 0. This means
// that agent should stop connecting.
if (is_rend)
{
OpenRendezvous(m_adapter, m_host, m_port);
}
else if (is_caller)
{
// Establish a connection
PrepareClient();
if (w_name != "")
{
Verb() << "Connect with requesting stream [" << w_name << "]";
srt::setstreamid(m_sock, w_name);
}
else
{
Verb() << "NO STREAM ID for SRT connection";
}
if (m_outgoing_port || m_adapter != "")
{
Verb() << "Setting outgoing port: " << m_outgoing_port << " adapter:" << m_adapter;
SetupAdapter(m_adapter, m_outgoing_port);
}
ConnectClient(m_host, m_port);
if (m_outgoing_port == 0)
{
// Must rely on a randomly selected one. Extract the port
// so that it will be reused next time.
sockaddr_any s(AF_INET);
int namelen = s.size();
if (srt_getsockname(Socket(), (s.get()), (&namelen)) == SRT_ERROR)
{
Error("srt_getsockname");
}
m_outgoing_port = s.hport();
Verb() << "Extracted outgoing port: " << m_outgoing_port;
}
}
else
{
// Listener - get a socket by accepting.
// Check if the listener is already created first
if (Listener() == SRT_INVALID_SOCK)
{
Verb() << "Setting up listener: port=" << m_port << " backlog=5";
PrepareListener(m_adapter, m_port, 5);
}
Verb() << "Accepting a client...";
AcceptNewClient();
// This rewrites m_sock with a new SRT socket ("accepted" socket)
w_name = UDT::getstreamid(m_sock);
Verb() << "... GOT CLIENT for stream [" << w_name << "]";
}
}
template <class Iface> struct Srt;
template <> struct Srt<Source> { typedef SrtSource type; };
template <> struct Srt<Target> { typedef SrtTarget type; };
template <> struct Srt<Relay> { typedef SrtRelay type; };
template <class Iface>
Iface* CreateSrt(const string& host, int port, std::string path, const map<string,string>& par)
{ return new typename Srt<Iface>::type (host, port, path, par); }
MediaPacket ConsoleRead(size_t chunk)
{
bytevector data(chunk);
bool st = cin.read(data.data(), chunk).good();
chunk = cin.gcount();
if (chunk == 0 && !st)
return bytevector();
int64_t stime = 0;
if (transmit_use_sourcetime)
stime = srt_time_now();
if (chunk < data.size())
data.resize(chunk);
if (data.empty())
throw Source::ReadEOF("CONSOLE device");
return MediaPacket(data, stime);
}
class ConsoleSource: public virtual Source
{
public:
ConsoleSource()
{
}
MediaPacket Read(size_t chunk) override
{
return ConsoleRead(chunk);
}
bool IsOpen() override { return cin.good(); }
bool End() override { return cin.eof(); }
};
class ConsoleTarget: public virtual Target
{
public:
ConsoleTarget()
{
}
void Write(const MediaPacket& data) override
{
cout.write(data.payload.data(), data.payload.size());
}
bool IsOpen() override { return cout.good(); }
bool Broken() override { return cout.eof(); }
};
class ConsoleRelay: public Relay, public ConsoleSource, public ConsoleTarget
{
public:
ConsoleRelay() = default;
bool IsOpen() override { return cin.good() && cout.good(); }
};
template <class Iface> struct Console;
template <> struct Console<Source> { typedef ConsoleSource type; };
template <> struct Console<Target> { typedef ConsoleTarget type; };
template <> struct Console<Relay> { typedef ConsoleRelay type; };
template <class Iface>
Iface* CreateConsole() { return new typename Console<Iface>::type (); }
// More options can be added in future.
SocketOption udp_options [] {
{ "iptos", IPPROTO_IP, IP_TOS, SocketOption::PRE, SocketOption::INT, nullptr },
// IP_TTL and IP_MULTICAST_TTL are handled separately by a common option, "ttl".
{ "mcloop", IPPROTO_IP, IP_MULTICAST_LOOP, SocketOption::PRE, SocketOption::INT, nullptr }
};
static inline bool IsMulticast(in_addr adr)
{
unsigned char* abytes = (unsigned char*)&adr.s_addr;
unsigned char c = abytes[0];
return c >= 224 && c <= 239;
}
void UdpCommon::Setup(string host, int port, map<string,string> attr)
{
m_sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (m_sock == -1)
Error(SysError(), "UdpCommon::Setup: socket");
int yes = 1;
::setsockopt(m_sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&yes, sizeof yes);
sadr = CreateAddr(host, port);
bool is_multicast = false;
if (sadr.family() == AF_INET)
{
if (attr.count("multicast"))
{
if (!IsMulticast(sadr.sin.sin_addr))
{
throw std::runtime_error("UdpCommon: requested multicast for a non-multicast-type IP address");
}
is_multicast = true;
}
else if (IsMulticast(sadr.sin.sin_addr))
{
is_multicast = true;
}
if (is_multicast)
{
ip_mreq mreq;
sockaddr_any maddr (AF_INET);
int opt_name;
void* mreq_arg_ptr;
socklen_t mreq_arg_size;
adapter = attr.count("adapter") ? attr.at("adapter") : string();
if (adapter == "")
{
Verb() << "Multicast: home address: INADDR_ANY:" << port;
maddr.sin.sin_family = AF_INET;
maddr.sin.sin_addr.s_addr = htonl(INADDR_ANY);
maddr.sin.sin_port = htons(port); // necessary for temporary use
}
else
{
Verb() << "Multicast: home address: " << adapter << ":" << port;
maddr = CreateAddr(adapter, port);
}
if (attr.count("source"))
{
#ifdef IP_ADD_SOURCE_MEMBERSHIP
ip_mreq_source mreq_ssm;
/* this is an ssm. we need to use the right struct and opt */
opt_name = IP_ADD_SOURCE_MEMBERSHIP;
mreq_ssm.imr_multiaddr.s_addr = sadr.sin.sin_addr.s_addr;
mreq_ssm.imr_interface.s_addr = maddr.sin.sin_addr.s_addr;
inet_pton(AF_INET, attr.at("source").c_str(), &mreq_ssm.imr_sourceaddr);
mreq_arg_size = sizeof(mreq_ssm);
mreq_arg_ptr = &mreq_ssm;
#else
throw std::runtime_error("UdpCommon: source-filter multicast not supported by OS");
#endif
}
else
{
opt_name = IP_ADD_MEMBERSHIP;
mreq.imr_multiaddr.s_addr = sadr.sin.sin_addr.s_addr;
mreq.imr_interface.s_addr = maddr.sin.sin_addr.s_addr;
mreq_arg_size = sizeof(mreq);
mreq_arg_ptr = &mreq;
}
#ifdef _WIN32
const char* mreq_arg = (const char*)mreq_arg_ptr;
const auto status_error = SOCKET_ERROR;
#else
const void* mreq_arg = mreq_arg_ptr;
const auto status_error = -1;
#endif
#if defined(_WIN32) || defined(__CYGWIN__)
// On Windows it somehow doesn't work when bind()
// is called with multicast address. Write the address
// that designates the network device here.
// Also, sets port sharing when working with multicast
sadr = maddr;
int reuse = 1;
int shareAddrRes = setsockopt(m_sock, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<const char*>(&reuse), sizeof(reuse));
if (shareAddrRes == status_error)
{
throw runtime_error("marking socket for shared use failed");
}
Verb() << "Multicast(Windows): will bind to home address";
#else
Verb() << "Multicast(POSIX): will bind to IGMP address: " << host;
#endif
int res = setsockopt(m_sock, IPPROTO_IP, opt_name, mreq_arg, mreq_arg_size);
if (res == status_error)
{
Error(errno, "adding to multicast membership failed");
}
attr.erase("multicast");
attr.erase("adapter");
}
}
// The "ttl" options is handled separately, it maps to both IP_TTL
// and IP_MULTICAST_TTL so that TTL setting works for both uni- and multicast.
if (attr.count("ttl"))
{
int ttl = stoi(attr.at("ttl"));
int res = setsockopt(m_sock, IPPROTO_IP, IP_TTL, (const char*)&ttl, sizeof ttl);
if (res == -1)
Verb() << "WARNING: failed to set 'ttl' (IP_TTL) to " << ttl;
res = setsockopt(m_sock, IPPROTO_IP, IP_MULTICAST_TTL, (const char*)&ttl, sizeof ttl);
if (res == -1)
Verb() << "WARNING: failed to set 'ttl' (IP_MULTICAST_TTL) to " << ttl;
attr.erase("ttl");
}
m_options = attr;
for (auto o: udp_options)
{
// Ignore "binding" - for UDP there are no post options.
if (m_options.count(o.name))
{
string value = m_options.at(o.name);
bool ok = o.apply<SocketOption::SYSTEM>(m_sock, value);
if (!ok)
Verb() << "WARNING: failed to set '" << o.name << "' to " << value;
}
}
}
void UdpCommon::Error(int err, string src)
{
char buf[512];
string message = SysStrError(err, buf, 512u);
if (Verbose::on)
Verb() << "FAILURE\n" << src << ": [" << err << "] " << message;
else
cerr << "\nERROR #" << err << ": " << message << endl;
throw TransmissionError("error: " + src + ": " + message);
}
UdpCommon::~UdpCommon()
{
#ifdef _WIN32
if (m_sock != -1)
{
shutdown(m_sock, SD_BOTH);
closesocket(m_sock);
m_sock = -1;
}
#else
close(m_sock);
#endif
}
UdpSource::UdpSource(string host, int port, const map<string,string>& attr)
{
Setup(host, port, attr);
int stat = ::bind(m_sock, sadr.get(), sadr.size());
if (stat == -1)
Error(SysError(), "Binding address for UDP");
eof = false;
struct timeval tv;
tv.tv_sec = 1;
tv.tv_usec = 0;
if (::setsockopt(m_sock, SOL_SOCKET, SO_RCVTIMEO, (const char*) &tv, sizeof(tv)) < 0)
Error(SysError(), "Setting timeout for UDP");
}
MediaPacket UdpSource::Read(size_t chunk)
{
bytevector data(chunk);
sockaddr_any sa(sadr.family());
int64_t srctime = 0;
AGAIN:
int stat = recvfrom(m_sock, data.data(), (int) chunk, 0, sa.get(), &sa.syslen());
int err = SysError();
if (transmit_use_sourcetime)
{
srctime = srt_time_now();
}
if (stat == -1)
{
if (!::transmit_int_state && err == SysAGAIN)
goto AGAIN;
Error(SysError(), "UDP Read/recvfrom");
}
if (stat < 1)
{
eof = true;
return bytevector();
}
chunk = size_t(stat);
if (chunk < data.size())
data.resize(chunk);
return MediaPacket(data, srctime);
}
UdpTarget::UdpTarget(string host, int port, const map<string,string>& attr)
{
Setup(host, port, attr);
if (adapter != "")
{
auto maddr = CreateAddr(adapter, 0);
in_addr addr = maddr.sin.sin_addr;
int res = setsockopt(m_sock, IPPROTO_IP, IP_MULTICAST_IF, reinterpret_cast<const char*>(&addr), sizeof(addr));
if (res == -1)
{
Error(SysError(), "setsockopt/IP_MULTICAST_IF: " + adapter);
}
}
}
void UdpTarget::Write(const MediaPacket& data)
{
int stat = sendto(m_sock, data.payload.data(), int(data.payload.size()), 0, (sockaddr*)&sadr, int(sizeof sadr));
if (stat == -1)
Error(SysError(), "UDP Write/sendto");
}
template <class Iface> struct Udp;
template <> struct Udp<Source> { typedef UdpSource type; };
template <> struct Udp<Target> { typedef UdpTarget type; };
template <> struct Udp<Relay> { typedef UdpRelay type; };
template <class Iface>
Iface* CreateUdp(const string& host, int port, const map<string,string>& par) { return new typename Udp<Iface>::type (host, port, par); }
template<class Base>
inline bool IsOutput() { return false; }
template<>
inline bool IsOutput<Target>() { return true; }
template <class Base>
extern unique_ptr<Base> CreateMedium(const string& uri)
{
unique_ptr<Base> ptr;
UriParser u(uri);
int iport = 0;
switch ( u.type() )
{
default:
break; // do nothing, return nullptr
case UriParser::FILE:
if (u.host() == "con" || u.host() == "console")
{
if ( IsOutput<Base>() && (
(Verbose::on && Verbose::cverb == &cout)
|| transmit_bw_report || transmit_stats_report) )
{
cerr << "ERROR: file://con with -v or -r or -s would result in mixing the data and text info.\n";
cerr << "ERROR: HINT: you can stream through a FIFO (named pipe)\n";
throw invalid_argument("incorrect parameter combination");
}
ptr.reset( CreateConsole<Base>() );
}
else
ptr.reset( CreateFile<Base>(u.path()));
break;
case UriParser::SRT:
ptr.reset( CreateSrt<Base>(u.host(), u.portno(), u.path(), u.parameters()) );
break;
case UriParser::UDP:
iport = atoi(u.port().c_str());
if (iport < 1024)
{
cerr << "Port value invalid: " << iport << " - must be >=1024\n";
throw invalid_argument("Invalid port number");
}
ptr.reset( CreateUdp<Base>(u.host(), iport, u.parameters()) );
break;
}
if (ptr)
ptr->uri = std::move(u);
return ptr;
}
std::unique_ptr<Source> Source::Create(const std::string& url)
{
return CreateMedium<Source>(url);
}
std::unique_ptr<Target> Target::Create(const std::string& url)
{
return CreateMedium<Target>(url);
}
|