<?xml version='1.0' encoding='utf-8'?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude"
     xml:lang="en"
     ipr="trust200902"
     submissionType="IETF"
     consensus="true"
     category="std"
     docName="draft-tuexen-tsvwg-rfc6951-bis-02"
     obsoletes="6951"
     version="3"
     tocDepth="4">

<front>
<title abbrev='UDP Encapsulation of SCTP Packets'>
UDP Encapsulation of Stream Control Transmission Protocol (SCTP) Packets
for End-Host to End-Host Communication
</title>

<!-- ************** MICHAEL TUEXEN *************** -->
<author initials='M.' surname='Tüxen' fullname='Michael Tüxen'>
<organization abbrev='Münster Univ. of Appl. Sciences'>
              Münster University of Applied Sciences</organization>
<address>
    <postal>
        <street>Stegerwaldstrasse 39</street>
        <city>48565 Steinfurt</city>
        <country>Germany</country>
    </postal>
    <email>tuexen@fh-muenster.de</email>
</address>
</author>

<!-- ************** RANDALL STEWART ***************-->
<author initials="R." surname="Stewart" fullname="Randall R. Stewart">
<organization>Netflix, Inc.</organization>
<address>
    <postal>
        <street>2455 Heritage Green Ave</street>
        <city>Davenport</city>
        <region>FL</region>
        <code>33837</code>
        <country>United States of America</country>
    </postal>
    <email>randall@lakerest.net</email>
</address>
</author>

<date />

<abstract>
<t>This document describes a simple method of encapsulating Stream Control
Transmission Protocol (SCTP) packets into UDP packets and its limitations.
This allows the usage of SCTP in networks with legacy NATs that do not support
SCTP.
It can also be used to implement SCTP on hosts without directly accessing
the IP layer, for example, implementing it as part of the application without
requiring special privileges.</t>
<t>Please note that this document only describes the functionality
needed within an SCTP stack to add on UDP encapsulation, providing
only those mechanisms for two end-hosts to communicate with each
other over UDP ports.
In particular, it does not provide mechanisms to determine whether
UDP encapsulation is being used by the peer, nor the mechanisms for
determining which remote UDP port number can be used.
These functions are out of scope for this document.</t>
<t>This document covers only end-hosts and not tunneling (egress or ingress)
endpoints.</t>
</abstract>

</front>

<middle>

<section anchor='intro' title='Introduction'>
<t>This document describes a simple method of encapsulating SCTP packets into
UDP packets.
SCTP, as defined in <xref target='RFC9260'/>, runs directly over IPv4 or IPv6.
There are two main reasons for encapsulating SCTP packets:</t>
<ul>
<li><t>To allow SCTP traffic to pass through NATs, which do not provide
native SCTP support.</t></li>
<li><t>To allow SCTP to be implemented on hosts that do not provide direct
access to the IP layer. In particular, applications can use their own
SCTP implementation if the operating system does not provide one.</t></li>
</ul>
<t>SCTP provides the necessary congestion control and reliability service
that UDP does not perform.</t>
</section>

<section title='Conventions'>
<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>",
"<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL NOT</bcp14>",
"<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>",
"<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to
be interpreted as described in
BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when,
they appear in all capitals, as shown here.</t>
</section>

<section title='Use Cases'
         anchor='use_cases'>
<t>This section discusses two important use cases for encapsulating
SCTP into UDP.</t>
<section title='Portable SCTP Implementations'>
<t>Some operating systems support SCTP natively. For other
operating systems, implementations are available but require
special privileges to install and/or use them. In some cases,
 a kernel implementation might not be available at all. When providing
an SCTP implementation as part of a user process, most operating
systems require special privileges to access the IP layer
directly.</t>

<t>Using UDP encapsulation makes it possible to provide an
SCTP implementation as part of a user process that does not
require any special privileges.</t>

<t>A crucial point for implementing SCTP in user space is that the
source address of outgoing packets needs to be controlled.
This is not an issue if the SCTP stack can use all addresses configured
at the IP layer as source addresses.
However, it is an issue when also using the address management needed for
NAT traversal, described in <xref target='emb_addrs'/>.</t>
</section>

<section title='Legacy NAT Traversal'>
<t>Using UDP encapsulation allows SCTP communication when traversing NATs not
supporting SCTP.
For single-homed associations, IP addresses <bcp14>MUST NOT</bcp14> be listed in
the INIT and INIT-ACK chunks.
To use multiple addresses, the dynamic address reconfiguration extension
described in <xref target='RFC5061'/> <bcp14>MUST</bcp14> be used only with
wildcard addresses in the ASCONF chunks (Address Configuration Change Chunks)
in combination with <xref target='RFC4895'/>.</t>

