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 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188
// Copyright (c) 2023 The TQUIC Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(dead_code)]
use std::any::Any;
use std::cmp;
use std::collections::btree_map;
use std::collections::hash_map;
use std::collections::BTreeMap;
use std::collections::BinaryHeap;
use std::collections::VecDeque;
use std::ops::Range;
use std::time;
use std::time::Instant;
use bytes::Buf;
use bytes::BufMut;
use bytes::Bytes;
use bytes::BytesMut;
use enumflags2::bitflags;
use enumflags2::BitFlags;
use log::*;
use rustc_hash::FxHashMap;
use rustc_hash::FxHashSet;
use smallvec::SmallVec;
use self::StreamFlags::*;
use crate::connection::flowcontrol;
use crate::ranges;
use crate::Error;
use crate::Event;
use crate::EventQueue;
use crate::Result;
use crate::Shutdown;
use crate::TransportParams;
use crate::MAX_STREAMS_PER_TYPE;
pub type StreamIdHashMap<V> = FxHashMap<u64, V>;
pub type StreamIdHashSet = FxHashSet<u64>;
#[cfg(test)]
const SEND_BUFFER_SIZE: usize = 5;
#[cfg(not(test))]
const SEND_BUFFER_SIZE: usize = 4096;
// Receiver stream flow control window default value, 32KB.
const DEFAULT_STREAM_WINDOW: u64 = 32 * 1024;
// Receiver stream flow control window max value, 6MB.
pub const MAX_STREAM_WINDOW: u64 = 6 * 1024 * 1024;
// Receiver connection flow control window default value, 48KB.
// Note that here we set the default value of the connection-level flow control window
// to be 1.5 times the size of the stream-level flow control window, i.e. 1.5 * 32KB.
pub const DEFAULT_CONNECTION_WINDOW: u64 = 48 * 1024;
// The maximum size of the receiver connection flow control window.
pub const MAX_CONNECTION_WINDOW: u64 = 15 * 1024 * 1024;
/// Stream manager for keeps track of streams on a QUIC Connection.
#[derive(Default)]
pub struct StreamMap {
/// Whether it serves as a server.
is_server: bool,
/// Collection of streams that are organized and accessed by stream ID.
streams: StreamIdHashMap<Stream>,
/// Streams that have outstanding data ready to be sent to the peer,
/// and categorized by their urgency, lower value means higher priority.
sendable: BTreeMap<u8, StreamPriorityQueue>,
/// Streams that have outstanding data can be read by the application.
readable: StreamIdHashSet,
/// Streams that have enough flow control capacity to be written to,
/// and is not finished.
writable: StreamIdHashSet,
/// Streams that are shutdown on the send side by the application prematurely
/// or received STOP_SENDING frame from the peer.
///
/// Current endpoint should send a RESET_STREAM frame with the error code and
/// final size values in the tuple of the map elements to the peer.
reset: StreamIdHashMap<(u64, u64)>,
/// Streams that are shutdown on the receive side, and need to send
/// a STOP_SENDING frame.
stopped: StreamIdHashMap<u64>,
/// Keep track of IDs of previously closed streams, to prevent peers from
/// re-creating them.
closed: StreamIdHashSet,
/// Streams that peer are almost out of flow control capacity, and
/// need local endpoint to send a MAX_STREAM_DATA frame to the peer.
almost_full: StreamIdHashSet,
/// Streams that are blocked on the send-side, and need to send a
/// STREAM_DATA_BLOCKED frame to the peer. The value of the map elements is
/// the stream offset at which the stream is blocked.
data_blocked: StreamIdHashMap<u64>,
/// Streams concurrency control.
concurrency_control: ConcurrencyControl,
/// Connection receive-side flow control.
flow_control: flowcontrol::FlowControl,
/// Connection send-side flow control.
send_capacity: SendCapacity,
/// The maximum stream receive-side flow control window, it is inherited
/// from the connection configuration, and applies to all streams.
max_stream_window: u64,
/// Connection received-side flow control capacity almost full,
/// local endpoint should issue more credit by sending a MAX_DATA
/// frame to the peer.
pub rx_almost_full: bool,
/// Peer transport parameters.
peer_transport_params: StreamTransportParams,
/// Local transport parameters.
local_transport_params: StreamTransportParams,
/// Events sent to the endpoint.
pub(super) events: EventQueue,
/// Unique trace id for debug logging.
trace_id: String,
}
impl StreamMap {
/// Create a new `StreamMap`.
pub fn new(
is_server: bool,
max_connection_window: u64,
max_stream_window: u64,
local_params: StreamTransportParams,
) -> StreamMap {
StreamMap {
is_server,
concurrency_control: ConcurrencyControl::new(
local_params.initial_max_streams_bidi,
local_params.initial_max_streams_uni,
),
flow_control: flowcontrol::FlowControl::new(
local_params.initial_max_data,
cmp::min(
local_params.initial_max_data / 2 * 3,
DEFAULT_CONNECTION_WINDOW,
),
max_connection_window,
),
send_capacity: SendCapacity::default(),
max_stream_window,
rx_almost_full: false,
local_transport_params: local_params,
peer_transport_params: StreamTransportParams::default(),
..StreamMap::default()
}
}
/// Set trace id.
pub fn set_trace_id(&mut self, trace_id: &str) {
self.trace_id = trace_id.to_string();
}
/// Return a reference to the stream with the given ID if it exists, or `None`.
fn get(&self, id: u64) -> Option<&Stream> {
self.streams.get(&id)
}
/// Return a mutable reference to the stream with the given ID if it exists,
/// or `None`.
pub fn get_mut(&mut self, id: u64) -> Option<&mut Stream> {
self.streams.get_mut(&id)
}
/// Get the lowest offset of data to be read.
pub fn stream_read_offset(&mut self, stream_id: u64) -> Option<u64> {
match self.get_mut(stream_id) {
Some(stream) => Some(stream.recv.read_off()),
None => None,
}
}
/// Read contiguous data from the stream's receive buffer into the given buffer.
///
/// Return the number of bytes read and the `fin` flag if read successfully.
///
/// Return `StreamStateError` if the stream closed or never opened.
///
/// Return `Done` if the stream is not readable.
pub fn stream_read(&mut self, stream_id: u64, out: &mut [u8]) -> Result<(usize, bool)> {
// Local initiated unidirectional streams are send-only, so we can't read from them.
if !is_bidi(stream_id) && is_local(stream_id, self.is_server) {
return Err(Error::StreamStateError);
}
// If the stream is not exist, it may not be opened yet, or it was closed,
// return `StreamStateError`.
let stream = self.get_mut(stream_id).ok_or(Error::StreamStateError)?;
// If stream is not readable, return `Done`.
if !stream.is_readable() {
trace!("{} stream is not readable", stream.trace_id);
return Err(Error::Done);
}
let local = stream.local;
let (read, fin) = match stream.recv.read(out) {
Ok(v) => v,
Err(e) => {
trace!("{} stream read error: {:?}", stream.trace_id, e);
// Stream recv-side maybe reset by peer, if it is complete, we should
// remove it from the stream map, and collect it to `closed` streams set.
if stream.is_complete() {
self.mark_closed(stream_id, local);
}
self.mark_readable(stream_id, false);
return Err(e);
}
};
// We can't move these two lines of code after the connection-level
// flow_control check, otherwise there will be a variable borrowing problem.
let readable = stream.is_readable();
let complete = stream.is_complete();
// Check if we need to send a `MAX_STREAM_DATA` frame to update
// stream-level flow control.
if stream.recv.should_send_max_data() {
self.mark_almost_full(stream_id, true);
}
// Update connection-level flow control consumption, and check if we should
// send a `MAX_DATA` frame to update connection-level flow control limit.
self.flow_control.increase_read_off(read as u64);
if self.flow_control.should_send_max_data() {
self.rx_almost_full = true;
}
// After reading, we should remove it from the readable queue if it is not
// readable at the present.
if !readable {
self.mark_readable(stream_id, false);
}
// If the stream is complete, we should remove it from the streams map and
// collect it to the `closed` streams set.
if complete {
self.mark_closed(stream_id, local);
}
Ok((read, fin))
}
/// Get the maximum offset of data written by application
pub fn stream_write_offset(&mut self, stream_id: u64) -> Option<u64> {
match self.get_mut(stream_id) {
Some(stream) => Some(stream.send.write_off()),
None => None,
}
}
/// Write data to the stream's send buffer.
pub fn stream_write(&mut self, stream_id: u64, mut buf: Bytes, fin: bool) -> Result<usize> {
// Peer initiated unidirectional streams are receive-only, so we can't write to them.
if !is_bidi(stream_id) && !is_local(stream_id, self.is_server) {
return Err(Error::StreamStateError);
}
// If the connection-level flow control credit is not enough, mark the
// the connection as blocked and schedule a `DATA_BLOCKED` frame to be sent.
if self.max_tx_data_left() < buf.len() as u64 {
self.update_data_blocked_at(Some(self.send_capacity.max_data));
}
let expect_written = buf.len();
let capacity = self.send_capacity.capacity;
// Get or create the stream if it was not created before.
// If the stream was closed, return `Done`.
let stream = self.get_or_create(stream_id, true)?;
let was_writable = stream.is_writable();
let was_sendable = stream.is_sendable();
// When the connection's capacity is exhausted, if the input buffer is not empty,
// return `Done`.
if capacity == 0 && !buf.is_empty() {
// Stream blocked by the connection's send capacity, must not affect
// its writable state.
if was_writable {
self.mark_writable(stream_id, true);
}
// Stream blocked, but it still want to write, so we should mark it as want-write.
let _ = self.want_write(stream_id, true);
return Err(Error::Done);
}
// If the connection's send capacity is not enough, truncate the input
// buffer with the capacity.
let (fin, blocked_by_cap) = if capacity < buf.len() {
buf.truncate(capacity);
(false, true)
} else {
(fin, false)
};
// Save the buffer's length before its ownership moved.
let buf_len = buf.len();
let written = match stream.send.write(buf, fin) {
Ok(v) => v,
Err(e) => {
self.mark_writable(stream_id, false);
return Err(e);
}
};
let urgency = stream.urgency;
let incremental = stream.incremental;
let sendable = stream.is_sendable();
let writable = stream.is_writable();
let empty_fin = buf_len == 0 && fin;
if written < buf_len {
let max_data = stream.send.max_data();
if stream.send.blocked_at() != Some(max_data) {
stream.send.update_blocked_at(Some(max_data));
self.mark_blocked(stream_id, true, max_data);
}
} else {
stream.send.update_blocked_at(None);
self.mark_blocked(stream_id, false, 0);
}
// If the stream is sendable and it wasn't sendable before, push it to
// the sendable queue.
// Note: Buffer an empty block data with fin should be treated as sendable.
if (sendable || empty_fin) && !was_sendable {
self.push_sendable(stream_id, urgency, incremental);
}
if !writable {
self.mark_writable(stream_id, false);
} else if was_writable && blocked_by_cap {
// Stream blocked by the connection's send capacity, must not affect
// its writable state.
self.mark_writable(stream_id, true);
}
self.send_capacity.capacity -= written;
self.send_capacity.tx_data += written as u64;
// Write partial data, mark the stream as want-write.
if written < expect_written {
let _ = self.want_write(stream_id, true);
}
// No data was written, it maybe limited by the stream-level flow control.
if written == 0 && buf_len > 0 {
return Err(Error::Done);
}
Ok(written)
}
/// Shutdown stream receive-side or send-side.
pub fn stream_shutdown(&mut self, stream_id: u64, direction: Shutdown, err: u64) -> Result<()> {
// We can't move this line to the match arm because of the borrow checker.
let is_server = self.is_server;
// If the stream was not created before or has been closed, return `Done`.
let stream = self.get_mut(stream_id).ok_or(Error::Done)?;
match direction {
Shutdown::Read => {
// Local initiated uni stream should not be shutdown in the receive-side.
if is_local(stream_id, is_server) && !is_bidi(stream_id) {
return Err(Error::StreamStateError);
}
let unread_len = stream.recv.shutdown()?;
// If the stream doesn't enter terminal state, sending a `STOP_SENDING`
// frame to prompt closure of the stream in the opposite direction.
if !stream.recv.is_fin() {
self.mark_stopped(stream_id, true, err);
}
// Stream should not be readable if it is shutdown in the receive-side.
self.mark_readable(stream_id, false);
// When a stream's receive-side shutdown, all unread data will be
// discarded, we consider them as consumed, which might trigger a
// connection-level flow control update.
self.flow_control.increase_read_off(unread_len);
if self.flow_control.should_send_max_data() {
self.rx_almost_full = true;
}
}
Shutdown::Write => {
// Peer initiated uni stream should not be shutdown in the send-side.
if !is_local(stream_id, is_server) && !is_bidi(stream_id) {
return Err(Error::StreamStateError);
}
let (final_size, unsent) = stream.send.shutdown()?;
// Give back some flow control credit by deducting the data that
// was buffered but not actually sent before the stream send-side
// was shutdown.
self.send_capacity.tx_data = self.send_capacity.tx_data.saturating_sub(unsent);
// Update connection-level send capacity.
self.send_capacity.update_capacity();
self.mark_reset(stream_id, true, err, final_size);
// Stream should not be writable after it is shutdown in the send-side.
self.mark_writable(stream_id, false);
}
}
Ok(())
}
/// Set priority for a stream.
pub fn stream_set_priority(
&mut self,
stream_id: u64,
urgency: u8,
incremental: bool,
) -> Result<()> {
// Get or create the stream if it was not created before.
let stream = match self.get_or_create(stream_id, true) {
Ok(v) => v,
// Stream has been closed, just ignore the prioritization.
Err(Error::Done) => return Ok(()),
Err(e) => return Err(e),
};
if stream.urgency == urgency && stream.incremental == incremental {
return Ok(());
}
stream.urgency = urgency;
stream.incremental = incremental;
Ok(())
}
/// Get the stream's send-side capacity, in units of bytes.
/// The capacity is the minimum of the connection-level flow control credit
/// and the stream-level flow control credit.
pub fn stream_capacity(&self, stream_id: u64) -> Result<usize> {
match self.get(stream_id) {
Some(s) => Ok(cmp::min(self.send_capacity.capacity, s.send.capacity()?)),
None => Err(Error::StreamStateError),
}
}
/// Return true if the stream has more than `len` bytes of send-side capacity.
pub fn stream_writable(&mut self, stream_id: u64, len: usize) -> Result<bool> {
if self.stream_capacity(stream_id)? >= len {
return Ok(true);
}
// The connection-level flow control credit is not enough, mark the connection
// blocked and schedule a DATA_BLOCKED frame to be sent to the peer.
if self.max_tx_data_left() < len as u64 {
self.update_data_blocked_at(Some(self.send_capacity.max_data));
}
// We have confirmed that the stream is existing when calling `stream_capacity`,
// so it is safe to unwrap.
let stream = self.get_mut(stream_id).unwrap();
stream.write_thresh = cmp::max(1, len);
let is_writable = stream.is_writable();
// If the stream-level flow control credit is not enough, mark the stream
// blocked and schedule a STREAM_DATA_BLOCKED frame to be sent to the peer.
//
// Note that we should mark the stream blocked at max_data, otherwise the
// peer may ignore the STREAM_DATA_BLOCKED frame.
if stream.send.capacity()? < len {
let max_data = stream.send.max_data();
if stream.send.blocked_at() != Some(max_data) {
stream.send.update_blocked_at(Some(max_data));
self.mark_blocked(stream_id, true, max_data);
}
} else if is_writable {
self.mark_writable(stream_id, true);
}
Ok(false)
}
/// Return true if the stream has outstanding data to read.
pub fn stream_readable(&self, stream_id: u64) -> bool {
match self.get(stream_id) {
Some(s) => s.is_readable(),
None => false,
}
}
/// Return true if the stream's receive-side final size is known, and the
/// application has read all data from the stream.
///
/// Note that this function also return true if the stream is reset by the peer.
pub fn stream_finished(&self, stream_id: u64) -> bool {
match self.get(stream_id) {
Some(s) => s.recv.is_fin(),
None => true,
}
}
/// Set user context for a stream.
pub fn stream_set_context<T: Any + Send + Sync>(
&mut self,
stream_id: u64,
ctx: T,
) -> Result<()> {
// Get or create the stream if it was not created before.
let stream = match self.get_or_create(stream_id, true) {
Ok(v) => v,
Err(Error::Done) => return Ok(()), // stream closed
Err(e) => return Err(e),
};
stream.context = Some(Box::new(ctx));
Ok(())
}
/// Return the stream's user context.
pub fn stream_context(&mut self, stream_id: u64) -> Option<&mut dyn Any> {
if let Some(s) = self.get_mut(stream_id) {
match s.context {
Some(ref mut ctx) => Some(ctx.as_mut()),
None => None,
}
} else {
None
}
}
/// Get the maximum amount of data that the stream can receive and sent.
/// Return a tuple of (max_rx_data, max_tx_data).
fn max_stream_data_limit(
local: bool,
bidi: bool,
local_params: &StreamTransportParams,
peer_params: &StreamTransportParams,
) -> (u64, u64) {
// Based on the initiator(local/remote) and stream type(uni/bidi) to determine the
// maximum amount of data that can be received and sent by the local endpoint.
match (local, bidi) {
// Local initiated bidirectional stream, can send and receive data.
(true, true) => (
local_params.initial_max_stream_data_bidi_local,
peer_params.initial_max_stream_data_bidi_remote,
),
// Local initiated unidirectional stream, can send data only.
(true, false) => (0, peer_params.initial_max_stream_data_uni),
// Peer initiated bidirectional stream, can receive and send data.
(false, true) => (
local_params.initial_max_stream_data_bidi_remote,
peer_params.initial_max_stream_data_bidi_local,
),
// Peer initiated unidirectional stream, can receive data only.
(false, false) => (local_params.initial_max_stream_data_uni, 0),
}
}
/// Return a mutable reference to the stream with the given ID if it exists,
/// or create a new one with given paras otherwise if it is allowed.
fn get_or_create(&mut self, id: u64, local: bool) -> Result<&mut Stream> {
match self.streams.entry(id) {
// 1.Can not find any stream with the given stream ID.
// It may not be created yet or it has been closed.
hash_map::Entry::Vacant(v) => {
// Stream has already been closed and collected into `closed`.
if self.closed.contains(&id) {
return Err(Error::Done);
}
// Requested stream ID is not valid with the current role.
if local != is_local(id, self.is_server) {
return Err(Error::StreamStateError);
}
let bidi = is_bidi(id);
// Get the maximum amount of data that the new stream can receive and sent.
let (max_rx_data, max_tx_data) = Self::max_stream_data_limit(
local,
bidi,
&self.local_transport_params,
&self.peer_transport_params,
);
// Check if the stream ID complies with the stream limits of the current
// role, and try to update the stream count if it is valid.
self.concurrency_control
.check_concurrency_limits(id, self.is_server)?;
// Create a new stream.
let mut new_stream = Stream::new(
bidi,
local,
max_tx_data,
max_rx_data,
self.max_stream_window,
);
let trace_id = format!("{}-{}", &self.trace_id, id);
new_stream.set_trace_id(&trace_id);
// Stream might already be writable due to initial flow control credit.
if new_stream.is_writable() {
self.writable.insert(id);
}
self.events.add(Event::StreamCreated(id));
Ok(v.insert(new_stream))
}
// 2.Stream already exists.
hash_map::Entry::Occupied(v) => Ok(v.into_mut()),
}
}
/// Return true if need to send stream frames.
pub fn need_send_stream_frames(&self) -> bool {
self.has_sendable_streams()
|| self.rx_almost_full
|| self.data_blocked_at().is_some()
|| self.should_send_max_streams()
|| self.has_almost_full_streams()
|| self.has_blocked_streams()
|| self.has_reset_streams()
|| self.has_stopped_streams()
|| self.streams_blocked()
}
/// Push the stream ID to the sendable queue with the given urgency and
/// incremental flag.
///
/// If the given stream ID is already in the queue, this function must
/// not be called to ensure the fairness of the scheduling and avoid the
/// spurious cycles through the queue.
fn push_sendable(&mut self, stream_id: u64, urgency: u8, incremental: bool) {
// 1.Get priority queue with the given urgency, if it does not exist, create a new one.
let queue = match self.sendable.entry(urgency) {
btree_map::Entry::Vacant(v) => v.insert(StreamPriorityQueue::default()),
btree_map::Entry::Occupied(v) => v.into_mut(),
};
// 2.Push the element to the queue corresponding to the given incremental flag.
if !incremental {
// Non-incremental streams are scheduled in order of their stream ID.
queue.non_incremental.push(cmp::Reverse(stream_id))
} else {
// Incremental streams are scheduled in a round-robin fashion.
queue.incremental.push_back(stream_id)
};
}
/// Return the first stream ID from the sendable queue with the highest priority.
///
/// Note that the caller should call `remove_sendable` to remove the stream from the
/// queue if it is no longer sendable after sending some of its outstanding data.
pub fn peek_sendable(&mut self) -> Option<u64> {
let queue = match self.sendable.iter_mut().next() {
Some((_, queue)) => queue,
None => return None,
};
// 1.Try to get the non-incremental stream with the lowest stream ID.
match queue.non_incremental.peek().map(|x| x.0) {
Some(stream_id) => Some(stream_id),
None => {
// 2.Try to get the incremental stream from the front of the queue.
// Incremental streams are scheduled in a round-robin fashion, So
// we should move the current peeked incremental stream to the end
// of the queue.
match queue.incremental.pop_front() {
Some(stream_id) => {
queue.incremental.push_back(stream_id);
Some(stream_id)
}
// Should never happen.
None => None,
}
}
}
}
/// Remove the last peeked stream from the sendable streams queue.
pub fn remove_sendable(&mut self) {
// Get the first entry which is the queue with the highest priority.
let mut entry = match self.sendable.first_entry() {
Some(entry) => entry,
// Should never happen, as `peek_sendable()` must be called priorly.
None => return,
};
let queue = entry.get_mut();
queue
.non_incremental
.pop()
.map(|x| x.0)
.or_else(|| queue.incremental.pop_back());
// Remove the queue from the queues list if it is empty at present time,
// so that the next time `peek_sendable()` is invoked, the next non-empty
// queue is selected.
if queue.non_incremental.is_empty() && queue.incremental.is_empty() {
entry.remove();
}
}
/// Add or remove the stream ID to/from the `readable` streams set.
///
/// Do nothing if `readable` is true but the stream was already in the list.
fn mark_readable(&mut self, stream_id: u64, readable: bool) {
match readable {
true => self.readable.insert(stream_id),
false => self.readable.remove(&stream_id),
};
}
/// Add or remove the stream ID to/from the `writable` streams set.
///
/// Do nothing if `writable` is true but the stream was already in the list.
fn mark_writable(&mut self, stream_id: u64, writable: bool) {
match writable {
true => self.writable.insert(stream_id),
false => self.writable.remove(&stream_id),
};
}
/// Add or remove the stream ID to/from the `almost_full` streams set.
///
/// Do nothing if `almost_full` is true but the stream was already in the list.
pub fn mark_almost_full(&mut self, stream_id: u64, almost_full: bool) {
match almost_full {
true => self.almost_full.insert(stream_id),
false => self.almost_full.remove(&stream_id),
};
}
/// Add or remove the stream ID to/from the `data_blocked` streams set with the
/// given offset value.
///
/// If `blocked` is true but the stream was already in the list, the offset value
/// will be updated.
pub fn mark_blocked(&mut self, stream_id: u64, blocked: bool, off: u64) {
match blocked {
true => self.data_blocked.insert(stream_id, off),
false => self.data_blocked.remove(&stream_id),
};
}
/// Add or remove the stream ID to/from the `reset` streams set with the
/// given error code and final size values.
///
/// If `reset` is true but the stream was already in the list, the error code
/// and final size values will be updated.
pub fn mark_reset(&mut self, stream_id: u64, reset: bool, error_code: u64, final_size: u64) {
match reset {
true => self.reset.insert(stream_id, (error_code, final_size)),
false => self.reset.remove(&stream_id),
};
}
/// Add or remove the stream ID to/from the `stop` streams set with the
/// given error code.
///
/// If `stopped` is true but the stream was already in the list, the error code
/// will be updated.
pub fn mark_stopped(&mut self, stream_id: u64, stopped: bool, error_code: u64) {
match stopped {
true => self.stopped.insert(stream_id, error_code),
false => self.stopped.remove(&stream_id),
};
}
/// Remove the stream ID from the readable and writable streams sets, and
/// adds it to the closed streams set.
///
/// Note that this method does not check if the stream id is complied with
/// the role of the endpoint.
fn mark_closed(&mut self, stream_id: u64, local: bool) {
if self.closed.contains(&stream_id) {
return;
}
// Give back a max_streams credit if the stream was initiated by the peer.
if !local {
if is_bidi(stream_id) {
self.concurrency_control
.increase_max_streams_credits(true, 1);
} else {
self.concurrency_control
.increase_max_streams_credits(false, 1);
}
}
self.mark_readable(stream_id, false);
self.mark_writable(stream_id, false);
self.closed.insert(stream_id);
if self.events.add(Event::StreamClosed(stream_id)) {
// When event queue is enabled, inform the Endpoint to process
// StreamClosed event and destroy the stream object.
return;
}
self.stream_destroy(stream_id);
}
/// Destroy the closed stream.
pub(crate) fn stream_destroy(&mut self, stream_id: u64) {
self.streams.remove(&stream_id);
}
/// Get the maximum streams that the peer allows the local endpoint to open.
pub fn peer_max_streams(&self, bidi: bool) -> u64 {
self.concurrency_control.peer_max_streams(bidi)
}
/// After sending a MAX_STREAMS(type: 0x12..0x13) frame, update local max_streams limit.
pub fn update_local_max_streams(&mut self, bidi: bool) {
self.concurrency_control.update_local_max_streams(bidi);
}
/// Get the maximum streams that the local endpoint allow the peer to open.
pub fn max_streams(&self, bidi: bool) -> u64 {
match bidi {
true => self.concurrency_control.local_max_streams_bidi,
false => self.concurrency_control.local_max_streams_uni,
}
}
/// Get the next max streams limit that will be sent to the peer
/// in a MAX_STREAMS(type:0x12..0x13) frame.
pub fn max_streams_next(&self, bidi: bool) -> u64 {
match bidi {
true => self.concurrency_control.local_max_streams_bidi_next,
false => self.concurrency_control.local_max_streams_uni_next,
}
}
/// Return true if we should send a MAX_STREAMS(type: 0x12..0x13) frame to the peer.
pub fn should_send_max_streams(&self) -> bool {
self.concurrency_control
.should_update_local_max_streams(true)
|| self
.concurrency_control
.should_update_local_max_streams(false)
}
/// Return true if the max streams limit should be updated
/// by sending a MAX_STREAMS(type: 0x12..0x13) frame to the peer.
pub fn should_update_local_max_streams(&self, bidi: bool) -> bool {
self.concurrency_control
.should_update_local_max_streams(bidi)
}
/// Get the last offset at which the connection send-side was blocked, if any.
pub fn data_blocked_at(&self) -> Option<u64> {
self.send_capacity.blocked_at
}
pub fn streams_blocked(&self) -> bool {
self.concurrency_control.streams_blocked_at_bidi.is_some()
|| self.concurrency_control.streams_blocked_at_uni.is_some()
}
pub fn streams_blocked_at(&self, bidi: bool) -> Option<u64> {
match bidi {
true => self.concurrency_control.streams_blocked_at_bidi,
false => self.concurrency_control.streams_blocked_at_uni,
}
}
/// Return an iterator over streams that have outstanding data to be read
/// by the application.
pub fn readable_iter(&self) -> StreamIter {
StreamIter::from(&self.readable)
}
/// Return true if there are any streams that have data to read.
pub fn has_readable(&self) -> bool {
let iter = StreamIter::from(&self.readable);
for stream_id in iter {
if self.check_readable(stream_id) {
trace!("{} has readable stream {}", self.trace_id, stream_id);
return true;
}
}
trace!("{} no any readable stream", self.trace_id);
false
}
/// Return an iterator over streams that have available send capacity of stream level.
pub fn writable_iter(&self) -> StreamIter {
StreamIter::from(&self.writable)
}
/// Return true if there are any streams that can be written by the application.
pub fn has_writable(&self) -> bool {
if self.send_capacity.capacity == 0 {
return false;
}
let iter = StreamIter::from(&self.writable);
for stream_id in iter {
if self.check_writable(stream_id) {
trace!("{} has writable stream {}", self.trace_id, stream_id);
return true;
}
}
trace!("{} no any writable stream", self.trace_id);
false
}
/// Set want write flag for a stream.
///
/// Return `Error::Done` if the stream is not found.
pub fn want_write(&mut self, stream_id: u64, want: bool) -> Result<()> {
match self.get_mut(stream_id) {
Some(stream) => stream.mark_wantwrite(want),
None => Err(Error::Done),
}
}
/// Set want read flag for a stream.
///
/// Return `Error::Done` if the stream is not found.
pub fn want_read(&mut self, stream_id: u64, want: bool) -> Result<()> {
match self.get_mut(stream_id) {
Some(stream) => stream.mark_wantread(want),
None => Err(Error::Done),
}
}
/// Return true if application wants to write more data to the stream
/// and it has enough flow control capacity to do so.
///
/// Note that if application wants to write, and the stream was stopped
/// by peer, return true.
pub fn check_writable(&self, stream_id: u64) -> bool {
if let Some(stream) = self.get(stream_id) {
if !stream.is_wantwrite() {
return false;
}
let capacity = match stream.send.capacity() {
Ok(v) => v,
// If stream.send.capacity() return err, it means the stream is stopped
// by peer, then we return the stream to the application immediately.
Err(_) => return true,
};
if cmp::min(self.send_capacity.capacity, capacity) >= stream.write_thresh {
return true;
}
}
false
}
/// Return true if application wants to read more data from the stream.
pub fn check_readable(&self, stream_id: u64) -> bool {
if let Some(stream) = self.get(stream_id) {
return stream.is_wantread();
}
false
}
/// Return an iterator over streams that the available send capacity can be used
/// by the peer are almost full, and need to send MAX_STREAM_DATA to the peer.
pub fn almost_full(&self) -> StreamIter {
StreamIter::from(&self.almost_full)
}
/// Return an iterator over streams that wish to send data but are unable to do so
/// due to stream-level flow control and need to send STREAM_DATA_BLOCKED to the peer.
pub fn blocked(&self) -> hash_map::Iter<u64, u64> {
self.data_blocked.iter()
}
/// Create an iterator over streams that the send-side has been shutdown
/// prematurely and need to send RESET_STREAM frame to the peer.
pub fn reset(&self) -> hash_map::Iter<u64, (u64, u64)> {
self.reset.iter()
}
/// Create an iterator over streams that the receive-side has been shutdown
/// prematurely and need to send STOP_SENDING frame to the peer.
pub fn stopped(&self) -> hash_map::Iter<u64, u64> {
self.stopped.iter()
}
/// Return true if the stream has been closed and collected to `closed`.
pub fn is_closed(&self, stream_id: u64) -> bool {
self.closed.contains(&stream_id)
}
/// Return true if there are any streams that have buffered data to send.
fn has_sendable_streams(&self) -> bool {
!self.sendable.is_empty()
}
/// Return true if there are any streams that have data to be read by application.
pub fn has_readable_streams(&self) -> bool {
!self.readable.is_empty()
}
/// Return true if there are any streams that need to send MAX_STREAM_DATA
/// to update the receive-side flow control limit.
fn has_almost_full_streams(&self) -> bool {
!self.almost_full.is_empty()
}
/// Return true if there are any streams that wish to send data but are unable
/// to do so due to stream-level flow control and need to send STREAM_DATA_BLOCKED
/// frame to the peer.
fn has_blocked_streams(&self) -> bool {
!self.data_blocked.is_empty()
}
/// Return true if there are any streams that are reset in the send-side
/// and need to send RESET_STREAM frame to the peer.
fn has_reset_streams(&self) -> bool {
!self.reset.is_empty()
}
/// Return true if there are any streams that are shutdown on the receive-side
/// and need to send STOP_SENDING frame to the peer.
fn has_stopped_streams(&self) -> bool {
!self.stopped.is_empty()
}
/// Update connection send-side flow control blocked state.
pub fn update_data_blocked_at(&mut self, blocked_at: Option<u64>) {
self.send_capacity.update_blocked_at(blocked_at);
}
/// Update connection concurrency control blocked state.
pub fn update_streams_blocked_at(&mut self, bidi: bool, blocked_at: Option<u64>) {
self.concurrency_control
.update_streams_blocked_at(bidi, blocked_at);
}
/// Receive a MAX_DATA frame from the peer, update the connection-level
/// send-side flow control limit.
pub fn on_max_data_frame_received(&mut self, max_data: u64) {
self.send_capacity.update_max_data(max_data);
self.send_capacity.update_capacity();
// Cancel the connection-level flow control blocked state if the
// connection-level flow control limit is increased, avoid sending
// redundant DATA_BLOCKED frames.
if Some(self.send_capacity.max_data) > self.send_capacity.blocked_at {
self.send_capacity.blocked_at = None;
}
}
/// Receive a MAX_STREAM_DATA frame from the peer, update the stream-level
/// send-side flow control limit.
pub fn on_max_stream_data_frame_received(
&mut self,
stream_id: u64,
max_data: u64,
) -> Result<()> {
// RFC9000 19.10. MAX_STREAM_DATA Frames
// An endpoint that receives a MAX_STREAM_DATA frame for a receive-only stream
// MUST terminate the connection with error STREAM_STATE_ERROR.
if !is_local(stream_id, self.is_server) && !is_bidi(stream_id) {
// 针对StreamStateError做扩展,支持记录ID,以及首次发现异常的帧
return Err(Error::StreamStateError);
}
// Get existing stream or create a new one, but if the stream
// has already been closed and collected, ignore the frame.
let stream = match self.get_or_create(stream_id, false) {
Ok(v) => v,
// Stream is already closed, just ignore the frame even though
// it might be illegal.
Err(Error::Done) => return Ok(()),
Err(e) => return Err(e),
};
let was_sendable = stream.is_sendable();
stream.send.update_max_data(max_data);
// Note that we don't need to check and update the stream-level flow control
// blocked state here, it will be checked and updated in stream_send.
let writable = stream.is_writable();
// If the stream is now sendable push it to the sendable queue,
// but only if it wasn't already queued.
if stream.is_sendable() && !was_sendable {
// Note: rust borrow checker doesn't allow us to borrow `self` twice,
// so here we cannot use stream.urgency and stream.incremental directly.
let urgency = stream.urgency;
let incremental = stream.incremental;
self.push_sendable(stream_id, urgency, incremental);
}
if writable {
self.mark_writable(stream_id, true);
}
Ok(())
}
/// Receive a MAX_STREAMS frame from the peer, update the max stream limits.
pub fn on_max_streams_frame_received(&mut self, max_streams: u64, bidi: bool) -> Result<()> {
// RFC9000 19.11. MAX_STREAMS Frames
// A count of the cumulative number of streams of the corresponding
// type that can be opened over the lifetime of the connection.
// This value cannot exceed 2^60, as it is not possible to encode
// stream IDs larger than 2^62-1. Receipt of a frame that permits
// opening of a stream larger than this limit MUST be treated as
// a connection error of type FRAME_ENCODING_ERROR.
if max_streams > MAX_STREAMS_PER_TYPE {
return Err(Error::FrameEncodingError);
}
self.concurrency_control
.update_peer_max_streams(bidi, max_streams);
Ok(())
}
/// Receive a DATA_BLOCKED frame from the peer.
pub fn on_data_blocked_frame_received(&mut self, max_data: u64) {
// We will judge whether to send MAX_DATA frame actively according to the received
// data, and do not rely on the DATA_BLOCKED frame from the peer.
}
/// Receive a STREAM_DATA_BLOCKED frame from the peer.
pub fn on_stream_data_blocked_frame_received(
&mut self,
stream_id: u64,
max_stream_data: u64,
) -> Result<()> {
// RFC9000 19.13. STREAM_DATA_BLOCKED Frames
// An endpoint that receives a STREAM_DATA_BLOCKED frame for a send-only stream
// MUST terminate the connection with error STREAM_STATE_ERROR.
if is_local(stream_id, self.is_server) && !is_bidi(stream_id) {
return Err(Error::StreamStateError);
}
Ok(())
}
/// Receive a STREAMS_BLOCKED frame from the peer.
pub fn on_streams_blocked_frame_received(
&mut self,
max_streams: u64,
bidi: bool,
) -> Result<()> {
if max_streams > MAX_STREAMS_PER_TYPE {
return Err(Error::FrameEncodingError);
}
Ok(())
}
/// Receive a RESET_STREAM frame from the peer.
pub fn on_reset_stream_frame_received(
&mut self,
stream_id: u64,
error_code: u64,
final_size: u64,
) -> Result<()> {
// Peer can't send data on local initialized unidirectional streams.
// RFC9000 19.4. RESET_STREAM Frame
// An endpoint that receives a RESET_STREAM frame for a send-only stream
// MUST terminate the connection with error STREAM_STATE_ERROR.
if !is_bidi(stream_id) && is_local(stream_id, self.is_server) {
return Err(Error::StreamStateError);
}
// Note: We cannot move this line to after calling get_or_create() because
// borrow `*self` as immutable after it is borrowed as mutable was forbidden.
let max_rx_data_left = self.max_rx_data_left();
// Get existing stream or create a new one, but if the stream
// has already been closed and collected, ignore the frame.
let stream = match self.get_or_create(stream_id, false) {
Ok(v) => v,
// Stream is already closed, just ignore the frame even though
// it might be illegal.
Err(Error::Done) => return Ok(()),
Err(e) => return Err(e),
};
if !stream.recv.is_complete() {
warn!("{} received RESET_STREAM frame before recv completed with error code {} and final size {}, recv_off {} read_off {}",
stream.trace_id, error_code, final_size, stream.recv.recv_off, stream.recv.read_off);
} else {
trace!(
"{} received RESET_STREAM frame with error code {} and final size {}",
stream.trace_id,
error_code,
final_size
);
}
let was_readable = stream.is_readable();
// When a stream is reset, all buffered data will be discarded, so consider
// the received data as consumed, which might trigger a connection-level
// flow control update.
let max_fc_off_delta = final_size.saturating_sub(stream.recv.read_off());
let max_rx_off_delta = stream.recv.reset(error_code, final_size)? as u64;
if max_rx_off_delta > max_rx_data_left {
return Err(Error::FlowControlError);
}
if !was_readable && stream.is_readable() {
self.mark_readable(stream_id, true);
}
self.flow_control.increase_recv_off(max_rx_off_delta);
self.flow_control.increase_read_off(max_fc_off_delta);
if self.flow_control.should_send_max_data() {
self.rx_almost_full = true;
}
Ok(())
}
/// Receive a STOP_SENDING frame from the peer.
pub fn on_stop_sending_frame_received(
&mut self,
stream_id: u64,
error_code: u64,
) -> Result<()> {
// RFC9000 19.5. STOP_SENDING Frames
// An endpoint that receives a STOP_SENDING frame for a receive-only
// stream MUST terminate the connection with error STREAM_STATE_ERROR.
if !is_local(stream_id, self.is_server) && !is_bidi(stream_id) {
return Err(Error::StreamStateError);
}
// Note that the following rule is implemented in get_or_create().
// Receiving a STOP_SENDING frame for a locally initiated stream that
// has not yet been created MUST be treated as a connection error of
// type STREAM_STATE_ERROR.
// Get existing stream or create a new one, but if the stream
// has already been closed and collected, ignore the frame.
let stream = match self.get_or_create(stream_id, false) {
Ok(v) => v,
// Stream is already closed, just ignore the frame even though
// it might be illegal.
Err(Error::Done) => return Ok(()),
Err(e) => return Err(e),
};
if !stream.send.is_complete() {
warn!("{} received STOP_SENDING frame before send completed with error code {}, write_off {} unsent_off {} unacked_len {}",
stream.trace_id, error_code, stream.send.write_off, stream.send.unsent_off, stream.send.unacked_len);
} else {
trace!(
"{} received STOP_SENDING frame with error code {}",
stream.trace_id,
error_code
);
}
let was_writable = stream.is_writable();
if let Ok((final_size, unsent)) = stream.send.stop(error_code) {
// Claw back some flow control allowance from data that was
// buffered but not actually sent before the stream was
// reset.
self.send_capacity.tx_data = self.send_capacity.tx_data.saturating_sub(unsent);
self.send_capacity.update_capacity();
// RFC9000 3.5
// A STOP_SENDING frame requests that the receiving endpoint send a RESET_STREAM frame.
// An endpoint that receives a STOP_SENDING frame MUST send a RESET_STREAM frame if the
// stream is in the "Ready" or "Send" state. If the stream is in the "Data Sent" state,
// the endpoint MAY defer sending the RESET_STREAM frame until the packets containing
// outstanding data are acknowledged or declared lost. If any outstanding data is declared
// lost, the endpoint SHOULD send a RESET_STREAM frame instead of retransmitting the data.
// An endpoint SHOULD copy the error code from the STOP_SENDING frame to the RESET_STREAM
// frame it sends, but it can use any application error code. An endpoint that sends a
// STOP_SENDING frame MAY ignore the error code in any RESET_STREAM frames subsequently
// received for that stream.
self.mark_reset(stream_id, true, error_code, final_size);
if !was_writable {
self.mark_writable(stream_id, true);
}
}
Ok(())
}
/// Autotune the connection's receive-side flow control window size.
pub fn autotune_window(&mut self, now: time::Instant, srtt: time::Duration) {
self.flow_control.autotune_window(now, srtt);
}
/// Get the connection's receive-side flow control limit.
pub fn max_rx_data(&self) -> u64 {
self.flow_control.max_data()
}
/// Get the connection's receive-side next flow control limit that will be
/// sent to the peer in a MAX_DATA frame.
pub fn max_rx_data_next(&self) -> u64 {
self.flow_control.max_data_next()
}
/// Apply the connection's receive-side new flow control limit.
pub fn update_max_rx_data(&mut self, now: Instant) {
self.flow_control.update_max_data(now);
}
/// Ensure that the connection flow control window always has some room
/// compared to the stream flow control window.
pub fn ensure_window_lower_bound(&mut self, min_window: u64) {
self.flow_control.ensure_window_lower_bound(min_window);
}
/// Get the connection's receive-side flow control capacity remaining.
fn max_rx_data_left(&self) -> u64 {
self.flow_control.max_data() - self.flow_control.recv_off()
}
/// Get the connection's send-side flow control capacity remaining.
fn max_tx_data_left(&self) -> u64 {
self.send_capacity.max_data - self.send_capacity.tx_data
}
/// Get the largest offset observed on current connection.
#[cfg(test)]
fn max_recv_off(&self) -> u64 {
self.flow_control.recv_off()
}
/// Get the connection's send-side flow control limit.
#[cfg(test)]
fn max_tx_data(&self) -> u64 {
self.send_capacity.max_data
}
/// Get the total amount of data sent on the entire connection.
#[cfg(test)]
fn tx_data(&self) -> u64 {
self.send_capacity.tx_data
}
/// Get the connection's send-side flow control capacity remaining.
#[cfg(test)]
fn tx_capacity(&self) -> usize {
self.send_capacity.capacity
}
/// Receive a STREAM frame from the peer.
pub fn on_stream_frame_received(
&mut self,
stream_id: u64,
offset: u64,
length: usize,
fin: bool,
data: Bytes,
) -> Result<()> {
// RFC9000 19.8. STREAM Frames
// An endpoint MUST terminate the connection with error STREAM_STATE_ERROR
// if it receives a STREAM frame for a locally initiated stream that has not
// yet been created, or for a send-only stream.
if is_local(stream_id, self.is_server) {
// Recv STREAM frame on a locally initiated uni stream.
if !is_bidi(stream_id)
// Recv STREAM frame on a stream that has not yet been created.
|| (self.get(stream_id).is_none() && !self.is_closed(stream_id))
{
return Err(Error::StreamStateError);
}
}
// Note: We cannot move this line to after calling get_or_create() because
// borrow `*self` as immutable after it is borrowed as mutable was forbidden.
let max_rx_data_left = self.max_rx_data_left();
// Get existing stream or create a new one, but if the stream
// has already been closed and collected, ignore the frame.
let stream = match self.get_or_create(stream_id, false) {
Ok(v) => v,
// Stream is already closed, just ignore the frame even though
// it might be illegal.
Err(Error::Done) => return Ok(()),
Err(e) => return Err(e),
};
let data_max_off = offset + length as u64;
// Check for the connection-level flow control limit.
let max_rx_off_delta = data_max_off.saturating_sub(stream.recv.recv_off());
if max_rx_off_delta > max_rx_data_left {
return Err(Error::FlowControlError);
}
let was_readable = stream.is_readable();
let was_draining = stream.is_draining();
// Insert the new data into the stream's receive buffer.
stream.recv.write(offset, data, fin)?;
if !was_readable && stream.is_readable() {
self.mark_readable(stream_id, true);
}
self.flow_control.increase_recv_off(max_rx_off_delta);
if was_draining {
// We won't buffer incoming data any more after the stream's receive-side
// shutdown, but consider the received data as consumed, and try to update
// the connection-level flow control limit.
self.flow_control.increase_read_off(max_rx_off_delta);
if self.flow_control.should_send_max_data() {
self.rx_almost_full = true;
}
}
Ok(())
}
/// STREAM frame was acked, release data block from send buffer, and
/// delete stream from streams set if it's complete and not readable.
pub fn on_stream_frame_acked(&mut self, stream_id: u64, offset: u64, length: usize) {
let stream = match self.streams.get_mut(&stream_id) {
Some(v) => v,
None => return,
};
stream.send.ack_and_drop(offset, length);
// Mark closed if the stream is complete and not readable.
if stream.is_complete() && !stream.is_readable() {
let local = stream.local;
self.mark_closed(stream_id, local);
}
}
/// RESET_STREAM frame was acked, the sending part of the stream enters
/// the "Reset Recvd" state, which is a terminal state. If the receiving
/// part of the stream is already in a terminal state, delete the stream
/// from streams set.
pub fn on_reset_stream_frame_acked(&mut self, stream_id: u64) {
let stream = match self.streams.get_mut(&stream_id) {
Some(v) => v,
None => return,
};
// Mark closed if the stream is complete and not readable.
if stream.is_complete() && !stream.is_readable() {
let local = stream.local;
self.mark_closed(stream_id, local);
}
}
/// STREAM frame was lost, mark data block should be retransmitted and
/// try add stream to priority queue.
pub fn on_stream_frame_lost(&mut self, stream_id: u64, offset: u64, length: usize, fin: bool) {
let stream = match self.streams.get_mut(&stream_id) {
Some(v) => v,
None => return,
};
let was_sendable = stream.is_sendable();
let empty_fin = length == 0 && fin;
// Mark data block should be retransmitted.
stream.send.retransmit(offset, length);
// Add stream to priority queue if the stream is now sendable and
// it wasn't already queued.
// Note that the stream may only has a zero-length frame with fin flag.
if (stream.is_sendable() || empty_fin) && !was_sendable {
let urgency = stream.urgency;
let incremental = stream.incremental;
self.push_sendable(stream_id, urgency, incremental);
}
}
/// RESET_STREAM frame was lost, if the stream is still open, add the stream
/// to the reset set to ensure a RESET_STREAM frame will be retransmitted.
pub fn on_reset_stream_frame_lost(&mut self, stream_id: u64, error_code: u64, final_size: u64) {
if self.streams.get(&stream_id).is_some() {
self.mark_reset(stream_id, true, error_code, final_size);
}
}
/// STOP_SENDING frame was lost, add the stream to the stopped set to ensure
/// a STOP_SENDING frame will be sent unless the stream receive-side is finished.
pub fn on_stop_sending_frame_lost(&mut self, stream_id: u64, error_code: u64) {
let stream = match self.streams.get(&stream_id) {
Some(v) => v,
None => return,
};
// Receive-side final size is known, do not retransmit STOP_SENDING frame.
if !stream.recv.is_fin() {
self.mark_stopped(stream_id, true, error_code);
}
}
/// MAX_STREAM_DATA frame was lost, add the stream to the almost full set
/// to ensure a MAX_STREAM_DATA frame will be sent.
pub fn on_max_stream_data_frame_lost(&mut self, stream_id: u64) {
if self.streams.get(&stream_id).is_some() {
self.mark_almost_full(stream_id, true);
}
}
/// MAX_DATA frame was lost, mark the receive-side flow control of the
/// connection is almost full to ensure a MAX_DATA frame will be sent.
pub fn on_max_data_frame_lost(&mut self) {
self.rx_almost_full = true;
}
/// MAX_STREAMS frame was lost.
pub fn on_max_streams_frame_lost(&mut self, bidi: bool, max: u64) {
// We will send MAX_STREAMS frames to update the max_streams limit according to
// the stream consumption situation actively, but we will not retransmit the lost
// MAX_STREAMS frames. If multiple MAX_STREAMS frames are lost continuously, it
// may cause the max_streams limit perceived by the peer to be smaller than the
// max_streams limit we set. At this time, the peer should process according to
// the max_streams limit specified in the protocol.
}
/// STREAM_DATA_BLOCKED frame was lost, if peer still not issue more
/// max_stream_data credits, mark stream data blocked again to ensure
/// a STREAM_DATA_BLOCKED frame will be sent.
pub fn on_stream_data_blocked_frame_lost(&mut self, stream_id: u64, blocked_at: u64) {
let stream = match self.streams.get(&stream_id) {
Some(v) => v,
None => return,
};
if blocked_at == stream.send.max_data {
self.mark_blocked(stream_id, true, blocked_at);
}
}
/// DATA_BLOCKED frame was lost, if peer still not issue more max_data credits,
/// mark data blocked again to ensure a DATA_BLOCKED frame will be sent.
pub fn on_data_blocked_frame_lost(&mut self, max: u64) {
if max == self.send_capacity.max_data {
self.update_data_blocked_at(Some(max));
}
}
/// STREAMS_BLOCKED frame was lost, if peer still not issue more max_streams credits,
/// mark streams blocked again to ensure a STREAMS_BLOCKED frame will be sent.
pub fn on_streams_blocked_frame_lost(&mut self, bidi: bool, max_streams: u64) {
if max_streams == self.concurrency_control.peer_max_streams(bidi) {
self.concurrency_control
.update_streams_blocked_at(bidi, Some(max_streams));
}
}
/// Get the number of active streams in the map.
#[cfg(test)]
pub fn len(&self) -> usize {
self.streams.len()
}
/// Update the peer transport parameters after receiving them from the peer.
pub fn update_peer_stream_transport_params(&mut self, tp: StreamTransportParams) {
self.peer_transport_params = tp;
// Update the peer's max data and local's send capacity for
// connection-level send-side flow control.
self.send_capacity.update_max_data(tp.initial_max_data);
self.send_capacity.update_capacity();
// Update the peer's max streams limit for concurrency control.
self.concurrency_control
.update_peer_max_streams(true, tp.initial_max_streams_bidi);
self.concurrency_control
.update_peer_max_streams(false, tp.initial_max_streams_uni);
}
}
/// Various flags of QUIC stream
#[bitflags]
#[repr(u32)]
#[derive(Clone, Copy)]
enum StreamFlags {
/// Upper layer want to read data from stream.
WantRead = 1 << 0,
// Upper layer want to write data to stream.
WantWrite = 1 << 1,
}
#[derive(Default)]
pub struct Stream {
/// Whether the stream is bidirectional.
pub bidi: bool,
/// Whether the stream was created by the local endpoint.
pub local: bool,
/// The stream's urgency.
// 1. RFC 9000 - 5.3. Stream Prioritization
// Stream multiplexing can have a significant effect on application performance
// if resources allocated to streams are correctly prioritized.
// QUIC does not provide a mechanism for exchanging prioritization information.
// Instead, it relies on receiving priority information from the application.
// A QUIC implementation SHOULD provide ways in which an application can indicate
// the relative priority of streams. An implementation uses information provided
// by the application to determine how to allocate resources to active streams.
//
// 2. RFC 9218 - 4.1. Urgency
// Endpoints use this parameter to communicate their view of the precedence of
// HTTP responses. The chosen value of urgency can be based on the expectation
// that servers might use this information to transmit HTTP responses in the order
// of their urgency. The smaller the value, the higher the precedence.
pub urgency: u8,
/// Whether the stream data can be send incrementally.
// 1. RFC 9000 QUIC transport prototocl doesn't define incremental parameter.
// 2. RFC 9218 - 4.2. Incremental
// The incremental parameter value is Boolean. It indicates if an HTTP response
// can be processed incrementally, i.e., provide some meaningful output as chunks
// of the response arrive.
pub incremental: bool,
/// Receive-side stream buffer.
pub recv: RecvBuf,
/// Send-side stream buffer.
pub send: SendBuf,
/// Application can write data to send buffer only when flow control capacity
/// larger than this value.
// Use case: Headers need to be sent atomically, so we should make sure there
// has enough capacity before sending headers.
pub write_thresh: usize,
/// Various stream states.
flags: BitFlags<StreamFlags>,
/// For holding Application context.
pub context: Option<Box<dyn Any + Send + Sync>>,
/// Unique trace id for debug logging.
trace_id: String,
}
impl Stream {
/// Create a new stream with the given flow control limits.
pub fn new(
bidi: bool,
local: bool,
max_tx_data: u64,
max_rx_data: u64,
max_window: u64,
) -> Stream {
let flags = match bidi {
// New bidi stream is always want to read and write.
true => WantRead | WantWrite,
false => {
match local {
// New local initialize uni stream is always want to write, and not want to read.
true => WantWrite.into(),
// New remote initialize uni stream is always want to read, and not want to write.
false => WantRead.into(),
}
}
};
Stream {
bidi,
local,
// 1.RFC9000 QUIC transport protocol doesn't specify the default value of
// stream urgency.
//
// 2.RFC9218 define the HTTP stream urgency range from 0 to 7,
// and 3 is the default, which is the middle of the range.
//
// 3.We use 127 as the default value, which is the middle of the u8 range.
// not mandatory and can be changed, but we think 127 is a good choice.
urgency: 127,
// 1.RFC9000 QUIC transport protocol doesn't define incremental parameter.
//
// 2.RFC9218 define incremental parameter for HTTP, it indicates if HTTP
// response can be processed incrementally, i.e, provide some meaningful
// output as chunks of the response arrive.
// The default value of incremental parameter is false(0).
//
// 3.Above all, we set the default value to true, which is more reasonable
// and helps ensure fairness in scheduling.
incremental: true,
recv: RecvBuf::new(max_rx_data, max_window),
send: SendBuf::new(max_tx_data),
write_thresh: 1,
flags,
context: None,
trace_id: String::new(),
}
}
/// Set trace id.
pub fn set_trace_id(&mut self, trace_id: &str) {
self.trace_id = trace_id.to_string();
self.send.trace_id = trace_id.to_string();
self.recv.trace_id = trace_id.to_string();
}
/// Return true if the stream has data to be read.
pub fn is_readable(&self) -> bool {
self.recv.ready()
}
/// Return true if the stream's send-side has not been shutdown by application
/// and is not finished and it has enough flow control capacity to be written to.
pub fn is_writable(&self) -> bool {
!self.send.is_fin()
&& !self.send.is_shutdown()
&& (self.send.write_off + self.write_thresh as u64) <= self.send.max_data
}
/// Return true if the stream buffering some data and flow control allows some of
/// them to be sent.
pub fn is_sendable(&self) -> bool {
self.send.ready()
}
/// Return true if the stream is complete.
pub fn is_complete(&self) -> bool {
match (self.bidi, self.local) {
// For bidi streams, the stream is closed when both send and receive are
// complete.
(true, _) => self.send.is_complete() && self.recv.is_complete(),
// For uni streams initialized locally, the stream is closed when the send
// side is complete.
(false, true) => self.send.is_complete(),
// For uni streams initialized by peer, the stream is closed when the recv
// side is complete.
(false, false) => self.recv.is_complete(),
}
}
/// Return true if the stream receive-side has been shutdown.
/// If true, all new incoming data will be discarded.
pub fn is_draining(&self) -> bool {
self.recv.is_shutdown()
}
/// Check whether the stream is WantWrite
pub fn is_wantwrite(&self) -> bool {
self.flags.contains(WantWrite)
}
/// Mark the stream as WantWrite or not.
///
/// Return error if the stream is not bidi and not local uni stream.
pub fn mark_wantwrite(&mut self, flag: bool) -> Result<()> {
if !self.bidi && !self.local {
return Err(Error::InternalError);
}
match flag {
true => self.flags.insert(WantWrite),
false => self.flags.remove(WantWrite),
};
Ok(())
}
/// Check whether the stream is WantRead
pub fn is_wantread(&self) -> bool {
self.flags.contains(WantRead)
}
/// Mark the stream as WantRead.
///
/// Return error if the stream is not bidi and not remote uni stream.
pub fn mark_wantread(&mut self, flag: bool) -> Result<()> {
if !self.bidi && self.local {
return Err(Error::InternalError);
}
match flag {
true => self.flags.insert(WantRead),
false => self.flags.remove(WantRead),
};
Ok(())
}
}
/// Return true if the stream was created locally.
///
/// The least significant bit (0x01) of the stream ID identifies the initiator
/// of the stream.
/// Client-initiated streams have even-numbered stream IDs (with the bit set to 0),
/// and server-initiated streams have odd-numbered stream IDs (with the bit set to 1).
fn is_local(stream_id: u64, is_server: bool) -> bool {
(stream_id & 0x1) == (is_server as u64)
}
/// Return true if the stream is bidirectional.
///
/// The second least significant bit (0x02) of the stream ID distinguishes
/// between bidirectional streams (with the bit set to 0) and unidirectional
/// streams (with the bit set to 1).
pub fn is_bidi(stream_id: u64) -> bool {
(stream_id & 0x2) == 0
}
/// An iterator over QUIC streams.
#[derive(Default)]
pub struct StreamIter {
streams: SmallVec<[u64; 8]>,
}
impl StreamIter {
#[inline]
fn from(streams: &StreamIdHashSet) -> Self {
StreamIter {
streams: streams.iter().copied().collect(),
}
}
}
impl Iterator for StreamIter {
type Item = u64;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.streams.pop()
}
}
impl ExactSizeIterator for StreamIter {
#[inline]
fn len(&self) -> usize {
self.streams.len()
}
}
/// Receive-side stream buffer.
///
/// The stream data received from peer is buffered in a BTreeMap ordered by
/// offset in ascending order. Contiguous data can then be read into a slice.
#[derive(Debug, Default)]
pub struct RecvBuf {
/// Chunks of data received from the peer ordered by offset
/// but have not yet been read by the application.
/// Note: The key is the maximum offset of the chunk, not the lowest.
data: BTreeMap<u64, RangeBuf>,
/// The lowest data offset that has yet to be read by the application.
read_off: u64,
/// The largest data offset that has been received on this stream.
recv_off: u64,
/// The final stream offset received from the peer, if any.
fin_off: Option<u64>,
/// The error code received from the RESET_STREAM frame.
error: Option<u64>,
/// Whether the stream's Receive-side has been shut down.
shutdown: bool,
/// Receive-side stream flow controller.
flow_control: flowcontrol::FlowControl,
/// Unique trace id for debug logging.
trace_id: String,
}
impl RecvBuf {
/// Create a new receive-side stream buffer with given flow control limits.
fn new(max_data: u64, max_window: u64) -> RecvBuf {
RecvBuf {
flow_control: flowcontrol::FlowControl::new(
max_data,
cmp::min(max_data, DEFAULT_STREAM_WINDOW),
max_window,
),
..RecvBuf::default()
}
}
/// Insert the given chunk of data into the buffer.
pub fn write(&mut self, offset: u64, data: Bytes, fin: bool) -> Result<()> {
let buf = RangeBuf::new(data, offset, fin);
// 1. Validate the legality of stream flow control limits
// An endpoint MUST terminate a connection with an error of type FLOW_CONTROL_ERROR
// if it receives more data than the largest maximum stream data that it has sent
// for the affected stream.
if buf.max_off() > self.max_data() {
return Err(Error::FlowControlError);
}
// 2. Validate the legality of final size constraints
if let Some(fin_off) = self.fin_off {
// A receiver SHOULD treat receipt of data at or beyond the final size as an
// error of type FINAL_SIZE_ERROR.
if buf.max_off() > fin_off {
return Err(Error::FinalSizeError);
}
// Once a final size for a stream is known, it cannot change. If a STREAM
// frame is received indicating a change in the final size for the stream,
// an endpoint SHOULD respond with an error of type FINAL_SIZE_ERROR.
if buf.fin() && fin_off != buf.max_off() {
return Err(Error::FinalSizeError);
}
}
// An endpoint received a STREAM frame containing a final size that was lower than
// the size of stream data that was already received.
if buf.fin() && buf.max_off() < self.recv_off {
return Err(Error::FinalSizeError);
}
// 3. Check if the stream's receive-side is finished
if self.is_fin() {
return Ok(());
}
// If the buffer with a FIN flag, then set the final size of the stream
// to the maximum offset of the buffer.
if buf.fin() {
self.fin_off = Some(buf.max_off());
}
// Do nothing if the buffer is empty and without fin flag.
if !buf.fin() && buf.is_empty() {
return Ok(());
}
// 4. Check if the buffer overlaps with existing data blocks
// Check if data is fully duplicated, that is the buffer's max offset is
// lower or equal to the lowest data offset that has yet to be read by
// the application.
if self.read_off >= buf.max_off() {
// Exception case: Empty buffer with FIN flag.
if !buf.is_empty() {
return Ok(());
}
}
// The newly received data may overlap with existing data blocks, and
// it may be split into multiple segments before being stored.
let mut tmp_bufs = VecDeque::with_capacity(2);
tmp_bufs.push_back(buf);
'outer_loop: while let Some(mut buf) = tmp_bufs.pop_front() {
// Bytes up to self.read_off have already been consumed by application
// so we should not buffer them again, just discard them.
if self.read_off() > buf.off() {
buf.advance((self.read_off() - buf.off()) as usize);
}
// Handle overlapping buffer or merge an empty final buffer.
if buf.off() < self.recv_off() || buf.is_empty() {
for (_, b) in self.data.range(buf.off()..) {
let off = buf.off();
// New buffer cannot overlap with any of the following buffers.
if b.off() > buf.max_off() {
break;
}
// New buffer completely overlaps with the existing one.
// i.e.[b.start [buf.start, buf.end) b.end)
else if off >= b.off() && buf.max_off() <= b.max_off() {
continue 'outer_loop;
}
// The first half of the buffer "buf" overlaps with the existing
// buffer "b". Advance the buffer "buf" to the end of the existing
// buffer "b".
// i.e. b.start < buf.start < b.end, discard [buf.start, b.end),
// and store buf = buf[b.end, buf.end)
else if off >= b.off() && off < b.max_off() {
buf.advance((b.max_off() - off) as usize);
}
// The second half of the buffer "buf" overlaps with the existing
// buffer "b". Use "split_off" to split the buffer, insert the first
// half of "buf" into "BTreeMap" after "for" loop, and the second
// half may still overlap with the existing part of "buf". Insert it
// into the temporary "VecDeque" for further processing.
// i.e. buf.start < b.start and buf.end > b.start
// [buf.start, b.start) will be insert to "BTreeMap"
// [b.start, buf.end) insert into the temp "VecDeque"
else if off < b.off() && buf.max_off() > b.off() {
tmp_bufs.push_back(buf.split_off((b.off() - off) as usize));
}
}
}
// update stream received offset to max_off
self.recv_off = cmp::max(self.recv_off, buf.max_off());
if !self.shutdown {
// Here we take buf.max_off as key but not buf.off,
// because buf.off maybe changed while application consuming buf partially.
self.data.insert(buf.max_off(), buf);
}
}
Ok(())
}
/// Read data from the receive buffer, and write them into the given output buffer.
///
/// Currently, only contiguous data can be consumed by application. If there is no
/// data at the expected read offset, return `Done`.
///
/// On success the amount of data read, and a flag indicating if there is
/// no more data in the buffer, are returned as a tuple.
pub fn read(&mut self, out: &mut [u8]) -> Result<(usize, bool)> {
let mut len = 0;
let mut cap = out.len();
// Only contiguous data can be consumed by application.
if !self.ready() {
return Err(Error::Done);
}
// The stream has been reset by the peer.
if let Some(e) = self.error {
// An empty buffer with FIN flag may be left in the buffer when the stream
// is reset, because the final offset of the stream is not known when the
// stream is reset.
self.data.clear();
return Err(Error::StreamReset(e));
}
while cap > 0 && self.ready() {
let mut entry = match self.data.first_entry() {
Some(entry) => entry,
None => break,
};
let buf = entry.get_mut();
let buf_len = cmp::min(buf.len(), cap);
out[len..len + buf_len].copy_from_slice(&buf[..buf_len]);
// Update the lowest data offset that has yet to be read by the application.
self.read_off += buf_len as u64;
len += buf_len;
cap -= buf_len;
if buf_len < buf.len() {
buf.consume(buf_len);
// Reached the maximum capacity, stop reading.
break;
}
// The data in current entry has all been consumed.
entry.remove();
}
// Update consumed bytes for future stream-level flow control.
self.flow_control.increase_read_off(len as u64);
Ok((len, self.is_fin()))
}
/// Return true if the stream has buffered data waiting to be read by application.
fn ready(&self) -> bool {
match self.data.first_key_value() {
Some((_, buf)) => buf.off() == self.read_off,
None => false,
}
}
/// Receive RESET_STREAM frame from peer, reset the stream at the given offset.
pub fn reset(&mut self, error_code: u64, final_size: u64) -> Result<usize> {
// Once a final size for a stream is known, it cannot change. If a RESET_STREAM
// frame is received indicating a change in the final size for the stream,
// an endpoint SHOULD respond with an error of type FINAL_SIZE_ERROR.
if let Some(fin_off) = self.fin_off {
if fin_off != final_size {
return Err(Error::FinalSizeError);
}
}
// An endpoint received a RESET_STREAM frame containing a final size that was
// lower than the size of stream data that was already received.
if final_size < self.recv_off {
return Err(Error::FinalSizeError);
}
// Align the consumption of connection flow control in bytes
let max_rx_off_delta = final_size - self.recv_off;
// Duplicate RESET_STREAM frame.
if self.error.is_some() {
return Ok(max_rx_off_delta as usize);
}
self.error = Some(error_code);
// Discard all buffered data.
self.data.clear();
// Notify application that the stream has been reset by the peer.
trace!(
"Write an empty buffer with FIN to stream recv {:}",
self.trace_id
);
self.write(final_size, Bytes::new(), true)?;
self.read_off = final_size;
Ok(max_rx_off_delta as usize)
}
/// Shutdown the stream's receive-side, all subsequent data received on the stream
/// will be discarded.
fn shutdown(&mut self) -> Result<u64> {
if self.shutdown {
return Err(Error::Done);
}
// After shutdown flag is set, all subsequent data received on the stream
// will be discarded.
self.shutdown = true;
let unread_len = self.recv_off() - self.read_off();
// Discard all buffered data.
self.data.clear();
// Set application read offset as the largest received offset.
self.read_off = self.recv_off();
Ok(unread_len)
}
/// Apply the new local flow control limit.
pub fn update_max_data(&mut self, now: time::Instant) {
self.flow_control.update_max_data(now);
}
/// Get the next max_data limit, which will be sent to peer in MAX_STREAM_DATA frame.
pub fn max_data_next(&mut self) -> u64 {
self.flow_control.max_data_next()
}
/// Get the local current flow control limit.
fn max_data(&self) -> u64 {
self.flow_control.max_data()
}
/// Get the local current flow control window.
pub fn window(&self) -> u64 {
self.flow_control.window()
}
/// Autotune the local flow control window size.
pub fn autotune_window(&mut self, now: time::Instant, srtt: time::Duration) {
self.flow_control.autotune_window(now, srtt);
}
/// Get the lowest data offset that has yet to be read by the application.
fn read_off(&self) -> u64 {
self.read_off
}
/// Get the largest offset that has been received so far.
fn recv_off(&self) -> u64 {
self.recv_off
}
/// Return true if we should send `MAX_STREAM_DATA` frame to peer to update
/// the local flow control limit.
fn should_send_max_data(&self) -> bool {
self.fin_off.is_none() && self.flow_control.should_send_max_data()
}
/// Return true if the stream's receive-side has been shutdown by application.
fn is_shutdown(&self) -> bool {
self.shutdown
}
/// Return true if the stream's receive-side final size is known, and the
/// application has read all data from the stream.
fn is_fin(&self) -> bool {
self.fin_off == Some(self.read_off)
}
/// Return true if the stream's receive-side is complete.
///
/// Actually, this is same as `is_fin()`.
fn is_complete(&self) -> bool {
self.fin_off == Some(self.read_off)
}
}
/// Send-side stream buffer.
///
/// Buffer of outgoing retransmittable stream data.
///
/// New data is appended at the end of the stream, always.
#[derive(Debug, Default)]
pub struct SendBuf {
/// Chunks of data to be sent, ordered by offset.
/// Data written by application but not yet acknowledged.
/// May or may not have been sent.
data: VecDeque<RangeBuf>,
/// The index of the data block that will be sent next. This design is to
/// improve the performance of reading next sent data from `data` queue.
/// Note that pos will be decreased when data is lost and needs to be retransmitted.
pos: usize,
/// The maximum offset of data written by application in the stream.
write_off: u64,
/// The first offset that has not been sent.
unsent_off: u64,
/// Total size of `unacked_segments`
// unacked_len = self.write_off - self.ack_off()
unacked_len: usize,
/// The maximum offset of data that can be sent in the stream.
max_data: u64,
/// The offset of data that is blocked by flow control, if any.
blocked_at: Option<u64>,
/// The final size of the stream, if known.
fin_off: Option<u64>,
/// Whether the stream's send-side has been shutdown.
/// If true, no more data can be written to the stream.
shutdown: bool,
/// Ranges of data offsets that have been acknowledged.
acked: ranges::RangeSet,
/// Ranges of data offsets that have been deemed lost.
retransmits: ranges::RangeSet,
/// The error code received from the peer via STOP_SENDING.
error: Option<u64>,
/// Unique trace id for debug logging.
trace_id: String,
}
impl SendBuf {
/// Create a new send buffer with the given maximum stream data.
fn new(max_data: u64) -> SendBuf {
SendBuf {
max_data,
..SendBuf::default()
}
}
/// Insert data at the end of the buffer.
/// Return the number of bytes that actually got written.
pub fn write(&mut self, mut data: Bytes, mut fin: bool) -> Result<usize> {
let max_off = self.write_off + data.len() as u64;
// Get the number of bytes that can be written to the stream.
// Note: Here may return an error if the stream was stopped.
let capacity = self.capacity()?;
if data.len() > capacity {
// Truncate the data to fit the stream's capacity.
let len = capacity;
data.truncate(len);
// Clear the fin flag because we are not writing the full data.
fin = false;
}
if let Some(fin_off) = self.fin_off {
// Can't write more data after the final offset.
if max_off > fin_off {
return Err(Error::FinalSizeError);
}
// Fin flag can't be cancelled after it was set.
if max_off == fin_off && !fin {
return Err(Error::FinalSizeError);
}
}
if fin {
self.fin_off = Some(max_off);
}
// We can't do this check earlier because we need to check the fin flag.
if data.is_empty() {
return Ok(data.len());
}
let data_len = data.len();
let mut len = 0;
// Split the remaining data into consistently sized chunks to avoid fragmentation.
// Note: Chunks return from Bytes::chunks() are slices, not what we want.
while data.len() > SEND_BUFFER_SIZE {
let chunk = data.split_to(SEND_BUFFER_SIZE);
len += chunk.len();
let fin = len == data_len && fin;
let buf = RangeBuf::new(chunk, self.write_off, fin);
self.write_off += buf.len() as u64;
self.data.push_back(buf);
}
// Write the remaining data.
if !data.is_empty() {
let buf = RangeBuf::new(data, self.write_off, fin);
self.write_off += buf.len() as u64;
self.data.push_back(buf);
}
self.unacked_len += data_len;
Ok(data_len)
}
/// Compute the next range to transmit on the stream and update state to account
/// for that transmission.
///
/// Return the range of bytes to transmit.
fn poll_transmit(&mut self, max_len: usize) -> Range<u64> {
// 1. Check and Retransmit sent data
if let Some(range) = self.retransmits.pop_min() {
let end = cmp::min(range.end, range.start.saturating_add(max_len as u64));
if end != range.end {
self.retransmits.insert(end..range.end);
}
let rtx_range = range.start..end;
trace!("{} poll_transmit, rtx range {:?}", self.trace_id, rtx_range);
return rtx_range;
}
// 2. Transmit new data
// Range: [self.unsent_off, min(write_off, self.unsent_off + max_len))
let end = cmp::min(
self.write_off,
self.unsent_off.saturating_add(max_len as u64),
);
let new_range = self.unsent_off..end;
trace!("{} poll_transmit, new range {:?}", self.trace_id, new_range);
self.unsent_off = end;
new_range
}
/// Read the range-associated interval data, which may actually be a subset of
/// the range. For example, in scenarios where the data in the send buffer is not
/// continuous, the caller should try again.
fn read_range(&mut self, range: Range<u64>) -> &[u8] {
while let Some(segment) = self.data.get(self.pos) {
if range.start >= segment.off() && range.start < segment.max_off() {
let start = (range.start - segment.off()) as usize;
let end = ((range.end - segment.off()) as usize).min(segment.len());
// The entire data block will be read, increase the position.
if end == segment.len() {
self.pos += 1;
}
return &segment[start..end];
}
self.pos += 1;
}
&[]
}
/// Read data from the send buffer, and write them into the given output buffer.
/// Return output buffer length and fin flag.
pub fn read(&mut self, out: &mut [u8]) -> Result<(usize, bool)> {
let mut len = 0;
let mut cap = out.len();
let out_off = self.send_off();
// The caller of this function has already written the offset of the STREAM frame
// into the header of the frame, so we must keep it consistent here.
let mut next_off = out_off;
while cap > 0
&& self.ready()
&& self.send_off() == next_off
&& self.send_off() < self.max_data
{
let range = self.poll_transmit(cap);
// The data specified by the range may not be stored contiguously, so it
// may not be retrieved by a single `read_range` call, so here we need to loop
// until the range is completely copied into the given out buffer.
let mut range = range.clone();
let range_len: u64 = range.end - range.start;
while range.start != range.end {
let data = self.read_range(range.clone());
let buf_len = data.len();
out[len..len + buf_len].copy_from_slice(&data[..buf_len]);
len += buf_len;
range.start += buf_len as u64;
}
cap -= range_len as usize;
next_off += range_len;
}
// Get the fin flag for the output buffer by matching the maximum offset of
// the output buffer with the final offset of the stream(if any).
//
// Note: When send buffer only contains empty buffer with fin flag, send buffer
// is not ready, but the fin flag will be read out.
let fin = self.fin_off == Some(next_off);
Ok((out.len() - cap, fin))
}
/// Return true if there is data to be sent.
///
/// There may be some data inflight that has been sent but not yet acknowledged,
/// even this is false.
fn ready(&self) -> bool {
!self.data.is_empty() && self.send_off() < self.write_off
}
/// Update the stream's send-side max_data limit.
fn update_max_data(&mut self, max_data: u64) {
self.max_data = cmp::max(self.max_data, max_data);
}
/// Update the last offset at which the stream was blocked, if any.
fn update_blocked_at(&mut self, blocked_at: Option<u64>) {
self.blocked_at = blocked_at;
}
/// Get the last offset at which the stream was blocked, if any.
fn blocked_at(&self) -> Option<u64> {
self.blocked_at
}
/// Return the maximum offset of data written by application
fn write_off(&self) -> u64 {
self.write_off
}
/// Get the highest offset that has been consecutively acknowledged.
// Example: We get ack ranges [0, 50], [55, 60] then return 50.
fn ack_off(&self) -> u64 {
match self.acked.iter().next() {
// Only take the initial range into account if it covers the start
// of the stream continuously, i.e.[0..N).
Some(std::ops::Range { start: 0, end }) => end,
Some(_) | None => 0,
}
}
/// Insert the new ACK packet number range into the range set.
fn ack(&mut self, off: u64, len: usize) {
self.acked.insert(off..off + len as u64);
}
/// Process the new ACK range, and try to delete the range data
/// that has been acknowledged continuously(i.e.without holes).
pub fn ack_and_drop(&mut self, off: u64, len: usize) {
// Data queue is empty, we can clear the retransmit queue directly without any other processing.
// There may be three cases:
// 1. All data has been ACKed, i.e. the current ACK is a duplicate ACK;
// 2. The stream received STOP_SENDING frame from the peer, and the data queue has been cleared;
// 3. The stream has been actively RESET by the upper application, and the data queue has been cleared.
if self.data.is_empty() {
self.retransmits.clear();
return;
}
trace!(
"{} ack_and_drop range: {:?}, send_off {}, write_off {}, ack_off {}, pos {}",
self.trace_id,
Range {
start: off,
end: off + len as u64
},
self.send_off(),
self.write_off(),
self.ack_off(),
self.pos
);
// Insert the new ACK range into the range set.
// Note: The first acked range is always like [0, x).
self.ack(off, len);
// Spurious retransmission, remove them from retransmit queue.
self.retransmits.remove(off..off + len as u64);
// Get the highest contiguously acked offset.
let ack_off = self.ack_off();
// If there are gaps between [0, self.ack_off) and [off, off + len),
// then we can't drop any data.
if off > ack_off {
return;
}
// Drop the data that has been contiguously acked.
let base_off = self.write_off - self.unacked_len as u64;
let mut to_advance: usize = (ack_off - base_off) as usize;
self.unacked_len -= to_advance;
let mut drop_blocks = 0;
while to_advance > 0 {
let front = self.data.front_mut().unwrap();
// Drop the data block if it has been fully acknowledged.
if front.len() <= to_advance {
to_advance -= front.len();
self.data.pop_front();
drop_blocks += 1;
// Advance the data block if it has been partially acknowledged.
} else {
front.advance(to_advance);
to_advance = 0;
}
}
// Note: We should take spuriously retransmitted scenario into account.
// When a packet is deemed lost, causing the pos to be rolled back, but
// the subsequent ack of the packet is received, the pos may be reduced
// excessively, and we need to avoid this situation.
self.pos = self.pos.saturating_sub(drop_blocks);
if self.data.len() * 4 < self.data.capacity() {
self.data.shrink_to_fit();
}
}
/// Queue a range of sent but unacknowledged data(deemed lost) to the retranmission
/// range set.
pub fn retransmit(&mut self, off: u64, len: usize) {
let mut start = off;
let mut end = off + len as u64;
let old_send_off = self.send_off();
if self.data.is_empty() {
return;
}
if end <= self.ack_off() {
return;
}
// unsent data can't be lost.
#[cfg(test)]
if end > self.unsent_off {
return;
}
for range in self.acked.iter() {
// The retransmit range is before the current range, stop searching.
if end <= range.start {
break;
}
// The retransmit range is after the range, go to the next range.
if start >= range.end {
continue;
}
// The retransmit range is overlapped with the acked range, update the range.
if start < range.start {
if end <= range.end {
// The second half of the retransmit range is covered by the current acked range,
// only the first half of the retransmit range needs to be retransmitted.
end = range.start;
break;
} else {
// start < range.start && end > range.end
// The retransmit range crosses the current acked range, split the retransmit
// range into two parts, and the first part needs to be retransmitted, and the
// second part will be checked against the next acked range.
self.retransmits.insert(start..range.start);
start = range.end;
continue;
}
} else {
// start >= range.start && start < range.end
if end <= range.end {
// Fully covered by the current acked range, clear the retransmit range.
end = start;
break;
} else {
// start >= range.start && start < range.end && end > range.end
// The first half of the retransmit range is covered by the current acked range,
// only the second half of the retransmit range may needs to be retransmitted.
start = range.end;
continue;
}
}
}
self.retransmits.insert(start..end);
// 1. If and only if we found new lost data, and the lost data is before the lowest
// retransmits range, we should update the position of next data block to be sent.
// 2. This design is to decrease the number of times we need to update the position
// when we found large number of lost data during one processing cycle.
if self.send_off() < old_send_off {
// We don't update the position to the accurate value here. Instead, we update it
// during the read_range phase, which can reduce the number of update operations.
self.pos = 0;
}
}
/// Return the first unacked subrange in `range`.
pub fn filter_acked(&self, range: Range<u64>) -> Option<Range<u64>> {
self.acked.filter(range)
}
/// Reset the stream at the current offset and clean up the cached data.
///
/// Upon receiving a STOP_SENDING frame from peer, or actively shutting down
/// by application, send a RESET_STREAM frame to peer to reset the stream.
///
/// Return the final offset and the number of bytes that have not been sent.
fn reset(&mut self) -> (u64, u64) {
let unsent_len = self.write_off.saturating_sub(self.unsent_off);
self.fin_off = Some(self.unsent_off);
// Clean up all buffered data.
self.data.clear();
// Mark all sent data as acknowledged.
self.ack(0, self.unsent_off as usize);
self.pos = 0;
self.write_off = self.unsent_off;
(self.fin_off.unwrap(), unsent_len)
}
/// Reset the stream and record the received error code
/// after receiving a STOP_SENDING frame from peer.
fn stop(&mut self, error_code: u64) -> Result<(u64, u64)> {
if self.error.is_some() {
return Err(Error::Done);
}
let (fin_off, unsent) = self.reset();
self.error = Some(error_code);
Ok((fin_off, unsent))
}
/// Shutdown the stream's send-side.
///
/// Return the stream final size and the number of bytes that have not been sent.
fn shutdown(&mut self) -> Result<(u64, u64)> {
if self.shutdown {
return Err(Error::Done);
}
self.shutdown = true;
Ok(self.reset())
}
/// Return true if the send-side of the stream has been shutdown by application.
fn is_shutdown(&self) -> bool {
self.shutdown
}
/// Return true if the stream's send-side final size is known, and the application
/// has already written data up to that point.
fn is_fin(&self) -> bool {
self.fin_off == Some(self.write_off)
}
/// Return true if the stream's send-side enters a terminal state.
///
/// When the stream's send-side final size is known, and all stream data
/// has been successfully acknowledged, the stream enters a terminal state.
fn is_complete(&self) -> bool {
match self.fin_off {
Some(fin_off) => fin_off == 0 || self.acked == (0..fin_off),
None => false,
}
}
/// Return true if `STOP_SENDING` frame was received.
pub fn is_stopped(&self) -> bool {
self.error.is_some()
}
/// Get the lowest offset of data to be sent.
pub fn send_off(&self) -> u64 {
// retransmits.min little than unsent_off, always.
if !self.retransmits.is_empty() {
self.retransmits.min().unwrap()
} else {
self.unsent_off
}
}
/// Get the maximum offset of data that peer allows to send.
fn max_data(&self) -> u64 {
self.max_data
}
/// Get the stream send capacity. Return an error if the stream is stopped,
/// else return the number of bytes that can be written to the stream.
fn capacity(&self) -> Result<usize> {
match self.error {
// Stream was stopped by the peer.
Some(e) => Err(Error::StreamStopped(e)),
None => Ok((self.max_data - self.write_off) as usize),
}
}
}
/// Range buffer containing data at a specific offset.
///
/// The data is stored in a `Bytes` in a manner that allows for sharing
/// among multiple instances of `RangeBuf`.
#[derive(Clone, Debug)]
pub struct RangeBuf {
/// The buffer that stores the data.
data: Bytes,
/// The starting offset of current buffer in a stream.
off: u64,
/// Whether current buffer holds the stream's final offset.
fin: bool,
// The moment when the data arrives.
pub time: Instant,
}
impl RangeBuf {
/// Create a new `RangeBuf` with the given Bytes.
fn new(buf: Bytes, off: u64, fin: bool) -> RangeBuf {
RangeBuf {
data: buf,
off,
fin,
time: Instant::now(),
}
}
/// Return true if current buffer holds the stream's final offset.
fn fin(&self) -> bool {
self.fin
}
/// Get the starting offset of current buffer in a stream.
fn off(&self) -> u64 {
self.off
}
/// Get the largest offset of current buffer in a stream.
fn max_off(&self) -> u64 {
self.off() + self.len() as u64
}
/// Get the length of current buffer.
fn len(&self) -> usize {
self.data.len()
}
/// Return true if current buffer's length is zero.
fn is_empty(&self) -> bool {
self.data.len() == 0
}
/// Consume the starting `count` bytes of current buffer.
/// This is equivalent to `self.advance(count)`.
fn consume(&mut self, count: usize) {
self.data.advance(count);
self.off += count as u64;
}
/// Advance the internal cursor of current buffer.
fn advance(&mut self, count: usize) {
self.data.advance(count);
self.off += count as u64;
}
/// Split the buffer into two at the given index.
/// Afterwards self.data contains elements [0, at),
/// and the returned RangeBuf.data contains elements [at, len).
fn split_off(&mut self, at: usize) -> RangeBuf {
let buf = RangeBuf {
data: self.data.split_off(at),
off: self.off + at as u64,
fin: self.fin,
time: self.time,
};
self.fin = false;
buf
}
/// Split the buffer into two at the given index.
/// Afterwards self.data contains elements [at, len),
/// and the returned RangeBuf.data contains elements [0, at).
fn split_to(&mut self, at: usize) -> RangeBuf {
let buf = RangeBuf {
data: self.data.split_to(at),
off: self.off,
fin: false,
time: self.time,
};
self.off += at as u64;
buf
}
}
impl std::ops::Deref for RangeBuf {
type Target = [u8];
fn deref(&self) -> &[u8] {
self.data.deref()
}
}
/// Initial transport parameters for streams.
#[derive(Clone, Copy, Debug, PartialEq, Default)]
pub struct StreamTransportParams {
initial_max_data: u64,
initial_max_stream_data_bidi_local: u64,
initial_max_stream_data_bidi_remote: u64,
initial_max_stream_data_uni: u64,
initial_max_streams_bidi: u64,
initial_max_streams_uni: u64,
}
impl StreamTransportParams {
pub fn from(tp: &TransportParams) -> Self {
StreamTransportParams {
initial_max_data: tp.initial_max_data,
initial_max_stream_data_bidi_local: tp.initial_max_stream_data_bidi_local,
initial_max_stream_data_bidi_remote: tp.initial_max_stream_data_bidi_remote,
initial_max_stream_data_uni: tp.initial_max_stream_data_uni,
initial_max_streams_bidi: tp.initial_max_streams_bidi,
initial_max_streams_uni: tp.initial_max_streams_uni,
}
}
}
/// Concurrency control for streams.
// RFC9000 4.6 Controlling Concurrency
// https://www.rfc-editor.org/rfc/rfc9000.html#name-controlling-concurrency
#[derive(Clone, Debug, PartialEq, Default)]
struct ConcurrencyControl {
/// Maximum bidirectional streams that the peer allow local endpoint to open.
peer_max_streams_bidi: u64,
/// Maximum unidirectional streams that the peer allow local endpoint to open.
peer_max_streams_uni: u64,
/// The total number of bidirectional streams opened by the peer.
peer_opened_streams_bidi: u64,
/// The total number of unidirectional streams opened by the peer.
peer_opened_streams_uni: u64,
/// Maximum bidirectional streams that the local endpoint allow the peer to open.
local_max_streams_bidi: u64,
/// The next MAX_STREAMS(type 0x12) limit for bidirectional streams
local_max_streams_bidi_next: u64,
/// Maximum unidirectional streams that the local endpoint allow the peer to open.
local_max_streams_uni: u64,
/// The next MAX_STREAMS(type 0x13) limit for unidirectional streams
local_max_streams_uni_next: u64,
/// The total number of bidirectional streams opened by the local endpoint.
local_opened_streams_bidi: u64,
/// The total number of unidirectional streams opened by the local endpoint.
local_opened_streams_uni: u64,
/// Local endpoint want to open more bidirectional streams, but blocked by
/// peer's concurrency control limit, we need to send a STREAMS_BLOCKED(type 0x16)
/// frame to notify peer.
streams_blocked_at_bidi: Option<u64>,
/// Local endpoint want to open more unidirectional streams, but blocked by
/// peer's concurrency control limit, we need to send a STREAMS_BLOCKED(type 0x17)
/// frame to notify peer.
streams_blocked_at_uni: Option<u64>,
}
impl ConcurrencyControl {
fn new(local_max_streams_bidi: u64, local_max_streams_uni: u64) -> ConcurrencyControl {
ConcurrencyControl {
local_max_streams_bidi,
local_max_streams_bidi_next: local_max_streams_bidi,
local_max_streams_uni,
local_max_streams_uni_next: local_max_streams_uni,
..ConcurrencyControl::default()
}
}
/// Update peer's max_streams limit after receiving a MAX_STREAMS(0x12..0x13) frame
/// or processing peer's transport parameter.
fn update_peer_max_streams(&mut self, bidi: bool, max_streams: u64) {
match bidi {
true => {
self.peer_max_streams_bidi = cmp::max(self.peer_max_streams_bidi, max_streams);
// Cancel the concurrency control blocked state if the max_streams_bidi limit
// is increased, avoid sending redundant STREAMS_BLOCKED(0x16) frames.
if Some(self.peer_max_streams_bidi) > self.streams_blocked_at_bidi {
self.streams_blocked_at_bidi = None;
}
}
false => {
self.peer_max_streams_uni = cmp::max(self.peer_max_streams_uni, max_streams);
// Cancel the concurrency control blocked state if the max_streams_uni limit
// is increased, avoid sending redundant STREAMS_BLOCKED(type: 0x17) frames.
if Some(self.peer_max_streams_uni) > self.streams_blocked_at_uni {
self.streams_blocked_at_uni = None;
}
}
}
}
/// After sending a MAX_STREAMS(type: 0x12..0x13) frame, update local max_streams limit.
fn update_local_max_streams(&mut self, bidi: bool) {
match bidi {
true => self.local_max_streams_bidi = self.local_max_streams_bidi_next,
false => self.local_max_streams_uni = self.local_max_streams_uni_next,
}
}
/// Get the maximum number of streams that can be opened by the local endpoint.
fn peer_max_streams(&self, bidi: bool) -> u64 {
match bidi {
true => self.peer_max_streams_bidi,
false => self.peer_max_streams_uni,
}
}
/// Get the remaining streams that local endpoint can open.
fn peer_streams_left(&self, bidi: bool) -> u64 {
match bidi {
true => self.peer_max_streams_bidi - self.local_opened_streams_bidi,
false => self.peer_max_streams_uni - self.local_opened_streams_uni,
}
}
/// Return true if the local max_streams limit should be updated
/// by sending a MAX_STREAMS(type: 0x12..0x13) frame to the peer.
// The left stream count < 1/2 * max concurrent stream limits.
fn should_update_local_max_streams(&self, bidi: bool) -> bool {
match bidi {
true => {
self.local_max_streams_bidi_next != self.local_max_streams_bidi
&& self.local_max_streams_bidi_next - self.local_max_streams_bidi
> self.local_max_streams_bidi - self.peer_opened_streams_bidi
}
false => {
self.local_max_streams_uni_next != self.local_max_streams_uni
&& self.local_max_streams_uni_next - self.local_max_streams_uni
> self.local_max_streams_uni - self.peer_opened_streams_uni
}
}
}
/// Increase the next max_streams limit that will be sent to the peer
/// in a MAX_STREAMS(type: 0x12..0x13) frame.
fn increase_max_streams_credits(&mut self, bidi: bool, delta: u64) {
match bidi {
true => {
self.local_max_streams_bidi_next =
self.local_max_streams_bidi_next.saturating_add(delta)
}
false => {
self.local_max_streams_uni_next =
self.local_max_streams_uni_next.saturating_add(delta)
}
}
}
/// Update connection concurrency control blocked state.
fn update_streams_blocked_at(&mut self, bidi: bool, blocket_at: Option<u64>) {
match bidi {
true => self.streams_blocked_at_bidi = blocket_at,
false => self.streams_blocked_at_uni = blocket_at,
}
}
/// Check if the stream ID complies with the stream limits of the current role,
/// and try to update the stream count if the ID is valid.
///
/// Note that the caller should ensure that the stream ID is valid with the
/// initiator's role before calling this function.
fn check_concurrency_limits(&mut self, id: u64, is_server: bool) -> Result<()> {
// The two least significant bits from a stream ID identify the stream type,
// and stream sequence starts from 0.
let stream_sequence = (id >> 2) + 1;
// RFC 9000 4.6 Controlling Concurrency
// Endpoints MUST NOT exceed the limit set by their peer. An endpoint that
// receives a frame with a stream ID exceeding the limit it has sent MUST
// treat this as a connection error of type STREAM_LIMIT_ERROR.
match (is_local(id, is_server), is_bidi(id)) {
(true, true) => {
let n = std::cmp::max(self.local_opened_streams_bidi, stream_sequence);
if n > self.peer_max_streams_bidi {
// Can't open more bididirectional streams than the peer allows, send
// a STREAMS_BLOCKED(type: 0x16) frame to notify the peer update the
// max_streams_bidi limit.
self.update_streams_blocked_at(true, Some(self.peer_max_streams_bidi));
return Err(Error::StreamLimitError);
}
self.local_opened_streams_bidi = cmp::max(self.local_opened_streams_bidi, n);
}
(true, false) => {
let n = std::cmp::max(self.local_opened_streams_uni, stream_sequence);
if n > self.peer_max_streams_uni {
// Can't open more unidirectional streams than the peer allows, send
// a STREAMS_BLOCKED(type: 0x17) frame to notify the peer update the
// max_streams_uni limit.
self.update_streams_blocked_at(false, Some(self.peer_max_streams_uni));
return Err(Error::StreamLimitError);
}
self.local_opened_streams_uni = cmp::max(self.local_opened_streams_uni, n);
}
(false, true) => {
let n = std::cmp::max(self.peer_opened_streams_bidi, stream_sequence);
if n > self.local_max_streams_bidi {
return Err(Error::StreamLimitError);
}
self.peer_opened_streams_bidi = cmp::max(self.peer_opened_streams_bidi, n);
}
(false, false) => {
let n = std::cmp::max(self.peer_opened_streams_uni, stream_sequence);
if n > self.local_max_streams_uni {
return Err(Error::StreamLimitError);
}
self.peer_opened_streams_uni = cmp::max(self.peer_opened_streams_uni, n);
}
};
Ok(())
}
}
/// Connection-level send capacity for all streams
#[derive(Clone, Debug, Default)]
struct SendCapacity {
/// The maximum amount of data that can be sent on the entire connection,
/// in units of bytes.
///
/// All data sent in STREAM frames counts toward this limit. The sum of the
/// final sizes on all streams MUST NOT exceed this limit.
///
/// Initially, this is set to the value of the initial_max_data transport
/// parameter from peer. The value is also updated by MAX_DATA frames.
max_data: u64,
/// The total amount of data sent on the entire connection, in units of bytes.
///
/// When sending a STREAM frame, or receiving a STOP_SENDING frame, or shutting
/// down a stream send-side, update this value.
tx_data: u64,
/// Number of stream data that can be sent without exceeding the connection-level
/// flow control limit, in units of bytes.
capacity: usize,
/// Connection send-side blocked at(if any), and need to send a
/// DATA_BLOCKED frame to the peer.
blocked_at: Option<u64>,
}
impl SendCapacity {
/// Update the connection-level send-side max_data limit after
/// processing peer's transport parameter initial_max_data(0x04)
/// or receiving MAX_DATA frame.
fn update_max_data(&mut self, max_data: u64) {
// ignore if the value is smaller than the current value.
self.max_data = cmp::max(self.max_data, max_data);
}
/// Update connection-level send capacity.
fn update_capacity(&mut self) {
self.capacity = (self.max_data - self.tx_data) as usize;
}
/// Update connection send-side flow control blocked state.
fn update_blocked_at(&mut self, blocked_at: Option<u64>) {
self.blocked_at = blocked_at;
}
}
/// Stream priority queue
///
/// Streams are categorized based on their urgency, where each urgency level
/// has two queues, including non-incremental and incremental streams.
///
/// Streams with lower urgency level are scheduled first, and within the
/// same urgency level non-incremental streams are scheduled before incremental
/// streams.
///
/// Non-incremental streams are scheduled in the order of their stream IDs.
/// Incremental streams are scheduled in a round-robin fashion.
#[derive(Debug, Default)]
struct StreamPriorityQueue {
/// Non-incremental streams.
non_incremental: BinaryHeap<std::cmp::Reverse<u64>>,
/// Incremental streams.
incremental: VecDeque<u64>,
}
#[cfg(test)]
mod tests {
use std::sync::Arc;
use super::*;
// StreamMap unit tests
// Test StreamMap::write
#[test]
fn stream_write_invalid_sid() {
// MUST NOT write on the peer's unidirectional streams.
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert_eq!(
map.stream_write(2, Bytes::new(), false),
Err(Error::StreamStateError)
);
}
#[test]
fn stream_write_zero_capacity() {
let peer_tp = StreamTransportParams {
initial_max_data: 0,
initial_max_stream_data_bidi_local: 21,
initial_max_streams_bidi: 24,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
// When the send capacity is zero, stream_write return Ok(0)
// only when the send buffer is empty.
assert_eq!(map.stream_write(0, Bytes::new(), false), Ok(0));
// When the connection's capacity is exhausted, if the input
// buffer is not empty, return `Done`.
assert_eq!(
map.stream_write(0, Bytes::from_static(b"hello"), false),
Err(Error::Done)
);
}
#[test]
fn stream_write_blocked_by_connection_capacity() {
let peer_tp = StreamTransportParams {
initial_max_data: 10,
initial_max_stream_data_bidi_remote: 20,
initial_max_streams_bidi: 2,
..StreamTransportParams::default()
};
// 1. Create a client StreamMap
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
// 2. Try to write data, but blocked by connection capacity, only partial data is written.
assert_eq!(
map.stream_write(0, Bytes::from_static(b"EverythingOverQUIC"), true),
Ok(10)
);
// Stream blocked by connection's send capacity, but the stream is still writable.
assert_eq!(map.send_capacity.blocked_at, Some(10));
assert!(map.writable.contains(&0));
// 3. Update connection capacity, and write more data.
map.on_max_data_frame_received(20);
assert_eq!(
map.stream_write(0, Bytes::from_static(b"OverQUIC"), true),
Ok(8)
);
}
#[test]
fn stream_write_basic_logic() {
let peer_tp = StreamTransportParams {
initial_max_data: 10,
initial_max_stream_data_bidi_local: 5,
initial_max_stream_data_bidi_remote: 5,
initial_max_stream_data_uni: 5,
initial_max_streams_bidi: 5,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
// 1. Send more data than the stream-level flow control limit, the stream is blocked.
assert_eq!(
map.stream_write(0, Bytes::from_static(b"Everything"), false),
Ok(5)
);
// init tx_cap is 10, sent 5, so tx_cap is 5 now.
assert_eq!(map.tx_capacity(), 5);
assert_eq!(map.tx_data(), 5);
let stream = map.get(0).unwrap();
assert!(stream.is_sendable());
assert!(!stream.is_writable());
assert_eq!(stream.send.blocked_at(), Some(5));
// 2. After receiving max_stream_data frame, the stream is writable again.
map.on_max_stream_data_frame_received(0, 20).unwrap();
assert_eq!(
map.stream_write(0, Bytes::from_static(b"thing"), false),
Ok(5)
);
// init tx_cap is 10, sent 10, so tx_cap is 0 now.
assert_eq!(map.tx_capacity(), 0);
assert_eq!(map.tx_data(), 10);
// 3. Send more data than the connection-level flow control limit, the stream is blocked.
assert_eq!(
map.stream_write(0, Bytes::from_static(b"OverQUIC"), true),
Err(Error::Done)
);
// 4. After receiving max_data frame, the stream is writable again.
map.on_max_data_frame_received(30);
assert_eq!(
map.stream_write(0, Bytes::from_static(b"OverQUIC"), true),
Ok(8)
);
// after receiving max_data frame, tx_cap is 30, sent 18, so tx_cap is 12 now.
assert_eq!(map.tx_capacity(), 12);
assert_eq!(map.tx_data(), 18);
let stream = map.get_mut(0).unwrap();
assert!(stream.is_sendable());
assert!(!stream.is_writable());
let mut buf = vec![0; 18];
assert_eq!(stream.send.read(&mut buf), Ok((18, true)));
assert_eq!(&buf[..], b"EverythingOverQUIC");
}
#[test]
fn stream_write_after_recv_stop_sending() {
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 5,
..StreamTransportParams::default()
};
let peer_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_remote: 15,
..StreamTransportParams::default()
};
// 1. Creat a server StreamMap.
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.update_peer_stream_transport_params(peer_tp);
// 2. Receive a STOP_SENDING frame from client.
assert!(map.on_stop_sending_frame_received(0, 7).is_ok());
// Stream should be inserted into map.writable once STOP_SENDING frame is received.
assert!(map.writable.contains(&0));
// 3. Try to write data to stream(0), but it is stopped, so return StreamStopped error.
assert_eq!(
map.stream_write(0, Bytes::from_static(b"Q"), false),
Err(Error::StreamStopped(7))
);
}
// Test StreamMap::stream_writable
#[test]
fn stream_writable() {
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 5,
..StreamTransportParams::default()
};
let peer_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_local: 15,
..StreamTransportParams::default()
};
// Creat a server StreamMap.
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.update_peer_stream_transport_params(peer_tp);
// Create a new client initiated bidi stream.
assert!(map.get_or_create(0, false).is_ok());
// 1. Stream has more than `len` bytes of send-side capacity.
assert_eq!(map.stream_writable(0, 15), Ok(true));
// 2. Stream blocked by stream-level flow control limit.
assert_eq!(map.stream_writable(0, 16), Ok(false));
assert_eq!(
map.blocked().map(|(&k, &v)| (k, v)).collect::<Vec<_>>(),
vec![(0, 15)]
);
// 3. Stream blocked by connection-level flow control limit.
assert_eq!(map.stream_writable(0, 25), Ok(false));
assert_eq!(map.send_capacity.blocked_at, Some(20));
}
// Test StreamMap::stream_set_priority
#[test]
fn stream_set_priority() {
let peer_tp = StreamTransportParams {
initial_max_streams_bidi: 1,
..StreamTransportParams::default()
};
// Create a client StreamMap.
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
// 1. Set priority on a invalid stream.
assert_eq!(
map.stream_set_priority(1, 1, true),
Err(Error::StreamStateError)
);
// 2. Set priority on a not created stream.
assert!(map.stream_set_priority(0, 1, true).is_ok());
let stream = map.get(0).unwrap();
assert_eq!((stream.urgency, stream.incremental), (1, true));
// 3. Set priority on a stream with duplicate priority.
assert!(map.stream_set_priority(0, 1, true).is_ok());
let stream = map.get(0).unwrap();
assert_eq!((stream.urgency, stream.incremental), (1, true));
// 4. Set priority on a stream with different priority.
assert!(map.stream_set_priority(0, 2, false).is_ok());
let stream = map.get(0).unwrap();
assert_eq!((stream.urgency, stream.incremental), (2, false));
// 5. Set priority on a closed(0, simulation, not true) stream.
map.mark_closed(0, true);
assert!(map.stream_set_priority(0, 1, true).is_ok());
}
// Test StreamMap::stream_shutdown
#[test]
fn stream_shutdown_invalid_direction() {
let local_tp = StreamTransportParams {
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.concurrency_control.update_peer_max_streams(false, 5);
assert!(map.get_or_create(2, false).is_ok());
assert!(map.get_or_create(3, true).is_ok());
// Local initiated unidirectional stream should not be shutdown in the receive-side.
assert_eq!(
map.stream_shutdown(3, Shutdown::Read, 0),
Err(Error::StreamStateError)
);
// Peer initiated unidirectional stream should not be shutdown in the send-side.
assert_eq!(
map.stream_shutdown(2, Shutdown::Write, 0),
Err(Error::StreamStateError)
);
}
#[test]
fn stream_shutdown_not_exist() {
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
assert_eq!(map.stream_shutdown(0, Shutdown::Read, 0), Err(Error::Done));
assert_eq!(map.stream_shutdown(0, Shutdown::Write, 0), Err(Error::Done));
}
#[test]
fn stream_shutdown_read_should_update_flow_control() {
let local_tp = StreamTransportParams {
initial_max_data: 14,
initial_max_stream_data_bidi_remote: 10,
initial_max_streams_bidi: 2,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// Receive a stream frame from stream 0, range is [0, 10), fin = false.
assert!(map
.on_stream_frame_received(0, 0, 10, false, Bytes::from_static(b"Everything"))
.is_ok());
assert!(map.readable.contains(&0));
assert!(map.stream_shutdown(0, Shutdown::Read, 10).is_ok());
// init_max_data: 14, window: 21, read_off: 10
// available_window: 4 < window / 2, should update max_data.
assert_eq!(map.flow_control.max_data(), 14);
assert_eq!(map.flow_control.max_data_next(), 31);
assert!(map.flow_control.should_send_max_data());
assert!(map.rx_almost_full);
}
// Test StreamMap::{stream_read, stream_readable, stream_finished}
#[test]
fn stream_read_invalid_sid() {
// MUST NOT read from local initiated unidirectional stream.
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
let mut buf = vec![0; 1];
assert_eq!(map.stream_read(3, &mut buf), Err(Error::StreamStateError));
}
#[test]
fn stream_read_and_finished_basic_logic() {
let local_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_remote: 20,
initial_max_streams_bidi: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// 1. Stream 0 is not exist, return StreamStateError.
let mut buf = vec![0; 1];
assert_eq!(map.stream_read(0, &mut buf), Err(Error::StreamStateError));
// 2. Receive a stream frame, range is [0, 10), fin = false.
assert_eq!(
map.on_stream_frame_received(0, 0, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
assert!(map.stream_readable(0));
// 3. Read data from the stream.
let mut buf = vec![0; 10];
assert_eq!(map.stream_read(0, &mut buf), Ok((10, false)));
assert_eq!(&buf[..10], b"Everything");
assert!(!map.stream_finished(0));
assert!(!map.stream_readable(0));
// 4. There is no data to read, so return Done.
let mut buf = vec![0; 1];
assert_eq!(map.stream_read(0, &mut buf), Err(Error::Done));
// 5. Receive a stream frame, range is [10, 18), fin = true.
assert!(map
.on_stream_frame_received(0, 10, 8, true, Bytes::from_static(b"OverQUIC"))
.is_ok());
assert!(!map.stream_finished(0));
assert!(map.stream_readable(0));
// 6. Read data from the stream.
let mut buf = vec![0; 8];
assert_eq!(map.stream_read(0, &mut buf), Ok((8, true)));
assert_eq!(&buf[..8], b"OverQUIC");
// 7. Stream receive-side is finished, and stream is not readable.
assert!(map.stream_finished(0));
assert!(!map.stream_readable(0));
}
// Test StreamMap::stream_capacity
#[test]
fn stream_capacity_not_exist() {
let map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
assert_eq!(map.stream_capacity(0), Err(Error::StreamStateError));
}
#[test]
fn stream_capacity_stopped() {
let local_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_remote: 20,
initial_max_streams_bidi: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
assert!(map.on_stop_sending_frame_received(4, 7).is_ok());
assert_eq!(map.stream_capacity(4), Err(Error::StreamStopped(7)))
}
#[test]
fn stream_capacity() {
let peer_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_remote: 15,
initial_max_streams_bidi: 5,
..StreamTransportParams::default()
};
// 1. Creat a client StreamMap.
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
// 2. Create a stream(0) and write data to it.
assert_eq!(
map.stream_write(0, Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(map.tx_data(), 10);
assert_eq!(map.tx_capacity(), 10);
// self.tx_cap > stream.send.capacity
assert_eq!(map.stream_capacity(0), Ok(5));
// 3. Receive a MAX_STREAM_DATA frame, stream(0) capacity is increased.
assert!(map.on_max_stream_data_frame_received(0, 50).is_ok());
// self.tx_cap < stream.send.capacity
assert_eq!(map.stream_capacity(0), Ok(10));
}
// Test StreamMap::new
#[test]
fn stream_map_new() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 5,
initial_max_streams_uni: 5,
};
let peer_tp = StreamTransportParams::default();
let map = StreamMap::new(true, 50, 50, local_tp.clone());
assert!(map.is_server, "current role is server");
assert_eq!(map.streams.len(), 0);
assert!(map.sendable.is_empty(), "sendable is empty");
assert!(map.readable.is_empty(), "readable is empty");
assert!(map.writable.is_empty(), "writable is empty");
assert!(map.reset.is_empty(), "reset is empty");
assert!(map.stopped.is_empty(), "stopped is empty");
assert!(map.closed.is_empty(), "closed is empty");
assert!(map.almost_full.is_empty(), "almost_full is empty");
assert!(map.data_blocked.is_empty(), "data_blocked is empty");
// Check concurrency limits
assert_eq!(map.concurrency_control, ConcurrencyControl::new(5, 5));
// Check connection-level flow control
assert_eq!(map.flow_control.window(), 150);
assert_eq!(map.flow_control.max_data(), 100);
assert!(
!map.flow_control.should_send_max_data(),
"should not update max_data"
);
assert_eq!(map.max_stream_window, 50);
assert_eq!(map.max_recv_off(), 0);
assert_eq!(map.tx_data(), 0);
assert_eq!(map.max_tx_data(), 0);
assert_eq!(map.rx_almost_full, false);
assert_eq!(map.data_blocked_at(), None);
assert_eq!(map.local_transport_params, local_tp);
assert_eq!(map.peer_transport_params, peer_tp);
}
// Test StreamMap::max_stream_data_limit
#[test]
fn stream_map_max_stream_data_limit() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 11,
initial_max_stream_data_bidi_remote: 12,
initial_max_stream_data_uni: 13,
initial_max_streams_bidi: 14,
initial_max_streams_uni: 15,
};
let peer_tp = StreamTransportParams {
initial_max_data: 200,
initial_max_stream_data_bidi_local: 21,
initial_max_stream_data_bidi_remote: 22,
initial_max_stream_data_uni: 23,
initial_max_streams_bidi: 24,
initial_max_streams_uni: 25,
};
for (local, bidi, max_rx_data, max_tx_data) in vec![
// local initiated bidi stream
(true, true, 11, 22),
// local initiated uni stream
(true, false, 0, 23),
// remote initiated bidi stream
(false, true, 12, 21),
// remote initiated uni stream
(false, false, 13, 0),
] {
assert_eq!(
StreamMap::max_stream_data_limit(local, bidi, &local_tp, &peer_tp),
(max_rx_data, max_tx_data)
);
}
}
// Test StreamMap::{get, get_mut, get_or_create}
#[test]
fn stream_map_get_or_create() {
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let peer_tp = StreamTransportParams {
initial_max_streams_bidi: 30,
initial_max_streams_uni: 15,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.update_peer_stream_transport_params(peer_tp);
for stream_id in [4, 8, 12, 36, 6, 14, 10, 18, 5, 13, 9, 117, 7, 15, 11, 59] {
assert!(map.get(stream_id).is_none(), "get unexpected stream");
assert!(
map.get_mut(stream_id).is_none(),
"get_mut unexpected stream"
);
}
// 1. Auto open streams
// 1.1 Auto open client-initiated bidi stream
// 36 is the highest stream-id that can be auto-opened
for stream_id in [4, 12, 8, 36] {
assert!(!is_local(stream_id, true), "stream id is client initiated");
assert!(is_bidi(stream_id), "stream id is bidirectional");
assert!(
map.get_or_create(stream_id, false).is_ok(),
"auto open client-initiated bidi stream"
);
}
for stream_id in [4, 8, 12, 36] {
assert!(map.get(stream_id).is_some(), "get stream {}", stream_id);
assert!(
map.get_mut(stream_id).is_some(),
"get_mut stream {}",
stream_id
);
}
// 1.2 Auto open client-initiated uni stream
// 18 is the highest stream-id that can be auto-opened
for stream_id in [6, 14, 10, 18] {
assert!(!is_local(stream_id, true), "stream id is client initiated");
assert!(!is_bidi(stream_id), "stream id is unidirectional");
assert!(
map.get_or_create(stream_id, false).is_ok(),
"auto open client-initiated uni stream"
);
}
for stream_id in [6, 10, 14, 18] {
assert!(map.get(stream_id).is_some(), "get stream {}", stream_id);
assert!(
map.get_mut(stream_id).is_some(),
"get_mut stream {}",
stream_id
);
}
// 1.3 Auto open server-initiated bidi stream
// 117 is the highest stream-id that can be auto-opened
for stream_id in [5, 13, 9, 117] {
assert!(is_local(stream_id, true), "stream id is server initiated");
assert!(is_bidi(stream_id), "stream id is bidirectional");
assert!(
map.get_or_create(stream_id, true).is_ok(),
"auto open server-initiated bidi stream"
);
}
for stream_id in [5, 9, 13, 117] {
assert!(map.get(stream_id).is_some(), "get stream {}", stream_id);
assert!(
map.get_mut(stream_id).is_some(),
"get_mut stream {}",
stream_id
);
}
// 1.4 Auto open server-initiated uni stream
// 59 is the highest stream-id that can be auto-opened
for stream_id in [7, 15, 11, 59] {
assert!(is_local(stream_id, true), "stream id is server initiated");
assert!(!is_bidi(stream_id), "stream id is unidirectional");
assert!(
map.get_or_create(stream_id, true).is_ok(),
"auto open server-initiated uni stream"
);
}
for stream_id in [7, 11, 15, 59] {
assert!(map.get(stream_id).is_some(), "get stream {}", stream_id);
assert!(
map.get_mut(stream_id).is_some(),
"get_mut stream {}",
stream_id
);
}
// 2 Open too many streams
// 2.1 Client opened too many bidi streams
assert_eq!(
map.get_or_create(40, false).err(),
Some(Error::StreamLimitError),
"stream limit should be exceeded"
);
// 2.2 Client opened too many uni streams
assert_eq!(
map.get_or_create(22, false).err(),
Some(Error::StreamLimitError),
"stream limit should be exceeded"
);
// 2.3 Server opened too many bidi streams
assert_eq!(
map.get_or_create(121, true).err(),
Some(Error::StreamLimitError),
"stream limit should be exceeded"
);
// 2.4 Server opened too many uni streams
assert_eq!(
map.get_or_create(63, true).err(),
Some(Error::StreamLimitError),
"stream limit should be exceeded"
);
for stream_id in [40, 22, 121, 63] {
assert!(map.get(stream_id).is_none(), "get unexpected stream");
assert!(
map.get_mut(stream_id).is_none(),
"get_mut unexpected stream"
);
}
// 3. Open streams with wrong direction
// 3.1 Client open server-initiated bidi stream
assert_eq!(
map.get_or_create(1, false).err(),
Some(Error::StreamStateError),
"stream direction is wrong"
);
// 3.2 Client open server-initiated uni stream
assert_eq!(
map.get_or_create(3, false).err(),
Some(Error::StreamStateError),
"stream direction is wrong"
);
// 3.3 Server open client-initiated bidi stream
assert_eq!(
map.get_or_create(0, true).err(),
Some(Error::StreamStateError),
"stream direction is wrong"
);
// 3.4 Server open client-initiated uni stream
assert_eq!(
map.get_or_create(2, true).err(),
Some(Error::StreamStateError),
"stream direction is wrong"
);
for stream_id in [0, 1, 2, 3] {
assert!(map.get(stream_id).is_none(), "get unexpected stream");
assert!(
map.get_mut(stream_id).is_none(),
"get_mut unexpected stream"
);
}
}
// Test StreamMap::{push_sendable, peek_sendable, remove_sendable}
#[test]
fn stream_map_sendable() {
// Streams are categorized based on their urgency, where each urgency level
// has two queues, including non-incremental and incremental streams.
//
// Streams with lower urgency level are scheduled first, and within the
// same urgency level non-incremental streams are scheduled before incremental
// streams.
//
// Non-incremental streams are scheduled in the order of their stream IDs.
// Incremental streams are scheduled in a round-robin fashion.
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(
!map.has_sendable_streams(),
"sendable stream should not exist"
);
// 1.Peek multiple times consecutively, the result should be the same.
map.push_sendable(4, 7, false);
assert!(map.has_sendable_streams());
assert_eq!(map.peek_sendable(), Some(4));
assert_eq!(map.peek_sendable(), Some(4));
map.remove_sendable();
// 2.Streams with lower urgency level are scheduled first.
map.push_sendable(4, 2, false);
map.push_sendable(8, 3, false);
map.push_sendable(12, 1, false);
assert_eq!(map.peek_sendable(), Some(12));
map.remove_sendable();
assert_eq!(map.peek_sendable(), Some(4));
map.remove_sendable();
assert_eq!(map.peek_sendable(), Some(8));
map.remove_sendable();
// 3.Within the same urgency level non-incremental streams are scheduled
// before incremental streams.
map.push_sendable(4, 7, true);
map.push_sendable(8, 7, false);
assert_eq!(map.peek_sendable(), Some(8));
map.remove_sendable();
assert_eq!(map.peek_sendable(), Some(4));
map.remove_sendable();
// 4.Non-incremental streams are scheduled in the order of their stream IDs.
map.push_sendable(12, 7, false);
map.push_sendable(4, 7, false);
map.push_sendable(8, 7, false);
assert_eq!(map.peek_sendable(), Some(4));
map.remove_sendable();
assert_eq!(map.peek_sendable(), Some(8));
map.remove_sendable();
assert_eq!(map.peek_sendable(), Some(12));
map.remove_sendable();
// 5.Incremental streams are scheduled in a round-robin fashion.
map.push_sendable(12, 7, true);
map.push_sendable(8, 7, true);
map.push_sendable(4, 7, true);
assert_eq!(map.peek_sendable(), Some(12));
assert_eq!(map.peek_sendable(), Some(8));
assert_eq!(map.peek_sendable(), Some(4));
assert_eq!(map.peek_sendable(), Some(12));
assert_eq!(map.peek_sendable(), Some(8));
assert_eq!(map.peek_sendable(), Some(4));
map.remove_sendable();
map.remove_sendable();
map.remove_sendable();
assert!(
!map.has_sendable_streams(),
"sendable stream should not exist"
);
}
// Test StreamMap::mark_readable
#[test]
fn stream_map_readable() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(map.readable.is_empty(), "readable stream should not exist");
// Insert multiple streams unordered.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_readable(stream_id, true);
}
assert!(!map.readable.is_empty());
let mut v = map.readable_iter().collect::<Vec<u64>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(v, vec![0, 4, 8, 12, 16]);
// Do nothing if `readable` is true but the stream was already in the list.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_readable(stream_id, true);
}
assert_eq!(map.readable_iter().collect::<Vec<u64>>().len(), 5);
// Remove streams from the list if `readable` is false.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_readable(stream_id, false);
}
assert!(map.readable.is_empty());
}
// Test StreamMap::mark_writable
#[test]
fn stream_map_writable() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(map.writable.is_empty(), "writable stream should not exist");
// Insert multiple streams unordered.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_writable(stream_id, true);
}
assert!(!map.writable.is_empty());
let mut v = map.writable_iter().collect::<Vec<u64>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(v, vec![0, 4, 8, 12, 16]);
// Do nothing if `writable` is true but the stream was already in the list.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_writable(stream_id, true);
}
assert_eq!(map.writable_iter().collect::<Vec<u64>>().len(), 5);
// Remove streams from the list if `writable` is false.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_writable(stream_id, false);
}
assert!(map.writable.is_empty());
}
// Test StreamMap::mark_almost_full
#[test]
fn stream_map_almost_full() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(
map.almost_full.is_empty(),
"almost_full stream should not exist"
);
// Insert multiple streams unordered.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_almost_full(stream_id, true);
}
assert!(!map.almost_full.is_empty());
let mut v = map.almost_full().collect::<Vec<u64>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(v, vec![0, 4, 8, 12, 16]);
// Do nothing if `almost_full` is true but the stream was already in the list.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_almost_full(stream_id, true);
}
assert_eq!(map.almost_full().collect::<Vec<u64>>().len(), 5);
// Remove streams from the list if `almost_full` is false.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_almost_full(stream_id, false);
}
assert!(map.almost_full.is_empty());
}
// Test StreamMap::mark_closed
#[test]
fn stream_map_closed() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp.clone());
assert!(map.closed.is_empty(), "closed stream not empty");
// Update the peer's max_streams limit for concurrency control.
map.concurrency_control.update_peer_max_streams(true, 30);
map.concurrency_control.update_peer_max_streams(false, 15);
// Auto open 5 client-initiated bidi stream
// [0, 4, 8, 12, 16]
for seq in 0..=4 {
let stream_id = seq * 4;
assert!(
!is_local(stream_id, true),
"stream id is not client initiated"
);
assert!(is_bidi(stream_id), "stream id is unidirectional");
assert!(
map.get_or_create(stream_id, false).is_ok(),
"auto open client-initiated bidi stream failed"
);
map.mark_writable(stream_id, true);
map.mark_readable(stream_id, true);
}
assert_eq!(map.streams.len(), 5);
assert_eq!(map.readable.len(), 5);
assert_eq!(map.writable.len(), 5);
// Auto open 3 client-initiated uni stream
// [2, 6, 10]
for seq in 0..=2 {
let stream_id = seq * 4 + 2;
assert!(
!is_local(stream_id, true),
"stream id is not client initiated"
);
assert!(!is_bidi(stream_id), "stream id is bidirectional");
assert!(
map.get_or_create(stream_id, false).is_ok(),
"auto open client-initiated uni stream failed"
);
map.mark_writable(stream_id, true);
map.mark_readable(stream_id, true);
}
assert_eq!(map.streams.len(), 8);
assert_eq!(map.readable.len(), 8);
assert_eq!(map.writable.len(), 8);
// Auto open server-initiated bidi stream
for stream_id in [5, 13, 9] {
assert!(is_local(stream_id, true), "stream id is client initiated");
assert!(is_bidi(stream_id), "stream id is unidirectional");
assert!(
map.get_or_create(stream_id, true).is_ok(),
"auto open server-initiated bidi stream failed"
);
map.mark_writable(stream_id, true);
map.mark_readable(stream_id, true);
}
assert_eq!(map.streams.len(), 11);
assert_eq!(map.readable.len(), 11);
assert_eq!(map.writable.len(), 11);
// Auto open server-initiated uni stream
for stream_id in [7, 15, 11] {
assert!(is_local(stream_id, true), "stream id is client initiated");
assert!(!is_bidi(stream_id), "stream id is bidirectional");
assert!(
map.get_or_create(stream_id, true).is_ok(),
"auto open server-initiated uni stream failed"
);
map.mark_writable(stream_id, true);
map.mark_readable(stream_id, true);
}
assert_eq!(map.streams.len(), 14);
assert_eq!(map.readable.len(), 14);
assert_eq!(map.writable.len(), 14);
// Client opened too many bidi streams, blocked by local stream limit
assert_eq!(
map.get_or_create(40, false).err(),
Some(Error::StreamLimitError),
"stream limit should be exceeded"
);
// Client opened too many uni streams, blocked by local stream limit
assert_eq!(
map.get_or_create(22, false).err(),
Some(Error::StreamLimitError),
"stream limit should be exceeded"
);
assert_eq!(map.streams.len(), 14);
assert_eq!(map.readable.len(), 14);
assert_eq!(map.writable.len(), 14);
// Mark 5 client-initiated bidi streams as closed, give back credit to the peer.
// Close [0, 4, 8, 12, 16]
for seq in 0..=4 {
let stream_id = seq * 4;
map.mark_closed(stream_id, false);
}
// Mark 2 client-initiated uni streams as closed, give back credit to the peer.
// close [2, 6]
for seq in 0..=1 {
let stream_id = seq * 4 + 2;
map.mark_closed(stream_id, false);
}
assert_eq!(map.streams.len(), 7);
assert_eq!(map.readable.len(), 7);
assert_eq!(map.writable.len(), 7);
assert_eq!(map.closed.len(), 7);
assert_eq!(map.max_streams_next(true), 15);
assert_eq!(map.max_streams_next(false), 7);
assert!(
!map.should_update_local_max_streams(true),
"bidi streams limit should not be updated"
);
assert!(
!map.should_update_local_max_streams(false),
"uni streams limit should not be updated"
);
map.mark_closed(5, true);
map.mark_closed(7, true);
assert!(
!map.should_update_local_max_streams(true),
"close local bidi stream should not affect local bidi streams limit"
);
assert!(
!map.should_update_local_max_streams(false),
"close local uni stream should not affect local uni streams limit"
);
assert_eq!(map.streams.len(), 5);
assert_eq!(map.readable.len(), 5);
assert_eq!(map.writable.len(), 5);
assert_eq!(map.closed.len(), 9);
// Auto open client-initiated bidi stream, id: 20
assert!(
map.get_or_create(20, false).is_ok(),
"auto open client-initiated bidi stream failed"
);
// (15 - 10) > (10 - 6), should update
assert_eq!(map.max_streams_next(true), 15);
assert!(
map.should_update_local_max_streams(true),
"should update local bidi streams limit"
);
map.mark_closed(10, false);
assert_eq!(map.max_streams_next(false), 8);
// (8 - 5) > (5 - 3), should update
assert!(
map.should_update_local_max_streams(false),
"should update local uni streams limit"
);
assert_eq!(map.streams.len(), 5);
assert_eq!(map.readable.len(), 4);
assert_eq!(map.writable.len(), 4);
assert_eq!(map.closed.len(), 10);
map.update_local_max_streams(true);
assert_eq!(map.max_streams(true), 15);
map.update_local_max_streams(false);
assert_eq!(map.max_streams(false), 8);
assert!(
map.get_or_create(40, false).is_ok(),
"auto open client-initiated bidi stream failed"
);
assert!(
map.get_or_create(22, false).is_ok(),
"auto open client-initiated uni stream failed"
);
assert_eq!(map.streams.len(), 7);
let mut v = map.closed.iter().copied().collect::<Vec<u64>>();
assert_eq!(v.len(), 10);
v.sort();
assert_eq!(v, vec![0, 2, 4, 5, 6, 7, 8, 10, 12, 16]);
}
// Test StreamMap::mark_reset
#[test]
fn stream_map_reset() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(map.reset.is_empty(), "reset stream should not exist");
// Insert multiple streams unordered.
for seq in [1, 2, 3, 0, 4] {
let stream_id = seq * 4;
map.mark_reset(stream_id, true, seq, seq);
}
assert!(!map.reset.is_empty());
assert_eq!(map.reset.len(), 5);
let mut v = map.reset().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(
v,
vec![0, 1, 2, 3, 4]
.into_iter()
.map(|x| (x * 4, (x, x)))
.collect::<Vec<_>>()
);
// If `reset` is true but the stream was already in the list, the error code
// and the final size will be updated.
for seq in [1, 2, 3, 0, 4] {
let stream_id = seq * 4;
map.mark_reset(stream_id, true, seq + 1, seq + 1);
}
let mut v = map.reset().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(
v,
vec![0, 1, 2, 3, 4]
.into_iter()
.map(|x| (x * 4, (x + 1, x + 1)))
.collect::<Vec<_>>()
);
// Remove streams from the list if `reset` is false.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_reset(stream_id, false, 0, 0);
}
assert!(map.reset.is_empty());
}
// Test StreamMap::mark_blocked
#[test]
fn stream_map_blocked() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(map.reset.is_empty(), "blocked stream should not exist");
// Insert multiple streams unordered.
for seq in [1, 2, 3, 0, 4] {
let stream_id = seq * 4;
map.mark_blocked(stream_id, true, seq * 100);
}
assert!(!map.data_blocked.is_empty());
assert_eq!(map.data_blocked.len(), 5);
let mut v = map.blocked().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(
v,
vec![0, 1, 2, 3, 4]
.into_iter()
.map(|x| (x * 4, x * 100))
.collect::<Vec<_>>()
);
// If `blocked` is true but the stream was already in the list, the offset
// will be updated.
for seq in [1, 2, 3, 0, 4] {
let stream_id = seq * 4;
map.mark_blocked(stream_id, true, seq * 200);
}
let mut v = map.blocked().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(
v,
vec![0, 1, 2, 3, 4]
.into_iter()
.map(|x| (x * 4, x * 200))
.collect::<Vec<_>>()
);
// Remove streams from the list if `blocked` is false.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_blocked(stream_id, false, 0);
}
assert!(map.data_blocked.is_empty());
}
// Test StreamMap::mark_stopped
#[test]
fn stream_map_stopped() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(map.reset.is_empty(), "stopped stream should not exist");
// Insert multiple streams unordered.
for seq in [1, 2, 3, 0, 4] {
let stream_id = seq * 4;
map.mark_stopped(stream_id, true, seq);
}
assert!(!map.stopped.is_empty());
assert_eq!(map.stopped.len(), 5);
let mut v = map.stopped().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(
v,
vec![0, 1, 2, 3, 4]
.into_iter()
.map(|x| (x * 4, x))
.collect::<Vec<_>>()
);
// If `stopped` is true but the stream was already in the list, the offset
// will be updated.
for seq in [1, 2, 3, 0, 4] {
let stream_id = seq * 4;
map.mark_stopped(stream_id, true, seq * 2);
}
let mut v = map.stopped().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v.len(), 5);
v.sort();
assert_eq!(
v,
vec![0, 1, 2, 3, 4]
.into_iter()
.map(|x| (x * 4, x * 2))
.collect::<Vec<_>>()
);
// Remove streams from the list if `stopped` is false.
for stream_id in [4, 8, 12, 0, 16] {
map.mark_stopped(stream_id, false, 0);
}
assert!(map.stopped.is_empty());
}
// Test StreamMap::on_max_data_frame_received
#[test]
fn stream_map_on_max_data_frame_received() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert_eq!(map.max_tx_data(), 0);
// Update max_data
map.on_max_data_frame_received(100);
assert_eq!(map.max_tx_data(), 100);
// Assume that connection-level flow control is blocked at 150.
map.update_data_blocked_at(Some(150));
// Update max_data, but it doesn't change the blocked state.
map.on_max_data_frame_received(130);
assert_eq!(map.max_tx_data(), 130);
assert_eq!(map.data_blocked_at(), Some(150));
// Update max_data, and it changes the blocked state.
map.on_max_data_frame_received(200);
assert_eq!(map.max_tx_data(), 200);
assert_eq!(map.data_blocked_at(), None);
}
// Test StreamMap::on_max_stream_data_frame_received
#[test]
fn stream_map_on_max_stream_data_frame_received() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// Update the peer's max_streams limit for concurrency control.
map.concurrency_control.update_peer_max_streams(true, 30);
map.concurrency_control.update_peer_max_streams(false, 15);
// An endpoint that receives a MAX_STREAM_DATA frame for a receive-only stream
// MUST terminate the connection with error STREAM_STATE_ERROR.
assert_eq!(
map.on_max_stream_data_frame_received(2, 100),
Err(Error::StreamStateError)
);
// Client open too many bidi streams, get_or_create return StreamLimitError.
assert_eq!(
map.on_max_stream_data_frame_received(40, 100),
Err(Error::StreamLimitError)
);
// Create a new bidi stream, it is not sendable, but it is writable.
assert!(map.on_max_stream_data_frame_received(4, 10).is_ok());
assert!(map.writable.contains(&4));
let stream = map.get_mut(4).unwrap();
assert_eq!(stream.send.max_data, 10);
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(
stream.send.write(Bytes::from_static(b"OverQUIC"), false),
Ok(0)
);
// Update the peer's max stream data
assert!(map.on_max_stream_data_frame_received(4, 18).is_ok());
let stream = map.get_mut(4).unwrap();
assert_eq!(stream.send.max_data, 18);
assert_eq!(
stream.send.write(Bytes::from_static(b"OverQUIC"), false),
Ok(8)
);
// When stream's send-side flow control is exhausted,
// write empty data with fin flag, it should be ok.
assert_eq!(stream.send.write(Bytes::new(), true), Ok(0));
// Shutdown the stream abrubtly, it should be ok.
assert_eq!(stream.send.shutdown(), Ok((0, 18)));
// Here we call `write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.is_complete(), true);
map.mark_closed(4, false);
assert!(
map.on_max_stream_data_frame_received(4, 18).is_ok(),
"Stream is already closed, just ignore the frame."
);
}
// Test StreamMap::on_max_streams_frame_received
#[test]
fn stream_map_on_max_streams_frame_received() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert_eq!(map.concurrency_control.peer_max_streams_bidi, 0);
assert_eq!(map.concurrency_control.peer_max_streams_uni, 0);
// 1. Server initiated bidi(101) and uni(103) stream, exceeding the limit.
for (stream_id, local) in vec![
// bidi
(101, true),
// uni
(103, true),
] {
assert_eq!(
map.get_or_create(stream_id, local).err(),
Some(Error::StreamLimitError)
);
}
// 2. max_streams > 2^60, return FrameEncodingError
for (max_streams, bidi) in vec![(1 << 61, true), (1 << 61, false)] {
assert_eq!(
map.on_max_streams_frame_received(max_streams, bidi),
Err(Error::FrameEncodingError)
);
}
// 3. Receive a MAX_STREAMS frame for the bidi stream
assert_eq!(map.on_max_streams_frame_received(100, true), Ok(()));
assert_eq!(map.concurrency_control.peer_max_streams_bidi, 100);
assert!(map.get_or_create(101, true).is_ok());
// 4. Receive a MAX_STREAMS frame for the uni stream
assert_eq!(map.on_max_streams_frame_received(50, false), Ok(()));
assert_eq!(map.concurrency_control.peer_max_streams_uni, 50);
assert!(map.get_or_create(103, true).is_ok());
}
// Test StreamMap::on_stream_data_blocked_frame_received
#[test]
fn stream_map_on_stream_data_blocked_frame_received() {
// 1. Server endpoint
// 1.1 Receive a STREAM_DATA_BLOCKED frame for a local initiated send-only stream
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
let stream_id = 3;
assert!(is_local(stream_id, true));
assert!(!is_bidi(stream_id));
assert_eq!(
map.on_stream_data_blocked_frame_received(stream_id, 100),
Err(Error::StreamStateError)
);
// 1.2 Receive a STREAM_DATA_BLOCKED frame for a stream which allow receive data
for stream_id in [0, 1, 2] {
assert_eq!(
map.on_stream_data_blocked_frame_received(stream_id, 100),
Ok(())
);
}
// 2. Client endpoint
// 2.1 Receive a STREAM_DATA_BLOCKED frame for a local initiated send-only stream
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
let stream_id = 2;
assert!(is_local(stream_id, false));
assert!(!is_bidi(stream_id));
assert_eq!(
map.on_stream_data_blocked_frame_received(stream_id, 100),
Err(Error::StreamStateError)
);
// 2.2 Receive a STREAM_DATA_BLOCKED frame for a stream which allow receive data
for stream_id in [0, 1, 3] {
assert_eq!(
map.on_stream_data_blocked_frame_received(stream_id, 100),
Ok(())
);
}
}
// Test StreamMap::on_streams_blocked_frame_received
#[test]
fn stream_map_on_streams_blocked_frame_received() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
for (max_streams, bidi, result) in vec![
(1 << 61, true, Err(Error::FrameEncodingError)),
(1 << 61, false, Err(Error::FrameEncodingError)),
(1 << 60, true, Ok(())),
(1 << 60, false, Ok(())),
] {
assert_eq!(
map.on_streams_blocked_frame_received(max_streams, bidi),
result
);
}
}
// Test StreamMap::on_reset_stream_frame_received
#[test]
fn stream_map_on_reset_stream_frame_received() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_remote: 110,
initial_max_streams_bidi: 10,
..StreamTransportParams::default()
};
// Create a server StreamMap
let mut map = StreamMap::new(true, 50, 50, local_tp);
// 1. Receive a RESET_STREAM frame for a local initiated uni stream(3)
assert_eq!(
map.on_reset_stream_frame_received(3, 0, 10),
Err(Error::StreamStateError)
);
// 2. Peer open too many streams
assert_eq!(
map.on_reset_stream_frame_received(40, 0, 10),
Err(Error::StreamLimitError)
);
// 3. Peer send too much data, which exceeds the connection flow control limit.
assert_eq!(
map.on_reset_stream_frame_received(36, 0, 101),
Err(Error::FlowControlError)
);
assert_eq!(map.max_rx_data_left(), 100);
// 4. Peer send too much data, which exceeds the stream flow control limit.
assert_eq!(
map.on_reset_stream_frame_received(0, 0, 111),
Err(Error::FlowControlError)
);
// 5. Duplicate RESET_STREAM frame with same final size
// stream_id: 4, final_size: 10
assert_eq!(map.on_reset_stream_frame_received(4, 0, 10), Ok(()));
assert_eq!(map.max_recv_off(), 10);
assert_eq!(map.on_reset_stream_frame_received(4, 0, 10), Ok(()));
assert_eq!(map.max_recv_off(), 10);
// After receiving a RESET_STREAM frame, the stream receive-side is finished,
// but the stream is still readable.
let stream = map.get(4).unwrap();
assert!(stream.recv.is_fin());
assert!(map.readable.contains(&4));
// 6. Duplicate RESET_STREAM frame with different final size
// stream_id: 8, final_size: 10
assert_eq!(map.on_reset_stream_frame_received(8, 0, 10), Ok(()));
assert_eq!(map.max_recv_off(), 20);
assert_eq!(
map.on_reset_stream_frame_received(8, 0, 20),
Err(Error::FinalSizeError)
);
assert_eq!(map.max_recv_off(), 20);
// 7. Receive a RESET_STREAM frame for a stream which has received some data
// and final size is same with the maximum received offset.
// stream_id: 12, max received offset: 20, final size: 20.
assert_eq!(
map.on_stream_frame_received(12, 10, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
assert_eq!(map.on_reset_stream_frame_received(12, 0, 20), Ok(()));
assert_eq!(map.get(12).unwrap().recv.recv_off, 20);
assert_eq!(map.get(12).unwrap().recv.fin_off, Some(20));
// 8. Receive a RESET_STREAM frame for a stream which has received some data
// and final size is less than the maximum received offset.
// stream_id: 16, max received offset: 20, final size: 10.
assert_eq!(
map.on_stream_frame_received(16, 10, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
assert_eq!(
map.on_reset_stream_frame_received(16, 0, 10),
Err(Error::FinalSizeError)
);
// 9. Receive a RESET_STREAM frame for a stream which has received some data
// and final size is greater than the maximum received offset.
// stream_id: 20, max received offset: 20, final size: 30.
assert_eq!(
map.on_stream_frame_received(20, 10, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
assert_eq!(map.get(20).unwrap().recv.recv_off, 20);
assert_eq!(map.on_reset_stream_frame_received(20, 0, 30), Ok(()));
assert_eq!(map.get(20).unwrap().recv.recv_off, 30);
assert_eq!(map.get(20).unwrap().recv.fin_off, Some(30));
// 10. Receive a RESET_STREAM frame for a stream which has been closed.
// Shutdown the stream abrubtly, it should be ok.
let stream = map.get_or_create(24, false).unwrap();
assert_eq!(stream.send.shutdown(), Ok((0, 0)));
// Here we call `write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.is_complete(), true);
map.mark_closed(24, false);
assert!(
map.on_reset_stream_frame_received(24, 0, 0).is_ok(),
"Stream is already closed, just ignore the frame."
);
}
#[test]
fn stream_map_on_reset_stream_frame_received_flow_control_mechanism() {
// Note: When a stream is reset, all buffered data will be discarded,
// so consider the received data as consumed, which might trigger a
// connection-level flow control update.
let local_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// init window = initial_max_data /2 * 3
assert_eq!(map.flow_control.window(), 30);
assert_eq!(map.flow_control.max_data(), 20);
// 1. Receive a RESET_STREAM frame for a stream which has received some data
// and final size is same with the maximum received offset.
// stream_id: 4, max received offset: 4, read_off: 0, final size: 4.
let stream = map.get_or_create(4, false).unwrap();
assert_eq!(
stream.recv.write(0, Bytes::from_static(b"QUIC"), false),
Ok(())
);
assert_eq!(map.on_reset_stream_frame_received(4, 0, 4), Ok(()));
// map.flow_control.consumed = 4
assert_eq!(map.flow_control.max_data_next(), 34);
assert!(
!map.flow_control.should_send_max_data(),
"available_window = 16 > 15 = window/2, not update max_data"
);
assert!(!map.rx_almost_full);
// 2. Receive a RESET_STREAM frame for a stream which has received some data
// and final size is greater than the maximum received offset.
// stream_id: 8, max received offset: 1, final size: 2.
let stream = map.get_or_create(8, false).unwrap();
assert_eq!(
stream.recv.write(0, Bytes::from_static(b"O"), false),
Ok(())
);
assert_eq!(map.on_reset_stream_frame_received(8, 0, 2), Ok(()));
// map.flow_control.consumed = 6
assert_eq!(map.flow_control.max_data_next(), 36);
assert!(
map.flow_control.should_send_max_data(),
"available_window = 14 < 15 = window/2, update max_data"
);
assert!(map.rx_almost_full);
}
// Test StreamMap::on_stop_sending_frame_received
#[test]
fn stream_map_server_on_stop_sending_frame_received() {
let is_server = true;
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(is_server, 50, 50, local_tp);
// 1. Receive a STOP_SENDING frame for a peer initiated receive-only stream
let stream_id = 2;
assert!(!is_local(stream_id, is_server));
assert!(!is_bidi(stream_id));
assert_eq!(
map.on_stop_sending_frame_received(stream_id, 0),
Err(Error::StreamStateError)
);
// 2. Receive a STOP_SENDING frame for a locally initiated stream that has not yet been created
let stream_id = 1;
assert!(is_local(stream_id, is_server));
assert!(is_bidi(stream_id));
assert_eq!(
map.on_stop_sending_frame_received(stream_id, 0),
Err(Error::StreamStateError)
);
// 3. Peer open too many bidi streams
// get_or_create will return Error::StreamLimitError
assert_eq!(
map.on_stop_sending_frame_received(40, 0),
Err(Error::StreamLimitError)
);
// 4. Duplicate STOP_SENDING frame
// stream_id: 4
assert_eq!(map.on_stop_sending_frame_received(4, 7), Ok(()));
assert_eq!(map.tx_data(), 0);
// Send a RESET_STREAM frame to the peer after receiving a STOP_SENDING frame.
assert!(map.reset.contains_key(&4));
// After receiving a STOP_SENDING frame, the stream send-side is complete,
// but the stream is still writable.
let stream = map.get(4).unwrap();
assert_eq!(stream.send.is_complete(), true);
assert!(map.writable.contains(&4));
assert_eq!(stream.send.error, Some(7));
assert!(stream.send.is_stopped());
assert_eq!(stream.send.capacity(), Err(Error::StreamStopped(7)));
assert_eq!(map.on_stop_sending_frame_received(4, 0), Ok(()));
// 5. Receive a STOP_SENDING frame for a stream which has been closed.
// Shutdown the stream abrubtly, it should be ok.
let stream = map.get_or_create(24, false).unwrap();
assert_eq!(stream.send.shutdown(), Ok((0, 0)));
// Here we call `write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.is_complete(), true);
map.mark_closed(24, false);
assert!(
map.on_stop_sending_frame_received(24, 0).is_ok(),
"Stream is already closed, just ignore the frame."
);
}
#[test]
fn stream_map_client_on_stop_sending_frame_received() {
let is_server = false;
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(is_server, 50, 50, local_tp);
// 1. Receive a STOP_SENDING frame for a peer initiated receive-only stream
let stream_id = 3;
assert!(!is_local(stream_id, is_server));
assert!(!is_bidi(stream_id));
assert_eq!(
map.on_stop_sending_frame_received(stream_id, 0),
Err(Error::StreamStateError)
);
// 2. Receive a STOP_SENDING frame for a locally initiated stream that has not yet been created
let stream_id = 0;
assert!(is_local(stream_id, is_server));
assert!(is_bidi(stream_id));
assert_eq!(
map.on_stop_sending_frame_received(stream_id, 0),
Err(Error::StreamStateError)
);
// 3. Peer open too many bidi streams
// get_or_create will return Error::StreamLimitError
assert_eq!(
map.on_stop_sending_frame_received(41, 0),
Err(Error::StreamLimitError)
);
// 4. Duplicate STOP_SENDING frame
// stream_id: 5
assert_eq!(map.on_stop_sending_frame_received(5, 7), Ok(()));
assert_eq!(map.tx_data(), 0);
// Send a RESET_STREAM frame to the peer after receiving a STOP_SENDING frame.
assert!(map.reset.contains_key(&5));
// After receiving a STOP_SENDING frame, the stream send-side is complete,
// but the stream is still writable.
let stream = map.get(5).unwrap();
assert_eq!(stream.send.is_complete(), true);
assert!(map.writable.contains(&5));
assert_eq!(stream.send.error, Some(7));
assert!(stream.send.is_stopped());
assert_eq!(stream.send.capacity(), Err(Error::StreamStopped(7)));
assert_eq!(map.on_stop_sending_frame_received(5, 0), Ok(()));
// 5. Receive a STOP_SENDING frame for a stream which has been closed.
// Shutdown the stream abrubtly, it should be ok.
let stream = map.get_or_create(25, false).unwrap();
assert_eq!(stream.send.shutdown(), Ok((0, 0)));
// Here we call `write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.is_complete(), true);
map.mark_closed(25, false);
assert!(
map.on_stop_sending_frame_received(25, 0).is_ok(),
"Stream is already closed, just ignore the frame."
);
}
// Test StreamMap::on_stream_frame_received
#[test]
fn stream_map_on_stream_frame_received() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// 1. Receive a STREAM frame for a local initiated sent-only stream
let stream_id = 3;
assert!(is_local(stream_id, true));
assert!(!is_bidi(stream_id));
assert_eq!(
map.on_stream_frame_received(stream_id, 0, 0, false, Bytes::from_static(b"Everything")),
Err(Error::StreamStateError)
);
// 2. Receive a STREAM frame for a local initiated stream that has not yet been created
let stream_id = 1;
assert!(is_local(stream_id, true));
assert!(is_bidi(stream_id));
assert_eq!(
map.on_stream_frame_received(stream_id, 0, 0, false, Bytes::from_static(b"Everything")),
Err(Error::StreamStateError)
);
// 3. Peer open too many streams
// get_or_create will return Error::StreamLimitError
assert_eq!(
map.on_stream_frame_received(40, 0, 10, false, Bytes::from_static(b"Everything")),
Err(Error::StreamLimitError)
);
// 4. Peer send too much data, exceed the connection-level flow control limit
assert_eq!(
map.on_stream_frame_received(0, 100, 10, false, Bytes::from_static(b"Everything")),
Err(Error::FlowControlError)
);
// 5. Receive multi unorder STREAM frames for a stream
// Receive the first block of data of stream 4
assert_eq!(
map.on_stream_frame_received(4, 0, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
// Stream 4 should be created and readable.
assert!(map.get(4).is_some());
assert!(map.readable.contains(&4));
assert_eq!(map.max_recv_off(), 10);
// Receive the third block of data of stream 4
assert_eq!(
map.on_stream_frame_received(4, 14, 4, true, Bytes::from_static(b"QUIC")),
Ok(())
);
assert_eq!(map.max_recv_off(), 18);
// Receive the second block of data of stream 4
assert_eq!(
map.on_stream_frame_received(4, 10, 4, false, Bytes::from_static(b"Over")),
Ok(())
);
assert_eq!(map.max_recv_off(), 18);
let mut buf = vec![0; 18];
assert_eq!(
map.get_mut(4).unwrap().recv.read(&mut buf[0..10]),
Ok((10, false))
);
assert_eq!(buf[0..10], b"Everything"[..]);
assert_eq!(
map.get_mut(4).unwrap().recv.read(&mut buf[10..18]),
Ok((8, true))
);
assert_eq!(buf[10..18], b"OverQUIC"[..]);
// 6. Receive multi overlap STREAM frames for a stream
// Receive the first block of data of stream 8
assert_eq!(
map.on_stream_frame_received(8, 0, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
assert_eq!(map.max_recv_off(), 28);
// Duplicate receive the first block of data of stream 8
assert_eq!(
map.on_stream_frame_received(8, 0, 10, false, Bytes::from_static(b"Everything")),
Ok(())
);
assert_eq!(map.max_recv_off(), 28);
// Receive the fifth block of data of stream 8
assert_eq!(
map.on_stream_frame_received(8, 14, 4, true, Bytes::from_static(b"QUIC")),
Ok(())
);
assert_eq!(map.max_recv_off(), 36);
// Receive the second block of data of stream 8, overlap with the first block
assert_eq!(
map.on_stream_frame_received(8, 5, 6, false, Bytes::from_static(b"thingO")),
Ok(())
);
assert_eq!(map.max_recv_off(), 36);
// Receive the fourth block of data of stream 8, overlap with the fifth block
assert_eq!(
map.on_stream_frame_received(8, 13, 3, false, Bytes::from_static(b"rQU")),
Ok(())
);
assert_eq!(map.max_recv_off(), 36);
// Receive the third block of data of stream 8, overlap with the second and fourth block
assert_eq!(
map.on_stream_frame_received(8, 11, 4, false, Bytes::from_static(b"verQ")),
Ok(())
);
assert_eq!(map.max_recv_off(), 36);
let mut buf = vec![0; 18];
assert_eq!(
map.get_mut(8).unwrap().recv.read(&mut buf[0..10]),
Ok((10, false))
);
assert_eq!(buf[0..10], b"Everything"[..]);
assert_eq!(
map.get_mut(8).unwrap().recv.read(&mut buf[10..18]),
Ok((8, true))
);
assert_eq!(buf[10..18], b"OverQUIC"[..]);
}
fn stream_frame_received_on_closed_stream(map: &mut StreamMap, stream_id: u64) {
// Create stream.
let is_local = is_local(stream_id, map.is_server);
let is_bidi = is_bidi(stream_id);
let stream = map.get_or_create(stream_id, is_local).unwrap();
// Fake close the stream.
if is_bidi {
assert!(stream.send.shutdown().is_ok());
}
assert!(stream.recv.write(0, Bytes::new(), true).is_ok());
assert!(stream.recv.shutdown().is_ok());
assert!(stream.is_complete());
map.mark_closed(stream_id, is_local);
// Receive stream frame on the closed stream.
assert!(
map.on_stream_frame_received(
stream_id,
0,
10,
false,
Bytes::from_static(b"Everything")
)
.is_ok(),
"Stream is already closed, just ignore the frame."
);
}
// Test StreamMap::on_stream_frame_received, closed stream case.
#[test]
fn stream_map_on_stream_frame_received_with_closed_stream() {
// Create stream map.
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 5,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let peer_tp = StreamTransportParams {
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.update_peer_stream_transport_params(peer_tp);
// Remote bidi stream.
stream_frame_received_on_closed_stream(&mut map, 0);
// Remote uni stream.
stream_frame_received_on_closed_stream(&mut map, 2);
// Local bidi stream.
stream_frame_received_on_closed_stream(&mut map, 1);
}
#[test]
fn receive_stream_frame_while_draining() {
let local_tp = StreamTransportParams {
initial_max_data: 20,
initial_max_stream_data_bidi_local: 20,
initial_max_stream_data_bidi_remote: 20,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// init window = initial_max_data /2 * 3
assert_eq!(map.flow_control.window(), 30);
assert_eq!(map.flow_control.max_data(), 20);
// Create stream 4
let stream = map.get_or_create(4, false).unwrap();
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.is_draining(), true);
// Receive the first block of data of stream 4, should not update max_data
assert_eq!(
map.on_stream_frame_received(4, 0, 4, false, Bytes::from_static(b"QUIC")),
Ok(())
);
// map.flow_control.consumed = 4
assert!(
!map.flow_control.should_send_max_data(),
"available_window = 16 > 15 = window/2, not update max_data"
);
assert!(!map.rx_almost_full);
// Receive the second block of data of stream 4, should update max_data
assert_eq!(
map.on_stream_frame_received(4, 4, 2, false, Bytes::from_static(b"GO")),
Ok(())
);
// map.flow_control.consumed = 6
assert!(
map.flow_control.should_send_max_data(),
"available_window = 14 < 15 = window/2, update max_data"
);
assert!(map.rx_almost_full);
}
// Test StreamMap::on_stream_frame_acked
#[test]
fn stream_map_on_stream_frame_acked() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let peer_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.update_peer_stream_transport_params(peer_tp);
// Create a new client initiated bidirectional stream
let stream = map.get_or_create(0, false).unwrap();
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(stream.send.write(Bytes::from_static(b"Over"), false), Ok(4));
assert_eq!(stream.send.write(Bytes::from_static(b"QUIC"), true), Ok(4));
// Ack the first block of data of stream 0
map.on_stream_frame_acked(0, 0, 10);
let stream = map.get(0).unwrap();
assert_eq!(stream.send.ack_off(), 10);
assert_eq!(stream.send.unacked_len, 8);
// Ack the third block of data of stream 0
map.on_stream_frame_acked(0, 14, 4);
let stream = map.get(0).unwrap();
assert_eq!(stream.send.ack_off(), 10);
assert_eq!(stream.send.unacked_len, 8);
assert!(!stream.send.is_complete());
// Ack the second block of data of stream 0
map.on_stream_frame_acked(0, 10, 4);
let stream = map.get_mut(0).unwrap();
assert_eq!(stream.send.ack_off(), 18);
assert_eq!(stream.send.unacked_len, 0);
// All stream data has been acked, the stream's send-side should be complete.
assert!(stream.send.is_complete());
// Here we call `recv.write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.is_fin());
// Stream is complete, but it still readable(read fin).
assert_eq!(stream.is_complete(), true);
assert!(stream.is_readable());
// After shutdown the stream receive-side, it should be not readable.
assert!(stream.recv.shutdown().is_ok());
assert!(!stream.is_readable());
// When the stream is complete, but not yet closed, if we receive a new
// ACK for the stream, it should be closed.
assert!(!map.is_closed(0));
map.on_stream_frame_acked(0, 10, 4);
assert!(map.is_closed(0));
// Receive a ACK frame for a stream which has been closed, do nothing.
map.on_stream_frame_acked(0, 10, 4);
}
// Test StreamMap::on_reset_stream_frame_acked
#[test]
fn stream_map_on_reset_stream_frame_acked() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
let stream = map.get_or_create(4, false).unwrap();
assert_eq!(stream.send.shutdown(), Ok((0, 0)));
assert!(stream.send.is_complete());
map.on_reset_stream_frame_acked(4);
// Receive a ACK for a RESET_STREAM frame, no effect on the stream receive-side.
// The stream is still not complete because the stream receive-side is not complete.
let stream = map.get_mut(4).unwrap();
assert!(!stream.is_complete());
// Here we call `recv.write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.is_fin());
// Stream is complete, but it still readable(read fin).
assert_eq!(stream.is_complete(), true);
assert!(stream.is_readable());
// After shutdown the stream receive-side, it should be not readable.
assert!(stream.recv.shutdown().is_ok());
assert!(!stream.is_readable());
// When the stream is complete, but not yet closed, if we receive a new
// ACK for a RESET_STREAM frame, it should be closed.
assert!(!map.is_closed(4));
map.on_reset_stream_frame_acked(4);
assert!(map.is_closed(4));
// Receive a ACK for a RESET_STREAM frame which has been closed, do nothing.
map.on_reset_stream_frame_acked(4);
}
// Test StreamMap::on_stream_frame_lost
#[test]
fn stream_map_on_stream_frame_lost() {
let local_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let peer_tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 50,
initial_max_stream_data_bidi_remote: 50,
initial_max_stream_data_uni: 50,
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
map.update_peer_stream_transport_params(peer_tp);
// Create a new client initiated bidirectional stream
let stream = map.get_or_create(0, false).unwrap();
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(stream.send.write(Bytes::from_static(b"Over"), false), Ok(4));
assert_eq!(stream.send.write(Bytes::from_static(b"QUIC"), true), Ok(4));
// Send all data of stream 0
let mut out_buf = [0; 18];
assert_eq!(stream.send.read(&mut out_buf), Ok((18, true)));
assert!(!stream.is_sendable());
// Lost the first and third block of data of stream 0
assert!(map.peek_sendable().is_none());
map.on_stream_frame_lost(0, 0, 10, false);
let stream = map.get(0).unwrap();
assert!(stream.is_sendable());
assert_eq!(map.peek_sendable(), Some(0));
map.on_stream_frame_lost(0, 14, 4, true);
// Retransmit the first block of data of stream 0
let stream = map.get_mut(0).unwrap();
let mut out_buf = [0; 18];
assert_eq!(stream.send.read(&mut out_buf), Ok((10, false)));
assert!(stream.is_sendable());
// Retransmit the third block of data of stream 0
assert_eq!(stream.send.read(&mut out_buf[14..]), Ok((4, true)));
assert!(!stream.is_sendable());
map.remove_sendable();
// Lost empty data with fin
assert!(map.peek_sendable().is_none());
map.on_stream_frame_lost(0, 18, 0, true);
assert_eq!(map.peek_sendable(), Some(0));
// Retransmit empty data with fin
let stream = map.get_mut(0).unwrap();
let mut out_buf = [0; 18];
assert_eq!(stream.send.read(&mut out_buf), Ok((0, true)));
// Ack all data of stream 0, the stream's send-side should be complete.
map.on_stream_frame_acked(0, 0, 18);
let stream = map.get_mut(0).unwrap();
assert!(stream.send.is_complete());
// Here we call `recv.write` to make sure the stream's fin_off is set.
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
assert!(stream.recv.is_fin());
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.is_complete(), true);
map.mark_closed(0, false);
assert!(map.is_closed(0));
// After stream 0 is closed, ignore lost event.
map.on_stream_frame_lost(0, 18, 0, true);
}
// Test StreamMap::on_reset_stream_frame_lost
#[test]
fn stream_map_on_reset_stream_frame_lost() {
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// Found RESET_STREAM frame lost event on a client initiated bidirectional stream
let stream = map.get_or_create(0, false).unwrap();
map.on_reset_stream_frame_lost(0, 7, 10);
let v = map.reset().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v, [(0, (7, 10))]);
// Found RESET_STREAM frame lost event on a closed(4, simulation, not true) stream
map.on_reset_stream_frame_lost(4, 7, 10);
let v = map.reset().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v, [(0, (7, 10))]);
}
// Test StreamMap::on_stop_sending_frame_lost
#[test]
fn stream_map_on_stop_sending_frame_lost() {
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// Found STOP_SENDING frame lost event on a client initiated bidirectional stream
// and the fin flag of the stream receive-side is not set
let stream = map.get_or_create(0, false).unwrap();
map.on_stop_sending_frame_lost(0, 7);
let v = map.stopped().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v, [(0, 7)]);
// Found STOP_SENDING frame lost event on a client initiated bidirectional stream
// and the fin flag of the stream receive-side has been set
let stream = map.get_or_create(4, false).unwrap();
assert_eq!(stream.recv.write(0, Bytes::new(), true), Ok(()));
map.on_stop_sending_frame_lost(4, 7);
let v = map.stopped().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v, [(0, 7)]);
// Found STOP_SENDING frame lost event on a closed(8, simulation, not true) stream
map.on_stop_sending_frame_lost(8, 7);
let v = map.stopped().map(|(&k, &v)| (k, v)).collect::<Vec<_>>();
assert_eq!(v, [(0, 7)]);
}
// Test StreamMap::on_max_stream_data_frame_lost
#[test]
fn stream_map_on_max_stream_data_frame_lost() {
let local_tp = StreamTransportParams {
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, local_tp);
// Found MAX_STREAM_DATA frame lost event on a client initiated bidirectional stream
let stream = map.get_or_create(0, false).unwrap();
map.on_max_stream_data_frame_lost(0);
assert_eq!(map.almost_full().collect::<Vec<u64>>(), vec![0]);
// Found RESET_STREAM frame lost event on a closed(4, simulation, not true) stream
map.on_max_stream_data_frame_lost(4);
assert_eq!(map.almost_full().collect::<Vec<u64>>(), vec![0]);
}
// Test StreamMap::on_max_data_frame_lost
#[test]
fn stream_map_on_max_data_frame_lost() {
let mut map: StreamMap = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert!(!map.rx_almost_full);
map.on_max_data_frame_lost();
assert!(map.rx_almost_full);
}
// Test StreamMap::on_stream_data_blocked_frame_lost
#[test]
fn stream_map_on_stream_data_blocked_frame_lost() {
let max_data = 100;
let peer_tp = StreamTransportParams {
initial_max_streams_bidi: 1,
initial_max_stream_data_bidi_remote: max_data,
..StreamTransportParams::default()
};
// Create a client StreamMap and create a stream(0) on it
let mut map = StreamMap::new(false, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
assert!(map.get_or_create(0, true).is_ok());
assert_eq!(map.get(0).unwrap().send.max_data, max_data);
// 1. Found STREAM_DATA_BLOCKED frame lost event, but the max_stream_data has been updated
map.on_stream_data_blocked_frame_lost(0, max_data - 1);
assert!(map.data_blocked.is_empty());
// 2. Found STREAM_DATA_BLOCKED frame lost event, and the max_stream_data has not been updated
map.on_stream_data_blocked_frame_lost(0, max_data);
assert_eq!(map.data_blocked.contains_key(&0), true);
assert_eq!(map.data_blocked.get(&0), Some(&max_data));
// 3. Found Found STREAM_DATA_BLOCKED frame lost event on a closed stream
map.mark_blocked(0, false, 0);
map.mark_closed(0, true);
map.on_stream_data_blocked_frame_lost(0, max_data);
assert!(map.data_blocked.is_empty());
}
// Test StreamMap::on_data_blocked_frame_lost
#[test]
fn stream_map_on_data_blocked_frame_lost() {
let max_data = 100;
let peer_tp = StreamTransportParams {
initial_max_data: max_data,
..StreamTransportParams::default()
};
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
// 1. Found DATA_BLOCKED frame lost event, but the max_data has been updated
map.on_data_blocked_frame_lost(max_data - 1);
assert_eq!(map.data_blocked_at(), None);
// 2. Found DATA_BLOCKED frame lost event, and the max_data has not been updated
map.on_data_blocked_frame_lost(max_data);
assert_eq!(map.data_blocked_at(), Some(max_data));
// 3. Received MAX_DATA frame, and the max_data is larger than the data_blocked_at
map.on_max_data_frame_received(max_data + 1);
assert_eq!(map.data_blocked_at(), None);
}
// Test StreamMap::{streams_blocked, streams_blocked_at}
#[test]
fn stream_map_streams_blocked() {
// Create a client StreamMap
let is_server = false;
let mut map = StreamMap::new(is_server, 50, 50, StreamTransportParams::default());
for stream_id in [0, 2] {
assert_eq!(
map.get_or_create(stream_id, is_local(stream_id, is_server))
.err(),
Some(Error::StreamLimitError)
);
assert_eq!(map.streams_blocked(), true);
assert_eq!(
map.streams_blocked_at(is_bidi(stream_id)),
Some(map.concurrency_control.peer_max_streams(is_bidi(stream_id)))
);
assert!(map
.on_max_streams_frame_received(1, is_bidi(stream_id))
.is_ok());
assert!(map.streams_blocked_at(is_bidi(stream_id)).is_none());
assert!(map
.get_or_create(stream_id, is_local(stream_id, is_server))
.is_ok());
}
}
// Test StreamMap::on_streams_blocked_frame_lost
#[test]
fn stream_map_on_streams_blocked_frame_lost() {
let peer_tp = StreamTransportParams {
initial_max_streams_bidi: 10,
initial_max_streams_uni: 5,
..StreamTransportParams::default()
};
// Create a client StreamMap
let is_server = false;
let mut map = StreamMap::new(is_server, 50, 50, StreamTransportParams::default());
map.update_peer_stream_transport_params(peer_tp);
for bidi in &[true, false] {
map.on_streams_blocked_frame_lost(*bidi, 1);
assert_eq!(map.streams_blocked_at(*bidi), None);
map.on_streams_blocked_frame_lost(
*bidi,
map.concurrency_control.peer_max_streams(*bidi),
);
assert_eq!(
map.streams_blocked_at(*bidi),
Some(map.concurrency_control.peer_max_streams(*bidi))
);
}
}
// Test StreamMap::update_peer_stream_transport_params
#[test]
fn stream_map_update_peer_stream_transport_params() {
let mut map = StreamMap::new(true, 50, 50, StreamTransportParams::default());
assert_eq!(map.peer_transport_params, StreamTransportParams::default());
let tp = StreamTransportParams {
initial_max_data: 100,
initial_max_stream_data_bidi_local: 10,
initial_max_stream_data_bidi_remote: 11,
initial_max_stream_data_uni: 12,
initial_max_streams_bidi: 13,
initial_max_streams_uni: 14,
};
// Update peer transport params
map.update_peer_stream_transport_params(tp.clone());
assert_eq!(map.peer_transport_params, tp);
}
// Stream unit tests
// Test Stream::new
fn stream_new() {
let stream = Stream::new(true, true, 20, 30, DEFAULT_STREAM_WINDOW);
assert!(stream.local, "send-side is local");
assert!(stream.bidi, "send-side is bidi");
assert!(stream.incremental, "send-side is incremental");
assert_eq!(stream.urgency, 127);
assert_eq!(stream.write_thresh, 1);
assert_eq!(stream.recv.max_data(), 30);
assert_eq!(stream.send.max_data(), 20);
}
// Test Stream::is_complete
#[test]
fn stream_bidi_complete() {
// Note that peer initiated stream unit tests are same as local initiated stream,
// we would not write unit tests for them.
// Create a local bidi stream
let mut stream = Stream::new(true, true, 30, 30, DEFAULT_STREAM_WINDOW);
// Check initial state
assert!(!stream.send.is_fin(), "send-side is not fin");
assert!(!stream.send.is_complete(), "send-side is not complete");
assert!(!stream.recv.is_fin(), "recv-side is not fin");
assert!(!stream.recv.is_complete(), "recv-side is not complete");
assert!(!stream.is_complete(), "stream is not complete");
// Check stream send-side state after sending data
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(
stream.send.write(Bytes::from_static(b"OverQUIC"), false),
Ok(8)
);
assert!(!stream.send.is_fin());
assert!(!stream.send.is_complete());
// Send-side write fin
assert_eq!(stream.send.write(Bytes::new(), true), Ok(0));
assert!(stream.send.is_fin(), "send-side write fin");
assert!(!stream.send.is_complete());
// Check stream received-side state after receiving data
assert!(stream
.recv
.write(0, Bytes::from_static(b"Everything"), true)
.is_ok());
assert!(!stream.recv.is_fin());
assert!(!stream.recv.is_complete());
// Check stream send-side state when some data is acked
stream.send.ack(10, 8);
assert!(!stream.send.is_complete());
let mut buf = [0; 5];
assert_eq!(stream.recv.read(&mut buf), Ok((5, false)));
assert!(!stream.recv.is_fin());
stream.send.ack(5, 5);
assert!(!stream.send.is_complete());
stream.send.ack(0, 5);
assert!(
stream.send.is_complete(),
"all sent data is acked, send-side is complete"
);
assert!(!stream.is_complete());
let mut buf = [0; 5];
assert_eq!(stream.recv.read(&mut buf), Ok((5, true)));
assert!(
stream.recv.is_fin(),
"all received data is read, recv-side is fin"
);
assert!(
stream.recv.is_complete(),
"all received data is read, recv-side is complete"
);
assert!(stream.is_complete());
}
#[test]
fn stream_uni_complete() {
// 1. Local initiated uni stream
let mut stream = Stream::new(false, true, 30, 30, DEFAULT_STREAM_WINDOW);
// Check initial state
assert!(!stream.send.is_fin(), "send-side is not fin");
assert!(!stream.send.is_complete(), "send-side is not complete");
assert!(!stream.is_complete(), "stream is not complete");
// Check stream send-side state after sending data
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(
stream.send.write(Bytes::from_static(b"OverQUIC"), false),
Ok(8)
);
assert!(!stream.send.is_fin());
assert!(!stream.send.is_complete());
// Send-side write fin
assert_eq!(stream.send.write(Bytes::new(), true), Ok(0));
assert!(stream.send.is_fin(), "send-side write fin");
assert!(!stream.send.is_complete());
// Check stream send-side state when some data is acked
stream.send.ack(10, 8);
assert!(!stream.send.is_complete());
assert!(!stream.is_complete());
stream.send.ack(5, 5);
assert!(!stream.send.is_complete());
assert!(!stream.is_complete());
stream.send.ack(0, 5);
assert!(
stream.send.is_complete(),
"all sent data is acked, send-side is complete"
);
assert!(stream.is_complete());
// 2. Peer initiated uni stream
let mut stream = Stream::new(false, false, 30, 30, DEFAULT_STREAM_WINDOW);
// Check initial state
assert!(!stream.recv.is_fin(), "recv-side is not fin");
assert!(!stream.recv.is_complete(), "recv-side is not complete");
assert!(!stream.is_complete(), "stream is not complete");
// Check stream received-side state after receiving data
assert!(stream
.recv
.write(0, Bytes::from_static(b"Everything"), true)
.is_ok());
assert!(!stream.recv.is_fin());
assert!(!stream.is_complete());
let mut buf = [0; 5];
assert_eq!(stream.recv.read(&mut buf), Ok((5, false)));
assert!(!stream.recv.is_fin());
assert!(!stream.is_complete());
let mut buf = [0; 5];
assert_eq!(stream.recv.read(&mut buf), Ok((5, true)));
assert!(
stream.recv.is_fin(),
"all received data is read, recv-side is fin"
);
assert!(
stream.recv.is_complete(),
"all received data is read, recv-side is complete"
);
assert!(stream.is_complete());
}
#[test]
fn stream_is_readable() {
// Create a local initiated bidi stream
let mut stream = Stream::new(true, true, 30, 30, DEFAULT_STREAM_WINDOW);
assert!(!stream.is_readable(), "no data to read");
// Receive the first block of data
assert!(stream
.recv
.write(0, Bytes::from_static(b"Everything"), false)
.is_ok());
assert!(stream.is_readable());
// Read first block of data
let mut buf = [0; 10];
assert_eq!(stream.recv.read(&mut buf), Ok((10, false)));
assert!(!stream.is_readable(), "all received data is read");
// Receive third block of data
assert!(stream
.recv
.write(14, Bytes::from_static(b"QUIC"), true)
.is_ok());
assert!(!stream.is_readable(), "unordered data");
// Receive second block of data
assert!(stream
.recv
.write(10, Bytes::from_static(b"Over"), false)
.is_ok());
assert!(stream.is_readable());
// Read part of the data
let mut buf = [0; 5];
assert_eq!(stream.recv.read(&mut buf), Ok((5, false)));
assert_eq!(&buf, b"OverQ");
assert!(stream.is_readable());
// Read all the data
let mut buf = [0; 3];
assert_eq!(stream.recv.read(&mut buf), Ok((3, true)));
assert_eq!(&buf, b"UIC");
assert!(!stream.is_readable(), "all received data is read");
}
#[test]
fn stream_is_writable() {
// Create a local initiated bidi stream
let mut stream = Stream::new(true, true, 10, 30, DEFAULT_STREAM_WINDOW);
assert!(stream.is_writable(), "stream is writable");
assert_eq!(stream.send.max_data(), 10);
// Write the first block of data
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert!(!stream.is_writable(), "stream blocked by flow control");
// Update flow control limit
stream.send.update_max_data(20);
assert_eq!(stream.send.max_data(), 20);
assert!(stream.is_writable(), "stream is writable");
// Write second block of data with fin
assert_eq!(
stream.send.write(Bytes::from_static(b"OverQUIC"), true),
Ok(8)
);
assert!(stream.send.is_fin(), "send-side write fin");
assert!(
!stream.is_writable(),
"stream is not writable because fin is write"
);
// Create a local initiated bidi stream
let mut stream = Stream::new(true, true, 20, 30, DEFAULT_STREAM_WINDOW);
assert!(stream.is_writable(), "stream is writable");
assert_eq!(stream.send.max_data(), 20);
// Write the first block of data
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert_eq!(stream.send.shutdown(), Ok((0, 10)));
assert!(
!stream.is_writable(),
"stream is not writable because send-side is shutdown"
);
}
// Test Stream::is_sendable, takes retranmission into account.
#[test]
fn stream_is_sendable() {
// Create a local initiated bidi stream
let mut stream = Stream::new(true, true, 20, 30, DEFAULT_STREAM_WINDOW);
assert!(!stream.is_sendable(), "no data to send");
assert_eq!(stream.send.max_data(), 20);
// Write the first block of data
assert_eq!(
stream.send.write(Bytes::from_static(b"Everything"), false),
Ok(10)
);
assert!(stream.is_sendable(), "has 10 bytes to send");
// Send part of the first block data
let mut buf = [0; 5];
assert_eq!(stream.send.read(&mut buf), Ok((5, false)));
assert!(
stream.is_sendable(),
"send_off < write_off, has 5 bytes to send"
);
// Send all the first block data
let mut buf = [0; 5];
assert_eq!(stream.send.read(&mut buf), Ok((5, false)));
assert!(!stream.is_sendable(), "all buffered data is sent");
// Write the second block of data
assert_eq!(
stream.send.write(Bytes::from_static(b"OverQUIC"), true),
Ok(8)
);
assert!(stream.is_sendable(), "has 8 bytes to send");
// Send all the second block data
let mut buf = [0; 8];
assert_eq!(stream.send.read(&mut buf), Ok((8, true)));
assert!(!stream.is_sendable(), "all buffered data is sent");
// Ack part of the second block data: [15, 18)
stream.send.ack_and_drop(15, 3);
// Lost part of the first block of data and need to retransmit
stream.send.retransmit(5, 10);
assert!(stream.is_sendable(), "has 10 bytes to retransmit");
let mut buf = [0; 10];
assert_eq!(stream.send.read(&mut buf), Ok((10, false)));
assert_eq!(buf, b"thingOverQ"[..]);
assert!(!stream.is_sendable(), "all buffered data is sent");
// Lost part of the first block of data and need to retransmit
stream.send.retransmit(0, 5);
assert!(stream.is_sendable(), "has 5 bytes to retransmit");
let mut buf = [0; 5];
assert_eq!(stream.send.read(&mut buf), Ok((5, false)));
assert_eq!(buf, b"Every"[..]);
assert!(!stream.is_sendable(), "all buffered data is sent");
// All data is sent and acked
stream.send.ack_and_drop(0, 15);
assert!(!stream.is_sendable(), "all data is sent and acked");
assert!(stream.send.is_complete(), "all data is sent and acked");
}
// Test Stream::is_draining, takes unacked data into account.
#[test]
fn stream_is_draining() {
// Create a local initiated bidi stream
let mut stream = Stream::new(true, true, 20, 30, DEFAULT_STREAM_WINDOW);
assert!(!stream.is_draining(), "the stream's recv-side is open");
// Receive the first block of data
assert!(stream
.recv
.write(0, Bytes::from_static(b"Everything"), false)
.is_ok());
assert!(stream.is_readable());
// Receive the third block of data, unorderly
assert!(stream
.recv
.write(14, Bytes::from_static(b"QUIC"), true)
.is_ok());
assert_eq!(stream.recv.recv_off(), 18);
// Read part of the first block data
let mut buf = [0; 5];
assert_eq!(stream.recv.read(&mut buf), Ok((5, false)));
assert_eq!(buf, b"Every"[..]);
assert_eq!(stream.recv.read_off(), 5);
// Shutdown the stream's recv-side
assert!(stream.recv.shutdown().is_ok());
assert_eq!(stream.recv.read_off(), stream.recv.recv_off());
assert!(stream.is_draining(), "the stream's recv-side is shutdown");
assert!(!stream.is_readable(), "the stream's recv-side is shutdown");
// Receive second block of data, which will be discarded
assert!(stream
.recv
.write(10, Bytes::from_static(b"Over"), false)
.is_ok());
assert!(stream.is_draining(), "the stream's recv-side is shutdown");
assert!(!stream.is_readable(), "the stream's recv-side is shutdown");
}
// ConcurrencyControl unit tests
// Test ConcurrencyControl::new
#[test]
fn concurrency_control_new() {
let cc = ConcurrencyControl::new(10, 3);
assert_eq!(
cc,
ConcurrencyControl {
local_max_streams_bidi: 10,
local_max_streams_bidi_next: 10,
local_max_streams_uni: 3,
local_max_streams_uni_next: 3,
local_opened_streams_bidi: 0,
local_opened_streams_uni: 0,
peer_max_streams_bidi: 0,
peer_max_streams_uni: 0,
peer_opened_streams_bidi: 0,
peer_opened_streams_uni: 0,
streams_blocked_at_bidi: None,
streams_blocked_at_uni: None,
}
);
}
// Test ConcurrencyControl::check_concurrency_limits
#[test]
fn concurrency_control_check_concurrency_limits() {
let mut cc = ConcurrencyControl::new(20, 12);
cc.update_peer_max_streams(true, 10);
cc.update_peer_max_streams(false, 6);
assert_eq!(cc.local_max_streams_bidi, 20);
assert_eq!(cc.local_max_streams_uni, 12);
assert_eq!(cc.peer_max_streams_bidi, 10);
assert_eq!(cc.peer_max_streams_uni, 6);
// 1. Test is_server = true, i.e. current endpoint is server
// 1.1 Server initiated bidirectional stream
// (stream_id & 0x01 == 1 && stream_id & 0x02 == 0), 1, 5, 9...
// is_server = true, is_local = true, is_bidi = true
for (stream_id, is_server, result, local_opened_streams_bidi) in vec![
(5, true, Ok(()), 2),
// Open stream in order
(9, true, Ok(()), 3),
// Open stream unordered
(1, true, Ok(()), 3),
// Local opened bidi stream over peer_max_streams_bidi limit
(41, true, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.local_opened_streams_bidi, local_opened_streams_bidi);
}
// 1.2 Server initiated unidirectional stream
// (stream_id & 0x01 == 1 && stream_id & 0x02 == 1), 3, 7, 11...
// is_server = true, is_local = true, is_bidi = false
for (stream_id, is_server, result, local_opened_streams_uni) in vec![
(7, true, Ok(()), 2),
// Open stream in order
(11, true, Ok(()), 3),
// Open stream unordered
(3, true, Ok(()), 3),
// Local opened uni stream over peer_max_streams_uni limit
(27, true, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.local_opened_streams_uni, local_opened_streams_uni);
}
// 1.3 Client initiated bidirectional stream
// (stream_id & 0x01 == 0 && stream_id & 0x02 == 0), 0, 4, 8...
// is_server = true, is_local = false, is_bidi = true
for (stream_id, is_server, result, peer_opened_streams_bidi) in vec![
(4, true, Ok(()), 2),
// Open stream in order
(8, true, Ok(()), 3),
// Open stream unordered
(0, true, Ok(()), 3),
// Peer opened bidi stream over local_max_streams_bidi limit
(80, true, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.peer_opened_streams_bidi, peer_opened_streams_bidi);
}
// 1.4 Client initiated unidirectional stream
// (stream_id & 0x01 == 0 && stream_id & 0x02 == 1), 2, 6, 10...
// is_server = true, is_local = false, is_bidi = false
for (stream_id, is_server, result, peer_opened_streams_uni) in vec![
(6, true, Ok(()), 2),
// Open stream in order
(10, true, Ok(()), 3),
// Open stream unordered
(2, true, Ok(()), 3),
// Peer opened uni stream over local_max_streams_uni limit
(50, true, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.peer_opened_streams_uni, peer_opened_streams_uni);
}
// 2. Test is_server = false, i.e. current endpoint is client
let mut cc = ConcurrencyControl::new(20, 12);
cc.update_peer_max_streams(true, 10);
cc.update_peer_max_streams(false, 6);
assert_eq!(cc.local_max_streams_bidi, 20);
assert_eq!(cc.local_max_streams_uni, 12);
assert_eq!(cc.peer_max_streams_bidi, 10);
assert_eq!(cc.peer_max_streams_uni, 6);
// 2.1 Server initiated bidirectional stream
// (stream_id & 0x01 == 1 && stream_id & 0x02 == 0), 1, 5, 9...
// is_server = false, is_local = false, is_bidi = true
assert_eq!(cc.check_concurrency_limits(5, false), Ok(()));
assert_eq!(cc.peer_opened_streams_bidi, 2);
// Open stream in order
assert_eq!(cc.check_concurrency_limits(9, false), Ok(()));
assert_eq!(cc.peer_opened_streams_bidi, 3);
// Open stream unordered
assert_eq!(cc.check_concurrency_limits(1, false), Ok(()));
assert_eq!(cc.peer_opened_streams_bidi, 3);
// Peer opened bidi stream over local_max_streams_bidi limit
assert_eq!(
cc.check_concurrency_limits(81, false),
Err(Error::StreamLimitError)
);
// 2.2 Server initiated unidirectional stream
// (stream_id & 0x01 == 1 && stream_id & 0x02 == 1), 3, 7, 11...
// is_server = false, is_local = false, is_bidi = false
for (stream_id, is_server, result, peer_opened_streams_uni) in vec![
(7, false, Ok(()), 2),
// Open stream in order
(11, false, Ok(()), 3),
// Open stream unordered
(3, false, Ok(()), 3),
// Peer opened uni stream over local_max_streams_uni limit
(51, false, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.peer_opened_streams_uni, peer_opened_streams_uni);
}
// 2.3 Client initiated bidirectional stream
// (stream_id & 0x01 == 0 && stream_id & 0x02 == 0), 0, 4, 8...
// is_server = false, is_local = true, is_bidi = true
for (stream_id, is_server, result, local_opened_streams_bidi) in vec![
(4, false, Ok(()), 2),
// Open stream in order
(8, false, Ok(()), 3),
// Open stream unordered
(0, false, Ok(()), 3),
// Local opened bidi stream over peer_max_streams_bidi limit
(40, false, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.local_opened_streams_bidi, local_opened_streams_bidi);
}
// 2.4 Client initiated unidirectional stream
// (stream_id & 0x01 == 0 && stream_id & 0x02 == 1), 2, 6, 10...
// is_server = false, is_local = true, is_bidi = false
for (stream_id, is_server, result, local_opened_streams_uni) in vec![
(6, false, Ok(()), 2),
// Open stream in order
(10, false, Ok(()), 3),
// Open stream unordered
(2, false, Ok(()), 3),
// Local opened uni stream over peer_max_streams_uni limit
(26, false, Err(Error::StreamLimitError), 3),
] {
assert_eq!(cc.check_concurrency_limits(stream_id, is_server), result);
assert_eq!(cc.local_opened_streams_uni, local_opened_streams_uni);
}
}
// Test ConcurrencyControl::{
// should_update_max_streams_bidi,
// should_update_max_streams_uni,
// add_max_streams_bidi_credits,
// add_max_streams_uni_credits,
// update_peer_max_streams_bidi,
// update_peer_max_streams_uni,
// max_streams_bidi_next,
// max_streams_uni_next,
// peer_streams_left_bidi,
// peer_streams_left_uni,
// }
#[test]
fn concurrency_control_update_methods() {
let mut cc = ConcurrencyControl::new(20, 12);
cc.update_peer_max_streams(true, 10);
cc.update_peer_max_streams(false, 6);
assert_eq!(cc.should_update_local_max_streams(true), false);
assert_eq!(cc.should_update_local_max_streams(false), false);
assert_eq!(cc.local_max_streams_bidi_next, 20);
assert_eq!(cc.local_max_streams_uni_next, 12);
assert_eq!(cc.peer_streams_left(true), 10);
assert_eq!(cc.peer_streams_left(false), 6);
// Peer opened 20 bidi streams
assert_eq!(cc.check_concurrency_limits(76, true), Ok(()));
assert_eq!(cc.peer_opened_streams_bidi, 20);
// Peer opened 12 uni streams
assert_eq!(cc.check_concurrency_limits(46, true), Ok(()));
assert_eq!(cc.peer_opened_streams_uni, 12);
assert_eq!(cc.should_update_local_max_streams(true), false);
assert_eq!(cc.should_update_local_max_streams(false), false);
cc.increase_max_streams_credits(true, 11);
cc.increase_max_streams_credits(false, 7);
assert_eq!(cc.local_max_streams_bidi_next, 31);
assert_eq!(cc.local_max_streams_uni_next, 19);
// Peer opened 20 bidi streams, closed 11(> 20/2), should update
assert_eq!(cc.should_update_local_max_streams(true), true);
// Peer opened 12 uni streams, closed 7(>12/2), should update
assert_eq!(cc.should_update_local_max_streams(false), true);
cc.update_local_max_streams(true);
cc.update_local_max_streams(false);
// After update, should_update_max_streams_bidi should be false
assert_eq!(cc.should_update_local_max_streams(true), false);
assert_eq!(cc.should_update_local_max_streams(false), false);
assert_eq!(cc.local_max_streams_bidi_next, 31);
assert_eq!(cc.local_max_streams_uni_next, 19);
// Local opened 2 bidi streams, left 8
assert_eq!(cc.check_concurrency_limits(5, true), Ok(()));
assert_eq!(cc.local_opened_streams_bidi, 2);
// Local opened 2 uni streams, left 4
assert_eq!(cc.check_concurrency_limits(7, true), Ok(()));
assert_eq!(cc.local_opened_streams_uni, 2);
assert_eq!(cc.peer_streams_left(true), 8);
assert_eq!(cc.peer_streams_left(false), 4);
}
// RecvBuf unit tests
// Test RecvBuf::new
#[test]
fn recv_buf_new() {
let max_data: u64 = 100;
let max_window: u64 = 600;
let recv = RecvBuf::new(100, 600);
assert_eq!(recv.data.len(), 0);
assert_eq!(recv.read_off, 0);
assert_eq!(recv.recv_off, 0);
assert_eq!(recv.fin_off, None);
assert_eq!(recv.error, None);
assert_eq!(recv.shutdown, false);
}
// Write multiple empty FIN buffers to RecvBuf.
#[test]
fn recv_buf_write_multiple_empty_fin_buffer() {
let mut recv = RecvBuf::new(100, 600);
assert_eq!(recv.data.len(), 0);
// recv [0, 10) with FIN
assert_eq!(
recv.write(0, Bytes::from_static(b"Everything"), true),
Ok(())
);
for i in 1..5 {
// Write empty FIN buffer
assert_eq!(recv.write(10, Bytes::new(), true), Ok(()));
assert_eq!(recv.data.len(), 1);
assert_eq!(recv.fin_off, Some(10));
assert!(recv.ready());
}
}
// Test RecvBuf::{write, read}
#[test]
fn recv_buf_multi_write_in_order() {
let mut recv = RecvBuf::new(100, 600);
assert_eq!(recv.data.len(), 0);
let data = Bytes::from("Hello, TQUIC!");
let data_len = data.len();
let first = Bytes::from("Hell");
let second = Bytes::from("o, T");
let third = Bytes::from("QUIC!");
assert_eq!(recv.write(0, first, false), Ok(()));
assert_eq!(recv.recv_off, 4);
assert_eq!(recv.write(4, second, false), Ok(()));
assert_eq!(recv.recv_off, 8);
assert_eq!(recv.write(8, third, true), Ok(()));
assert_eq!(recv.recv_off, 13);
let mut out_buf = [0; 128];
let (len, fin) = recv.read(&mut out_buf[..128]).unwrap();
assert_eq!(len, 13);
assert_eq!(fin, true);
assert_eq!(recv.fin_off, Some(13));
assert_eq!(recv.recv_off, 13);
assert_eq!(recv.read_off, 13);
assert_eq!(out_buf[..data_len], data[..data_len]);
}
// Test RecvBuf::{write, read} with out of order data
#[test]
fn recv_buf_multi_write_out_of_order() {
let mut recv = RecvBuf::new(100, 600);
assert_eq!(recv.data.len(), 0);
let data = Bytes::from("Hello, TQUIC!");
let data_len = data.len();
let first = Bytes::from("Hell");
let second = Bytes::from("o, T");
let third = Bytes::from("QUIC!");
// recv [4, 8)
assert_eq!(recv.write(4, second, false), Ok(()));
assert_eq!(recv.recv_off, 8);
assert_eq!(recv.read_off, 0);
// Out of order, read 0 bytes
let mut out_buf = [0; 128];
assert_eq!(recv.read(&mut out_buf[..128]), Err(Error::Done));
// recv [8, 13)
assert_eq!(recv.write(8, third, true), Ok(()));
assert_eq!(recv.recv_off, 13);
assert_eq!(recv.read_off, 0);
assert_eq!(recv.fin_off, Some(13));
// Out of order, read 0 bytes
let mut out_buf = [0; 128];
assert_eq!(recv.read(&mut out_buf[..128]), Err(Error::Done));
// recv [0, 4)
assert_eq!(recv.write(0, first, false), Ok(()));
assert_eq!(recv.recv_off, 13);
assert_eq!(recv.fin_off, Some(13));
// read 13 bytes
let mut out_buf = [0; 128];
let (len, fin) = recv.read(&mut out_buf[..128]).unwrap();
assert_eq!(len, 13);
assert_eq!(fin, true);
assert_eq!(recv.fin_off, Some(13));
assert_eq!(recv.recv_off, 13);
assert_eq!(recv.read_off, 13);
assert_eq!(out_buf[..data_len], data[..data_len]);
}
#[test]
fn recv_buf_write_overlapping_data() {
let mut recv = RecvBuf::new(20, 10);
assert_eq!(recv.data.len(), 0);
let data = Bytes::from("EverythingOverQUIC");
let data_len = data.len();
// recv [0, 5)
assert_eq!(recv.write(0, Bytes::from_static(b"Every"), false), Ok(()));
// consume [0, 5)
let mut buf = [0; 5];
assert_eq!(recv.read(&mut buf), Ok((5, false)));
assert_eq!(buf, data[..5]);
// recv [0, 10)
// Bytes up to read_off have already been consumed by application, will be
// discard directly.
assert_eq!(
recv.write(0, Bytes::from_static(b"Everything"), false),
Ok(())
);
// recv [14, 18)
assert_eq!(recv.write(14, Bytes::from_static(b"QUIC"), true), Ok(()));
// duplicate recv [5, 10)
assert_eq!(recv.write(5, Bytes::from_static(b"thing"), false), Ok(()));
// recv [5, 11), overlap with [0, 10)
assert_eq!(recv.write(5, Bytes::from_static(b"thingO"), false), Ok(()));
// recv [13, 16), overlap with [14, 18)
assert_eq!(recv.write(13, Bytes::from_static(b"rQU"), false), Ok(()));
// recv [10, 14), overlap with [5, 11) and [13, 16)
assert_eq!(recv.write(10, Bytes::from_static(b"Over"), false), Ok(()));
assert_eq!(recv.recv_off, 18);
let mut buf = [0; 18];
assert_eq!(recv.read(&mut buf), Ok((13, true)));
assert_eq!(buf[0..13], data[5..]);
}
#[test]
fn recv_buf_write_exceed_flow_control() {
let mut recv = RecvBuf::new(10, 5);
assert_eq!(
recv.write(0, Bytes::from_static(b"EverythingOverQUIC"), false),
Err(Error::FlowControlError)
);
}
#[test]
fn recv_buf_final_size_legality() {
let mut recv = RecvBuf::new(20, 10);
// recv [0, 14)
assert_eq!(
recv.write(0, Bytes::from_static(b"EverythingOver"), false),
Ok(())
);
// Do nothing if the buffer is empty and without fin flag.
assert_eq!(recv.write(10, Bytes::new(), false), Ok(()));
// An endpoint received a STREAM frame containing a final size that was lower than
// the size of data that was already received.
assert_eq!(
recv.write(0, Bytes::from_static(b"Everything"), true),
Err(Error::FinalSizeError)
);
// recv [14, 18)
assert_eq!(recv.write(14, Bytes::from_static(b"QUIC"), true), Ok(()));
// A receiver SHOULD treat receipt of data at or beyond the final size as an error
// of type FINAL_SIZE_ERROR.
assert_eq!(
recv.write(18, Bytes::from_static(b"!"), false),
Err(Error::FinalSizeError)
);
// Once a final size for a stream is known, it cannot be change. If a STREAM frame
// is received indicating a change in the final size for the stream, an endpoint
// SHOULD respond with an error of type FINAL_SIZE_ERROR.
assert_eq!(
recv.write(10, Bytes::from_static(b"Over"), true),
Err(Error::FinalSizeError)
);
// Do nothing if the final offset is already known, an the buffer is empty.
assert_eq!(recv.write(10, Bytes::new(), false), Ok(()));
}
#[test]
fn recv_buf_read_after_reset() {
let mut buf = [0; 20];
// Subcase 1: reset before receiving any data
let mut recv = RecvBuf::new(20, 10);
assert_eq!(recv.reset(7, 18), Ok(18));
assert!(recv.ready());
assert_eq!(recv.read(&mut buf), Err(Error::StreamReset(7)));
assert_eq!(recv.read(&mut buf), Err(Error::Done));
// Subcase 2: reset after receiving some data without fin flag
let mut recv = RecvBuf::new(20, 10);
// recv [0, 10), and then reset it at offset 18 with error code 7.
assert_eq!(
recv.write(0, Bytes::from_static(b"Everything"), false),
Ok(())
);
assert_eq!(recv.reset(7, 18), Ok(8));
// The stream has been reset by the peer.
assert_eq!(recv.read(&mut buf), Err(Error::StreamReset(7)));
assert_eq!(recv.read(&mut buf), Err(Error::Done));
// Subcase 3: reset after receiving some data with fin flag
let mut recv = RecvBuf::new(20, 10);
// recv [0, 18), and then reset it at offset 18 with error code 7.
assert_eq!(
recv.write(0, Bytes::from_static(b"EverythingOverQuic"), true),
Ok(())
);
assert_eq!(recv.reset(7, 18), Ok(0));
// The stream has been reset by the peer.
assert_eq!(recv.read(&mut buf), Err(Error::StreamReset(7)));
assert_eq!(recv.read(&mut buf), Err(Error::Done));
}
#[test]
fn stream_shutdown_read() {
let mut recv = RecvBuf::new(20, 10);
// recv [0, 10)
assert_eq!(
recv.write(0, Bytes::from_static(b"Everything"), false),
Ok(())
);
// recv [14, 18)
assert_eq!(recv.write(14, Bytes::from_static(b"QUIC"), false), Ok(()));
assert_eq!(recv.data.len(), 2);
assert_eq!(recv.recv_off(), 18);
assert_eq!(recv.read_off(), 0);
assert!(!recv.is_shutdown());
// Aftet shutdown read:
// 1) read_off will be updated to recv_off;
// 2) data will be cleared;
// 3) is_shutdown will be set to true.
assert!(recv.shutdown().is_ok());
assert!(recv.is_shutdown());
assert!(recv.data.is_empty());
assert_eq!(recv.recv_off(), 18);
assert_eq!(recv.read_off(), 18);
// shutdown read, would not affect the finished state of the stream's receive-side.
assert!(!recv.is_fin());
// duplicate shutdown
assert_eq!(recv.shutdown(), Err(Error::Done));
}
// SendBuf unit tests
// Test SendBuf::new
#[test]
fn send_buf_new() {
let mut send = SendBuf::new(100);
assert_eq!(send.capacity().unwrap(), 100);
assert_eq!(send.data.len(), 0);
assert_eq!(send.write_off, 0);
assert_eq!(send.unsent_off, 0);
assert_eq!(send.unacked_len, 0);
assert_eq!(send.max_data, 100);
assert_eq!(send.blocked_at, None);
assert_eq!(send.fin_off, None);
assert_eq!(send.shutdown, false);
assert_eq!(send.acked.len(), 0);
assert_eq!(send.retransmits.len(), 0);
assert_eq!(send.error, None);
assert_eq!(send.read_range(0..10).is_empty(), true);
}
// Test the properties of SendBuf, include data blocks, cap,
// write, write_off, unsent_off, unacked_len, fin_off, error
#[test]
fn send_buf_write_basic_logic() {
let max_tx_data: usize = 100;
let mut send = SendBuf::new(max_tx_data as u64);
assert_eq!(send.data.len(), 0);
assert_eq!(send.capacity().unwrap(), max_tx_data);
// Data will be split into consistently sized chunks to avoid fragmentation.
// Each chunk size is limited by SEND_BUFFER_SIZE(5).
// Write SEND_BUFFER_SIZE(5) bytes
let data = Bytes::from("Hello");
assert_eq!(send.write(data, false), Ok(5));
assert_eq!(send.unacked_len, 5);
assert_eq!(send.capacity().unwrap(), max_tx_data.saturating_sub(5));
// ceil(5 / 5) == 1
assert_eq!(send.data.len(), 1);
let data = Bytes::from("Everything over QUIC!");
assert_eq!(send.write(data, false), Ok(21));
assert_eq!(send.unacked_len, 26);
assert_eq!(send.capacity().unwrap(), max_tx_data.saturating_sub(26));
// ceil(21 / 5) == 5, plus 1 from previous write, equals 6
assert_eq!(send.data.len(), 6);
let data = Bytes::from(Bytes::copy_from_slice(&b"a".repeat(100)));
assert_eq!(send.write(data, true), Ok(74));
assert_eq!(send.unacked_len, 100);
assert_eq!(send.capacity().unwrap(), 0);
// ceil(74 / 5) == 15, plus 6 from previous write, equals 21
assert_eq!(send.data.len(), 21);
assert_eq!(send.fin_off, None);
// Write an empty buffer with fin flag set.
assert_eq!(send.write(Bytes::new(), true), Ok(0));
assert_eq!(send.unacked_len, 100);
assert_eq!(send.capacity().unwrap(), 0);
assert_eq!(send.data.len(), 21);
assert_eq!(send.fin_off, Some(100));
// Can't write more data after fin flag is set.
assert_eq!(
send.write(Bytes::from_static(b"b"), true),
Err(Error::FinalSizeError)
);
// Fin flag can't be cancelled after it was set.
assert_eq!(send.write(Bytes::new(), false), Err(Error::FinalSizeError));
}
// Test for SendBuf::{write, read}
#[test]
fn send_buf_multi_write() {
let mut send = SendBuf::new(100);
assert_eq!(send.data.len(), 0);
let data = Bytes::from("Hello, TQUIC!");
let first = Bytes::from("Hell");
let second = Bytes::from("o, T");
let third = Bytes::from("QUIC!");
// write [0, 4)
assert_eq!(send.write(first, false), Ok(4));
assert_eq!(send.unacked_len, 4);
assert_eq!(send.data.len(), 1);
// write [4, 8)
assert_eq!(send.write(second, false), Ok(4));
assert_eq!(send.unacked_len, 8);
assert_eq!(send.data.len(), 2);
// write [8, 13)
assert_eq!(send.write(third, true), Ok(5));
assert_eq!(send.unacked_len, 13);
assert_eq!(send.data.len(), 3);
let mut out_buf = [0; 128];
let (len, fin) = send.read(&mut out_buf[..128]).unwrap();
assert_eq!(len, 13);
assert_eq!(fin, true);
assert_eq!(send.fin_off, Some(13));
assert_eq!(send.unacked_len, 13);
assert_eq!(send.unsent_off, 13);
assert_eq!(out_buf[..13], data[..13]);
}
#[test]
fn send_buf_ack_in_order() {
let mut send = SendBuf::new(100);
assert_eq!(send.data.len(), 0);
let write_data = Bytes::from("Hello, TQUIC!");
let data = write_data.clone();
let first = Bytes::from("Hell");
let second = Bytes::from("o, T");
let third = Bytes::from("QUIC!");
assert_eq!(send.write(write_data, true), Ok(13));
assert_eq!(send.unacked_len, 13);
let mut out_buf = [0; 128];
let (len, fin) = send.read(&mut out_buf[..128]).unwrap();
assert_eq!(len, 13);
assert_eq!(fin, true);
assert_eq!(send.fin_off, Some(13));
assert_eq!(send.unacked_len, 13);
assert_eq!(send.unsent_off, 13);
assert_eq!(out_buf[..13], data[..13]);
// all data is unacked
assert_eq!(aggregate_unacked(&send), data[..13].to_vec());
// ack [0, 4]
send.ack_and_drop(0, 4);
assert_eq!(send.ack_off(), 4);
assert_eq!(aggregate_unacked(&send), data[4..13].to_vec());
// ack [4, 8]
send.ack_and_drop(4, 4);
assert_eq!(send.ack_off(), 8);
assert_eq!(aggregate_unacked(&send), data[8..13].to_vec());
// ack [8, 13]
send.ack_and_drop(8, 5);
assert_eq!(send.ack_off(), 13);
assert_eq!(aggregate_unacked(&send).is_empty(), true);
}
#[test]
fn send_buf_ack_out_of_order() {
let mut send = SendBuf::new(100);
assert_eq!(send.data.len(), 0);
let write_data = Bytes::from("Hello, TQUIC!");
let data = write_data.clone();
let first = Bytes::from("Hell");
let second = Bytes::from("o, T");
let third = Bytes::from("QUIC!");
assert_eq!(send.write(write_data, true), Ok(13));
assert_eq!(send.unacked_len, 13);
let mut out_buf = [0; 128];
assert_eq!(send.read(&mut out_buf[..128]), Ok((13, true)));
assert_eq!(send.fin_off, Some(13));
assert_eq!(send.unacked_len, 13);
assert_eq!(send.unsent_off, 13);
assert_eq!(out_buf[..13], data[..13]);
// read nothing because all data is sent and no data need to be retransmitted
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// all data is unacked
assert_eq!(aggregate_unacked(&send), data[..13].to_vec());
// ack [8, 13]
send.ack_and_drop(8, 5);
assert_eq!(send.ack_off(), 0);
assert_eq!(aggregate_unacked(&send), data[..13].to_vec());
// ack [0, 4]
send.ack_and_drop(0, 4);
assert_eq!(send.ack_off(), 4);
assert_eq!(aggregate_unacked(&send), data[4..13].to_vec());
// ack [4, 8]
send.ack_and_drop(4, 4);
assert_eq!(send.ack_off(), 13);
assert_eq!(aggregate_unacked(&send).is_empty(), true);
}
#[test]
fn send_buf_spurious_retransmit() {
let mut send = SendBuf::new(100);
assert_eq!(send.data.len(), 0);
let write_data = Bytes::from("Hello, TQUIC!");
let data = write_data.clone();
let first = Bytes::from("Hell");
let second = Bytes::from("o, T");
let third = Bytes::from("QUIC!");
assert_eq!(send.write(write_data, true), Ok(13));
assert_eq!(send.unacked_len, 13);
let mut out_buf = [0; 128];
assert_eq!(send.read(&mut out_buf[..128]), Ok((13, true)));
assert_eq!(send.fin_off, Some(13));
assert_eq!(send.unacked_len, 13);
assert_eq!(send.unsent_off, 13);
assert_eq!(out_buf[..13], data[..13]);
// read nothing because all data is sent and no data need to be retransmitted
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// lost [4, 8), retransmit [4, 8)
send.retransmit(4, 4);
assert_eq!(send.read(&mut out_buf[..128]), Ok((4, false)));
assert_eq!(out_buf[..4], data[4..8]);
// read nothing because all data is sent and no data need to be retransmitted
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// lost [4, 8) and invalid range [8, 21), retransmit [4, 8)
send.retransmit(4, 4);
// invalid retransmit range [8, 21), nothing changed
send.retransmit(8, 13);
assert_eq!(send.read(&mut out_buf[..128]), Ok((4, false)));
assert_eq!(out_buf[..4], data[4..8]);
// read nothing because all data is sent and no data need to be retransmitted
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// lost [0, 4) and [8, 13), retransmit [0, 4) and [8, 13)
send.retransmit(0, 4);
send.retransmit(8, 5);
assert_eq!(send.read(&mut out_buf[..128]), Ok((4, false)));
assert_eq!(out_buf[..4], data[0..4]);
assert_eq!(send.read(&mut out_buf[..128]), Ok((5, true)));
assert_eq!(out_buf[..5], data[8..13]);
// read nothing because all data is sent and no data need to be retransmitted
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// spurious retransmit [4, 8)
send.retransmit(4, 4);
send.ack_and_drop(4, 4);
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// no data be acked continuously == all data is unacked
assert_eq!(aggregate_unacked(&send), data[..13].to_vec());
// spurious retransmit [0, 13)
send.retransmit(0, 13);
// ack [4, 8)
send.ack_and_drop(4, 4);
// no data be acked continuously == all data is unacked
assert_eq!(aggregate_unacked(&send), data[..13].to_vec());
assert_eq!(send.read(&mut out_buf[..128]), Ok((4, false)));
assert_eq!(out_buf[..4], data[0..4]);
assert_eq!(send.read(&mut out_buf[..128]), Ok((5, true)));
assert_eq!(out_buf[..5], data[8..13]);
// ack [0, 4)
send.ack_and_drop(0, 4);
assert_eq!(aggregate_unacked(&send), data[8..13].to_vec());
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
// spurious retransmit [0, 10), effective retransmit [8, 10)
send.retransmit(0, 10);
assert_eq!(aggregate_unacked(&send), data[8..13].to_vec());
assert_eq!(send.read(&mut out_buf[..128]), Ok((2, false)));
assert_eq!(out_buf[..2], data[8..10]);
// ack [8, 13)
send.ack_and_drop(8, 5);
assert_eq!(aggregate_unacked(&send).is_empty(), true);
assert_eq!(send.read(&mut out_buf[..128]), Ok((0, true)));
}
#[test]
fn send_buf_retransmit_over_acked_ranges() {
let mut send = SendBuf::new(100);
assert_eq!(send.data.len(), 0);
let write_data = Bytes::from("Everything over QUIC!");
let data = write_data.clone();
// Write [0, 21)
assert_eq!(send.write(write_data, true), Ok(21));
let mut out_buf = [0; 128];
// Sent [0, 20)
assert_eq!(send.read(&mut out_buf[..20]), Ok((20, false)));
assert_eq!(out_buf[..20], data[..20]);
// Ack [0, 5) + [10, 20), ack_off: 5
send.ack_and_drop(0, 5);
send.ack_and_drop(10, 10);
assert_eq!(send.ack_off(), 5);
// Lost [5, 15)
send.retransmit(5, 10);
// Ack [5, 11), ack_off: 20
send.ack_and_drop(5, 6);
assert_eq!(send.ack_off(), 20);
assert_eq!(send.read(&mut out_buf[..20]), Ok((1, true)));
assert_eq!(out_buf[..1], data[20..21]);
}
#[test]
fn send_buf_retransmit_cross_acked_ranges() {
let mut send = SendBuf::new(100);
assert_eq!(send.data.len(), 0);
let write_data = Bytes::from("Everything over QUIC!");
let data = write_data.clone();
// Write [0, 21)
assert_eq!(send.write(write_data, true), Ok(21));
let mut out_buf = [0; 128];
// Sent [0, 20)
assert_eq!(send.read(&mut out_buf[..20]), Ok((20, false)));
assert_eq!(out_buf[..20], data[..20]);
// Ack [5, 10) + [15, 18), ack_off: 0
send.ack_and_drop(5, 5);
send.ack_and_drop(15, 3);
assert_eq!(send.acked.peek_min(), Some(5..10));
assert_eq!(send.ack_off(), 0);
// 1. The retransmit range is before the first acked range.
// Lost [0, 1)
send.retransmit(0, 1);
assert_eq!(send.retransmits.peek_min(), Some(0..1));
// Lost [1, 5)
send.retransmit(1, 4);
assert_eq!(send.retransmits.pop_min(), Some(0..5));
// 2. The second half of the retransmit range is covered by the acked range.
// Lost [1, 6)
send.retransmit(1, 5);
assert_eq!(send.retransmits.peek_min(), Some(1..5));
// Lost [1, 10)
send.retransmit(1, 9);
assert_eq!(send.retransmits.pop_min(), Some(1..5));
// 3. The retransmit range crosses the first acked range.
// Lost [1, 11)
send.retransmit(1, 10);
assert_eq!(send.retransmits.pop_min(), Some(1..5));
assert_eq!(send.retransmits.pop_min(), Some(10..11));
// Lost [1, 15)
send.retransmit(1, 14);
assert_eq!(send.retransmits.pop_min(), Some(1..5));
assert_eq!(send.retransmits.pop_min(), Some(10..15));
// 4. The retransmit range crosses the first acked range and intersects with the second acked range.
// Lost [1, 16)
send.retransmit(1, 15);
assert_eq!(send.retransmits.pop_min(), Some(1..5));
assert_eq!(send.retransmits.pop_min(), Some(10..15));
assert!(send.retransmits.is_empty());
// Lost [1, 18)
send.retransmit(1, 17);
assert_eq!(send.retransmits.pop_min(), Some(1..5));
assert_eq!(send.retransmits.pop_min(), Some(10..15));
assert!(send.retransmits.is_empty());
// 5. The retransmit range crosses multiple acked ranges.
// Lost [1, 19)
send.retransmit(1, 18);
assert_eq!(send.retransmits.pop_min(), Some(1..5));
assert_eq!(send.retransmits.pop_min(), Some(10..15));
assert_eq!(send.retransmits.pop_min(), Some(18..19));
assert!(send.retransmits.is_empty());
// 6. The retransmit range is covered by the acked range fully.
// Lost [5, 10)
send.retransmit(5, 5);
assert!(send.retransmits.is_empty());
// 7. The first half of the retransmit range is covered by the acked range.
// Lost [6, 12)
send.retransmit(6, 6);
assert_eq!(send.retransmits.pop_min(), Some(10..12));
// Lost [9, 12)
send.retransmit(9, 3);
assert_eq!(send.retransmits.pop_min(), Some(10..12));
// 8. The retransmit range interacts with multiple acked ranges.
// Lost [6, 17)
send.retransmit(6, 11);
assert_eq!(send.retransmits.pop_min(), Some(10..15));
assert!(send.retransmits.is_empty());
// 9. The first half of the retransmit range is covered by the first acked range,
// and crosses the second acked range.
// Lost [6, 20)
send.retransmit(6, 14);
assert_eq!(send.retransmits.pop_min(), Some(10..15));
assert_eq!(send.retransmits.pop_min(), Some(18..20));
assert!(send.retransmits.is_empty());
// 10. The retransmit range is after the second acked range.
send.retransmit(18, 1);
assert_eq!(send.retransmits.pop_min(), Some(18..19));
send.retransmit(18, 2);
assert_eq!(send.retransmits.pop_min(), Some(18..20));
assert_eq!(send.read(&mut out_buf[..20]), Ok((1, true)));
assert_eq!(out_buf[..1], data[20..21]);
}
#[test]
fn send_buf_poll_transmit() {
let mut send = SendBuf::new(100);
assert_eq!(
send.write(Bytes::from_static(b"EverythingOverQUIC"), true),
Ok(18)
);
let mut buf = [0; 18];
assert_eq!(send.read(&mut buf[0..14]), Ok((14, false)));
// Lost [0, 5) and [10, 14)
send.retransmit(0, 5);
send.retransmit(10, 4);
// retransmit [0, 5)
assert_eq!(send.poll_transmit(5), Range { start: 0, end: 5 });
// retransmit [10, 12)
assert_eq!(send.poll_transmit(2), Range { start: 10, end: 12 });
// retransmit [12, 14)
assert_eq!(send.poll_transmit(2), Range { start: 12, end: 14 });
// send [14, 18)
assert_eq!(send.poll_transmit(2), Range { start: 14, end: 16 });
// send [16, 18)
assert_eq!(send.poll_transmit(10), Range { start: 16, end: 18 });
}
// Test SendBuf::shutdown
#[test]
fn stream_shutdown_write() {
// After shutdown, stream send-side is complete and no data can be written.
// 1. Shutdown directly after creation
let mut send = SendBuf::new(100);
assert_eq!(send.shutdown(), Ok((0, 0)));
assert_eq!(send.is_complete(), true);
// 2. After writing data, shutdown the stream prematurely before any data is sent.
let mut send = SendBuf::new(100);
assert_eq!(
send.write(Bytes::from_static(b"EverythingOverQUIC"), true),
Ok(18)
);
assert_eq!(send.shutdown(), Ok((0, 18)));
assert_eq!(send.is_complete(), true);
// 3. After writing data, shutdown the stream after part of data is sent.
let mut send = SendBuf::new(100);
assert_eq!(
send.write(Bytes::from_static(b"EverythingOverQUIC"), true),
Ok(18)
);
assert_eq!(send.read(&mut [0; 10]), Ok((10, false)));
assert_eq!(send.shutdown(), Ok((10, 8)));
assert_eq!(send.is_complete(), true);
// 4. After writing data, shutdown the stream after all data is sent.
let mut send = SendBuf::new(100);
assert_eq!(
send.write(Bytes::from_static(b"EverythingOverQUIC"), true),
Ok(18)
);
assert_eq!(send.read(&mut [0; 18]), Ok((18, true)));
assert_eq!(send.shutdown(), Ok((18, 0)));
assert_eq!(send.is_complete(), true);
// 5. After writing data, shutdown the stream after all data is sent and acked.
let mut send = SendBuf::new(100);
assert_eq!(
send.write(Bytes::from_static(b"EverythingOverQUIC"), true),
Ok(18)
);
assert_eq!(send.read(&mut [0; 18]), Ok((18, true)));
send.ack_and_drop(0, 18);
assert_eq!(send.shutdown(), Ok((18, 0)));
assert_eq!(send.is_complete(), true);
// 6. Shutdown duplicate.
assert_eq!(send.shutdown(), Err(Error::Done));
}
// Aggregates all unacked data in the send buffer.
fn aggregate_unacked(buf: &SendBuf) -> Vec<u8> {
let mut data = Vec::new();
for b in buf.data.iter() {
data.extend_from_slice(&b[..]);
}
data
}
#[test]
fn rangebuf_split_off() {
// Create a RangeBuf with 21 Bytes data.
let x = b"Everything over QUIC!";
let mut buf = RangeBuf::new(Bytes::copy_from_slice(x), 10, true);
// Check the RangeBuf metadata.
assert_eq!(buf.off, 10);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 21);
// Check the RangeBuf methods.
assert_eq!(buf.off(), 10);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 21);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
// Check the RangeBuf slice.
assert_eq!(buf[..], x[..]);
// Consuming 5 Bytes from buf.
// After Consuming, buf == "thing over QUIC!"
buf.consume(5);
assert_eq!(buf.off, 15);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 16);
assert_eq!(buf.off(), 15);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 16);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
assert_eq!(buf[..], x[5..]);
// Split buffer, new buf contains [at, len), old buf contains [0, at).
// After splitting, buf == "thing", new_buf == " over QUIC!".
let mut new_buf = buf.split_off(5);
assert_eq!(buf.off, 15);
assert_eq!(buf.fin, false);
assert_eq!(buf.data.len(), 5);
assert_eq!(buf.off(), 15);
assert_eq!(buf.fin(), false);
assert_eq!(buf.len(), 5);
assert_eq!(buf.max_off(), 20);
assert_eq!(buf.is_empty(), false);
assert_eq!(buf[..], x[5..10]);
assert_eq!(new_buf.off, 20);
assert_eq!(new_buf.fin, true);
assert_eq!(new_buf.data.len(), 11);
assert_eq!(new_buf.off(), 20);
assert_eq!(new_buf.fin(), true);
assert_eq!(new_buf.len(), 11);
assert_eq!(new_buf.max_off(), 31);
assert_eq!(new_buf.is_empty(), false);
assert_eq!(new_buf[..], x[10..]);
// Consuming 5 Bytes data from new_buf.
// After Consuming, new_buf == " QUIC!".
new_buf.consume(5);
assert_eq!(new_buf.off, 25);
assert_eq!(new_buf.fin, true);
assert_eq!(new_buf.data.len(), 6);
assert_eq!(new_buf.off(), 25);
assert_eq!(new_buf.fin(), true);
assert_eq!(new_buf.len(), 6);
assert_eq!(new_buf.max_off(), 31);
assert_eq!(new_buf.is_empty(), false);
assert_eq!(new_buf[..], x[15..]);
// Split buffer again, new buf contains [at, len), old buf contains [0, at).
// After splitting, new_buf == " ", new_new_buf == "QUIC!".
let mut new_new_buf = new_buf.split_off(1);
assert_eq!(new_buf.off, 25);
assert_eq!(new_buf.fin, false);
assert_eq!(new_buf.data.len(), 1);
assert_eq!(new_buf.off(), 25);
assert_eq!(new_buf.fin(), false);
assert_eq!(new_buf.len(), 1);
assert_eq!(new_buf.max_off(), 26);
assert_eq!(new_buf.is_empty(), false);
assert_eq!(new_buf[..], x[15..16]);
assert_eq!(new_new_buf.off, 26);
assert_eq!(new_new_buf.fin, true);
assert_eq!(new_new_buf.data.len(), 5);
assert_eq!(new_new_buf.off(), 26);
assert_eq!(new_new_buf.fin(), true);
assert_eq!(new_new_buf.len(), 5);
assert_eq!(new_new_buf.max_off(), 31);
assert_eq!(new_new_buf.is_empty(), false);
assert_eq!(new_new_buf[..], x[16..]);
// Consuming 5 Bytes data from new_new_buf.
// After Consuming, new_new_buf == "".
new_new_buf.consume(5);
assert_eq!(new_new_buf.off, 31);
assert_eq!(new_new_buf.fin, true);
assert_eq!(new_new_buf.data.len(), 0);
assert_eq!(new_new_buf.off(), 31);
assert_eq!(new_new_buf.fin(), true);
assert_eq!(new_new_buf.len(), 0);
assert_eq!(new_new_buf.max_off(), 31);
assert_eq!(new_new_buf.is_empty(), true);
assert_eq!(&new_new_buf[..], b"");
}
#[test]
fn rangebuf_split_to() {
// Create a RangeBuf with 21 Bytes data.
let x = b"Everything over QUIC!";
let mut buf = RangeBuf::new(Bytes::copy_from_slice(x), 10, true);
// Check the RangeBuf metadata.
assert_eq!(buf.off, 10);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 21);
// Check the RangeBuf methods.
assert_eq!(buf.off(), 10);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 21);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
// Check the RangeBuf slice.
assert_eq!(buf[..], x[..]);
// Advance 5 Bytes from buf.
// After advancing, buf == "thing over QUIC!"
buf.advance(5);
assert_eq!(buf.off, 15);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 16);
assert_eq!(buf.off(), 15);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 16);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
assert_eq!(buf[..], x[5..]);
// Split buffer, old buf contains [at, len), new buf contains [0, at).
// After splitting, new_buf == "thing", buf == " over QUIC!".
let new_buf = buf.split_to(5);
assert_eq!(new_buf.off, 15);
assert_eq!(new_buf.fin, false);
assert_eq!(new_buf.data.len(), 5);
assert_eq!(new_buf.off(), 15);
assert_eq!(new_buf.fin(), false);
assert_eq!(new_buf.len(), 5);
assert_eq!(new_buf.max_off(), 20);
assert_eq!(new_buf.is_empty(), false);
assert_eq!(new_buf[..], x[5..10]);
assert_eq!(buf.off, 20);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 11);
assert_eq!(buf.off(), 20);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 11);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
assert_eq!(buf[..], x[10..]);
// Advance 5 Bytes data from buf.
// After advancing, buf == " QUIC!".
buf.advance(5);
assert_eq!(buf.off, 25);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 6);
assert_eq!(buf.off(), 25);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 6);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
assert_eq!(buf[..], x[15..]);
// Split buffer again, old buf contains [at, len), new buf contains [0, at).
// After splitting, new_buf == " ", buf == "QUIC!".
let new_buf = buf.split_to(1);
assert_eq!(new_buf.off, 25);
assert_eq!(new_buf.fin, false);
assert_eq!(new_buf.data.len(), 1);
assert_eq!(new_buf.off(), 25);
assert_eq!(new_buf.fin(), false);
assert_eq!(new_buf.len(), 1);
assert_eq!(new_buf.max_off(), 26);
assert_eq!(new_buf.is_empty(), false);
assert_eq!(new_buf[..], x[15..16]);
assert_eq!(buf.off, 26);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 5);
assert_eq!(buf.off(), 26);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 5);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), false);
assert_eq!(buf[..], x[16..]);
// Advance 5 Bytes data from buf.
// After advancing, buf == "".
buf.advance(5);
assert_eq!(buf.off, 31);
assert_eq!(buf.fin, true);
assert_eq!(buf.data.len(), 0);
assert_eq!(buf.off(), 31);
assert_eq!(buf.fin(), true);
assert_eq!(buf.len(), 0);
assert_eq!(buf.max_off(), 31);
assert_eq!(buf.is_empty(), true);
assert_eq!(&buf[..], b"");
}
}