<?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.9 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-quic-qpack-01" category="std">

  <front>
    <title abbrev="QPACK">QPACK: Header Compression for HTTP over QUIC</title>

    <author initials="C." surname="Krasic" fullname="Charles 'Buck' Krasic">
      <organization>Netflix</organization>
      <address>
        <email>ckrasic@netflix.com</email>
      </address>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop">
      <organization>Akamai Technologies</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <author initials="A." surname="Frindell" fullname="Alan Frindell" role="editor">
      <organization>Facebook</organization>
      <address>
        <email>afrind@fb.com</email>
      </address>
    </author>

    <date year="2018" month="June" day="28"/>

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>This specification defines QPACK, a compression format for efficiently
representing HTTP header fields, to be used in HTTP over QUIC. This is a
variation of HPACK header compression that seeks to reduce head-of-line
blocking.</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/-qpack">https://github.com/quicwg/base-drafts/labels/-qpack</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>The QUIC transport protocol was designed from the outset to support HTTP
semantics, and its design subsumes many of the features of HTTP/2.  HTTP/2 used
HPACK (<xref target="RFC7541"/>) for header compression, but QUIC’s stream multiplexing
comes into some conflict with HPACK.  A key goal of the design of QUIC is to
improve stream multiplexing relative to HTTP/2 by reducing head-of-line
blocking.  If HPACK were used for HTTP/QUIC, it would induce head-of-line
blocking due to built-in assumptions of a total ordering across frames on all
streams.</t>

<t>QUIC is described in <xref target="QUIC-TRANSPORT"/>.  The HTTP/QUIC
mapping is described in <xref target="QUIC-HTTP"/>. For a full
description of HTTP/2, see <xref target="RFC7540"/>. The description of HPACK is
<xref target="RFC7541"/>, with important terminology in Section 1.3.</t>

<t>QPACK reuses core concepts from HPACK, but is redesigned to allow correctness in
the presence of out-of-order delivery, with flexibility for implementations to
balance between resilience against head-of-line blocking and optimal compression
ratio.  The design goals are to closely approach the compression ratio of HPACK
with substantially less head-of-line blocking under the same loss conditions.</t>

</section>
<section anchor="header-tables" title="Header Tables">

<t>Like HPACK, QPACK uses two tables for associating header fields to indexes.  The
static table (see <xref target="table-static"/>) is predefined and contains common header
fields (some of them with an empty value).  The dynamic table (see
<xref target="table-dynamic"/>) built up over the course of the connection and can be used by
the encoder to index header fields repeated in the encoded header lists.</t>

<t>Unlike in HPACK, entries in the QPACK static and dynamic tables are addressed
separately.  The following sections describe how entries in each table is
addressed.</t>

<section anchor="table-static" title="Static Table">

<t>The static table consists of a predefined static list of header fields, each of
which has a fixed index over time.  Its entries are defined in Appendix A of
<xref target="RFC7541"/>. Note that because HPACK did not use zero-based references, there
is no value at index zero of the static table.</t>

</section>
<section anchor="table-dynamic" title="Dynamic Table">

<t>The dynamic table consists of a list of header fields maintained in first-in,
first-out order.  The dynamic table is initially empty.  Entries are added by
instructions on the Encoder Stream (see <xref target="encoder-stream"/>).</t>

<t>Before a new entry is added to the dynamic table, entries are evicted from the
end of the dynamic table until the size of the dynamic table is less than or
equal to (maximum size - new entry size) or until the table is empty.</t>

<t>If the size of the new entry is less than or equal to the maximum size, that
entry is added to the table.  It is an error to attempt to add an entry that
is larger than the maximum size; this MUST be treated as a connection error
of type <spanx style="verb">HTTP_QPACK_DECOMPRESSION_FAILED</spanx>.</t>

<t>A new entry can reference an entry in the dynamic table that will be evicted
when adding this new entry into the dynamic table.  Implementations are
cautioned to avoid deleting the referenced name if the referenced entry is
evicted from the dynamic table prior to inserting the new entry.</t>

<t>The dynamic table can contain duplicate entries (i.e., entries with the same
name and same value).  Therefore, duplicate entries MUST NOT be treated as an
error by a decoder.</t>

<t>The encoder decides how to update the dynamic table and as such can control how
much memory is used by the dynamic table.  To limit the memory requirements of
the decoder, the dynamic table size is strictly bounded.</t>

<t>The decoder determines the maximum size that the encoder is permitted to use for
the dynamic table.  In HTTP/QUIC, this value is determined by the
SETTINGS_HEADER_TABLE_SIZE setting (see Section 4.2.5.2 of <xref target="QUIC-HTTP"/>).</t>

<t>An encoder can choose to use less capacity than this maximum size (see
<xref target="size-update"/>), but the chosen size MUST stay lower than or equal to the
maximum set by the decoder.  Whenever the maximum size for the dynamic table is
reduced, entries are evicted from the end of the dynamic table until the size of
the dynamic table is less than or equal to the maximum size.</t>

<t>This mechanism can be used to completely clear entries from the dynamic table by
setting a maximum size of 0, which can subsequently be restored.</t>

<section anchor="indexing" title="Absolute and Relative Indexing">

<t>Each entry possesses both an absolute index which is fixed for the lifetime of
that entry and a relative index which changes over time based on the context of
the reference. The first entry inserted has an absolute index of “1”; indices
increase sequentially with each insertion.</t>

