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
|
<pre>Internet Engineering Task Force (IETF) M. Ko
Request for Comments: 7145
Obsoletes: <a href="./rfc5046">5046</a> A. Nezhinsky
Category: Standards Track Mellanox
ISSN: 2070-1721 April 2014
<span class="h1">Internet Small Computer System Interface (iSCSI) Extensions</span>
<span class="h1">for the Remote Direct Memory Access (RDMA) Specification</span>
Abstract
Internet Small Computer System Interface (iSCSI) Extensions for
Remote Direct Memory Access (RDMA) provides the RDMA data transfer
capability to iSCSI by layering iSCSI on top of an RDMA-Capable
Protocol. An RDMA-Capable Protocol provides RDMA Read and Write
services, which enable data to be transferred directly into SCSI I/O
Buffers without intermediate data copies. This document describes
the extensions to the iSCSI protocol to support RDMA services as
provided by an RDMA-Capable Protocol.
This document obsoletes <a href="./rfc5046">RFC 5046</a>.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7145">http://www.rfc-editor.org/info/rfc7145</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Copyright Notice
Copyright (c) 2014 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-5">5</a>
<a href="#section-1.1">1.1</a>. Motivation .................................................<a href="#page-5">5</a>
<a href="#section-1.2">1.2</a>. iSCSI/iSER Layering ........................................<a href="#page-6">6</a>
<a href="#section-1.3">1.3</a>. Architectural Goals ........................................<a href="#page-7">7</a>
<a href="#section-1.4">1.4</a>. Protocol Overview ..........................................<a href="#page-7">7</a>
<a href="#section-1.5">1.5</a>. RDMA Services and iSER .....................................<a href="#page-9">9</a>
<a href="#section-1.5.1">1.5.1</a>. STag ................................................<a href="#page-9">9</a>
<a href="#section-1.5.2">1.5.2</a>. Send ...............................................<a href="#page-10">10</a>
<a href="#section-1.5.3">1.5.3</a>. RDMA Write .........................................<a href="#page-11">11</a>
<a href="#section-1.5.4">1.5.4</a>. RDMA Read ..........................................<a href="#page-11">11</a>
<a href="#section-1.6">1.6</a>. SCSI Read Overview ........................................<a href="#page-11">11</a>
<a href="#section-1.7">1.7</a>. SCSI Write Overview .......................................<a href="#page-12">12</a>
<a href="#section-2">2</a>. Definitions and Acronyms .......................................<a href="#page-12">12</a>
<a href="#section-2.1">2.1</a>. Definitions ...............................................<a href="#page-12">12</a>
<a href="#section-2.2">2.2</a>. Acronyms ..................................................<a href="#page-18">18</a>
<a href="#section-2.3">2.3</a>. Conventions ...............................................<a href="#page-20">20</a>
<a href="#section-3">3</a>. Upper-Layer Interface Requirements .............................<a href="#page-20">20</a>
<a href="#section-3.1">3.1</a>. Operational Primitives offered by iSER ....................<a href="#page-21">21</a>
<a href="#section-3.1.1">3.1.1</a>. Send_Control .......................................<a href="#page-21">21</a>
<a href="#section-3.1.2">3.1.2</a>. Put_Data ...........................................<a href="#page-21">21</a>
<a href="#section-3.1.3">3.1.3</a>. Get_Data ...........................................<a href="#page-22">22</a>
<a href="#section-3.1.4">3.1.4</a>. Allocate_Connection_Resources ......................<a href="#page-22">22</a>
<a href="#section-3.1.5">3.1.5</a>. Deallocate_Connection_Resources ....................<a href="#page-23">23</a>
<a href="#section-3.1.6">3.1.6</a>. Enable_Datamover ...................................<a href="#page-23">23</a>
<a href="#section-3.1.7">3.1.7</a>. Connection_Terminate ...............................<a href="#page-23">23</a>
<a href="#section-3.1.8">3.1.8</a>. Notice_Key_Values ..................................<a href="#page-24">24</a>
<a href="#section-3.1.9">3.1.9</a>. Deallocate_Task_Resources ..........................<a href="#page-24">24</a>
<a href="#section-3.2">3.2</a>. Operational Primitives Used by iSER .......................<a href="#page-24">24</a>
<a href="#section-3.2.1">3.2.1</a>. Control_Notify .....................................<a href="#page-25">25</a>
<a href="#section-3.2.2">3.2.2</a>. Data_Completion_Notify .............................<a href="#page-25">25</a>
<a href="#section-3.2.3">3.2.3</a>. Data_ACK_Notify ....................................<a href="#page-25">25</a>
<span class="grey">Ko & Nezhinsky Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<a href="#section-3.2.4">3.2.4</a>. Connection_Terminate_Notify ........................<a href="#page-26">26</a>
<a href="#section-3.3">3.3</a>. iSCSI Protocol Usage Requirements .........................<a href="#page-26">26</a>
<a href="#section-4">4</a>. Lower-Layer Interface Requirements .............................<a href="#page-27">27</a>
<a href="#section-4.1">4.1</a>. Interactions with the RCaP Layer ..........................<a href="#page-27">27</a>
<a href="#section-4.2">4.2</a>. Interactions with the Transport Layer .....................<a href="#page-28">28</a>
<a href="#section-5">5</a>. Connection Setup and Termination ...............................<a href="#page-28">28</a>
<a href="#section-5.1">5.1</a>. iSCSI/iSER Connection Setup ...............................<a href="#page-28">28</a>
<a href="#section-5.1.1">5.1.1</a>. Initiator Behavior .................................<a href="#page-30">30</a>
<a href="#section-5.1.2">5.1.2</a>. Target Behavior ....................................<a href="#page-31">31</a>
<a href="#section-5.1.3">5.1.3</a>. iSER Hello Exchange ................................<a href="#page-33">33</a>
<a href="#section-5.2">5.2</a>. iSCSI/iSER Connection Termination .........................<a href="#page-36">36</a>
<a href="#section-5.2.1">5.2.1</a>. Normal Connection Termination at the Initiator .....<a href="#page-36">36</a>
<a href="#section-5.2.2">5.2.2</a>. Normal Connection Termination at the Target ........<a href="#page-36">36</a>
<a href="#section-5.2.3">5.2.3</a>. Termination without Logout Request/Response PDUs ...<a href="#page-37">37</a>
<a href="#section-6">6</a>. Login/Text Operational Keys ....................................<a href="#page-38">38</a>
<a href="#section-6.1">6.1</a>. HeaderDigest and DataDigest ...............................<a href="#page-38">38</a>
<a href="#section-6.2">6.2</a>. MaxRecvDataSegmentLength ..................................<a href="#page-38">38</a>
<a href="#section-6.3">6.3</a>. RDMAExtensions ............................................<a href="#page-39">39</a>
<a href="#section-6.4">6.4</a>. TargetRecvDataSegmentLength ...............................<a href="#page-40">40</a>
<a href="#section-6.5">6.5</a>. InitiatorRecvDataSegmentLength ............................<a href="#page-41">41</a>
<a href="#section-6.6">6.6</a>. OFMarker and IFMarker .....................................<a href="#page-41">41</a>
<a href="#section-6.7">6.7</a>. MaxOutstandingUnexpectedPDUs ..............................<a href="#page-41">41</a>
<a href="#section-6.8">6.8</a>. MaxAHSLength ..............................................<a href="#page-42">42</a>
<a href="#section-6.9">6.9</a>. TaggedBufferForSolicitedDataOnly ..........................<a href="#page-43">43</a>
<a href="#section-6.10">6.10</a>. iSERHelloRequired ........................................<a href="#page-43">43</a>
<a href="#section-7">7</a>. iSCSI PDU Considerations .......................................<a href="#page-44">44</a>
<a href="#section-7.1">7.1</a>. iSCSI Data-Type PDU .......................................<a href="#page-44">44</a>
<a href="#section-7.2">7.2</a>. iSCSI Control-Type PDU ....................................<a href="#page-45">45</a>
<a href="#section-7.3">7.3</a>. iSCSI PDUs ................................................<a href="#page-45">45</a>
<a href="#section-7.3.1">7.3.1</a>. SCSI Command .......................................<a href="#page-45">45</a>
<a href="#section-7.3.2">7.3.2</a>. SCSI Response ......................................<a href="#page-47">47</a>
<a href="#section-7.3.3">7.3.3</a>. Task Management Function Request/Response ..........<a href="#page-49">49</a>
<a href="#section-7.3.4">7.3.4</a>. SCSI Data-out ......................................<a href="#page-50">50</a>
<a href="#section-7.3.5">7.3.5</a>. SCSI Data-in .......................................<a href="#page-51">51</a>
<a href="#section-7.3.6">7.3.6</a>. Ready To Transfer (R2T) ............................<a href="#page-53">53</a>
<a href="#section-7.3.7">7.3.7</a>. Asynchronous Message ...............................<a href="#page-55">55</a>
<a href="#section-7.3.8">7.3.8</a>. Text Request and Text Response .....................<a href="#page-55">55</a>
<a href="#section-7.3.9">7.3.9</a>. Login Request and Login Response ...................<a href="#page-55">55</a>
<a href="#section-7.3.10">7.3.10</a>. Logout Request and Logout Response ................<a href="#page-56">56</a>
<a href="#section-7.3.11">7.3.11</a>. SNACK Request .....................................<a href="#page-56">56</a>
<a href="#section-7.3.12">7.3.12</a>. Reject ............................................<a href="#page-56">56</a>
<a href="#section-7.3.13">7.3.13</a>. NOP-Out and NOP-In ................................<a href="#page-57">57</a>
<a href="#section-8">8</a>. Flow Control and STag Management ...............................<a href="#page-57">57</a>
<a href="#section-8.1">8.1</a>. Flow Control for RDMA Send Messages .......................<a href="#page-57">57</a>
8.1.1. Flow Control for Control-Type PDUs from the
Initiator ..........................................<a href="#page-58">58</a>
8.1.2. Flow Control for Control-Type PDUs from the
Target .............................................<a href="#page-60">60</a>
<span class="grey">Ko & Nezhinsky Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<a href="#section-8.2">8.2</a>. Flow Control for RDMA Read Resources ......................<a href="#page-61">61</a>
<a href="#section-8.3">8.3</a>. STag Management ...........................................<a href="#page-62">62</a>
<a href="#section-8.3.1">8.3.1</a>. Allocation of STags ................................<a href="#page-62">62</a>
<a href="#section-8.3.2">8.3.2</a>. Invalidation of STags ..............................<a href="#page-62">62</a>
<a href="#section-9">9</a>. iSER Control and Data Transfer .................................<a href="#page-64">64</a>
<a href="#section-9.1">9.1</a>. iSER Header Format ........................................<a href="#page-64">64</a>
<a href="#section-9.2">9.2</a>. iSER Header Format for iSCSI Control-Type PDU .............<a href="#page-65">65</a>
<a href="#section-9.3">9.3</a>. iSER Header Format for iSER Hello Message .................<a href="#page-67">67</a>
<a href="#section-9.4">9.4</a>. iSER Header Format for iSER HelloReply Message ............<a href="#page-68">68</a>
<a href="#section-9.5">9.5</a>. SCSI Data Transfer Operations .............................<a href="#page-69">69</a>
<a href="#section-9.5.1">9.5.1</a>. SCSI Write Operation ...............................<a href="#page-69">69</a>
<a href="#section-9.5.2">9.5.2</a>. SCSI Read Operation ................................<a href="#page-70">70</a>
<a href="#section-9.5.3">9.5.3</a>. Bidirectional Operation ............................<a href="#page-70">70</a>
<a href="#section-10">10</a>. iSER Error Handling and Recovery ..............................<a href="#page-71">71</a>
<a href="#section-10.1">10.1</a>. Error Handling ...........................................<a href="#page-71">71</a>
<a href="#section-10.1.1">10.1.1</a>. Errors in the Transport Layer .....................<a href="#page-71">71</a>
<a href="#section-10.1.2">10.1.2</a>. Errors in the RCaP Layer ..........................<a href="#page-72">72</a>
<a href="#section-10.1.3">10.1.3</a>. Errors in the iSER Layer ..........................<a href="#page-73">73</a>
<a href="#section-10.1.4">10.1.4</a>. Errors in the iSCSI Layer .........................<a href="#page-75">75</a>
<a href="#section-10.2">10.2</a>. Error Recovery ...........................................<a href="#page-76">76</a>
<a href="#section-10.2.1">10.2.1</a>. PDU Recovery ......................................<a href="#page-77">77</a>
<a href="#section-10.2.2">10.2.2</a>. Connection Recovery ...............................<a href="#page-77">77</a>
<a href="#section-11">11</a>. Security Considerations .......................................<a href="#page-78">78</a>
<a href="#section-12">12</a>. IANA Considerations ...........................................<a href="#page-79">79</a>
<a href="#section-13">13</a>. References ....................................................<a href="#page-79">79</a>
<a href="#section-13.1">13.1</a>. Normative References .....................................<a href="#page-79">79</a>
<a href="#section-13.2">13.2</a>. Informative References ...................................<a href="#page-80">80</a>
<a href="#appendix-A">Appendix A</a>. Summary of Changes from <a href="./rfc5046">RFC 5046</a> ......................<a href="#page-81">81</a>
<a href="#appendix-B">Appendix B</a>. Message Format for iSER ...............................<a href="#page-83">83</a>
<a href="#appendix-B.1">B.1</a>. iWARP Message Format for iSER Hello Message ..................<a href="#page-83">83</a>
<a href="#appendix-B.2">B.2</a>. iWARP Message Format for iSER HelloReply Message .............<a href="#page-84">84</a>
<a href="#appendix-B.3">B.3</a>. iSER Header Format for SCSI Read Command PDU .................<a href="#page-85">85</a>
<a href="#appendix-B.4">B.4</a>. iSER Header Format for SCSI Write Command PDU ................<a href="#page-86">86</a>
<a href="#appendix-B.5">B.5</a>. iSER Header Format for SCSI Response PDU .....................<a href="#page-87">87</a>
<a href="#appendix-C">Appendix C</a>. Architectural discussion of iSER over InfiniBand ......<a href="#page-88">88</a>
<a href="#appendix-C.1">C.1</a>. Host Side of iSCSI and iSER Connections in InfiniBand ........<a href="#page-88">88</a>
<a href="#appendix-C.2">C.2</a>. Storage Side of iSCSI and iSER Mixed Network Environment .....<a href="#page-89">89</a>
<a href="#appendix-C.3">C.3</a>. Discovery Processes for an InfiniBand Host ...................<a href="#page-89">89</a>
<a href="#appendix-C.4">C.4</a>. IBTA Connection Specifications ...............................<a href="#page-90">90</a>
<a href="#appendix-D">Appendix D</a>. Acknowledgments .......................................<a href="#page-90">90</a>
<span class="grey">Ko & Nezhinsky Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Table of Figures
Figure 1. Example of iSCSI/iSER Layering in Full Feature Phase .....<a href="#page-6">6</a>
Figure 2. iSER Header Format ......................................<a href="#page-64">64</a>
Figure 3. iSER Header Format for iSCSI Control-Type PDU ...........<a href="#page-65">65</a>
Figure 4. iSER Header Format for iSER Hello Message ...............<a href="#page-67">67</a>
Figure 5. iSER Header Format for iSER HelloReply Message ..........<a href="#page-68">68</a>
Figure 6. SendSE Message Containing an iSER Hello Message .........<a href="#page-83">83</a>
Figure 7. SendSE Message Containing an iSER HelloReply Message ....<a href="#page-84">84</a>
Figure 8. iSER Header Format for SCSI Read Command PDU ............<a href="#page-85">85</a>
Figure 9. iSER Header Format for SCSI Write Command PDU ...........<a href="#page-86">86</a>
Figure 10. iSER Header Format for SCSI Response PDU ...............<a href="#page-87">87</a>
Figure 11. iSCSI and iSER on IB ...................................<a href="#page-88">88</a>
Figure 12. Storage Controller with TCP, iWARP, and IB Connections .89
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Motivation</span>
The iSCSI protocol ([<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>]) is a mapping of the SCSI Architecture
Model (see [<a href="#ref-SAM5" title=""SCSI Architecture Model - 5 (SAM-5)"">SAM5</a>] and [<a href="#ref-iSCSI-SAM" title=""Internet Small Computer System Interface (iSCSI) SCSI Features Update"">iSCSI-SAM</a>]) over the TCP protocol. SCSI
commands are carried by iSCSI requests, and SCSI responses and status
are carried by iSCSI responses. Other iSCSI protocol exchanges and
SCSI Data are also transported in iSCSI PDUs.
Out-of-order TCP segments in the Traditional iSCSI model have to be
stored and reassembled before the iSCSI protocol layer within an end
node can place the data in the iSCSI buffers. This reassembly is
required because not every TCP segment is likely to contain an iSCSI
header to enable its placement and TCP itself does not have a built-
in mechanism for signaling ULP (Upper Level Protocol) message
boundaries to aid placement of out-of-order segments. This TCP
reassembly at high network speeds is quite counterproductive for the
following reasons: wasted memory bandwidth in data copying, need for
reassembly memory, wasted CPU cycles in data copying, and the general
store-and-forward latency from an application perspective.
The generic term RDMA-Capable Protocol (RCaP) is used to refer to
protocol stacks that provide the Remote Direct Memory Access (RDMA)
functionality, such as iWARP and InfiniBand.
With the availability of RDMA-Capable Controllers within a host
system, it is appropriate for iSCSI to be able to exploit the direct
data placement function of the RDMA-Capable Controller like other
applications.
<span class="grey">Ko & Nezhinsky Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
iSCSI Extensions for RDMA (iSER) is designed precisely to take
advantage of generic RDMA technologies -- iSER's goal is to permit
iSCSI to employ direct data placement and RDMA capabilities using a
generic RDMA-Capable Controller. In summary, the iSCSI/iSER protocol
stack is designed to enable scaling to high speeds by relying on a
generic data placement process and RDMA technologies and products
that enable direct data placement of both in-order and out-of-order
data.
This document describes iSER as a protocol extension to iSCSI, both
for convenience of description and also because it is true in a very
strict protocol sense. However, it is to be noted that iSER is in
reality extending the connectivity of the iSCSI protocol defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>], and the name "iSER" reflects this reality.
When the iSCSI protocol as defined in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] (i.e., without the iSER
enhancements) is intended in the rest of the document, the term
"Traditional iSCSI" is used to make the intention clear.
This document obsoletes <a href="./rfc5046">RFC 5046</a>. See <a href="#appendix-A">Appendix A</a> for the list of
changes from <a href="./rfc5046">RFC 5046</a>.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. iSCSI/iSER Layering</span>
iSCSI Extensions for RDMA (iSER) is layered between the iSCSI layer
and the RCaP layer.
+--------------------------------------------------------+
| SCSI |
+--------------------------------------------------------+
| iSCSI |
DI -> +--------------------------------------------------------+
| iSER |
+-------+--------------------------+---------------------+
| RDMAP | | |
+-------+ InfiniBand | |
| DDP | Reliable | Other |
+-------+ Connected | RDMA |
| MPA | Transport | Capable |
+-------+ Service | Protocol |
| TCP | | |
+-------+--------------------------+---------------------+
| IP | InfiniBand Network Layer | Other Network Layer |
+-------+--------------------------+---------------------+
Figure 1: Example of iSCSI/iSER Layering in Full Feature Phase
<span class="grey">Ko & Nezhinsky Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Figure 1 shows an example of the relationship between SCSI, iSCSI,
iSER, and the different RCaP layers. For TCP, the RCaP is iWARP.
For InfiniBand, the RCaP is the Reliable Connected Transport Service.
Note that the iSCSI layer as described here supports the RDMA
Extensions as used in iSER.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Architectural Goals</span>
This section summarizes the architectural goals that guided the
design of iSER.
1. Provide an RDMA data transfer model for iSCSI that enables direct
in-order or out-of-order data placement of SCSI data into pre-
allocated SCSI buffers while maintaining in-order data delivery.
2. Do not require any major changes to the SCSI Architecture Model
[<a href="#ref-SAM5" title=""SCSI Architecture Model - 5 (SAM-5)"">SAM5</a>] and SCSI command set standards.
3. Utilize the existing iSCSI infrastructure (sometimes referred to
as "iSCSI ecosystem") including but not limited to MIB,
bootstrapping, negotiation, naming and discovery, and security.
4. Enable a session to operate in the Traditional iSCSI data
transfer mode if iSER is not supported by either the initiator or
the target. (Do not require iSCSI Full Feature Phase
interoperability between an end node operating in Traditional
iSCSI mode and an end node operating in iSER-assisted mode.)
5. Allow initiator and target implementations to utilize generic
RDMA-Capable Controllers such as RNICs or to implement iSCSI and
iSER in software. (Do not require iSCSI- or iSER-specific
assists in the RCaP implementation or RDMA-Capable Controller.)
6. Implement a lightweight Datamover protocol for iSCSI with minimal
state maintenance.
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Protocol Overview</span>
Consistent with the architectural goals stated in <a href="#section-1.3">Section 1.3</a>, the
iSER protocol does not require changes in the iSCSI ecosystem or any
related SCSI specifications. The iSER protocol defines the mapping
of iSCSI PDUs to RCaP Messages in such a way that it is entirely
feasible to realize iSCSI/iSER implementations that are based on
generic RDMA-Capable Controllers. The iSER protocol layer requires
minimal state maintenance to assist a connection during the iSCSI
Full Feature Phase, besides being oblivious to the notion of an iSCSI
session. The crucial protocol aspects of iSER may be summarized as
follows:
<span class="grey">Ko & Nezhinsky Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
1. iSER-assisted mode is negotiated during the iSCSI login in the
leading connection for each session, and an entire iSCSI session
can only operate in one mode (i.e., a connection in a session
cannot operate in iSER-assisted mode if a different connection of
the same session is already in Full Feature Phase in the
Traditional iSCSI mode).
2. Once in iSER-assisted mode, all iSCSI interactions on that
connection use RCaP Messages.
3. A Send Message is used for carrying an iSCSI control-type PDU
preceded by an iSER header. See <a href="#section-7.2">Section 7.2</a> for more details on
iSCSI control-type PDUs.
4. RDMA Write, RDMA Read Request, and RDMA Read Response Messages
are used for carrying control and all data information associated
with the iSCSI data-type PDUs (i.e., SCSI Data-In PDUs and R2T
PDUs). iSER does not use SCSI Data-Out PDUs for solicited data,
and SCSI Data-Out PDUs for unsolicited data are not treated as
iSCSI data-type PDUs by iSER because RDMA is not used. See
<a href="#section-7.1">Section 7.1</a> for more details on iSCSI data-type PDUs.
5. The target drives all data transfer (with the exception of iSCSI
unsolicited data) for SCSI writes and SCSI reads, by issuing RDMA
Read Requests and RDMA Writes, respectively.
6. RCaP is responsible for ensuring data integrity. (For example,
iWARP includes a CRC-enhanced framing layer called MPA on top of
TCP; and for InfiniBand, the CRCs are included in the Reliable
Connection mode). For this reason, iSCSI header and data digests
are negotiated to "None" for iSCSI/iSER sessions.
7. The iSCSI error recovery hierarchy defined in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] is fully
supported by iSER. (However, see <a href="#section-7.3.11">Section 7.3.11</a> on the handling
of SNACK Request PDUs.)
8. iSER requires no changes to iSCSI security and text mode
negotiation mechanisms.
Note that Traditional iSCSI implementations may have to be adapted to
employ iSER. It is expected that the adaptation when required is
likely to be centered around the upper-layer interface requirements
of iSER (<a href="#section-3">Section 3</a>).
<span class="grey">Ko & Nezhinsky Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-1.5" href="#section-1.5">1.5</a>. RDMA Services and iSER</span>
iSER is designed to work with software and/or hardware protocol
stacks providing the protocol services defined in RCaP documents such
as [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>], [<a href="#ref-IB">IB</a>], etc. The following subsections describe the key
protocol elements of RCaP services on which iSER relies.
<span class="h4"><a class="selflink" id="section-1.5.1" href="#section-1.5.1">1.5.1</a>. STag</span>
An STag is the identifier of an I/O Buffer unique to an RDMA-Capable
Controller that the iSER layer Advertises to the remote iSCSI/iSER
node in order to complete a SCSI I/O.
In iSER, Advertisement is the act of informing the target by the
initiator that an I/O Buffer is available at the initiator for RDMA
Read or RDMA Write access by the target. The initiator Advertises
the I/O Buffer by including the STag and the Base Offset in the
header of an iSER Message containing the SCSI Command PDU to the
target. The buffer length is as specified in the SCSI Command PDU.
The iSER layer at the initiator Advertises the STag and the Base
Offset for the I/O Buffer of each SCSI I/O to the iSER layer at the
target in the iSER header of a Send Message containing the SCSI
Command PDU, unless the I/O can be completely satisfied by
unsolicited data alone. The SendSE Message should be used if
supported by the RCaP layer (e.g., iWARP).
The iSER layer at the target provides the STag for the I/O Buffer
that is the Data Sink of an RDMA Read Operation (<a href="#section-1.5.4">Section 1.5.4</a>) to
the RCaP layer on the initiator node -- i.e., this is completely
transparent to the iSER layer at the initiator.
The iSER layer at the initiator SHOULD invalidate the Advertised STag
upon a normal completion of the associated task. The Send with
Invalidate Message, if supported by the RCaP layer (e.g., iWARP), can
be used for automatic invalidation when it is used to carry the SCSI
Response PDU. There are two exceptions to this automatic
invalidation -- bidirectional commands and abnormal completion of a
command. The iSER layer at the initiator SHOULD explicitly
invalidate the STag in these two cases. That iSER layer MUST check
that STag invalidation has occurred whenever receipt of a Send with
Invalidate message is the expected means of causing an STag to be
invalidated, and it MUST perform the STag invalidation if the STag
has not already been invalidated (e.g., because a Send Message was
used instead of Send with Invalidate).
<span class="grey">Ko & Nezhinsky Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
If the Advertised STag is not invalidated as recommended in the
foregoing paragraph (e.g., in order to cache the STag for future
reuse), the I/O Buffer remains exposed to the network for access by
the RCaP. Such an I/O Buffer is capable of being read or written by
the RCaP outside the scope of the iSCSI operation for which it was
originally established; this fact has both robustness and security
considerations. The robustness considerations are that the system
containing the iSER initiator may react poorly to an unexpected
modification of its memory. For the security considerations, see
<a href="#section-11">Section 11</a>.
<span class="h4"><a class="selflink" id="section-1.5.2" href="#section-1.5.2">1.5.2</a>. Send</span>
Send is the RDMA Operation that is not addressed to an Advertised
buffer and uses Untagged buffers as the message is received.
The iSER layer at the initiator uses the Send Operation to transmit
any iSCSI control-type PDU to the target. As an example, the
initiator uses Send Operations to transfer iSER Messages containing
SCSI Command PDUs to the iSER layer at the target.
An iSER layer at the target uses the Send Operation to transmit any
iSCSI control-type PDU to the initiator. As an example, the target
uses Send Operations to transfer iSER Messages containing SCSI
Response PDUs to the iSER layer at the initiator.
For interoperability, iSER implementations SHOULD accept and
correctly process SendSE and SendInvSE messages. However, SendSE and
SendInvSE messages are to be regarded as optimizations or
enhancements to the basic Send Message, and their support may vary by
RCaP protocol and specific implementation. In general, these
messages SHOULD NOT be used, unless the RCaP requires support for
them in all implementations. If these messages are used, the
implementation SHOULD be capable of reverting to use of Send in order
to work with a receiver that does not support these messages.
Attempted use of these messages with a peer that does not support
them may result in a fatal error that closes the RCaP connection.
For example, these messages SHOULD NOT be used with the InfiniBand
RCaP because InfiniBand does not require support for them in all
cases. New iSER implementations SHOULD use Send (and not SendSE or
SendInvSE) unless there are compelling reasons for doing otherwise.
Similarly, iSER implementations SHOULD NOT rely on events triggered
by SendSE and SendInvSE, as these messages may not be used.
<span class="grey">Ko & Nezhinsky Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-1.5.3" href="#section-1.5.3">1.5.3</a>. RDMA Write</span>
RDMA Write is the RDMA Operation that is used to place data into an
Advertised buffer at the Data Sink. The Data Source addresses the
Message using an STag and a Tagged Offset that are valid on the Data
Sink.
The iSER layer at the target uses the RDMA Write Operation to
transfer the contents of a local I/O Buffer to an Advertised I/O
Buffer at the initiator. The iSER layer at the target uses the RDMA
Write to transfer the whole data or part of the data required to
complete a SCSI Read command.
The iSER layer at the initiator does not employ RDMA Writes.
<span class="h4"><a class="selflink" id="section-1.5.4" href="#section-1.5.4">1.5.4</a>. RDMA Read</span>
RDMA Read is the RDMA Operation that is used to retrieve data from an
Advertised buffer at the Data Source. The sender of the RDMA Read
Request addresses the Message using an STag and a Tagged Offset that
are valid on the Data Source in addition to providing a valid local
STag and Tagged Offset that identify the Data Sink.
The iSER layer at the target uses the RDMA Read Operation to transfer
the contents of an Advertised I/O Buffer at the initiator to a local
I/O Buffer at the target. The iSER layer at the target uses the RDMA
Read to fetch whole or part of the data required to complete a SCSI
Write Command.
The iSER layer at the initiator does not employ RDMA Reads.
<span class="h3"><a class="selflink" id="section-1.6" href="#section-1.6">1.6</a>. SCSI Read Overview</span>
The iSER layer at the initiator receives the SCSI Command PDU from
the iSCSI layer. The iSER layer at the initiator generates an STag
for the I/O Buffer of the SCSI Read and Advertises the buffer by
including the STag and the Base Offset as part of the iSER header for
the PDU. The iSER Message is transferred to the target using a Send
Message. The SendSE Message should be used if supported by the RCaP
layer (e.g., iWARP).
The iSER layer at the target uses one or more RDMA Writes to transfer
the data required to complete the SCSI Read.
The iSER layer at the target uses a Send Message to transfer the SCSI
Response PDU back to the iSER layer at the initiator. The iSER layer
at the initiator invalidates the STag and notifies the iSCSI layer of
<span class="grey">Ko & Nezhinsky Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
the availability of the SCSI Response PDU. The Send with Invalidate
Message, if supported by the RCaP layer (e.g., iWARP), can be used
for automatic invalidation of the STag.
<span class="h3"><a class="selflink" id="section-1.7" href="#section-1.7">1.7</a>. SCSI Write Overview</span>
The iSER layer at the initiator receives the SCSI Command PDU from
the iSCSI layer. If solicited data transfer is involved, the iSER
layer at the initiator generates an STag for the I/O Buffer of the
SCSI Write and Advertises the buffer by including the STag and the
Base Offset as part of the iSER header for the PDU. The iSER Message
is transferred to the target using a Send Message. The SendSE
Message should be used if supported by the RCaP layer (e.g., iWARP).
The iSER layer at the initiator may optionally send one or more non-
immediate unsolicited data PDUs to the target using Send Messages.
If solicited data transfer is involved, the iSER layer at the target
uses one or more RDMA Reads to transfer the data required to complete
the SCSI Write.
The iSER layer at the target uses a Send Message to transfer the SCSI
Response PDU back to the iSER layer at the initiator. The iSER layer
at the initiator invalidates the STag and notifies the iSCSI layer of
the availability of the SCSI Response PDU. The Send with Invalidate
Message, if supported by the RCaP layer (e.g., iWARP), can be used
for automatic invalidation of the STag.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Definitions and Acronyms</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Definitions</span>
Advertisement (Advertised, Advertise, Advertisements, Advertises) --
The act of informing a remote iSER (iSCSI Extensions for RDMA)
layer that a local node's buffer is available to it. A node makes
a buffer available for incoming RDMA Read Request Message or
incoming RDMA Write Message access by informing the remote iSER
layer of the Tagged Buffer identifiers (STag, Base Offset, and
buffer length). Note that this Advertisement of Tagged Buffer
information is the responsibility of the iSER layer on either end
and is not defined by the RDMA-Capable Protocol. A typical method
would be for the iSER layer to embed the Tagged Buffer's STag,
Base Offset, and buffer length in a message destined for the
remote iSER layer.
Base Offset - A value when added to the Buffer Offset forms the
Tagged Offset.
<span class="grey">Ko & Nezhinsky Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Completion (Completed, Complete, Completes) - Completion is defined
as the process by which the RDMA-Capable Protocol layer informs
the iSER layer that a particular RDMA Operation has performed all
functions specified for the RDMA Operation.
Connection - A connection is a logical bidirectional communication
channel between the initiator and the target, e.g., a TCP
connection. Communication between the initiator and the target
occurs over one or more connections. The connections carry
control messages, SCSI commands, parameters, and data within iSCSI
Protocol Data Units (iSCSI PDUs).
Connection Handle - An information element that identifies the
particular iSCSI connection and is unique for a given iSCSI layer
and the underlying iSER layer. Every invocation of an Operational
Primitive is qualified with the Connection Handle.
Data Sink - The peer receiving a data payload. Note that the Data
Sink can be required to both send and receive RCaP (RDMA-Capable
Protocol) Messages to transfer a data payload.
Data Source - The peer sending a data payload. Note that the Data
Source can be required to both send and receive RCaP Messages to
transfer a data payload.
Datamover Interface (DI) - The interface between the iSCSI layer and
the Datamover Layer as described in [<a href="#ref-DA" title=""DA: Datamover Architecture for the Internet Small Computer System Interface (iSCSI)"">DA</a>].
Datamover Layer - A layer that is directly below the iSCSI layer and
above the underlying transport layers. This layer exposes and
uses a set of transport-independent Operational Primitives for the
communication between the iSCSI layer and itself. The Datamover
layer, operating in conjunction with the transport layers, moves
the control and data information on the iSCSI connection. In this
specification, the iSER layer is the Datamover layer.
Datamover Protocol - A Datamover protocol is the wire protocol that
is defined to realize the Datamover-layer functionality. In this
specification, the iSER protocol is the Datamover protocol.
Inbound RDMA Read Queue Depth (IRD) - The maximum number of incoming
outstanding RDMA Read Requests that the RDMA-Capable Controller
can handle on a particular RCaP Stream at the Data Source. For
some RDMA-Capable Protocol layers, the term "IRD" may be known by
a different name. For example, for InfiniBand, the equivalent to
IRD is the Responder Resources.
<span class="grey">Ko & Nezhinsky Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
I/O Buffer - A buffer that is used in a SCSI Read or Write operation
so SCSI data may be sent from or received into that buffer.
iSCSI - The iSCSI protocol as defined in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] is a mapping of the
SCSI Architecture Model of SAM-5 over TCP.
iSCSI control-type PDU - Any iSCSI PDU that is not an iSCSI data-
type PDU and also not a SCSI Data-Out PDU carrying solicited data
is defined as an iSCSI control-type PDU. Specifically, it is to
be noted that SCSI Data-Out PDUs for unsolicited data are defined
as iSCSI control-type PDUs.
iSCSI data-type PDU - An iSCSI data-type PDU is defined as an iSCSI
PDU that causes data transfer via RDMA operations at the iSER
layer, transparent to the remote iSCSI layer, to take place
between the peer iSCSI nodes on a Full Feature Phase iSCSI
connection. An iSCSI data-type PDU, when requested for
transmission by the sender iSCSI layer, results in the associated
data transfer without the participation of the remote iSCSI layer,
i.e., the PDU itself is not delivered as-is to the remote iSCSI
layer. The following iSCSI PDUs constitute the set of iSCSI data-
type PDUs -- SCSI Data-In PDU and R2T PDU.
iSCSI Layer - A layer in the protocol stack implementation within an
end node that implements the iSCSI protocol and interfaces with
the iSER layer via the Datamover Interface.
iSCSI PDU (iSCSI Protocol Data Unit) - The iSCSI layer at the
initiator and the iSCSI layer at the target divide their
communications into messages. The term "iSCSI Protocol Data Unit"
(iSCSI PDU) is used for these messages.
iSCSI/iSER Connection - An iSER-assisted iSCSI connection. An iSCSI
connection that is not iSER assisted always maps onto a TCP
connection at the transport level. But an iSER-assisted iSCSI
connection may not have an underlying TCP connection. For some
RCaP implementations (e.g., iWARP), an iSER-assisted iSCSI
connection has an underlying TCP connection. For other RCaP
implementations (e.g., InfiniBand), there is no underlying TCP
connection. (In the specific example of InfiniBand [<a href="#ref-IB">IB</a>], an iSER-
assisted iSCSI connection is directly mapped onto the InfiniBand
Reliable Connection-based (RC) channel.)
iSCSI/iSER Session - An iSER-assisted iSCSI session. All connections
of an iSCSI/iSER session are iSCSI/iSER connections.
iSER - iSCSI Extensions for RDMA, the protocol defined in this
document.
<span class="grey">Ko & Nezhinsky Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
iSER-assisted - A term generally used to describe the operation of
iSCSI when the iSER functionality is also enabled below the iSCSI
layer for the specific iSCSI/iSER connection in question.
iSER-IRD - This variable represents the maximum number of incoming
outstanding RDMA Read Requests that the iSER layer at the
initiator grants on a particular RCaP Stream.
iSER-ORD - This variable represents the maximum number of outstanding
RDMA Read Requests that the iSER layer can initiate on a
particular RCaP Stream. This variable is maintained only by the
iSER layer at the target.
iSER Layer - The layer that implements the iSCSI Extensions for RDMA
(iSER) protocol.
iWARP - A suite of wire protocols comprising of [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>], [<a href="#ref-DDP" title=""Direct Data Placement over Reliable Transports"">DDP</a>], and
[<a href="#ref-MPA" title=""Marker PDU Aligned Framing for TCP Specification"">MPA</a>] when layered above [<a href="#ref-TCP" title=""Transmission Control Protocol"">TCP</a>]. [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>] and [<a href="#ref-DDP" title=""Direct Data Placement over Reliable Transports"">DDP</a>] may be layered
above SCTP or other transport protocols.
Local Mapping - A task state record maintained by the iSER layer that
associates the Initiator Task Tag to the Local STag(s). The
specifics of the record structure are implementation dependent.
Local Peer - The implementation of the RDMA-Capable Protocol on the
local end of the connection. Used to refer to the local entity
when describing protocol exchanges or other interactions between
two nodes.
Node - A computing device attached to one or more links of a network.
A node in this context does not refer to a specific application or
protocol instantiation running on the computer. A node may
consist of one or more RDMA-Capable Controllers installed in a
host computer.
Operational Primitive - An Operational Primitive is an abstract
functional interface procedure that requests another layer to
perform a specific action on the requestor's behalf or notifies
the other layer of some event. The Datamover Interface between an
iSCSI layer and a Datamover layer within an iSCSI end node uses a
set of Operational Primitives to define the functional interface
between the two layers. Note that not every invocation of an
Operational Primitive may elicit a response from the requested
layer. A full discussion of the Operational Primitive types and
request-response semantics available to iSCSI and iSER can be
found in [<a href="#ref-DA" title=""DA: Datamover Architecture for the Internet Small Computer System Interface (iSCSI)"">DA</a>].
<span class="grey">Ko & Nezhinsky Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Outbound RDMA Read Queue Depth (ORD) - The maximum number of
outstanding RDMA Read Requests that the RDMA-Capable Controller
can initiate on a particular RCaP Stream at the Data Sink. For
some RDMA-Capable Protocol layer, the term "ORD" may be known by a
different name. For example, for InfiniBand, the equivalent to
ORD is the Initiator Depth.
Phase Collapse - Refers to the optimization in iSCSI where the SCSI
status is transferred along with the final SCSI Data-In PDU from a
target. See Section 4.2 in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
RCaP Message - One or more packets of the network layer that
constitute a single RDMA operation or a part of an RDMA Read
Operation of the RDMA-Capable Protocol. For iWARP, an RCaP
Message is known as an RDMAP Message.
RCaP Stream - A single bidirectional association between the peer
RDMA-Capable Protocol layers on two nodes over a single transport-
level stream. For iWARP, an RCaP Stream is known as an RDMAP
Stream, and the association is created following a successful
Login Phase during which iSER support is negotiated.
RDMA-Capable Protocol (RCaP) - The protocol or protocol suite that
provides a reliable RDMA transport functionality, e.g., iWARP,
InfiniBand, etc.
RDMA-Capable Controller - A network I/O adapter or embedded
controller with RDMA functionality. For example, for iWARP, this
could be an RNIC, and for InfiniBand, this could be a HCA (Host
Channel Adapter) or TCA (Target Channel Adapter).
RDMA-enabled Network Interface Controller (RNIC) - A network I/O
adapter or embedded controller with iWARP functionality.
RDMA Operation - A sequence of RCaP Messages, including control
messages, to transfer data from a Data Source to a Data Sink. The
following RDMA Operations are defined -- RDMA Write Operation,
RDMA Read Operation, and Send Operation.
RDMA Protocol (RDMAP) - A wire protocol that supports RDMA Operations
to transfer ULP data between a Local Peer and the Remote Peer as
described in [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>].
RDMA Read Operation - An RDMA Operation used by the Data Sink to
transfer the contents of a Data Source buffer from the Remote Peer
to a Data Sink buffer at the Local Peer. An RDMA Read operation
consists of a single RDMA Read Request Message and a single RDMA
Read Response Message.
<span class="grey">Ko & Nezhinsky Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
RDMA Read Request - An RCaP Message used by the Data Sink to request
the Data Source to transfer the contents of a buffer. The RDMA
Read Request Message describes both the Data Source and the Data
Sink buffers.
RDMA Read Response - An RCaP Message used by the Data Source to
transfer the contents of a buffer to the Data Sink, in response to
an RDMA Read Request. The RDMA Read Response Message only
describes the Data Sink buffer.
RDMA Write Operation - An RDMA Operation used by the Data Source to
transfer the contents of a Data Source buffer from the Local Peer
to a Data Sink buffer at the Remote Peer. The RDMA Write Message
only describes the Data Sink buffer.
Remote Direct Memory Access (RDMA) - A method of accessing memory on
a remote system in which the local system specifies the remote
location of the data to be transferred. Employing an RDMA-
Capable Controller in the remote system allows the access to take
place without interrupting the processing of the CPU(s) on the
system.
Remote Mapping - A task state record maintained by the iSER layer
that associates the Initiator Task Tag to the Advertised STag(s)
and the Base Offset(s). The specifics of the record structure are
implementation dependent.
Remote Peer - The implementation of the RDMA-Capable Protocol on the
opposite end of the connection. Used to refer to the remote
entity when describing protocol exchanges or other interactions
between two nodes.
SCSI Layer - This layer builds/receives SCSI CDBs (Command Descriptor
Blocks) and sends/receives them with the remaining command execute
[<a href="#ref-SAM5" title=""SCSI Architecture Model - 5 (SAM-5)"">SAM5</a>] parameters to/from the iSCSI layer.
Send - An RDMA Operation that transfers the content of a buffer from
the Local Peer to an untagged buffer at the Remote Peer.
SendInvSE Message - A Send with Solicited Event and Invalidate
Message.
SendSE Message - A Send with Solicited Event Message.
Sequence Number (SN) - DataSN for a SCSI Data-In PDU and R2TSN for an
R2T PDU. The semantics for both types of sequence numbers are as
defined in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
<span class="grey">Ko & Nezhinsky Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Session, iSCSI Session - The group of connections that link an
initiator SCSI port with a target SCSI port form an iSCSI session
(equivalent to a SCSI Initiator-Target (I-T) nexus). Connections
can be added to and removed from a session even while the I-T
nexus is intact. Across all connections within a session, an
initiator sees one and the same target.
Steering Tag (STag) - An identifier of a Tagged Buffer on a node
(Local or Remote) as defined in [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>] and [<a href="#ref-DDP" title=""Direct Data Placement over Reliable Transports"">DDP</a>]. For other
RDMA-Capable Protocols, the Steering Tag may be known by different
names but will be referred to herein as STags. For example, for
InfiniBand, a Remote STag is known as an R-Key, and a Local STag
is known as an L-Key, and both will be considered STags.
Tagged Buffer - A buffer that is explicitly Advertised to the iSER
layer at the remote node through the exchange of an STag, Base
Offset, and length.
Tagged Offset - The offset within a Tagged Buffer.
Traditional iSCSI - Refers to the iSCSI protocol as defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] (i.e., without the iSER enhancements).
Untagged Buffer - A buffer that is not explicitly Advertised to the
iSER layer at the remode node.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Acronyms</span>
Acronym Definition
--------------------------------------------------------------
AHS Additional Header Segment
BHS Basic Header Segment
CO Connection Only
CRC Cyclic Redundancy Check
DDP Direct Data Placement Protocol
DI Datamover Interface
HCA Host Channel Adapter
IANA Internet Assigned Numbers Authority
<span class="grey">Ko & Nezhinsky Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
IB InfiniBand
IETF Internet Engineering Task Force
I/O Input - Output
IO Initialize Only
IP Internet Protocol
IPoIB IP over InfiniBand
IPsec Internet Protocol Security
iSER iSCSI Extensions for RDMA
ITT Initiator Task Tag
LO Leading Only
MPA Marker PDU Aligned Framing for TCP
NOP No Operation
NSG Next Stage (during the iSCSI Login Phase)
PDU Protocol Data Unit
R2T Ready To Transfer
R2TSN Ready To Transfer Sequence Number
RCaP RDMA-Capable Protocol
RDMA Remote Direct Memory Access
RDMAP Remote Direct Memory Access Protocol
RFC Request For Comments
RNIC RDMA-enabled Network Interface Controller
SAM5 SCSI Architecture Model - 5
SCSI Small Computer System Interface
<span class="grey">Ko & Nezhinsky Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
SNACK Selective Negative Acknowledgment - also
Sequence Number Acknowledgement for data
STag Steering Tag
SW Session Wide
TCA Target Channel Adapter
TCP Transmission Control Protocol
TMF Task Management Function
TTT Target Transfer Tag
ULP Upper Level Protocol
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Conventions</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Upper-Layer Interface Requirements</span>
This section discusses the upper-layer interface requirements in the
form of an abstract model of the required interactions between the
iSCSI layer and the iSER layer. The abstract model used here is
derived from the architectural model described in [<a href="#ref-DA" title=""DA: Datamover Architecture for the Internet Small Computer System Interface (iSCSI)"">DA</a>]. [<a href="#ref-DA" title=""DA: Datamover Architecture for the Internet Small Computer System Interface (iSCSI)"">DA</a>] also
provides a functional overview of the interactions between the iSCSI
layer and the Datamover layer as intended by the Datamover
Architecture.
The interface requirements are specified by Operational Primitives.
An Operational Primitive is an abstract functional interface
procedure between the iSCSI layer and the iSER layer that requests
one layer to perform a specific action on behalf of the other layer
or notifies the other layer of some event. Whenever an Operational
Primitive in invoked, the Connection_Handle qualifier is used to
identify a particular iSCSI connection. For some Operational
Primitives, a Data_Descriptor is used to identify the iSCSI/SCSI data
buffer associated with the requested or completed operation.
The abstract model and the Operational Primitives defined in this
section facilitate the description of the iSER protocol. In the rest
of the iSER specification, the compliance statements related to the
use of these Operational Primitives are only for the purpose of the
<span class="grey">Ko & Nezhinsky Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
required interactions between the iSCSI layer and the iSER layer.
Note that the compliance statements related to the Operational
Primitives in the rest of this specification only mandate functional
equivalence on implementations, but do not put any requirements on
the implementation specifics of the interface between the iSCSI layer
and the iSER layer.
Each Operational Primitive is invoked with a set of qualifiers which
specify the information context for performing the specific action
being requested of the Operational Primitive. While the qualifiers
are required, the method of realizing the qualifiers (e.g., by
passing synchronously with invocation, or by retrieving from task
context, or by retrieving from shared memory, etc.) is implementation
dependent.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Operational Primitives offered by iSER</span>
The iSER protocol layer MUST support the following Operational
Primitives to be used by the iSCSI protocol layer.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Send_Control</span>
Input qualifiers: Connection_Handle, BHS and AHS (if any) of the
iSCSI PDU, PDU-specific qualifiers
Return results: Not specified
This is used by the iSCSI layers at the initiator and the target to
request the outbound transfer of an iSCSI control-type PDU (see
<a href="#section-7.2">Section 7.2</a>). Qualifiers that only apply for a particular control-
type PDU are known as PDU-specific qualifiers, e.g.,
ImmediateDataSize for a SCSI Write command. For details on PDU-
specific qualifiers, see <a href="#section-7.3">Section 7.3</a>. The iSCSI layer can only
invoke the Send_Control Operational Primitive when the connection is
in iSER-assisted mode.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. Put_Data</span>
Input qualifiers: Connection_Handle, content of a SCSI Data-In
PDU header, Data_Descriptor, Notify_Enable
Return results: Not specified
This is used by the iSCSI layer at the target to request the outbound
transfer of data for a SCSI Data-In PDU from the buffer identified by
the Data_Descriptor qualifier. The iSCSI layer can only invoke the
Put_Data Operational Primitive when the connection is in iSER-
assisted mode.
<span class="grey">Ko & Nezhinsky Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
The Notify_Enable qualifier is used to indicate to the iSER layer
whether or not it should generate an eventual local completion
notification to the iSCSI layer. See <a href="#section-3.2.2">Section 3.2.2</a> on
Data_Completion_Notify for details.
<span class="h4"><a class="selflink" id="section-3.1.3" href="#section-3.1.3">3.1.3</a>. Get_Data</span>
Input qualifiers: Connection_Handle, content of an R2T PDU,
Data_Descriptor, Notify_Enable
Return results: Not specified
This is used by the iSCSI layer at the target to request the inbound
transfer of solicited data requested by an R2T PDU into the buffer
identified by the Data_Descriptor qualifier. The iSCSI layer can
only invoke the Get_Data Operational Primitive when the connection is
in iSER-assisted mode.
The Notify_Enable qualifier is used to indicate to the iSER layer
whether or not it should generate the eventual local completion
notification to the iSCSI layer. See <a href="#section-3.2.2">Section 3.2.2</a> on
Data_Completion_Notify for details.
<span class="h4"><a class="selflink" id="section-3.1.4" href="#section-3.1.4">3.1.4</a>. Allocate_Connection_Resources</span>
Input qualifiers: Connection_Handle, Resource_Descriptor
(optional)
Return results: Status
This is used by the iSCSI layers at the initiator and the target to
request the allocation of all connection resources necessary to
support RCaP for an operational iSCSI/iSER connection. The iSCSI
layer may optionally specify the implementation-specific resource
requirements for the iSCSI connection using the Resource_Descriptor
qualifier.
A return result of Status=success means the invocation succeeded, and
a return result of Status=failure means that the invocation failed.
If the invocation is for a Connection_Handle for which an earlier
invocation succeeded, the request will be ignored by the iSER layer
and the result of Status=success will be returned. Only one
Allocate_Connection_Resources Operational Primitive invocation can be
outstanding for a given Connection_Handle at any time.
<span class="grey">Ko & Nezhinsky Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-3.1.5" href="#section-3.1.5">3.1.5</a>. Deallocate_Connection_Resources</span>
Input qualifiers: Connection_Handle
Return results: Not specified
This is used by the iSCSI layers at the initiator and the target to
request the deallocation of all connection resources that were
allocated earlier as a result of a successful invocation of the
Allocate_Connection_Resources Operational Primitive.
<span class="h4"><a class="selflink" id="section-3.1.6" href="#section-3.1.6">3.1.6</a>. Enable_Datamover</span>
Input qualifiers: Connection_Handle,
Transport_Connection_Descriptor, Final Login_Response_PDU
(optional)
Return results: Not specified
This is used by the iSCSI layers at the initiator and the target to
request that iSER-assisted mode be used for the connection. The
Transport_Connection_Descriptor qualifier is used to identify the
specific connection associated with the Connection_Handle. The iSCSI
layer can only invoke the Enable_Datamover Operational Primitive when
there was a corresponding prior resource allocation.
The Final_Login_Response_PDU input qualifier is applicable only for a
target and contains the final Login Response PDU that concludes the
iSCSI Login Phase.
<span class="h4"><a class="selflink" id="section-3.1.7" href="#section-3.1.7">3.1.7</a>. Connection_Terminate</span>
Input qualifiers: Connection_Handle
Return results: Not specified
This is used by the iSCSI layers at the initiator and the target to
request that a specified iSCSI/iSER connection be terminated and all
associated connection and task resources be freed. When this
Operational Primitive invocation returns to the iSCSI layer, the
iSCSI layer may assume full ownership of all iSCSI-level resources,
e.g., I/O Buffers, associated with the connection.
<span class="grey">Ko & Nezhinsky Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-3.1.8" href="#section-3.1.8">3.1.8</a>. Notice_Key_Values</span>
Input qualifiers: Connection_Handle, number of keys, list of Key-
Value pairs
Return results: Not specified
This is used by the iSCSI layers at the initiator and the target to
request the iSER layer to take note of the specified Key-Value pairs
that were negotiated by the iSCSI peers for the connection.
<span class="h4"><a class="selflink" id="section-3.1.9" href="#section-3.1.9">3.1.9</a>. Deallocate_Task_Resources</span>
Input qualifiers: Connection_Handle, ITT
Return results: Not specified
This is used by the iSCSI layers at the initiator and the target to
request the deallocation of all RCaP-specific resources allocated by
the iSER layer for the task identified by the ITT qualifier. The
iSER layer may require a certain number of RCaP-specific resources
associated with the ITT for each new iSCSI task. In the normal
course of execution, these task-level resources in the iSER layer are
assumed to be transparently allocated on each task initiation and
deallocated on the conclusion of each task as appropriate. In
exception scenarios where the task does not conclude with a SCSI
Response PDU, the iSER layer needs to be notified of the individual
task terminations to aid its task-level resource management. This
Operational Primitive is used for this purpose and is not needed when
a SCSI Response PDU normally concludes a task. Note that RCaP-
specific task resources are deallocated by the iSER layer when a SCSI
Response PDU normally concludes a task, even if the SCSI status was
not success.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Operational Primitives Used by iSER</span>
The iSER layer MUST use the following Operational Primitives offered
by the iSCSI protocol layer when the connection is in iSER-assisted
mode.
<span class="grey">Ko & Nezhinsky Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Control_Notify</span>
Input qualifiers: Connection_Handle, an iSCSI control-type PDU
Return results: Not specified
This is used by the iSER layers at the initiator and the target to
notify the iSCSI layer of the availability of an inbound iSCSI
control-type PDU. A PDU is described as "available" to the iSCSI
layer when the iSER layer notifies the iSCSI layer of the reception
of that inbound PDU, along with an implementation-specific indication
as to where the received PDU is.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Data_Completion_Notify</span>
Input qualifiers: Connection_Handle, ITT, SN
Return results: Not specified
This is used by the iSER layer to notify the iSCSI layer of the
completion of the outbound data transfer that was requested by the
iSCSI layer only if the invocation of the Put_Data Operational
Primitive (see <a href="#section-3.1.2">Section 3.1.2</a>) was qualified with Notify_Enable set.
SN refers to the DataSN associated with the SCSI Data-In PDU.
This is used by the iSER layer to notify the iSCSI layer of the
completion of the inbound data transfer that was requested by the
iSCSI layer only if the invocation of the Get_Data Operational
Primitive (see <a href="#section-3.1.3">Section 3.1.3</a>) was qualified with Notify_Enable set.
SN refers to the R2TSN associated with the R2T PDU.
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. Data_ACK_Notify</span>
Input qualifier: Connection_Handle, ITT, DataSN
Return results: Not specified
This is used by the iSER layer at the target to notify the iSCSI
layer of the arrival of the data acknowledgement (as defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>]) requested earlier by the iSCSI layer for the outbound data
transfer via an invocation of the Put_Data Operational Primitive
where the A-bit in the SCSI Data-In PDU is set to one. See <a href="#section-7.3.5">Section</a>
<a href="#section-7.3.5">7.3.5</a>. DataSN refers to the expected DataSN of the next SCSI Data-In
PDU that immediately follows the SCSI Data-In PDU with the A-bit set
to which this notification corresponds, with semantics as defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
<span class="grey">Ko & Nezhinsky Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-3.2.4" href="#section-3.2.4">3.2.4</a>. Connection_Terminate_Notify</span>
Input qualifiers: Connection_Handle
Return results: Not specified
This is used by the iSER layers at the initiator and the target to
notify the iSCSI layer of the unsolicited termination or failure of
an iSCSI/iSER connection. The iSER layer MUST deallocate the
connection and task resources associated with the terminated
connection before the invocation of this Operational Primitive. Note
that the Connection_Terminate_Notify Operational Primitive is not
invoked when the termination of the connection was earlier requested
by the local iSCSI layer.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. iSCSI Protocol Usage Requirements</span>
To operate in iSER-assisted mode, the iSCSI layers at both the
initiator and the target MUST negotiate the RDMAExtensions key (see
<a href="#section-6.3">Section 6.3</a>) to "Yes" on the leading connection. If the
RDMAExtensions key is not negotiated to "Yes", then iSER-assisted
mode MUST NOT be used. If the RDMAExtensons key is negotiated to
"Yes", but the invocation of the Allocate_Connection_Resources
Operational Primitive to the iSER layer fails, the iSCSI layer MUST
fail the iSCSI Login process or terminate the connection as
appropriate. See <a href="#section-10.1.3.1">Section 10.1.3.1</a> for details.
If the RDMAExtensions key is negotiated to "Yes", the iSCSI layer
MUST satisfy the following protocol usage requirements from the iSER
protocol:
1. The iSCSI layer at the initiator MUST set ExpDataSN to zero in
Task Management Function Requests for Task Allegiance
Reassignment for read/bidirectional commands, so as to cause the
target to send all unacknowledged read data.
2. The iSCSI layer at the target MUST always return the SCSI status
in a separate SCSI Response PDU for read commands, i.e., there
MUST NOT be a "phase collapse" in concluding a SCSI Read Command.
3. The iSCSI layers at both the initiator and the target MUST
support the keys as defined in <a href="#section-6">Section 6</a> on Login/Text
Operational Keys. If used as specified, these keys MUST NOT be
answered with NotUnderstood, and the semantics as defined MUST be
followed for each iSER-assisted connection.
4. The iSCSI layer at the initiator MUST NOT issue SNACKs for PDUs.
<span class="grey">Ko & Nezhinsky Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Lower-Layer Interface Requirements</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Interactions with the RCaP Layer</span>
The iSER protocol layer is layered on top of an RCaP layer (see
Figure 1) and the following are the key features that are assumed to
be supported by any RCaP layer:
* The RCaP layer supports all basic RDMA operations, including the
RDMA Write Operation, RDMA Read Operation, and Send Operation.
* The RCaP layer provides reliable, in-order message delivery and
direct data placement.
* When the iSER layer initiates an RDMA Read Operation following an
RDMA Write Operation on one RCaP Stream, the RDMA Read Response
Message processing on the remote node will be started only after
the preceding RDMA Write Message payload is placed in the memory
of the remote node.
* The RCaP layer encapsulates a single iSER Message into a single
RCaP Message on the Data Source side. The RCaP layer decapsulates
the iSER Message before delivering it to the iSER layer on the
Data Sink side.
* For an RCaP layer that supports the Send with Invalidate Message
(e.g., iWARP), when the iSER layer provides the STag to be
remotely invalidated to the RCaP layer for a Send with Invalidate
Message, the RCaP layer uses this STag as the STag to be
invalidated in the Send with Invalidate Message.
* The RCaP layer uses the STag and Tagged Offset provided by the
iSER layer for the RDMA Write and RDMA Read Request Messages.
* When the RCaP layer delivers the content of an RDMA Send Message
to the iSER layer, the RCaP layer provides the length of the RDMA
Send Message. This ensures that the iSER layer does not have to
carry a length field in the iSER header.
* When the RCaP layer delivers the Send Message to the iSER layer,
it notifies the iSER layer with the mechanism provided on that
interface.
* For an RCaP layer that supports the Send with Invalidate Message
(e.g., iWARP), when the RCaP layer delivers a Send with Invalidate
Message to the iSER layer, it passes the value of the STag that
was invalidated.
<span class="grey">Ko & Nezhinsky Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
* The RCaP layer propagates all status and error indications to the
iSER layer.
* For a transport layer that operates in byte stream mode such as
TCP, the RCaP implementation supports the enabling of the RDMA
mode after connection establishment and the exchange of Login
parameters in byte stream mode. For a transport layer that
provides message delivery capability such as [<a href="#ref-IB">IB</a>], the RCaP
implementation supports the direct use of the messaging capability
by the iSCSI layer for the Login Phase after connection
establishment and before enabling iSER-assisted mode. (In the
specific example of InfiniBand [<a href="#ref-IB">IB</a>], the iSCSI layer uses IB
messages to transfer iSCSI PDUs for the Login Phase after
connection establishment and before enabling iSER-assisted mode.)
* Whenever the iSER layer terminates the RCaP Stream, the RCaP layer
terminates the associated connection.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Interactions with the Transport Layer</span>
After the iSER connection is established, the RCaP layer and the
underlying transport layer are responsible for maintaining the
connection and reporting to the iSER layer any connection failures.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Connection Setup and Termination</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. iSCSI/iSER Connection Setup</span>
During connection setup, the iSCSI layer at the initiator is
responsible for establishing a connection with the target. After the
connection is established, the iSCSI layers at the initiator and the
target enter the Login Phase using the same rules as outlined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>]. The connection transitions into the iSCSI Full Feature
Phase in iSER-assisted mode following a successful login negotiation
between the initiator and the target in which iSER-assisted mode is
negotiated and the connection resources necessary to support RCaP
have been allocated at both the initiator and the target. The same
connection MUST be used for both the iSCSI Login Phase and the
subsequent iSER-assisted Full Feature Phase.
For a transport layer that operates in byte stream mode such as TCP,
the RCaP implementation supports the enabling of the RDMA mode after
connection establishment and the exchange of Login parameters in byte
stream mode. For a transport layer that provides message delivery
capability such as [<a href="#ref-IB">IB</a>], the RCaP implementation supports the use of
the messaging capability by the iSCSI layer directly for the Login
Phase after connection establishment before enabling iSER-assisted
mode.
<span class="grey">Ko & Nezhinsky Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
iSER-assisted mode MUST NOT be enabled unless it is negotiated on the
leading connection during the LoginOperationalNegotiation stage of
the iSCSI Login Phase. iSER-assisted mode is negotiated using the
RDMAExtensions=<boolean-value> key. Both the initiator and the
target MUST exchange the RDMAExtensions key with the value set to
"Yes" to enable iSER-assisted mode. If both the initiator and the
target fail to negotiate the RDMAExtensions key set to "Yes", then
the connection MUST continue with the login semantics as defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>]. If the RDMAExtensions key is not negotiated to Yes, then
for some RCaP implementation (such as [<a href="#ref-IB">IB</a>]), the existing connection
may need to be torn down and a new connection may need to be
established in TCP-capable mode. (For InfiniBand, this will require
a connection like [<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>].)
iSER-assisted mode is defined for a Normal session only, and the
RDMAExtensions key MUST NOT be negotiated for a Discovery session.
Discovery sessions are always conducted using the transport layer as
described in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
An iSER-enabled node is not required to initiate the RDMAExtensions
key exchange if its preference is for the Traditional iSCSI mode.
The RDMAExtensions key, if offered, MUST be sent in the first
available Login Response or Login Request PDU in the
LoginOperationalNegotiation stage. This is due to the fact that the
value of some Login parameters might depend on whether or not iSER-
assisted mode is enabled.
iSER-assisted mode is a session-wide attribute. If both the
initiator and the target negotiated RDMAExtensions="Yes" on the
leading connection of a session, then all subsequent connections of
the same session MUST enable iSER-assisted mode without having to
exchange RDMAExtensions keys during the iSCSI Login Phase.
Conversely, if both the initiator and the target failed to negotiate
RDMAExtensions to "Yes" on the leading connection of a session, then
the RDMAExtensions key MUST NOT be negotiated further on any
additional subsequent connection of the session.
When the RDMAExtensions key is negotiated to "Yes", the HeaderDigest
and the DataDigest keys MUST be negotiated to "None" on all
iSCSI/iSER connections participating in that iSCSI session. This is
because, for an iSCSI/iSER connection, RCaP is responsible for
providing error detection that is at least as good as a 32-bit CRC
for all iSER Messages. Furthermore, all SCSI Read data are sent
using RDMA Write Messages instead of the SCSI Data-In PDUs, and all
solicited SCSI Write data are sent using RDMA Read Response Messages
instead of the SCSI Data-Out PDUs. HeaderDigest and DataDigest that
apply to iSCSI PDUs would not be appropriate for RDMA Read and RDMA
Write operations used with iSER.
<span class="grey">Ko & Nezhinsky Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>. Initiator Behavior</span>
If the outcome of the iSCSI negotiation is to enable iSER-assisted
mode, then on the initiator side, prior to sending the Login Request
with the T (Transit) bit set to one and the NSG (Next Stage) field
set to FullFeaturePhase, the iSCSI layer SHOULD request the iSER
layer to allocate the connection resources necessary to support RCaP
by invoking the Allocate_Connection_Resources Operational Primitive.
The connection resources required are defined by the implementation
and are outside the scope of this specification. The iSCSI layer may
invoke the Notice_Key_Values Operational Primitive before invoking
the Allocate_Connection_Resources Operational Primitive to request
the iSER layer to take note of the negotiated values of the iSCSI
keys for the connection. The specific keys to be passed in as input
qualifiers are implementation dependent. These may include, but are
not limited to, MaxOutstandingR2T and ErrorRecoveryLevel.
Among the connection resources allocated at the initiator is the
Inbound RDMA Read Queue Depth (IRD). As described in <a href="#section-9.5.1">Section 9.5.1</a>,
R2Ts are transformed by the target into RDMA Read operations. IRD
limits the maximum number of simultaneously incoming outstanding RDMA
Read Requests per an RCaP Stream from the target to the initiator.
The required value of IRD is outside the scope of the iSER
specification. The iSER layer at the initiator MUST set IRD to 1 or
higher if R2Ts are to be used in the connection. However, the iSER
layer at the initiator MAY set IRD to zero based on implementation
configuration; setting IRD to zero indicates that no R2Ts will be
used on that connection. Initially, the iSER-IRD value at the
initiator SHOULD be set to the IRD value at the initiator and MUST
NOT be more than the IRD value.
On the other hand, the Outbound RDMA Read Queue Depth (ORD) MAY be
set to zero since the iSER layer at the initiator does not issue RDMA
Read Requests to the target.
Failure to allocate the requested connection resources locally
results in a login failure, and its handling is described in <a href="#section-10.1.3.1">Section</a>
<a href="#section-10.1.3.1">10.1.3.1</a>.
The iSER layer MUST return a success status to the iSCSI layer in
response to the Allocate_Connection_Resources Operational Primitive.
<span class="grey">Ko & Nezhinsky Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
After the target returns the Login Response with the T bit set to one
and the NSG field set to FullFeaturePhase, and a Status-Class of 0x00
(Success), the iSCSI layer MUST invoke the Enable_Datamover
Operational Primitive with the following qualifiers. (See <a href="#section-10.1.4.6">Section</a>
<a href="#section-10.1.4.6">10.1.4.6</a> for the case when the Status-Class is not Success.)
a. Connection_Handle that identifies the iSCSI connection.
b. Transport_Connection_Descriptor that identifies the specific
transport connection associated with the Connection_Handle.
The iSER layer MUST send the iSER Hello Message as the first iSER
Message only if iSERHelloRequired is negotiated to "Yes". See
<a href="#section-5.1.3">Section 5.1.3</a> on iSER Hello Exchange.
If the iSCSI layer on the initiator side allocates the connection
resources to support RCaP only after it receives the final Login
Response PDU from the target, then it may not be able to handle the
number of unexpected iSCSI control-type PDUs (as declared by the
MaxOutstandingUnexpectedPDUs key from the initiator) that can be sent
by the target before the buffer resources are allocated at the
initiator side. In this case, the iSERHelloRequired key SHOULD be
negotiated to "Yes" so that the initiator can allocate the connection
resources before sending the iSER Hello Message. See <a href="#section-5.1.3">Section 5.1.3</a>
for more details.
<span class="h4"><a class="selflink" id="section-5.1.2" href="#section-5.1.2">5.1.2</a>. Target Behavior</span>
If the outcome of the iSCSI negotiation is to enable iSER-assisted
mode, then on the target side, prior to sending the Login Response
with the T (Transit) bit set to one and the NSG (Next Stage) field
set to FullFeaturePhase, the iSCSI layer MUST request the iSER layer
to allocate the resources necessary to support RCaP by invoking the
Allocate_Connection_Resources Operational Primitive. The connection
resources required are defined by implementation and are outside the
scope of this specification. Optionally, the iSCSI layer may invoke
the Notice_Key_Values Operational Primitive before invoking the
Allocate_Connection_Resources Operational Primitive to request the
iSER layer to take note of the negotiated values of the iSCSI keys
for the connection. The specific keys to be passed in as input
qualifiers are implementation dependent. These may include, but not
limited to, MaxOutstandingR2T and ErrorRecoveryLevel.
Premature allocation of RCaP connection resources can expose an iSER
target to a resource exhaustion attack on those resources via
multiple iSER connections that progress only to the point at which
the implementation allocates the RCaP connection resources. The
countermeasure for this attack is initiator authentication; the iSCSI
<span class="grey">Ko & Nezhinsky Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
layer MUST NOT request the iSER layer to allocate the connection
resources necessary to support RCaP until the iSCSI layer is
sufficiently far along in the iSCSI Login Phase that it is reasonably
certain that the peer side is not an attacker. In particular, if the
Login Phase includes a SecurityNegotiation stage, the iSCSI layer
MUST defer the connection resource allocation (i.e., invoking the
Allocate_Connection_Resources Operational Primitive) to the
LoginOperationalNegotiation stage ([<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>]) so that the resource
allocation occurs after the authentication phase is completed.
Among the connection resources allocated at the target is the
Outbound RDMA Read Queue Depth (ORD). As described in <a href="#section-9.5.1">Section 9.5.1</a>,
R2Ts are transformed by the target into RDMA Read operations. The
ORD limits the maximum number of simultaneously outstanding RDMA Read
Requests per RCaP Stream from the target to the initiator.
Initially, the iSER-ORD value at the target SHOULD be set to the ORD
value at the target.
On the other hand, the IRD at the target MAY be set to zero since the
iSER layer at the target does not expect RDMA Read Requests to be
issued by the initiator.
Failure to allocate the requested connection resources locally
results in a login failure, and its handling is described in <a href="#section-10.1.3.1">Section</a>
<a href="#section-10.1.3.1">10.1.3.1</a>.
If the iSER layer at the target is successful in allocating the
connection resources necessary to support RCaP, the following events
MUST occur in the specified sequence:
1. The iSER layer MUST return a success status to the iSCSI layer in
response to the Allocate_Connection_Resources Operational
Primitive.
2. The iSCSI layer MUST invoke the Enable_Datamover Operational
Primitive with the following qualifiers:
a. Connection_Handle that identifies the iSCSI connection.
b. Transport_Connection_Descriptor that identifies the specific
transport connection associated with the Connection_Handle.
c. The final transport-layer (e.g., TCP) message containing the
Login Response with the T bit set to one and the NSG field set
to FullFeaturePhase.
<span class="grey">Ko & Nezhinsky Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
3. The iSER layer MUST send the final Login Response PDU in the
native transport mode to conclude the iSCSI Login Phase. If the
underlying transport is TCP, then the iSER layer MUST send the
final Login Response PDU in byte stream mode.
4. After receiving the iSER Hello Message from the initiator, the
iSER layer MUST respond with the iSER HelloReply Message to be
sent as the first iSER Message if iSERHelloRequired is negotiated
to "Yes". If the iSER layer receives an iSER Hello Message when
iSERHelloRequired is negotiated to "No", then this MUST be treated
as an iSER protocol error. See <a href="#section-5.1.3">Section 5.1.3</a> on iSER Hello
Exchange for more details.
Note: In the above sequence, the operations as described in items 3
and 4 MUST be performed atomically for iWARP connections. Failure to
do this may result in race conditions.
<span class="h4"><a class="selflink" id="section-5.1.3" href="#section-5.1.3">5.1.3</a>. iSER Hello Exchange</span>
If iSERHelloRequired is negotiated to "Yes", the first iSER Message
sent by the iSER layer at the initiator to the target MUST be the
iSER Hello Message. The iSER Hello Message is used by the iSER layer
at the initiator to declare iSER parameters to the target. See
<a href="#section-9.3">Section 9.3</a> on iSER Header Format for iSER Hello Message.
Conversely, if iSERHelloRequired is negotiated to "No", then the iSER
layer at the initiator MUST NOT send an iSER Hello Message.
In response to the iSER Hello Message, the iSER layer at the target
MUST return the iSER HelloReply Message as the first iSER Message
sent by the target if iSERHelloRequired is negotiated to "Yes". The
iSER HelloReply Message is used by the iSER layer at the target to
declare iSER parameters to the initiator. See <a href="#section-9.4">Section 9.4</a> on iSER
Header Format for iSER HelloReply Message. If the iSER layer
receives an iSER Hello Message when iSERHelloRequired is negotiated
to "No", then this MUST be treated as an iSER protocol error. See
<a href="#section-10.1.3.4">Section 10.1.3.4</a> on iSER Protocol Errors on for more details.
In the iSER Hello Message, the iSER layer at the initiator declares
the iSER-IRD value to the target.
Upon receiving the iSER Hello Message, the iSER layer at the target
MUST set the iSER-ORD value to the minimum of the iSER-ORD value at
the target and the iSER-IRD value declared by the initiator. In
order to free up the unused resources, the iSER layer at the target
MAY adjust (lower) its ORD value to match the iSER-ORD value if the
iSER-ORD value is smaller than the ORD value at the target.
<span class="grey">Ko & Nezhinsky Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
In the iSER HelloReply Message, the iSER layer at the target declares
the iSER-ORD value to the initiator.
Upon receiving the iSER HelloReply Message, the iSER layer at the
initiator MAY adjust (lower) its IRD value to match the iSER-ORD
value in order to free up the unused resources, if the iSER-ORD value
declared by the target is smaller than the iSER-IRD value declared by
the initiator.
It is an iSER-level negotiation failure if the iSER parameters
declared in the iSER Hello Message by the initiator are unacceptable
to the target. This includes the following:
* The initiator-declared iSER-IRD value is greater than 0, and the
target-declared iSER-ORD value is 0.
* The initiator-supported and the target-supported iSER protocol
versions do not overlap.
See <a href="#section-10.1.3.2">Section 10.1.3.2</a> on the handling of the error situation.
An initiator that conforms to [<a href="./rfc5046" title=""Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)"">RFC5046</a>] allocates connection
resources before sending the Login Request with the T (Transit) bit
set to one and the NSG (Next Stage) field set to FullFeaturePhase.
(For brevity, this is referred to as "early" connection allocation.)
The current iSER specification relaxes this requirement to allow an
initiator to allocate connection resources after it receives the
final Login Response PDU from the target. (For brevity, this is
referred to as "late" connection allocation.) An initiator that
employs "late" connection allocation may encounter problems (e.g.,
RCaP connection closure) with a target that sends unexpected iSCSI
PDUs immediately upon transitioning to Full Feature Phase, as allowed
by the negotiated value of the MaxOutstandingUnexpectedPDUs key. The
only way to prevent this situation in full generality is to use iSER
Hello Messages, as they enable the initiator to allocate its
connection resources before sending its iSER Hello Message. The
iSERHelloRequired key is used by the initiator to determine if it is
dealing with a target that supports the iSER Hello exchanges.
Fortunately, known iSER target implementations do not take full
advantage of the number of allowed unexpected PDUs immediately upon
transitioning into Full Feature Phase, thus enabling an initiator
workaround that involves a smaller quantity of connection resources
prior to Full Feature Phase, as explained further below.
In the following summary, where "late" connection allocation is
practiced, an initiator that follows [<a href="./rfc5046" title=""Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)"">RFC5046</a>] is referred to as an
"old" initiator; otherwise, it is referred to as a "new" initiator.
Similarly, a target that does not support the iSERHelloRequired key
<span class="grey">Ko & Nezhinsky Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
(and responds with "NotUnderstood" when negotiating the
iSERHelloRequired key) is referred to as an "old" target; otherwise,
it is referred to as a "new" target. Note that an "old" target can
still support the iSER Hello exchanges, but this fact is not known by
the initiator. A "new" target can also respond with "No" when
negotiating the iSERHelloRequired key. In this case, its behavior
with respect to "late" connection allocation is similar to an "old"
target.
A "new" initiator will work fine with a "new" target.
For an "old" initiator and an "old" target, the failure by the
initiator to handle the number of unexpected iSCSI control-type PDUs
that are sent by the target before the buffer resources are allocated
at the initiator can result in the failure of the iSER session caused
by closure of the underlying RCaP connection. For the "old" target,
there is a known implementation that sends one unexpected iSCSI
control-type PDU after sending the final Login Response and then
waits awhile before sending the next one. This tends to alleviate
somewhat the buffer allocation problem at the initiator.
For a "new" initiator and an "old" target, the failure by the
initiator to handle the number of unexpected iSCSI control-type PDUs
that are sent by the target before the buffer resources are allocated
at the initiator can result in the failure of the iSER session caused
by closure of the underlying RCaP connection. A "new" initiator MAY
choose to terminate the connection; otherwise, it SHOULD do one of
the following:
1. Allocate the connection resources before sending the final Login
Request PDU.
2. Allocate one or more buffers for receiving unexpected control-type
PDUs from the target before sending the final Login Request PDU.
This reduces the possibility of the unexpected control-type PDUs
causing the RCaP connection to close before the connection
resources have been allocated.
<span class="grey">Ko & Nezhinsky Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
For an "old" initiator and a "new" target, if the iSERHelloRequired
key is not negotiated, a "new" target MUST still respond with the
iSER HelloReply Message when it receives the iSER Hello Message. If
the iSERHelloRequired key is negotiated to "No" or "NotUnderstood", a
"new" target MAY choose to terminate the connection; otherwise, it
SHOULD delay sending any unexpected control-type PDUs until one of
the following events has occurred:
1. A PDU is received from the initiator after it sends the final
Login Response PDU.
2. A system-configurable timeout period (say, one second) has
expired.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. iSCSI/iSER Connection Termination</span>
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. Normal Connection Termination at the Initiator</span>
The iSCSI layer at the initiator terminates an iSCSI/iSER connection
normally by invoking the Send_Control Operational Primitive qualified
with the Logout Request PDU. The iSER layer at the initiator MUST
use a Send Message to send the Logout Request PDU to the target. The
SendSE Message should be used if supported by the RCaP layer (e.g.,
iWARP). After the iSER layer at the initiator receives the Send
Message containing the Logout Response PDU from the target, it MUST
notify the iSCSI layer by invoking the Control_Notify Operational
Primitive qualified with the Logout Response PDU.
After the iSCSI logout process is complete, the iSCSI layer at the
target is responsible for closing the iSCSI/iSER connection as
described in <a href="#section-5.2.2">Section 5.2.2</a>. After the RCaP layer at the initiator
reports that the connection has been closed, the iSER layer at the
initiator MUST deallocate all connection and task resources (if any)
associated with the connection, and invalidate the Local Mappings (if
any) before notifying the iSCSI layer by invoking the
Connection_Terminate_Notify Operational Primitive.
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>. Normal Connection Termination at the Target</span>
Upon receiving the Send Message containing the Logout Request PDU,
the iSER layer at the target MUST notify the iSCSI layer at the
target by invoking the Control_Notify Operational Primitive qualified
with the Logout Request PDU. The iSCSI layer completes the logout
process by invoking the Send_Control Operational Primitive qualified
with the Logout Response PDU. The iSER layer at the target MUST use
a Send Message to send the Logout Response PDU to the initiator. The
SendSE Message should be used if supported by the RCaP layer (e.g.,
iWARP). After the iSCSI logout process is complete, the iSCSI layer
<span class="grey">Ko & Nezhinsky Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
at the target MUST request the iSER layer at the target to terminate
the RCaP Stream by invoking the Connection_Terminate Operational
Primitive.
As part of the termination process, the RCaP layer MUST close the
connection. When the RCaP layer notifies the iSER layer after the
RCaP Stream and the associated connection are terminated, the iSER
layer MUST deallocate all connection and task resources (if any)
associated with the connection, and invalidate the Local and Remote
Mappings (if any).
<span class="h4"><a class="selflink" id="section-5.2.3" href="#section-5.2.3">5.2.3</a>. Termination without Logout Request/Response PDUs</span>
<span class="h5"><a class="selflink" id="section-5.2.3.1" href="#section-5.2.3.1">5.2.3.1</a>. Connection Termination Initiated by the iSCSI layer</span>
The Connection_Terminate Operational Primitive MAY be invoked by the
iSCSI layer to request the iSER layer to terminate the RCaP Stream
without having previously exchanged the Logout Request and Logout
Response PDUs between the two iSCSI/iSER nodes. As part of the
termination process, the RCaP layer will close the connection. When
the RCaP layer notifies the iSER layer after the RCaP Stream and the
associated connection are terminated, the iSER layer MUST perform the
following actions.
If the Connection_Terminate Operational Primitive is invoked by the
iSCSI layer at the target, then the iSER layer at the target MUST
deallocate all connection and task resources (if any) associated with
the connection, and invalidate the Local and Remote Mappings (if
any).
If the Connection_Terminate Operational Primitive is invoked by the
iSCSI layer at the initiator, then the iSER layer at the initiator
MUST deallocate all connection and task resources (if any) associated
with the connection, and invalidate the Local Mappings (if any).
<span class="h5"><a class="selflink" id="section-5.2.3.2" href="#section-5.2.3.2">5.2.3.2</a>. Connection Termination Notification to the iSCSI layer</span>
If the iSCSI/iSER connection is terminated without the invocation of
Connection_Terminate from the iSCSI layer, the iSER layer MUST notify
the iSCSI layer that the iSCSI/iSER connection has been terminated by
invoking the Connection_Terminate_Notify Operational Primitive.
Prior to invoking Connection_Terminate_Notify, the iSER layer at the
target MUST deallocate all connection and task resources (if any)
associated with the connection, and invalidate the Local and Remote
Mappings (if any).
<span class="grey">Ko & Nezhinsky Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Prior to invoking Connection_Terminate_Notify, the iSER layer at the
initiator MUST deallocate all connection and task resources (if any)
associated with the connection, and invalidate the Local Mappings (if
any).
If the remote iSCSI/iSER node initiated the closing of the connection
(e.g., by sending a TCP FIN or TCP RST), the iSER layer MUST notify
the iSCSI layer after the RCaP layer reports that the connection is
closed by invoking the Connection_Terminate_Notify Operational
Primitive.
Another example of a connection termination without a preceding
logout is when the iSCSI layer at the initiator does an implicit
logout (connection reinstatement).
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Login/Text Operational Keys</span>
Certain iSCSI login/text operational keys have restricted usage in
iSER, and additional keys are used to support the iSER protocol
functionality. All other keys defined in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] and not discussed
in this section may be used on iSCSI/iSER connections with the same
semantics.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. HeaderDigest and DataDigest</span>
Irrelevant when: RDMAExtensions=Yes
Negotiations resulting in RDMAExtensions=Yes for a session imply
HeaderDigest=None and DataDigest=None for all connections in that
session and override the settings, whether default or configured.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. MaxRecvDataSegmentLength</span>
For an iSCSI connection belonging to a session in which
RDMAExtensions=Yes was negotiated on the leading connection of the
session, MaxRecvDataSegmentLength need not be declared in the Login
Phase, and MUST be ignored if it is declared. Instead,
InitiatorRecvDataSegmentLength (as described in <a href="#section-6.5">Section 6.5</a>) and
TargetRecvDataSegmentLength (as described in <a href="#section-6.4">Section 6.4</a>) keys are
negotiated. The values of the local and remote
MaxRecvDataSegmentLength are derived from the
InitiatorRecvDataSegmentLength and TargetRecvDataSegmentLength keys.
In the Full Feature Phase, the initiator MUST consider the value of
its local MaxRecvDataSegmentLength (that it would have declared to
the target) as having the value of InitiatorRecvDataSegmentLength,
and the value of the remote MaxRecvDataSegmentLength (that would have
been declared by the target) as having the value of
<span class="grey">Ko & Nezhinsky Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
TargetRecvDataSegmentLength. Similarly, the target MUST consider the
value of its local MaxRecvDataSegmentLength (that it would have
declared to the initiator) as having the value of
TargetRecvDataSegmentLength, and the value of the remote
MaxRecvDataSegmentLength (that would have been declared by the
initiator) as having the value of InitiatorRecvDataSegmentLength.
Note that <a href="./rfc3720">RFC 3720</a> requires that when a target receives a NOP-Out
request with a valid Initiator Task Tag, it responds with a NOP-In
with the same Initiator Task Tag that was provided in the NOP-Out
request. Furthermore, it returns the first MaxRecvDataSegmentLength
bytes of the initiator-provided Ping Data. Since there is no
MaxRecvDataSegmentLength common to the initiator and the target in
iSER, the length of the data sent with the NOP-Out request MUST NOT
exceed InitiatorMaxRecvDataSegmentLength.
The MaxRecvDataSegmentLength key is applicable only for iSCSI
control-type PDUs.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. RDMAExtensions</span>
Use: LO (leading only)
Senders: Initiator and Target
Scope: SW (session-wide)
RDMAExtensions=<boolean-value>
Irrelevant when: SessionType=Discovery
Default is No
Result function is AND
This key is used by the initiator and the target to negotiate the
support for iSER-assisted mode. To enable the use of iSER-assisted
mode, both the initiator and the target MUST exchange
RDMAExtensions=Yes. iSER-assisted mode MUST NOT be used if either
the initiator or the target offers RDMAExtensions=No.
An iSER-enabled node is not required to initiate the RDMAExtensions
key exchange if it prefers to operate in the Traditional iSCSI mode.
However, if the RDMAExtensions key is to be negotiated, an initiator
MUST offer the key in the first Login Request PDU in the
LoginOperationalNegotiation stage of the leading connection, and a
target MUST offer the key in the first Login Response PDU with which
it is allowed to do so (i.e., the first Login Response PDU issued
<span class="grey">Ko & Nezhinsky Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
after the first Login Request PDU with the C bit set to zero) in the
LoginOperationalNegotiation stage of the leading connection. In
response to the offered key=value pair of RDMAExtensions=yes, an
initiator MUST respond in the next Login Request PDU with which it is
allowed to do so, and a target MUST respond in the next Login
Response PDU with which it is allowed to do so.
Negotiating the RDMAExtensions key first enables a node to negotiate
the optimal value for other keys. Certain iSCSI keys such as
MaxBurstLength, MaxOutstandingR2T, ErrorRecoveryLevel, InitialR2T,
ImmediateData, etc., may be negotiated differently depending on
whether the connection is in Traditional iSCSI mode or iSER-assisted
mode.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. TargetRecvDataSegmentLength</span>
Use: IO (Initialize only)
Senders: Initiator and Target
Scope: CO (connection-only)
Irrelevant when: RDMAExtensions=No
TargetRecvDataSegmentLength=<numerical-value-512-to-(2**24-1)>
Default is 8192 bytes
Result function is minimum
This key is relevant only for the iSCSI connection of an iSCSI
session if RDMAExtensions=Yes was negotiated on the leading
connection of the session. It is used by the initiator and the
target to negotiate the maximum size of the data segment that an
initiator may send to the target in an iSCSI control-type PDU in the
Full Feature Phase. For SCSI Command PDUs and SCSI Data-Out PDUs
containing non-immediate unsolicited data to be sent by the
initiator, the initiator MUST send all non-Final PDUs with a data
segment size of exactly TargetRecvDataSegmentLength whenever the PDUs
constitute a data sequence whose size is larger than
TargetRecvDataSegmentLength.
<span class="grey">Ko & Nezhinsky Standards Track [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. InitiatorRecvDataSegmentLength</span>
Use: IO (Initialize only)
Senders: Initiator and Target
Scope: CO (connection-only)
Irrelevant when: RDMAExtensions=No
InitiatorRecvDataSegmentLength=<numerical-value-512-to-(2**24-1)>
Default is 8192 bytes
Result function is minimum
This key is relevant only for the iSCSI connection of an iSCSI
session if RDMAExtensions=Yes was negotiated on the leading
connection of the session. It is used by the initiator and the
target to negotiate the maximum size of the data segment that a
target may send to the initiator in an iSCSI control-type PDU in the
Full Feature Phase.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. OFMarker and IFMarker</span>
Irrelevant when: RDMAExtensions=Yes
Negotiations resulting in RDMAExtensions=Yes for a session imply
OFMarker=No and IFMarker=No for all connections in that session and
override the settings, whether default or configured.
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. MaxOutstandingUnexpectedPDUs</span>
Use: LO (leading only), Declarative
Senders: Initiator and Target
Scope: SW (session-wide)
Irrelevant when: RDMAExtensions=No
MaxOutstandingUnexpectedPDUs=
<numerical-value-from-2-to-(2**32-1) | 0>
Default is 0
<span class="grey">Ko & Nezhinsky Standards Track [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
This key is used by the initiator and the target to declare the
maximum number of outstanding "unexpected" iSCSI control-type PDUs
that it can receive in the Full Feature Phase. It is intended to
allow the receiving side to determine the amount of buffer resources
needed beyond the normal flow control mechanism available in iSCSI.
An initiator or target should select a value such that it would not
impose an unnecessary constraint on the iSCSI layer under normal
circumstances. The value of 0 is defined to indicate that the
declarer has no limit on the maximum number of outstanding
"unexpected" iSCSI control-type PDUs that it can receive. See
Sections <a href="#section-8.1.1">8.1.1</a> and <a href="#section-8.1.2">8.1.2</a> for the usage of this key. Note that iSER
Hello and HelloReply Messages are not iSCSI control-type PDUs and are
not affected by this key.
For interoperability with implementations based on [<a href="./rfc5046" title=""Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)"">RFC5046</a>], this
key SHOULD be negotiated because the default value of 0 in [<a href="./rfc5046" title=""Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)"">RFC5046</a>]
is problematic for most implementations as it does not impose a bound
on resources consumable by unexpected PDUs.
<span class="h3"><a class="selflink" id="section-6.8" href="#section-6.8">6.8</a>. MaxAHSLength</span>
Use: LO (leading only), Declarative
Senders: Initiator and Target
Scope: SW (session-wide)
Irrelevant when: RDMAExtensions=No
MaxAHSLength=<numerical-value-from-2-to-(2**32-1) | 0>
Default is 256
This key is used by the initiator and target to declare the maximum
size of AHS in an iSCSI control-type PDU that it can receive in the
Full Feature Phase. It is intended to allow the receiving side to
determine the amount of resources needed for receive buffering. An
initiator or target should select a value such that it would not
impose an unnecessary constraint on the iSCSI layer under normal
circumstances. The value of 0 is defined to indicate that the
declarer has no limit on the maximum size of AHS in iSCSI control-
type PDUs that it can receive.
For interoperability with implementations based on [<a href="./rfc5046" title=""Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)"">RFC5046</a>], an
initiator or target MAY terminate the connection if it anticipates
MaxAHSLength to be greater than 256 and the key is not understood by
its peer.
<span class="grey">Ko & Nezhinsky Standards Track [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-6.9" href="#section-6.9">6.9</a>. TaggedBufferForSolicitedDataOnly</span>
Use: LO (leading only), Declarative
Senders: Initiator
Scope: SW (session-wide)
RDMAExtensions=<boolean-value>
Irrelevant when: RDMAExtensions=No
Default is No
This key is used by the initiator to declare to the target the usage
of the Write Base Offset in the iSER header of an iSCSI control-type
PDU. When set to No, the Base Offset is associated with an I/O
buffer that contains all the write data, including both unsolicited
and solicited data. When set to Yes, the Base Offset is associated
with an I/O buffer that only contains solicited data.
<span class="h3"><a class="selflink" id="section-6.10" href="#section-6.10">6.10</a>. iSERHelloRequired</span>
Use: LO (leading only), Declarative
Senders: Initiator
Scope: SW (session-wide)
RDMAExtensions=<boolean-value>
Irrelevant when: RDMAExtensions=No
Default is No
This key is relevant only for the iSCSI connection of an iSCSI
session if RDMAExtensions=Yes was negotiated on the leading
connection of the session. It is used by the initiator to declare to
the target whether the iSER Hello Exchange is required. When set to
Yes, the iSER layers MUST perform the iSER Hello Exchange as
described in <a href="#section-5.1.3">Section 5.1.3</a>. When set to No, the iSER layers MUST NOT
perform the iSER Hello Exchange.
<span class="grey">Ko & Nezhinsky Standards Track [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. iSCSI PDU Considerations</span>
When a connection is in the iSER-assisted mode, two types of message
transfers are allowed between the iSCSI layer (at the initiator) and
the iSCSI layer (at the target). These are known as the iSCSI data-
type PDUs and the iSCSI control-type PDUs, and these terms are
described in the following sections.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. iSCSI Data-Type PDU</span>
An iSCSI data-type PDU is defined as an iSCSI PDU that causes data
transfer, transparent to the remote iSCSI layer, to take place
between the peer iSCSI nodes in the Full Feature Phase of an
iSCSI/iSER connection. An iSCSI data-type PDU, when requested for
transmission by the iSCSI layer in the sending node, results in the
data's transfer without the participation of the iSCSI layers at the
sending and the receiving nodes. This is due to the fact that the
PDU itself is not delivered as-is to the iSCSI layer in the receiving
node. Instead, the data transfer operations are transformed into the
appropriate RDMA operations, which are handled by the RDMA-Capable
Controller. The set of iSCSI data-type PDUs consists of SCSI Data-In
PDUs and R2T PDUs.
If the invocation of the Operational Primitive by the iSCSI layer to
request the iSER layer to process an iSCSI data-type PDU is qualified
with Notify_Enable set, then upon completing the RDMA operation, the
iSER layer at the target MUST notify the iSCSI layer at the target by
invoking the Data_Completion_Notify Operational Primitive qualified
with the ITT and SN. There is no data completion notification at the
initiator since the RDMA operations are completely handled by the
RDMA-Capable Controller at the initiator and the iSER layer at the
initiator is not involved with the data transfer associated with
iSCSI data-type PDUs.
If the invocation of the Operational Primitive by the iSCSI layer to
request the iSER layer to process an iSCSI data-type PDU is qualified
with Notify_Enable cleared, then upon completing the RDMA operation,
the iSER layer at the target MUST NOT notify the iSCSI layer at the
target and MUST NOT invoke the Data_Completion_Notify Operational
Primitive.
If an operation associated with an iSCSI data-type PDU fails for any
reason, the contents of the Data Sink buffers associated with the
operation are considered indeterminate.
<span class="grey">Ko & Nezhinsky Standards Track [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. iSCSI Control-Type PDU</span>
Any iSCSI PDU that is not an iSCSI data-type PDU and also not a SCSI
Data-Out PDU carrying solicited data is defined as an iSCSI control-
type PDU. The iSCSI layer invokes the Send_Control Operational
Primitive to request the iSER layer to process an iSCSI control-type
PDU. iSCSI control-type PDUs are transferred using Send Messages of
RCaP. Specifically, it is to be noted that SCSI Data-Out PDUs
carrying unsolicited data are defined as iSCSI control-type PDUs.
See <a href="#section-7.3.4">Section 7.3.4</a> on the treatment of SCSI Data-Out PDUs.
When the iSER layer receives an iSCSI control-type PDU, it MUST
notify the iSCSI layer by invoking the Control_Notify Operational
Primitive qualified with the iSCSI control-type PDU.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. iSCSI PDUs</span>
This section describes the handling of each of the iSCSI PDU types by
the iSER layer. The iSCSI layer requests the iSER layer to process
the iSCSI PDU by invoking the appropriate Operational Primitive. A
Connection_Handle MUST qualify each of these invocations. In
addition, the BHS and the optional AHS of the iSCSI PDU as defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] MUST qualify each of the invocations. The qualifying
Connection_Handle, the BHS, and the AHS are not explicitly listed in
the subsequent sections.
<span class="h4"><a class="selflink" id="section-7.3.1" href="#section-7.3.1">7.3.1</a>. SCSI Command</span>
Type: control-type PDU
PDU-specific qualifiers (for SCSI Write or bidirectional command):
ImmediateDataSize, UnsolicitedDataSize, DataDescriptorOut
PDU-specific qualifiers (for SCSI Read or bidirectional command):
DataDescriptorIn
The iSER layer at the initiator MUST send the SCSI command in a Send
Message to the target. The SendSE Message should be used if
supported by the RCaP layer (e.g., iWARP).
<span class="grey">Ko & Nezhinsky Standards Track [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
For a SCSI Write or bidirectional command, the iSCSI layer at the
initiator MUST invoke the Send_Control Operational Primitive as
follows:
* If there is immediate data to be transferred for the SCSI write or
bidirectional command, the qualifier ImmediateDataSize MUST be
used to define the number of bytes of immediate unsolicited data
to be sent with the write or bidirectional command, and the
qualifier DataDescriptorOut MUST be used to define the initiator's
I/O Buffer containing the SCSI Write data.
* If there is unsolicited data to be transferred for the SCSI Write
or bidirectional command, the qualifier UnsolicitedDataSize MUST
be used to define the number of bytes of immediate and non-
immediate unsolicited data for the command. The iSCSI layer will
issue one or more SCSI Data-Out PDUs for the non-immediate
unsolicited data. See <a href="#section-7.3.4">Section 7.3.4</a> on SCSI Data-Out.
* If there is solicited data to be transferred for the SCSI Write or
bidirectional command, as indicated when the Expected Data
Transfer Length in the SCSI Command PDU exceeds the value of
UnsolicitedDataSize, the iSER layer at the initiator MUST do the
following:
a. It MUST allocate a Write STag for the I/O Buffer defined by the
qualifier DataDescriptorOut. DataDescriptorOut describes the
I/O buffer starting with the immediate unsolicited data (if
any), followed by the non-immediate unsolicited data (if any)
and solicited data. When TaggedBufferForSolicitedDataOnly is
negotiated to No, the Base Offset is associated with this I/O
Buffer. When TaggedBufferForSolicitedDataOnly is negotiated to
Yes, the Base Offset is associated with an I/O Buffer that
contains only solicited data.
b. It MUST establish a Local Mapping that associates the Initiator
Task Tag (ITT) to the Write STag.
c. It MUST Advertise the Write STag and the Base Offset to the
target by sending them in the iSER header of the iSER Message
(the payload of the Send Message of RCaP) containing the SCSI
Write or bidirectional command PDU. The SendSE Message should
be used if supported by the RCaP layer (e.g., iWARP). See
<a href="#section-9.2">Section 9.2</a> on iSER Header Format for iSCSI Control-Type PDU.
<span class="grey">Ko & Nezhinsky Standards Track [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
For a SCSI Read or bidirectional command, the iSCSI layer at the
initiator MUST invoke the Send_Control Operational Primitive
qualified with DataDescriptorIn, which defines the initiator's I/O
Buffer for receiving the SCSI Read data. The iSER layer at the
initiator MUST do the following:
a. It MUST allocate a Read STag for the I/O Buffer and note the
Base Offset for this I/O Buffer.
b. It MUST establish a Local Mapping that associates the Initiator
Task Tag (ITT) to the Read STag.
c. It MUST Advertise the Read STag and the Base Offset to the
target by sending them in the iSER header of the iSER Message
(the payload of the Send Message of RCaP) containing the SCSI
Read or bidirectional command PDU. The SendSE Message should
be used if supported by the RCaP layer (e.g., iWARP). See
<a href="#section-9.2">Section 9.2</a> on iSER Header Format for iSCSI Control-Type PDU.
If the amount of unsolicited data to be transferred in a SCSI Command
exceeds TargetRecvDataSegmentLength, then the iSCSI layer at the
initiator MUST segment the data into multiple iSCSI control-type
PDUs, with the data segment length in all generated PDUs (except the
last one) having exactly the size TargetRecvDataSegmentLength. The
data segment length of the last iSCSI control-type PDU carrying the
unsolicited data can be up to TargetRecvDataSegmentLength.
When the iSER layer at the target receives the SCSI Command, it MUST
establish a Remote Mapping that associates the ITT to the Base
Offset(s) and the Advertised STag(s) in the iSER header. The Write
STag is used by the iSER layer at the target in handling the data
transfer associated with the R2T PDU(s) as described in <a href="#section-7.3.6">Section</a>
<a href="#section-7.3.6">7.3.6</a>. The Read STag is used in handling the SCSI Data-In PDU(s)
from the iSCSI layer at the target as described in <a href="#section-7.3.5">Section 7.3.5</a>.
<span class="h4"><a class="selflink" id="section-7.3.2" href="#section-7.3.2">7.3.2</a>. SCSI Response</span>
Type: control-type PDU
PDU-specific qualifiers: DataDescriptorStatus
The iSCSI layer at the target MUST invoke the Send_Control
Operational Primitive qualified with DataDescriptorStatus, which
defines the buffer containing the sense and response information.
The iSCSI layer at the target MUST always return the SCSI status for
a SCSI command in a separate SCSI Response PDU. "Phase collapse" for
<span class="grey">Ko & Nezhinsky Standards Track [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
transferring SCSI status in a SCSI Data-In PDU MUST NOT be used. The
iSER layer at the target sends the SCSI Response PDU according to the
following rules:
* If no STags were Advertised by the initiator in the iSER Message
containing the SCSI command PDU, then the iSER layer at the target
MUST send a Send Message containing the SCSI Response PDU. The
SendSE Message should be used if supported by the RCaP layer
(e.g., iWARP).
* If the initiator Advertised a Read STag in the iSER Message
containing the SCSI Command PDU, then the iSER layer at the target
MUST send a Send Message containing the SCSI Response PDU. The
header of the Send Message MUST carry the Read STag to be
invalidated at the initiator. The Send with Invalidate Message,
if supported by the RCaP layer (e.g., iWARP), can be used for the
automatic invalidation of the STag.
* If the initiator Advertised only the Write STag in the iSER
Message containing the SCSI command PDU, then the iSER layer at
the target MUST send a Send Message containing the SCSI Response
PDU. The header of the Send Message MUST carry the Write STag to
be invalidated at the initiator. The Send with Invalidate
Message, if supported by the RCaP layer (e.g., iWARP), can be used
for the automatic invalidation of the STag.
When the iSCSI layer at the target invokes the Send_Control
Operational Primitive to send the SCSI Response PDU, the iSER layer
at the target MUST invalidate the Remote Mapping before transferring
the SCSI Response PDU to the initiator.
Upon receiving a Send Message containing the SCSI Response PDU from
the target, the iSER layer at the initiator MUST invalidate the
STag(s) specified in the header. (If a Send with Invalidate Message
is supported by the RCaP layer (e.g., iWARP) and is used to carry the
SCSI Response PDU, the RCaP layer at the initiator will invalidate
the STag. The iSER layer at the initiator MUST ensure that the
correct STag is invalidated. If both the Read and the Write STags
were Advertised earlier by the initiator, then the iSER layer at the
initiator MUST explicitly invalidate the Write STag upon receiving
the Send with Invalidate Message because the header of the Send with
Invalidate Message can only carry one STag (in this case, the Read
STag) to be invalidated.)
The iSER layer at the initiator MUST ensure the invalidation of the
STag(s) used in a command before notifying the iSCSI layer at the
initiator by invoking the Control_Notify Operational Primitive
qualified with the SCSI Response. This precludes the possibility of
<span class="grey">Ko & Nezhinsky Standards Track [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
using the STag(s) after the completion of the command; such use would
cause data corruption.
When the iSER layer at the initiator receives a Send Message
containing the SCSI Response PDU, it SHOULD invalidate the Local
Mapping. The iSER layer MUST ensure that all local STag(s)
associated with the ITT are invalidated before notifying the iSCSI
layer of the SCSI Response PDU by invoking the Control_Notify
Operational Primitive qualified with the SCSI Response PDU.
<span class="h4"><a class="selflink" id="section-7.3.3" href="#section-7.3.3">7.3.3</a>. Task Management Function Request/Response</span>
Type: control-type PDU
PDU-specific qualifiers (for TMF Request): DataDescriptorOut,
DataDescriptorIn
The iSER layer MUST use a Send Message to send the Task Management
Function Request/Response PDU. The SendSE Message should be used if
supported by the RCaP layer (e.g., iWARP).
For the Task Management Function Request with the TASK REASSIGN
function, the iSER layer at the initiator MUST do the following:
* It MUST use the ITT as specified in the Referenced Task Tag from
the Task Management Function Request PDU to locate the existing
STags (if any) in the Local Mappings.
* It MUST invalidate the existing STags (if any) and the Local
Mappings.
* It MUST allocate a Read STag for the I/O Buffer and note the Base
Offset associated with the I/O Buffer as defined by the qualifier
DataDescriptorIn if the Send_Control Operational Primitive
invocation is qualified with DataDescriptorIn.
* It MUST allocate a Write STag for the I/O Buffer and note the Base
Offset associated with the I/O Buffer as defined by the qualifier
DataDescriptorOut if the Send_Control Operational Primitive
invocation is qualified with DataDescriptorOut.
* If STags are allocated, it MUST establish new Local Mapping(s)
that associate the ITT to the allocated STag(s).
* It MUST Advertise the STags and the Base Offsets, if allocated, to
the target in the iSER header of the Send Message carrying the
iSCSI PDU, as described in <a href="#section-9.2">Section 9.2</a>. The SendSE Message should
be used if supported by the RCaP layer (e.g., iWARP).
<span class="grey">Ko & Nezhinsky Standards Track [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
For the Task Management Function Request with the TASK REASSIGN
function for a SCSI Read or bidirectional command, the iSCSI layer at
the initiator MUST set ExpDataSN to zero since the data transfer and
acknowledgements happen transparently to the iSCSI layer at the
initiator. This provides the flexibility to the iSCSI layer at the
target to request transmission of only the unacknowledged data as
specified in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
When the iSER layer at the target receives the Task Management
Function Request with the TASK REASSIGN function, it MUST do the
following:
* It MUST use the ITT as specified in the Referenced Task Tag from
the Task Management Function Request PDU to locate the Local and
Remote Mappings (if any).
* It MUST invalidate the local STags (if any) associated with the
ITT.
* It MUST replace the Base Offset(s) and the Advertised STag(s) in
the Remote Mapping with the Base Offset(s) and the Advertised
STag(s) in the iSER header. The Write STag is used in the
handling of the R2T PDU(s) from the iSCSI layer at the target as
described in <a href="#section-7.3.6">Section 7.3.6</a>. The Read STag is used in the handling
of the SCSI Data-In PDU(s) from the iSCSI layer at the target as
described in <a href="#section-7.3.5">Section 7.3.5</a>.
<span class="h4"><a class="selflink" id="section-7.3.4" href="#section-7.3.4">7.3.4</a>. SCSI Data-Out</span>
Type: control-type PDU
PDU-specific qualifiers: DataDescriptorOut
The iSCSI layer at the initiator MUST invoke the Send_Control
Operational Primitive qualified with DataDescriptorOut, which defines
the initiator's I/O Buffer containing unsolicited SCSI Write data.
If the amount of unsolicited data to be transferred as SCSI Data-Out
exceeds TargetRecvDataSegmentLength, then the iSCSI layer at the
initiator MUST segment the data into multiple iSCSI control-type
PDUs, where the DataSegmentLength has the value of
TargetRecvDataSegmentLength in all generated PDUs except the last
one. The DataSegmentLength of the last iSCSI control-type PDU
carrying the unsolicited data can be up to
TargetRecvDataSegmentLength. The iSCSI layer at the target MUST
perform the reassembly function for the unsolicited data.
<span class="grey">Ko & Nezhinsky Standards Track [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
For unsolicited data, the iSER layer at the initiator MUST use a Send
Message to send the SCSI Data-Out PDU. If the F bit is set to 1, the
SendSE Message should be used if supported by the RCaP layer (e.g.,
iWARP).
Note that for solicited data, the SCSI Data-Out PDUs are not used
since R2T PDUs are not delivered to the iSCSI layer at the initiator;
instead, R2T PDUs are transformed by the iSER layer at the target
into RDMA Read operations. (See <a href="#section-7.3.6">Section 7.3.6</a>.)
<span class="h4"><a class="selflink" id="section-7.3.5" href="#section-7.3.5">7.3.5</a>. SCSI Data-In</span>
Type: data-type PDU
PDU-specific qualifiers: DataDescriptorIn
When the iSCSI layer at the target is ready to return the SCSI Read
data to the initiator, it MUST invoke the Put_Data Operational
Primitive qualified with DataDescriptorIn, which defines the SCSI
Data-In buffer. See <a href="#section-7.1">Section 7.1</a> on the general requirement on the
handling of iSCSI data-type PDUs. SCSI Data-In PDU(s) are used in
SCSI Read data transfer as described in <a href="#section-9.5.2">Section 9.5.2</a>.
The iSER layer at the target MUST do the following for each
invocation of the Put_Data Operational Primitive:
1. It MUST use the ITT in the SCSI Data-In PDU to locate the remote
Read STag and the Base Offset in the Remote Mapping. The Remote
Mapping was established earlier by the iSER layer at the target
when the SCSI Read Command was received from the initiator.
2. It MUST generate and send an RDMA Write Message containing the
read data to the initiator.
a. It MUST use the remote Read STag as the Data Sink STag of the
RDMA Write Message.
b. It MUST add the Buffer Offset from the SCSI Data-In PDU to the
Base Offset from the Remote Mapping as the Data Sink Tagged
Offset of the RDMA Write Message.
c. It MUST use DataSegmentLength from the SCSI Data-In PDU to
determine the amount of data to be sent in the RDMA Write
Message.
3. It MUST associate the DataSN and ITT from the SCSI Data-In PDU
with the RDMA Write operation. If the Put_Data Operational
Primitive invocation was qualified with Notify_Enable set, then
<span class="grey">Ko & Nezhinsky Standards Track [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
when the iSER layer at the target receives a completion from the
RCaP layer for the RDMA Write Message, the iSER layer at the
target MUST notify the iSCSI layer by invoking the
Data_Completion_Notify Operational Primitive qualified with the
DataSN and ITT. Conversely, if the Put_Data Operational Primitive
invocation was qualified with Notify_Enable cleared, then the iSER
layer at the target MUST NOT notify the iSCSI layer on completion
and MUST NOT invoke the Data_Completion_Notify Operational
Primitive.
When the A-bit is set to one in the SCSI Data-In PDU, the iSER layer
at the target MUST notify the iSCSI layer at the target when the data
transfer is complete at the initiator. To perform this additional
function, the iSER layer at the target can take advantage of the
operational ErrorRecoveryLevel if previously disclosed by the iSCSI
layer via an earlier invocation of the Notice_Key_Values Operational
Primitive. There are two approaches that can be taken:
1. If the iSER layer at the target knows that the operational
ErrorRecoveryLevel is 2, or if the iSER layer at the target does
not know the operational ErrorRecoveryLevel, then the iSER layer
at the target MUST issue a zero-length RDMA Read Request Message
following the RDMA Write Message. When the iSER layer at the
target receives a completion for the RDMA Read Request Message
from the RCaP layer, implying that the RDMA-Capable Controller at
the initiator has completed processing the RDMA Write Message due
to the completion ordering semantics of RCaP, the iSER layer at
the target MUST notify the iSCSI layer at the target by invoking
the Data_ACK_Notify Operational Primitive qualified with ITT and
DataSN (see <a href="#section-3.2.3">Section 3.2.3</a>).
2. If the iSER layer at the target knows that the operational
ErrorRecoveryLevel is 1, then the iSER layer at the target MUST do
one of the following:
a. It MUST notify the iSCSI layer at the target by invoking the
Data_ACK_Notify Operational Primitive qualified with ITT and
DataSN (see <a href="#section-3.2.3">Section 3.2.3</a>) when it receives the local
completion from the RCaP layer for the RDMA Write Message.
This is allowed since digest errors do not occur in iSER (see
<a href="#section-10.1.4.2">Section 10.1.4.2</a>) and a CRC error will cause the connection to
be terminated and the task to be terminated anyway. The local
RDMA Write completion from the RCaP layer guarantees that the
RCaP layer will not access the I/O Buffer again to transfer the
data associated with that RDMA Write operation.
<span class="grey">Ko & Nezhinsky Standards Track [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
b. Alternatively, it MUST use the same procedure for handling the
data transfer completion at the initiator as for
ErrorRecoveryLevel 2.
It should be noted that the iSCSI layer at the target cannot set the
A-bit to 1 if the ErrorRecoveryLevel=0.
SCSI status MUST always be returned in a separate SCSI Response PDU.
The S bit in the SCSI Data-In PDU MUST always be set to zero. There
MUST NOT be a "phase collapse" in the SCSI Data-In PDU.
Since the RDMA Write Message only transfers the data portion of the
SCSI Data-In PDU but not the control information in the header, such
as ExpCmdSN, if timely updates of such information are crucial, the
iSCSI layer at the initiator MAY issue NOP-Out PDUs to request the
iSCSI layer at the target to respond with the information using
NOP-In PDUs.
<span class="h4"><a class="selflink" id="section-7.3.6" href="#section-7.3.6">7.3.6</a>. Ready To Transfer (R2T)</span>
Type: data-type PDU
PDU-specific qualifiers: DataDescriptorOut
In order to send an R2T PDU, the iSCSI layer at the target MUST
invoke the Get_Data Operational Primitive qualified with
DataDescriptorOut, which defines the I/O Buffer for receiving the
SCSI Write data from the initiator. See <a href="#section-7.1">Section 7.1</a> on the general
requirements on the handling of iSCSI data-type PDUs.
The iSER layer at the target MUST do the following for each
invocation of the Get_Data Operational Primitive:
1. It MUST ensure a valid local STag for the I/O Buffer and a valid
Local Mapping. This may involve allocating a valid local STag and
establishing a Local Mapping.
2. It MUST use the ITT in the R2T to locate the remote Write STag and
the Base Offset in the Remote Mapping. The Remote Mapping was
established earlier by the iSER layer at the target when the iSER
Message containing the Advertised Write STag, the Base Offset, and
the SCSI Command PDU for a SCSI Write or bidirectional command was
received from the initiator.
3. If the iSER-ORD value at the target is set to zero, the iSER layer
at the target MUST terminate the connection and free up the
resources associated with the connection (as described in <a href="#section-5.2.3">Section</a>
<a href="#section-5.2.3">5.2.3</a>) if it received the R2T PDU from the iSCSI layer at the
<span class="grey">Ko & Nezhinsky Standards Track [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
target. Upon termination of the connection, the iSER layer at the
target MUST notify the iSCSI layer at the target by invoking the
Connection_Terminate_Notify Operational Primitive.
4. If the iSER-ORD value at the target is set to greater than 0, the
iSER layer at the target MUST transform the R2T PDU into an RDMA
Read Request Message. While transforming the R2T PDU, the iSER
layer at the target MUST ensure that the number of outstanding
RDMA Read Request Messages does not exceed the iSER-ORD value. To
transform the R2T PDU, the iSER layer at the target:
a. MUST derive the local STag and local Tagged Offset from the
DataDescriptorOut that qualified the Get_Data invocation.
b. MUST use the local STag as the Data Sink STag of the RDMA Read
Request Message.
c. MUST use the local Tagged Offset as the Data Sink Tagged Offset
of the RDMA Read Request Message.
d. MUST use the Desired Data Transfer Length from the R2T PDU as
the RDMA Read Message Size of the RDMA Read Request Message.
e. MUST use the remote Write STag as the Data Source STag of the
RDMA Read Request Message.
f. MUST add the Buffer Offset from the R2T PDU to the Base Offset
from the Remote Mapping as the Data Source Tagged Offset of the
RDMA Read Request Message.
5. It MUST associate the R2TSN and ITT from the R2T PDU with the RDMA
Read operation. If the Get_Data Operational Primitive invocation
was qualified with Notify_Enable set, then when the iSER layer at
the target receives a completion from the RCaP layer for the RDMA
Read operation, the iSER layer at the target MUST notify the iSCSI
layer by invoking the Data_Completion_Notify Operational Primitive
qualified with the R2TSN and ITT. Conversely, if the Get_Data
Operational Primitive invocation was qualified with Notify_Enable
cleared, then the iSER layer at the target MUST NOT notify the
iSCSI layer on completion and MUST NOT invoke the
Data_Completion_Notify Operational Primitive.
When the RCaP layer at the initiator receives a valid RDMA Read
Request Message, it will return an RDMA Read Response Message
containing the solicited write data to the target. When the RCaP
layer at the target receives the RDMA Read Response Message from the
initiator, it will place the solicited data in the I/O Buffer
referenced by the Data Sink STag in the RDMA Read Response Message.
<span class="grey">Ko & Nezhinsky Standards Track [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Since the RDMA Read Request Message from the target does not transfer
the control information in the R2T PDU such as ExpCmdSN, if timely
updates of such information are crucial, the iSCSI layer at the
initiator MAY issue NOP-Out PDUs to request the iSCSI layer at the
target to respond with the information using NOP-In PDUs.
Similarly, since the RDMA Read Response Message from the initiator
only transfers the data but not the control information normally
found in the SCSI Data-Out PDU, such as ExpStatSN, if timely updates
of such information are crucial, the iSCSI layer at the target MAY
issue NOP-In PDUs to request the iSCSI layer at the initiator to
respond with the information using NOP-Out PDUs.
<span class="h4"><a class="selflink" id="section-7.3.7" href="#section-7.3.7">7.3.7</a>. Asynchronous Message</span>
Type: control-type PDU
PDU-specific qualifiers: DataDescriptorSense
The iSCSI layer MUST invoke the Send_Control Operational Primitive
qualified with DataDescriptorSense, which defines the buffer
containing the sense and iSCSI event information. The iSER layer
MUST use a Send Message to send the Asynchronous Message PDU. The
SendSE Message should be used if supported by the RCaP layer (e.g.,
iWARP).
<span class="h4"><a class="selflink" id="section-7.3.8" href="#section-7.3.8">7.3.8</a>. Text Request and Text Response</span>
Type: control-type PDU
PDU-specific qualifiers: DataDescriptorTextOut (for Text
Request), DataDescriptorIn (for Text Response)
The iSCSI layer MUST invoke the Send_Control Operational Primitive
qualified with DataDescriptorTextOut (or DataDescriptorIn), which
defines the Text Request (or Text Response) buffer. The iSER layer
MUST use Send Messages to send the Text Request (or Text Response
PDUs). The SendSE Message should be used if supported by the RCaP
layer (e.g., iWARP).
<span class="h4"><a class="selflink" id="section-7.3.9" href="#section-7.3.9">7.3.9</a>. Login Request and Login Response</span>
During the login negotiation, the iSCSI layer interacts with the
transport layer directly, and the iSER layer is not involved. See
<a href="#section-5.1">Section 5.1</a> on iSCSI/iSER Connection Setup. If the underlying
transport is TCP, the Login Request PDUs and the Login Response PDUs
are exchanged when the connection between the initiator and the
target is still in the byte stream mode.
<span class="grey">Ko & Nezhinsky Standards Track [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
The iSCSI layer MUST NOT send a Login Request (or a Login Response)
PDU during the Full Feature Phase. A Login Request (or a Login
Response) PDU, if used, MUST be treated as an iSCSI protocol error.
The iSER layer MAY reject such a PDU from the iSCSI layer with an
appropriate error code. If a Login Request PDU is received by the
iSCSI layer at the target, it MUST respond with a Reject PDU with a
reason code of "protocol error".
<span class="h4"><a class="selflink" id="section-7.3.10" href="#section-7.3.10">7.3.10</a>. Logout Request and Logout Response</span>
Type: control-type PDU
PDU-specific qualifiers: None
The iSER layer MUST use a Send Message to send the Logout Request or
Logout Response PDU. The SendSE Message should be used if supported
by the RCaP layer (e.g., iWARP). Sections <a href="#section-5.2.1">5.2.1</a> and <a href="#section-5.2.2">5.2.2</a> describe
the handling of the Logout Request and the Logout Response at the
initiator and the target and the interactions between the initiator
and the target to terminate a connection.
<span class="h4"><a class="selflink" id="section-7.3.11" href="#section-7.3.11">7.3.11</a>. SNACK Request</span>
Since HeaderDigest and DataDigest must be negotiated to "None", there
are no digest errors when the connection is in iSER-assisted mode.
Also, since RCaP delivers all messages in the order they were sent,
there are no sequence errors when the connection is in iSER-assisted
mode. Therefore, the iSCSI layer MUST NOT send SNACK Request PDUs.
A SNACK Request PDU, if used, MUST be treated as an iSCSI protocol
error. The iSER layer MAY reject such a PDU from the iSCSI layer
with an appropriate error code. If a SNACK Request PDU is received
by the iSCSI layer at the target, it MUST respond with a Reject PDU
with a reason code of "protocol error".
<span class="h4"><a class="selflink" id="section-7.3.12" href="#section-7.3.12">7.3.12</a>. Reject</span>
Type: control-type PDU
PDU-specific qualifiers: DataDescriptorReject
The iSCSI layer MUST invoke the Send_Control Operational Primitive
qualified with DataDescriptorReject, which defines the Reject buffer.
The iSER layer MUST use a Send Message to send the Reject PDU. The
SendSE Message should be used if supported by the RCaP layer (e.g.,
iWARP).
<span class="grey">Ko & Nezhinsky Standards Track [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-7.3.13" href="#section-7.3.13">7.3.13</a>. NOP-Out and NOP-In</span>
Type: control-type PDU
PDU-specific qualifiers: DataDescriptorNOPOut (for NOP-Out),
DataDescriptorNOPIn (for NOP-In)
The iSCSI layer MUST invoke the Send_Control Operational Primitive
qualified with DataDescriptorNOPOut (or DataDescriptorNOPIn), which
defines the Ping (or Return Ping) data buffer. The iSER layer MUST
use Send Messages to send the NOP-Out (or NOP-In) PDU. The SendSE
Message should be used if supported by the RCaP layer (e.g., iWARP).
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Flow Control and STag Management</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Flow Control for RDMA Send Messages</span>
Send Messages in RCaP are used by the iSER layer to transfer iSCSI
control-type PDUs. Each Send Message in RCaP consumes an Untagged
Buffer at the Data Sink. However, neither the RCaP layer nor the
iSER layer provides an explicit flow control mechanism for the Send
Messages. Therefore, the iSER layer SHOULD provision enough Untagged
buffers for handling incoming Send Messages to prevent buffer
exhaustion at the RCaP layer. If buffer exhaustion occurs, it may
result in the termination of the connection.
An implementation may choose to satisfy the buffer requirement by
using a common buffer pool shared across multiple connections, with
usage limits on a per-connection basis and usage limits on the buffer
pool itself. In such an implementation, exceeding the buffer usage
limit for a connection or the buffer pool itself may trigger
interventions from the iSER layer to replenish the buffer pool and/or
to isolate the connection causing the problem.
iSER also provides the MaxOutstandingUnexpectedPDUs key to be used by
the initiator and the target to declare the maximum number of
outstanding "unexpected" control-type PDUs that it can receive. It
is intended to allow the receiving side to determine the amount of
buffer resources needed beyond the normal flow control mechanism
available in iSCSI.
The buffer resources required at both the initiator and the target as
a result of control-type PDUs sent by the initiator are described in
<a href="#section-8.1.1">Section 8.1.1</a>. The buffer resources required at both the initiator
and target as a result of control-type PDUs sent by the target are
described in <a href="#section-8.1.2">Section 8.1.2</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-8.1.1" href="#section-8.1.1">8.1.1</a>. Flow Control for Control-Type PDUs from the Initiator</span>
The control-type PDUs that can be sent by an initiator to a target
can be grouped into the following categories:
1. Regulated: Control-type PDUs in this category are regulated by
the iSCSI CmdSN window mechanism, and the immediate flag is not
set.
2. Unregulated but Expected: Control-type PDUs in this category are
not regulated by the iSCSI CmdSN window mechanism but are expected
by the target.
3. Unregulated and Unexpected: Control-type PDUs in this category
are not regulated by the iSCSI CmdSN window mechanism and are
"unexpected" by the target.
<span class="h5"><a class="selflink" id="section-8.1.1.1" href="#section-8.1.1.1">8.1.1.1</a>. Control-Type PDUs from the Initiator in the Regulated Category</span>
Control-type PDUs that can be sent by the initiator in this category
are regulated by the iSCSI CmdSN window mechanism, and the immediate
flag is not set.
The queuing capacity required of the iSCSI layer at the target is
described in Section 4.2.2.1 of [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>]. For each of the control-
type PDUs that can be sent by the initiator in this category, the
initiator MUST provision for the buffer resources required for the
corresponding control-type PDU sent as a response from the target.
The following is a list of the PDUs that can be sent by the initiator
and the PDUs that are sent by the target in response:
a. When an initiator sends a SCSI Command PDU, it expects a SCSI
Response PDU from the target.
b. When the initiator sends a Task Management Function Request
PDU, it expects a Task Management Function Response PDU from
the target.
c. When the initiator sends a Text Request PDU, it expects a Text
Response PDU from the target.
d. When the initiator sends a Logout Request PDU, it expects a
Logout Response PDU from the target.
e. When the initiator sends a NOP-Out PDU as a ping request with
ITT != 0xffffffff and TTT = 0xffffffff, it expects a NOP-In PDU
from the target with the same ITT and TTT as in the ping
request.
<span class="grey">Ko & Nezhinsky Standards Track [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
The response from the target for any of the PDUs enumerated here may
alternatively be in the form of a Reject PDU sent before the task is
active, as described in Section 7.3 of [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
<span class="h5"><a class="selflink" id="section-8.1.1.2" href="#section-8.1.1.2">8.1.1.2</a>. Control-Type PDUs from the Initiator in the Unregulated but</span>
<span class="h5"> Expected Category</span>
For the control-type PDUs in the Unregulated but Expected category,
the amount of buffering resources required at the target can be
predetermined. The following is a list of the PDUs in this category:
a. SCSI Data-Out PDUs are used by the initiator to send
unsolicited data. The amount of buffer resources required by
the target can be determined using FirstBurstLength. Note that
SCSI Data-Out PDUs are not used for solicited data since the
R2T PDU, which is used for solicitation, is transformed into
RDMA Read operations by the iSER layer at the target. See
<a href="#section-7.3.4">Section 7.3.4</a>.
b. A NOP-Out PDU with TTT != 0xffffffff is sent as a ping response
by the initiator to the NOP-In PDU sent as a ping request by
the target.
<span class="h5"><a class="selflink" id="section-8.1.1.3" href="#section-8.1.1.3">8.1.1.3</a>. Control-Type PDUs from the Initiator in the Unregulated and</span>
<span class="h5"> Unexpected Category</span>
PDUs in the Unregulated and Unexpected category are PDUs with the
immediate flag set. The number of PDUs that are in this category and
can be sent by an initiator is controlled by the value of
MaxOutstandingUnexpectedPDUs declared by the target. (See <a href="#section-6.7">Section</a>
<a href="#section-6.7">6.7</a>.) After a PDU in this category is sent by the initiator, it is
outstanding until it is retired. At any time, the number of
outstanding unexpected PDUs MUST NOT exceed the value of
MaxOutstandingUnexpectedPDUs declared by the target.
The target uses the value of MaxOutstandingUnexpectedPDUs that it
declared to determine the amount of buffer resources required for
control-type PDUs in this category that can be sent by an initiator.
For the initiator, for each of the control-type PDUs that can be sent
in this category, the initiator MUST provision for the buffer
resources if required for the corresponding control-type PDU that can
be sent as a response from the target.
An outstanding PDU in this category is retired as follows. If the
CmdSN of the PDU sent by the initiator in this category is x, the PDU
is outstanding until the initiator sends a non-immediate control-type
<span class="grey">Ko & Nezhinsky Standards Track [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
PDU on the same connection with CmdSN = y (where y is at least x) and
the target responds with a control-type PDU on any connection where
ExpCmdSN is at least y+1.
When the number of outstanding unexpected control-type PDUs equals
MaxOutstandingUnexpectedPDUs, the iSCSI layer at the initiator MUST
NOT generate any unexpected PDUs, which otherwise it would have
generated, even if the unexpected PDU is intended for immediate
delivery.
<span class="h4"><a class="selflink" id="section-8.1.2" href="#section-8.1.2">8.1.2</a>. Flow Control for Control-Type PDUs from the Target</span>
Control-type PDUs that can be sent by a target and are expected by
the initiator are listed in the Regulated category. (See <a href="#section-8.1.1.1">Section</a>
<a href="#section-8.1.1.1">8.1.1.1</a>.)
For the control-type PDUs that can be sent by a target and are
unexpected by the initiator, the number is controlled by
MaxOutstandingUnexpectedPDUs declared by the initiator. (See <a href="#section-6.7">Section</a>
<a href="#section-6.7">6.7</a>.) After a PDU in this category is sent by a target, it is
outstanding until it is retired. At any time, the number of
outstanding unexpected PDUs MUST NOT exceed the value of
MaxOutstandingUnexpectedPDUs declared by the initiator. The
initiator uses the value of MaxOutstandingUnexpectedPDUs that it
declared to determine the amount of buffer resources required for
control-type PDUs in this category that can be sent by a target. The
following is a list of the PDUs in this category and the conditions
for retiring the outstanding PDU:
a. For an Asynchronous Message PDU with StatSN = x, the PDU is
outstanding until the initiator sends a control-type PDU with
ExpStatSN set to at least x+1.
b. For a Reject PDU with StatSN = x, which is sent after a task is
active, the PDU is outstanding until the initiator sends a
control-type PDU with ExpStatSN set to at least x+1.
c. For a NOP-In PDU with ITT = 0xffffffff and StatSN = x, the PDU
is outstanding until the initiator responds with a control-type
PDU on the same connection where ExpStatSN is at least x+1.
But if the NOP-In PDU is sent as a ping request with
TTT != 0xffffffff, the PDU can also be retired when the
initiator sends a NOP-Out PDU with the same ITT and TTT as in
the ping request. Note that when a target sends a NOP-In PDU
as a ping request, it must provision a buffer for the NOP-Out
PDU sent as a ping response from the initiator.
<span class="grey">Ko & Nezhinsky Standards Track [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
When the number of outstanding unexpected control-type PDUs equals
MaxOutstandingUnexpectedPDUs, the iSCSI layer at the target MUST NOT
generate any unexpected PDUs, which otherwise it would have
generated, even if its intent is to indicate an iSCSI error condition
(e.g., Asynchronous Message, Reject). Task timeouts, as in the
initiator's waiting for a command completion or other connection and
session-level exceptions, will ensure that correct operational
behavior will result in these cases despite not generating the PDU.
This rule overrides any other requirements elsewhere that require
that a Reject PDU MUST be sent.
(Implementation note: SCSI task timeout and recovery can be a
lengthy process and hence SHOULD be avoided by proper provisioning of
resources.)
(Implementation note: To ensure that the initiator has a means to
inform the target that outstanding PDUs have been retired, the target
should reserve the last unexpected control-type PDU allowable by the
value of MaxOutstandingUnexpectedPDUs declared by the initiator for
sending a NOP-In ping request with TTT != 0xffffffff to allow the
initiator to return the NOP-Out ping response with the current
ExpStatSN.)
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Flow Control for RDMA Read Resources</span>
If iSERHelloRequired is negotiated to "Yes", then the total number of
RDMA Read operations that can be active simultaneously on an
iSCSI/iSER connection depends on the amount of resources allocated as
declared in the iSER Hello exchange described in <a href="#section-5.1.3">Section 5.1.3</a>.
Exceeding the number of RDMA Read operations allowed on a connection
will result in the connection being terminated by the RCaP layer.
The iSER layer at the target maintains the iSER-ORD to keep track of
the maximum number of RDMA Read Requests that can be issued by the
iSER layer on a particular RCaP Stream.
During connection setup (see <a href="#section-5.1">Section 5.1</a>), iSER-IRD is known at the
initiator and iSER-ORD is known at the target after the iSER layers
at the initiator and the target have respectively allocated the
connection resources necessary to support RCaP, as directed by the
Allocate_Connection_Resources Operational Primitive from the iSCSI
layer before the end of the iSCSI Login Phase. In the Full Feature
Phase, if iSERHelloRequired is negotiated to "Yes", then the first
message sent by the initiator is the iSER Hello Message (see <a href="#section-9.3">Section</a>
<a href="#section-9.3">9.3</a>), which contains the value of iSER-IRD. In response to the iSER
Hello Message, the target sends the iSER HelloReply Message (see
<a href="#section-9.4">Section 9.4</a>), which contains the value of iSER-ORD. The iSER layer
at both the initiator and the target MAY adjust (lower) the resources
associated with iSER-IRD and iSER-ORD, respectively, to match the
<span class="grey">Ko & Nezhinsky Standards Track [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
iSER-ORD value declared in the HelloReply Message. The iSER layer at
the target MUST control the flow of the RDMA Read Request Messages so
that it does not exceed the iSER-ORD value at the target.
If iSERHelloRequired is negotiated to "No", then the maximum number
of RDMA Read operations that can be active is negotiated via other
means outside the scope of this document. For example, in
InfiniBand, iSER connection setup uses InfiniBand Connection Manager
(CM) Management Datagrams (MADs), with additional iSER information
exchanged in the private data.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. STag Management</span>
An STag is an identifier of a Tagged Buffer used in an RDMA
operation. If the STags are exposed on the wire by being Advertised
in the iSER header or declared in the header of an RCaP Message, then
the allocation and the subsequent invalidation of the STags are as
specified in this document.
<span class="h4"><a class="selflink" id="section-8.3.1" href="#section-8.3.1">8.3.1</a>. Allocation of STags</span>
When the iSCSI layer at the initiator invokes the Send_Control
Operational Primitive to request the iSER layer at the initiator to
process a SCSI Command, zero, one, or two STags may be allocated by
the iSER layer. See <a href="#section-7.3.1">Section 7.3.1</a> for details. The number of STags
allocated depends on whether the command is unidirectional or
bidirectional and whether or not solicited write data transfer is
involved.
When the iSCSI layer at the initiator invokes the Send_Control
Operational Primitive to request the iSER layer at the initiator to
process a Task Management Function Request with the TASK REASSIGN
function, besides allocating zero, one, or two STags, the iSER layer
MUST invalidate the existing STags (if any) associated with the ITT.
See <a href="#section-7.3.3">Section 7.3.3</a> for details.
The iSER layer at the target allocates a local Data Sink STag when
the iSCSI layer at the target invokes the Get_Data Operational
Primitive to request the iSER layer to process an R2T PDU. See
<a href="#section-7.3.6">Section 7.3.6</a> for details.
<span class="h4"><a class="selflink" id="section-8.3.2" href="#section-8.3.2">8.3.2</a>. Invalidation of STags</span>
The invalidation of the STags at the initiator at the completion of a
unidirectional or bidirectional command when the associated SCSI
Response PDU is sent by the target is described in <a href="#section-7.3.2">Section 7.3.2</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
When a unidirectional or bidirectional command concludes without the
associated SCSI Response PDU being sent by the target, the iSCSI
layer at the initiator MUST request the iSER layer at the initiator
to invalidate the STags by invoking the Deallocate_Task_Resources
Operational Primitive qualified with ITT. In response, the iSER
layer at the initiator MUST locate the STags (if any) in the Local
Mapping. The iSER layer at the initiator MUST invalidate the STags
(if any) and the Local Mapping.
For an RDMA Read operation used to realize a SCSI Write data
transfer, the iSER layer at the target SHOULD invalidate the Data
Sink STag at the conclusion of the RDMA Read operation referencing
the Data Sink STag (to permit the immediate reuse of buffer
resources).
For an RDMA Write operation used to realize a SCSI Read data
transfer, the Data Source STag at the target is not declared to the
initiator and is not exposed on the wire. Invalidation of the STag
is thus not specified.
When a unidirectional or bidirectional command concludes without the
associated SCSI Response PDU being sent by the target, the iSCSI
layer at the target MUST request the iSER layer at the target to
invalidate the STags by invoking the Deallocate_Task_Resources
Operational Primitive qualified with ITT. In response, the iSER
layer at the target MUST locate the local STags (if any) in the Local
Mapping. The iSER layer at the target MUST invalidate the local
STags (if any) and the Local Mapping.
<span class="grey">Ko & Nezhinsky Standards Track [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. iSER Control and Data Transfer</span>
For iSCSI data-type PDUs (see <a href="#section-7.1">Section 7.1</a>), the iSER layer uses RDMA
Read and RDMA Write operations to transfer the solicited data. For
iSCSI control-type PDUs (see <a href="#section-7.2">Section 7.2</a>), the iSER layer uses Send
Messages of RCaP.
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. iSER Header Format</span>
An iSER header MUST be present in every Send Message of RCaP. The
iSER header is located in the first 28 bytes of the message payload
of the Send Message of RCaP, as shown in Figure 2.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Opcode| Opcode Specific Fields |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Opcode Specific Fields (32 bits) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Opcode Specific Fields (64 bits) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Opcode Specific Fields (32 bits) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Opcode Specific Fields (64 bits) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 2: iSER Header Format
Opcode - Operation Code: 4 bits
The Opcode field identifies the type of iSER Messages:
0001b = iSCSI control-type PDU
0010b = iSER Hello Message
0011b = iSER HelloReply Message
All other Opcodes are unassigned.
<span class="grey">Ko & Nezhinsky Standards Track [Page 64]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-65" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. iSER Header Format for iSCSI Control-Type PDU</span>
The iSER layer uses Send Messages of RCaP to transfer iSCSI control-
type PDUs (see <a href="#section-7.2">Section 7.2</a>). The message payload of each of the Send
Messages of RCaP used for transferring an iSER Message contains an
iSER Header followed by an iSCSI control-type PDU.
The iSER header in a Send Message of RCaP carrying an iSCSI control-
type PDU MUST have the format as described in Figure 3.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |W|R| |
| 0001b |S|S| Reserved |
| |V|V| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Write STag |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Write Base Offset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Read STag |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Read Base Offset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 3: iSER Header Format for iSCSI Control-Type PDU
WSV - Write STag Valid flag: 1 bit
This flag indicates the validity of the Write STag field and the
Write Base Offset field of the iSER Header. If set to one, the
Write STag field and the Write Base Offset field in this iSER
Header are valid. If set to zero, the Write STag field and the
Write Base Offset field in this iSER Header MUST be ignored at the
receiver. The Write STag Valid flag is set to one when there is
solicited data to be transferred for a SCSI Write or bidirectional
command, or when there are non-immediate unsolicited and solicited
data to be transferred for the referenced task specified in a Task
Management Function Request with the TASK REASSIGN function.
RSV - Read STag Valid flag: 1 bit
This flag indicates the validity of the Read STag field and the
Read Base Offset field of the iSER Header. If set to one, the
Read STag field and the Read Base Offset field in this iSER Header
<span class="grey">Ko & Nezhinsky Standards Track [Page 65]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-66" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
are valid. If set to zero, the Read STag field and the Read Base
Offset field in this iSER Header MUST be ignored at the receiver.
The Read STag Valid flag is set to one for a SCSI Read or
bidirectional command, or a Task Management Function Request with
the TASK REASSIGN function.
Write STag - Write Steering Tag: 32 bits
This field contains the Write STag when the Write STag Valid flag
is set to one. For a SCSI Write or bidirectional command, the
Write STag is used to Advertise the initiator's I/O Buffer
containing the solicited data. For a Task Management Function
Request with the TASK REASSIGN function, the Write STag is used to
Advertise the initiator's I/O Buffer containing the non-immediate
unsolicited data and solicited data. This Write STag is used as
the Data Source STag in the resultant RDMA Read operation(s).
When the Write STag Valid flag is set to zero, this field MUST be
set to zero and ignored on receive.
Write Base Offset: 64 bits
This field contains the Base Offset associated with the I/O Buffer
for the SCSI Write command when the Write STag Valid flag is set
to one. When the Write STag Valid flag is set to zero, this field
MUST be set to zero and ignored on receive.
Read STag - Read Steering Tag: 32 bits
This field contains the Read STag when the Read STag Valid flag is
set to one. The Read STag is used to Advertise the initiator's
Read I/O Buffer of a SCSI Read or bidirectional command, or a Task
Management Function Request with the TASK REASSIGN function. This
Read STag is used as the Data Sink STag in the resultant RDMA
Write operation(s). When the Read STag Valid flag is zero, this
field MUST be set to zero and ignored on receive.
Read Base Offset: 64 bits
This field contains the Base Offset associated with the I/O Buffer
for the SCSI Read command when the Read STag Valid flag is set to
one. When the Read STag Valid flag is set to zero, this field
MUST be set to zero and ignored on receive.
Reserved:
Reserved fields MUST be set to zero on transmit and MUST be
ignored on receive.
<span class="grey">Ko & Nezhinsky Standards Track [Page 66]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-67" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. iSER Header Format for iSER Hello Message</span>
An iSER Hello Message MUST only contain the iSER header, which MUST
have the format as described in Figure 4. If iSERHelloRequired is
negotiated to "Yes", then iSER Hello Message is the first iSER
Message sent on the RCaP Stream from the iSER layer at the initiator
to the iSER layer at the target.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | | | | |
| 0010b | Rsvd | MaxVer| MinVer| iSER-IRD |
| | | | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 4: iSER Header Format for iSER Hello Message
MaxVer - Maximum Version: 4 bits
This field specifies the maximum version of the iSER protocol
supported. It MUST be set to 10 to indicate the version of the
specification described in this document.
MinVer - Minimum Version: 4 bits
This field specifies the minimum version of the iSER protocol
supported. It MUST be set to 10 to indicate the version of the
specification described in this document.
iSER-IRD: 16 bits
This field contains the value of the iSER-IRD at the initiator.
Reserved (Rsvd):
Reserved fields MUST be set to zero on transmit and MUST be
ignored on receive.
<span class="grey">Ko & Nezhinsky Standards Track [Page 67]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-68" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="section-9.4" href="#section-9.4">9.4</a>. iSER Header Format for iSER HelloReply Message</span>
An iSER HelloReply Message MUST only contain the iSER header, which
MUST have the format as described in Figure 5. If iSERHelloRequired
is negotiated to "Yes", then the iSER HelloReply Message is the first
iSER Message sent on the RCaP Stream from the iSER layer at the
target to the iSER layer at the initiator.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | |R| | | |
| 0011b |Rsvd |E| MaxVer| CurVer| iSER-ORD |
| | |J| | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 5: iSER Header Format for iSER HelloReply Message
REJ - Reject flag: 1 bit
This flag indicates whether the target is rejecting this
connection. If set to one, the target is rejecting the
connection.
MaxVer - Maximum Version: 4 bits
This field specifies the maximum version of the iSER protocol
supported. It MUST be set to 10 to indicate the version of the
specification described in this document.
CurVer - Current Version: 4 bits
This field specifies the current version of the iSER protocol
supported. It MUST be set to 10 to indicate the version of the
specification described in this document.
<span class="grey">Ko & Nezhinsky Standards Track [Page 68]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-69" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
iSER-ORD: 16 bits
This field contains the value of the iSER-ORD at the target.
Reserved (Rsvd):
Reserved fields MUST be set to zero on transmit and MUST be
ignored on receive.
<span class="h3"><a class="selflink" id="section-9.5" href="#section-9.5">9.5</a>. SCSI Data Transfer Operations</span>
The iSER layer at the initiator and the iSER layer at the target
handle each SCSI Write, SCSI Read, and bidirectional operation as
described below.
<span class="h4"><a class="selflink" id="section-9.5.1" href="#section-9.5.1">9.5.1</a>. SCSI Write Operation</span>
The iSCSI layer at the initiator MUST invoke the Send_Control
Operational Primitive to request the iSER layer at the initiator to
send the SCSI Write Command. The iSER layer at the initiator MUST
request the RCaP layer to transmit a Send Message with the message
payload consisting of the iSER header followed by the SCSI Command
PDU and immediate data (if any). The SendSE Message should be used
if supported by the RCaP layer (e.g., iWARP). If there is solicited
data, the iSER layer MUST Advertise the Write STag and the Base
Offset in the iSER header of the Send Message, as described in
<a href="#section-9.2">Section 9.2</a>. Upon receiving the Send Message, the iSER layer at the
target MUST notify the iSCSI layer at the target by invoking the
Control_Notify Operational Primitive qualified with the SCSI Command
PDU. See <a href="#section-7.3.1">Section 7.3.1</a> for details on the handling of the SCSI Write
Command.
For the non-immediate unsolicited data, the iSCSI layer at the
initiator MUST invoke a Send_Control Operational Primitive qualified
with the SCSI Data-Out PDU. Upon receiving each Send Message
containing the non-immediate unsolicited data, the iSER layer at the
target MUST notify the iSCSI layer at the target by invoking the
Control_Notify Operational Primitive qualified with the SCSI Data-Out
PDU. See <a href="#section-7.3.4">Section 7.3.4</a> for details on the handling of the SCSI Data-
Out PDU.
For the solicited data, when the iSCSI layer at the target has an I/O
Buffer available, it MUST invoke the Get_Data Operational Primitive
qualified with the R2T PDU. See <a href="#section-7.3.6">Section 7.3.6</a> for details on the
handling of the R2T PDU.
<span class="grey">Ko & Nezhinsky Standards Track [Page 69]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-70" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
When the data transfer associated with this SCSI Write operation is
complete, the iSCSI layer at the target MUST invoke the Send_Control
Operational Primitive when it is ready to send the SCSI Response PDU.
Upon receiving a Send Message containing the SCSI Response PDU, the
iSER layer at the initiator MUST notify the iSCSI layer at the
initiator by invoking the Control_Notify Operational Primitive
qualified with the SCSI Response PDU. See <a href="#section-7.3.2">Section 7.3.2</a> for details
on the handling of the SCSI Response PDU.
<span class="h4"><a class="selflink" id="section-9.5.2" href="#section-9.5.2">9.5.2</a>. SCSI Read Operation</span>
The iSCSI layer at the initiator MUST invoke the Send_Control
Operational Primitive to request the iSER layer at the initiator to
send the SCSI Read Command. The iSER layer at the initiator MUST
request the RCaP layer to transmit a Send Message with the message
payload consisting of the iSER header followed by the SCSI Command
PDU. The SendSE Message should be used if supported by the RCaP
layer (e.g., iWARP). The iSER layer at the initiator MUST Advertise
the Read STag and the Base Offset in the iSER header of the Send
Message, as described in <a href="#section-9.2">Section 9.2</a>. Upon receiving the Send
Message, the iSER layer at the target MUST notify the iSCSI layer at
the target by invoking the Control_Notify Operational Primitive
qualified with the SCSI Command PDU. See <a href="#section-7.3.1">Section 7.3.1</a> for details
on the handling of the SCSI Read Command.
When the requested SCSI data is available in the I/O Buffer, the
iSCSI layer at the target MUST invoke the Put_Data Operational
Primitive qualified with the SCSI Data-In PDU. See <a href="#section-7.3.5">Section 7.3.5</a> for
details on the handling of the SCSI Data-In PDU.
When the data transfer associated with this SCSI Read operation is
complete, the iSCSI layer at the target MUST invoke the Send_Control
Operational Primitive when it is ready to send the SCSI Response PDU.
The SendInvSE Message should be used if supported by the RCaP layer
(e.g., iWARP). Upon receiving the Send Message containing the SCSI
Response PDU, the iSER layer at the initiator MUST notify the iSCSI
layer at the initiator by invoking the Control_Notify Operational
Primitive qualified with the SCSI Response PDU. See <a href="#section-7.3.2">Section 7.3.2</a>
for details on the handling of the SCSI Response PDU.
<span class="h4"><a class="selflink" id="section-9.5.3" href="#section-9.5.3">9.5.3</a>. Bidirectional Operation</span>
The initiator and the target handle the SCSI Write and the SCSI Read
portions of this bidirectional operation the same as described in
Sections <a href="#section-9.5.1">9.5.1</a> and <a href="#section-9.5.2">9.5.2</a>, respectively.
<span class="grey">Ko & Nezhinsky Standards Track [Page 70]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-71" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. iSER Error Handling and Recovery</span>
RCaP provides the iSER layer with reliable in-order delivery.
Therefore, the error management needs of an iSER-assisted connection
are somewhat different than those of a Traditional iSCSI connection.
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Error Handling</span>
iSER error handling is described in the following sections,
classified loosely based on the sources of errors:
1. Those originating at the transport layer (e.g., TCP).
2. Those originating at the RCaP layer.
3. Those originating at the iSER layer.
4. Those originating at the iSCSI layer.
<span class="h4"><a class="selflink" id="section-10.1.1" href="#section-10.1.1">10.1.1</a>. Errors in the Transport Layer</span>
If the transport layer is TCP, then TCP packets with detected errors
are silently dropped by the TCP layer and result in retransmission at
the TCP layer. This has no impact on the iSER layer. However,
connection loss (e.g., link failure) and unexpected termination
(e.g., TCP graceful or abnormal close without the iSCSI Logout
exchanges) at the transport layer will cause the iSCSI/iSER
connection to be terminated as well.
<span class="h5"><a class="selflink" id="section-10.1.1.1" href="#section-10.1.1.1">10.1.1.1</a>. Failure in the Transport Layer Before RCaP Mode is Enabled</span>
If the connection is lost or terminated before the iSCSI layer
invokes the Allocate_Connection_Resources Operational Primitive, the
login process is terminated and no further action is required.
If the connection is lost or terminated after the iSCSI layer has
invoked the Allocate_Connection_Resources Operational Primitive, then
the iSCSI layer MUST request the iSER layer to deallocate all
connection resources by invoking the Deallocate_Connection_Resources
Operational Primitive.
<span class="grey">Ko & Nezhinsky Standards Track [Page 71]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-72" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h5"><a class="selflink" id="section-10.1.1.2" href="#section-10.1.1.2">10.1.1.2</a>. Failure in the Transport Layer After RCaP Mode is Enabled</span>
If the connection is lost or terminated after the iSCSI layer has
invoked the Enable_Datamover Operational Primitive, the iSER layer
MUST notify the iSCSI layer of the connection loss by invoking the
Connection_Terminate_Notify Operational Primitive. Prior to invoking
the Connection_Terminate_Notify Operational Primitive, the iSER layer
MUST perform the actions described in <a href="#section-5.2.3.2">Section 5.2.3.2</a>.
<span class="h4"><a class="selflink" id="section-10.1.2" href="#section-10.1.2">10.1.2</a>. Errors in the RCaP Layer</span>
The RCaP layer does not have error recovery operations built in. If
errors are detected at the RCaP layer, the RCaP layer will terminate
the RCaP Stream and the associated connection.
<span class="h5"><a class="selflink" id="section-10.1.2.1" href="#section-10.1.2.1">10.1.2.1</a>. Errors Detected in the Local RCaP Layer</span>
If an error is encountered at the local RCaP layer, the RCaP layer
MAY send a Send Message to the Remote Peer to report the error if
possible. (For iWARP, see [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>] for the list of errors where a
Terminate Message is sent.) The RCaP layer is responsible for
terminating the connection. After the RCaP layer notifies the iSER
layer that the connection is terminated, the iSER layer MUST notify
the iSCSI layer by invoking the Connection_Terminate_Notify
Operational Primitive. Prior to invoking the
Connection_Terminate_Notify Operational Primitive, the iSER layer
MUST perform the actions described in <a href="#section-5.2.3.2">Section 5.2.3.2</a>.
<span class="h5"><a class="selflink" id="section-10.1.2.2" href="#section-10.1.2.2">10.1.2.2</a>. Errors Detected in the RCaP Layer at the Remote Peer</span>
If an error is encountered at the RCaP layer at the Remote Peer, the
RCaP layer at the Remote Peer may send a Send Message to report the
error if possible. If it is unable to send a Send Message, the
connection is terminated. This is treated the same as a failure in
the transport layer after RDMA is enabled, as described in <a href="#section-10.1.1.2">Section</a>
<a href="#section-10.1.1.2">10.1.1.2</a>.
If an error is encountered at the RCaP layer at the Remote Peer and
it is able to send a Send Message, the RCaP layer at the Remote Peer
is responsible for terminating the connection. After the local RCaP
layer notifies the iSER layer that the connection is terminated, the
iSER layer MUST notify the iSCSI layer by invoking the
Connection_Terminate_Notify Operational Primitive. Prior to invoking
the Connection_Terminate_Notify Operational Primitive, the iSER layer
MUST perform the actions described in <a href="#section-5.2.3.2">Section 5.2.3.2</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 72]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-73" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-10.1.3" href="#section-10.1.3">10.1.3</a>. Errors in the iSER Layer</span>
The error handling due to errors at the iSER layer is described in
the following sections.
<span class="h5"><a class="selflink" id="section-10.1.3.1" href="#section-10.1.3.1">10.1.3.1</a>. Insufficient Connection Resources to Support RCaP at</span>
<span class="h5"> Connection Setup</span>
After the iSCSI layer at the initiator invokes the
Allocate_Connection_Resources Operational Primitive during the iSCSI
login negotiation phase, if the iSER layer at the initiator fails to
allocate the connection resources necessary to support RCaP, it MUST
return a status of failure to the iSCSI layer at the initiator. The
iSCSI layer at the initiator MUST terminate the connection as
described in <a href="#section-5.2.3.1">Section 5.2.3.1</a>.
After the iSCSI layer at the target invokes the
Allocate_Connection_Resources Operational Primitive during the iSCSI
login negotiation phase, if the iSER layer at the target fails to
allocate the connection resources necessary to support RCaP, it MUST
return a status of failure to the iSCSI layer at the target. The
iSCSI layer at the target MUST send a Login Response with a Status-
Class of 0x03 (Target Error), and a Status-Code of 0x02 (Out of
Resources). The iSCSI layers at the initiator and the target MUST
terminate the connection as described in <a href="#section-5.2.3.1">Section 5.2.3.1</a>.
<span class="h5"><a class="selflink" id="section-10.1.3.2" href="#section-10.1.3.2">10.1.3.2</a>. iSER Negotiation Failures</span>
If iSERHelloRequired is negotiated to "Yes" and the RCaP or iSER
related parameters declared by the initiator in the iSER Hello
Message are unacceptable to the iSER layer at the target, the iSER
layer at the target MUST set the Reject (REJ) flag, as described in
<a href="#section-9.4">Section 9.4</a>, in the iSER HelloReply Message. The following are the
cases when the iSER layer MUST set the REJ flag to 1 in the
HelloReply Message:
* The initiator-declared iSER-IRD value is greater than 0, and the
target-declared iSER-ORD value is 0.
* The initiator-supported and the target-supported iSER protocol
versions do not overlap.
After requesting the RCaP layer to send the iSER HelloReply Message,
the handling of the error situation is the same as that for iSER
format errors as described in <a href="#section-10.1.3.3">Section 10.1.3.3</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 73]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-74" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h5"><a class="selflink" id="section-10.1.3.3" href="#section-10.1.3.3">10.1.3.3</a>. iSER Format Errors</span>
The following types of errors in an iSER header are considered format
errors:
* Illegal contents of any iSER header field
* Inconsistent field contents in an iSER header
* Length error for an iSER Hello or HelloReply Message (see Sections
9.3 and 9.4)
When a format error is detected, the following events MUST occur in
the specified sequence:
1. The iSER layer MUST request the RCaP layer to terminate the RCaP
Stream. The RCaP layer MUST terminate the associated connection.
2. The iSER layer MUST notify the iSCSI layer of the connection
termination by invoking the Connection_Terminate_Notify
Operational Primitive. Prior to invoking the
Connection_Terminate_Notify Operational Primitive, the iSER layer
MUST perform the actions described in <a href="#section-5.2.3.2">Section 5.2.3.2</a>.
<span class="h5"><a class="selflink" id="section-10.1.3.4" href="#section-10.1.3.4">10.1.3.4</a>. iSER Protocol Errors</span>
If iSERHelloRequired is negotiated to "Yes", then the first iSER
Message sent by the iSER layer at the initiator MUST be the iSER
Hello Message (see <a href="#section-9.3">Section 9.3</a>). In this case the first iSER Message
sent by the iSER layer at the target MUST be the iSER HelloReply
Message (see <a href="#section-9.4">Section 9.4</a>). Failure to send the iSER Hello or
HelloReply Message, as indicated by the wrong Opcode in the iSER
header, is a protocol error. Conversely, if the iSER Hello Message
is sent by the iSER layer at the initiator when iSERHelloRequired is
negotiated to "No", the iSER layer at the target MAY treat this as a
protocol error or respond with an iSER HelloReply Message. The
handling of iSER protocol errors is the same as that for iSER format
errors as described in <a href="#section-10.1.3.3">Section 10.1.3.3</a>.
If the sending side of an iSER-enabled connection acts in a manner
not permitted by the negotiated or declared login/text operational
key values as described in <a href="#section-6">Section 6</a>, this is a protocol error and
the receiving side MAY handle this the same as for iSER format errors
as described in <a href="#section-10.1.3.3">Section 10.1.3.3</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 74]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-75" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-10.1.4" href="#section-10.1.4">10.1.4</a>. Errors in the iSCSI Layer</span>
The error handling due to errors at the iSCSI layer is described in
the following sections. For error recovery, see <a href="#section-10.2">Section 10.2</a>.
<span class="h5"><a class="selflink" id="section-10.1.4.1" href="#section-10.1.4.1">10.1.4.1</a>. iSCSI Format Errors</span>
When an iSCSI format error is detected, the iSCSI layer MUST request
the iSER layer to terminate the RCaP Stream by invoking the
Connection_Terminate Operational Primitive. For more details on
connection termination, see <a href="#section-5.2.3.1">Section 5.2.3.1</a>.
<span class="h5"><a class="selflink" id="section-10.1.4.2" href="#section-10.1.4.2">10.1.4.2</a>. iSCSI Digest Errors</span>
In the iSER-assisted mode, the iSCSI layer will not see any digest
error because both the HeaderDigest and the DataDigest keys are
negotiated to "None".
<span class="h5"><a class="selflink" id="section-10.1.4.3" href="#section-10.1.4.3">10.1.4.3</a>. iSCSI Sequence Errors</span>
For Traditional iSCSI, sequence errors are caused by dropped PDUs due
to header or data digest errors. Since digests are not used in iSER-
assisted mode and the RCaP layer will deliver all messages in the
order they were sent, sequence errors will not occur in iSER-assisted
mode.
<span class="h5"><a class="selflink" id="section-10.1.4.4" href="#section-10.1.4.4">10.1.4.4</a>. iSCSI Protocol Error</span>
When the iSCSI layer handles certain protocol errors by dropping the
connection, the error handling is the same as that for iSCSI format
errors as described in <a href="#section-10.1.4.1">Section 10.1.4.1</a>.
When the iSCSI layer uses the iSCSI Reject PDU and response codes to
handle certain other protocol errors, no special handling at the iSER
layer is required.
<span class="h5"><a class="selflink" id="section-10.1.4.5" href="#section-10.1.4.5">10.1.4.5</a>. SCSI Timeouts and Session Errors</span>
This is handled at the iSCSI layer, and no special handling at the
iSER layer is required.
<span class="h5"><a class="selflink" id="section-10.1.4.6" href="#section-10.1.4.6">10.1.4.6</a>. iSCSI Negotiation Failures</span>
For negotiation failures that happen during the Login Phase at the
initiator after the iSCSI layer has invoked the
Allocate_Connection_Resources Operational Primitive and before the
Enable_Datamover Operational Primitive has been invoked, the iSCSI
layer MUST request the iSER layer to deallocate all connection
<span class="grey">Ko & Nezhinsky Standards Track [Page 75]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-76" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
resources by invoking the Deallocate_Connection_Resources Operational
Primitive. The iSCSI layer at the initiator MUST terminate the
connection.
For negotiation failures during the Login Phase at the target, the
iSCSI layer can use a Login Response with a Status-Class other than 0
(success) to terminate the Login Phase. If the iSCSI layer has
invoked the Allocate_Connection_Resources Operational Primitive and
has not yet invoked the Enable_Datamover Operational Primitive, the
iSCSI layer at the target MUST request the iSER layer at the target
to deallocate all connection resources by invoking the
Deallocate_Connection_Resources Operational Primitive. The iSCSI
layer at both the initiator and the target MUST terminate the
connection.
During the iSCSI Login Phase, if the iSCSI layer at the initiator
receives a Login Response from the target with a Status-Class other
than 0 (Success) after the iSCSI layer at the initiator has invoked
the Allocate_Connection_Resources Operational Primitive, the iSCSI
layer MUST request the iSER layer to deallocate all connection
resources by invoking the Deallocate_Connection_Resources Operational
Primitive. The iSCSI layer MUST terminate the connection in this
case.
For negotiation failures during the Full Feature Phase, the error
handling is left to the iSCSI layer and no special handling at the
iSER layer is required.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Error Recovery</span>
Error recovery requirements of iSCSI/iSER are the same as that of
Traditional iSCSI. All three ErrorRecoveryLevels as defined in
[<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] are supported in iSCSI/iSER.
* For ErrorRecoveryLevel 0, session recovery is handled by iSCSI and
no special handling by the iSER layer is required.
* For ErrorRecoveryLevel 1, see <a href="#section-10.2.1">Section 10.2.1</a> on PDU Recovery.
* For ErrorRecoveryLevel 2, see <a href="#section-10.2.2">Section 10.2.2</a> on Connection
Recovery.
The iSCSI layer may invoke the Notice_Key_Values Operational
Primitive during connection setup to request the iSER layer to take
note of the value of the operational ErrorRecoveryLevel, as described
in Sections <a href="#section-5.1.1">5.1.1</a> and <a href="#section-5.1.2">5.1.2</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 76]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-77" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h4"><a class="selflink" id="section-10.2.1" href="#section-10.2.1">10.2.1</a>. PDU Recovery</span>
As described in Sections <a href="#section-10.1.4.2">10.1.4.2</a> and <a href="#section-10.1.4.3">10.1.4.3</a>, digest and sequence
errors will not occur in the iSER-assisted mode. If the RCaP layer
detects an error, it will close the iSCSI/iSER connection, as
described in <a href="#section-10.1.2">Section 10.1.2</a>. Therefore, PDU recovery is not useful
in the iSER-assisted mode.
The iSCSI layer at the initiator SHOULD disable iSCSI timeout-driven
PDU retransmissions.
<span class="h4"><a class="selflink" id="section-10.2.2" href="#section-10.2.2">10.2.2</a>. Connection Recovery</span>
The iSCSI layer at the initiator MAY reassign connection allegiance
for non-immediate commands that are still in progress and are
associated with the failed connection by using a Task Management
Function Request with the TASK REASSIGN function. See <a href="#section-7.3.3">Section 7.3.3</a>
for more details.
When the iSCSI layer at the initiator does a task reassignment for a
SCSI Write command, it MUST qualify the Send_Control Operational
Primitive invocation with DataDescriptorOut, which defines the I/O
Buffer for both the non-immediate unsolicited data and the solicited
data. This allows the iSCSI layer at the target to use recovery R2Ts
to request data originally sent as unsolicited and solicited from the
initiator.
When the iSCSI layer at the target accepts a reassignment request for
a SCSI Read command, it MUST request the iSER layer to process SCSI
Data-In for all unacknowledged data by invoking the Put_Data
Operational Primitive. See <a href="#section-7.3.5">Section 7.3.5</a> on the handling of SCSI
Data-In.
When the iSCSI layer at the target accepts a reassignment request for
a SCSI Write command, it MUST request the iSER layer to process a
recovery R2T for any non-immediate unsolicited data and any solicited
data sequences that have not been received by invoking the Get_Data
Operational Primitive. See <a href="#section-7.3.6">Section 7.3.6</a> on the handling of Ready To
Transfer (R2T).
The iSCSI layer at the target MUST NOT issue recovery R2Ts on an
iSCSI/iSER connection for a task for which the connection allegiance
was never reassigned. The iSER layer at the target MAY reject such a
recovery R2T received via the Get_Data Operational Primitive
invocation from the iSCSI layer at the target, with an appropriate
error code.
<span class="grey">Ko & Nezhinsky Standards Track [Page 77]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-78" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
The iSER layer at the target will process the requests invoked by the
Put_Data and Get_Data Operational Primitives for a reassigned task in
the same way as for the original commands.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Security Considerations</span>
When iSER is layered on top of an RCaP layer and provides the RDMA
extensions to the iSCSI protocol, the security considerations of iSER
are the same as that of the underlying RCaP layer. For iWARP, this
is described in [<a href="#ref-RDMAP" title=""A Remote Direct Memory Access Protocol Specification"">RDMAP</a>] and [<a href="#ref-RDDPSEC" title=""Direct Data Placement Protocol (DDP) / Remote Direct Memory Access Protocol (RDMAP) Security"">RDDPSEC</a>], plus the updates to both of
those RFCs that are contained in [<a href="#ref-IPSEC-IPS" title=""Securing Block Storage Protocols over IP: RFC 3723 Requirements Update for IPsec v3"">IPSEC-IPS</a>].
Since iSER-assisted iSCSI protocol is still functionally iSCSI from a
security considerations perspective, all of the iSCSI security
requirements as described in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] apply. If iSER is layered on
top of a non-IP-based RCaP layer, all the security protocol
mechanisms applicable to that RCaP layer are also applicable to an
iSCSI/iSER connection. If iSER is layered on top of a non-IP
protocol, the IPsec mechanism as specified in [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>] MUST be
implemented at any point where the iSER protocol enters the IP
network (e.g., via gateways), and the non-IP protocol SHOULD
implement (optional to use) a packet-by-packet security protocol
equal in strength to the IPsec mechanism specified by [<a href="#ref-iSCSI" title=""Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)"">iSCSI</a>].
In order to protect target RCaP connection resources from possible
resource exhaustion attacks, allocation of such resources for a new
connection MUST be delayed until it is reasonably certain that the
new connection is not part of a resource exhaustion attack (e.g.,
until after the SecurityNegotiation stage of Login); see <a href="#section-5.1.2">Section</a>
<a href="#section-5.1.2">5.1.2</a>.
A valid STag exposes I/O Buffer resources to the network for access
via the RCaP. The security measures for the RCAP and iSER described
in the above paragraphs can be used to protect data in an I/O buffer
from undesired disclosure or modification, and these measures are of
heightened importance for implementations that retain (e.g., cache)
STags for use in multiple tasks (e.g., iSCSI I/O operations) because
the resources are exposed to the network for a longer period of time.
A complementary means of controlling I/O Buffer resource exposure is
invalidation of the STag after completion of the associated task, as
specified in <a href="#section-1.5.1">Section 1.5.1</a>. The use of Send with Invalidate messages
(which cause remote STag invalidation) is OPTIONAL, therefore the
iSER layer MUST NOT rely on use of a Send with Invalidate by its
Remote Peer to cause local STag invalidation. If an STag is expected
to be invalid after completion of a task, the iSER layer MUST check
the STag and invalidate it if it is still valid.
<span class="grey">Ko & Nezhinsky Standards Track [Page 78]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-79" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. IANA Considerations</span>
IANA has added the following entries to the "iSCSI Login/Text Keys"
registry:
MaxAHSLength, <a href="./rfc7145">RFC 7145</a>
TaggedBufferForSolicitedDataOnly, <a href="./rfc7145">RFC 7145</a>
iSERHelloRequired, <a href="./rfc7145">RFC 7145</a>
IANA has updated the following entries in the "iSCSI Login/Text Keys"
registry to reference this RFC.
InitiatorRecvDataSegmentLength
MaxOutstandingUnexpectedPDUs
RDMAExtensions
TargetRecvDataSegmentLength
IANA has also changed the reference to <a href="./rfc5046">RFC 5046</a> for the "iSCSI
Login/Text Keys" registry to refer to this RFC.
IANA has updated the registrations of the iSER Opcodes 1-3 in the
"iSER Opcodes" registry to reference this RFC. IANA has also changed
the reference to <a href="./rfc5046">RFC 5046</a> for the "iSER Opcodes" registry to refer to
this RFC.
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. References</span>
<span class="h3"><a class="selflink" id="section-13.1" href="#section-13.1">13.1</a>. Normative References</span>
[<a id="ref-RFC5046">RFC5046</a>] Ko, M., Chadalapaka, M., Hufferd, J., Elzur, U., Shah,
H., and P. Thaler, "Internet Small Computer System
Interface (iSCSI) Extensions for Remote Direct Memory
Access (RDMA)", <a href="./rfc5046">RFC 5046</a>, October 2007.
[<a id="ref-iSCSI">iSCSI</a>] Chadalapaka, M., Satran, J., Meth, K., and D. Black,
"Internet Small Computer System Interface (iSCSI)
Protocol (Consolidated)", <a href="./rfc7143">RFC 7143</a>, April 2014.
[<a id="ref-RDMAP">RDMAP</a>] Recio, R., Metzler, B., Culley, P., Hilland, J., and D.
Garcia, "A Remote Direct Memory Access Protocol
Specification", <a href="./rfc5040">RFC 5040</a>, October 2007.
<span class="grey">Ko & Nezhinsky Standards Track [Page 79]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-80" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
[<a id="ref-DDP">DDP</a>] Shah, H., Pinkerton, J., Recio, R., and P. Culley,
"Direct Data Placement over Reliable Transports", <a href="./rfc5041">RFC</a>
<a href="./rfc5041">5041</a>, October 2007.
[<a id="ref-MPA">MPA</a>] Culley, P., Elzur, U., Recio, R., Bailey, S., and J.
Carrier, "Marker PDU Aligned Framing for TCP
Specification", <a href="./rfc5044">RFC 5044</a>, October 2007.
[<a id="ref-RDDPSEC">RDDPSEC</a>] Pinkerton, J. and E. Deleganes, "Direct Data Placement
Protocol (DDP) / Remote Direct Memory Access Protocol
(RDMAP) Security", <a href="./rfc5042">RFC 5042</a>, October 2007.
[<a id="ref-TCP">TCP</a>] Postel, J., "Transmission Control Protocol", STD 7, <a href="./rfc793">RFC</a>
<a href="./rfc793">793</a>, September 1981.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-IPSEC-IPS">IPSEC-IPS</a>] Black, D. and P. Koning, "Securing Block Storage
Protocols over IP: <a href="./rfc3723">RFC 3723</a> Requirements Update for IPsec
v3", <a href="./rfc7146">RFC 7146</a>, April 2014.
<span class="h3"><a class="selflink" id="section-13.2" href="#section-13.2">13.2</a>. Informative References</span>
[<a id="ref-SAM5">SAM5</a>] INCITS Technical Committee T10, "SCSI Architecture Model
- 5 (SAM-5)", T10/BSR INCITS 515 rev 04, Committee Draft.
[<a id="ref-iSCSI-SAM">iSCSI-SAM</a>] Knight, F. and M. Chadalapaka, "Internet Small Computer
System Interface (iSCSI) SCSI Features Update", <a href="./rfc7144">RFC 7144</a>,
April 2014.
[<a id="ref-DA">DA</a>] Chadalapaka, M., Hufferd, J., Satran, J., and H. Shah,
"DA: Datamover Architecture for the Internet Small
Computer System Interface (iSCSI)", <a href="./rfc5047">RFC 5047</a>, October
2007.
[<a id="ref-IB">IB</a>] InfiniBand Architecture Specification Volume 1 Release
1.2, October 2004
[<a id="ref-IPoIB">IPoIB</a>] Chu, J. and V. Kashyap, "Transmission of IP over
InfiniBand (IPoIB)", <a href="./rfc4391">RFC 4391</a>, April 2006.
<span class="grey">Ko & Nezhinsky Standards Track [Page 80]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-81" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Summary of Changes from <a href="./rfc5046">RFC 5046</a></span>
All changes are backward compatible with <a href="./rfc5046">RFC 5046</a> except for item #8,
which reflects all known implementations of iSER, each of which has
implemented this change, despite its absence in <a href="./rfc5046">RFC 5046</a>. As a
result, a hypothetical implementation based on <a href="./rfc5046">RFC 5046</a> will not
interoperate with an implementation based on this version of the
specification.
1. Removed the requirement that a connection be opened in "normal"
TCP mode and transitioned to zero-copy mode. This allows the
specification to conform to existing implementations for both
InfiniBand and iWARP. Changes were made in Sections <a href="#section-1">1</a>, <a href="#section-3.1.6">3.1.6</a>,
4.2, 5.1, 5.1.1, 5.1.2, 5.1.3, 10.1.3.4, and 11.
2. Added a clause in <a href="#section-6.2">Section 6.2</a> to clarify that
MaxRecvDataSegmentLength must be ignored if it is declared in the
Login Phase.
3. Added a clause in <a href="#section-6.2">Section 6.2</a> to clarify that the initiator must
not send more than InitiatorMaxRecvDataSegmentLength worth of
data when a NOP-Out request is sent with a valid Initiator Task
Tag. Since InitiatorMaxRecvDataSegmentLength can be smaller than
TargetMaxRecvDataSegmentLength, returning the original data in
the NOP-Out request in this situation can overflow the receive
buffer unless the length of the data sent with the NOP-Out
request is less than InitiatorMaxRecvDataSegmentLength.
4. Added a SHOULD negotiate recommendation for
MaxOutstandingUnexpectedPDUs in <a href="#section-6.7">Section 6.7</a>.
5. Added MaxAHSLength key in <a href="#section-6.8">Section 6.8</a> to set a limit on the AHS
Length. This is useful when posting receive buffers in knowing
what the maximum possible message length is in a PDU that
contains AHS.
6. Added TaggedBufferForSolicitedDataOnly key in <a href="#section-6.9">Section 6.9</a> to
indicate how the memory region will be used. An initiator can
treat the memory regions intended for unsolicited and solicited
data differently and can use different registration modes. In
contrast, <a href="./rfc5046">RFC 5046</a> treats the memory occupied by the data as a
contiguous (or virtually contiguous, by means of scatter-gather
mechanisms) and homogenous region. Adding a new key will allow
different memory models to be accommodated. Changes were also
made in <a href="#section-7.3.1">Section 7.3.1</a>.
<span class="grey">Ko & Nezhinsky Standards Track [Page 81]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-82" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
7. Added iSERHelloRequired key in <a href="#section-6.10">Section 6.10</a> to allow an initiator
to allocate connection resources after the login process by
requiring the use of the iSER Hello messages before sending iSCSI
PDUs. The default is "No" since iSER Hello messages have not
been implemented and are not in use. Changes were made in
Sections <a href="#section-5.1.1">5.1.1</a>, <a href="#section-5.1.2">5.1.2</a>, <a href="#section-5.1.3">5.1.3</a>, <a href="#section-8.2">8.2</a>, <a href="#section-9.3">9.3</a>, <a href="#section-9.4">9.4</a>, <a href="#section-10.1.3.2">10.1.3.2</a>, and
10.1.3.4.
8. Added two 64-bit fields in iSER header in <a href="#section-9.2">Section 9.2</a> for the
Read Base Offset and the Write Base Offset to accommodate a non-
zero Base Offset. This allows one implementation such as the
Open Fabrics Enterprise Distribution (OFED) stack to be used in
both the InfiniBand and the iWARP environment.
Changes were made in the definitions of Base Offset,
Advertisement, and Tagged Buffer. Changes were also made in
Sections <a href="#section-1.5.1">1.5.1</a>, <a href="#section-1.6">1.6</a>, <a href="#section-1.7">1.7</a>, <a href="#section-7.3.1">7.3.1</a>, <a href="#section-7.3.3">7.3.3</a>, <a href="#section-7.3.5">7.3.5</a>, <a href="#section-7.3.6">7.3.6</a>, <a href="#section-9.1">9.1</a>, <a href="#section-9.3">9.3</a>,
9.4, 9.5.1, and 9.5.2. This change is not backward compatible
with <a href="./rfc5046">RFC 5046</a>, but it was part of all known implementations of
iSER at the time this document was developed.
9. Remove iWARP-specific behavior. Changes were made in the
definitions of RDMA Operation and Send Message Type.
Clarifications were added in <a href="#section-1.5.2">Section 1.5.2</a> on the use of SendSE
and SendInvSE. These clarifications reflect a removal of the
requirements in <a href="./rfc5046">RFC 5046</a> for the use of these messages, as
implementations have not followed <a href="./rfc5046">RFC 5046</a> in this area. Changes
affecting Send with Invalidate were made in Sections <a href="#section-1.5.1">1.5.1</a>, <a href="#section-1.6">1.6</a>,
1.7, 4.1, and 7.3.2. Changes affecting Terminate were made in
Sections <a href="#section-10.1.2.1">10.1.2.1</a> and <a href="#section-10.1.2.2">10.1.2.2</a>. Changes were made in <a href="#appendix-B">Appendix B</a>
to remove iWARP headers.
10. Removed denial-of-service descriptions for the initiator in
<a href="#section-5.1.1">Section 5.1.1</a> since they are applicable for the target only.
11. Clarified in <a href="#section-1.5.1">Section 1.5.1</a> that STag invalidation is the
initiator's responsibility for security reasons, and the
initiator cannot rely on the target using an Invalidate version
of Send. Added text in <a href="#section-11">Section 11</a> on Stag invalidation.
<span class="grey">Ko & Nezhinsky Standards Track [Page 82]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-83" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Message Format for iSER</span>
This section is for information only and is NOT part of the standard.
<span class="h3"><a class="selflink" id="appendix-B.1" href="#appendix-B.1">B.1</a>. iWARP Message Format for iSER Hello Message</span>
The following figure depicts an iSER Hello Message encapsulated in an
iWARP SendSE Message.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MPA Header | DDP Control | RDMA Control |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| (Send) Queue Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| (Send) Message Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| (Send) Message Offset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0010b | Zeros | 0001b | 0001b | iSER-IRD |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
| MPA CRC |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 6: SendSE Message Containing an iSER Hello Message
<span class="grey">Ko & Nezhinsky Standards Track [Page 83]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-84" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="appendix-B.2" href="#appendix-B.2">B.2</a>. iWARP Message Format for iSER HelloReply Message</span>
The following figure depicts an iSER HelloReply Message encapsulated
in an iWARP SendSE Message. The Reject (REJ) flag is set to zero.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MPA Header | DDP Control | RDMA Control |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| (Send) Queue Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| (Send) Message Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| (Send) Message Offset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0011b |Zeros|0| 0001b | 0001b | iSER-ORD |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MPA CRC |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 7: SendSE Message Containing an iSER HelloReply Message
<span class="grey">Ko & Nezhinsky Standards Track [Page 84]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-85" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="appendix-B.3" href="#appendix-B.3">B.3</a>. iSER Header Format for SCSI Read Command PDU</span>
The following figure depicts a SCSI Read Command PDU embedded in an
iSER Message. For this particular example, in the iSER header, the
Write STag Valid flag is set to zero, the Read STag Valid flag is set
to one, the Write STag field is set to all zeros, the Write Base
Offset field is set to all zeros, the Read STag field contains a
valid Read STag, and the Read Base Offset field contains a valid Base
Offset for the Read Tagged Buffer.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0001b |0|1| All zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Read STag |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Read Base Offset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCSI Read Command PDU |
// //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 8: iSER Header Format for SCSI Read Command PDU
<span class="grey">Ko & Nezhinsky Standards Track [Page 85]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-86" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="appendix-B.4" href="#appendix-B.4">B.4</a>. iSER Header Format for SCSI Write Command PDU</span>
The following figure depicts a SCSI Write Command PDU embedded in an
iSER Message. For this particular example, in the iSER header, the
Write STag Valid flag is set to one, the Read STag Valid flag is set
to zero, the Write STag field contains a valid Write STag, the Write
Base Offset field contains a valid Base Offset for the Write Tagged
Buffer, the Read STag field is set to all zeros since it is not used,
and the Read Base Offset field is set to all zeros.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0001b |1|0| All zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Write STag |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Write Base Offset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCSI Write Command PDU |
// //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 9: iSER Header Format for SCSI Write Command PDU
<span class="grey">Ko & Nezhinsky Standards Track [Page 86]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-87" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="appendix-B.5" href="#appendix-B.5">B.5</a>. iSER Header Format for SCSI Response PDU</span>
The following figure depicts a SCSI Response PDU embedded in an iSER
Message:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0001b |0|0| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| All Zeros |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCSI Response PDU |
// //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 10: iSER Header Format for SCSI Response PDU
<span class="grey">Ko & Nezhinsky Standards Track [Page 87]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-88" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. Architectural Discussion of iSER over InfiniBand</span>
This section explains how an InfiniBand network (with Gateways) would
be structured. It is informational only and is intended to provide
insight on how iSER is used in an InfiniBand environment.
<span class="h3"><a class="selflink" id="appendix-C.1" href="#appendix-C.1">C.1</a>. Host Side of iSCSI and iSER Connections in InfiniBand</span>
Figure 11 defines the topologies in which iSCSI and iSER will be able
to operate on an InfiniBand Network.
+---------+ +---------+ +---------+ +---------+ +--- -----+
| Host | | Host | | Host | | Host | | Host |
| | | | | | | | | |
+---+-+---+ +---+-+---+ +---+-+---+ +---+-+---+ +---+-+---+
|HCA| |HCA| |HCA| |HCA| |HCA| |HCA| |HCA| |HCA| |HCA| |HCA|
+-v-+ +-v-+ +-v-+ +-v-+ +-v-+ +-v-+ +-v-+ +-v-+ +-v-+ +-v-+
|----+------|-----+-----|-----+-----|-----+-----|-----+---> To IB
IB| IB | IB | IB | IB | SubNet2 SWTCH
+-v-----------v-----------v-----------v-----------v---------+
| InfiniBand Switch for Subnet1 |
+---+-----+--------+-----+--------+-----+------------v------+
| TCA | | TCA | | TCA | |
+-----+ +-----+ +-----+ | IB
/ IB \ / IB \ / \ +--+--v--+--+
| iSER | | iSER | | IPoIB | | | TCA | |
| Gateway | | Gateway | | Gateway | | +-----+ |
| to | | to | | to | | Storage |
| iSCSI | | iSER | | IP | | Controller|
| TCP | | iWARP | |Ethernet | +-----+-----+
+---v-----| +---v-----| +----v----+
| EN | EN | EN
+--------------+---------------+----> to IP based storage
Ethernet links that carry iSCSI or iWARP
Figure 11: iSCSI and iSER on IB
In Figure 11, the Host systems are connected via the InfiniBand Host
Channel Adapters (HCAs) to the InfiniBand links. With the use of IB
switch(es), the InfiniBand links connect the HCA to InfiniBand Target
Channel Adapters (TCAs) located in gateways or Storage Controllers.
An iSER-capable IB-IP Gateway converts the iSER Messages encapsulated
in IB protocols to either standard iSCSI, or iSER Messages for iWARP.
An [<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>] Gateway converts the InfiniBand [<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>] protocol to IP
protocol, and in the iSCSI case, permits iSCSI to be operated on an
IB Network between the Hosts and the [<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>] Gateway.
<span class="grey">Ko & Nezhinsky Standards Track [Page 88]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-89" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
<span class="h3"><a class="selflink" id="appendix-C.2" href="#appendix-C.2">C.2</a>. Storage Side of iSCSI and iSER Mixed Network Environment</span>
Figure 12 shows a storage controller that has three different portal
groups: one supporting only iSCSI (TPG-4), one supporting iSER/iWARP
or iSCSI (TPG-2), and one supporting iSER/IB (TPG-1). Here, "TPG"
stands for "Target Portal Group".
| | |
| | |
+--+--v--+----------+--v--+----------+--v--+--+
| | IB | |iWARP| | EN | |
| | | | TCP | | NIC | |
| |(TCA)| | RNIC| | | |
| +-----| +-----+ +-----+ |
| TPG-1 TPG-2 TPG-4 |
| 9.1.3.3 9.1.2.4 9.1.2.6 |
| |
| Storage Controller |
| |
+---------------------------------------------+
Figure 12: Storage Controller with TCP, iWARP, and IB Connections
The normal iSCSI portal group advertising processes (via the Service
Location Protocol (SLP), Internet Storage Name Service (iSNS), or
SendTargets) are available to a Storage Controller.
<span class="h3"><a class="selflink" id="appendix-C.3" href="#appendix-C.3">C.3</a>. Discovery Processes for an InfiniBand Host</span>
An InfiniBand Host system can gather portal group IP addresses from
SLP, iSNS, or the SendTargets discovery processes by using TCP/IP via
[<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>]. After obtaining one or more remote portal IP addresses, the
Initiator uses the standard IP mechanisms to resolve the IP address
to a local outgoing interface and the destination hardware address
(Ethernet MAC or InfiniBand Global Identifier (GID) of the target or
a gateway leading to the target). If the resolved interface is an
[<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>] network interface, then the target portal can be reached
through an InfiniBand fabric. In this case, the Initiator can
establish an iSCSI/TCP or iSCSI/iSER session with the Target over
that InfiniBand interface, using the hardware address (InfiniBand
GID) obtained through the standard Address Resolution Protocol (ARP)
processes.
If more than one IP address is obtained through the discovery
process, the Initiator should select a Target IP address that is on
the same IP subnet as the Initiator, if one exists. This will avoid
a potential overhead of going through a gateway when a direct path
exists.
<span class="grey">Ko & Nezhinsky Standards Track [Page 89]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-90" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
In addition, a user can configure manual static IP route entries if a
particular path to the target is preferred.
<span class="h3"><a class="selflink" id="appendix-C.4" href="#appendix-C.4">C.4</a>. IBTA Connection Specifications</span>
It is outside the scope of this document, but it is expected that the
InfiniBand Trade Association (IBTA) has or will define:
* The iSER ServiceID
* A means for permitting a Host to establish a connection with a
peer InfiniBand end-node, and that peer indicating when that end-
node supports iSER, so the Host would be able to fall back to
iSCSI/TCP over [<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>].
* A means for permitting the Host to establish connections with IB
iSER connections on storage controllers or IB iSER-connected
Gateways in preference to IPoIB-connected Gateways/Bridges or
connections to Target Storage Controllers that also accept iSCSI
via [<a href="#ref-IPoIB" title=""Transmission of IP over InfiniBand (IPoIB)"">IPoIB</a>].
* A means for combining the IB ServiceID for iSER and the IP port
number such that the IB Host can use normal IB connection
processes, yet ensure that the iSER target peer can actually
connect to the required IP port number.
<span class="h2"><a class="selflink" id="appendix-D" href="#appendix-D">Appendix D</a>. Acknowledgments</span>
The authors acknowledge the following individuals for identifying
implementation issues and/or suggesting resolutions to the issues
clarified in this document: Robert Russell, Arne Redlich, David
Black, Mallikarjun Chadalapaka, Tom Talpey, Felix Marti, Robert
Sharp, Caitlin Bestler, Hemal Shah, Spencer Dawkins, Pete Resnick,
Ted Lemon, Pete McCann, and Steve Kent. Credit also goes to the
authors of the original iSER Specification [<a href="./rfc5046" title=""Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)"">RFC5046</a>], including
Michael Ko, Mallikarjun Chadalapaka, John Hufferd, Uri Elzur, Hemal
Shah, and Patricia Thaler. This document benefited from all of their
contributions.
<span class="grey">Ko & Nezhinsky Standards Track [Page 90]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-91" ></span>
<span class="grey"><a href="./rfc7145">RFC 7145</a> iSER Specification April 2014</span>
Authors' Addresses
Michael Ko
EMail: mkosjc@gmail.com
Alexander Nezhinsky
Mellanox Technologies
13 Zarchin St.
Raanana 43662
Israel
Phone: +972-74-712-9000
EMail: alexandern@mellanox.com, nezhinsky@gmail.com
Ko & Nezhinsky Standards Track [Page 91]
</pre>
|