<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.18 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-compression-dictionary-10" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.0 -->
  <front>
    <title>Compression Dictionary Transport</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-compression-dictionary-10"/>
    <author initials="P." surname="Meenan" fullname="Patrick Meenan" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>pmeenan@google.com</email>
      </address>
    </author>
    <author initials="Y." surname="Weiss" fullname="Yoav Weiss" role="editor">
      <organization>Shopify Inc</organization>
      <address>
        <email>yoav.weiss@shopify.com</email>
      </address>
    </author>
    <date year="2024" month="August" day="14"/>
    <area>ART</area>
    <workgroup>HTTP</workgroup>
    <keyword>compression dictionary</keyword>
    <keyword>shared brotli</keyword>
    <keyword>zstandard dictionary</keyword>
    <keyword>delta compression</keyword>
    <abstract>
      <?line 76?>

<t>This specification defines a mechanism for using designated HTTP responses
as an external dictionary for future HTTP responses for compression schemes
that support using external dictionaries (e.g., Brotli (RFC 7932) and
Zstandard (RFC 8878)).</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-compression-dictionary/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/compression-dictionary"/>.</t>
    </note>
  </front>
  <middle>
    <?line 83?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This specification defines a mechanism for using designated <xref target="HTTP"/> responses
as an external dictionary for future HTTP responses for compression schemes
that support using external dictionaries (e.g., Brotli <xref target="RFC7932"/> and
Zstandard <xref target="RFC8878"/>).</t>
      <t>This document describes the HTTP headers used for negotiating dictionary usage
and registers media types for content encoding Brotli and Zstandard using a
negotiated dictionary.</t>
      <t>The negotiation of dictionary usage leverages HTTP's content negotiation
(see <xref section="12" sectionFormat="of" target="HTTP"/>) and is usable with all versions of HTTP.</t>
      <section anchor="use-cases">
        <name>Use Cases</name>
        <t>Any HTTP response can be specified to be used as a compression dictionary for
future HTTP requests which provides a lot of flexibility. There are two common
use cases that are seen frequently:</t>
        <section anchor="version-upgrade">
          <name>Version Upgrade</name>
          <t>Using a previous version of a resource as a dictionary for a newer version
enables delivery of a delta-compressed version of the changes, usually
resulting in significantly smaller responses than can be achieved by
compression alone.</t>
          <t>For example:</t>
          <figure>
            <name>Version Upgrade Example</name>
            <artwork type="ascii-art"><![CDATA[
+--------+                                                +--------+
|        |----------------------------------------------->|        |
|        |  GET /app.v1.js                                |        |
|        |                                                |        |
| Client |<-----------------------------------------------| Server |
|        |  OK                                            |        |
|        |  Use-As-Dictionary: match="/app.*.js"          |        |
|        |  <full app.v1.js resource - 100KB compressed>  |        |
+--------+                                                +--------+

 Some time later ...

+--------+                                                +--------+
|        |----------------------------------------------->|        |
|        |  GET /app.v2.js                                |        |
|        |  Available-Dictionary: :pZGm1A...2a2fFG4=:     |        |
|        |  Accept-Encoding: gzip, br, zstd, dcb, dcz     |        |
| Client |                                                | Server |
|        |<-----------------------------------------------|        |
|        |  OK                                            |        |
|        |  Content-Encoding: dcb                         |        |
|        |  <delta-compressed app.v2.js resource - 1KB>   |        |
+--------+                                                +--------+
]]></artwork>
          </figure>
        </section>
        <section anchor="common-content">
          <name>Common Content</name>
          <t>If several resources share common patterns in their responses then it can be