<t>The relative index begins at zero and increases in the opposite direction from
the absolute index.  Determining which entry has a relative index of “0” depends
on the context of the reference.</t>

<t>On the control stream, a relative index of “0” always refers to the most
recently inserted value in the dynamic table.  Note that this means the
entry referenced by a given relative index will change while interpreting
instructions on the encoder stream.</t>

<figure title="Example Dynamic Table Indexing - Control Stream"><artwork type="drawing"><![CDATA[
    +---+---------------+-----------+
    | n |      ...      |   d + 1   |  Absolute Index
    + - +---------------+ - - - - - +
    | 0 |      ...      | n - d - 1 |  Relative Index
    +---+---------------+-----------+
      ^                     |
      |                     V
Insertion Point         Dropping Point

n = count of entries inserted
d = count of entries dropped
]]></artwork></figure>

<t>Because frames from request streams can be delivered out of order with
instructions on the control stream, relative indices are relative to the Base
Index at the beginning of the header block (see <xref target="absolute-index"/>). The Base
Index is an absolute index. When interpreting the rest of the frame, the entry
identified by Base Index has a relative index of zero.  The relative indices of
entries do not change while interpreting headers on a request or push stream.</t>

<figure title="Example Dynamic Table Indexing - Request Stream"><artwork type="drawing"><![CDATA[
             Base Index
                 |
                 V
    +---+-----+-----+-----+-------+
    | n | n-1 | n-2 | ... |  d+1  |  Absolute Index
    +---+-----+  -  +-----+   -   +
              |  0  | ... | n-d-3 |  Relative Index
              +-----+-----+-------+

n = count of entries inserted
d = count of entries dropped
]]></artwork></figure>

</section>
<section anchor="post-base-indexing" title="Post-Base Indexing">

<t>A header block on the request stream can reference entries added after the entry
identified by the Base Index. This allows an encoder to process a header block
in a single pass and include references to entries added while processing this
(or other) header blocks. Newly added entries are referenced using Post-Base
instructions. Indices for Post-Base instructions increase in the same direction
as absolute indices, but the zero value is one higher than the Base Index.</t>

<figure title="Dynamic Table Indexing - Post-Base References"><artwork type="drawing"><![CDATA[
             Base Index
                 |
                 V
    +---+-----+-----+-----+-----+
    | n | n-1 | n-2 | ... | d+1 |  Absolute Index
    +---+-----+-----+-----+-----+
    | 1 |  0  |                    Post-Base Index
    +---+-----+

n = count of entries inserted
d = count of entries dropped
]]></artwork></figure>

<t>If the decoder encounters a reference to an entry which has already been dropped
from the table or which is greater than the declared Largest Reference (see
<xref target="absolute-index"/>), this MUST be treated as a stream error of type
<spanx style="verb">HTTP_QPACK_DECOMPRESSION_FAILED</spanx> error code.  If this reference occurs
on the control stream, this MUST be treated as a session error.</t>

</section>
</section>
<section anchor="overview-hol-avoidance" title="Avoiding Head-of-Line Blocking in HTTP/QUIC">

<t>Because QUIC does not guarantee order between data on different streams, a
header block might reference an entry in the dynamic table that has not yet been
received.</t>

<t>Each header block contains a Largest Reference which
identifies the table state necessary for decoding. If the greatest absolute
index in the dynamic table is less than the value of the Largest Reference, the
stream is considered “blocked.”  While blocked, header field data should remain
in the blocked stream’s flow control window.  When the Largest Reference is
zero, the frame contains no references to the dynamic table and can always be
processed immediately. A stream becomes unblocked when the greatest absolute
index in the dynamic table becomes greater than or equal to the Largest
Reference for all header blocks the decoder has started reading from the stream.
If a decoder encounters a header block where the actual largest reference is
not equal to the largest reference declared in the prefix, it MAY treat this as
a stream error of type HTTP_QPACK_DECOMPRESSION_FAILED.</t>

<t>A decoder can permit the possibility of blocked streams by setting
SETTINGS_QPACK_BLOCKED_STREAMS to a non-zero value (see <xref target="configuration"/>).
This setting specifies an upper bound on the number of streams which can be
blocked.</t>

<t>An encoder can decide whether to risk having a stream become blocked. If
permitted by the value of SETTINGS_QPACK_BLOCKED_STREAMS, compression efficiency
can be improved by referencing dynamic table entries that are still in transit,
but if there is loss or reordering the stream can become blocked at the decoder.
An encoder avoids the risk of blocking by only referencing dynamic table entries
which have been acknowledged, but this means using literals. Since literals make
the header block larger, this can result in the encoder becoming blocked on
congestion or flow control limits.</t>

<t>An encoder MUST limit the number of streams which could become blocked to the
value of SETTINGS_QPACK_BLOCKED_STREAMS at all times. Note that the decoder
might not actually become blocked on every stream which risks becoming blocked.
If the decoder encounters more blocked streams than it promised to support, it
SHOULD treat this as a stream error of type HTTP_QPACK_DECOMPRESSION_FAILED.</t>

<section anchor="state-synchronization" title="State Synchronization">

<t>The decoder stream signals key events at the decoder that permit the encoder to
track the decoder’s state.  These events are:</t>

<t><list style="symbols">
  <t>Successful processing of a header block</t>
  <t>Abandonment of a stream which might have remaining header blocks</t>
  <t>Receipt of new dynamic table entries</t>
</list></t>

