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
  
     | 
    
      <pre>Internet Engineering Task Force (IETF)                  A. Kanevsky, Ed.
Request for Comments: 6581                                     Dell Inc.
Updates: <a href="./rfc5043">5043</a>, <a href="./rfc5044">5044</a>                                      C. Bestler, Ed.
Category: Standards Track                                Nexenta Systems
ISSN: 2070-1721                                                 R. Sharp
                                                                   Intel
                                                                 S. Wise
                                                     Open Grid Computing
                                                              April 2012
              <span class="h1">Enhanced Remote Direct Memory Access (RDMA)</span>
                        <span class="h1">Connection Establishment</span>
Abstract
   This document updates <a href="./rfc5043">RFC 5043</a> and <a href="./rfc5044">RFC 5044</a> by extending Marker
   Protocol Data Unit (PDU) Aligned Framing (MPA) negotiation for Remote
   Direct Memory Access (RDMA) connection establishment.  The first
   enhancement extends <a href="./rfc5044">RFC 5044</a>, enabling peer-to-peer connection
   establishment over MPA / Transmission Control Protocol (TCP).  The
   second enhancement extends both <a href="./rfc5043">RFC 5043</a> and <a href="./rfc5044">RFC 5044</a>, by providing
   an option for standardized exchange of RDMA-layer connection
   configuration.
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/rfc6581">http://www.rfc-editor.org/info/rfc6581</a>.
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
Copyright Notice
   Copyright (c) 2012 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-3">3</a>
      <a href="#section-1.1">1.1</a>. Summary of Changes Affecting <a href="./rfc5044">RFC 5044</a> ......................<a href="#page-4">4</a>
      <a href="#section-1.2">1.2</a>. Summary of Changes Affecting <a href="./rfc5043">RFC 5043</a> ......................<a href="#page-4">4</a>
   <a href="#section-2">2</a>. Requirements Language ...........................................<a href="#page-4">4</a>
   <a href="#section-3">3</a>. Definitions .....................................................<a href="#page-4">4</a>
   <a href="#section-4">4</a>. Motivations .....................................................<a href="#page-7">7</a>
      <a href="#section-4.1">4.1</a>. Standardization of RDMA Read Parameter Configuration .......<a href="#page-7">7</a>
      <a href="#section-4.2">4.2</a>. Enabling MPA Mode ..........................................<a href="#page-9">9</a>
      <a href="#section-4.3">4.3</a>. Lack of Explicit RTR in MPA Request/Reply Exchange ........<a href="#page-10">10</a>
      <a href="#section-4.4">4.4</a>. Limitations on ULP Workaround .............................<a href="#page-11">11</a>
           <a href="#section-4.4.1">4.4.1</a>. Transport Neutral APIs .............................<a href="#page-11">11</a>
           <a href="#section-4.4.2">4.4.2</a>. Work/Completion Queue Accounting ...................<a href="#page-11">11</a>
           <a href="#section-4.4.3">4.4.3</a>. Host-based Implementation of MPA Fencing ...........<a href="#page-12">12</a>
   <a href="#section-5">5</a>. Enhanced MPA Connection Establishment ..........................<a href="#page-13">13</a>
   <a href="#section-6">6</a>. Enhanced MPA Request/Reply Frames ..............................<a href="#page-14">14</a>
   <a href="#section-7">7</a>. Enhanced SCTP Session Control Chunks ...........................<a href="#page-15">15</a>
   <a href="#section-8">8</a>. MPA Error Reporting ............................................<a href="#page-16">16</a>
   <a href="#section-9">9</a>. Enhanced RDMA Connection Establishment Data ....................<a href="#page-17">17</a>
      <a href="#section-9.1">9.1</a>. IRD and ORD Negotiation ...................................<a href="#page-18">18</a>
      <a href="#section-9.2">9.2</a>. Peer-to-Peer Connection Negotiation .......................<a href="#page-20">20</a>
      <a href="#section-9.3">9.3</a>. Enhanced Connection Negotiation Flow ......................<a href="#page-21">21</a>
   <a href="#section-10">10</a>. Interoperability ..............................................<a href="#page-21">21</a>
   <a href="#section-11">11</a>. IANA Considerations ...........................................<a href="#page-22">22</a>
   <a href="#section-12">12</a>. Security Considerations .......................................<a href="#page-23">23</a>
   <a href="#section-13">13</a>. Acknowledgements ..............................................<a href="#page-23">23</a>
   <a href="#section-14">14</a>. References ....................................................<a href="#page-23">23</a>
      <a href="#section-14.1">14.1</a>. Normative References .....................................<a href="#page-23">23</a>
      <a href="#section-14.2">14.2</a>. Informative References ...................................<a href="#page-24">24</a>
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>.  Introduction</span>
   When used over the Transmission Control Protocol (TCP), the current
   Remote Direct Data Placement (RDDP) [<a href="./rfc5041" title=""Direct Data Placement over Reliable Transports"">RFC5041</a>] suite of protocols
   relies on the MPA [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>] protocol for both connection
   establishment and for markers for TCP layering.
   A typical model for establishing an RDMA connection has the following
   steps:
   o  The passive side (responder) Upper Layer Protocol (ULP) listens
      for connection requests.
   o  The active side (initiator) ULP submits a connection request using
      an RDMA endpoint, the desired destination, and the parameters to
      be used for the connection.  Those parameters include both RDMA-
      layer characteristics, such as the number of simultaneous RDMA
      Read Requests to be allowed, and application-specific data.
   o  The passive side ULP receives a connection request that includes
      the identity of the active side and the requested connection
      characteristics.  The passive side ULP uses this information to
      decide whether to accept the connection, and if it is to be
      accepted, how to create and/or configure the local RDMA endpoint.
   o  If accepting, the responder submits its acceptance of the
      connection request, which in turn generates the accept message to
      the initiator.  This responder accept operation includes the RDMA
      endpoint to be used and the connection characteristics (both the
      RDMA configuration and any application-specific Private Data to be
      transferred to the initiator).
   o  The active side receives confirmation that the connection has been
      accepted, what the configured connection characteristics are, and
      any application-supplied Private Data.
   Currently, MPA only supports a client-server model for connection
   establishment, forcing peer-to-peer applications to interact as
   though they had a client-server relationship.  In addition,
   negotiation of some parameters specific to the Remote Direct Memory
   Access Protocol (RDMAP) [<a href="./rfc5040" title=""A Remote Direct Memory Access Protocol Specification"">RFC5040</a>] are left to ULP negotiation.
   Providing an optional ULP-independent format for exchanging these
   parameters would be of benefit to transport neutral RDMA
   applications.
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>.  Summary of Changes Affecting <a href="./rfc5044">RFC 5044</a></span>
   This document enhances the MPA connection setup protocol [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   First, it adds exchange and negotiation of the parameters necessary
   to support RDMA Read Requests.  Second, it adds a message that serves
   as a Ready to Receive (RTR) indication from the initiator to the
   responder as the last message of connection establishment and adds
   negotiation of which type of message to use for carrying the RTR
   indication into MPA Request/Reply Frames.
   RTR indications are optional and are carried by existing RDMA message
   types, specifically a zero-length FULPDU Send message, a zero-length
   RDMA Read message, or a zero-length RDMA write message.  The presence
   vs. absence of the RTR indication and the type of RDMA message to use
   are negotiated by control flags in Enhanced RDMA connection
   establishment data specified by this document (see <a href="#section-9">Section 9</a>).  RDMA
   implementations are often tightly integrated with application
   libraries and hardware, hence the flexibility to use more than one
   type of RDMA message enables implementations to choose message types
   that are less disruptive to the implementation structure.  When an
   RTR indication is used, and MPA connection setup negotiation
   indicates support for multiple RDMA message types as RTR indications
   by both the initiator and responder, the initiator selects one of the
   supported RDMA message types as the RTR indication at the initiator's
   sole discretion.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>.  Summary of Changes Affecting <a href="./rfc5043">RFC 5043</a></span>
   This document enhances [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>] by adding new Enhanced Session
   Control Chunks that extend the currently defined Chunks with the
   addition of Inbound RDMA Read Queue Depth (IRD) and Outbound RDMA
   Read Queue Depth (ORD) negotiation.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>.  Requirements Language</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>.  Definitions</span>
   Active Side:  See Initiator.
   Consumer:  The ULPs or applications that lie above MPA and Direct
      Data Placement (DDP).  The Consumer is responsible for making TCP
      or Stream Control Transmission Protocol (SCTP) connections,
      starting MPA and DDP connections, and generally controlling
      operations.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>] and [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>].
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   CRC:  Cyclic Redundancy Check
   Completion Queue (CQ):  A Consumer-accessible queue where the RDMA
      device reports completions of Work Requests.  A Consumer is able
      to reap completions from a CQ without requiring per-transaction
      support from the kernel or other privileged entity.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Completion Queue Entry (CQE):  Transport- and device-specific
      representation of a Work Completion.  A CQ holds CQEs.  See
      [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   FULPDU:  Framed Upper Layer Protocol PDU.  See FPDU of [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   Inbound RDMA Read Request Queue (IRRQ):  A queue that is associated
      with an RDMA connection that tracks active incoming simultaneous
      RDMA Read Request Messages.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Inbound RDMA Read Queue Depth (IRD):  The maximum number of incoming
      simultaneous RDMA Read Request Messages an RDMA connection can
      handle.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Initiator:  The endpoint of a connection that sends the MPA Request
      Frame.  The initiator is the active side of the connection
      establishment.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   IRD:  See Inbound RDMA Read Queue Depth.
   MPA Fencing:  MPA responder connection establishment logic that
      ensures that no ULP messages will be transferred until the
      initiator's first message has been received.
   MPA Request Frame:  Data sent from the MPA initiator to the MPA
      responder during the Startup Phase.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   MPA Reply Frame:  Data sent from the MPA responder to the MPA
      initiator during the Startup Phase.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   ORD:  See Outbound RDMA Read Queue Depth.
   Outbound RDMA Read Queue Depth (ORD):  The maximum number of
      simultaneous RDMA Read Requests that can be issued for the RDMA
      connection.  This should be less than or equal to the peer's IRD.
      See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Passive Side:  See Responder.
   Private Data:  A block of data exchanged between MPA endpoints during
      initial connection setup.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   Queue Pair (QP):  A Queue Pair is the set of Work Queues associated
      exclusively with a single Endpoint (first defined in [<a href="#ref-VIA" title=""Virtual Interface Architecture"">VIA</a>]).  The
      Send Queue (SQ), Receive Queue (RQ), and Inbound RDMA Read Queue
      (IRQ) are considered to be part of the Queue Pair.  The
      potentially shared Completion Queue (CQ) and Shared Receive Queue
      (SRQ) are not.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Remote Peer:  The MPA protocol implementation on the opposite end of
      the connection.  Used to refer to the remote entity when
      describing protocol exchanges or other interactions between two
      nodes.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   Responder:  The connection endpoint that responds to an incoming MPA
      connection request (the MPA Request Frame).  The responder is the
      passive side of the connection establishment.  See [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   Ready to Receive (RTR):  RTR is an indication provided by the last
      connection establishment message sent from the initiator to the
      responder.  An RTR indicates that the initiator is ready to
      receive messages and that connection establishment is completed.
   Startup Phase:  The initial exchanges of an MPA connection that
      serves to more fully identify MPA endpoints to each other and pass
      connection-specific setup information to each other.  See
      [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   Shared Receive Queue (SRQ):  A shared pool of Receive Work Requests
      posted by the Consumer that can be allocated by multiple RDMA
      endpoints (QP).  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Tagged (DDP) Message:  A DDP Message that targets a Tagged Buffer
      that is explicitly advertised to the Remote Peer through exchange
      of an STag (memory handle), offset in the memory region identified
      by STag, and length [<a href="./rfc5040" title=""A Remote Direct Memory Access Protocol Specification"">RFC5040</a>].
   Untagged (DDP) Message:  A DDP Message that targets an Untagged
      Buffer associated with a queue specified the by Queue Number (QN).
      [<a href="./rfc5040" title=""A Remote Direct Memory Access Protocol Specification"">RFC5040</a>].
   Work Queue:  An element of a QP that allows user-space applications
      to submit Work Requests directly to network hardware (first
      defined in [<a href="#ref-VIA" title=""Virtual Interface Architecture"">VIA</a>]).  Specific Work Queues include the Send Queue
      (SQ) for transmit requests, Receive Queue (RQ) for receive
      requests specific to a single endpoint, and Shared Receive Queues
      (SRQs) for receive requests that can be allocated by one or more
      endpoints.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   Work Queue Element (WQE):  Transport- and device-specific
      representation of a Work Request.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
   Work Request:  An elementary object used by Consumers to enqueue a
      requested operation (WQEs) onto a Work Queue.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>.  Motivations</span>
   The goal of this document is two-fold.  The first is to extend
   support from the current client-server model for RDMA connection
   setup to a peer-to-peer model.  The second is to add negotiation of
   the RDMA Read Queue size for both sides of an RDMA connection.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>.  Standardization of RDMA Read Parameter Configuration</span>
   Most RDMA applications are developed using a transport-neutral
   Application Programming Interface (API) to access RDMA services based
   on a "Queue Pair" paradigm as originally defined by the Virtual
   Interface Architecture [<a href="#ref-VIA" title=""Virtual Interface Architecture"">VIA</a>], refined by the Direct Access
   Programming Library [<a href="#ref-DAPL" title=""Direct Access Programming Library"">DAPL</a>], and most commonly deployed with the
   OpenFabrics API [<a href="#ref-OFA" title=""OFA verbs & APIs"">OFA</a>].
   These transport-neutral APIs seek to provide a common set of RDMA
   services whether the underlying transport is, for example, RDDP over
   MPA, RDDP over SCTP, or InfiniBand.
   The common model for establishing an RDMA connection has the
   following steps:
   o  The passive side ULP listens for connection requests.
   o  The active side ULP submits a connection request using an RDMA
      endpoint ("Queue Pair"), the desired destination, and the
      parameters to be used for the connection.  Those parameters
      include both RDMA-layer characteristics, such as the number of
      simultaneous RDMA Read Requests to be allowed, and application-
      specific data (typically referred to as "Private Data").
   o  The passive side ULP receives a connection request, which includes
      the identity of the active side and the requested connection
      characteristics.  The passive side ULP uses this information to
      decide whether to accept the connection, and if it is to be
      accepted, how to create and/or configure the RDMA endpoint.
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   o  If accepting, the passive side ULP submits its acceptance of the
      connection request.  This local accept operation includes the RDMA
      endpoint to be used and the connection characteristics (both the
      RDMA configuration and any application-specific Private Data to be
      returned).
   o  The active side receives confirmation that the connection has been
      accepted, what the configured connection characteristics are, and
      any application-supplied Private Data.
   As currently defined, DDP connection establishment requires the ULP
   to encode the RDMA configuration in the application-specific Private
   Data.  This results in undesirable duplication of logic to cover RDMA
   characteristics of both InfiniBand and RDDP for each ULP, and to
   specify for InfiniBand and RDDP the extraction of the RDMA
   characteristics for each ULP.
   Both RDDP and InfiniBand support an initial Private Data exchange;
   therefore, a standard definition of the RDMA characteristics within
   the Private Data section would enable common connection establishment
   APIs to format the RDMA characteristics based on the same API
   information used when establishing either protocol to form the
   connection.  The application would then only have to indicate that it
   was using this standard format to enable common connection
   establishment procedures to apply common code to properly parse these
   fields and configure the RDMA endpoints accordingly.  Exchange of
   parameters necessary to perform RDMA Read operations is a common
   usage of the initial Private Data exchange.
   One of the RDMA operations that is defined in [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>] is an RDMA
   Read.  RDMA Read operations are performed using an untagged message
   sent from a Queue Pair (QP) on the local endpoint to a QP on the
   remote endpoint targeting the Inbound RDMA Read Request Queue (QN=1
   or Inbound RDMA Read Request Queue (IRRQ)) associated with the
   connection.  RDMA Read responses transfer data associated with each
   RDMA Read Request from the remote endpoint to the local endpoint
   using tagged messages.  An inbound RDMA Read Request remains on the
   IRRQ from the time that it is received until the time that the last
   tagged message associated with the RDMA request is acknowledged.  The
   IRRQ is associated with a QP but is not a Work Queue.  Instead, the
   IRRQ is a stand-alone queue that is used to manage RDMA Read Requests
   associated with a QP.  See [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>], Section 6 for more information
   regarding QPs and IRRQ.  One of the characteristics that must be
   configured for a QP is the size of the IRRQ.  This parameter is
   called the Inbound RDMA Read Queue Depth (IRD).  Another
   characteristic of a QP that must be configured is a local limit on
   the number of simultaneous outbound RDMA Read Requests based on the
   size of the remote endpoint QP's IRRQ.  This parameter is call the
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   Outbound RDMA Read Queue Depth (ORD).  ORD is used to limit the
   number of simultaneous RDMA Read Requests such that the local
   endpoint does not overrun the remote endpoint's IRRQ depth or IRD.
   Note that outbound RDMA Reads are submitted to a QP's Send Queue at
   the local peer, not to a separate outbound RDMA Read Request queue on
   the local peer.  The local endpoint uses ORD to strictly limit
   simultaneous Read Requests so that IRRQ overruns do not occur at the
   remote endpoint.
   Determination of the values of the ORD and IRD are left to the ULP by
   the current RDDP suite of protocols and also by [<a href="#ref-RDMAC" title=""RDMA Protocol Verbs Specification (Version 1.0)"">RDMAC</a>].  Since this
   negotiation of ORD and IRD is typical, it is desirable to provide a
   common mechanism as described in this document.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>.  Enabling MPA Mode</span>
   MPA defines encoding of DDP Segments in Framed Upper Layer Protocol
   PDUs (FULPDUs).  Generation of FULPDUs requires the ability to
   periodically insert MPA Markers and to generate the MPA CRC-32c for
   each frame.  Reception may require parsing/removing the markers after
   using them to identify MPA Frame boundaries and validation of the
   MPA-CRC32c.
   A major design objective for MPA was to ensure that the resulting TCP
   stream would be fully compliant for any and all TCP-aware
   middleboxes.  The challenge is that while only some TCP payload
   streams are a valid stream of MPA FULPDUs, any sequence of bytes is a
   valid TCP payload stream.  The determination that a given stream is
   in a specific MPA mode cannot be made at the MPA or TCP layer.
   Therefore, enabling of MPA mode is handled by the ULP.
   The MPA protocol can be viewed as having two parts:
   o  a specification of generation and reception of MPA FULPDUs.  This
      is unchanged by enhanced RDMA connection establishment.
   o  a pre-MPA exchange of messages to enable a specific MPA mode for
      the TCP connection.  Enhanced RDMA connection establishment
      extends this protocol with two new features.
   In typical implementations, generation and reception of MPA FULPDUs
   is handled by hardware.  The exchange of the MPA Request and Reply
   Frames is then handled by host software.  As will be explained, this
   implementation split impedes applications that are not compatible
   with the client-server assumptions in the current MPA Request/Reply
   exchange.
<span class="grey">Kanevsky, et al.             Standards Track                    [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>.  Lack of Explicit RTR in MPA Request/Reply Exchange</span>
   The exchange of MPA Request and Reply messages to place a TCP
   connection in MPA mode is specified in [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].  This protocol
   provides many benefits to the design of MPA FULPDU hardware:
   o  The ULP is responsible for specifying the exact MPA Mode (Markers
      enabled or disabled, CRC-32c enabled or suppressed) and the point
      in the TCP streams (inbound and outbound) where MPA Frames will
      begin.
   o  Before the first MPA Frame is transmitted, all pre-MPA mode TCP
      payloads will have been acknowledged by the peer.  Therefore, it
      is never necessary to generate a retransmission that mixes pre-MPA
      and MPA payload.
   o  Before MPA reception is enabled, all incoming pre-MPA mode TCP
      payloads will have been acknowledged.  Therefore, the host will
      never receive a TCP segment that mixes pre-MPA and MPA payload.
   The limitation of the current MPA Request/Reply exchange is that it
   does not define a Ready to Receive (RTR) indication that the active
   side would send, so that the passive side can know that the last non-
   MPA payload (the MPA Reply) had been received.
   Instead, the role of an RTR indication is piggybacked on the first
   MPA FULPDU sent by the active side.  This is actually a valuable
   optimization for all applications that fit the classic client-server
   model.  The client only initiates the connection when it has a
   request to send to the server, and the server has nothing to send
   until it has received and processed the client request.
   Even applications where the server sends some configuration data
   immediately can easily send the same information as application
   Private Data in the MPA Reply.  So the currently defined exchange
   works for almost all applications.
   Many peer-to-peer applications, especially those involving cluster
   calculations (frequently using Message Passing Interface (MPI)
   [<a href="#ref-UsingMPI" title=""Using MPI-2: Advanced Features of the Message Passing Interface"">UsingMPI</a>] or [<a href="#ref-RDS" title=""Reliable Datagram Socket"">RDS</a>]), have no natural client or server roles ([<a href="#ref-PPMPI" title=""Parallel Programming with MPI"">PPMPI</a>]
   [<a href="#ref-OpenMP" title=""Parallel Programming in C with MPI and OpenMP"">OpenMP</a>]).  Typically, one member of the cluster is arbitrarily
   selected to initiate the connection when the distributed task is
   launched, while the other accepts it.  At startup time, however,
   there is no way to predict which node will have the first message to
   actually send.  Immediately establishing the connections is valuable
   because it reduces latency once results are ready to transmit and it
   validates connectivity throughout the cluster.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   The lack of an explicit RTR indication in the MPA Request/Reply
   exchange forces all applications to have a first message from the
   connection initiator, whether or not this matches the application
   communication model.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>.  Limitations on ULP Workaround</span>
   The requirement that the RDMA connection initiator sends the first
   message does not appear to be onerous on first examination.  The
   natural question is why the application layer would not simply
   generate a dummy message when there is no other message to submit.
   There are three factors that make this workaround unsuitable for many
   peer-to-peer applications:
      o  Transport-Neutral APIs.
      o  Work/Completion Queue Accounting.
      o  Host-based implementation of MPA Fencing.
<span class="h4"><a class="selflink" id="section-4.4.1" href="#section-4.4.1">4.4.1</a>.  Transport-Neutral APIs</span>
   Many of these applications access RDMA services using a transport-
   neutral API such as [<a href="#ref-DAPL" title=""Direct Access Programming Library"">DAPL</a>] or [<a href="#ref-OFA" title=""OFA verbs & APIs"">OFA</a>].  Only RDDP over TCP [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>]
   has a first message requirement.  Other RDMA transports, including
   RDDP over SCTP (see [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>]) and InfiniBand (see [<a href="#ref-IBTA" title=""InfiniBand Architecture Specification Release 1.2.1"">IBTA</a>]), do not.
   Application or middleware communications can be expressed as
   transport-neutral RDMA operations, allowing lower software layers to
   translate to transport and device specifics.  Having a distinct extra
   message that is required only for one transport undermines the
   application's goal of being transport neutral.
<span class="h4"><a class="selflink" id="section-4.4.2" href="#section-4.4.2">4.4.2</a>.  Work/Completion Queue Accounting</span>
   RDMA local APIs conventionally use Work Queues to submit requests
   (Work Queue elements or WQEs) and to asynchronously receive
   completions (in Completion Queues or CQs).
   Each Work Request can generate a Completion Queue Entry (CQE).
   Completions for successful transmit Work Requests are frequently
   suppressed, but the CQ capacity must account for the possibility that
   each will complete in error.  A CQ can receive completions from
   multiple Work Queues.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   CQs are defined to allow hardware RDMA implementations to generate
   CQEs directly to a user-space-mapped buffer.  This enables a user-
   space RDMA Consumer to reap completions without requiring kernel
   intervention.
   A hardware RDMA implementation cannot reasonably wait for an
   available slot in the CQ.  The queue must be sized such that an
   overflow will not occur.  When an overflow does occur, it is
   considered a catastrophic error and will typically require tearing
   down all RDMA connections using that CQ.
   This style of interface is very efficient, but places a burden on the
   application to properly size each CQ to match the Work Queues that
   feed it.
   While the format of both WQEs and CQEs is transport and device
   dependent, a transport-neutral API can deal with WQEs and CQEs as
   abstract transport- and device-neutral objects.  Therefore, the
   number of WQEs and CQEs required for an application can be transport
   and device neutral.
   The capacity of the Work Queues and CQs can be calculated in an
   abstract transport- and device-neutral fashion.  If a dummy operation
   approach is used, it would require lower layers to know the usage
   model, and would disrupt the calculations by inserting a dummy
   "operation" Work Request and filtering out the matching completion.
   The lower layer does not know the usage model on which the queue
   sizes are built, nor does it know how frequently an insertion will be
   required.
<span class="h4"><a class="selflink" id="section-4.4.3" href="#section-4.4.3">4.4.3</a>.  Host-based Implementation of MPA Fencing</span>
   Many hardware implementations of RDDP using MPA/TCP do not handle the
   MPA Request/Reply exchange in hardware, rather they are handled by
   the host processor in software.  With such designs, it is common for
   the MPA Fencing to be implemented in the user-space, device-specific
   library (commonly referred to as a 'User Verbs' library or module).
   When the generation and reception of MPA FULPDUs are already
   dedicated to hardware, a Work Completion can only be generated by an
   untagged message, since arrival of a message for a tagged buffer does
   not necessarily generate a completion and is done without any
   interaction with ULP [<a href="./rfc5040" title=""A Remote Direct Memory Access Protocol Specification"">RFC5040</a>].
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>.  Enhanced MPA Connection Establishment</span>
   Below we provide an overview of Enhanced Connection Setup.  The goal
   is to allow standard negotiation of the ORD/IRD setting on both sides
   of the RDMA connection and/or to negotiate the initial data transfer
   operation by the initiator when the existing 'client sends first'
   rule does not match application requirements.
   The RDMA connection initiator sends an MPA Request, as specified in
   [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>]; the new format defined here allows for:
   o  Standardized negotiation of ORD and IRD.
   o  Negotiation of RTR functionality and the RDMA message type to use
      as the RTR indication.
   The RDMA connection responder processes the MPA Request and generates
   an MPA Reply, as specified in [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>]; the new format completes the
   negotiation.
   The local interface needs to provide a way for a ULP to request the
   use of explicit RTR indication on a per-application or per-connection
   basis when an explicit RTR indication will be required.  Piggybacking
   the RTR on a Client's first message is a valuable optimization for
   most connections.
   The RDMA connection initiator MUST NOT allow any later FULPDUs to be
   transmitted before the RTR indication.  One method to achieve this is
   to delay notifying the ULP that the RDMA connection has been
   established until after any required RTR indication has been
   transmitted.
   All MPA exchanges are performed via TCP prior to RDMA establishment,
   and are therefore signaled via TCP and not via RDMA completion.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>.  Enhanced MPA Request/Reply Frames</span>
   Enhanced RDMA connection establishment uses an alternate format for
   MPA Requests and Replies as follows:
        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
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    0  |                                                               |
       +         Key (16 bytes containing "MPA ID Req Frame")          +
    4  |      (4D 50 41 20 49 44 20 52 65 71 20 46 72 61 6D 65)        |
       +         Or  (16 bytes containing "MPA ID Rep Frame")          +
    8  |      (4D 50 41 20 49 44 20 52 65 70 20 46 72 61 6D 65)        |
       +                                                               +
    12 |                                                               |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    16 |M|C|R|S| Res   |     Rev       |          PD_Length            |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       |                                                               |
       ~                                                               ~
       ~                   Private Data                                ~
       |                                                               |
       |                               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       |                               |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   Key:  Unchanged from [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   M:  Unchanged from [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   C:  Unchanged from [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   R:  Unchanged from [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   S:  One, if the Private Data begins with the enhanced RDMA connection
      establishment data; 0 otherwise.
   Res:  One bit smaller than in [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>]; otherwise unchanged.  In
      [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>], the 'Res' field, in which the newly defined 'S' bit
      resides, is reserved for future use.  [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>] specifies that
      'Res' MUST be set to zero when sending and MUST NOT be checked on
      reception, making use of 'S' bit backwards compatibility with the
      original MPA Frame format.  When the 'S' bit is set to zero, no
      additional Private Data is used for enhanced RDMA connection
      establishment; therefore, the resulting MPA Request and Reply
      Frames are identical to the unenhanced protocol.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   Rev:  This field contains the revision of MPA.  To use any enhanced
      connection establishment feature, this MUST be set to two or
      higher.  If no enhanced connection establishment features are
      desired, it MAY be set to one.  A host accepting MPA connections
      MUST continue to accept MPA Requests with version one, even if it
      supports version two.
   PD_Length:  Unchanged from [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].  This is the total length of
      the Private Data field, including the enhanced RDMA connection
      establishment data, if present.
   Private Data:  Unchanged from [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].  However, if the 'S' flag is
      set, Private Data MUST begin with enhanced RDMA connection
      establishment data (see <a href="#section-9">Section 9</a>).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>.  Enhanced SCTP Session Control Chunks</span>
   Enhanced RDMA connection establishment uses the first 32 bits of the
   Private Data field for IRD and ORD negotiation in the "DDP Stream
   Session Initiate" and "DDP Stream Session Accept" SCTP Session
   Control Chunks.
   The type of the SCTP Session Control Chunk is defined by a Function
   Code (see [<a href="./rfc4960" title=""Stream Control Transmission Protocol"">RFC4960</a>]).  [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>] already defines codes for 'DDP
   Stream Session Initiate' and 'DDP Stream Session Accept', which are
   equivalent to an MPA Request Frame and an accepting MPA Reply Frame.
   Enhanced RDMA connection establishment requires three additional
   function codes listed below:
   Enhanced DDP Stream Session Initiate:  0x005
   Enhanced DDP Stream Session Accept:  0x006
   Enhanced DDP Stream Session Reject:  0x007
   The Enhanced Reject function code MUST be used to indicate rejection
   of enhanced DDP stream session for a configuration that would have
   been accepted for unenhanced DDP stream session negotiation.
   The enhanced DDP stream session establishment follows the same rules
   as the standard DDP stream session establishment as defined in
   [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>].  ULP-supplied Private Data MUST be included for Enhanced
   DDP Stream Session Initiate, Enhanced DDP Stream Session Accept, and
   Enhanced DDP Stream Session Reject messages, and MUST follow the
   enhanced RDMA connection establishment data in the DDP Stream Session
   Initiate and the Enhanced DDP Stream Session Accept messages.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   Private Data length MUST NOT exceed 512 bytes in any message,
   including enhanced RDMA connection establishment data.
   Private Data MUST NOT be included in the DDP Stream Session TERM
   message.
   Received Extended DDP Stream Session Control messages SHOULD be
   reported to the ULP.  If reported, any supplied Private Data MUST be
   available for the ULP to examine.  For example, a received Extended
   DDP Stream Session Control message is not reported to ULP if none of
   the requested RTR indication types are supported by the receiver.  In
   this case, the Provider MAY generate a reject reply message
   indicating which RTR indication types it supports.
   The enhanced DDP stream management MUST use the DDP stream session
   termination function code to terminate a stream established using
   enhanced DDP stream session function codes.
   [<a id="ref-RFC5043">RFC5043</a>] already supports either side sending the first DDP Message
   since the Payload Protocol Identifier (PPID) already distinguishes
   between Session Establishment and DDP Segments.  The enhanced RDMA
   connection establishment provides the ULP a transport-independent way
   to support the peer-to-peer model.
   The following additional Legal Sequences of DDP Stream Session
   messages are defined:
   o  Enhanced Active/Passive Session Accepted: as with <a href="./rfc5043#section-6.2">Section 6.2 of
      [RFC5043]</a>, but with the extended opcodes as defined in this
      document.
   o  Enhanced Active/Passive Session Rejected: as with <a href="./rfc5043#section-6.3">Section 6.3 of
      [RFC5043]</a>, but with the extended opcodes as defined in this
      document.
   o  Enhanced Active/Passive Session Non-ULP Rejected: as with <a href="./rfc5043#section-6.4">Section</a>
      <a href="./rfc5043#section-6.4">6.4 of [RFC5043]</a>, but with the extended opcodes as defined in this
      document.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>.  MPA Error Reporting</span>
   The RDMA connection establishment protocol is layered upon the
   protocols defined in [<a href="./rfc5040" title=""A Remote Direct Memory Access Protocol Specification"">RFC5040</a>] and [<a href="./rfc5041" title=""Direct Data Placement over Reliable Transports"">RFC5041</a>].  Any enhanced RDMA
   connection establishment error generates an MPA termination message
   to a peer.  [<a href="./rfc5040" title=""A Remote Direct Memory Access Protocol Specification"">RFC5040</a>] defines a triplet of protocol layers, error
   types, and error codes for error specification.  MPA negotiation for
   RDMA connection establishment uses the following layer and error type
   for MPA error reporting:
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   Layer:      0x2 - LLP Error Type: 0x0 - MPA
   While [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>] defines four error codes, [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>] does not define
   any.  Enhanced RDMA connection establishment extends the error codes
   defined in [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>] by adding three new error codes.  Thus, enhanced
   RDMA connection establishment is backward compatible with both
   [<a href="./rfc5043" title=""Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation"">RFC5043</a>] and [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
   The following error codes are defined for enhanced RDMA connection
   establishment negotiation:
      Error Code         Description
      --------------------------------------------------------
      0x05               Local catastrophic
      0x06               Insufficient IRD resources
      0x07               No matching RTR option
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>.  Enhanced RDMA Connection Establishment Data</span>
   Enhanced RDMA connection establishment places the following 32 bits
   at the beginning of the Private Data field of the MPA Request and
   Reply Frames or the "DDP Stream Session Initiate" and "DDP Stream
   Session Accept" SCTP Session Control Chunks.  ULP-specified Private
   Data follows this field.  The maximum amount of ULP-specified Private
   Data is therefore reduced by 4 bytes.  Note that this field MUST be
   sent in network byte order, with the IRD and ORD encoded as 14-bit
   unsigned integers.
        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
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    0  |A|B|        IRD                |C|D|        ORD                |
    4  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   IRD:  Inbound RDMA Read Queue Depth.
   ORD:  Outbound RDMA Read Queue Depth.
   A: Control Flag for connection model.
   B: Control Flag for use of a zero-length FULPDU (Send) RTR
      indication.
   C: Control Flag for use of a zero-length RDMA Write RTR indication.
   D: Control Flag for use of a zero-length RDMA Read RTR indication.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>.  IRD and ORD Negotiation</span>
   The IRD and ORD are used for negotiation of Inbound RDMA Read Request
   Queue depths for both endpoints of the RDMA connection.  The IRD is
   used to configure the depth of the Inbound RDMA Read Request Queue
   (IRRQ) on each endpoint.  ORD is used to limit the number of
   simultaneous outbound RDMA Read Requests allowed at any given point
   in time in order to avoid IRRQ overruns at the remote endpoint.  In
   order to describe the negotiation of both local endpoint and remote
   endpoint ORD and IRD values, four terms are defined:
   Initiator IRD:  The IRD value sent in the MPA Request or "DDP Stream
      Session Initiate" SCTP Session Control Chunk.  This is the value
      of the initiator's IRD at the time of the MPA Request generation.
      The responder sets its local ORD value to this value or less.  The
      initiator IRD is the maximum number of simultaneous inbound RDMA
      Read Requests that the initiator can support for the requested
      connection.
   Initiator ORD:  The ORD value in the MPA Request or "DDP Stream
      Session Initiate" SCTP Session Control Chunk.  This is the initial
      value of the initiator's ORD at the time of the MPA Request
      generation and also a request to the responder to support a
      responder IRD of at least this value.  The initiator ORD is the
      maximum number of simultaneous outbound RDMA Read operations that
      the initiator desires the responder to support for the requested
      connection.
   Responder IRD:  The IRD value returned in the MPA Reply or "DDP
      Stream Session Accept" SCTP Session Control Chunk.  This is the
      actual value that the responder sets for its local IRD.  This
      value is greater than or equal to the initiator ORD for successful
      negotiations.  The responder IRD is the maximum number of
      simultaneous inbound RDMA Read Requests that the responder
      actually can support for the requested connection.
   Responder ORD:  The ORD value returned in the MPA Reply or "DDP
      Stream Session Accept" SCTP Session Control Chunk.  This is the
      actual value that the responder used for ORD and is less than or
      equal to the initiator IRD for successful negotiations.  The
      responder ORD is the maximum number of simultaneous outbound RDMA
      Read operations that the responder will allow for the requested
      connection.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   The relationships between these parameters after a successful
   negotiation is complete are the following:
   initiator ORD <= responder IRD
   responder ORD <= initiator IRD
   The responder and initiator MUST pass the peer's provided IRD and ORD
   values to the ULP, in addition to using the values as calculated by
   the preceding rules.
   The responder ORD SHOULD be set to a value less than or equal to the
   initiator IRD.  If the initiator ORD is insufficient to support the
   selected connection model, the responder IRD MAY be increased; for
   example, if the initiator ORD is 0 (RDMA Reads will not be used by
   the ULP) and the responder supports use of a zero-length RDMA Read
   RTR indication, then the responder IRD can be set to 1.  The
   responder MUST set its ORD at most to the initiator IRD.  The
   responder MAY reject the connection request if the initiator IRD is
   not sufficient for the ULP-required ORD and specify the required ORD
   in the MPA Reject Frame responder ORD.  Thus, the TERM message MUST
   contain Layer 2, Error Type 0, Error Code 6.
   Upon receiving the MPA Accept Frame from the responder, the initiator
   MUST set its IRD at least to the responder ORD and its ORD at most to
   the responder IRD.  If the initiator does not have sufficient
   resources for the required IRD, it MUST send a TERM message to the
   responder indicating insufficient resources and terminate the
   connection due to insufficient resources.  Thus, the TERM message
   MUST contain Layer 2, Error Type 0, Error Code 6.
   The initiator MUST pass the responder provided IRD and ORD to the ULP
   for both MPA Accept and Reject messages.  The initiator ULP can
   decide its course of action.  For example, the initiator ULP may
   terminate the established connection and renegotiate the responder
   ORD.
   An all ones value (0x3FFF) indicates that automatic negotiation of
   the IRD or ORD is not desired, and that the ULP will be responsible
   for it.  The responder MUST respond to an initiator ORD value of
   0x3FFF by leaving its local endpoint IRD value unchanged and setting
   the IRD to 0x3FFF in its reply message.  The initiator MUST leave its
   local endpoint ORD value unchanged upon receiving a responder IRD
   value of 0x3FFF.  The responder MUST respond to an initiator IRD
   value of 0x3FFF by leaving its local endpoint ORD value unchanged,
   and setting ORD to 0x3FFF in its reply message.  The initiator MUST
   leave its local endpoint IRD value unchanged upon receiving a
   responder ORD value of 0x3FFF.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>.  Peer-to-Peer Connection Negotiation</span>
   Control Flag A value 1 indicates that a peer-to-peer connection model
   is being performed, and value 0 indicates a client-server model.
   Control Flag B value 1 indicates that a zero-length FULPDU (Send) RTR
   indication is requested for the initiator and supported by the
   responder, respectively, 0 otherwise.  Control Flag C value 1
   indicates that a zero-length RDMA Write RTR indication is requested
   for the initiator and supported by the responder, respectively, 0
   otherwise.  Control Flag D value 1 indicates that a zero-length RDMA
   Read RTR indication is requested for the initiator and supported by
   the responder, respectively, 0 otherwise.  The initiator MUST set
   Control Flag A to 1 for the peer-to-peer model.  The initiator MUST
   set each Control Flag B, C, and D to 1 for each of the options it
   supports, if Control Flag A is set to 1.
   The responder MUST support at least one RTR indication option if it
   supports Enhanced RDMA connection establishment.  If Control Flag A
   is 1 in the MPA Request message, then the responder MUST set Control
   Flag A to 1 in the MPA reply message.  For each initiator-supported
   RTR indication option, the responder SHOULD set the corresponding
   Control Flag if the responder can support that option in an MPA
   reply.  The responder is not required to specify all RTR indication
   options it supports.  The responder MUST set at least one RTR
   indication option if it supports more than one initiator-specified
   RTR indication option.  The responder MAY include additional RTR
   indication options it supports, even if not requested by any
   initiator specified RTR indication options.  If the responder does
   not support any of the initiator-specified RTR indication options,
   then the responder MUST set at least one RTR indication type option
   it supports.
   Upon receiving the MPA Accept Frame with Control Flag A set to 1, the
   initiator MUST generate one of the negotiated RTR indications.  If
   the initiator is not able to generate any of the responder-supported
   RTR indications, then it MUST send a TERM message to the responder
   indicating failure to negotiate a mutually compatible connection
   model or RTR option, and terminate the connection.  Thus, the TERM
   message MUST contain Layer 2, Error Type 0, Error Code 7.  The ULP
   can negotiate a ULP-level RTR indication when a Provider-level RTR
   indication cannot be negotiated.
   The initiator MUST set Control Flag A to 0 for the client-server
   model.  The responder MUST set Control Flag A to 0 if Control Flag A
   is 0 in the request.  If Control Flag A is set to 0, then Control
   Flags B, C, and D MUST also be set to 0.  On reception, if Control
   Flag A is set to 0, then Control Flags B, C, and D MUST be ignored.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>.  Enhanced Connection Negotiation Flow</span>
   The RTR indication type and ORD/IRD negotiation follows the following
   order:
   initiator (MPA Request) -->  The initiator sets Control Flag A to 1
      to indicate the peer-to-peer connection model and sets its initial
      IRD/ORD on the local endpoint of the connection.  The initiator
      also sets Control Flags B, C, and D to 1 for each initiator-
      supported option of RTR indication.
   responder (MPA Reply) <--  The responder matches the initiator's
      Control Flag A value and sets ORD/IRD to its local endpoint values
      based upon the initiator's initial ORD/IRD values and the number
      of simultaneous RDMA Read Requests required by the ULP.  The
      responder sets Control Flags B, C, and D to 1 for each responder-
      supported option of RTR indication options for the peer-to-peer
      connection model.  The responder also sets its IRD/ORD to actual
      values.
   initiator (First RDMA Message) -->  After the initiator modifies its
      ORD/IRD to match the responder's values as stated above, the
      initiator sends the first message of the negotiated RTR indication
      option.  If no matching RTR indication option exists, then the
      initiator sends a TERM message.
      The initiator or responder MUST generate the TERM message that
      contains Layer 2, Error Type 0, Error Code 5 when it encounters
      any error locally for which the special Error Code is not defined
      in <a href="#section-8">Section 8</a> before resetting the connection.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>.  Interoperability</span>
   The initiator requests enhanced RDMA connection establishment by
   sending an enhanced RDMA establishment request; an enhanced responder
   is REQUIRED to respond with an enhanced RDMA connection establishment
   response, whereas an unenhanced responder treats the enhanced request
   as incorrectly formatted and closes the TCP connection.  All
   responders are REQUIRED to issue unenhanced RDMA connection
   establishment responses in response to unenhanced RDMA connection
   establishment requests.
   The initiator MUST NOT use the enhanced RDMA connection establishment
   formats or function codes when no enhanced functionality is desired.
   The responder MUST continue to accept unenhanced connection requests.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
   There are three initiator/responder cases that involve enhanced MPA:
   both the initiator and responder, only the responder, and only the
   initiator.  The enhanced MPA Frame is defined by field 'S' set to 1.
   Enhanced MPA initiator and responder:  If the responder receives an
      enhanced MPA message, it MUST respond with an enhanced MPA
      message.
   Enhanced MPA responder only:  If the responder receives an unenhanced
      MPA message ('S' is set to 0), it MUST respond with an unenhanced
      MPA message.
   Enhanced MPA initiator only:  If the responder receives an enhanced
      MPA message and it does not support enhanced RDMA connection
      establishment, it MUST close the TCP connection and exit MPA.
      From a standard RDMA connection establishment point of view, the
      enhanced MPA Frame is improperly formatted as stated in [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>].
      Thus, both the initiator and responder report TCP connection
      termination to an application locally.  In this case, the
      initiator MAY attempt to establish an RDMA connection using the
      unenhanced MPA protocol as defined in [<a href="./rfc5044" title=""Marker PDU Aligned Framing for TCP Specification"">RFC5044</a>] if this protocol
      is compatible with the application, and let the ULP deal with ORD
      and IRD and peer-to-peer negotiations.
   A note for potential future enhancements for connection establishment
   negotiation: It is possible to further extend formatting of Private
   Data of the MPA Request and Reply Frames and to use other bits from
   the "Res" field to indicate additional Private Data formatting.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>.  IANA Considerations</span>
   IANA has added the following entries to the "SCTP Function Codes for
   DDP Session Control" registry created by <a href="./rfc6580#section-3.5">Section 3.5 of [RFC6580]</a>:
   0x0005,  Enhanced DDP Stream Session Initiate, [<a href="./rfc6581">RFC6581</a>]
   0x0006,  Enhanced DDP Stream Session Accept, [<a href="./rfc6581">RFC6581</a>]
   0x0007,  Enhanced DDP Stream Session Reject, [<a href="./rfc6581">RFC6581</a>]
   IANA has added the following entries to the "MPA Errors" registry
   created by <a href="./rfc6580#section-3.3">Section 3.3 of [RFC6580]</a>:
   0x2/0x0/0x05,  - MPA Error / Local catastrophic error, [<a href="./rfc6581">RFC6581</a>]
   0x2/0x0/0x06  - MPA Error / Insufficient IRD resources, [<a href="./rfc6581">RFC6581</a>]
   0x2/0x0/0x07  - MPA Error / No matching RTR option, [<a href="./rfc6581">RFC6581</a>]
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>.  Security Considerations</span>
   The security considerations from <a href="./rfc5044">RFC 5044</a> and <a href="./rfc5043">RFC 5043</a> apply and the
   changes in this document do not introduce new security
   considerations.  However, it is recommended that implementations do
   sanity checking for the input parameters, including ORD, IRD, and the
   control flags used for RTR indication option negotiation.
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>.  Acknowledgements</span>
   The authors wish to thank Sean Hefty, Dave Minturn, Tom Talpey, David
   Black, and David Harrington for their valuable contributions and
   reviews of this document.
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>.  References</span>
<span class="h3"><a class="selflink" id="section-14.1" href="#section-14.1">14.1</a>.  Normative References</span>
   [<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-RFC4960">RFC4960</a>]  Stewart, R., "Stream Control Transmission Protocol", <a href="./rfc4960">RFC</a>
              <a href="./rfc4960">4960</a>, September 2007.
   [<a id="ref-RFC5040">RFC5040</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.
   [<a id="ref-RFC5041">RFC5041</a>]  Shah, H., Pinkerton, J., Recio, R., and P. Culley, "Direct
              Data Placement over Reliable Transports", <a href="./rfc5041">RFC 5041</a>,
              October 2007.
   [<a id="ref-RFC5043">RFC5043</a>]  Bestler, C. and R. Stewart, "Stream Control Transmission
              Protocol (SCTP) Direct Data Placement (DDP) Adaptation",
              <a href="./rfc5043">RFC 5043</a>, October 2007.
   [<a id="ref-RFC5044">RFC5044</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-RFC6580">RFC6580</a>]  Ko, M. and D. Black, "IANA Registries for the Remote
              Direct Data Placement (RDDP) Protocols", <a href="./rfc6580">RFC 6580</a>, April
              2012.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
<span class="h3"><a class="selflink" id="section-14.2" href="#section-14.2">14.2</a>.  Informative References</span>
   [<a id="ref-DAPL">DAPL</a>]     "Direct Access Programming Library",
              <<a href="http://www.datcollaborative.org/uDAPL_doc_062102.pdf">http://www.datcollaborative.org/uDAPL_doc_062102.pdf</a>>.
   [<a id="ref-IBTA">IBTA</a>]     "InfiniBand Architecture Specification Release 1.2.1",
              <<a href="http://www.infinibandta.org">http://www.infinibandta.org</a>>.
   [<a id="ref-OFA">OFA</a>]      "OFA verbs & APIs", <<a href="http://www.openfabrics.org/">http://www.openfabrics.org/</a>>.
   [<a id="ref-OpenMP">OpenMP</a>]   McGraw-Hill, "Parallel Programming in C with MPI and
              OpenMP", 2003.
   [<a id="ref-PPMPI">PPMPI</a>]    Morgan Kaufmann Publishers Inc., "Parallel Programming
              with MPI", 2008.
   [<a id="ref-RDMAC">RDMAC</a>]    "RDMA Protocol Verbs Specification (Version 1.0)",
              <<a href="http://www.rdmaconsortium.org/home/draft-hilland-iwarp-verbs-v1.0-RDMAC.pdf">http://www.rdmaconsortium.org/home/</a>
              <a href="http://www.rdmaconsortium.org/home/draft-hilland-iwarp-verbs-v1.0-RDMAC.pdf">draft-hilland-iwarp-verbs-v1.0-RDMAC.pdf</a>>.
   [<a id="ref-RDS">RDS</a>]      Open Fabrics Association, "Reliable Datagram Socket",
              2008,
              <<a href="http://www.openfabrics.org/archives/spring2008sonoma">http://www.openfabrics.org/archives/spring2008sonoma</a>>.
   [<a id="ref-UsingMPI">UsingMPI</a>] MIT Press, "Using MPI-2: Advanced Features of the Message
              Passing Interface", 1999.
   [<a id="ref-VIA">VIA</a>]      Cameron, Don and Greg Regnier, "Virtual Interface
              Architecture", Intel, April 2002.
<span class="grey">Kanevsky, et al.             Standards Track                   [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc6581">RFC 6581</a>         Enhanced RDMA Connection Establishment       April 2012</span>
Authors' Addresses
   Arkady Kanevsky (editor)
   Dell Inc.
   One Dell Way, MS PS2-47
   Round Rock, TX 78682
   USA
   Phone: +1-512-728-0000
   EMail: arkady.kanevsky@gmail.com
   Caitlin Bestler (editor)
   Nexenta Systems
   555 E El Camino Real #104
   Sunnyvale, CA 94087
   USA
   Phone: +1-949-528-3085
   EMail: Caitlin.Bestler@nexenta.com
   Robert Sharp
   Intel
   LAD High Performance Message Passing, Mailstop: AN1-WTR1
   1501 South Mopac, Suite 400
   Austin, TX 78746
   USA
   Phone: +1-512-493-3242
   EMail: robert.o.sharp@intel.com
   Steve Wise
   Open Grid Computing
   4030 Braker Lane STE 130
   Austin, TX 78759
   USA
   Phone: +1-512-343-9196 x101
   EMail: swise@opengridcomputing.com
Kanevsky, et al.             Standards Track                   [Page 25]
</pre>
 
     |