useful to reference an external dictionary that contains those common patterns,
effectively compressing them out of the responses. Some examples of this are
common template HTML for similar pages across a site and common keys and values
in API calls.</t>
          <t>For example:</t>
          <figure>
            <name>Common Content Example</name>
            <artwork type="ascii-art"><![CDATA[
+--------+                                                 +--------+
|        |------------------------------------------------>|        |
|        |  GET /index.html                                |        |
|        |                                                 |        |
| Client |<------------------------------------------------| Server |
|        |  OK                                             |        |
|        |  Link: <.../dict>; rel="compression-dictionary" |        |
|        |  <full index.html resource - 100KB compressed>  |        |
|        |                                                 |        |
|        |                                                 |        |
|        |------------------------------------------------>|        |
|        |  GET /dict                                      |        |
|        |                                                 |        |
|        |<------------------------------------------------|        |
|        |  OK                                             |        |
|        |  Use-As-Dictionary: match="*.html"              |        |
+--------+                                                 +--------+

 Some time later ...

+--------+                                                 +--------+
|        |------------------------------------------------>|        |
|        |  GET /page2.html                                |        |
|        |  Available-Dictionary: :pZGm1A...2a2fFG4=:      |        |
|        |  Accept-Encoding: gzip, br, zstd, dcb, dcz      |        |
| Client |                                                 | Server |
|        |<------------------------------------------------|        |
|        |  OK                                             |        |
|        |  Content-Encoding: dcb                          |        |
|        |  <delta-compressed page2.html resource - 10KB>  |        |
+--------+                                                 +--------+
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
        <?line -18?>

<t>This document uses the following terminology from Section 3 of
<xref target="STRUCTURED-FIELDS"/> to specify syntax and parsing: Dictionary, String,
Inner List, Token, and Byte Sequence.</t>
        <t>This document uses the line folding strategies described in <xref target="FOLDING"/>.</t>
        <t>This document also uses terminology from <xref target="HTTP"/> and <xref target="HTTP-CACHING"/>.</t>
      </section>
    </section>
    <section anchor="dictionary-negotiation">
      <name>Dictionary Negotiation</name>
      <section anchor="use-as-dictionary">
        <name>Use-As-Dictionary</name>
        <t>When responding to a HTTP Request, a server can advertise that the response can
be used as a dictionary for future requests for URLs that match the rules
specified in the Use-As-Dictionary response header.</t>
        <t>The Use-As-Dictionary response header is a Structured Field
<xref target="STRUCTURED-FIELDS"/> Dictionary with values for "match", "match-dest", "id",
and "type".</t>
        <section anchor="match">
          <name>match</name>
          <t>The "match" value of the Use-As-Dictionary header is a String value that
provides the URL Pattern <xref target="URLPattern"/> to use for request matching.</t>
          <t>The URL Pattern used for matching does not support using regular expressions.</t>
          <t>The following algorithm is used to validate that a given String value is a
valid URL Pattern that does not use regular expressions and is for the same
Origin (<xref section="4.3.1" sectionFormat="of" target="HTTP"/>) as the dictionary. It will return TRUE
for a valid match pattern and FALSE for an invalid pattern that <bcp14>MUST NOT</bcp14> be
used:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let MATCH be the value of "match" for the given dictionary.</t>
            </li>
            <li>
              <t>Let URL be the URL of the dictionary request.</t>
            </li>
            <li>
              <t>Let PATTERN be a URL Pattern <xref target="URLPattern"/> constructed by setting
input=MATCH, and baseURL=URL.</t>
            </li>
            <li>
              <t>If PATTERN has regexp groups then return FALSE.</t>
            </li>
            <li>
              <t>Return True.</t>
            </li>
          </ol>
          <t>The "match" value is required and <bcp14>MUST</bcp14> be included in the
Use-As-Dictionary Dictionary for the dictionary to be considered valid.</t>
        </section>
        <section anchor="match-dest">
          <name>match-dest</name>
          <t>The "match-dest" value of the Use-As-Dictionary header is an Inner List of
String values that provides a list of <xref target="FETCH"/> request destinations for the
dictionary to match.</t>
          <t>An empty list for "match-dest" <bcp14>MUST</bcp14> match all destinations.</t>
          <t>For clients that do not support request destinations, the client <bcp14>MUST</bcp14> treat it
as an empty list and match all destinations.</t>
          <t>The "match-dest" value is optional and defaults to an empty list.</t>
        </section>
        <section anchor="id">
          <name>id</name>
          <t>The "id" value of the Use-As-Dictionary header is a String value that specifies
a server identifier for the dictionary. If an "id" value is present and has a
string length longer than zero then it <bcp14>MUST</bcp14> be sent to the server in a
"Dictionary-ID" request header when the client sends an "Available-Dictionary"
request header for the same dictionary (see <xref target="available-dictionary"/>).</t>
          <t>The server identifier <bcp14>MUST</bcp14> be treated as an opaque string by the client.</t>
          <t>The server identifier <bcp14>MUST NOT</bcp14> be relied upon by the server to guarantee the
contents of the dictionary. The dictionary hash <bcp14>MUST</bcp14> be validated before use.</t>
          <t>The "id" value string length (after any decoding) supports up to 1024
characters.</t>
          <t>The "id" value is optional and defaults to the empty string.</t>
        </section>
        <section anchor="type">
          <name>type</name>
          <t>The "type" value of the Use-As-Dictionary header is a Token value that
describes the file format of the supplied dictionary.</t>
          <t>"raw" is the only defined dictionary format which represents an unformatted
blob of bytes suitable for any compression scheme to use.</t>
          <t>If a client receives a dictionary with a type that it does not understand, it
<bcp14>MUST NOT</bcp14> use the dictionary.</t>
          <t>The "type" value is optional and defaults to "raw".</t>
        </section>
        <section anchor="examples">
          <name>Examples</name>
          <section anchor="path-prefix">
            <name>Path Prefix</name>
            <t>A response that contained a response header:</t>
            <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Use-As-Dictionary: \
  match="/product/*", match-dest=("document")
]]></sourcecode>
            <t>Would specify matching any document request for a URL with a path prefix of