<t>Regardless of whether a header block contained blocking references, the
knowledge that it was processed successfully permits the encoder to avoid
evicting entries while references remain outstanding; see <xref target="blocked-eviction"/>.
When a stream is reset or abandoned, the indication that these header blocks
will never be processed serves a similar function; see <xref target="stream-cancellation"/>.</t>

<t>For the encoder to identify which dynamic table entries can be safely used
without a stream becoming blocked, the encoder tracks the absolute index of the
decoder’s Largest Known Received entry.</t>

<t>When blocking references are permitted, the encoder uses acknowledgement of
header blocks to identify the Largest Known Received index, as described in
<xref target="header-acknowledgement"/>.</t>

<t>To acknowledge dynamic table entries which are not referenced by header blocks,
for example because the encoder or the decoder have chosen not to risk blocked
streams, the decoder sends a Table State Synchronize instruction (see
<xref target="table-state-synchronize"/>).</t>

</section>
</section>
</section>
<section anchor="conventions-and-definitions" title="Conventions and Definitions">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”,
“SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” 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>

<t>Definitions of terms that are used in this document:</t>

<t><list style="hanging">
  <t hangText='Header:'>
  A name-value pair sent as part of an HTTP message.</t>
  <t hangText='Header set:'>
  The full collection of headers associated with an HTTP message.</t>
  <t hangText='Header block:'>
  The compressed representation of a header set.</t>
  <t hangText='Encoder:'>
  An implementation which transforms a header set into a header block.</t>
  <t hangText='Decoder:'>
  An implementation which transforms a header block into a header set.</t>
</list></t>

<t>QPACK is a name, not an acronym.</t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>Diagrams use the format described in Section 3.1 of <xref target="RFC2360"/>, with the
following additional conventions:</t>

<t><list style="hanging">
  <t hangText='x (A)'>
  Indicates that x is A bits long</t>
  <t hangText='x (A+)'>
  Indicates that x uses the prefixed integer encoding defined in Section 5.1 of
<xref target="RFC7541"></xref>, beginning with an A-bit prefix.</t>
  <t hangText='x …'>
  Indicates that x is variable-length and extends to the end of the region.</t>
</list></t>

</section>
</section>
<section anchor="configuration" title="Configuration">

<t>QPACK defines two settings which are included in the HTTP/QUIC SETTINGS frame.</t>

<t><list style="hanging">
  <t hangText='SETTINGS_HEADER_TABLE_SIZE (0x1):'>
  An integer with a maximum value of 2^30 - 1.  The default value is 4,096
