<?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.11 (Ruby 3.2.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-compression-dictionary-04" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title>Compression Dictionary Transport</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-compression-dictionary-04"/>
    <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="May" day="20"/>
    <area>ART</area>
    <workgroup>HTTP</workgroup>
    <keyword>compression dictionary</keyword>
    <keyword>shared brotli</keyword>
    <keyword>zstandard dictionary</keyword>
    <keyword>delta compression</keyword>
    <abstract>
      <?line 62?>

<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 69?>

<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>
      <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 <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/> to
specify syntax and parsing: Dictionary, String, Inner List, Token, and Byte Sequence.</t>
        <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>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as described in
<xref target="RFC2119"/>.</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 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 request destinations for the dictionary
to match (https://fetch.spec.whatwg.org/#concept-request-destination).</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 dictionary is advertised as being
available.</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 <xref target="Origin"/> 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/ and expiring as a dictionary
in one year.</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} 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:</t>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
Dictionary-ID: "/v1/main.js 33a64df551425fcc55e4d42a148795d9f25f89d4"
]]></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 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 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>The client adds the 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>
      </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 (<xref target="HTTP"/>):</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 (<xref target="HTTP"/>):</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
(<xref target="HTTP"/>) 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 Type Registry" registry
(<xref target="WEB-LINKING"/>):</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>To minimize the risk of middle-boxes 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 CRIME attack shows 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 (https://fetch.spec.whatwg.org/#cors-check).</t>
          <section anchor="same-origin">
            <name>Same-Origin</name>
            <t>On the client-side, same-origin determination is defined in the fetch spec (https://html.spec.whatwg.org/multipage/browsers.html#origin).</t>
            <t>On the server-side, a request with a "Sec-Fetch-Site:" request header with a value of "same-origin" is to be considered a same-origin request.</t>
            <ul spacing="normal">
              <li>
                <t>For any request that is same-origin:
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </section>
          <section anchor="cross-origin">
            <name>Cross-Origin</name>
            <t>For requests that are not same-origin (<xref target="same-origin"/>), the "mode" of the request can be used to determine the readability of the response.</t>
            <t>For clients that conform to the fetch spec, the mode of the request is stored in the RequestMode attribute of the request (https://fetch.spec.whatwg.org/#requestmode).</t>
            <t>For servers responding to clients that expose the request mode information, the value of the mode is sent in the "Sec-Fetch-Mode" request header.</t>
            <t>If a "Sec-Fetch-Mode" request header is not present, the server <bcp14>SHOULD</bcp14> allow for the dictionary compression to be used.</t>
            <ol spacing="normal" type="1"><li>
                <t>If the mode is "navigate" or "same-origin":
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                  </li>
                </ul>
              </li>
              <li>
                <t>If the mode is "cors":
                </t>
                <ul spacing="normal">
                  <li>
                    <t>For clients, apply the CORS check from the fetch spec (https://fetch.spec.whatwg.org/#cors-check) which includes credentials checking restrictions that may not be possible to check on the server.
                    </t>
                    <ul spacing="normal">
                      <li>
                        <t>If the CORS check passes:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>Else:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                  <li>
                    <t>For servers:
                    </t>
                    <ul spacing="normal">
                      <li>
                        <t>If the response does not include an "Access-Control-Allow-Origin" response header:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>If the request does not include an "Origin" request header:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>If the value of the "Access-Control-Allow-Origin" response header is "*":
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>If the value of the "Access-Control-Allow-Origin" response header matches the value of the "Origin" request header:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                </ul>
              </li>
              <li>
                <t>If the mode is any other value (including "no-cors"):
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                  </li>
                </ul>
              </li>
            </ol>
          </section>
        </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. This includes partitioning the storage
as cookies are partitioned as well as clearing the dictionaries whenever
cookies are cleared.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="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="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="URLPattern" target="https://urlpattern.spec.whatwg.org/">
          <front>
            <title>URL Pattern Standard</title>
            <author>
              <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="Origin">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents. Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites. In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string. It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </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="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>
        <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>
      </references>
    </references>
    <?line 604?>



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

-->

</rfc>