/product/ on the same Origin (<xref section="4.3.1" sectionFormat="of" target="HTTP"/>) as the original
request.</t>
          </section>
          <section anchor="versioned-directories">
            <name>Versioned Directories</name>
            <t>A response that contained a response header:</t>
            <sourcecode type="http-message"><![CDATA[
Use-As-Dictionary: match="/app/*/main.js"
]]></sourcecode>
            <t>Would match main.js in any directory under /app/.</t>
          </section>
        </section>
      </section>
      <section anchor="available-dictionary">
        <name>Available-Dictionary</name>
        <t>When a HTTP client makes a request for a resource for which it has an
appropriate dictionary, it can add a "Available-Dictionary" request header
to the request to indicate to the server that it has a dictionary available to
use for compression.</t>
        <t>The "Available-Dictionary" request header is a Structured Field
<xref target="STRUCTURED-FIELDS"/> Byte Sequence containing the <xref target="SHA-256"/> hash of the
contents of a single available dictionary.</t>
        <t>The client <bcp14>MUST</bcp14> only send a single "Available-Dictionary" request header
with a single hash value for the best available match that it has available.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
]]></sourcecode>
        <section anchor="dictionary-freshness-requirement">
          <name>Dictionary freshness requirement</name>
          <t>To be considered as a match, the dictionary resource <bcp14>MUST</bcp14> be either fresh
<xref target="HTTP-CACHING"/> or allowed to be served stale (see eg <xref target="RFC5861"/>).</t>
        </section>
        <section anchor="dictionary-url-matching">
          <name>Dictionary URL matching</name>
          <t>When a dictionary is stored as a result of a "Use-As-Dictionary" directive, it
includes "match" and "match-dest" strings that are used to match an outgoing
request from a client to the available dictionaries.</t>
          <t>Dictionaries <bcp14>MUST</bcp14> have been served from the same Origin
(<xref section="4.3.1" sectionFormat="of" target="HTTP"/>) as the outgoing request to match.</t>
          <t>To see if an outbound request matches a given dictionary, the following
algorithm will return TRUE for a successful match and FALSE for no-match:</t>
          <ol spacing="normal" type="1"><li>
              <t>If the current client supports request destinations:
              </t>
              <ul spacing="normal">
                <li>
                  <t>Let DEST be the value of "match-dest" for the given dictionary.</t>
                </li>
                <li>
                  <t>Let REQUEST_DEST be the value of the destination for the current
 request.</t>
                </li>
                <li>
                  <t>If DEST is not an empty list and if REQUEST_DEST is not in the DEST list
 of destinations, return FALSE</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Let BASEURL be the URL of the dictionary request.</t>
            </li>
            <li>
              <t>Let URL represent the URL of the outbound request being checked.</t>
            </li>
            <li>
              <t>If the Origin of BASEURL and the Origin of URL are not the same, return
