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
|
<pre>Internet Research Task Force (IRTF) M. Demmer
Request for Comments: 7242 UC Berkeley
Category: Experimental J. Ott
ISSN: 2070-1721 Aalto University
S. Perreault
June 2014
<span class="h1">Delay-Tolerant Networking TCP Convergence-Layer Protocol</span>
Abstract
This document describes the protocol for the TCP-based convergence
layer for Delay-Tolerant Networking (DTN). It is the product of the
IRTF's DTN Research Group (DTNRG).
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for examination, experimental implementation, and
evaluation.
This document defines an Experimental Protocol for the Internet
community. This document is a product of the Internet Research Task
Force (IRTF). The IRTF publishes the results of Internet-related
research and development activities. These results might not be
suitable for deployment. This RFC represents the consensus of the
Delay-Tolerant Networking Research Group of the Internet Research
Task Force (IRTF). Documents approved for publication by the IRSG
are not a candidate for any level of Internet Standard; see <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/rfc7242">http://www.rfc-editor.org/info/rfc7242</a>.
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.
<span class="grey">Demmer, et al. Experimental [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-2">2</a>
<a href="#section-2">2</a>. Definitions .....................................................<a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Definitions Specific to the TCPCL Protocol .................<a href="#page-4">4</a>
<a href="#section-3">3</a>. General Protocol Description ....................................<a href="#page-5">5</a>
<a href="#section-3.1">3.1</a>. Bidirectional Use of TCP Connection ........................<a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. Example Message Exchange ...................................<a href="#page-6">6</a>
<a href="#section-4">4</a>. Connection Establishment ........................................<a href="#page-7">7</a>
<a href="#section-4.1">4.1</a>. Contact Header .............................................<a href="#page-8">8</a>
<a href="#section-4.2">4.2</a>. Validation and Parameter Negotiation ......................<a href="#page-10">10</a>
<a href="#section-5">5</a>. Established Connection Operation ...............................<a href="#page-11">11</a>
<a href="#section-5.1">5.1</a>. Message Type Codes ........................................<a href="#page-11">11</a>
<a href="#section-5.2">5.2</a>. Bundle Data Transmission (DATA_SEGMENT) ...................<a href="#page-12">12</a>
<a href="#section-5.3">5.3</a>. Bundle Acknowledgments (ACK_SEGMENT) ......................<a href="#page-13">13</a>
<a href="#section-5.4">5.4</a>. Bundle Refusal (REFUSE_BUNDLE) ............................<a href="#page-14">14</a>
<a href="#section-5.5">5.5</a>. Bundle Length (LENGTH) ....................................<a href="#page-15">15</a>
<a href="#section-5.6">5.6</a>. KEEPALIVE Feature (KEEPALIVE) .............................<a href="#page-16">16</a>
<a href="#section-6">6</a>. Connection Termination .........................................<a href="#page-17">17</a>
<a href="#section-6.1">6.1</a>. Shutdown Message (SHUTDOWN) ...............................<a href="#page-17">17</a>
<a href="#section-6.2">6.2</a>. Idle Connection Shutdown ..................................<a href="#page-18">18</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-19">19</a>
<a href="#section-8">8</a>. IANA Considerations ............................................<a href="#page-20">20</a>
<a href="#section-8.1">8.1</a>. Port Number ...............................................<a href="#page-20">20</a>
<a href="#section-8.2">8.2</a>. Protocol Versions .........................................<a href="#page-20">20</a>
<a href="#section-8.3">8.3</a>. Message Types .............................................<a href="#page-20">20</a>
<a href="#section-8.4">8.4</a>. REFUSE_BUNDLE Reason Codes ................................<a href="#page-21">21</a>
<a href="#section-8.5">8.5</a>. SHUTDOWN Reason Codes .....................................<a href="#page-21">21</a>
<a href="#section-9">9</a>. Acknowledgments ................................................<a href="#page-21">21</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-21">21</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-21">21</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-21">21</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document describes the TCP-based convergence-layer protocol for
Delay-Tolerant Networking. Delay-Tolerant Networking is an end-to-
end architecture providing communications in and/or through highly
stressed environments, including those with intermittent
connectivity, long and/or variable delays, and high bit error rates.
More detailed descriptions of the rationale and capabilities of these
networks can be found in "Delay-Tolerant Network Architecture"
[<a href="./rfc4838" title=""Delay-Tolerant Networking Architecture"">RFC4838</a>].
An important goal of the DTN architecture is to accommodate a wide
range of networking technologies and environments. The protocol used
for DTN communications is the Bundle Protocol (BP) [<a href="./rfc5050" title=""Bundle Protocol Specification"">RFC5050</a>], an
application-layer protocol that is used to construct a store-and-
<span class="grey">Demmer, et al. Experimental [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
forward overlay network. As described in the Bundle Protocol
specification [<a href="./rfc5050" title=""Bundle Protocol Specification"">RFC5050</a>], it requires the services of a "convergence-
layer adapter" (CLA) to send and receive bundles using the service of
some "native" link, network, or Internet protocol. This document
describes one such convergence-layer adapter that uses the well-known
Transmission Control Protocol (TCP). This convergence layer is
referred to as TCPCL.
The locations of the TCPCL and the BP in the Internet model protocol
stack are shown in Figure 1. In particular, when BP is using TCP as
its bearer with TCPCL as its convergence layer, both BP and TCPCL
reside at the application layer of the Internet model.
+-------------------------+
| DTN Application | -\
+-------------------------| |
| Bundle Protocol (BP) | -> Application Layer
+-------------------------+ |
| TCP Conv. Layer (TCPCL) | -/
+-------------------------+
| TCP | ---> Transport Layer
+-------------------------+
| IP | ---> Network Layer
+-------------------------+
| Link-Layer Protocol | ---> Link Layer
+-------------------------+
| Physical Medium | ---> Physical Layer
+-------------------------+
Figure 1: The Locations of the Bundle Protocol and the TCP
Convergence-Layer Protocol in the Internet Protocol Stack
This document describes the format of the protocol data units passed
between entities participating in TCPCL communications. This
document does not address:
o The format of protocol data units of the Bundle Protocol, as those
are defined elsewhere [<a href="./rfc5050" title=""Bundle Protocol Specification"">RFC5050</a>].
o Mechanisms for locating or identifying other bundle nodes within
an internet.
Note that this document describes version 3 of the protocol.
Versions 0, 1, and 2 were never specified in an Internet-Draft, RFC,
or any other public document. These prior versions of the protocol
were, however, implemented in the DTN reference implementation
[<a href="#ref-DTNIMPL" title=""Delay-Tolerant Networking Reference Implementation"">DTNIMPL</a>] in prior releases; hence, the current version number
reflects the existence of those prior versions.
<span class="grey">Demmer, et al. Experimental [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
This is an experimental protocol produced within the IRTF's Delay-
Tolerant Networking Research Group (DTNRG). It represents the
consensus of all active contributors to this group. If this protocol
is used on the Internet, IETF standard protocols for security and
congestion control should be used.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Definitions</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>].
The terms defined in <a href="./rfc5050#section-3.1">Section 3.1 of [RFC5050]</a> are used extensively in
this document.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Definitions Specific to the TCPCL Protocol</span>
This section contains definitions that are interpreted to be specific
to the operation of the TCPCL protocol, as described below.
TCP Connection -- A TCP connection refers to a transport connection
using TCP as the transport protocol.
TCPCL Connection -- A TCPCL connection (as opposed to a TCP
connection) is a TCPCL communication relationship between two
bundle nodes. The lifetime of a TCPCL connection is bound to
the lifetime of an underlying TCP connection. Therefore, a
TCPCL connection is initiated when a bundle node initiates a TCP
connection to be established for the purposes of bundle
communication. A TCPCL connection is terminated when the TCP
connection ends, due either to one or both nodes actively
terminating the TCP connection or due to network errors causing
a failure of the TCP connection. For the remainder of this
document, the term "connection" without the prefix "TCPCL" shall
refer to a TCPCL connection.
Connection parameters -- The connection parameters are a set of
values used to affect the operation of the TCPCL for a given
connection. The manner in which these parameters are conveyed
to the bundle node and thereby to the TCPCL is implementation
dependent. However, the mechanism by which two bundle nodes
exchange and negotiate the values to be used for a given session
is described in <a href="#section-4.2">Section 4.2</a>.
Transmission -- Transmission refers to the procedures and mechanisms
(described below) for conveyance of a bundle from one node to
another.
<span class="grey">Demmer, et al. Experimental [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. General Protocol Description</span>
The service of this protocol is the transmission of DTN bundles over
TCP. This document specifies the encapsulation of bundles,
procedures for TCP setup and teardown, and a set of messages and node
requirements. The general operation of the protocol is as follows.
First, one node establishes a TCPCL connection to the other by
initiating a TCP connection. After setup of the TCP connection is
complete, an initial contact header is exchanged in both directions
to set parameters of the TCPCL connection and exchange a singleton
endpoint identifier for each node (not the singleton Endpoint
Identifier (EID) of any application running on the node) to denote
the bundle-layer identity of each DTN node. This is used to assist
in routing and forwarding messages, e.g., to prevent loops.
Once the TCPCL connection is established and configured in this way,
bundles can be transmitted in either direction. Each bundle is
transmitted in one or more logical segments of formatted bundle data.
Each logical data segment consists of a DATA_SEGMENT message header,
a Self-Delimiting Numeric Value (SDNV) as defined in [<a href="./rfc5050" title=""Bundle Protocol Specification"">RFC5050</a>] (see
also [<a href="./rfc6256" title=""Using Self-Delimiting Numeric Values in Protocols"">RFC6256</a>]) containing the length of the segment, and finally the
byte range of the bundle data. The choice of the length to use for
segments is an implementation matter. The first segment for a bundle
must set the 'start' flag, and the last one must set the 'end' flag
in the DATA_SEGMENT message header.
If multiple bundles are transmitted on a single TCPCL connection,
they MUST be transmitted consecutively. Interleaving data segments
from different bundles is not allowed. Bundle interleaving can be
accomplished by fragmentation at the BP layer.
An optional feature of the protocol is for the receiving node to send
acknowledgments as bundle data segments arrive (ACK_SEGMENT). The
rationale behind these acknowledgments is to enable the sender node
to determine how much of the bundle has been received, so that in
case the connection is interrupted, it can perform reactive
fragmentation to avoid re-sending the already transmitted part of the
bundle.
When acknowledgments are enabled, then for each data segment that is
received, the receiving node sends an ACK_SEGMENT code followed by an
SDNV containing the cumulative length of the bundle that has been
received. The sending node may transmit multiple DATA_SEGMENT
messages without necessarily waiting for the corresponding
ACK_SEGMENT responses. This enables pipelining of messages on a
channel. In addition, there is no explicit flow control on the TCPCL
layer.
<span class="grey">Demmer, et al. Experimental [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
Another optional feature is that a receiver may interrupt the
transmission of a bundle at any point in time by replying with a
REFUSE_BUNDLE message, which causes the sender to stop transmission
of the current bundle, after completing transmission of a partially
sent data segment. Note: This enables a cross-layer optimization in
that it allows a receiver that detects that it already has received a
certain bundle to interrupt transmission as early as possible and
thus save transmission capacity for other bundles.
For connections that are idle, a KEEPALIVE message may optionally be
sent at a negotiated interval. This is used to convey liveness
information.
Finally, before connections close, a SHUTDOWN message is sent on the
channel. After sending a SHUTDOWN message, the sender of this
message may send further acknowledgments (ACK_SEGMENT or
REFUSE_BUNDLE) but no further data messages (DATA_SEGMENT). A
SHUTDOWN message may also be used to refuse a connection setup by a
peer.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Bidirectional Use of TCP Connection</span>
There are specific messages for sending and receiving operations (in
addition to connection setup/teardown). TCPCL is symmetric, i.e.,
both sides can start sending data segments in a connection, and one
side's bundle transfer does not have to complete before the other
side can start sending data segments on its own. Hence, the protocol
allows for a bi-directional mode of communication.
Note that in the case of concurrent bidirectional transmission,
acknowledgment segments may be interleaved with data segments.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Example Message Exchange</span>
The following figure visually depicts the protocol exchange for a
simple session, showing the connection establishment and the
transmission of a single bundle split into three data segments (of
lengths L1, L2, and L3) from Node A to Node B.
Note that the sending node may transmit multiple DATA_SEGMENT
messages without necessarily waiting for the corresponding
ACK_SEGMENT responses. This enables pipelining of messages on a
channel. Although this example only demonstrates a single bundle
transmission, it is also possible to pipeline multiple DATA_SEGMENT
<span class="grey">Demmer, et al. Experimental [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
messages for different bundles without necessarily waiting for
ACK_SEGMENT messages to be returned for each one. However,
interleaving data segments from different bundles is not allowed.
No errors or rejections are shown in this example.
Node A Node B
====== ======
+-------------------------+ +-------------------------+
| Contact Header | -> <- | Contact Header |
+-------------------------+ +-------------------------+
+-------------------------+
| DATA_SEGMENT (start) | ->
| SDNV length [L1] | ->
| Bundle Data 0..(L1-1) | ->
+-------------------------+
+-------------------------+ +-------------------------+
| DATA_SEGMENT | -> <- | ACK_SEGMENT |
| SDNV length [L2] | -> <- | SDNV length [L1] |
|Bundle Data L1..(L1+L2-1)| -> +-------------------------+
+-------------------------+
+-------------------------+ +-------------------------+
| DATA_SEGMENT (end) | -> <- | ACK_SEGMENT |
| SDNV length [L3] | -> <- | SDNV length [L1+L2] |
|Bundle Data | -> +-------------------------+
| (L1+L2)..(L1+L2+L3-1)|
+-------------------------+
+-------------------------+
<- | ACK_SEGMENT |
<- | SDNV length [L1+L2+L3] |
+-------------------------+
+-------------------------+ +-------------------------+
| SHUTDOWN | -> <- | SHUTDOWN |
+-------------------------+ +-------------------------+
Figure 2: A Simple Visual Example of the Flow of Protocol Messages on
a Single TCP Session between Two Nodes (A and B)
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Connection Establishment</span>
For bundle transmissions to occur using the TCPCL, a TCPCL connection
must first be established between communicating nodes. It is up to
the implementation to decide how and when connection setup is
triggered. For example, some connections may be opened proactively
and maintained for as long as is possible given the network
<span class="grey">Demmer, et al. Experimental [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
conditions, while other connections may be opened only when there is
a bundle that is queued for transmission and the routing algorithm
selects a certain next-hop node.
To establish a TCPCL connection, a node must first establish a TCP
connection with the intended peer node, typically by using the
services provided by the operating system. Port number 4556 has been
assigned by IANA as the well-known port number for the TCP
convergence layer. Other port numbers MAY be used per local
configuration. Determining a peer's port number (if different from
the well-known TCPCL port) is up to the implementation.
If the node is unable to establish a TCP connection for any reason,
then it is an implementation matter to determine how to handle the
connection failure. A node MAY decide to re-attempt to establish the
connection. If it does so, it MUST NOT overwhelm its target with
repeated connection attempts. Therefore, the node MUST retry the
connection setup only after some delay (a 1-second minimum is
RECOMMENDED), and it SHOULD use a (binary) exponential backoff
mechanism to increase this delay in case of repeated failures. In
case a SHUTDOWN message specifying a reconnection delay is received,
that delay is used as the initial delay. The default initial delay
SHOULD be at least 1 second but SHOULD be configurable since it will
be application and network type dependent.
The node MAY declare failure after one or more connection attempts
and MAY attempt to find an alternate route for bundle data. Such
decisions are up to the higher layer (i.e., the BP).
Once a TCP connection is established, each node MUST immediately
transmit a contact header over the TCP connection. The format of the
contact header is described in <a href="#section-4.1">Section 4.1</a>.
Upon receipt of the contact header, both nodes perform the validation
and negotiation procedures defined in <a href="#section-4.2">Section 4.2</a>
After receiving the contact header from the other node, either node
MAY also refuse the connection by sending a SHUTDOWN message. If
connection setup is refused, a reason MUST be included in the
SHUTDOWN message.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Contact Header</span>
Once a TCP connection is established, both parties exchange a contact
header. This section describes the format of the contact header and
the meaning of its fields.
<span class="grey">Demmer, et al. Experimental [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
The format for the Contact Header is as follows:
1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 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
+---------------+---------------+---------------+---------------+
| magic='dtn!' |
+---------------+---------------+---------------+---------------+
| version | flags | keepalive_interval |
+---------------+---------------+---------------+---------------+
| local EID length (SDNV) |
+---------------+---------------+---------------+---------------+
| |
+ local EID (variable) +
| |
+---------------+---------------+---------------+---------------+
Figure 3: Contact Header Format
The fields of the contact header are:
magic: A four-byte field that always contains the byte sequence 0x64
0x74 0x6e 0x21, i.e., the text string "dtn!" in US-ASCII.
version: A one-byte field value containing the value 3 (current
version of the protocol).
flags: A one-byte field containing optional connection flags. The
first four bits are unused and MUST be set to zero upon
transmission and MUST be ignored upon reception. The last four
bits are interpreted as shown in Table 1 below.
keepalive_interval: A two-byte integer field containing the number
of seconds between exchanges of KEEPALIVE messages on the
connection (see <a href="#section-5.6">Section 5.6</a>). This value is in network byte
order, as are all other multi-byte fields described in this
protocol.
local EID length: A variable-length SDNV field containing the length
of the endpoint identifier (EID) for some singleton endpoint in
which the sending node is a member. A four-byte SDNV is
depicted for clarity of the figure.
local EID: A byte string containing the EID of some singleton
endpoint in which the sending node is a member, in the canonical
format of <scheme name>:<scheme-specific part>. An eight-byte
EID is shown for clarity of the figure.
<span class="grey">Demmer, et al. Experimental [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
+----------+--------------------------------------------------------+
| Value | Meaning |
+----------+--------------------------------------------------------+
| 00000001 | Request acknowledgment of bundle segments. |
| 00000010 | Request enabling of reactive fragmentation. |
| 00000100 | Indicate support for bundle refusal. This flag MUST |
| | NOT be set to '1' unless support for acknowledgments |
| | is also indicated. |
| 00001000 | Request sending of LENGTH messages. |
+----------+--------------------------------------------------------+
Table 1: Contact Header Flags
The manner in which values are configured and chosen for the various
flags and parameters in the contact header is implementation
dependent.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Validation and Parameter Negotiation</span>
Upon reception of the contact header, each node follows the following
procedures to ensure the validity of the TCPCL connection and to
negotiate values for the connection parameters.
If the magic string is not present or is not valid, the connection
MUST be terminated. The intent of the magic string is to provide
some protection against an inadvertent TCP connection by a different
protocol than the one described in this document. To prevent a flood
of repeated connections from a misconfigured application, a node MAY
elect to hold an invalid connection open and idle for some time
before closing it.
If a node receives a contact header containing a version that is
greater than the current version of the protocol that the node
implements, then the node SHOULD interpret all fields and messages as
it would normally. If a node receives a contact header with a
version that is lower than the version of the protocol that the node
implements, the node may either terminate the connection due to the
version mismatch or may adapt its operation to conform to the older
version of the protocol. This decision is an implementation matter.
A node calculates the parameters for a TCPCL connection by
negotiating the values from its own preferences (conveyed by the
contact header it sent) with the preferences of the peer node
(expressed in the contact header that it received). This negotiation
MUST proceed in the following manner:
<span class="grey">Demmer, et al. Experimental [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
o The parameter for requesting acknowledgment of bundle segments is
set to true iff the corresponding flag is set in both contact
headers.
o The parameter for enabling reactive fragmentation is set to true
iff the corresponding flag is set in both contact headers.
o The bundle refusal capability is set to true if the corresponding
flag is set in both contact headers and if segment acknowledgment
has been enabled.
o The keepalive_interval parameter is set to the minimum value from
both contact headers. If one or both contact headers contains the
value zero, then the keepalive feature (described in <a href="#section-5.6">Section 5.6</a>)
is disabled.
o The flag requesting sending of LENGTH messages is handled as
described in <a href="#section-5.5">Section 5.5</a>.
Once this process of parameter negotiation is completed, the protocol
defines no additional mechanism to change the parameters of an
established connection; to effect such a change, the connection MUST
be terminated and a new connection established.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Established Connection Operation</span>
This section describes the protocol operation for the duration of an
established connection, including the mechanisms for transmitting
bundles over the connection.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Message Type Codes</span>
After the initial exchange of a contact header, all messages
transmitted over the connection are identified by a one-byte header
with the following structure:
0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
| type | flags |
+-+-+-+-+-+-+-+-+
Figure 4: Format of the One-Byte Message Header
type: Indicates the type of the message as per Table 2 below
flags: Optional flags defined based on message type.
The types and values for the message type code are as follows.
<span class="grey">Demmer, et al. Experimental [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
+----------------+---------+----------------------------------------+
| Type | Code | Description |
+----------------+---------+----------------------------------------+
| | 0x0 | Reserved. |
| | | |
| DATA_SEGMENT | 0x1 | Indicates the transmission of a |
| | | segment of bundle data, as described |
| | | in <a href="#section-5.2">Section 5.2</a>. |
| | | |
| ACK_SEGMENT | 0x2 | Acknowledges reception of a data |
| | | segment, as described in <a href="#section-5.3">Section 5.3</a> |
| | | |
| REFUSE_BUNDLE | 0x3 | Indicates that the transmission of the |
| | | current bundle shall be stopped, as |
| | | described in <a href="#section-5.4">Section 5.4</a>. |
| | | |
| KEEPALIVE | 0x4 | KEEPALIVE message for the connection, |
| | | as described in <a href="#section-5.6">Section 5.6</a>. |
| | | |
| SHUTDOWN | 0x5 | Indicates that one of the nodes |
| | | participating in the connection wishes |
| | | to cleanly terminate the connection, |
| | | as described in <a href="#section-6">Section 6</a>. |
| | | |
| LENGTH | 0x6 | Contains the length (in bytes) of the |
| | | next bundle, as described in Section |
| | | 5.5. |
| | | |
| | 0x7-0xf | Unassigned. |
| | | |
+----------------+---------+----------------------------------------+
Table 2: TCPCL Message Types
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Bundle Data Transmission (DATA_SEGMENT)</span>
Each bundle is transmitted in one or more data segments. The format
of a DATA_SEGMENT message follows:
1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0x1 |0|0|S|E| length ... | contents.... |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 5: Format of DATA_SEGMENT Messages
The type portion of the message header contains the value 0x1.
<span class="grey">Demmer, et al. Experimental [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
The flags portion of the message header byte contains two optional
values in the two low-order bits, denoted 'S' and 'E' above. The 'S'
bit MUST be set to one if it precedes the transmission of the first
segment of a new bundle. The 'E' bit MUST be set to one when
transmitting the last segment of a bundle.
Following the message header, the length field is an SDNV containing
the number of bytes of bundle data that are transmitted in this
segment. Following this length is the actual data contents.
Determining the size of the segment is an implementation matter. In
particular, a node may, based on local policy or configuration, only
ever transmit bundle data in a single segment, in which case both the
'S' and 'E' bits MUST be set to one.
In the Bundle Protocol specification [<a href="./rfc5050" title=""Bundle Protocol Specification"">RFC5050</a>], a single bundle
comprises a primary bundle block, a payload block, and zero or more
additional bundle blocks. The relationship between the protocol
blocks and the convergence-layer segments is an implementation-
specific decision. In particular, a segment MAY contain more than
one protocol block; alternatively, a single protocol block (such as
the payload) MAY be split into multiple segments.
However, a single segment MUST NOT contain data of more than a single
bundle.
Once a transmission of a bundle has commenced, the node MUST only
send segments containing sequential portions of that bundle until it
sends a segment with the 'E' bit set.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Bundle Acknowledgments (ACK_SEGMENT)</span>
Although the TCP transport provides reliable transfer of data between
transport peers, the typical BSD sockets interface provides no means
to inform a sending application of when the receiving application has
processed some amount of transmitted data. Thus, after transmitting
some data, a Bundle Protocol agent needs an additional mechanism to
determine whether the receiving agent has successfully received the
segment.
To this end, the TCPCL protocol offers an optional feature whereby a
receiving node transmits acknowledgments of reception of data
segments. This feature is enabled if, and only if, during the
exchange of contact headers, both parties set the flag to indicate
that segment acknowledgments are enabled (see <a href="#section-4.1">Section 4.1</a>). If so,
then the receiver MUST transmit a bundle acknowledgment message when
it successfully receives each data segment.
<span class="grey">Demmer, et al. Experimental [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
The format of a bundle acknowledgment is as follows:
1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0x2 |0|0|0|0| acknowledged length ... |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 6: Format of ACK_SEGMENT Messages
To transmit an acknowledgment, a node first transmits a message
header with the ACK_SEGMENT type code and all flags set to zero, then
transmits an SDNV containing the cumulative length in bytes of the
received segment(s) of the current bundle. The length MUST fall on a
segment boundary. That is, only full segments can be acknowledged.
For example, suppose the sending node transmits four segments of
bundle data with lengths 100, 200, 500, and 1000, respectively.
After receiving the first segment, the node sends an acknowledgment
of length 100. After the second segment is received, the node sends
an acknowledgment of length 300. The third and fourth
acknowledgments are of length 800 and 1800, respectively.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Bundle Refusal (REFUSE_BUNDLE)</span>
As bundles may be large, the TCPCL supports an optional mechanisms by
which a receiving node may indicate to the sender that it does not
want to receive the corresponding bundle.
To do so, upon receiving a DATA_SEGMENT message, the node MAY
transmit a REFUSE_BUNDLE message. As data segments and
acknowledgments may cross on the wire, the bundle that is being
refused is implicitly identified by the sequence in which
acknowledgements and refusals are received.
The format of the REFUSE_BUNDLE message is as follows:
0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
| 0x3 | RCode |
+-+-+-+-+-+-+-+-+
Figure 7: Format of REFUSE_BUNDLE Messages
The RCode field, which stands for "reason code", contains a value
indicating why the bundle was refused. The following table contains
semantics for some values. Other values may be registered with IANA,
as defined in <a href="#section-8">Section 8</a>.
<span class="grey">Demmer, et al. Experimental [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
+---------+---------------------------------------------------------+
| RCode | Semantics |
+---------+---------------------------------------------------------+
| 0x0 | Reason for refusal is unknown or not specified. |
| 0x1 | The receiver now has the complete bundle. The sender |
| | may now consider the bundle as completely received. |
| 0x2 | The receiver's resources are exhausted. The sender |
| | SHOULD apply reactive bundle fragmentation before |
| | retrying. |
| 0x3 | The receiver has encountered a problem that requires |
| | the bundle to be retransmitted in its entirety. |
| 0x4-0x7 | Unassigned. |
| 0x8-0xf | Reserved for future usage. |
+---------+---------------------------------------------------------+
Table 3: REFUSE_BUNDLE Reason Codes
The receiver MUST, for each bundle preceding the one to be refused,
have either acknowledged all DATA_SEGMENTs or refused the bundle.
This allows the sender to identify the bundles accepted and refused
by means of a simple FIFO list of segments and acknowledgments.
The bundle refusal MAY be sent before the entire data segment is
received. If a sender receives a REFUSE_BUNDLE message, the sender
MUST complete the transmission of any partially sent DATA_SEGMENT
message (so that the receiver stays in sync). The sender MUST NOT
commence transmission of any further segments of the rejected bundle
subsequently. Note, however, that this requirement does not ensure
that a node will not receive another DATA_SEGMENT for the same bundle
after transmitting a REFUSE_BUNDLE message since messages may cross
on the wire; if this happens, subsequent segments of the bundle
SHOULD also be refused with a REFUSE_BUNDLE message.
Note: If a bundle transmission is aborted in this way, the receiver
may not receive a segment with the 'E' flag set to '1' for the
aborted bundle. The beginning of the next bundle is identified by
the 'S' bit set to '1', indicating the start of a new bundle.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Bundle Length (LENGTH)</span>
The LENGTH message contains the total length, in bytes, of the next
bundle, formatted as an SDNV. Its purpose is to allow nodes to
preemptively refuse bundles that would exceed their resources. It is
an optimization.
<span class="grey">Demmer, et al. Experimental [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
The format of the LENGTH message is as follows:
1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0x6 |0|0|0|0| total bundle length ... |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 8: Format of LENGTH Messages
LENGTH messages MUST NOT be sent unless the corresponding flag bit is
set in the contact header. If the flag bit is set, LENGTH messages
MAY be sent at the sender's discretion. LENGTH messages MUST NOT be
sent unless the next DATA_SEGMENT message has the 'S' bit set to "1"
(i.e., just before the start of a new bundle).
A receiver MAY send a BUNDLE_REFUSE message as soon as it receives a
LENGTH message without waiting for the next DATA_SEGMENT message.
The sender MUST be prepared for this and MUST associate the refusal
with the right bundle.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. KEEPALIVE Feature (KEEPALIVE)</span>
The protocol includes a provision for transmission of KEEPALIVE
messages over the TCP connection to help determine if the connection
has been disrupted.
As described in <a href="#section-4.1">Section 4.1</a>, one of the parameters in the contact
header is the keepalive_interval. Both sides populate this field
with their requested intervals (in seconds) between KEEPALIVE
messages.
The format of a KEEPALIVE message is a one-byte message type code of
KEEPALIVE (as described in Table 2) with no additional data. Both
sides SHOULD send a KEEPALIVE message whenever the negotiated
interval has elapsed with no transmission of any message (KEEPALIVE
or other).
If no message (KEEPALIVE or other) has been received for at least
twice the keepalive_interval, then either party MAY terminate the
session by transmitting a one-byte SHUTDOWN message (as described in
Table 2) and by closing the TCP connection.
Note: The keepalive_interval should not be chosen too short as TCP
retransmissions may occur in case of packet loss. Those will have to
be triggered by a timeout (TCP retransmission timeout (RTO)), which
is dependent on the measured RTT for the TCP connection so that
KEEPALIVE messages may experience noticeable latency.
<span class="grey">Demmer, et al. Experimental [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Connection Termination</span>
This section describes the procedures for ending a TCPCL connection.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Shutdown Message (SHUTDOWN)</span>
To cleanly shut down a connection, a SHUTDOWN message MUST be
transmitted by either node at any point following complete
transmission of any other message. In case acknowledgments have been
negotiated, a node SHOULD acknowledge all received data segments
first and then shut down the connection.
The format of the SHUTDOWN message is as follows:
1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0x5 |0|0|R|D| reason (opt) | reconnection delay (opt) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 9: Format of Bundle SHUTDOWN Messages
It is possible for a node to convey additional information regarding
the reason for connection termination. To do so, the node MUST set
the 'R' bit in the message header flags and transmit a one-byte
reason code immediately following the message header. The specified
values of the reason code are:
+-----------+------------------+------------------------------------+
| Code | Meaning | Description |
+-----------+------------------+------------------------------------+
| 0x00 | Idle timeout | The connection is being closed due |
| | | to idleness. |
| | | |
| 0x01 | Version mismatch | The node cannot conform to the |
| | | specified TCPCL protocol version. |
| | | |
| 0x02 | Busy | The node is too busy to handle the |
| | | current connection. |
| | | |
| 0x03-0xff | | Unassigned. |
+-----------+------------------+------------------------------------+
Table 4: SHUTDOWN Reason Codes
It is also possible to convey a requested reconnection delay to
indicate how long the other node must wait before attempting
connection re-establishment. To do so, the node sets the 'D' bit in
<span class="grey">Demmer, et al. Experimental [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
the message header flags and then transmits an SDNV specifying the
requested delay, in seconds, following the message header (and
optionally, the SHUTDOWN reason code). The value 0 SHALL be
interpreted as an infinite delay, i.e., that the connecting node MUST
NOT re-establish the connection. In contrast, if the node does not
wish to request a delay, it SHOULD omit the reconnection delay field
(and set the 'D' bit to zero). Note that in the figure above, the
reconnection delay SDNV is represented as a two-byte field for
convenience.
A connection shutdown MAY occur immediately after TCP connection
establishment or reception of a contact header (and prior to any
further data exchange). This may, for example, be used to notify
that the node is currently not able or willing to communicate.
However, a node MUST always send the contact header to its peer
before sending a SHUTDOWN message.
If either node terminates a connection prematurely in this manner, it
SHOULD send a SHUTDOWN message and MUST indicate a reason code unless
the incoming connection did not include the magic string. If a node
does not want its peer to reopen the connection immediately, it
SHOULD set the 'D' bit in the flags and include a reconnection delay
to indicate when the peer is allowed to attempt another connection
setup.
If a connection is to be terminated before another protocol message
has completed, then the node MUST NOT transmit the SHUTDOWN message
but still SHOULD close the TCP connection. In particular, if the
connection is to be closed (for whatever reason) while a node is in
the process of transmitting a bundle data segment, the receiving node
is still expecting segment data and might erroneously interpret the
SHUTDOWN message to be part of the data segment.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Idle Connection Shutdown</span>
The protocol includes a provision for clean shutdown of idle TCP
connections. Determining the length of time to wait before closing
idle connections, if they are to be closed at all, is an
implementation and configuration matter.
If there is a configured time to close idle links and if no bundle
data (other than KEEPALIVE messages) has been received for at least
that amount of time, then either node MAY terminate the connection by
transmitting a SHUTDOWN message indicating the reason code of 'Idle
timeout' (as described in Table 4). After receiving a SHUTDOWN
message in response, both sides may close the TCP connection.
<span class="grey">Demmer, et al. Experimental [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
One security consideration for this protocol relates to the fact that
nodes present their endpoint identifier as part of the connection
header exchange. It would be possible for a node to fake this value
and present the identity of a singleton endpoint in which the node is
not a member, essentially masquerading as another DTN node. If this
identifier is used without further verification as a means to
determine which bundles are transmitted over the connection, then the
node that has falsified its identity may be able to obtain bundles
that it should not have. Therefore, a node SHALL NOT use the
endpoint identifier conveyed in the TCPCL connection message to
derive a peer node's identity unless it can ascertain it via other
means.
These concerns may be mitigated through the use of the Bundle
Security Protocol [<a href="./rfc6257" title=""Bundle Security Protocol Specification"">RFC6257</a>]. In particular, the Bundle
Authentication Block defines mechanism for secure exchange of bundles
between DTN nodes. Thus, an implementation could delay trusting the
presented endpoint identifier until the node can securely validate
that its peer is in fact the only member of the given singleton
endpoint.
In general, TCPCL does not provide any security services. The
mechanisms defined in [<a href="./rfc6257" title=""Bundle Security Protocol Specification"">RFC6257</a>] are to be used instead.
Nothing in TCPCL prevents the use of the Transport Layer Security
(TLS) protocol [<a href="./rfc5246" title=""The Transport Layer Security (TLS) Protocol Version 1.2"">RFC5246</a>] to secure a connection.
Another consideration for this protocol relates to denial-of-service
attacks. A node may send a large amount of data over a TCP
connection, requiring the receiving node to handle the data, attempt
to stop the flood of data by sending a REFUSE_BUNDLE message, or
forcibly terminate the connection. This burden could cause denial of
service on other, well-behaving connections. There is also nothing
to prevent a malicious node from continually establishing connections
and repeatedly trying to send copious amounts of bundle data. A
listening node MAY take countermeasures such as ignoring TCP SYN
messages, closing TCP connections as soon as they are established,
waiting before sending the contact header, sending a SHUTDOWN message
quickly or with a delay, etc.
<span class="grey">Demmer, et al. Experimental [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
In this section, registration procedures are as defined in [<a href="./rfc5226" title="">RFC5226</a>].
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Port Number</span>
Port number 4556 has been assigned as the default port for the TCP
convergence layer.
Service Name: dtn-bundle
Transport Protocol(s): TCP
Assignee: Simon Perreault <simon@per.reau.lt>
Contact: Simon Perreault <simon@per.reau.lt>
Description: DTN Bundle TCP CL Protocol
Reference: [<a href="./rfc7242">RFC7242</a>]
Port Number: 4556
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Protocol Versions</span>
IANA has created, under the "Bundle Protocol" registry, a sub-
registry titled "Bundle Protocol TCP Convergence-Layer Version
Numbers" and initialized it with the following:
+-------+-------------+-----------+
| Value | Description | Reference |
+-------+-------------+-----------+
| 0 | Reserved | [<a href="./rfc7242">RFC7242</a>] |
| 1 | Reserved | [<a href="./rfc7242">RFC7242</a>] |
| 2 | Reserved | [<a href="./rfc7242">RFC7242</a>] |
| 3 | TCPCL | [<a href="./rfc7242">RFC7242</a>] |
| 4-255 | Unassigned | [<a href="./rfc7242">RFC7242</a>] |
+-------+-------------+-----------+
The registration procedure is RFC Required.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. Message Types</span>
IANA has created, under the "Bundle Protocol" registry, a sub-
registry titled "Bundle Protocol TCP Convergence-Layer Message Types"
and initialized it with the contents of Table 2. The registration
procedure is RFC Required.
<span class="grey">Demmer, et al. Experimental [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. REFUSE_BUNDLE Reason Codes</span>
IANA has created, under the "Bundle Protocol" registry, a sub-
registry titled "Bundle Protocol TCP Convergence-Layer REFUSE_BUNDLE
Reason Codes" and initialized it with the contents of Table 3. The
registration procedure is RFC Required.
<span class="h3"><a class="selflink" id="section-8.5" href="#section-8.5">8.5</a>. SHUTDOWN Reason Codes</span>
IANA has created, under the "Bundle Protocol" registry, a sub-
registry titled "Bundle Protocol TCP Convergence-Layer SHUTDOWN
Reason Codes" and initialized it with the contents of Table 4. The
registration procedure is RFC Required.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Acknowledgments</span>
The authors would like to thank the following individuals who have
participated in the drafting, review, and discussion of this memo:
Alex McMahon, Brenton Walker, Darren Long, Dirk Kutscher, Elwyn
Davies, Jean-Philippe Dionne, Joseph Ishac, Keith Scott, Kevin Fall,
Lloyd Wood, Marc Blanchet, Peter Lovell, Scott Burleigh, Stephen
Farrell, Vint Cerf, and William Ivancic.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.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-RFC5050">RFC5050</a>] Scott, K. and S. Burleigh, "Bundle Protocol
Specification", <a href="./rfc5050">RFC 5050</a>, November 2007.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
May 2008.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-DTNIMPL">DTNIMPL</a>] DTNRG, "Delay-Tolerant Networking Reference
Implementation", <<a href="https://sites.google.com/site/dtnresgroup/home/code">https://sites.google.com/site/</a>
<a href="https://sites.google.com/site/dtnresgroup/home/code">dtnresgroup/home/code</a>>.
[<a id="ref-RFC4838">RFC4838</a>] Cerf, V., Burleigh, S., Hooke, A., Torgerson, L., Durst,
R., Scott, K., Fall, K., and H. Weiss, "Delay-Tolerant
Networking Architecture", <a href="./rfc4838">RFC 4838</a>, April 2007.
<span class="grey">Demmer, et al. Experimental [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7242">RFC 7242</a> DTN TCP Convergence Layer June 2014</span>
[<a id="ref-RFC5246">RFC5246</a>] Dierks, T. and E. Rescorla, "The Transport Layer Security
(TLS) Protocol Version 1.2", <a href="./rfc5246">RFC 5246</a>, August 2008.
[<a id="ref-RFC6256">RFC6256</a>] Eddy, W. and E. Davies, "Using Self-Delimiting Numeric
Values in Protocols", <a href="./rfc6256">RFC 6256</a>, May 2011.
[<a id="ref-RFC6257">RFC6257</a>] Symington, S., Farrell, S., Weiss, H., and P. Lovell,
"Bundle Security Protocol Specification", <a href="./rfc6257">RFC 6257</a>, May
2011.
Authors' Addresses
Michael J. Demmer
University of California, Berkeley
Computer Science Division
445 Soda Hall
Berkeley, CA 94720-1776
US
EMail: demmer@cs.berkeley.edu
Joerg Ott
Aalto University
Department of Communications and Networking
PO Box 13000
AALTO 02015
Finland
EMail: jo@netlab.tkk.fi
Simon Perreault
Quebec, QC
Canada
EMail: simon@per.reau.lt
Demmer, et al. Experimental [Page 22]
</pre>
|