<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.2 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-quic-recovery-04" category="std">

  <feedback xmlns='http://purl.org/net/xml2rfc/ext' template="mailto:quic@ietf.org?subject={docname},%20%22{section}%22&amp;body=%3c{ref}%3e:"/><front>
    <title abbrev="QUIC Loss Detection">QUIC Loss Detection and Congestion Control</title>

    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
      <address>
        <email>jri@google.com</email>
      </address>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
      <address>
        <email>ianswett@google.com</email>
      </address>
    </author>

    <date year="2017" month="6" day="13"/>

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>This document describes loss detection and congestion control mechanisms for
QUIC.</t>



    </abstract>


    <note title="Note to Readers">


<t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic">https://mailarchive.ietf.org/arch/search/?email_list=quic</eref>.</t>

<t>Working Group information can be found at <eref target="https://github.com/quicwg">https://github.com/quicwg</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/recovery">https://github.com/quicwg/base-drafts/labels/recovery</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="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 <xref target="QUIC-TRANSPORT"/>.</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>

<section anchor="notational-conventions" title="Notational Conventions">

<t>The words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting; when they are capitalized, they have the special meaning
defined in <xref target="RFC2119"/>.</t>

</section>
</section>
<section anchor="design-of-the-quic-transmission-machinery" title="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 may 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>Retransmittable frames are frames requiring reliable delivery.  The most
common are STREAM frames, which typically contain application data.</t>
  <t>Crypto handshake data is sent on stream 0, and uses the reliability
machinery of QUIC underneath.</t>
  <t>ACK frames contain acknowledgment information.  QUIC uses a SACK-based
scheme, where acks express up to 256 ranges.  The ACK frame also includes a
receive timestamp for each packet newly acked.</t>
</list></t>

<section anchor="relevant-differences-between-quic-and-tcp" title="Relevant Differences Between QUIC and TCP">

<t>Readers familiar with TCP’s loss detection and congestion control will find
algorithms here that parallel well-known TCP ones. Protocol differences between
QUIC and TCP however contribute to algorithmic differences. We briefly describe
these protocol differences below.</t>

<section anchor="monotonically-increasing-packet-numbers" title="Monotonically Increasing Packet 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 sequence
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 number is strictly increasing, and directly encodes transmission
order.  A higher QUIC packet number signifies that the packet was sent later,
and a lower QUIC packet number signifies that the packet was sent earlier.  When
a packet containing frames is deemed lost, QUIC rebundles necessary frames in a
new packet with a new packet number, 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
packet number.</t>

<t>This design point significantly simplifies loss detection mechanisms for QUIC.
Most TCP mechanisms implicitly attempt to infer transmission ordering based on
TCP sequence numbers - a non-trivial task, especially when TCP timestamps are
not available.</t>

</section>
<section anchor="no-reneging" title="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 anchor="more-ack-ranges" title="More ACK Ranges">

<t>QUIC supports up to 256 ACK ranges, opposed to TCP’s 3 SACK ranges.  In high
loss environments, this speeds recovery.</t>

</section>
<section anchor="explicit-correction-for-delayed-acks" title="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 anchor="loss-detection" title="Loss Detection">

<section anchor="overview" title="Overview">

<t>QUIC uses a combination of ack information and alarms to detect lost packets.
An unacknowledged QUIC packet is marked as lost in one of the following ways:</t>

<t><list style="symbols">
  <t>A packet is marked as lost if at least one packet that was sent a threshold
number of packets (kReorderingThreshold) after it has been
acknowledged. This indicates that the unacknowledged packet is either lost
or reordered beyond the specified threshold. This mechanism combines both
TCP’s FastRetransmit and FACK mechanisms.</t>
  <t>If a packet is near the tail, where fewer than kReorderingThreshold packets
are sent after it, the sender cannot expect to detect loss based on the
previous mechanism. In this case, a sender uses both ack information and an
alarm to detect loss. Specifically, when the last sent packet is
acknowledged, the sender waits a short period of time to allow for
reordering and then marks any unacknowledged packets as lost. This mechanism
is based on the Linux implementation of TCP Early Retransmit.</t>
  <t>If a packet is sent at the tail, there are no packets sent after it, and the
sender cannot use ack information to detect its loss. The sender therefore
relies on an alarm to detect such tail losses. This mechanism is based on
TCP’s Tail Loss Probe.</t>
  <t>If all else fails, a Retransmission Timeout (RTO) alarm is always set when