FALSE.</t>
            </li>
            <li>
              <t>Let MATCH be the value of "match" for the given dictionary.</t>
            </li>
            <li>
              <t>Let PATTERN be a URL Pattern <xref target="URLPattern"/> constructed by setting
input=MATCH, and baseURL=BASEURL.</t>
            </li>
            <li>
              <t>Return the result of running the "test" method of PATTERN with input=URL.</t>
            </li>
          </ol>
        </section>
        <section anchor="multiple-matching-dictionaries">
          <name>Multiple matching dictionaries</name>
          <t>When there are multiple dictionaries that match a given request URL, the client
<bcp14>MUST</bcp14> pick a single dictionary using the following rules:</t>
          <ol spacing="normal" type="1"><li>
              <t>For clients that support request destinations, a dictionary that specifies
and matches a "match-dest" takes precedence over a match that does not use a
destination.</t>
            </li>
            <li>
              <t>Given equivalent destination precedence, the dictionary with the longest
"match" takes precedence.</t>
            </li>
            <li>
              <t>Given equivalent destination and match length precedence, the most recently
fetched dictionary takes precedence.</t>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="dictionary-id">
        <name>Dictionary-ID</name>
        <t>When a HTTP client makes a request for a resource for which it has an
appropriate dictionary and the dictionary was stored with a server-provided
"id" in the Use-As-Dictionary response then the client <bcp14>MUST</bcp14> echo the stored
"id" in a "Dictionary-ID" request header.</t>
        <t>The "Dictionary-ID" request header is a Structured Field <xref target="STRUCTURED-FIELDS"/>
String of up to 1024 characters (after any decoding) and <bcp14>MUST</bcp14> be identical to
the server-provided "id".</t>
        <t>For example, given a HTTP response that set a dictionary ID:</t>
        <sourcecode type="http-message"><![CDATA[
Use-As-Dictionary: match="/app/*/main.js", id="dictionary-12345"
]]></sourcecode>
        <t>A future request that matches the given dictionary will include both the hash
and the ID:</t>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
Dictionary-ID: "dictionary-12345"
]]></sourcecode>
      </section>
    </section>
    <section anchor="the-compression-dictionary-link-relation-type">
      <name>The 'compression-dictionary' Link Relation Type</name>
      <t>This specification defines the 'compression-dictionary' link relation type
<xref target="WEB-LINKING"/> that provides a mechanism for a HTTP response to provide a URL
for a compression dictionary that is related to, but not directly used by the
current HTTP response.</t>
      <t>The 'compression-dictionary' link relation type indicates that fetching and
caching the specified resource is likely to be beneficial for future requests.
The response to some of those future requests are likely to be able to use
the indicated resource as a compression dictionary.</t>
      <t>Clients can fetch the provided resource at a time that they determine would
be appropriate.</t>
      <t>The response to the fetch for the compression dictionary needs to include a
"Use-As-Dictionary" and caching response headers for it to be usable as a
compression dictionary. The link relation only provides the mechanism for
triggering the fetch of the dictionary.</t>
      <t>The following example shows a link to a resource at
https://example.org/dict.dat that is expected to produce a compression
dictionary:</t>
      <sourcecode type="http-message"><![CDATA[
Link: <https://example.org/dict.dat>; rel="compression-dictionary"
]]></sourcecode>
    </section>
    <section anchor="dictionary-compressed-brotli">
      <name>Dictionary-Compressed Brotli</name>
      <t>The "dcb" content encoding identifies a resource that is a
"Dictionary-Compressed Brotli" stream.</t>
      <t>A "Dictionary-Compressed Brotli" stream has a fixed header that is followed by
a Shared Brotli <xref target="SHARED-BROTLI"/> stream. The header consists of a fixed 4-byte
sequence and a 32-byte hash of the external dictionary that was used.  The
Shared Brotli stream is created using the referenced external dictionary and a
compression window that is at most 16 MB in size.</t>
      <t>The dictionary used for the "dcb" content encoding is a "raw" dictionary type