bytes.  See (TODO: reference PR#1357) for usage.</t>
  <t hangText='SETTINGS_QPACK_BLOCKED_STREAMS (0x7):'>
  An integer with a maximum value of 2^16 - 1.  The default value is 100.  See
<xref target="overview-hol-avoidance"/>.</t>
</list></t>

</section>
<section anchor="wire-format" title="Wire Format">

<t>QPACK instructions occur in three locations, each of which uses a separate
instruction space:</t>

<t><list style="symbols">
  <t>The encoder stream is a unidirectional stream of type <spanx style="verb">0x48</spanx> (ASCII ‘H’)
which carries table updates from encoder to decoder. Instructions on this
stream modify the dynamic table state without generating output to any
particular request.</t>
  <t>The decoder stream is a unidirectional stream of type <spanx style="verb">0x68</spanx> (ASCII ‘h’)
which carries acknowledgements of table modifications and header processing
from decoder to encoder.</t>
  <t>Finally, the contents of HEADERS and PUSH_PROMISE frames on request streams
and push streams reference the QPACK table state.</t>
</list></t>

<t>There MUST be exactly one of each unidirectional stream type in each direction.
Receipt of a second instance of either stream type MUST be treated as a
connection error of HTTP_WRONG_STREAM_COUNT.  Closure of either unidirectional
stream MUST be treated as a connection error of type
HTTP_CLOSED_CRITICAL_STREAM.</t>

<t>This section describes the instructions which are possible on each stream type.</t>

<t>All table updates occur on the encoder stream.  Request streams and push streams
only carry header blocks that do not modify the state of the table.</t>

<section anchor="primitives" title="Primitives">

<section anchor="prefixed-integers" title="Prefixed Integers">

<t>The prefixed integer from Section 5.1 of <xref target="RFC7541"></xref> is used heavily throughout
this document.  The format from <xref target="RFC7541"></xref> is used unmodified.</t>

</section>
<section anchor="string-literals" title="String Literals">

<t>The string literal defined by Section 5.2 of <xref target="RFC7541"></xref> is also used throughout.
This string format includes optional Huffman encoding.</t>

<t>HPACK defines string literals to begin on a byte boundary.  They begin with a
single flag (indicating whether the string is Huffman-coded), followed by the
Length encoded as a 7-bit prefix integer, and finally Length octets of data.
When Huffman encoding is enabled, the Huffman table from Appendix B of <xref target="RFC7541"></xref>
is used without modification.</t>

<t>This document expands the definition of string literals and permits them to
begin other than on a byte boundary.  An “N-bit prefix string literal” begins
with the same Huffman flag, followed by the length encoded as an (N-1)-bit
prefix integer.  The remainder of the string literal is unmodified.</t>

<t>A string literal without a prefix length noted is an 8-bit prefix string literal
and follows the definitions in <xref target="RFC7541"></xref> without modification.</t>

</section>
</section>
<section anchor="encoder-stream" title="QPACK Encoder Stream">

<t>Table updates can add a table entry, possibly using existing entries to avoid
transmitting redundant information.  The name can be transmitted as a reference
to an existing entry in the static or the dynamic table or as a string literal.
For entries which already exist in the dynamic table, the full entry can also be
used by reference, creating a duplicate entry.</t>

<t>The contents of the encoder stream are an unframed sequence of the following
instructions.</t>

<section anchor="insert-with-name-reference" title="Insert With Name Reference">

<t>An addition to the header table where the header field name matches the header
field name of an entry stored in the static table or the dynamic table starts
with the ‘1’ one-bit pattern.  The <spanx style="verb">S</spanx> bit indicates whether the reference is to
the static (S=1) or dynamic (S=0) table. The header field name is represented
using the relative index of that entry, which is represented as an integer with
a 6-bit prefix (see Section 5.1 of <xref target="RFC7541"></xref>).</t>

<t>The header name reference is followed by the header field value represented as a
string literal (see Section 5.2 of <xref target="RFC7541"></xref>).</t>

<figure title="Insert Header Field -- Indexed Name"><artwork type="drawing"><![CDATA[
     0   1   2   3   4   5   6   7
   +---+---+---+---+---+---+---+---+
   | 1 | S |    Name Index (6+)    |
   +---+---+-----------------------+
   | H |     Value Length (7+)     |
   +---+---------------------------+
   | Value String (Length octets)  |
   +-------------------------------+
]]></artwork></figure>

</section>
<section anchor="insert-without-name-reference" title="Insert Without Name Reference">

<t>An addition to the header table where both the header field name and the header
field value are represented as string literals (see <xref target="primitives"/>) starts with
the ‘01’ two-bit pattern.</t>

<t>The name is represented as a 6-bit prefix string literal, while the value is
represented as an 8-bit prefix string literal.</t>

<figure title="Insert Header Field -- New Name"><artwork type="drawing"><![CDATA[
     0   1   2   3   4   5   6   7
   +---+---+---+---+---+---+---+---+
   | 0 | 1 | H | Name Length (5+)  |
   +---+---+---+-------------------+
   |  Name String (Length octets)  |
   +---+---------------------------+
   | H |     Value Length (7+)     |
   +---+---------------------------+
   | Value String (Length octets)  |
   +-------------------------------+
]]></artwork></figure>

</section>
<section anchor="duplicate" title="Duplicate">

<t>Duplication of an existing entry in the dynamic table starts with the ‘000’
three-bit pattern.  The relative index of the existing entry is represented as
an integer with a 5-bit prefix.</t>

<figure title="Duplicate" anchor="fig-index-with-duplication"><artwork type="drawing"><![CDATA[
     0   1   2   3   4   5   6   7
   +---+---+---+---+---+---+---+---+
   | 0 | 0 | 0 |    Index (5+)     |
   +---+---+---+-------------------+
]]></artwork></figure>

<t>The existing entry is re-inserted into the dynamic table without resending
either the name or the value. This is useful to mitigate the eviction of older
entries which are frequently referenced, both to avoid the need to resend the
header and to avoid the entry in the table blocking the ability to insert new
headers.</t>

</section>
<section anchor="size-update" title="Dynamic Table Size Update">

<t>An encoder informs the decoder of a change to the size of the dynamic table
using an instruction which begins with the ‘001’ three-bit pattern.  The new
maximum table size is represented as an integer with a 5-bit prefix (see Section
5.1 of <xref target="RFC7541"></xref>).</t>

<figure title="Maximum Dynamic Table Size Change" anchor="fig-size-change"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 0 | 0 | 1 |   Max size (5+)   |
+---+---+---+-------------------+
]]></artwork></figure>

<t>The new maximum size MUST be lower than or equal to the limit determined by the
protocol using QPACK.  A value that exceeds this limit MUST be treated as a
decoding error.  In HTTP/QUIC, this limit is the value of the
SETTINGS_HEADER_TABLE_SIZE parameter (see <xref target="configuration"/>) received from the
decoder.</t>

<t>Reducing the maximum size of the dynamic table can cause entries to be evicted
(see Section 4.3 of <xref target="RFC7541"></xref>).  This MUST NOT cause the eviction of entries
with outstanding references (see <xref target="reference-tracking"/>).  Changing the size of
the dynamic table is not acknowledged as this instruction does not insert an
entry.</t>

</section>
</section>
<section anchor="feedback" title="QPACK Decoder Stream">

<t>The decoder stream carries information used to ensure consistency of the dynamic
table. Information is sent from the QPACK decoder to the QPACK encoder; that is,
the server informs the client about the processing of the client’s header blocks
and table updates, and the client informs the server about the processing of the
server’s header blocks and table updates.</t>

<t>The contents of the decoder stream are an unframed sequence of the following
instructions.</t>

<section anchor="table-state-synchronize" title="Table State Synchronize">

<t>The Table State Synchronize instruction begins with the ‘00’ two-bit pattern.
The instruction specifies the total number of dynamic table inserts and
duplications since the last Table State Synchronize or Header Acknowledgement
that increased the Largest Known Received dynamic table entry.  This is encoded
as a 6-bit prefix integer. The encoder uses this value to determine which table
entries might cause a stream to become blocked, as described in
<xref target="state-synchronization"/>.</t>

<figure title="Table State Synchronize" anchor="fig-size-sync"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 0 | 0 |   Insert Count (6+)   |
+---+---+-----------------------+
]]></artwork></figure>