any retransmittable packet is outstanding. When this alarm fires, all
unacknowledged packets are marked as lost.</t>
  <t>Instead of a packet threshold to tolerate reordering, a QUIC sender may use
a time threshold. This allows for senders to be tolerant of short periods of
significant reordering. In this mechanism, a QUIC sender marks a packet as
lost when a packet larger than it is acknowledged and a threshold amount of
time has passed since the packet was sent.</t>
  <t>Handshake packets, which contain STREAM frames for stream 0, are
critical to QUIC transport and crypto negotiation, so a separate alarm
period is used for them.</t>
</list></t>

</section>
<section anchor="algorithm-details" title="Algorithm Details">

<section anchor="constants-of-interest" title="Constants of interest">

<t>Constants used in loss recovery are based on a combination of RFCs, papers,
and common practice.  Some may need to be changed or negotiated in order to
better suit a variety of environments.</t>

<t><list style="hanging">
  <t hangText='kMaxTLPs (default 2):'>
  Maximum number of tail loss probes before an RTO fires.</t>
  <t hangText='kReorderingThreshold (default 3):'>
  Maximum reordering in packet number space before FACK style loss detection
considers a packet lost.</t>
  <t hangText='kTimeReorderingFraction (default 1/8):'>
  Maximum reordering in time space before time based loss detection considers
a packet lost.  In fraction of an RTT.</t>
  <t hangText='kMinTLPTimeout (default 10ms):'>
  Minimum time in the future a tail loss probe alarm may be set for.</t>
  <t hangText='kMinRTOTimeout (default 200ms):'>
  Minimum time in the future an RTO alarm may be set for.</t>
  <t hangText='kDelayedAckTimeout (default 25ms):'>
  The length of the peer’s delayed ack timer.</t>
  <t hangText='kDefaultInitialRtt (default 100ms):'>
  The default RTT used before an RTT sample is taken.</t>
</list></t>

</section>
<section anchor="variables-of-interest" title="Variables of interest">

<t>Variables required to implement the congestion control mechanisms
are described in this section.</t>

<t><list style="hanging">
  <t hangText='loss_detection_alarm:'>
  Multi-modal alarm used for loss detection.</t>
  <t hangText='handshake_count:'>
  The number of times the handshake packets have been
retransmitted without receiving an ack.</t>
  <t hangText='tlp_count:'>
  The number of times a tail loss probe has been sent without
receiving an ack.</t>
  <t hangText='rto_count:'>
  The number of times an rto has been sent without receiving an ack.</t>
  <t hangText='largest_sent_before_rto:'>
  The last packet number sent prior to the first retransmission
timeout.</t>
  <t hangText='time_of_last_sent_packet:'>
  The time the most recent packet was sent.</t>
  <t hangText='latest_rtt:'>
  The most recent RTT measurement made when receiving an ack for
a previously unacked packet.</t>
  <t hangText='smoothed_rtt:'>
  The smoothed RTT of the connection, computed as described in
<xref target="RFC6298"/></t>
  <t hangText='rttvar:'>
  The RTT variance, computed as described in <xref target="RFC6298"/></t>
  <t hangText='reordering_threshold:'>
  The largest delta between the largest acked
retransmittable packet and a packet containing retransmittable frames before
it’s declared lost.</t>
  <t hangText='time_reordering_fraction:'>
  The reordering window as a fraction of max(smoothed_rtt, latest_rtt).</t>
  <t hangText='loss_time:'>
  The time at which the next packet will be considered lost based on early
transmit or exceeding the reordering window in time.</t>
  <t hangText='sent_packets:'>
  An association of packet numbers to information about them, including a number
field indicating the packet number, a time field indicating the time a packet
was sent, and a bytes field indicating the packet’s size.  sent_packets is
ordered by packet number, and packets remain in sent_packets until
acknowledged or lost.</t>
</list></t>

</section>
<section anchor="initialization" title="Initialization">

<t>At the beginning of the connection, initialize the loss detection variables as
follows:</t>

<figure><artwork><![CDATA[
   loss_detection_alarm.reset()
   handshake_count = 0
   tlp_count = 0
   rto_count = 0
   if (UsingTimeLossDetection())
     reordering_threshold = infinite
     time_reordering_fraction = kTimeReorderingFraction
   else:
     reordering_threshold = kReorderingThreshold
     time_reordering_fraction = infinite
   loss_time = 0
   smoothed_rtt = 0
   rttvar = 0
   largest_sent_before_rto = 0
   time_of_last_sent_packet = 0
]]></artwork></figure>

</section>
<section anchor="on-sending-a-packet" title="On Sending a Packet">