as defined in <xref target="type"/> and is treated as a prefix dictionary as defined in
section 9.2 of the Shared Brotli Compressed Data Format draft.
<xref target="SHARED-BROTLI"/></t>
      <t>The 36-byte fixed header is as follows:</t>
      <dl>
        <dt>Magic_Number:</dt>
        <dd>
          <t>4 fixed bytes: 0xff, 0x44, 0x43, 0x42.</t>
        </dd>
        <dt>SHA_256_Hash:</dt>
        <dd>
          <t>32 bytes. SHA-256 hash digest of the dictionary <xref target="SHA-256"/>.</t>
        </dd>
      </dl>
      <t>Clients that announce support for dcb content encoding <bcp14>MUST</bcp14> be able to
decompress resources that were compressed with a window size of up to 16 MB.</t>
      <t>With Brotli compression, the full dictionary is available during compression
and decompression independent of the compression window, allowing for
delta-compression of resources larger than the compression window.</t>
    </section>
    <section anchor="dictionary-compressed-zstandard">
      <name>Dictionary-Compressed Zstandard</name>
      <t>The "dcz" content encoding identifies a resource that is a
"Dictionary-Compressed Zstandard" stream.</t>
      <t>A "Dictionary-Compressed Zstandard" stream is a binary stream that starts with
a 40-byte fixed header and is followed by a Zstandard <xref target="RFC8878"/> stream of the
response that has been compressed with an external dictionary.</t>
      <t>The dictionary used for the "dcz" content encoding is a "raw" dictionary type
as defined in <xref target="type"/> and is treated as a raw dictionary as per section 5 of
RFC 8878.</t>
      <t>The 40-byte header consists of a fixed 8-byte sequence followed by the
32-byte SHA-256 hash of the external dictionary that was used to compress the
resource:</t>
      <dl>
        <dt>Magic_Number:</dt>
        <dd>
          <t>8 fixed bytes: 0x5e, 0x2a, 0x4d, 0x18, 0x20, 0x00, 0x00, 0x00.</t>
        </dd>
        <dt>SHA_256_Hash:</dt>
        <dd>
          <t>32 bytes. SHA-256 hash digest of the dictionary <xref target="SHA-256"/>.</t>
        </dd>
      </dl>
      <t>The 40-byte header is a Zstandard skippable frame (little-endian 0x184D2A5E)
with a 32-byte length (little-endian 0x00000020) that is compatible with existing
Zstandard decoders.</t>
      <t>Clients that announce support for dcz content encoding <bcp14>MUST</bcp14> be able to
decompress resources that were compressed with a window size of at least 8 MB
or 1.25 times the size of the dictionary, which ever is greater, up to a
maximum of 128 MB.</t>
      <t>The window size used will be encoded in the content (currently, this can be expressed
in powers of two only) and it <bcp14>MUST</bcp14> be lower than this limit. An implementation <bcp14>MAY</bcp14>
treat a window size that exceeds the limit as a decoding error.</t>
      <t>With Zstandard compression, the full dictionary is available during compression
and decompression until the size of the input exceeds the compression window.
Beyond that point the dictionary becomes unavailable. Using a compression
window that is 1.25 times the size of the dictionary allows for full delta
compression of resources that have grown by 25% between releases while still
giving the client control over the memory it will need to allocate for a given
response.</t>
    </section>
    <section anchor="negotiating-the-content-encoding">
      <name>Negotiating the content encoding</name>
      <t>When a compression dictionary is available for use for a given request, the
encoding to be used is negotiated through the regular mechanism for
negotiating content encoding in HTTP through the "Accept-Encoding" request
header and "Content-Encoding" response header.</t>
      <t>The dictionary to use is negotiated separately and advertised in the
"Available-Dictionary" request header.</t>
      <section anchor="accept-encoding">
        <name>Accept-Encoding</name>
        <t>When a dictionary is available for use on a given request, and the client
chooses to make dictionary-based content-encoding available, the client adds
the dictionary-aware content encodings that it supports to the
"Accept-Encoding" request header. e.g.:</t>
        <sourcecode type="http-message"><![CDATA[
Accept-Encoding: gzip, deflate, br, zstd, dcb, dcz
]]></sourcecode>
        <t>When a client does not have a stored dictionary that matches the request, or