<t>A decoder chooses when to emit Table State Synchronize instructions. Emitting a
Table State Synchronize after adding each new dynamic table entry will provide
the most timely feedback to the encoder, but could be redundant with other
decoder feedback. By delaying a Table State Synchronize, a decoder might be able
to coalesce multiple Table State Synchronize instructions, or replace them
entirely with Header Acknowledgements. However, delaying too long may lead to
compression inefficiencies if the encoder waits for an entry to be acknowledged
before using it.</t>

</section>
<section anchor="header-acknowledgement" title="Header Acknowledgement">

<t>After processing a header block on a request or push stream, the decoder emits a
Header Acknowledgement instruction on the decoder stream.  The instruction
begins with the ‘1’ one-bit pattern and includes the request stream’s stream ID,
encoded as a 7-bit prefix integer.  It is used by the peer’s QPACK encoder to
know when it is safe to evict an entry.</t>

<t>The same Stream ID can be identified multiple times, as multiple header blocks
can be sent on a single stream in the case of intermediate responses, trailers,
and pushed requests.  Since header frames on each stream are received and
processed in order, this gives the encoder precise feedback on which header
blocks within a stream have been fully processed.</t>

<figure title="Header Acknowledgement" anchor="fig-header-ack"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 1 |      Stream ID (7+)       |
+---+---------------------------+
]]></artwork></figure>

<t>When blocking references are permitted, the encoder uses acknowledgement of
header blocks to update the Largest Known Received index.  If a header block was
potentially blocking, the acknowledgement implies that the decoder has received
all dynamic table state necessary to process the header block.  If the Largest
Reference of an acknowledged header block was greater than the encoder’s current
Largest Known Received index, the block’s Largest Reference becomes the new
Largest Known Received.</t>

</section>
<section anchor="stream-cancellation" title="Stream Cancellation">

<t>A stream that is reset might have multiple outstanding header blocks.  A decoder
that receives a stream reset before the end of a stream generates a Stream
Cancellation instruction on the decoder stream.  Similarly, a decoder that
abandons reading of a stream needs to signal this using the Stream Cancellation
instruction.  This signals to the encoder that all references to the dynamic
table on that stream are no longer outstanding.</t>

<t>An encoder cannot infer from this instruction that any updates to the dynamic
table have been received.</t>

<t>The instruction begins with the ‘01’ two-bit pattern. The instruction includes
the stream ID of the affected stream - a request or push stream - encoded as a
6-bit prefix integer.</t>

<figure title="Stream Cancellation" anchor="fig-stream-cancel"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 0 | 1 |     Stream ID (6+)    |
+---+---+-----------------------+
]]></artwork></figure>

</section>
</section>
<section anchor="request-and-push-streams" title="Request and Push Streams">

<t>HEADERS and PUSH_PROMISE frames on request and push streams reference the
dynamic table in a particular state without modifying it.  Frames on these
streams emit the headers for an HTTP request or response.</t>

<section anchor="absolute-index" title="Header Data Prefix">

<t>Header data is prefixed with two integers, <spanx style="verb">Largest Reference</spanx> and <spanx style="verb">Base Index</spanx>.</t>

<figure title="Frame Payload" anchor="fig-base-index"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
|     Largest Reference (8+)    |
+---+---------------------------+
| S |   Delta Base Index (7+)   |
+---+---------------------------+
|      Compressed Headers     ...
+-------------------------------+
]]></artwork></figure>

<t><spanx style="verb">Largest Reference</spanx> identifies the largest absolute dynamic index referenced in
the block.  Blocking decoders use the Largest Reference to determine when it is
safe to process the rest of the block.</t>

<t><spanx style="verb">Base Index</spanx> is used to resolve references in the dynamic table as described in
<xref target="indexing"/>.</t>

<t>To save space, Base Index is encoded relative to Largest Reference using a
one-bit sign and the <spanx style="verb">Delta Base Index</spanx> value.  A sign bit of 0 indicates that
the Base Index has an absolute index that is greater than or equal to the
Largest Reference; the value of Delta Base Index is added to the Largest
Reference to determine the absolute value of the Base Index.  A sign bit of 1
indicates that the Base Index is less than the Largest Reference.  That is:</t>

<figure><artwork><![CDATA[
   if sign == 0:
      baseIndex = largestReference + deltaBaseIndex
   else:
      baseIndex = largestReference - deltaBaseIndex
]]></artwork></figure>

<t>A single-pass encoder is expected to determine the absolute value of Base Index
before encoding a header block.  If the encoder inserted entries in the dynamic
table while encoding the header block, Largest Reference will be greater than
Base Index, so the encoded difference is negative and the sign bit is set to 1.
If the header block did not reference the most recent entry in the table and did
not insert any new entries, Base Index will be greater than the Largest
Reference, so the delta will be positive and the sign bit is set to 0.</t>

<t>An encoder that produces table updates before encoding a header block might set
Largest Reference and Base Index to the same value.  When Largest Reference and
Base Index are equal, the Delta Base Index is encoded with a zero sign bit.  A
sign bit set to 1 when the Delta Base Index is 0 MUST be treated as a decoder
error.</t>

<t>A header block that does not reference the dynamic table can use any value for
Base Index; setting both Largest Reference and Base Index to zero is the most
efficient encoding.</t>

</section>
<section anchor="instructions" title="Instructions">

<section anchor="indexed-header-field" title="Indexed Header Field">

<t>An indexed header field representation identifies an entry in either the static
table or the dynamic table and causes that header field to be added to the
decoded header list, as described in Section 3.2 of <xref target="RFC7541"></xref>.</t>