<t>After any packet is sent, be it a new transmission or a rebundled transmission,
the following OnPacketSent function is called.  The parameters to OnPacketSent
are as follows:</t>

<t><list style="symbols">
  <t>packet_number: The packet number of the sent packet.</t>
  <t>is_retransmittable: A boolean that indicates whether the packet contains at
least one frame requiring reliable deliver.  The retransmittability of various
QUIC frames is described in <xref target="QUIC-TRANSPORT"/>.  If false, it is still
acceptable for an ack to be received for this packet.  However, a caller MUST
NOT set is_retransmittable to true if an ack is not expected.</t>
  <t>sent_bytes: The number of bytes sent in the packet.</t>
</list></t>

<t>Pseudocode for OnPacketSent follows:</t>

<figure><artwork><![CDATA[
 OnPacketSent(packet_number, is_retransmittable, sent_bytes):
   time_of_last_sent_packet = now;
   sent_packets[packet_number].packet_number = packet_number
   sent_packets[packet_number].time = now
   if is_retransmittable:
     sent_packets[packet_number].bytes = sent_bytes
     SetLossDetectionAlarm()
]]></artwork></figure>

</section>
<section anchor="on-ack-receipt" title="On Ack Receipt">

<t>When an ack is received, it may acknowledge 0 or more packets.</t>

<t>Pseudocode for OnAckReceived and UpdateRtt follow:</t>

<figure><artwork><![CDATA[
   OnAckReceived(ack):
     // If the largest acked is newly acked, update the RTT.
     if (sent_packets[ack.largest_acked]):
       latest_rtt = now - sent_packets[ack.largest_acked].time
       if (latest_rtt > ack.ack_delay):
         latest_rtt -= ack.delay
       UpdateRtt(latest_rtt)
     // Find all newly acked packets.
     for acked_packet in DetermineNewlyAckedPackets():
       OnPacketAcked(acked_packet.packet_number)

     DetectLostPackets(ack.largest_acked_packet)
     SetLossDetectionAlarm()


   UpdateRtt(latest_rtt):
     // Based on {{RFC6298}}.
     if (smoothed_rtt == 0):
       smoothed_rtt = latest_rtt
       rttvar = latest_rtt / 2
     else:
       rttvar = 3/4 * rttvar + 1/4 * (smoothed_rtt - latest_rtt)
       smoothed_rtt = 7/8 * smoothed_rtt + 1/8 * latest_rtt
]]></artwork></figure>

</section>
<section anchor="on-packet-acknowledgment" title="On Packet Acknowledgment">

<t>When a packet is acked for the first time, the following OnPacketAcked function
is called.  Note that a single ACK frame may newly acknowledge several packets.
OnPacketAcked must be called once for each of these newly acked packets.</t>

<t>OnPacketAcked takes one parameter, acked_packet, which is the packet number of
the newly acked packet, and returns a list of packet numbers that are detected
as lost.</t>

<t>If this is the first acknowledgement following RTO, check if the smallest newly
acknowledged packet is one sent by the RTO, and if so, inform congestion control
of a verified RTO, similar to F-RTO <xref target="RFC5682"/></t>

<t>Pseudocode for OnPacketAcked follows:</t>

<figure><artwork><![CDATA[
   OnPacketAcked(acked_packet_number):
     // If a packet sent prior to RTO was acked, then the RTO
     // was spurious.  Otherwise, inform congestion control.
     if (rto_count > 0 &&
         acked_packet_number > largest_sent_before_rto)
       OnRetransmissionTimeoutVerified()
     handshake_count = 0
     tlp_count = 0
     rto_count = 0
     sent_packets.remove(acked_packet_number)
]]></artwork></figure>

</section>
<section anchor="setting-the-loss-detection-alarm" title="Setting the Loss Detection Alarm">

<t>QUIC loss detection uses a single alarm for all timer-based loss detection.  The
duration of the alarm is based on the alarm’s mode, which is set in the packet
and timer events further below.  The function SetLossDetectionAlarm defined
below shows how the single timer is set based on the alarm mode.</t>

<section anchor="handshake-packets" title="Handshake Packets">

<t>The initial flight has no prior RTT sample.  A client SHOULD remember
the previous RTT it observed when resumption is attempted and use that for an
initial RTT value.  If no previous RTT is available, the initial RTT defaults
to 200ms.</t>

<t>Endpoints MUST retransmit handshake frames if not acknowledged within a
time limit. This time limit will start as the largest of twice the rtt value
and MinTLPTimeout.  Each consecutive handshake retransmission doubles the
time limit, until an acknowledgement is received.</t>