chooses not to use one for the request, the client <bcp14>MUST NOT</bcp14> send its
dictionary-aware content-encodings in the "Accept-Encoding" request header.</t>
      </section>
      <section anchor="content-encoding">
        <name>Content-Encoding</name>
        <t>If a server supports one of the dictionary encodings advertised by the client
and chooses to compress the content of the response using the dictionary that
the client has advertised then it sets the "Content-Encoding" response header
to the appropriate value for the algorithm selected. e.g.:</t>
        <sourcecode type="http-message"><![CDATA[
Content-Encoding: dcb
]]></sourcecode>
        <t>If the response is cacheable, it <bcp14>MUST</bcp14> include a "Vary" header to prevent caches
serving dictionary-compressed resources to clients that don't support them or
serving the response compressed with the wrong dictionary:</t>
        <sourcecode type="http-message"><![CDATA[
Vary: accept-encoding, available-dictionary
]]></sourcecode>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="content-encoding-1">
        <name>Content Encoding</name>
        <t>IANA is asked to enter the following into the "HTTP Content Coding Registry"
registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-parameters/http-parameters.xhtml"/>&gt;:</t>
        <ul spacing="normal">
          <li>
            <t>Name: dcb</t>
          </li>
          <li>
            <t>Description: "Dictionary-Compressed Brotli" data format.</t>
          </li>
          <li>
            <t>Reference: This document</t>
          </li>
          <li>
            <t>Notes: <xref target="dictionary-compressed-brotli"/></t>
          </li>
        </ul>
        <t>IANA is asked to enter the following into the "HTTP Content Coding Registry"
registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-parameters/http-parameters.xhtml"/>&gt;:</t>
        <ul spacing="normal">
          <li>
            <t>Name: dcz</t>
          </li>
          <li>
            <t>Description: "Dictionary-Compressed Zstandard" data format.</t>
          </li>
          <li>
            <t>Reference: This document</t>
          </li>
          <li>
            <t>Notes: <xref target="dictionary-compressed-zstandard"/></t>
          </li>
        </ul>
      </section>
      <section anchor="header-field-registration">
        <name>Header Field Registration</name>
        <t>IANA is asked to update the
"Hypertext Transfer Protocol (HTTP) Field Name Registry" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-fields/http-fields.xhtml"/>&gt; according
to the table below:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Status</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Use-As-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="use-as-dictionary"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Available-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="available-dictionary"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Dictionary-ID</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="dictionary-id"/> of this document</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="link-relation-registration">
        <name>Link Relation Registration</name>
        <t>IANA is asked to update the "Link Relation Types" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/link-relations/link-relations.xhtml"/>&gt;:</t>
        <ul spacing="normal">
          <li>
            <t>Relation Name: compression-dictionary</t>
          </li>
          <li>
            <t>Description: Refers to a compression dictionary used for content encoding.</t>
          </li>
          <li>
            <t>Reference: This document, <xref target="the-compression-dictionary-link-relation-type"/></t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="compatibility-considerations">
      <name>Compatibility Considerations</name>
      <t>It is not unusual for there to be devices on the network path that intercept,
inspect and process HTTP requests (web proxies, firewalls, intrusion detection
systems, etc). To minimize the risk of these devices incorrectly processing
dictionary-compressed responses, compression dictionary transport <bcp14>MUST</bcp14> only be
used in secure contexts (HTTPS).</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations for Brotli <xref target="RFC7932"/>, Shared Brotli
<xref target="SHARED-BROTLI"/> and Zstandard <xref target="RFC8878"/> apply to the
dictionary-based versions of the respective algorithms.</t>
      <section anchor="changing-content">
        <name>Changing content</name>
        <t>The dictionary must be treated with the same security precautions as
the content, because a change to the dictionary can result in a
change to the decompressed content.</t>
        <t>The dictionary is validated using a SHA-256 hash of the content to make sure
that the client and server are both using the same dictionary. The strength
of the SHA-256 hash algorithm isn't explicitly needed to counter attacks
since the dictionary is being served from the same origin as the content. That
said, if a weakness is discovered in SHA-256 and it is determined that the
dictionary negotiation should use a different hash algorithm, the
"Use-As-Dictionary" response header can be extended to specify a different
algorithm and the server would just ignore any "Available-Dictionary" requests
that do not use the updated hash.</t>
      </section>
      <section anchor="reading-content">
        <name>Reading content</name>
        <t>The compression attacks in <xref section="2.6" sectionFormat="of" target="RFC7457"/> show that it's a bad idea