<figure title="Indexed Header Field"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 1 | S |      Index (6+)       |
+---+---+-----------------------+
]]></artwork></figure>

<t>If the entry is in the static table, or in the dynamic table with an absolute
index less than or equal to Base Index, this representation starts with the ‘1’
1-bit pattern, followed by the <spanx style="verb">S</spanx> bit indicating whether the reference is into
the static (S=1) or dynamic (S=0) table. Finally, the relative index of the
matching header field is represented as an integer with a 6-bit prefix (see
Section 5.1 of <xref target="RFC7541"></xref>).</t>

</section>
<section anchor="indexed-header-field-with-post-base-index" title="Indexed Header Field With Post-Base Index">

<t>If the entry is in the dynamic table with an absolute index greater than Base
Index, the representation starts with the ‘0001’ 4-bit pattern, followed by the
post-base index (see <xref target="indexing"/>) of the matching header field, represented as
an integer with a 4-bit prefix (see Section 5.1 of <xref target="RFC7541"></xref>).</t>

<figure title="Indexed Header Field with Post-Base Index"><artwork type="drawing"><![CDATA[
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 0 | 0 | 0 | 1 |  Index (4+)   |
+---+---+---+---+---------------+
]]></artwork></figure>

</section>
<section anchor="literal-header-field-with-name-reference" title="Literal Header Field With Name Reference">

<t>A literal header field with a name reference represents a header where the
header field name matches the header field name of an entry stored in the static
table or the dynamic table.</t>

<t>If the entry is in the static table, or in the dynamic table with an absolute
index less than or equal to Base Index, this representation starts with the ‘01’
two-bit pattern.  If the entry is in the dynamic table with an absolute index
greater than Base Index, the representation starts with the ‘0000’ four-bit
pattern.</t>

<t>The following bit, ‘N’, indicates whether an intermediary is permitted to add
this header to the dynamic header table on subsequent hops. When the ‘N’ bit is
set, the encoded header MUST always be encoded with a literal representation. In
particular, when a peer sends a header field that it received represented as a
literal header field with the ‘N’ bit set, it MUST use a literal representation
to forward this header field.  This bit is intended for protecting header field
values that are not to be put at risk by compressing them (see Section 7.1 of
<xref target="RFC7541"></xref> for more details).</t>

<figure title="Literal Header Field With Name Reference"><artwork type="drawing"><![CDATA[
     0   1   2   3   4   5   6   7
   +---+---+---+---+---+---+---+---+
   | 0 | 1 | N | S |Name Index (4+)|
   +---+---+---+---+---------------+
   | H |     Value Length (7+)     |
   +---+---------------------------+
   | Value String (Length octets)  |
   +-------------------------------+
]]></artwork></figure>

<t>For entries in the static table or in the dynamic table with an absolute index
less than or equal to Base Index, the header field name is represented using the
relative index of that entry, which is represented as an integer with a 4-bit
prefix (see Section 5.1 of <xref target="RFC7541"></xref>). The <spanx style="verb">S</spanx> bit indicates whether the
reference is to the static (S=1) or dynamic (S=0) table.</t>

</section>
<section anchor="literal-header-field-with-post-base-name-reference" title="Literal Header Field With Post-Base Name Reference">

<t>For entries in the dynamic table with an absolute index greater than Base Index,
the header field name is represented using the post-base index of that entry
(see <xref target="indexing"/>) encoded as an integer with a 3-bit prefix.</t>

<figure title="Literal Header Field With Post-Base Name Reference"><artwork type="drawing"><![CDATA[
     0   1   2   3   4   5   6   7
   +---+---+---+---+---+---+---+---+
   | 0 | 0 | 0 | 0 | N |NameIdx(3+)|
   +---+---+---+---+---+-----------+
   | H |     Value Length (7+)     |
   +---+---------------------------+
   | Value String (Length octets)  |
   +-------------------------------+
]]></artwork></figure>

</section>
<section anchor="literal-header-field-without-name-reference" title="Literal Header Field Without Name Reference">

<t>An addition to the header table where both the header field name and the header
field value are represented as string literals (see <xref target="primitives"/>) starts with
the ‘001’ three-bit pattern.</t>

<t>The fourth bit, ‘N’, indicates whether an intermediary is permitted to add this
header to the dynamic header table on subsequent hops. When the ‘N’ bit is set,
the encoded header MUST always be encoded with a literal representation. In
particular, when a peer sends a header field that it received represented as a
literal header field with the ‘N’ bit set, it MUST use a literal representation
to forward this header field.  This bit is intended for protecting header field
values that are not to be put at risk by compressing them (see Section 7.1 of
<xref target="RFC7541"></xref> for more details).</t>

<t>The name is represented as a 4-bit prefix string literal, while the value is
represented as an 8-bit prefix string literal.</t>

<figure title="Literal Header Field Without Name Reference"><artwork type="drawing"><![CDATA[
     0   1   2   3   4   5   6   7
   +---+---+---+---+---+---+---+---+
   | 0 | 0 | 1 | N | H |NameLen(3+)|
   +---+---+---+---+---+-----------+
   |  Name String (Length octets)  |
   +---+---------------------------+
   | H |     Value Length (7+)     |
   +---+---------------------------+
   | Value String (Length octets)  |
   +-------------------------------+
]]></artwork></figure>

</section>
</section>
</section>
</section>
<section anchor="encoding-strategies" title="Encoding Strategies">