<t>For multihomed SCTP associations, the address management
as described in <xref target='emb_addrs'/> <bcp14>MUST</bcp14> be performed.</t>

<t>SCTP sends periodic HEARTBEAT chunks on all idle paths.
These can keep the NAT state alive.</t>
</section>
</section>

<section title='Unilateral Self-Address Fixing (UNSAF) Considerations'>
<t>As <xref target='RFC3424'/> requires a limited scope,
this document only covers SCTP endpoints dealing with legacy constraints
as described in <xref target='use_cases'/>.
It doesn't cover generic tunneling endpoints.</t>
<t>Obviously, the exit strategy is to use hosts supporting SCTP natively and
middleboxes supporting SCTP.</t>
</section>

<section title='SCTP over UDP'>
<section title='Architectural Considerations'
         anchor='arch'>
<t>UDP-encapsulated SCTP is normally communicated between SCTP stacks
using the IANA-assigned UDP port number 9899 (sctp-tunneling) on both
ends.
There are circumstances where other ports <bcp14>MAY</bcp14> be used on either
end: As stated earlier, implementations in the application space
might be need to use ports other than the registered port. 
Since NAT boxes might change UDP port numbers, the receiver might observe other
UDP port numbers than were used by the sender.
Discovery of alternate ports is outside of the scope of this document,
but this section describes considerations for SCTP stack design in light
of their potential use.</t>

<t>Each SCTP stack uses a single local UDP encapsulation port number as
the destination port for all its incoming SCTP packets.
While the uniqueness of the local UDP encapsulation port number is not
necessarily needed for the protocol, this greatly simplifies implementation
design, since different ports for each address would require a sender
implementation to choose the appropriate port while doing source address
selection.
Using a single local UDP encapsulation port number per host is not possible
if the SCTP stack is implemented as part of each application, there are multiple
applications, and some of the applications want to use the same IP address.</t>

<t>An SCTP implementation supporting UDP encapsulation <bcp14>MUST</bcp14>
maintain a remote UDP encapsulation port number per destination address for each
SCTP association.
Again, because the remote stack <bcp14>MAY</bcp14> be using ports other
than the well-known port, each port <bcp14>MAY</bcp14> be different from each
stack.
However, because of remapping of ports by NATs, the remote ports associated
with different remote IP addresses <bcp14>MAY</bcp14> not be identical,
even if they are associated with the same stack.</t>

<t>Implementation note: Because the well-known port might not be used,
implementations need to allow other port numbers to be specified as a
local or remote UDP encapsulation port number through APIs.</t>
</section>

<section title='Packet Format'>
<t>To encapsulate an SCTP packet, a UDP header
as defined in <xref target='RFC0768'/> is inserted between
the IP header as defined in <xref target='RFC0791'/>
and the SCTP common header as defined in <xref target='RFC9260'/>.</t>
<t><xref target='sctp_udp_ipv4'/> shows the packet
format of an encapsulated SCTP packet when IPv4 is
used.</t>
<figure title='An SCTP/UDP/IPv4 Packet'
        anchor='sctp_udp_ipv4'
        align='center'>
<artwork>
 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         IPv4 Header                           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         UDP Header                            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      SCTP Common Header                       |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        SCTP Chunk #1                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           ...                                 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        SCTP Chunk #n                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
</artwork>
</figure>
<t>The packet format for an encapsulated SCTP packet when using
IPv6 as defined in <xref target='RFC8200'/> is shown in
<xref target='sctp_upd_ipv6'/>.
Please note that the number m of IPv6 extension headers can be 0.</t>
<figure title='An SCTP/UDP/IPv6 Packet'
        anchor='sctp_upd_ipv6'
        align='center'>
<artwork>
 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      IPv6 Base Header                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    IPv6 Extension Header #1                   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           ...                                 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    IPv6 Extension Header #m                   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         UDP Header                            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      SCTP Common Header                       |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        SCTP Chunk #1                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           ...                                 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        SCTP Chunk #n                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
</artwork>
</figure>
</section>