<t>Handshake frames may be cancelled by handshake state transitions.  In
particular, all non-protected frames SHOULD be no longer be transmitted once
packet protection is available.</t>

<t>When stateless rejects are in use, the connection is considered immediately
closed once a reject is sent, so no timer is set to retransmit the reject.</t>

<t>Version negotiation packets are always stateless, and MUST be sent once per
per handshake packet that uses an unsupported QUIC version, and MAY be sent
in response to 0RTT packets.</t>

</section>
<section anchor="tail-loss-probe-and-retransmission-timeout" title="Tail Loss Probe and Retransmission Timeout">

<t>Tail loss probes <xref target="LOSS-PROBE"/> and
retransmission timeouts <xref target="RFC6298"/> are an alarm based mechanism to recover
from cases when there are outstanding retransmittable packets, but an
acknowledgement has not been received in a timely manner.</t>

</section>
<section anchor="early-retransmit" title="Early Retransmit">

<t>Early retransmit <xref target="RFC5827"/> is implemented with a 1/4 RTT timer. It is
part of QUIC’s time based loss detection, but is always enabled, even when
only packet reordering loss detection is enabled.</t>

</section>
<section anchor="pseudocode" title="Pseudocode">

<t>Pseudocode for SetLossDetectionAlarm follows:</t>

<figure><artwork><![CDATA[
 SetLossDetectionAlarm():
    if (retransmittable packets are not outstanding):
      loss_detection_alarm.cancel()
      return

    if (handshake packets are outstanding):
      // Handshake retransmission alarm.
      if (smoothed_rtt == 0):
        alarm_duration = 2 * kDefaultInitialRtt
      else:
        alarm_duration = 2 * smoothed_rtt
      alarm_duration = max(alarm_duration, kMinTLPTimeout)
      alarm_duration = alarm_duration * (2 ^ handshake_count)
    else if (loss_time != 0):
      // Early retransmit timer or time loss detection.
      alarm_duration = loss_time - now
    else if (tlp_count < kMaxTLPs):
      // Tail Loss Probe
      if (retransmittable_packets_outstanding = 1):
        alarm_duration = 1.5 * smoothed_rtt + kDelayedAckTimeout
      else:
        alarm_duration = kMinTLPTimeout
      alarm_duration = max(alarm_duration, 2 * smoothed_rtt)
    else:
      // RTO alarm
      alarm_duration = smoothed_rtt + 4 * rttvar
      alarm_duration = max(alarm_duration, kMinRTOTimeout)
      alarm_duration = alarm_duration * (2 ^ rto_count)

    loss_detection_alarm.set(now + alarm_duration)
]]></artwork></figure>

</section>
</section>
<section anchor="on-alarm-firing" title="On Alarm Firing">

<t>QUIC uses one loss recovery alarm, which when set, can be in one of several
modes.  When the alarm fires, the mode determines the action to be performed.</t>

<t>Pseudocode for OnLossDetectionAlarm follows:</t>

<figure><artwork><![CDATA[
   OnLossDetectionAlarm():
     if (handshake packets are outstanding):
       // Handshake retransmission alarm.
       RetransmitAllHandshakePackets()
       handshake_count++
     else if (loss_time != 0):
       // Early retransmit or Time Loss Detection
       DetectLostPackets(largest_acked_packet)
     else if (tlp_count < kMaxTLPs):
       // Tail Loss Probe.
       SendOnePacket()
       tlp_count++
     else:
       // RTO.
       if (rto_count == 0)
         largest_sent_before_rto = largest_sent_packet
       SendTwoPackets()
       rto_count++

     SetLossDetectionAlarm()
]]></artwork></figure>

</section>
<section anchor="detecting-lost-packets" title="Detecting Lost Packets">

<t>Packets in QUIC are only considered lost once a larger packet number is
acknowledged.  DetectLostPackets is called every time an ack is received.
If the loss detection alarm fires and the loss_time is set, the previous
largest acked packet is supplied.</t>

<section anchor="handshake-packets-1" title="Handshake Packets">

<t>The receiver MUST ignore unprotected packets that ack protected packets.
The receiver MUST trust protected acks for unprotected packets, however.  Aside
from this, loss detection for handshake packets when an ack is processed is
identical to other packets.</t>

</section>
<section anchor="pseudocode-1" title="Pseudocode">

<t>DetectLostPackets takes one parameter, acked, which is the largest acked packet.</t>

<t>Pseudocode for DetectLostPackets follows:</t>

