TCP option 5, Selective Acknowledgment

Description Glossary RFCs Publications Obsolete RFCs

Description:

Protocol suite: TCP/IP.
Protocol type:Transport layer protocol.
Option length:Variable length.
Host implementation:
Router implementation:
Links: IANA: TCP option numbers.

RFC 2018, pg 1:

TCP may experience poor performance when multiple packets are lost from one window of data. With the limited information available from cumulative acknowledgments, a TCP sender can only learn about a single lost packet per round trip time. An aggressive sender could choose to retransmit packets early, but such retransmitted segments may have already been successfully received.

SACK is a strategy which corrects this behavior in the face of multiple dropped segments. With selective acknowledgments, the data receiver can inform the sender about all segments that have arrived successfully, so the sender need retransmit only the segments that have actually been lost.

RFC 2018, pg 4:

The SACK option is to be sent by a data receiver to inform the data sender of non-contiguous blocks of data that have been received and queued. The data receiver awaits the receipt of data (perhaps by means of retransmissions) to fill the gaps in sequence space between received blocks. When missing segments are received, the data receiver acknowledges the data normally by advancing the left window edge in the Acknowledgement Number Field of the TCP header. The SACK option does not change the meaning of the Acknowledgement Number field.

RFC 2883, pg.1:

This note defines an extension of the SACK option for TCP. RFC 2018 specified the use of the SACK option for acknowledging out-of-sequence data not covered by TCP's cumulative acknowledgement field. This note extends RFC 2018 by specifying the use of the SACK option for acknowledging duplicate packets. This note suggests that when duplicate packets are received, the first block of the SACK option field can be used to report the sequence numbers of the packet that triggered the acknowledgement. This extension to the SACK option allows the TCP sender to infer the order of packets received at the receiver, allowing the sender to infer when it has unnecessarily retransmitted a packet. A TCP sender could then use this information for more robust operation in an environment of reordered packets, ACK loss, packet replication, and/or early retransmit timeouts.


MAC header IP header TCP header TCP option 5 Data

TCP Option 5:

00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
Kind Length
SACK Block [] :::

Kind. 8 bits. Set to 5.

Length. 8 bits. unsigned. 4 to ?

SACK Block []. Variable length.
One or more SACK block structures.


SACK block. 64 bits.

00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Left Edge of Block
Right Edge of Block

Left Edge of Block. 32 bits.
The first sequence number of this block.

Right Edge of Block. 32 bits.
The sequence number immediately following the last sequence number of this block.


Glossary:


RFCs:

[RFC 2018] TCP Selective Acknowledgment Options.

[RFC 2883] An Extension to the Selective Acknowledgement (SACK) Option for TCP.


Publications:


Obsolete RFCs:

[RFC 1072] TCP Extensions for Long-Delay Paths.


Description Glossary RFCs Publications Obsolete RFCs