<section title='Encapsulation Procedure'>
<t>Within the UDP header, the source port <bcp14>MUST</bcp14> be the local UDP
encapsulation port number of the SCTP stack, and the destination port
<bcp14>MUST</bcp14> be the remote UDP encapsulation port number maintained for
the association and the destination address to which the packet is sent
(see <xref target='arch'/>).</t>
<t>Because the SCTP packet is the UDP payload, the length of the
UDP packet <bcp14>MUST</bcp14> be the length of the SCTP packet plus the size of
the UDP header.</t>

<t>The SCTP checksum <bcp14>MUST</bcp14> be computed for IPv4 and IPv6, and the
UDP checksum <bcp14>SHOULD</bcp14> be computed for IPv4 and IPv6.
(See <xref target='RFC0768'/> regarding IPv4;
see <xref target='RFC8200'/> and <xref target='RFC6936'/> regarding IPv6.)

Although UDP with a zero checksum over IPv6 is allowed under certain
constraints <xref target='RFC6936'/>, this document does not specify mechanisms
for this mode.
Deployed support might be limited; also, at the time of writing, the use of a
zero UDP checksum would be counter to the goal of legacy NAT traversal.</t>
</section>

<section title='Decapsulation Procedure'
         anchor='decaps'>
<t>When an encapsulated packet is received, the UDP header
is removed.
Then, the generic lookup is performed, as done by an SCTP stack whenever a
packet is received, to find the association for the received SCTP packet.
After finding the SCTP association (which includes checking the verification
tag), the UDP source port <bcp14>MUST</bcp14> be stored as the encapsulation
port for the destination address the SCTP packet is received from
(see <xref target='arch'/>).</t>
<t>When a non-encapsulated SCTP packet is received by the SCTP stack,
the encapsulation of outgoing packets belonging to the same association and
the corresponding destination address <bcp14>MUST</bcp14> be disabled.</t>
</section>

<section title='ICMP Considerations'
         anchor='icmp_cons'>
<t>When receiving ICMP or ICMPv6 response packets, there might not
be enough bytes in the payload to identify the SCTP association
that the SCTP packet triggering the ICMP or ICMPv6 packet belongs to.
If a received ICMP or ICMPv6 packet cannot be related to a specific
SCTP association or the verification tag cannot be verified,
it <bcp14>MUST</bcp14> be discarded silently.
In particular, this means that the SCTP stack <bcp14>MUST NOT</bcp14> rely on
receiving ICMP or ICMPv6 messages.
Implementation constraints could prevent processing received
ICMP or ICMPv6 messages.</t>
<t>If received ICMP or ICMPv6 messages are processed, the following mapping
<bcp14>SHOULD</bcp14> apply:</t>
<ol>
<li><t>ICMP messages with type 'Destination Unreachable' and code
'Port Unreachable' <bcp14>SHOULD</bcp14> be treated as ICMP messages
with type 'Destination Unreachable' and code 'Protocol Unreachable'.
See <xref target='RFC0792'/> for more details.</t></li>
<li><t>ICMPv6 messages with type 'Destination Unreachable' and code
'Port Unreachable' <bcp14>SHOULD</bcp14> be treated as ICMPv6 messages with type
'Parameter Problem' and code 'unrecognized Next Header type encountered'.
See <xref target='RFC4443'/> for more details.</t></li>
</ol>
</section>

<section title='Path MTU Considerations'>
<t>If an SCTP endpoint starts to encapsulate the packets of a path,
it <bcp14>MUST</bcp14> decrease the Path MTU of that path by the size of the
UDP header.
If it stops encapsulating them, the Path MTU <bcp14>SHOULD</bcp14> be increased
by the size of the UDP header.</t>
<t>When performing Path MTU discovery as described in
<xref target='RFC4820'/> and <xref target='RFC4821'/>,
it <bcp14>MUST</bcp14> be taken into account that one cannot rely on the
feedback provided by ICMP or ICMPv6 due to the limitation laid out in
<xref target='icmp_cons'/>.</t>
<t>If the implementation does not allow control of the Don't Fragment
(DF) bit contained in the IPv4 header, then Path MTU discovery can't be used.
In this case, an implementation-specific value <bcp14>SHOULD</bcp14> be
used instead.</t>
</section>

<section title='Handling of Embedded IP Addresses'
         anchor='emb_addrs'>
<t>When using UDP encapsulation for legacy NAT traversal, IP addresses that
might require translation <bcp14>MUST NOT</bcp14> be put into any SCTP packet.</t>
<t>This means that a multihomed SCTP association is set up initially as a
single-homed one, and the protocol extension <xref target='RFC5061'/>
in combination with <xref target='RFC4895'/> is used to add the other
addresses. Only wildcard addresses are put into the SCTP packet.</t>
<t>When addresses are changed during the lifetime of an association,
the protocol extension <xref target='RFC5061'/> <bcp14>MUST</bcp14> be used
with wildcard addresses only.
If an SCTP endpoint receives an ABORT with the T-bit set, it <bcp14>MAY</bcp14>
use this as an indication that the addresses seen by the peer might
have changed.</t>
</section>

