Stream Control Transmission Protocol
{{Short description|Computer network protocol}}
{{Infobox networking protocol
| title = Stream Control Transmission Protocol
| logo =
| logo alt =
| image =
| image alt =
| caption =
| is stack = yes
| abbreviation = SCTP
| purpose =
| developer =
| date = 2000
| based on =
| influenced =
| osilayer = Transport layer (4)
| rfcs = {{IETF RFC|9260}}
| hardware =
}}
{{IPstack}}
The Stream Control Transmission Protocol (SCTP) is a computer networking communications protocol in the transport layer of the Internet protocol suite. Originally intended for Signaling System 7 (SS7) message transport in telecommunication, the protocol provides the message-oriented feature of the User Datagram Protocol (UDP), while ensuring reliable, in-sequence transport of messages with congestion control like the Transmission Control Protocol (TCP). Unlike UDP and TCP, the protocol supports multihoming and redundant paths to increase resilience and reliability.
SCTP is standardized by the Internet Engineering Task Force (IETF) in {{IETF RFC|9260}}. The SCTP reference implementation was released as part of FreeBSD version 7, and has since been widely ported to other platforms.
Formal oversight
The IETF Signaling Transport (SIGTRAN) working group defined the protocol (number 132{{cite web |url= https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml |title= Protocol Numbers |website= iana.org |publisher= IANA |access-date= 2014-09-09}}) in October 2000,{{cite IETF |title=Stream Control Transmission Protocol |rfc=2960 |date=October 2000|publisher=IETF}} and the IETF Transport Area (TSVWG) working group maintains it. {{IETF RFC|9260}} defines the protocol. {{IETF RFC|3286}} provides an introduction.
Message-based multi-streaming
SCTP applications submit data for transmission in messages (groups of bytes) to the SCTP transport layer. SCTP places messages and control information into separate chunks (data chunks and control chunks), each identified by a chunk header. The protocol can fragment a message into multiple data chunks, but each data chunk contains data from only one user message. SCTP bundles the chunks into SCTP packets. The SCTP packet, which is submitted to the Internet Protocol, consists of a packet header, SCTP control chunks (when necessary), followed by SCTP data chunks (when available).
SCTP may be characterized as message-oriented, meaning it transports a sequence of messages (each being a group of bytes), rather than transporting an unbroken stream of bytes as in TCP. As in UDP, in SCTP a sender sends a message in one operation, and that exact message is passed to the receiving application process in one operation. In contrast, TCP is a stream-oriented protocol, transporting streams of bytes reliably and in order. However TCP does not allow the receiver to know how many times the sender application called on the TCP transport passing it groups of bytes to be sent out. At the sender, TCP simply appends more bytes to a queue of bytes waiting to go out over the network, rather than having to keep a queue of individual separate outbound messages which must be preserved as such.
The term multi-streaming refers to the capability of SCTP to transmit several independent streams of chunks in parallel, for example transmitting web page images simultaneously with the web page text. In essence, it involves bundling several connections into a single SCTP association, operating on messages (or chunks) rather than bytes.
TCP preserves byte order in the stream by including a byte sequence number with each segment. SCTP, on the other hand, assigns a sequence number or a message-idThe DATA chunk uses a sequence number for ordered messages, the I-DATA chunk, which solves some problems with the original DATA chunk, uses a message-id for all messages to each message sent in a stream. This allows independent ordering of messages in different streams. However, message ordering is optional in SCTP; a receiving application may choose to process messages in the order of receipt instead of in the order of sending.
Features
Features of SCTP include:
- Reliable transmission of both ordered and unordered data streams
- Multihoming support in which one or both endpoints of a connection can consist of more than one IP address, enabling transparent fail-over between redundant network paths
- Delivery of chunks within independent streams eliminates unnecessary head-of-line blocking, as opposed to TCP byte-stream delivery.
- Explicit partial reliability
- Path selection and monitoring to select a primary data transmission path and test the connectivity of the transmission path
- Validation and acknowledgment mechanisms protect against flooding attacks and provide notification of duplicated or missing data chunks.
- Improved error detection suitable for Ethernet jumbo frames
The designers of SCTP originally intended it for the transport of telephony (i.e. Signaling System 7) over Internet Protocol, with the goal of duplicating some of the reliability attributes of the SS7 signaling network in IP. This IETF effort is known as SIGTRAN. In the meantime, other uses have been proposed, for example, the Diameter protocol{{cite IETF |title=Diameter Base Protocol |rfc=3588 |sectionname=Transport |section=2.1 |publisher=IETF |access-date=2012-05-18 }} and Reliable Server Pooling (RSerPool).{{cite IETF |title=An Overview of Reliable Server Pooling Protocols |rfc=5351 |sectionname=Example Scenario Using RSerPool Session Services |section=4.2 |page=10|publisher=IETF}}
Motivation and adoption
TCP has provided the primary means to transfer data reliably across the Internet. However, TCP has imposed limitations on several applications. From {{IETF RFC|4960}}:
- TCP provides both reliable data transfer and strict order-of-transmission delivery of data. Some applications need reliable transfer without sequence maintenance, while others would be satisfied with partial ordering of the data. In both of these cases, the head-of-line blocking property of TCP causes unnecessary delay.
- For applications exchanging distinct records or messages, the stream-oriented nature of TCP requires the addition of explicit markers or other encoding to delineate the individual records.
- In order to avoid sending many small IP packets where one single larger packet would have sufficed, the TCP implementation may delay transmitting data while waiting for possibly more data being queued by the application (Nagle's algorithm). Although many TCP implementations allow the disabling of Nagle's algorithm, this is not required by the specification. SCTP on the other hand allows undelayed transmission to be configured as a default for an association, eliminating any undesired delays, but at the cost of higher transfer overhead.[https://tools.ietf.org/html/rfc9260#section-1.5.5 RFC 9260, section 1.5.5]
- The limited scope{{vague|date=December 2017}} of TCP sockets complicates the task of providing highly-available data transfer capability using multihomed hosts.
- TCP is relatively vulnerable to denial-of-service attacks, such as SYN attacks.
Adoption has been slowed by lack of awareness, lack of implementations (particularly in Microsoft Windows), lack of application support and lack of network support.{{Cite news|url=http://www.networkworld.com/article/2222277/cisco-subnet/what-about-stream-control-transmission-protocol--sctp--.html|archive-url=https://web.archive.org/web/20140830095541/http://www.networkworld.com/article/2222277/cisco-subnet/what-about-stream-control-transmission-protocol--sctp--.html|url-status=dead|archive-date=August 30, 2014|title=What About Stream Control Transmission Protocol (SCTP)?|last=Hogg|first=Scott|newspaper=Network World|access-date=2017-10-04}}
SCTP has seen adoption in the mobile telephony space as the transport protocol for several core network interfaces.{{cite book |last1=Olsson |first1=Magnus |last2=Mulligan |first2=Catherine |last3=Sultana |first3=Shabnam |last4=Rommer |first4=Stefan |last5=Frid |first5=Lars |title=EPC and 4G packet networks: driving the mobile broadband revolution |date=2013 |publisher=Elsevier/AP, Academic Press is an imprint of Elsevier |location=Amsterdam Boston |isbn=978-0-12-394595-2 |page=491 |edition=2nd}}
Multihoming
{{multiple image
|direction = vertical
|width = 500
|image1 = SCTP-Multihoming.png
|caption1 = SCTP multihoming
|image2 = SCTP-LocalMultihoming-RemoteSinglehoming.png
|caption2 = Asymmetric multihoming: local multihoming to remote single homing
|image3 = SCTP-LocalSinglehoming-RemoteMultihoming.png
|caption3 = Asymmetric multihoming: local single homing to remote multihoming
}}
SCTP provides redundant paths to increase reliability.
Each SCTP end point needs to check reachability of the primary and redundant addresses of the remote end point using a heartbeat. Each SCTP end point needs to acknowledge the heartbeats it receives from the remote end point.
When SCTP sends a message to a remote address, the source interface will only be decided by the routing table of the host (and not by SCTP).
In asymmetric multihoming, one of the two endpoints does not support multihoming.
In local multihoming and remote single homing, if the remote primary address is not reachable, the SCTP association fails even if an alternate path is possible.
Packet structure
{{Main|SCTP packet structure}}
An SCTP packet consists of two basic sections:
- The common header, which occupies the first 12 bytes and is highlighted in blue.
- The data chunks, which occupy the remaining portion of the packet. The first chunk is highlighted in green, and the last of N chunks (Chunk N) is highlighted in red.
class="wikitable" style="text-align:center; white-space:nowrap; white-space:nowrap;" |
Bits
! colspan="8" width="25%" | 0–7 ! colspan="8" width="25%" | 8–15 ! colspan="8" width="25%" | 16–23 ! colspan="8" width="25%" | 24–31 |
---|
style="background:#ddf;"
!+0 |colspan="16" style="text-align: center"|Source port |colspan="16" style="text-align: center"|Destination port |
style="background:#ddf;"
! 32 |colspan="32" style="text-align: center"|Verification tag |
style="background:#ddf;"
! 64 |colspan="32" style="text-align: center"|Checksum |
style="background:#dfd;"
! 96 |style="text-align: center" colspan="8"|Chunk 1 type |style="text-align: center" colspan="8"|Chunk 1 flags |colspan="16" style="text-align: center"|Chunk 1 length |
style="background:#dfd;"
! 128 |colspan="32" style="text-align: center"|Chunk 1 data |
…
|colspan="32" style="text-align: center"|… |
style="background:#fdd;"
!… |style="text-align: center" colspan="8"|Chunk N type |style="text-align: center" colspan="8"|Chunk N flags |colspan="16" style="text-align: center"|Chunk N length |
style="background:#fdd;"
!… |colspan="32" style="text-align: center"|Chunk N data |
Each chunk starts with a one-byte type identifier, with 15 chunk types defined by {{IETF RFC|9260}}, and at least 5 more defined by additional RFCs.See SCTP packet structure for more details. Eight flag bits, a two-byte length field, and the data compose the remainder of the chunk. If the chunk does not form a multiple of 4 bytes (i.e., the length is not a multiple of 4), then it is padded with zeros, which are not included in the chunk length. The two-byte length field limits each chunk to a 65,535-byte length (including the type, flags and length fields).
Security
Although encryption was not part of the original SCTP design, SCTP was designed with features for improved security, such as 4-way handshake (compared to TCP 3-way handshake) to protect against SYN flooding attacks, and large "cookies" for association verification and authenticity.
Reliability was also a key part of the security design of SCTP. Multihoming enables an association to stay open even when some routes and interfaces are down. This is of particular importance for SIGTRAN as it carries SS7 over an IP network using SCTP, and requires strong resilience during link outages to maintain telecommunication service even when enduring network anomalies.
Implementations
The SCTP reference implementation runs on FreeBSD, Mac OS X, Microsoft Windows, and Linux.
{{cite web
|url = https://github.com/sctplab/sctp-refimpl
|title = Reference Implementation for SCTP - RFC4960
|website = GitHub
|access-date = 2013-10-14
|quote = This is the reference implementation for SCTP. It is portable and runs on FreeBSD/MAC-OS/Windows and in User Space (including linux).
}}
The following operating systems implement SCTP:
- AIX Version 5 and newer
- NetBSD{{cite web
| url = http://bxr.su/n/sys/netinet/sctp.h
| title = sys/netinet/sctp.h
| publisher = NetBSD | website = BSD Cross Reference
| date = 2017-06-27 | access-date=2019-01-21
}} since 8.0{{cite web
| url = http://bxr.su/n/share/man/man4/sctp.4
| title = man4/sctp.4
| publisher = NetBSD | website = BSD Cross Reference
| date = 2018-07-31 | access-date=2019-01-21
}}
- Cisco IOS 12 and above
- DragonFly BSD since version 1.4, however support is being deprecated in version 4.2 {{cite web
| url = http://lists.dragonflybsd.org/pipermail/commits/2015-January/417496.html
| title = DragonFly Removes SCTP|website=Lists.dragonflybsd.org| date = 7 January 2015|access-date=2016-04-28
}}
- FreeBSD, version 7 and above, contains the reference SCTP implementation{{cite web
| url = http://www.freebsd.org/features.html
| title = About FreeBSD's Technological Advances
| publisher = The FreeBSD Project | date = 2008-03-09 | access-date = 2008-09-13
| quote = SCTP: FreeBSD 7.0 is the reference implementation for the new IETF Stream Control Transmission Protocol (SCTP) protocol, intended to support VoIP, telecommunications, and other applications with strong reliability and variable quality transmission through features such as multi-path delivery, fail-over, and multi-streaming.
}}
- HP-UX, 11i v2 and above{{cite web
|url = http://h20293.www2.hp.com/portal/swdepot/displayInstallInfo.do?productNumber=SCTP
|archive-url = https://archive.today/20130103223740/http://h20293.www2.hp.com/portal/swdepot/displayInstallInfo.do?productNumber=SCTP
|url-status = dead
|archive-date = 2013-01-03
|title = Stream Control Transmission Protocol (SCTP)
|publisher = Hewlett-Packard Development Company
}}
- illumos
- Linux kernel 2.4 and above
- QNX Neutrino Realtime OS,{{cite web |title=TCP/IP Networking |url=http://www.qnx.com/developers/docs/6.3.0SP3/neutrino/sys_arch/tcpip.html#SCTP |access-date=2008-09-13 |work=QNX Developer Support |publisher=QNX Software Systems}}{{cite web |title=What's New in this Reference |url=http://www.qnx.com/developers/docs/6.5.0/topic/com.qnx.doc.neutrino_lib_ref/whats_new.html |access-date=2012-12-18 |work=QNX Library Reference |publisher=QNX Software Systems}} 6.3.0 to 6.3.2, deprecated since 6.4.0{{cite web |title=QNX Software Development Platform 6.4.0 |url=http://www.qnx.com/developers/docs/660/index.jsp?topic=%2Fcom.qnx.doc.neutrino.utilities%2Ftopic%2Fwhats_new_64.html}}
- Tru64 with the Compaq SCTP add-on package
- Sun Solaris 10 and above{{cite web
| url = http://www.sun.com/software/solaris/ds/network_performance.jsp#1
| title = Solaris 10 Operating System Networking — Extreme Network Performance
| publisher = Sun Microsystems | access-date = 2008-09-13
}}
- VxWorks versions 6.2.x to 6.4.x, and 6.7 and newer
Third-party drivers:
- Microsoft Windows:
- The SctpDrv kernel driver is a port of the BSD SCTP stack to Windows (Abandoned after 2012){{cite web |url=http://www.bluestop.org/SctpDrv |archive-url=https://web.archive.org/web/20171008083650/http://www.bluestop.org:80/SctpDrv/ |url-status=dead |archive-date=2017-10-08 |title=SctpDrv: an SCTP driver for Microsoft Windows |access-date=2022-01-04 }}
- MacOS:
- SCTP Network Kernel Extension for Mac OS X{{cite web|url=https://github.com/sctplab/SCTP_NKE_ElCapitan |title=SCTP Network Kernel Extension for Mac OS X |website=GitHub |date=23 September 2021 }}
Userspace library:
- Portable SCTP userland stack{{cite web |url=https://github.com/sctplab/usrsctp |title=sctplab/usrsctp |website=Github |access-date=21 September 2021 }}
- The SCTP library{{cite web|url=http://www.sctp.de/sctp-download.html |title=SCTP Download Page |date=2006-05-29 |access-date=2011-02-04}}
- Windows XP port{{cite web|url=http://www.sctp.be/sctplib/index.htm |title=Windows SCTP library installer |access-date=2011-02-04}}
- Oracle Java SE 7
- Erlang/OTP
The following applications implement SCTP:
=Tunneling over UDP=
In the absence of native SCTP support in operating systems, it is possible to tunnel SCTP over UDP,{{cite IETF |title=UDP Encapsulation of Stream Control Transmission Protocol (SCTP) Packets for End-Host to End-Host Communication |rfc=6951 | first = Michael | last = Tuexen | first2 = Randall R. | last2 = Stewart |date=May 2013 |publisher=IETF}} as well as to map TCP API calls to SCTP calls so existing applications can use SCTP without modification.
{{cite web
| url = http://www.cis.udel.edu/~amer/PEL/poc/pdf/EuroBSDCon2007-bickhart-SCTP-Shim-layer.pdf
| title = Transparent TCP-to-SCTP Translation Shim Layer
| first = Ryan | last = Bickhart |author2= Paul D. Amer
|author3= Randall R. Stewart
| year = 2007 | access-date = 2008-09-13
}}
RFCs
- {{IETF RFC|9260}} Stream Control Transmission Protocol
- {{IETF RFC|8540}} Stream Control Transmission Protocol: Errata and Issues in RFC 4960 (obsoleted by RFC 9260)
- {{IETF RFC|7829}} SCTP-PF: A Quick Failover Algorithm for the Stream Control Transmission Protocol
- {{IETF RFC|7765}} TCP and Stream Control Transmission Protocol (SCTP) RTO Restart
- {{IETF RFC|7496}} Additional Policies for the Partially Reliable Stream Control Transmission Protocol Extension
- {{IETF RFC|7053}} SACK-IMMEDIATELY Extension for the Stream Control Transmission Protocol (obsoleted by RFC 9260)
- {{IETF RFC|6951}} UDP Encapsulation of Stream Control Transmission Protocol (SCTP) Packets for End-Host to End-Host Communication
- {{IETF RFC|6525}} Stream Control Transmission Protocol (SCTP) Stream Reconfiguration
- {{IETF RFC|6458}} Sockets API Extensions for the Stream Control Transmission Protocol (SCTP)
- {{IETF RFC|6096}} Stream Control Transmission Protocol (SCTP) Chunk Flags Registration (obsoleted by RFC 9260)
- {{IETF RFC|5062}} Security Attacks Found Against the Stream Control Transmission Protocol (SCTP) and Current Countermeasures
- {{IETF RFC|5061}} Stream Control Transmission Protocol (SCTP) Dynamic Address Reconfiguration
- {{IETF RFC|5043}} Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation
- {{IETF RFC|4960}} Stream Control Transmission Protocol (obsoleted by RFC 9260)
- {{IETF RFC|4895}} Authenticated Chunks for the Stream Control Transmission Protocol (SCTP)
- {{IETF RFC|4820}} Padding Chunk and Parameter for the Stream Control Transmission Protocol (SCTP)
- {{IETF RFC|4460}} Stream Control Transmission Protocol (SCTP) Specification Errata and Issues (obsoleted by RFC 9260)
- {{IETF RFC|3873}} Stream Control Transmission Protocol (SCTP) Management Information Base (MIB)
- {{IETF RFC|3758}} Stream Control Transmission Protocol (SCTP) Partial Reliability Extension
- {{IETF RFC|3554}} On the Use of Stream Control Transmission Protocol (SCTP) with IPsec
- {{IETF RFC|3436}} Transport Layer Security over Stream Control Transmission Protocol
- {{IETF RFC|3309}} Stream Control Transmission Protocol (SCTP) Checksum Change (obsoleted by RFC 4960)
- {{IETF RFC|3286}} An Introduction to the Stream Control Transmission Protocol
- {{IETF RFC|3257}} Stream Control Transmission Protocol Applicability Statement
- {{IETF RFC|2960}} Stream Control Transmission Protocol (updated by RFC 3309 and obsoleted by RFC 4960)
See also
- {{section link|Transport layer|Comparison of transport layer protocols}}
- Session Initiation Protocol (SIP) – which may initiate multiple streams over SCTP, TCP, or UDP
- Multipath TCP – which allows a TCP connection to use multiple paths to maximize resource usage and increase redundancy
- Happy Eyeballs – originally designed for efficient selection of IPv4 or IPv6 for a connection;{{Cite journal|url=https://tools.ietf.org/html/rfc6555|title=Happy Eyeballs: Success with Dual-Stack Hosts|author=D. Wing|author2=A. Yourtchenko|date=April 2012|website=tools.ietf.org|publisher=IETF}} could also be adapted to select from different transport protocols such as TCP and SCTP{{Cite web|url=https://tools.ietf.org/html/draft-grinnemo-taps-he|title=Happy Eyeballs for Transport Selection|last1=Khademi|first1=Naeem|last2=Brunstrom|first2=Anna|date=July 21, 2016|website=tools.ietf.org|publisher=IETF|access-date=2017-01-09|last3=Hurtig|first3=Per|last4=Grinnemo|first4=Karl-Johan}}
Notes
{{Reflist|group=note}}
References
{{Reflist|30em}}
External links
- [https://web.archive.org/web/20131025214054/http://www.sigtran.ss7box.com/ sigtran (archived)]
- {{cite web | url = https://datatracker.ietf.org/wg/sigtran/about/ | title = Signaling Transport (sigtran) Working Group }}
- {{cite web | url = https://datatracker.ietf.org/wg/tsvwg/about/ | title = Transport Area Working Group (tsvwg) }}
- {{cite web | title = OpenSS7 Project | url = http://www.openss7.org }}
- [http://www.lksctp.org SCTP workgroup for Linux]
- {{cite web | url = http://www.sctp.de/ | title = Michael Tüxen's SCTP Page }}
- {{cite web | url = http://www.sctp.be/ | title = Lode Coene's SCTP Page }}
- {{cite web | url = https://www.uni-due.de/~be0001/sctp/ | title = Thomas Dreibholz's SCTP Project Page }}
{{Authority control}}
Category:Computer-related introductions in 2000