to compress data from mixed (e.g. public and private) sources -- the data
sources include not only the compressed data but also the dictionaries. For
example, if you compress secret cookies using a public-data-only dictionary,
you still leak information about the cookies.</t>
        <t>Not only can the dictionary reveal information about the compressed
data, but vice versa, data compressed with the dictionary can reveal
the contents of the dictionary when an adversary can control parts of
data to compress and see the compressed size. On the other hand, if
the adversary can control the dictionary, the adversary can learn
information about the compressed data.</t>
      </section>
      <section anchor="security-mitigations">
        <name>Security Mitigations</name>
        <t>If any of the mitigations do not pass, the client <bcp14>MUST</bcp14> drop the response and
return an error.</t>
        <section anchor="cross-origin-protection">
          <name>Cross-origin protection</name>
          <t>To make sure that a dictionary can only impact content from the same origin
where the dictionary was served, the URL Pattern used for matching a dictionary
to requests (<xref target="match"/>) is guaranteed to be for the same origin that the
dictionary is served from.</t>
        </section>
        <section anchor="response-readability">
          <name>Response readability</name>
          <t>For clients, like web browsers, that provide additional protection against the
readability of the payload of a response and against user tracking, additional
protections <bcp14>MUST</bcp14> be taken to make sure that the use of dictionary-based
compression does not reveal information that would not otherwise be available.</t>
          <t>In these cases, dictionary compression <bcp14>MUST</bcp14> only be used when both the
dictionary and the compressed response are fully readable by the client.</t>
          <t>In browser terms, that means that both are either same-origin to the context
they are being fetched from or that the response is cross-origin and passes
the CORS check as defined in <xref target="FETCH"/>.</t>
        </section>
        <section anchor="server-responsibility">
          <name>Server Responsibility</name>
          <t>As with any usage of compressed content in a secure context, a potential
timing attack exists if the attacker can control any part of the dictionary,
or if it can read the dictionary and control any part of the content being
compressed, while performing multiple requests that vary the dictionary or
injected content. Under such an attack, the changing size or processing time
of the response reveals information about the content, which might be
sufficient to read the supposedly secure response.</t>
          <t>In general, a server can mitigate such attacks by preventing variations per
request, as in preventing active use of multiple dictionaries for the same
content, disabling compression when any portion of the content comes from
uncontrolled sources, and securing access and control over the dictionary
content in the same way as the response content. In addition, the following
requirements on a server are intended to disable dictionary-aware compression
when the client provides CORS request header fields that indicate a
cross-origin request context.</t>
          <t>The following algorithm will return FALSE for cross-origin requests where
precautions such as not using dictionary-based compression should be
considered:</t>
          <ol spacing="normal" type="1"><li>
              <t>If there is no "Sec-Fetch-Site" request header then return TRUE.</t>
            </li>
            <li>
              <t>if the value of the "Sec-Fetch-Site" request header is "same-origin" then
return TRUE.</t>
            </li>
            <li>
              <t>If there is no "Sec-Fetch-Mode" request header then return TRUE.</t>
            </li>
            <li>
              <t>If the value of the "Sec-Fetch-Mode" request header is "navigate" or
"same-origin" then return TRUE.</t>
            </li>
            <li>
              <t>If the value of the "Sec-Fetch-Mode" request header is "cors":
              </t>
              <ul spacing="normal">
                <li>
                  <t>If the response does not include an "Access-Control-Allow-Origin" response header then return FALSE.</t>
                </li>
                <li>
                  <t>If the request does not include an "Origin" request header then return FALSE.</t>
                </li>
                <li>
                  <t>If the value of the "Access-Control-Allow-Origin" response header is "*" then return TRUE.</t>
                </li>
                <li>
                  <t>If the value of the "Access-Control-Allow-Origin" response header matches the value of the "Origin" request header then return TRUE.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>return FALSE.</t>
            </li>
          </ol>
        </section>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>Since dictionaries are advertised in future requests using the hash of the