<section title="Explicit Congestion Notification (ECN) Considerations">
<t>If the implementation supports the sending and receiving of the
ECN bits for the IP protocols being used by an SCTP association, the ECN bits
<bcp14>MUST NOT</bcp14> be changed during sending and receiving.</t>
</section>
</section>

<section title='Socket API Considerations'>
<t>This section describes how the socket API defined in
<xref target='RFC6458'/> needs to be extended to provide a way for the
application to control the UDP encapsulation.</t>
<t>Please note that this section is informational only.</t>

<t>A socket API implementation based on
<xref target='RFC6458'/>
is extended by supporting one new read/write socket option.</t>

<section title='Get or Set the Remote UDP Encapsulation Port Number
                (SCTP_REMOTE_UDP_ENCAPS_PORT)'>
<t>This socket option can be used to set and retrieve the UDP encapsulation
port number. This allows an endpoint to encapsulate initial packets.</t>
<artwork>
struct sctp_udpencaps {
  sctp_assoc_t sue_assoc_id;
  struct sockaddr_storage sue_address;
  uint16_t sue_port;
};
</artwork>
<dl newline="true">
<dt>sue_assoc_id:</dt>
<dd><t>This parameter is ignored for one-to-one style sockets.
For one-to-many style sockets, the application might fill in an association
identifier or SCTP_FUTURE_ASSOC for this query.
It is an error to use SCTP_{CURRENT|ALL}_ASSOC in sue_assoc_id.</t></dd>
<dt>sue_address:</dt>
<dd><t>This specifies which address is of interest. If a wildcard address
is provided, it applies only to future paths.</t></dd>
<dt>sue_port:</dt>
<dd><t>The UDP port number in network byte order; used as the destination port
number for UDP encapsulation. Providing a value of 0 disables
UDP encapsulation.</t></dd>
</dl>
</section>
</section>

<section title='IANA Considerations'>
<t>This document refers to the already assigned UDP port 9899 (sctp-tunneling).
IANA has updated this assignment to refer to this document.
As per <xref target='RFC6335'/>, the Assignee is [IESG] and
the Contact is [IETF_Chair].</t>
<t>Please note that the TCP port 9899 (sctp-tunneling) assignment is not
needed anymore, and IANA has removed this TCP port number assignment
and marked TCP port 9899 as "Reserved".</t>
</section>

<section title='Security Considerations'>
<t>Encapsulating SCTP into UDP does not add any additional
security considerations to the ones given in
<xref target='RFC9260'/> and
<xref target='RFC5061'/>.</t>
<t>Firewalls inspecting SCTP packets need also to be aware of the encapsulation
and apply corresponding rules to the encapsulated packets.</t>
<t>An attacker might send a malicious UDP packet towards an SCTP endpoint
to change the encapsulation port for a single remote address of
a particular SCTP association.
However, as specified in <xref target='decaps'/>, this requires the usage
of one of the two negotiated verification tags.
This protects against blind attackers the same way as described
in <xref target='RFC9260'/> for SCTP over IPv4 or IPv6.
Non-blind attackers can affect SCTP association using the UDP encapsulation
described in this document in the same way as SCTP associations not
using the UDP encapsulation of SCTP described here.</t>
</section>

<section anchor='acks' title='Acknowledgments'>
<t>The authors wish to thank
<contact fullname="Stewart Bryant"/>,
<contact fullname="Dave Crocker"/>,
<contact fullname="Gorry Fairhurst"/>,
<contact fullname="Tero Kivinen"/>,
<contact fullname="Barry Leiba"/>,
<contact fullname="Pete Resnick"/>,
<contact fullname="Martin Stiemerling"/>,
<contact fullname="Irene Rüngeler"/>,
and
<contact fullname="Dan Wing"/>
for their invaluable comments.</t>
</section>
</middle>

<back>
<references title='Normative References'>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.0768.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.0791.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.0792.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4443.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4820.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4821.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4895.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5061.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8200.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.9260.xml"/>
</references>
<references title='Informative References'>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3424.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6335.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6458.xml"/>
<xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6936.xml"/>

</references>
</back>
</rfc>
