<?xml version="1.0" ?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd' [
]>
<rfc ipr="trust200902" category="info" docName="draft-iyengar-quic-loss-recovery-00">
<front>

<title abbrev="QUIC">QUIC Congestion Control And Loss Recovery</title>

<author initials="J." surname="Iyengar" fullname="Janardhan Iyengar">
        <organization>Google</organization>
        <address><email>jri@google.com</email></address>
</author>

<author initials="I." surname="Swett" fullname="Ian Swett">
        <organization>Google</organization>
        <address><email>ianswett@google.com</email></address>
</author>

<date month="July" year="2016"/>

<area>Transport</area>
<keyword>QUIC</keyword>
<keyword>Transport</keyword>

<abstract><t>
QUIC is a new multiplexed and secure transport atop UDP. QUIC builds on decades of transport and security experience, and implements mechanisms that make it attractive as a modern general-purpose transport. QUIC implements the spirit of known TCP loss recovery mechanisms, described in RFCs, various Internet-drafts, and also those prevalent in the Linux TCP implementation. This document describes QUIC congestion control and loss recovery, and where applicable, attributes the TCP equivalent in RFCs, Internet-drafts, academic papers, and/or TCP implementations.
</t></abstract>

</front>
<middle>
<section title="Introduction" anchor="introduction">

<t>QUIC is a new multiplexed and secure transport atop UDP. QUIC builds on decades of transport and security experience, and implements mechanisms that make it attractive as a modern general-purpose transport. The QUIC protocol is described in [draft-hamilton-quic-transport-protocol].</t>

<t>QUIC implements the spirit of known TCP loss recovery mechanisms, described in RFCs, various Internet-drafts, and also those prevalent in the Linux TCP implementation. This document describes QUIC congestion control and loss recovery, and where applicable, attributes the TCP equivalent in RFCs, Internet-drafts, academic papers, and/or TCP implementations.</t>

<t>This document first describes parts of the QUIC transmission machinery that are necessary to describe the congestion control and loss recovery mechanisms. The document then describes QUIC's default congestion control and default loss recovery, followed by a list of the various TCP mechanisms that QUIC implements (in spirit) in its loss recovery mechanisms.</t>

</section>
<section title="Design of the QUIC Transmission Machinery" anchor="design-of-the-quic-transmission-machinery">

<t>All transmissions in QUIC are sent with a packet-level header, which includes a packet sequence number (referred to below as a packet number). These packet numbers never repeat in the lifetime of a connection, and are monotonically increasing, which makes duplicate detection trivial. This fundamental design decision obviates the need for disambiguating between transmissions and retransmissions and eliminates significant complexity from QUIC’s interpretation of TCP loss detection mechanisms.</t>

<t>Every packet can contain several frames; we outline the frames that are important to the loss detection and congestion control machinery below.</t>

<t><list style="symbols">
<t>STREAM frames contain application data. Crypto handshake data is also sent as STREAM data, and uses the reliability machinery of QUIC underneath.</t>

<t>ACK frames contain acknowledgment information. QUIC uses a SACK-based scheme, where the largest_acked packet number is explicitly reported in the ACK frame, and packets with sequence numbers lesser than the largest_acked are reported as ACK ranges. The ACK frame also includes a receive timestamp for each packet newly acked.</t>

<t>To limit the ACK blocks to the ones that haven't yet been received by the sender, the sender periodically sends STOP_WAITING frames that signal the receiver to stop acking packets below a specified sequence number, raising the "least unacked" packet number at the receiver. A sender of an ACK frame thus reports only those ACK blocks between the received least unacked and the reported largest observed packet numbers.  It is recommended for the sender to send the most recent largest acked packet it has received in an ack as the STOP_WAITING frame’s least unacked value. </t>

</list></t>

<section title="Relevant Differences Between QUIC and TCP" anchor="relevant-differences-between-quic-and-tcp">

<t>There are some notable differences between QUIC and TCP which are important for reasoning about the differences between the loss recovery mechanisms employed by the two protocols. We briefly describe these differences below.</t>

<section title="Monotonically Increasing Sequence Numbers" anchor="monotonically-increasing-sequence-numbers">

<t>TCP conflates transmission sequence number at the sender with delivery sequence number at the receiver, which results in retransmissions of the same data carrying the same sequence number, and consequently to problems caused by "retransmission ambiguity". QUIC separates the two: QUIC uses a packet transmission number (referred to as the "packet number") for transmissions, and any data that is to be delivered to the receiving application(s) is sent in one or more streams, with stream offsets encoded within STREAM frames inside of packets that determine delivery order.</t>

<t>QUIC's packet sequence number is strictly increasing, and directly encodes transmission order. A higher QUIC sequence number signifies that the packet was sent later, and a lower QUIC sequence number signifies that the packet was sent earlier.</t>

<t>This design point significantly simplifies loss detection mechanisms for QUIC. Most TCP mechanisms implicitly attempt to infer transmission ordering based on the TCP sequence numbers; a non-trivial task, especially when TCP timestamps are not available.</t>