<section anchor="single-pass-encoding" title="Single Pass Encoding">

<t>An encoder making a single pass over a list of headers must choose Base Index
before knowing Largest Reference.  When trying to reference a header inserted to
the table after encoding has begun, the entry is encoded with different
instructions that tell the decoder to use an absolute index greater than the
Base Index.</t>

</section>
<section anchor="evictions" title="Preventing Eviction Races">

<t>Due to out-of-order arrival, QPACK’s eviction algorithm requires changes
(relative to HPACK) to avoid the possibility that an indexed representation is
decoded after the referenced entry has already been evicted.  QPACK employs a
two-phase eviction algorithm, in which the encoder will not evict entries that
have outstanding (unacknowledged) references.</t>

</section>
<section anchor="reference-tracking" title="Reference Tracking">

<t>An encoder MUST ensure that a header block which references a dynamic table
entry is not received by the decoder after the referenced entry has already been
evicted.  An encoder also respects the limit set by the decoder on the number of
streams that are allowed to become blocked. Even if the decoder is willing to
tolerate blocked streams, the encoder might choose to avoid them in certain
cases.</t>

<t>In order to enable this, the encoder will need to track outstanding
(unacknowledged) header blocks and table updates using feedback received from
the decoder.</t>

<section anchor="blocked-eviction" title="Blocked Eviction">

<t>The encoder MUST NOT permit an entry to be evicted while a reference to that
entry remains unacknowledged.  If a new header to be inserted into the dynamic
table would cause the eviction of such an entry, the encoder MUST NOT emit the
insert instruction until the reference has been processed by the decoder and
acknowledged.</t>

<t>The encoder can emit a literal representation for the new header in order to
avoid encoding delays, and MAY insert the header into the table later if
desired.</t>

<t>To ensure that the blocked eviction case is rare, references to the oldest
entries in the dynamic table SHOULD be avoided.  When one of the oldest entries
in the table is still actively used for references, the encoder SHOULD emit an
Duplicate representation instead (see <xref target="duplicate"/>).</t>

</section>
<section anchor="blocked-decoding" title="Blocked Decoding">

<t>For header blocks encoded in non-blocking mode, the encoder needs to forego
indexed representations that refer to table updates which have not yet been
acknowledged with <xref target="feedback"/>.  Since all table updates are processed in
sequence on the control stream, an index into the dynamic table is sufficient to
track which entries have been acknowledged.</t>

<t>To track blocked streams, the necessary Base Index value for each stream
can be used.  Whenever the decoder processes a table update, it can begin
decoding any blocked streams that now have their dependencies satisfied.</t>

</section>
</section>
<section anchor="speculative-updates" title="Speculative table updates">

<t>Implementations can <spanx style="emph">speculatively</spanx> send header frames on the HTTP Control
Streams which are not needed for any current HTTP request or response.  Such
headers could be used strategically to improve performance.  For instance, the
encoder might decide to <spanx style="emph">refresh</spanx> by sending Duplicate representations for
popular header fields (<xref target="duplicate"/>), ensuring they have small indices and
hence minimal size on the wire.</t>

</section>
<section anchor="sample-one-pass-encoding-algorithm" title="Sample One Pass Encoding Algorithm">

<t>Pseudo-code for single pass encoding, excluding handling of duplicates,
non-blocking mode, and reference tracking.</t>

<figure><artwork><![CDATA[
baseIndex = dynamicTable.baseIndex
largestReference = 0
for header in headers:
  staticIdx = staticTable.getIndex(header)
  if staticIdx:
    encodeIndexReference(streamBuffer, staticIdx)
    continue

  dynamicIdx = dynamicTable.getIndex(header)
  if !dynamicIdx:
    # No matching entry.  Either insert+index or encode literal
    nameIdx = getNameIndex(header)
    if shouldIndex(header) and dynamicTable.canIndex(header):
      encodeLiteralWithIncrementalIndex(controlBuffer, nameIdx,
                                        header)
      dynamicTable.add(header)
      dynamicIdx = dynamicTable.baseIndex

  if !dynamicIdx:
    # Couldn't index it, literal
    if nameIdx <= staticTable.size:
      encodeLiteral(streamBuffer, nameIndex, header)
    else:
      # encode literal, possibly with nameIdx above baseIndex
      encodeDynamicLiteral(streamBuffer, nameIndex, baseIndex,
                           header)
      largestReference = max(largestReference,
                             dynamicTable.toAbsolute(nameIdx))
  else:
    # Dynamic index reference
    assert(dynamicIdx)
    largestReference = max(largestReference, dynamicIdx)
    # Encode dynamicIdx, possibly with dynamicIdx above baseIndex
    encodeDynamicIndexReference(streamBuffer, dynamicIdx,
                                baseIndex)

# encode the prefix
encodeInteger(prefixBuffer, 0x00, largestReference, 8)
if baseIndex >= largestReference:
  encodeInteger(prefixBuffer, 0, baseIndex - largestReference, 7)
else:
  encodeInteger(prefixBuffer, 0x80,
                largestReference  - baseIndex, 7)

return controlBuffer, prefixBuffer + streamBuffer
]]></artwork></figure>

</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>TBD.</t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<section anchor="settings-registration" title="Settings Registration">

<t>This document creates two new settings in the “HTTP/QUIC Settings” registry
established in <xref target="QUIC-HTTP"/>.</t>

<t>The entries in the following table are registered by this document.</t>