<figure><artwork><![CDATA[
   DetectLostPackets(largest_acked):
     loss_time = 0
     lost_packets = {}
     delay_until_lost = infinite
     if (time_reordering_fraction != infinite):
       delay_until_lost =
         (1 + time_reordering_fraction) * max(latest_rtt, smoothed_rtt)
     else if (largest_acked.packet_number == largest_sent_packet):
       // Early retransmit alarm.
       delay_until_lost = 9/8 * max(latest_rtt, smoothed_rtt)
     foreach (unacked < largest_acked.packet_number):
       time_since_sent = now() - unacked.time_sent
       packet_delta = largest_acked.packet_number - unacked.packet_number
       if (time_since_sent > delay_until_lost):
         lost_packets.insert(unacked)
       else if (packet_delta > reordering_threshold)
         lost_packets.insert(unacked)
       else if (loss_time == 0 && delay_until_lost != infinite):
         loss_time = now() + delay_until_lost - time_since_sent

     // Inform the congestion controller of lost packets and
     // lets it decide whether to retransmit immediately.
     if (!lost_packets.empty())
       OnPacketsLost(lost_packets)
       foreach (packet in lost_packets)
         sent_packets.remove(packet.packet_number)
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="discussion" title="Discussion">
<t>The majority of constants were derived from best common practices among widely
deployed TCP implementations on the internet.  Exceptions follow.</t>

<t>A shorter delayed ack time of 25ms was chosen because longer delayed acks can
delay loss recovery and for the small number of connections where less than
packet per 25ms is delivered, acking every packet is beneficial to congestion
control and loss recovery.</t>

<t>The default initial RTT of 100ms was chosen because it is slightly higher than
both the median and mean min_rtt typically observed on the public internet.</t>

</section>
</section>
<section anchor="congestion-control" title="Congestion Control">

<t>QUIC’s congestion control is based on TCP NewReno<xref target="RFC6582"/>
congestion control to determine the congestion window and pacing rate.</t>

<section anchor="slow-start" title="Slow Start">

<t>QUIC begins every connection in slow start and exits slow start upon
loss. While in slow start, QUIC increases the congestion window by the
number of acknowledged bytes when each ack is processed.</t>

</section>
<section anchor="recovery" title="Recovery">

<t>Recovery is a period of time beginning with detection of a lost packet.
It ends when all packets outstanding at the time recovery began have been
acknowledged or lost. During recovery, the congestion window is not
increased or decreased.</t>

</section>
<section anchor="constants-of-interest-1" title="Constants of interest">

<t>Constants used in congestion control are based on a combination of RFCs,
papers, and common practice.  Some may need to be changed or negotiated
in order to better suit a variety of environments.</t>

<t><list style="hanging">
  <t hangText='kDefaultMss (default 1460 bytes):'>
  The default max packet size used for calculating default and minimum
congestion windows.</t>
  <t hangText='kInitialWindow (default 10 * kDefaultMss):'>
  Default limit on the amount of outstanding data in bytes.</t>
  <t hangText='kMinimumWindow (default 2 * kDefaultMss):'>
  Default minimum congestion window.</t>
  <t hangText='kLossReductionFactor (default 0.5):'>
  Reduction in congestion window when a new loss event is detected.</t>
</list></t>

</section>
<section anchor="variables-of-interest-1" title="Variables of interest">

<t>Variables required to implement the congestion control mechanisms
are described in this section.</t>

<t><list style="hanging">
  <t hangText='bytes_in_flight:'>
  The sum of the size in bytes of all sent packets that contain at least
one retransmittable frame, and have not been acked or declared lost.</t>
  <t hangText='congestion_window:'>
  Maximum number of bytes in flight that may be sent.</t>
  <t hangText='end_of_recovery:'>
  The packet number after which QUIC will no longer be in recovery.</t>
  <t hangText='ssthresh'>
  Slow start threshold in bytes.  When the congestion window is below
ssthresh, it grows by the number of bytes acknowledged for each ack.</t>
</list></t>

</section>
<section anchor="initialization-1" title="Initialization">

<t>At the beginning of the connection, initialize the loss detection variables as
follows:</t>

<figure><artwork><![CDATA[
   congestion_window = kInitialWindow
   bytes_in_flight = 0
   end_of_recovery = 0
   ssthresh = infinite
]]></artwork></figure>

</section>
<section anchor="on-packet-acknowledgement" title="On Packet Acknowledgement">

<t>Invoked at the same time loss detection’s OnPacketAcked is called and
supplied with the acked_packet from sent_packets.</t>

<t>Pseudocode for OnPacketAcked follows:</t>

<figure><artwork><![CDATA[
   OnPacketAcked(acked_packet):
     if (acked_packet.packet_number < end_of_recovery):
       return
     if (congestion_window < ssthresh):
       congestion_window += acket_packets.bytes
     else:
       congestion_window +=
           acked_packets.bytes / congestion_window
]]></artwork></figure>

</section>
<section anchor="on-packets-lost" title="On Packets Lost">

<t>Invoked by loss detection from DetectLostPackets when new packets
are detected lost.</t>

<figure><artwork><![CDATA[
   OnPacketsLost(lost_packets):
     largest_lost_packet = lost_packets.last()
     // Start a new recovery epoch if the lost packet is larger
     // than the end of the previous recovery epoch.
     if (end_of_recovery < largest_lost_packet.packet_number):
       end_of_recovery = largest_sent_packet
       congestion_window *= kLossReductionFactor
       congestion_window = max(congestion_window, kMinimumWindow)
       ssthresh = congestion_window
]]></artwork></figure>

</section>
<section anchor="on-retransmission-timeout-verified" title="On Retransmission Timeout Verified">

<t>QUIC decreases the congestion window to the minimum value once the
retransmission timeout has been confirmed to not be spurious when
the first post-RTO acknowledgement is processed.</t>

<figure><artwork><![CDATA[
   OnRetransmissionTimeoutVerified()
     congestion_window = kMinimumWindow
]]></artwork></figure>

</section>
<section anchor="pacing-packets" title="Pacing Packets">

<t>QUIC sends a packet if there is available congestion window and
sending the packet does not exceed the pacing rate.</t>

<t>TimeToSend returns infinite if the congestion controller is
congestion window limited, a time in the past if the packet can be
sent immediately, and a time in the future if sending is pacing
limited.</t>

<figure><artwork><![CDATA[
   TimeToSend(packet_size):
     if (bytes_in_flight + packet_size > congestion_window)
       return infinite
     return time_of_last_sent_packet +
         (packet_size * smoothed_rtt) / congestion_window
]]></artwork></figure>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document has no IANA actions.  Yet.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-TRANSPORT" >
  <front>
    <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date />
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-latest"/>
</reference>




<reference  anchor="RFC2119" target='http://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="RFC6298" target='http://www.rfc-editor.org/info/rfc6298'>
<front>
<title>Computing TCP's Retransmission Timer</title>
<author initials='V.' surname='Paxson' fullname='V. Paxson'><organization /></author>
<author initials='M.' surname='Allman' fullname='M. Allman'><organization /></author>
<author initials='J.' surname='Chu' fullname='J. Chu'><organization /></author>
<author initials='M.' surname='Sargent' fullname='M. Sargent'><organization /></author>
<date year='2011' month='June' />
<abstract><t>This document defines the standard algorithm that Transmission Control Protocol (TCP) senders are required to use to compute and manage their retransmission timer.  It expands on the discussion in Section 4.2.3.1 of RFC 1122 and upgrades the requirement of supporting the algorithm from a SHOULD to a MUST.  This document obsoletes RFC 2988.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6298'/>
<seriesInfo name='DOI' value='10.17487/RFC6298'/>
</reference>



<reference  anchor="RFC5682" target='http://www.rfc-editor.org/info/rfc5682'>
<front>
<title>Forward RTO-Recovery (F-RTO): An Algorithm for Detecting Spurious Retransmission Timeouts with TCP</title>
<author initials='P.' surname='Sarolahti' fullname='P. Sarolahti'><organization /></author>
<author initials='M.' surname='Kojo' fullname='M. Kojo'><organization /></author>
<author initials='K.' surname='Yamamoto' fullname='K. Yamamoto'><organization /></author>
<author initials='M.' surname='Hata' fullname='M. Hata'><organization /></author>
<date year='2009' month='September' />
<abstract><t>The purpose of this document is to move the F-RTO (Forward RTO-Recovery) functionality for TCP in RFC 4138 from Experimental to Standards Track status.  The F-RTO support for Stream Control Transmission Protocol (SCTP) in RFC 4138 remains with Experimental status.  See Appendix B for the differences between this document and RFC 4138.</t><t>Spurious retransmission timeouts cause suboptimal TCP performance because they often result in unnecessary retransmission of the last window of data.  This document describes the F-RTO detection algorithm for detecting spurious TCP retransmission timeouts.  F-RTO is a TCP sender-only algorithm that does not require any TCP options to operate.  After retransmitting the first unacknowledged segment triggered by a timeout, the F-RTO algorithm of the TCP sender monitors the incoming acknowledgments to determine whether the timeout was spurious.  It then decides whether to send new segments or retransmit unacknowledged segments.  The algorithm effectively helps to avoid additional unnecessary retransmissions and thereby improves TCP performance in the case of a spurious timeout.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5682'/>
<seriesInfo name='DOI' value='10.17487/RFC5682'/>
</reference>



<reference anchor="LOSS-PROBE">
<front>
<title>Tail Loss Probe (TLP): An Algorithm for Fast Recovery of Tail Losses</title>

<author initials='N' surname='Dukkipati' fullname='Nandita Dukkipati'>
    <organization />
</author>

<author initials='N' surname='Cardwell' fullname='Neal Cardwell'>
    <organization />
</author>

<author initials='Y' surname='Cheng' fullname='Yuchung Cheng'>
    <organization />
</author>

<author initials='M' surname='Mathis' fullname='Matt Mathis'>
    <organization />
</author>

<date month='February' day='25' year='2013' />

<abstract><t>Retransmission timeouts are detrimental to application latency, especially for short transfers such as Web transactions where timeouts can often take longer than all of the rest of a transaction. The primary cause of retransmission timeouts are lost segments at the tail of transactions.  This document describes an experimental algorithm for TCP to quickly recover lost segments at the end of transactions or when an entire window of data or acknowledgments are lost.  Tail Loss Probe (TLP) is a sender-only algorithm that allows the transport to recover tail losses through fast recovery as opposed to lengthy retransmission timeouts.  If a connection is not receiving any acknowledgments for a certain period of time, TLP transmits the last unacknowledged segment (loss probe).  In the event of a tail loss in the original transmissions, the acknowledgment from the loss probe triggers SACK/FACK based fast recovery.  TLP effectively avoids long timeouts and thereby improves TCP performance.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-dukkipati-tcpm-tcp-loss-probe-01' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-dukkipati-tcpm-tcp-loss-probe-01.txt' />
</reference>



<reference  anchor="RFC5827" target='http://www.rfc-editor.org/info/rfc5827'>
<front>
<title>Early Retransmit for TCP and Stream Control Transmission Protocol (SCTP)</title>
<author initials='M.' surname='Allman' fullname='M. Allman'><organization /></author>
<author initials='K.' surname='Avrachenkov' fullname='K. Avrachenkov'><organization /></author>
<author initials='U.' surname='Ayesta' fullname='U. Ayesta'><organization /></author>
<author initials='J.' surname='Blanton' fullname='J. Blanton'><organization /></author>
<author initials='P.' surname='Hurtig' fullname='P. Hurtig'><organization /></author>
<date year='2010' month='May' />
<abstract><t>This document proposes a new mechanism for TCP and Stream Control Transmission Protocol (SCTP) that can be used to recover lost segments when a connection's congestion window is small.  The &quot;Early Retransmit&quot; mechanism allows the transport to reduce, in certain special circumstances, the number of duplicate acknowledgments required to trigger a fast retransmission.  This allows the transport to use fast retransmit to recover segment losses that would otherwise require a lengthy retransmission timeout.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5827'/>
<seriesInfo name='DOI' value='10.17487/RFC5827'/>
</reference>



<reference  anchor="RFC6582" target='http://www.rfc-editor.org/info/rfc6582'>
<front>
<title>The NewReno Modification to TCP's Fast Recovery Algorithm</title>
<author initials='T.' surname='Henderson' fullname='T. Henderson'><organization /></author>
<author initials='S.' surname='Floyd' fullname='S. Floyd'><organization /></author>
<author initials='A.' surname='Gurtov' fullname='A. Gurtov'><organization /></author>
<author initials='Y.' surname='Nishida' fullname='Y. Nishida'><organization /></author>
<date year='2012' month='April' />
<abstract><t>RFC 5681 documents the following four intertwined TCP congestion control algorithms: slow start, congestion avoidance, fast retransmit, and fast recovery.  RFC 5681 explicitly allows certain modifications of these algorithms, including modifications that use the TCP Selective Acknowledgment (SACK) option (RFC 2883), and modifications that respond to &quot;partial acknowledgments&quot; (ACKs that cover new data, but not all the data outstanding when loss was detected) in the absence of SACK.  This document describes a specific algorithm for responding to partial acknowledgments, referred to as &quot;NewReno&quot;.  This response to partial acknowledgments was first proposed by Janey Hoe.  This document obsoletes RFC 3782.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6582'/>
<seriesInfo name='DOI' value='10.17487/RFC6582'/>
</reference>




    </references>


<section anchor="acknowledgments" title="Acknowledgments">

</section>
<section anchor="change-log" title="Change Log">

<t><list style='empty'>
  <t><spanx style="strong">RFC Editor’s Note:</spanx>  Please remove this section prior to
publication of a final version of this document.</t>
</list></t>

<section anchor="since-draft-ietf-quic-recovery-02" title="Since draft-ietf-quic-recovery-02">

<t><list style="symbols">
  <t>Integrate F-RTO (#544, #409)</t>
  <t>Add congestion control (#545, #395)</t>
  <t>Require connection abort if a skipped packet was acknowledged (#415)</t>
  <t>Simplify RTO calculations (#142, #417)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-recovery-01" title="Since draft-ietf-quic-recovery-01">

<t><list style="symbols">
  <t>Overview added to loss detection</t>
  <t>Changes initial default RTT to 100ms</t>
  <t>Added time-based loss detection and fixes early retransmit</t>
  <t>Clarified loss recovery for handshake packets</t>
  <t>Fixed references and made TCP references informative</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-recovery-00" title="Since draft-ietf-quic-recovery-00">

<t><list style="symbols">
  <t>Improved description of constants and ACK behavior</t>
</list></t>

</section>
<section anchor="since-draft-iyengar-quic-loss-recovery-01" title="Since draft-iyengar-quic-loss-recovery-01">

<t><list style="symbols">
  <t>Adopted as base for draft-ietf-quic-recovery</t>
  <t>Updated authors/editors list</t>
  <t>Added table of contents</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIADLoQFkAA8VdeXPcxpX/H5+iLVXFpDQzpGjJsRlLCa0jVtYStSQdVyqV
ZWGAHhImjgkaQ4pWKZ993++9vnAMJWe3Kq6SRQKN7tfvvro1n8+TruhKfaj+
+6fXz9WPjTHqhe501hVNrdI6V8+b+kIb/pV+7NqmTNLlstXXk58keZPVaUXz
5W266uaF7lbzf26KbN7qrLnW7e28TDuaL8npr0P14cXR2cuPSUa/XDTt7aEy
XZ4U6/ZQde3GdAf7+9/uHyRpq9NDddamtVk3bZfcNO3VRdts1gJDkpiOQD1P
y6amOW+1SdbFofp712QzZeiDVq8M/XRbyQ8EY5Wu10V98Y8kSTfdZdMeJmqe
KPqvqM2h+stCvb7V9UXa8jPZ0F/SOu09btqLQ/XnprkoNf+uq7QoD9UvbfGn
C366yJqK3xDSaAKdF13T9hZ6vVCnN7rromVep3X0bMsaBWECY+5cKKmbtkq7
4lofJvQWmJqfnRy9PX13fHJ2yOMt7e/h3aE6Uj+9eDf/PjU6V282ZVesS/2e
fgYbnOps0+pAg3v8fY+IeGB0W2hT1KtGFlDqdd3pttbd/AUYYswXnZvRMQY+
8kTh/+b272nq3EGhKQyO6TG1xpuFOrtsKkMc3V/jTdp2RT16yau8aX4tyjKd
XiaZz+cqXRrab9YlydllYcCIm0rXncq1ydpiqY0qIU55TwKzIIGZSKCqdHaZ
1oWpjFrR3CDfQlaom06fv8X/uub8RKe5bk2SvChMtjEGUzQr1fHaoIPq0ita
dF2mmVb0srvUItWQMJIPxVKmwHT4rSyIPjsg259AwAXtenembi6L7FLRlGmb
XRK3EcN0yXeXXbc2h3t7+Na+WLiP9vBgz2j+64/M0+eY+ymmfkY7+dku/2de
HuzEnAwMkHgsNe16U2Md5de5KLrLzRKSsIdZbi6e/YFkf9NmOsmaXDMmC2M2
wDEtBbzFiBjMm2yfd29JAjLnr8xemS51afaccntmqVAVeU78ltwH+7dNvhHl
yIRiTKla36hqIGNGZMxLBMHRrCGTC5FetdwUZW5AqFxnRFqTgJphuJuj6G6V
fr+GLNaZnsneK1oJzGZi7ukuCYcVMYEquiTtmDmJUioFjBXhra3Vha51m5bz
9aZdNyaCj8A6cwyzbhtSt8SahUkcN9Oitfrwoa94Pn5cODwEiMB3Zl0Q4ODP
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

-->

</rfc>