<t>QUIC resends lost packets with new packet sequence numbers when retransmission is necessary, removing ambiguity about which packet is acknowledged when an ACK is received. Consequently, more accurate RTT measurements can be made, spurious retransmissions are trivially detected, and mechanisms such as Fast Retransmit can be applied universally, based only on sequence number.</t>

</section>
<section title="No Reneging" anchor="no-reneging">

<t>QUIC ACKs contain information that is equivalent to TCP SACK, but QUIC does not allow any acked packet to be reneged, greatly simplifying implementations on both sides and reducing memory pressure on the sender.</t>

</section>
<section title="More ACK Ranges" anchor="more-ack-ranges">

<t>QUIC supports up to 255 ACK ranges, opposed to TCP’s 3 SACK ranges.  In high loss environments, this speeds recovery.</t>

</section>
<section title="Explicit Correction For Delayed Acks" anchor="explicit-correction-for-delayed-acks">

<t>QUIC ACKs explicitly encode the delay incurred at the receiver between when a packet is received and when the corresponding ACK is sent. This allows the receiver of the ACK to adjust for receiver delays, specifically the delayed ack timer, when estimating the path RTT. This mechanism also allows a receiver to measure and report the delay from when a packet was received by the OS kernel, which is useful in receivers which may incur delays such as context-switch latency before a userspace QUIC receiver processes a received packet.</t>

</section>
</section>
</section>
<section title="An Overview of QUIC Loss Recovery" anchor="an-overview-of-quic-loss-recovery">

<t>We briefly describe QUIC's actions on packet transmission, ack reception, and timer expiration events.</t>

<section title="On Sending a Packet" anchor="on-sending-a-packet">

<t>A retransmission timer may be set based on the mode:</t>

<t><list style="symbols">
<t>If the handshake has not completed, start a handshake timer.

<list style="symbols">
<t>1.5x the SRTT, with exponential backoff.</t>

</list></t>
<t>If there are outstanding packets which have not been ACKed, possibly set the loss timer

<list style="symbols">
<t>Depends on the loss detection implementation, default is 0.25RTT in the case of Early Retransmit.</t>

</list></t>
<t>If fewer than 2 TLPs have been sent, compute and restart TLP timer.

<list style="symbols">
<t>Timer is set for max(10ms, 2*SRTT) if there are multiple packets in flight</t>

<t>Timer is set to max(1.5*SRTT + delayed ack timer, 2*SRTT) if there is only one packet in flight.</t>

</list></t>
<t>If 2 TLPs have been sent, set the RTO timer.

<list style="symbols">
<t>Timer is set to max(200ms, SRTT+4*RTTVAR) with exponential backoff after the first RTO.</t>

</list></t>

</list></t>

</section>
<section title="On Receiving an ACK" anchor="on-receiving-an-ack">

<t>The following steps are performed when an ACK is received:</t>

<t><list style="symbols">
<t>Validate the ack, including ignoring any out of order acks.</t>

<t>Update RTT measurements.</t>

<t>Sender marks unacked packets lower than the largest_observed and acked in this ACK frame as ACKED.</t>

<t>Packets with packet number lesser than the largest_observed that are not yet acked have missing_reports incremented based on FACK.(largest_observed - missing packet number)</t>

<t>Threshold is set to 3 by default.</t>

<t>Packets with missing_reports &gt; threshold are marked for retransmission. This logic implements Fast Retransmission and FACK-based retransmission together.</t>

<t>If packets are outstanding and the largest observed is the largest sent packet, the retransmission timer will be set to 0.25SRTT, implementing Early Retransmit with timer.</t>

<t>Stop timers if no packets are outstanding.</t>

</list></t>

</section>
<section title="On Timer Expiration" anchor="on-timer-expiration">

<t>QUIC uses one loss recovery timer, which when set, can be in one of several states. When the timer expires, the state determines the action to be performed. (TODO: describe when the timers are set)</t>

<t><list style="symbols">
<t>Handshake state:

<list style="symbols">
<t>Retransmit any outstanding handshake packets.</t>

</list></t>
<t>Loss timer state:

<list style="symbols">
<t>Lose the outstanding packets which have not yet been ACKed so far.</t>

<t>Report the loss to the congestion controller.</t>

<t>Retransmit as many as the congestion controller allows.</t>

</list></t>
<t>TLP state:

<list style="symbols">
<t>Retransmit the smallest outstanding packet which is retransmittable.</t>

<t>Do not mark any packets as lost until an ACK arrives. </t>

<t>Restart timer for a TLP or RTO.</t>

</list></t>
<t>RTO state:

<list style="symbols">
<t>Retransmit the two smallest outstanding packets which are retransmittable.</t>

<t>Do not collapse the congestion window (ie: set to 1 packet) until an ack arrives and confirms that the RTO was not spurious. Note that this step obviates the need to implement FRTO.</t>