content of the dictionary, it is possible to abuse the dictionary to turn it
into a tracking cookie.</t>
      <t>To mitigate any additional tracking concerns, clients <bcp14>MUST</bcp14> treat dictionaries
in the same way that they treat cookies <xref target="RFC6265"/>. This includes partitioning
the storage as cookies are partitioned as well as clearing the dictionaries
whenever cookies are cleared.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org">
          <front>
            <title>Fetch - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2024" month="June"/>
          </front>
        </reference>
        <reference anchor="FOLDING">
          <front>
            <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
            <author fullname="A. Farrel" initials="A." surname="Farrel"/>
            <author fullname="Q. Wu" initials="Q." surname="Wu"/>
            <date month="June" year="2020"/>
            <abstract>
              <t>This document defines two strategies for handling long lines in width-bounded text content. One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line. The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy. Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8792"/>
          <seriesInfo name="DOI" value="10.17487/RFC8792"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="HTTP-CACHING">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="SHA-256">
          <front>
            <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="May" year="2011"/>
            <abstract>
              <t>Federal Information Processing Standard, FIPS</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6234"/>
          <seriesInfo name="DOI" value="10.17487/RFC6234"/>
        </reference>
        <reference anchor="STRUCTURED-FIELDS" target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-sfbis/">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author>
              <organization/>
            </author>
            <date year="2024" month="May"/>
          </front>
        </reference>
        <reference anchor="URLPattern" target="https://urlpattern.spec.whatwg.org/">
          <front>
            <title>URL Pattern - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2024" month="March"/>
          </front>
        </reference>
        <reference anchor="WEB-LINKING">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <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">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <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 anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC5861">
          <front>
            <title>HTTP Cache-Control Extensions for Stale Content</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document defines two independent HTTP Cache-Control extensions that allow control over the use of stale responses by caches. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5861"/>
          <seriesInfo name="DOI" value="10.17487/RFC5861"/>
        </reference>
        <reference anchor="RFC6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC7457">
          <front>
            <title>Summarizing Known Attacks on Transport Layer Security (TLS) and Datagram TLS (DTLS)</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="R. Holz" initials="R." surname="Holz"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <date month="February" year="2015"/>
            <abstract>
              <t>Over the last few years, there have been several serious attacks on Transport Layer Security (TLS), including attacks on its most commonly used ciphers and modes of operation. This document summarizes these attacks, with the goal of motivating generic and protocol-specific recommendations on the usage of TLS and Datagram TLS (DTLS).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7457"/>
          <seriesInfo name="DOI" value="10.17487/RFC7457"/>
        </reference>
        <reference anchor="RFC7932">
          <front>
            <title>Brotli Compressed Data Format</title>
            <author fullname="J. Alakuijala" initials="J." surname="Alakuijala"/>
            <author fullname="Z. Szabadka" initials="Z." surname="Szabadka"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7932"/>
          <seriesInfo name="DOI" value="10.17487/RFC7932"/>
        </reference>
        <reference anchor="RFC8878">
          <front>
            <title>Zstandard Compression and the 'application/zstd' Media Type</title>
            <author fullname="Y. Collet" initials="Y." surname="Collet"/>
            <author fullname="M. Kucherawy" initials="M." role="editor" surname="Kucherawy"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>Zstandard, or "zstd" (pronounced "zee standard"), is a lossless data compression mechanism. This document describes the mechanism and registers a media type, content encoding, and a structured syntax suffix to be used when transporting zstd-compressed content via MIME.</t>
              <t>Despite use of the word "standard" as part of Zstandard, readers are advised that this document is not an Internet Standards Track specification; it is being published for informational purposes only.</t>
              <t>This document replaces and obsoletes RFC 8478.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8878"/>
          <seriesInfo name="DOI" value="10.17487/RFC8878"/>
        </reference>
        <reference anchor="SHARED-BROTLI" target="https://datatracker.ietf.org/doc/draft-vandevenne-shared-brotli-format/">
          <front>
            <title>Shared Brotli Compressed Data Format</title>
            <author>
              <organization/>
            </author>
            <date year="2022" month="September"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 723?>



  </back>
  <!-- ##markdown-source:
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
ZqrOJflvAAA=

-->

</rfc>