<texttable>
      <ttcol align='left'>Setting Name</ttcol>
      <ttcol align='center'>Code</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>HEADER_TABLE_SIZE</c>
      <c>0x1</c>
      <c><xref target="configuration"/></c>
      <c>QPACK_BLOCKED_STREAMS</c>
      <c>0x7</c>
      <c><xref target="configuration"/></c>
</texttable>

</section>
<section anchor="stream-type-registration" title="Stream Type Registration">

<t>This document creates two new settings in the “HTTP/QUIC Stream Type” registry
established in <xref target="QUIC-HTTP"/>.</t>

<t>The entries in the following table are registered by this document.</t>

<texttable>
      <ttcol align='left'>Stream Type</ttcol>
      <ttcol align='center'>Code</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <ttcol align='left'>Sender</ttcol>
      <c>QPACK Encoder Stream</c>
      <c>0x48</c>
      <c><xref target="wire-format"/></c>
      <c>Both</c>
      <c>QPACK Decoder Stream</c>
      <c>0x68</c>
      <c><xref target="wire-format"/></c>
      <c>Both</c>
</texttable>

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-HTTP" >
  <front>
    <title>Hypertext Transfer Protocol (HTTP) over QUIC</title>
    <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
      <organization>Akamai Technologies</organization>
    </author>
    <date year="2018" month="June" day="28"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-13"/>
</reference>




<reference  anchor="RFC7541" target='https://www.rfc-editor.org/info/rfc7541'>
<front>
<title>HPACK: Header Compression for HTTP/2</title>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='H.' surname='Ruellan' fullname='H. Ruellan'><organization /></author>
<date year='2015' month='May' />
<abstract><t>This specification defines HPACK, a compression format for efficiently representing HTTP header fields, to be used in HTTP/2.</t></abstract>
</front>
<seriesInfo name='RFC' value='7541'/>
<seriesInfo name='DOI' value='10.17487/RFC7541'/>
</reference>



<reference  anchor="RFC2119" target='https://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>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>




    </references>

    <references title='Informative References'>





<reference anchor="QUIC-TRANSPORT">
<front>
<title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>

<author initials='J' surname='Iyengar' fullname='Jana Iyengar'>
    <organization />
</author>

<author initials='M' surname='Thomson' fullname='Martin Thomson'>
    <organization />
</author>

<date month='May' day='22' year='2018' />

<abstract><t>This document defines the core of the QUIC transport protocol.  This document describes connection establishment, packet format, multiplexing and reliability.  Accompanying documents describe the cryptographic handshake and loss detection.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-quic-transport-12' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-quic-transport-12.txt' />
</reference>



<reference  anchor="RFC7540" target='https://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<author initials='M.' surname='Belshe' fullname='M. Belshe'><organization /></author>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='M.' surname='Thomson' fullname='M. Thomson' role='editor'><organization /></author>
<date year='2015' month='May' />
<abstract><t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t><t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t></abstract>
</front>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>



<reference  anchor="RFC2360" target='https://www.rfc-editor.org/info/rfc2360'>
<front>
<title>Guide for Internet Standards Writers</title>
<author initials='G.' surname='Scott' fullname='G. Scott'><organization /></author>
<date year='1998' month='June' />
<abstract><t>This document is a guide for Internet standard writers.  It defines those characteristics that make standards coherent, unambiguous, and easy to interpret.  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='22'/>
<seriesInfo name='RFC' value='2360'/>
<seriesInfo name='DOI' value='10.17487/RFC2360'/>
</reference>




    </references>


<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-qpack-00" title="Since draft-ietf-quic-qpack-00">

<t><list style="symbols">
  <t>Renumbered instructions for consistency (#1471, #1472)</t>
  <t>Decoder is allowed to validate largest reference (#1404, #1469)</t>
  <t>Header block acknowledgments also acknowledge the associated largest reference
(#1370, #1400)</t>
  <t>Added an acknowledgment for unread streams (#1371, #1400)</t>
  <t>Removed framing from encoder stream (#1361,#1467)</t>
  <t>Control streams use typed unidirectional streams rather than fixed stream IDs
(#910,#1359)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-qcram-00" title="Since draft-ietf-quic-qcram-00">

<t><list style="symbols">
  <t>Separate instruction sets for table updates and header blocks (#1235, #1142,
#1141)</t>
  <t>Reworked indexing scheme (#1176, #1145, #1136, #1130, #1125, #1314)</t>
  <t>Added mechanisms that support one-pass encoding (#1138, #1320)</t>
  <t>Added a setting to control the number of blocked decoders (#238, #1140, #1143)</t>
  <t>Moved table updates and acknowledgments to dedicated streams (#1121, #1122,
#1238)</t>
</list></t>

</section>
</section>
<section numbered="false" anchor="acknowledgments" title="Acknowledgments">

<t>This draft draws heavily on the text of <xref target="RFC7541"/>.  The indirect input of
those authors is gratefully acknowledged, as well as ideas from:</t>

<t><list style="symbols">
  <t>Ryan Hamilton</t>
  <t>Patrick McManus</t>
  <t>Kazuho Oku</t>
  <t>Biren Roy</t>
  <t>Ian Swett</t>
  <t>Dmitri Tikhonov</t>
</list></t>

<t>Buck’s contribution was supported by Google during his employment there.</t>

<t>A substantial portion of Mike’s contribution was supported by Microsoft during
his employment there.</t>

</section>


  </back>

<!-- ##markdown-source:
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

-->

</rfc>