<t>Restart the timer for next RTO (with exponential backoff.)</t>

</list></t>

</list></t>

</section>
</section>
<section title="Congestion Control" anchor="congestion-control">

<t>(describe NewReno-style congestion control for QUIC.)</t>

</section>
<section title="TCP mechanisms in QUIC" anchor="tcp-mechanisms-in-quic">

<t>QUIC implements the spirit of a variety of RFCs, Internet drafts, and other well-known TCP loss recovery mechanisms, though the implementation details differ from the TCP implementations.</t>

<section title="RFC 6298 (RTO computation)" anchor="rfc-6298-rto-computation">

<t>QUIC calculates SRTT and RTTVAR according to the standard formulas.  An RTT sample is only taken if the delayed ack correction is smaller than the measured RTT (otherwise a negative RTT would result), and the ack’s contains a new, larger largest observed packet number.  min_rtt is only based on the observed RTT, but SRTT uses the delayed ack correction delta.</t>

<t>As described above, QUIC implements RTO with the standard timeout and CWND reduction.  However, QUIC retransmits the earliest outstanding packets rather than the latest, because QUIC doesn’t have retransmission ambiguity.  QUIC uses the commonly accepted min RTO of 200ms instead of the 1s the RFC specifies.</t>

</section>
<section title="FACK Loss Recovery (paper) " anchor="fack-loss-recovery-paper-">

<t>QUIC implements the algorithm for early loss recovery described in the FACK paper (and implemented in the Linux kernel.)  QUIC uses the packet sequence number to measure the FACK reordering threshold.  Currently QUIC does not implement an adaptive threshold as many TCP implementations(ie: the Linux kernel) do.</t>

</section>
<section title="RFC 3782, RFC 6582 (NewReno Fast Recovery)" anchor="rfc-3782-rfc-6582-newreno-fast-recovery">

<t>QUIC only reduces its CWND once per congestion window, in keeping with the NewReno RFC.  It tracks the largest outstanding packet at the time the loss is declared and any losses which occur before that packet number are considered part of the same loss event.  It’s worth noting that some TCP implementations may do this on a sequence number basis, and hence consider multiple losses of the same packet a single loss event.  </t>

</section>
<section title="TLP (draft)" anchor="tlp-draft">

<t>QUIC always sends two tail loss probes before RTO is triggered.  QUIC invokes tail loss probe even when a loss is outstanding, which is different than some TCP implementations. </t>

</section>
<section title="RFC 5827 (Early Retransmit) with Delay Timer" anchor="rfc-5827-early-retransmit-with-delay-timer">

<t>QUIC implements early retransmit with a timer in order to minimize spurious retransmits.  The timer is set to ¼ SRTT after the final outstanding packet is acked.</t>

</section>
<section title="RFC 5827 (F-RTO)" anchor="rfc-5827-f-rto">

<t>QUIC implements F-RTO by not reducing the CWND and SSThresh until a subsequent ack is received and it’s sure the RTO was not spurious.  Conceptually this is similar, but it makes for a much cleaner implementation with fewer edge cases.</t>

</section>
<section title="RFC 6937 (Proportional Rate Reduction)" anchor="rfc-6937-proportional-rate-reduction">

<t>PRR-SSRB is implemented by QUIC in the epoch when recovering from a loss.</t>

</section>
<section title="TCP Cubic (draft) with optional RFC 5681 (Reno)" anchor="tcp-cubic-draft-with-optional-rfc-5681-reno">

<t>TCP Cubic is the default congestion control algorithm in QUIC.  Reno is also an easily available option which may be requested via connection options and is fully implemented.  </t>

</section>
<section title="Hybrid Slow Start (paper)" anchor="hybrid-slow-start-paper">

<t>QUIC implements hybrid slow start, but disables ack train detection, because it has shown to falsely trigger when coupled with packet pacing, which is also on by default in QUIC.  Currently the minimum delay increase is 4ms, the maximum is 16ms, and within that range QUIC exits slow start if the min_rtt within a round increases by more than ⅛ of the connection min_rtt.</t>

</section>
</section>
</middle>

<back>
<references title="Normative References">
<reference anchor='RFC2119'><front>
        <title>Key Words for use in RFCs to Indicate Requirement Levels</title>
        <author initials='S.' surname='Bradner' fullname='Scott Bradner'></author>
        <date year='1997' month='March' />
</front></reference>

</references>


<references title="Informative References">

<reference anchor='draft-hamilton-quic-transport-protocol'><front>
        <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
	 <author initials='R.' surname='Hamilton' fullname='Ryan Hamilton'></author>
        <author initials='J.' surname='Iyengar' fullname='Janardhan Iyengar'></author>
        <author initials='I.' surname='Swett' fullname='Ian Swett'></author>
 	 <author initials='A.' surname='Wilk' fullname='Alyssa Wilk'></author>
        <date year='2016' month='July' />
</front></reference>

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