<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.14 -->

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

<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc tocdepth="3"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-header-structure-16" category="std">

  <front>
    <title>Structured Field Values for HTTP</title>

    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization>Fastly</organization>
      <address>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>
    <author initials="P-H." surname="Kamp" fullname="Poul-Henning Kamp">
      <organization>The Varnish Cache Project</organization>
      <address>
        <email>phk@varnish-cache.org</email>
      </address>
    </author>

    <date />

    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>Internet-Draft</keyword>

    <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”, or “Structured Headers”. 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>


    <note title="Note to Readers">


<t><spanx style="emph">RFC EDITOR: please remove this section before publication</spanx></t>

<t>Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t>

<t>Working Group information can be found at <eref target="https://httpwg.github.io/">https://httpwg.github.io/</eref>; source code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/header-structure">https://github.com/httpwg/http-extensions/labels/header-structure</eref>.</t>

<t>Tests for implementations are collected at <eref target="https://github.com/httpwg/structured-header-tests">https://github.com/httpwg/structured-header-tests</eref>.</t>

<t>Implementations are tracked at <eref target="https://github.com/httpwg/wiki/wiki/Structured-Headers">https://github.com/httpwg/wiki/wiki/Structured-Headers</eref>.</t>


    </note>


  </front>

  <middle>


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

<t>Specifying the syntax of new HTTP header (and trailer) fields is an onerous task; even with the guidance in Section 8.3.1 of <xref target="RFC7231"/>, there are many decisions – and pitfalls – for a prospective HTTP field author.</t>

<t>Once a field is defined, bespoke parsers and serializers often need to be written, because each field value has slightly different handling of what looks like common syntax.</t>

<t>This document introduces a set of common data structures for use in definitions of new HTTP field values to address these problems. In particular, it defines a generic, abstract model for them, along with a concrete serialization for expressing that model in HTTP <xref target="RFC7230"/> header and trailer fields.</t>

<t>A HTTP field that is defined as a “Structured Header” (or “Structured Trailer”, respectively; if the field can be either, it is a “Structured Field”) uses the types defined in this specification to define its syntax and basic handling rules, thereby simplifying both its definition by specification writers and handling by implementations.</t>

<t>Additionally, future versions of HTTP can define alternative serializations of the abstract model of these structures, allowing fields that use it to be transmitted more efficiently without being redefined.</t>

<t>Note that it is not a goal of this document to redefine the syntax of existing HTTP fields; the mechanisms described herein are only intended to be used with those that explicitly opt into them.</t>

<t><xref target="specify"/> describes how to specify a Structured Field.</t>

<t><xref target="types"/> defines a number of abstract data types that can be used in Structured Fields.</t>

<t>Those abstract types can be serialized into and parsed from HTTP field values using the algorithms described in <xref target="text"/>.</t>

<section anchor="strict" title="Intentionally Strict Processing">

<t>This specification intentionally defines strict parsing and serialization behaviors using step-by-step algorithms; the only error handling defined is to fail the operation altogether.</t>

<t>It is designed to encourage faithful implementation and therefore good interoperability. Therefore, an implementation that tried to be “helpful” by being more tolerant of input would make interoperability worse, since that would create pressure on other implementations to implement similar (but likely subtly different) workarounds.</t>

<t>In other words, strict processing is an intentional feature of this specification; it allows non-conformant input to be discovered and corrected by the producer early, and avoids both interoperability and security issues that might otherwise result.</t>

<t>Note that as a result of this strictness, if a field is appended to by multiple parties (e.g., intermediaries, or different components in the sender), an error in one party’s value is likely to cause the entire field value to fail parsing.</t>

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

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>

<t>This document uses algorithms to specify parsing and serialization behaviors, and the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> to illustrate expected syntax in HTTP header fields. In doing so, it uses the VCHAR, SP, DIGIT, ALPHA and DQUOTE rules from <xref target="RFC5234"/>. It also includes the tchar rule from <xref target="RFC7230"/>.</t>

<t>When parsing from HTTP fields, implementations MUST follow the algorithms, but MAY vary in implementation so as the behaviors are indistinguishable from specified behavior. If there is disagreement between the parsing algorithms and ABNF, the specified algorithms take precedence. In some places, the algorithms are “greedy” with whitespace, but this should not affect conformance.</t>

<t>For serialization to HTTP fields, the ABNF illustrates the range of acceptable wire representations with as much fidelity as possible, and the algorithms define the recommended way to produce them. Implementations MAY vary from the specified behavior so long as the output still matches the ABNF.</t>

</section>
</section>
<section anchor="specify" title="Defining New Structured Fields">

<t>To specify a HTTP field as a Structured Field, its authors needs to:</t>

<t><list style="symbols">
  <t>Reference this specification. Recipients and generators of the field need to know that the requirements of this document are in effect.</t>
  <t>Identify whether the field is a Structured Header (i.e., it can only be used in the header section - the common case), a Structured Field (only in the trailer section), or a Structured Field (both).</t>
  <t>Specify the type of the field value; either List (<xref target="list"/>), Dictionary (<xref target="dictionary"/>), or Item (<xref target="item"/>).</t>
  <t>Define the semantics of those structures.</t>
  <t>Specify any additional constraints upon the structures used, as well as the consequences when those constraints are violated.</t>
</list></t>

<t>Typically, this means that a field definition will specify the top-level type – List, Dictionary or Item – and then define its allowable types, and constraints upon them. For example, a header defined as a List might have all Integer members, or a mix of types; a header defined as an Item might allow only Strings, and additionally only strings beginning with the letter “Q”. Likewise, Inner Lists are only valid when a field definition explicitly allows them.</t>

<t>When parsing fails, the field is ignored (see <xref target="text-parse"/>); in most situations, violating field-specific constraints should have the same effect. Thus, if a header is defined as an Item and required to be an Integer, but a String is received, it will by default be ignored. If the field requires different error handling, this should be explicitly specified.</t>

<t>However, both Items and Inner Lists allow parameters as an extensibility mechanism; this means that values can later be extended to accommodate more information, if need be. As a result, field specifications are discouraged from defining the presence of an unrecognized Parameter as an error condition.</t>

<t>To help assure that this extensibility is available in the future, and to encourage consumers to use a complete parser implementation, a field definition can specify that “grease” Parameters be added by senders. For example, a specification could stipulate that all Parameters beginning with the letter “h” are reserved for this use, and then encourage them to be sent on some portion of requests. This helps to discourage recipients from writing a parser that does not account for Parameters.</t>

<t>Note that a field definition cannot relax the requirements of this specification because doing so would preclude handling by generic software; they can only add additional constraints (for example, on the numeric range of Integers and Decimals, the format of Strings and Tokens, the types allowed in a Dictionary’s values, or the number of Items in a List). Likewise, field definitions can only use this specification for the entire field value, not a portion thereof.</t>

<t>This specification defines minimums for the length or number of various structures supported by implementations. It does not specify maximum sizes in most cases, but authors should be aware that HTTP implementations do impose various limits on the size of individual fields, the total number of fields, and/or the size of the entire header or trailer section.</t>

<t>Specifications can refer to a field name as a “structured header name”, “structured trailer name” or “structured field name” as appropriate. Likewise, they can refer its field value as a “structured header value”, “structured trailer value” or “structured field value” as necessary. Field definitions are encouraged to use the ABNF rules beginning with “sh-“ defined in this specification; other rules in this specification are not intended for their use.</t>

<t>For example, a fictitious Foo-Example header field might be specified as:</t>

<figure><artwork type="example"><![CDATA[
42. Foo-Example Header

The Foo-Example HTTP header field conveys information about how
much Foo the message has.

Foo-Example is a Item Structured Header [RFCxxxx]. Its value MUST be
an Integer (Section Y.Y of [RFCxxxx]). Its ABNF is:

  Foo-Example = sh-integer

Its value indicates the amount of Foo in the message, and MUST
be between 0 and 10, inclusive; other values MUST cause
the entire header to be ignored.

The following parameters are defined:
* A Parameter whose name is "foourl", and whose value is a String
  (Section Y.Y of [RFCxxxx]), conveying the Foo URL
  for the message. See below for processing requirements.

"foourl" contains a URI-reference (Section 4.1 of
[RFC3986]). If its value is not a valid URI-reference,
it MUST be ignored. If its value is a relative reference
(Section 4.2 of [RFC3986]), it MUST be resolved (Section 5 of
[RFC3986]) before being used.

For example:

  Foo-Example: 2; foourl="https://foo.example.com/"
]]></artwork></figure>

</section>
<section anchor="types" title="Structured Data Types">

<t>This section defines the abstract value types that can be composed into Structured Fields. The ABNF provided represents the on-wire format in HTTP field values.</t>

<t>In summary:</t>

<t><list style="symbols">
  <t>There are three top-level types that a HTTP field can be defined as; Lists, Dictionaries, and Items.</t>
  <t>Lists and Dictionaries are containers; their members can be Items or Inner Lists (which are themselves lists of items).</t>
  <t>Both Items and Inner Lists can be parameterized with key/value pairs.</t>
</list></t>

<section anchor="list" title="Lists">

<t>Lists are arrays of zero or more members, each of which can be an Item (<xref target="item"/>) or an Inner List (<xref target="inner-list"/>), both of which can be Parameterized (<xref target="param"/>).</t>

<t>The ABNF for Lists in HTTP fields is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-list       = list-member *( *SP "," *SP list-member )
list-member   = sh-item / inner-list
]]></artwork></figure>

<t>Each member is separated by a comma and optional whitespace. For example, a field whose value is defined as a List of Strings could look like:</t>

<figure><artwork type="example"><![CDATA[
Example-StrListHeader: "foo", "bar", "It was the best of times."
]]></artwork></figure>

<t>An empty List is denoted by not serializing the field at all.</t>

<t>Note that Lists can have their members split across multiple lines inside a header or trailer section, as per Section 3.2.2 of <xref target="RFC7230"/>; for example, the following are equivalent:</t>

<figure><artwork type="example"><![CDATA[
Example-Hdr: foo, bar
]]></artwork></figure>

<t>and</t>

<figure><artwork type="example"><![CDATA[
Example-Hdr: foo
Example-Hdr: bar
]]></artwork></figure>

<t>However, individual members of a List cannot be safely split between across lines; see <xref target="text-parse"/> for details.</t>

<t>Parsers MUST support Lists containing at least 1024 members. Field specifications can constrain the types and cardinality of individual List values as they require.</t>

<section anchor="inner-list" title="Inner Lists">

<t>An Inner List is an array of zero or more Items (<xref target="item"/>). Both the individual Items and the Inner List itself can be Parameterized (<xref target="param"/>).</t>

<t>The ABNF for Inner Lists is:</t>

<figure><artwork type="abnf"><![CDATA[
inner-list    = "(" *SP [ sh-item *( 1*SP sh-item ) *SP ] ")"
                parameters
]]></artwork></figure>

<t>Inner Lists are denoted by surrounding parenthesis, and have their values delimited by a single space. A field whose value is defined as a list of Inner Lists of Strings could look like:</t>

<figure><artwork type="example"><![CDATA[
Example-StrListListHeader: ("foo" "bar"), ("baz"), ("bat" "one"), ()
]]></artwork></figure>

<t>Note that the last member in this example is an empty Inner List.</t>

<t>A header field whose value is defined as a list of Inner Lists with Parameters at both levels could look like:</t>

<figure><artwork type="example"><![CDATA[
Example-ListListParam: ("foo"; a=1;b=2);lvl=5, ("bar" "baz");lvl=1
]]></artwork></figure>

<t>Parsers MUST support Inner Lists containing at least 256 members. Field specifications can constrain the types and cardinality of individual Inner List members as they require.</t>

</section>
<section anchor="param" title="Parameters">

<t>Parameters are an ordered map of key-values pairs that are associated with an Item (<xref target="item"/>) or Inner List (<xref target="inner-list"/>). The keys are unique within the scope the Parameters they occur within, and the values are bare items (i.e., they themselves cannot be parameterized; see <xref target="item"/>).</t>

<t>The ABNF for Parameters is:</t>

<figure><artwork type="abnf"><![CDATA[
parameters    = *( ";" *SP parameter )
parameter     = param-name [ "=" param-value ]
param-name    = key
key           = ( lcalpha / "*" )
                *( lcalpha / DIGIT / "_" / "-" / "." / "*" )
lcalpha       = %x61-7A ; a-z
param-value   = bare-item
]]></artwork></figure>

<t>A parameter is separated from its Item or Inner List and other parameters by a semicolon. For example:</t>

<figure><artwork type="example"><![CDATA[
Example-ParamListHeader: abc;a=1;b=2; cde_456, (ghi;jk=4 l);q="9";r=w
]]></artwork></figure>

<t>Parameters whose value is Boolean true MUST omit that value when serialized. For example:</t>

<figure><artwork type="example"><![CDATA[
Example-IntHeader: 1; a; b=?0
]]></artwork></figure>

<t>Note that this requirement is only on serialization; parsers are still required to correctly handle the true value when it appears in a parameter.</t>

<t>Parsers MUST support at least 256 parameters on an Item or Inner List, and support parameter keys with at least 64 characters. Field specifications can constrain the types and cardinality of individual parameter names and values as they require.</t>

</section>
</section>
<section anchor="dictionary" title="Dictionaries">

<t>Dictionaries are ordered maps of name-value pairs, where the names are short, textual strings and the values are items (<xref target="item"/>) or arrays of items, both of which can be Parameterized (<xref target="param"/>). There can be zero or more members, and their names are unique in the scope of the Dictionary they occur within.</t>

<t>Implementations MUST provide access to Dictionaries both by index and by name. Specifications MAY use either means of accessing the members.</t>

<t>The ABNF for Dictionaries is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-dictionary  = dict-member *( *SP "," *SP dict-member )
dict-member    = member-name [ "=" member-value ]
member-name    = key
member-value   = sh-item / inner-list
]]></artwork></figure>

<t>Members are separated by a comma with optional whitespace, while names and values are separated by “=” (without whitespace). For example:</t>

<figure><artwork type="example"><![CDATA[
Example-DictHeader: en="Applepie", da=:w4ZibGV0w6ZydGU=:
]]></artwork></figure>

<t>Members whose value is Boolean true MUST omit that value when serialized. For example, here both “b” and “c” are true:</t>

<figure><artwork type="example"><![CDATA[
Example-DictHeader: a=?0, b, c; foo=bar
]]></artwork></figure>

<t>Note that this requirement is only on serialization; parsers are still required to correctly handle the true Boolean value when it appears in Dictionary values.</t>

<t>A Dictionary with a member whose value is an Inner List of tokens:</t>

<figure><artwork type="example"><![CDATA[
Example-DictListHeader: rating=1.5, feelings=(joy sadness)
]]></artwork></figure>

<t>A Dictionary with a mix of singular and list values, some with Parameters:</t>

<figure><artwork type="example"><![CDATA[
Example-MixDict: a=(1 2), b=3, c=4;aa=bb, d=(5 6);valid
]]></artwork></figure>

<t>As with lists, an empty Dictionary is represented by omitting the entire field.</t>

<t>Typically, a field specification will define the semantics of Dictionaries by specifying the allowed type(s) for individual member names, as well as whether their presence is required or optional. Recipients MUST ignore names that are undefined or unknown, unless the field’s specification specifically disallows them.</t>

<t>Note that dictionaries can have their members split across multiple lines inside a header or trailer section; for example, the following are equivalent:</t>

<figure><artwork type="example"><![CDATA[
Example-Hdr: foo=1, bar=2
]]></artwork></figure>

<t>and</t>

<figure><artwork type="example"><![CDATA[
Example-Hdr: foo=1
Example-Hdr: bar=2
]]></artwork></figure>

<t>However, individual members of a Dictionary cannot be safely split between lines; see <xref target="text-parse"/> for details.</t>

<t>Parsers MUST support Dictionaries containing at least 1024 name/value pairs, and names with at least 64 characters.</t>

</section>
<section anchor="item" title="Items">

<t>An Item can be a Integer (<xref target="integer"/>), Decimal (<xref target="decimal"/>), String (<xref target="string"/>), Token (<xref target="token"/>), Byte Sequence (<xref target="binary"/>), or Boolean (<xref target="boolean"/>). It can have associated Parameters (<xref target="param"/>).</t>

<t>The ABNF for Items is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-item   = bare-item parameters
bare-item = sh-integer / sh-decimal / sh-string / sh-token
            / sh-binary / sh-boolean
]]></artwork></figure>

<t>For example, a header field that is defined to be an Item that is an Integer might look like:</t>

<figure><artwork type="example"><![CDATA[
Example-IntItemHeader: 5
]]></artwork></figure>

<t>or with Parameters:</t>

<figure><artwork type="example"><![CDATA[
Example-IntItemHeader: 5; foo=bar
]]></artwork></figure>

<section anchor="integer" title="Integers">

<t>Integers have a range of -999,999,999,999,999 to 999,999,999,999,999 inclusive (i.e., up to fifteen digits, signed), for IEEE 754 compatibility (<xref target="IEEE754"/>).</t>

<t>The ABNF for Integers is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-integer = ["-"] 1*15DIGIT
]]></artwork></figure>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
Example-IntegerHeader: 42
]]></artwork></figure>

<t>Note that commas in Integers are used in this section’s prose only for readability; they are not valid in the wire format.</t>

</section>
<section anchor="decimal" title="Decimals">

<t>Decimals are numbers with an integer and a fractional component. The integer component has at most 12 digits; the fractional component has at most three digits.</t>

<t>The ABNF for decimals is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-decimal  = ["-"] 1*12DIGIT "." 1*3DIGIT
]]></artwork></figure>

<t>For example, a header whose value is defined as a Decimal could look like:</t>

<figure><artwork type="example"><![CDATA[
Example-DecimalHeader: 4.5
]]></artwork></figure>

<t>Note that the serialisation algorithm (<xref target="ser-decimal"/>) rounds input with more than three digits of precision in the fractional component. If an alternative rounding strategy is desired, this should be specified by the header definition to occur before serialisation.</t>

</section>
<section anchor="string" title="Strings">

<t>Strings are zero or more printable ASCII <xref target="RFC0020"/> characters (i.e., the range %x20 to %x7E). Note that this excludes tabs, newlines, carriage returns, etc.</t>

<t>The ABNF for Strings is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-string = DQUOTE *(chr) DQUOTE
chr       = unescaped / escaped
unescaped = %x20-21 / %x23-5B / %x5D-7E
escaped   = "\" ( DQUOTE / "\" )
]]></artwork></figure>

<t>Strings are delimited with double quotes, using a backslash (“\”) to escape double quotes and backslashes. For example:</t>

<figure><artwork type="example"><![CDATA[
Example-StringHeader: "hello world"
]]></artwork></figure>

<t>Note that Strings only use DQUOTE as a delimiter; single quotes do not delimit Strings. Furthermore, only DQUOTE and “\” can be escaped; other characters after “\” MUST cause parsing to fail.</t>

<t>Unicode is not directly supported in Strings, because it causes a number of interoperability issues, and – with few exceptions – field values do not require it.</t>

<t>When it is necessary for a field value to convey non-ASCII content, a Byte Sequence (<xref target="binary"/>) can be specified, along with a character encoding (preferably <xref target="UTF-8"/>).</t>

<t>Parsers MUST support Strings (after any decoding) with at least 1024 characters.</t>

</section>
<section anchor="token" title="Tokens">

<t>Tokens are short textual words; their abstract model is identical to their expression in the HTTP field value serialization.</t>

<t>The ABNF for Tokens is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-token = ( ALPHA / "*" ) *( tchar / ":" / "/" )
]]></artwork></figure>

<t>Parsers MUST support Tokens with at least 512 characters.</t>

<t>Note that Token allows the characters as the “token” ABNF rule defined in <xref target="RFC7230"/>, with the exceptions that the first character is required to be either ALPHA or “*”, and “:” and “/” are also allowed in subsequent characters.</t>

</section>
<section anchor="binary" title="Byte Sequences">

<t>Byte Sequences can be conveyed in Structured Fields.</t>

<t>The ABNF for a Byte Sequence is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-binary = ":" *(base64) ":"
base64    = ALPHA / DIGIT / "+" / "/" / "="
]]></artwork></figure>

<t>A Byte Sequence is delimited with colons and encoded using base64 (<xref target="RFC4648"/>, Section 4). For example:</t>

<figure><artwork type="example"><![CDATA[
Example-BinaryHdr: :cHJldGVuZCB0aGlzIGlzIGJpbmFyeSBjb250ZW50Lg==:
]]></artwork></figure>

<t>Parsers MUST support Byte Sequences with at least 16384 octets after decoding.</t>

</section>
<section anchor="boolean" title="Booleans">

<t>Boolean values can be conveyed in Structured Fields.</t>

<t>The ABNF for a Boolean is:</t>

<figure><artwork type="abnf"><![CDATA[
sh-boolean = "?" boolean
boolean    = "0" / "1"
]]></artwork></figure>

<t>A Boolean is indicated with a leading “?” character followed by a “1” for a true value or “0” for false. For example:</t>

<figure><artwork type="example"><![CDATA[
Example-BoolHdr: ?1
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="text" title="Working With Structured Fields in HTTP">

<t>This section defines how to serialize and parse Structured Fields in field values, and protocols compatible with them (e.g., in HTTP/2 <xref target="RFC7540"/> before HPACK <xref target="RFC7541"/> is applied).</t>

<section anchor="text-serialize" title="Serializing Structured Fields">

<t>Given a structure defined in this specification, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>If the structure is a Dictionary or List and its value is empty (i.e., it has no members), do not serialize the field at all (i.e., omit both the field-name and field-value).</t>
  <t>If the structure is a List, let output_string be the result of running Serializing a List (<xref target="ser-list"/>) with the structure.</t>
  <t>Else if the structure is a Dictionary, let output_string be the result of running Serializing a Dictionary (<xref target="ser-dictionary"/>) with the structure.</t>
  <t>Else if the structure is an Item, let output_string be the result of running Serializing an Item (<xref target="ser-item"/>) with the structure.</t>
  <t>Else, fail serialization.</t>
  <t>Return output_string converted into an array of bytes, using ASCII encoding <xref target="RFC0020"/>.</t>
</list></t>

<section anchor="ser-list" title="Serializing a List">

<t>Given an array of (member_value, parameters) tuples as input_list, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Let output be an empty string.</t>
  <t>For each (member_value, parameters) of input_list:
  <list style="numbers">
      <t>If member_value is an array, append the result of running Serializing an Inner List (<xref target="ser-innerlist"/>) with (member_value, parameters) to output.</t>
      <t>Otherwise, append the result of running Serializing an Item (<xref target="ser-item"/>) with (member_value, parameters) to output.</t>
      <t>If more member_values remain in input_list:
      <list style="numbers">
          <t>Append “,” to output.</t>
          <t>Append a single SP to output.</t>
        </list></t>
    </list></t>
  <t>Return output.</t>
</list></t>

<section anchor="ser-innerlist" title="Serializing an Inner List">

<t>Given an array of (member_value, parameters) tuples as inner_list, and parameters as list_parameters, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Let output be the string “(“.</t>
  <t>For each (member_value, parameters) of inner_list:
  <list style="numbers">
      <t>Append the result of running Serializing an Item (<xref target="ser-item"/>) with (member_value, parameters) to output.</t>
      <t>If more values remain in inner_list, append a single SP to output.</t>
    </list></t>
  <t>Append “)” to output.</t>
  <t>Append the result of running Serializing Parameters (<xref target="ser-params"/>) with list_parameters to output.</t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-params" title="Serializing Parameters">

<t>Given an ordered Dictionary as input_parameters (each member having a param_name and a param_value), return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Let output be an empty string.</t>
  <t>For each param_name with a value of param_value in input_parameters:
  <list style="numbers">
      <t>Append “;” to output.</t>
      <t>Append the result of running Serializing a Key (<xref target="ser-key"/>) with param_name to output.</t>
      <t>If param_value is not Boolean true:
      <list style="numbers">
          <t>Append “=” to output.</t>
          <t>Append the result of running Serializing a bare Item (<xref target="ser-bare-item"/>) with param_value to output.</t>
        </list></t>
    </list></t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-key" title="Serializing a Key">

<t>Given a key as input_key, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Convert input_key into a sequence of ASCII characters; if conversion fails, fail serialization.</t>
  <t>If input_key contains characters not in lcalpha, DIGIT, “_”, “-“, “.”, or “*” fail serialization.</t>
  <t>If the first character of input_key is not lcalpha or “*”, fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>Append input_key to output.</t>
  <t>Return output.</t>
</list></t>

</section>
</section>
<section anchor="ser-dictionary" title="Serializing a Dictionary">

<t>Given an ordered Dictionary as input_dictionary (each member having a member_name and a tuple value of (member_value, parameters)), return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Let output be an empty string.</t>
  <t>For each member_name with a value of (member_value, parameters) in input_dictionary:
  <list style="numbers">
      <t>Append the result of running Serializing a Key (<xref target="ser-key"/>) with member’s member_name to output.</t>
    </list></t>
  <t>If member_value is Boolean true:
  <list style="numbers">
      <t>Append the result of running Serializing Parameters (<xref target="ser-params"/>) with parameters to output.</t>
    </list></t>
  <t>Otherwise:
  <list style="numbers">
      <t>Append “=” to output.</t>
      <t>If member_value is an array, append the result of running Serializing an Inner List (<xref target="ser-innerlist"/>) with (member_value, parameters) to output.</t>
      <t>Otherwise, append the result of running Serializing an Item (<xref target="ser-item"/>) with (member_value, parameters) to output.</t>
    </list></t>
  <t>If more members remain in input_dictionary:
  <list style="numbers">
      <t>Append “,” to output.</t>
      <t>Append a single SP to output.</t>
    </list></t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-item" title="Serializing an Item">

<t>Given an Item as bare_item and Parameters as item_parameters, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Let output be an empty string.</t>
  <t>Append the result of running Serializing a Bare Item <xref target="ser-bare-item"/> with bare_item to output.</t>
  <t>Append the result of running Serializing Parameters <xref target="ser-params"/> with item_parameters to output.</t>
  <t>Return output.</t>
</list></t>

<section anchor="ser-bare-item" title="Serializing a Bare Item">

<t>Given an Item as input_item, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>If input_item is an Integer, return the result of running Serializing an Integer (<xref target="ser-integer"/>) with input_item.</t>
  <t>If input_item is a Decimal, return the result of running Serializing a Decimal (<xref target="ser-decimal"/>) with input_item.</t>
  <t>If input_item is a String, return the result of running Serializing a String (<xref target="ser-string"/>) with input_item.</t>
  <t>If input_item is a Token, return the result of running Serializing a Token (<xref target="ser-token"/>) with input_item.</t>
  <t>If input_item is a Boolean, return the result of running Serializing a Boolean (<xref target="ser-boolean"/>) with input_item.</t>
  <t>If input_item is a Byte Sequence, return the result of running Serializing a Byte Sequence (<xref target="ser-binary"/>) with input_item.</t>
  <t>Otherwise, fail serialization.</t>
</list></t>

</section>
</section>
<section anchor="ser-integer" title="Serializing an Integer">

<t>Given an Integer as input_integer, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>If input_integer is not an integer in the range of -999,999,999,999,999 to 999,999,999,999,999 inclusive, fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>If input_integer is less than (but not equal to) 0, append “-“ to output.</t>
  <t>Append input_integer’s numeric value represented in base 10 using only decimal digits to output.</t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-decimal" title="Serializing a Decimal">

<t>Given a decimal number as input_decimal, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>If input_decimal is not a decimal number, fail serialization.</t>
  <t>If input_decimal has more than three significant digits to the right of the decimal point, round it to three decimal places, rounding the final digit to the nearest value, or to the even value if it is equidistant.</t>
  <t>If input_decimal has more than 12 significant digits to the left of the decimal point after rounding, fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>If input_decimal is less than (but not equal to) 0, append “-“ to output.</t>
  <t>Append input_decimal’s integer component represented in base 10 (using only decimal digits) to output; if it is zero, append “0”.</t>
  <t>Append “.” to output.</t>
  <t>If input_decimal’s fractional component is zero, append “0” to output.</t>
  <t>Otherwise, append the significant digits of input_decimal’s fractional component represented in base 10 (using only decimal digits) to output.</t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-string" title="Serializing a String">

<t>Given a String as input_string, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Convert input_string into a sequence of ASCII characters; if conversion fails, fail serialization.</t>
  <t>If input_string contains characters in the range %x00-1f or %x7f (i.e., not in VCHAR or SP), fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>Append DQUOTE to output.</t>
  <t>For each character char in input_string:
  <list style="numbers">
      <t>If char is “\” or DQUOTE:
      <list style="numbers">
          <t>Append “\” to output.</t>
        </list></t>
      <t>Append char to output.</t>
    </list></t>
  <t>Append DQUOTE to output.</t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-token" title="Serializing a Token">

<t>Given a Token as input_token, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>Convert input_token into a sequence of ASCII characters; if conversion fails, fail serialization.</t>
  <t>If the first character of input_token is not ALPHA or “*”, or the remaining portion contains a character not in tchar, “:” or “/”, fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>Append input_token to output.</t>
  <t>Return output.</t>
</list></t>

</section>
<section anchor="ser-binary" title="Serializing a Byte Sequence">

<t>Given a Byte Sequence as input_bytes, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>If input_bytes is not a sequence of bytes, fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>Append “:” to output.</t>
  <t>Append the result of base64-encoding input_bytes as per <xref target="RFC4648"/>, Section 4, taking account of the requirements below.</t>
  <t>Append “:” to output.</t>
  <t>Return output.</t>
</list></t>

<t>The encoded data is required to be padded with “=”, as per <xref target="RFC4648"/>, Section 3.2.</t>

<t>Likewise, encoded data SHOULD have pad bits set to zero, as per <xref target="RFC4648"/>, Section 3.5, unless it is not possible to do so due to implementation constraints.</t>

</section>
<section anchor="ser-boolean" title="Serializing a Boolean">

<t>Given a Boolean as input_boolean, return an ASCII string suitable for use in a HTTP field value.</t>

<t><list style="numbers">
  <t>If input_boolean is not a boolean, fail serialization.</t>
  <t>Let output be an empty string.</t>
  <t>Append “?” to output.</t>
  <t>If input_boolean is true, append “1” to output.</t>
  <t>If input_boolean is false, append “0” to output.</t>
  <t>Return output.</t>
</list></t>

</section>
</section>
<section anchor="text-parse" title="Parsing Structured Fields">

<t>When a receiving implementation parses HTTP fields that are known to be Structured Fields, it is important that care be taken, as there are a number of edge cases that can cause interoperability or even security problems. This section specifies the algorithm for doing so.</t>

<t>Given an array of bytes input_bytes that represents the chosen field’s field-value (which is empty if that field is not present), and field_type (one of “dictionary”, “list”, or “item”), return the parsed header value.</t>

<t><list style="numbers">
  <t>Convert input_bytes into an ASCII string input_string; if conversion fails, fail parsing.</t>
  <t>Discard any leading SP characters from input_string.</t>
  <t>If field_type is “list”, let output be the result of running Parsing a List (<xref target="parse-list"/>) with input_string.</t>
  <t>If field_type is “dictionary”, let output be the result of running Parsing a Dictionary (<xref target="parse-dictionary"/>) with input_string.</t>
  <t>If field_type is “item”, let output be the result of running Parsing an Item (<xref target="parse-item"/>) with input_string.</t>
  <t>Discard any leading SP characters from input_string.</t>
  <t>If input_string is not empty, fail parsing.</t>
  <t>Otherwise, return output.</t>
</list></t>

<t>When generating input_bytes, parsers MUST combine all lines in the same section (header or trailer) that case-insensitively match the field name into one comma-separated field-value, as per <xref target="RFC7230"/>, Section 3.2.2; this assures that the entire field value is processed correctly.</t>

<t>For Lists and Dictionaries, this has the effect of correctly concatenating all of the field’s lines, as long as individual members of the top-level data structure are not split across multiple header instances.</t>

<t>Strings split across multiple field lines will have unpredictable results, because comma(s) and whitespace inserted upon combination will become part of the string output by the parser. Since concatenation might be done by an upstream intermediary, the results are not under the control of the serializer or the parser.</t>

<t>Tokens, Integers, Decimals and Byte Sequences cannot be split across multiple field lines because the inserted commas will cause parsing to fail.</t>

<t>If parsing fails – including when calling another algorithm – the entire field value MUST be ignored (i.e., treated as if the field were not present in the section). This is intentionally strict, to improve interoperability and safety, and specifications referencing this document are not allowed to loosen this requirement.</t>

<t>Note that this requirement does not apply to an implementation that is not parsing the field; for example, an intermediary is not required to strip a failing header field from a message before forwarding it.</t>

<section anchor="parse-list" title="Parsing a List">

<t>Given an ASCII string as input_string, return an array of (item_or_inner_list, parameters) tuples. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let members be an empty array.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Append the result of running Parsing an Item or Inner List (<xref target="parse-item-or-list"/>) with input_string to members.</t>
      <t>Discard any leading SP characters from input_string.</t>
      <t>If input_string is empty, return members.</t>
      <t>Consume the first character of input_string; if it is not “,”, fail parsing.</t>
      <t>Discard any leading SP characters from input_string.</t>
      <t>If input_string is empty, there is a trailing comma; fail parsing.</t>
    </list></t>
  <t>No structured data has been found; return members (which is empty).</t>
</list></t>

<section anchor="parse-item-or-list" title="Parsing an Item or Inner List">

<t>Given an ASCII string as input_string, return the tuple (item_or_inner_list, parameters), where item_or_inner_list can be either a single bare item, or an array of (bare_item, parameters) tuples. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is “(“, return the result of running Parsing an Inner List (<xref target="parse-innerlist"/>) with input_string.</t>
  <t>Return the result of running Parsing an Item (<xref target="parse-item"/>) with input_string.</t>
</list></t>

</section>
<section anchor="parse-innerlist" title="Parsing an Inner List">

<t>Given an ASCII string as input_string, return the tuple (inner_list, parameters), where inner_list is an array of (bare_item, parameters) tuples. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Consume the first character of input_string; if it is not “(“, fail parsing.</t>
  <t>Let inner_list be an empty array.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Discard any leading SP characters from input_string.</t>
      <t>If the first character of input_string is “)”:
      <list style="numbers">
          <t>Consume the first character of input_string.</t>
          <t>Let parameters be the result of running Parsing Parameters (<xref target="parse-param"/>) with input_string.</t>
          <t>Return the tuple (inner_list, parameters).</t>
        </list></t>
      <t>Let item be the result of running Parsing an Item (<xref target="parse-item"/>) with input_string.</t>
      <t>Append item to inner_list.</t>
      <t>If the first character of input_string is not SP or “)”, fail parsing.</t>
    </list></t>
  <t>The end of the inner list was not found; fail parsing.</t>
</list></t>

</section>
</section>
<section anchor="parse-dictionary" title="Parsing a Dictionary">

<t>Given an ASCII string as input_string, return an ordered map whose values are (item_or_inner_list, parameters) tuples. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let dictionary be an empty, ordered map.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let this_key be the result of running Parsing a Key (<xref target="parse-key"/>) with input_string.</t>
      <t>If the first character of input_string is “=”:
      <list style="numbers">
          <t>Consume the first character of input_string.</t>
          <t>Let member be the result of running Parsing an Item or Inner List (<xref target="parse-item-or-list"/>) with input_string.</t>
        </list></t>
      <t>Otherwise:
      <list style="numbers">
          <t>Let value be Boolean true.</t>
          <t>Let parameters be the result of running Parsing Parameters <xref target="parse-param"/> with input_string.</t>
          <t>Let member be the tuple (value, parameters).</t>
        </list></t>
      <t>Add name this_key with value member to dictionary. If dictionary already contains a name this_key (comparing character-for-character), overwrite its value.</t>
      <t>Discard any leading SP characters from input_string.</t>
      <t>If input_string is empty, return dictionary.</t>
      <t>Consume the first character of input_string; if it is not “,”, fail parsing.</t>
      <t>Discard any leading SP characters from input_string.</t>
      <t>If input_string is empty, there is a trailing comma; fail parsing.</t>
    </list></t>
  <t>No structured data has been found; return dictionary (which is empty).</t>
</list></t>

</section>
<section anchor="parse-item" title="Parsing an Item">

<t>Given an ASCII string as input_string, return a (bare_item, parameters) tuple. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let bare_item be the result of running Parsing a Bare Item (<xref target="parse-bare-item"/>) with input_string.</t>
  <t>Let parameters be the result of running Parsing Parameters (<xref target="parse-param"/>) with input_string.</t>
  <t>Return the tuple (bare_item, parameters).</t>
</list></t>

<section anchor="parse-bare-item" title="Parsing a Bare Item">

<t>Given an ASCII string as input_string, return a bare Item. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is a “-“ or a DIGIT, return the result of running Parsing an Integer or Decimal (<xref target="parse-number"/>) with input_string.</t>
  <t>If the first character of input_string is a DQUOTE, return the result of running Parsing a String (<xref target="parse-string"/>) with input_string.</t>
  <t>If the first character of input_string is “:”, return the result of running Parsing a Byte Sequence (<xref target="parse-binary"/>) with input_string.</t>
  <t>If the first character of input_string is “?”, return the result of running Parsing a Boolean (<xref target="parse-boolean"/>) with input_string.</t>
  <t>If the first character of input_string is an ALPHA or “*”, return the result of running Parsing a Token (<xref target="parse-token"/>) with input_string.</t>
  <t>Otherwise, the item type is unrecognized; fail parsing.</t>
</list></t>

</section>
<section anchor="parse-param" title="Parsing Parameters">

<t>Given an ASCII string as input_string, return an ordered map whose values are bare Items. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let parameters be an empty, ordered map.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>If the first character of input_string is not “;”, exit the loop.</t>
      <t>Consume a “;” character from the beginning of input_string.</t>
      <t>Discard any leading SP characters from input_string.</t>
      <t>let param_name be the result of running Parsing a Key (<xref target="parse-key"/>) with input_string.</t>
      <t>Let param_value be Boolean true.</t>
      <t>If the first character of input_string is “=”:
      <list style="numbers">
          <t>Consume the “=” character at the beginning of input_string.</t>
          <t>Let param_value be the result of running Parsing a Bare Item (<xref target="parse-bare-item"/>) with input_string.</t>
        </list></t>
      <t>Append key param_name with value param_value to parameters. If parameters already contains a name param_name (comparing character-for-character), overwrite its value.</t>
    </list></t>
  <t>Return parameters.</t>
</list></t>

</section>
<section anchor="parse-key" title="Parsing a Key">

<t>Given an ASCII string as input_string, return a key. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not lcalpha or “*”, fail parsing.</t>
  <t>Let output_string be an empty string.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>If the first character of input_string is not one of lcalpha, DIGIT, “_”, “-“, “.”, or “*”, return output_string.</t>
      <t>Let char be the result of consuming the first character of input_string.</t>
      <t>Append char to output_string.</t>
    </list></t>
  <t>Return output_string.</t>
</list></t>

</section>
</section>
<section anchor="parse-number" title="Parsing an Integer or Decimal">

<t>Given an ASCII string as input_string, return an Integer or Decimal. input_string is modified to remove the parsed value.</t>

<t>NOTE: This algorithm parses both Integers (<xref target="integer"/>) and Decimals (<xref target="decimal"/>), and returns the corresponding structure.</t>

<t><list style="numbers">
  <t>Let type be “integer”.</t>
  <t>Let sign be 1.</t>
  <t>Let input_number be an empty string.</t>
  <t>If the first character of input_string is “-“, consume it and set sign to -1.</t>
  <t>If input_string is empty, there is an empty integer; fail parsing.</t>
  <t>If the first character of input_string is not a DIGIT, fail parsing.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let char be the result of consuming the first character of input_string.</t>
      <t>If char is a DIGIT, append it to input_number.</t>
      <t>Else, if type is “integer” and char is “.”:
      <list style="numbers">
          <t>If input_number contains more than 12 characters, fail parsing.</t>
          <t>Otherwise, append char to input_number and set type to “decimal”.</t>
        </list></t>
      <t>Otherwise, prepend char to input_string, and exit the loop.</t>
      <t>If type is “integer” and input_number contains more than 15 characters, fail parsing.</t>
      <t>If type is “decimal” and input_number contains more than 16 characters, fail parsing.</t>
    </list></t>
  <t>If type is “integer”:
  <list style="numbers">
      <t>Parse input_number as an integer and let output_number be the product of the result and sign.</t>
      <t>If output_number is outside the range -999,999,999,999,999 to 999,999,999,999,999 inclusive, fail parsing.</t>
    </list></t>
  <t>Otherwise:
  <list style="numbers">
      <t>If the final character of input_number is “.”, fail parsing.</t>
      <t>If the number of characters after “.” in input_number is greater than three, fail parsing.</t>
      <t>Parse input_number as a decimal number and let output_number be the product of the result and sign.</t>
    </list></t>
  <t>Return output_number.</t>
</list></t>

</section>
<section anchor="parse-string" title="Parsing a String">

<t>Given an ASCII string as input_string, return an unquoted String. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let output_string be an empty string.</t>
  <t>If the first character of input_string is not DQUOTE, fail parsing.</t>
  <t>Discard the first character of input_string.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let char be the result of consuming the first character of input_string.</t>
      <t>If char is a backslash (“\”):
      <list style="numbers">
          <t>If input_string is now empty, fail parsing.</t>
          <t>Let next_char be the result of consuming the first character of input_string.</t>
          <t>If next_char is not DQUOTE or “\”, fail parsing.</t>
          <t>Append next_char to output_string.</t>
        </list></t>
      <t>Else, if char is DQUOTE, return output_string.</t>
      <t>Else, if char is in the range %x00-1f or %x7f (i.e., is not in VCHAR or SP), fail parsing.</t>
      <t>Else, append char to output_string.</t>
    </list></t>
  <t>Reached the end of input_string without finding a closing DQUOTE; fail parsing.</t>
</list></t>

</section>
<section anchor="parse-token" title="Parsing a Token">

<t>Given an ASCII string as input_string, return a Token. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not ALPHA or “*”, fail parsing.</t>
  <t>Let output_string be an empty string.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>If the first character of input_string is not in tchar, “:” or “/”, return output_string.</t>
      <t>Let char be the result of consuming the first character of input_string.</t>
      <t>Append char to output_string.</t>
    </list></t>
  <t>Return output_string.</t>
</list></t>

</section>
<section anchor="parse-binary" title="Parsing a Byte Sequence">

<t>Given an ASCII string as input_string, return a Byte Sequence. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not “:”, fail parsing.</t>
  <t>Discard the first character of input_string.</t>
  <t>If there is not a “:” character before the end of input_string, fail parsing.</t>
  <t>Let b64_content be the result of consuming content of input_string up to but not including the first instance of the character “:”.</t>
  <t>Consume the “:” character at the beginning of input_string.</t>
  <t>If b64_content contains a character not included in ALPHA, DIGIT, “+”, “/” and “=”, fail parsing.</t>
  <t>Let binary_content be the result of Base 64 Decoding <xref target="RFC4648"/> b64_content, synthesizing padding if necessary (note the requirements about recipient behavior below).</t>
  <t>Return binary_content.</t>
</list></t>

<t>Because some implementations of base64 do not allow reject of encoded data that is not properly “=” padded (see <xref target="RFC4648"/>, Section 3.2), parsers SHOULD NOT fail when it is not present, unless they cannot be configured to do so.</t>

<t>Because some implementations of base64 do not allow rejection of encoded data that has non-zero pad bits (see <xref target="RFC4648"/>, Section 3.5), parsers SHOULD NOT fail when it is present, unless they cannot be configured to do so.</t>

<t>This specification does not relax the requirements in <xref target="RFC4648"/>, Section 3.1 and 3.3; therefore, parsers MUST fail on characters outside the base64 alphabet, and on line feeds in encoded data.</t>

</section>
<section anchor="parse-boolean" title="Parsing a Boolean">

<t>Given an ASCII string as input_string, return a Boolean. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not “?”, fail parsing.</t>
  <t>Discard the first character of input_string.</t>
  <t>If the first character of input_string matches “1”, discard the first character, and return true.</t>
  <t>If the first character of input_string matches “0”, discard the first character, and return false.</t>
  <t>No value has matched; fail parsing.</t>
</list></t>

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

<t>This document has no actions for IANA.</t>

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

<t>The size of most types defined by Structured Fields is not limited; as a result, extremely large fields could be an attack vector (e.g., for resource consumption). Most HTTP implementations limit the sizes of individual fields as well as the overall header or trailer section size to mitigate such attacks.</t>

<t>It is possible for parties with the ability to inject new HTTP fields to change the meaning
of a Structured Field. In some circumstances, this will cause parsing to fail, but it is not possible to reliably fail in all such circumstances.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC7230" target='https://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



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



<reference  anchor="RFC5234" target='https://www.rfc-editor.org/info/rfc5234'>
<front>
<title>Augmented BNF for Syntax Specifications: ABNF</title>
<author initials='D.' surname='Crocker' fullname='D. Crocker' role='editor'><organization /></author>
<author initials='P.' surname='Overell' fullname='P. Overell'><organization /></author>
<date year='2008' month='January' />
<abstract><t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='68'/>
<seriesInfo name='RFC' value='5234'/>
<seriesInfo name='DOI' value='10.17487/RFC5234'/>
</reference>



<reference  anchor="RFC0020" target='https://www.rfc-editor.org/info/rfc20'>
<front>
<title>ASCII format for network interchange</title>
<author initials='V.G.' surname='Cerf' fullname='V.G. Cerf'><organization /></author>
<date year='1969' month='October' />
</front>
<seriesInfo name='STD' value='80'/>
<seriesInfo name='RFC' value='20'/>
<seriesInfo name='DOI' value='10.17487/RFC0020'/>
</reference>



<reference  anchor="RFC4648" target='https://www.rfc-editor.org/info/rfc4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author initials='S.' surname='Josefsson' fullname='S. Josefsson'><organization /></author>
<date year='2006' month='October' />
<abstract><t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4648'/>
<seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="IEEE754" target="https://ieeexplore.ieee.org/document/8766229">
  <front>
    <title>IEEE Standard for Floating-Point Arithmetic</title>
    <author >
      <organization>IEEE</organization>
    </author>
    <date year="2019" month="July"/>
  </front>
  <seriesInfo name="IEEE" value="754-2019"/>
  <seriesInfo name="DOI" value="10.1109/IEEESTD.2019.8766229"/>
  <seriesInfo name="ISBN" value="978-1-5044-5924-2"/>
</reference>
<reference anchor="UTF-8" target="http://www.rfc-editor.org/info/std63">
  <front>
    <title>UTF-8, a transformation format of ISO 10646</title>
    <author initials="F." surname="Yergeau" fullname="F. Yergeau">
      <organization></organization>
    </author>
    <date year="2003" month="November"/>
  </front>
  <seriesInfo name="STD" value="63"/>
  <seriesInfo name="RFC" value="3629"/>
  <seriesInfo name="DOI" value="10.17487/RFC3629"/>
</reference>




<reference  anchor="RFC7231" target='https://www.rfc-editor.org/info/rfc7231'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract>
</front>
<seriesInfo name='RFC' value='7231'/>
<seriesInfo name='DOI' value='10.17487/RFC7231'/>
</reference>



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



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



<reference  anchor="RFC8259" target='https://www.rfc-editor.org/info/rfc8259'>
<front>
<title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
<author initials='T.' surname='Bray' fullname='T. Bray' role='editor'><organization /></author>
<date year='2017' month='December' />
<abstract><t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t><t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t></abstract>
</front>
<seriesInfo name='STD' value='90'/>
<seriesInfo name='RFC' value='8259'/>
<seriesInfo name='DOI' value='10.17487/RFC8259'/>
</reference>



<reference  anchor="RFC7493" target='https://www.rfc-editor.org/info/rfc7493'>
<front>
<title>The I-JSON Message Format</title>
<author initials='T.' surname='Bray' fullname='T. Bray' role='editor'><organization /></author>
<date year='2015' month='March' />
<abstract><t>I-JSON (short for &quot;Internet JSON&quot;) is a restricted profile of JSON designed to maximize interoperability and increase confidence that software can process it successfully with predictable results.</t></abstract>
</front>
<seriesInfo name='RFC' value='7493'/>
<seriesInfo name='DOI' value='10.17487/RFC7493'/>
</reference>




    </references>


<section anchor="faq" title="Frequently Asked Questions">

<section anchor="why-not-json" title="Why not JSON?">

<t>Earlier proposals for Structured Fields were based upon JSON <xref target="RFC8259"/>. However, constraining its use to make it suitable for HTTP header fields required senders and recipients to implement specific additional handling.</t>

<t>For example, JSON has specification issues around large numbers and objects with duplicate members. Although advice for avoiding these issues is available (e.g., <xref target="RFC7493"/>), it cannot be relied upon.</t>

<t>Likewise, JSON strings are by default Unicode strings, which have a number of potential interoperability issues (e.g., in comparison). Although implementers can be advised to avoid non-ASCII content where unnecessary, this is difficult to enforce.</t>

<t>Another example is JSON’s ability to nest content to arbitrary depths. Since the resulting memory commitment might be unsuitable (e.g., in embedded and other limited server deployments), it’s necessary to limit it in some fashion; however, existing JSON implementations have no such limits, and even if a limit is specified, it’s likely that some field definition will find a need to violate it.</t>

<t>Because of JSON’s broad adoption and implementation, it is difficult to impose such additional constraints across all implementations; some deployments would fail to enforce them, thereby harming interoperability. In short, if it looks like JSON, people will be tempted to use a JSON parser / serializer on field values.</t>

<t>Since a major goal for Structured Fields is to improve interoperability and simplify implementation, these concerns led to a format that requires a dedicated parser and serializer.</t>

<t>Additionally, there were widely shared feelings that JSON doesn’t “look right” in HTTP fields.</t>

</section>
</section>
<section anchor="implementation-notes" title="Implementation Notes">

<t>A generic implementation of this specification should expose the top-level serialize (<xref target="text-serialize"/>) and parse (<xref target="text-parse"/>) functions. They need not be functions; for example, it could be implemented as an object, with methods for each of the different top-level types.</t>

<t>For interoperability, it’s important that generic implementations be complete and follow the algorithms closely; see <xref target="strict"/>. To aid this, a common test suite is being maintained by the community at <eref target="https://github.com/httpwg/structured-header-tests">https://github.com/httpwg/structured-header-tests</eref>.</t>

<t>Implementers should note that Dictionaries and Parameters are order-preserving maps. Some fields may not convey meaning in the ordering of these data types, but it should still be exposed so that applications which need to use it will have it available.</t>

<t>Likewise, implementations should note that it’s important to preserve the distinction between Tokens and Strings. While most programming languages have native types that map to the other types well, it may be necessary to create a wrapper “token” object or use a parameter on functions to assure that these types remain separate.</t>

<t>The serialization algorithm is defined in a way that it is not strictly limited to the data types defined in <xref target="types"/> in every case. For example, Decimals are designed to take broader input and round to allowed values.</t>

</section>
<section anchor="changes" title="Changes">

<t><spanx style="emph">RFC Editor: Please remove this section before publication.</spanx></t>

<section anchor="since-draft-ietf-httpbis-header-structure-15" title="Since draft-ietf-httpbis-header-structure-15">

<t><list style="symbols">
  <t>Editorial improvements.</t>
  <t>Use HTTP field terminology more consistently, in line with recent changes to HTTP-core.</t>
  <t>String length requirements apply to decoded strings (#1051).</t>
  <t>Correctly round decimals in serialisation (#1043).</t>
  <t>Clarify input to serialisation algorithms (#1055).</t>
  <t>Omitted True dictionary value can have parameters (#1083).</t>
  <t>Keys can now start with ‘*’ (#1068).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-14" title="Since draft-ietf-httpbis-header-structure-14">

<t><list style="symbols">
  <t>Editorial improvements.</t>
  <t>Allow empty dictionary values (#992).</t>
  <t>Change value of omitted parameter value to True (#995).</t>
  <t>Explain more about splitting dictionaries and lists across header instances (#997).</t>
  <t>Disallow HTAB, replace OWS with spaces (#998).</t>
  <t>Change byte sequence delimiters from “*” to “:” (#991).</t>
  <t>Allow tokens to start with “*” (#991).</t>
  <t>Change Floats to fixed-precision Decimals (#982).</t>
  <t>Round the fractional component of decimal, rather than truncating it (#982).</t>
  <t>Handle duplicate dictionary and parameter keys by overwriting their values, rather than failing (#997).</t>
  <t>Allow “.” in key (#1027).</t>
  <t>Check first character of key in serialisation (#1037).</t>
  <t>Talk about greasing headers (#1015).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-13" title="Since draft-ietf-httpbis-header-structure-13">

<t><list style="symbols">
  <t>Editorial improvements.</t>
  <t>Define “structured header name” and “structured header value” terms (#908).</t>
  <t>Corrected text about valid characters in strings (#931).</t>
  <t>Removed most instances of the word “textual”, as it was redundant (#915).</t>
  <t>Allowed parameters on Items and Inner Lists (#907).</t>
  <t>Expand the range of characters in token (#961).</t>
  <t>Disallow OWS before “;” delimiter in parameters (#961).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-12" title="Since draft-ietf-httpbis-header-structure-12">

<t><list style="symbols">
  <t>Editorial improvements.</t>
  <t>Reworked float serialisation (#896).</t>
  <t>Don’t add a trailing space in inner-list (#904).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-11" title="Since draft-ietf-httpbis-header-structure-11">

<t><list style="symbols">
  <t>Allow * in key (#844).</t>
  <t>Constrain floats to six digits of precision (#848).</t>
  <t>Allow dictionary members to have parameters (#842).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-10" title="Since draft-ietf-httpbis-header-structure-10">

<t><list style="symbols">
  <t>Update abstract (#799).</t>
  <t>Input and output are now arrays of bytes (#662).</t>
  <t>Implementations need to preserve difference between token and string (#790).</t>
  <t>Allow empty dictionaries and lists (#781).</t>
  <t>Change parameterized lists to have primary items (#797).</t>
  <t>Allow inner lists in both dictionaries and lists; removes lists of lists (#816).</t>
  <t>Subsume Parameterised Lists into Lists (#839).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-09" title="Since draft-ietf-httpbis-header-structure-09">

<t><list style="symbols">
  <t>Changed Boolean from T/F to 1/0 (#784).</t>
  <t>Parameters are now ordered maps (#765).</t>
  <t>Clamp integers to 15 digits (#737).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-08" title="Since draft-ietf-httpbis-header-structure-08">

<t><list style="symbols">
  <t>Disallow whitespace before items properly (#703).</t>
  <t>Created “key” for use in dictionaries and parameters, rather than relying on identifier (#702). Identifiers have a separate minimum supported size.</t>
  <t>Expanded the range of special characters allowed in identifier to include all of ALPHA, “.”, “:”, and “%” (#702).</t>
  <t>Use “?” instead of “!” to indicate a Boolean (#719).</t>
  <t>Added “Intentionally Strict Processing” (#684).</t>
  <t>Gave better names for referring specs to use in Parameterised Lists (#720).</t>
  <t>Added Lists of Lists (#721).</t>
  <t>Rename Identifier to Token (#725).</t>
  <t>Add implementation guidance (#727).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-07" title="Since draft-ietf-httpbis-header-structure-07">

<t><list style="symbols">
  <t>Make Dictionaries ordered mappings (#659).</t>
  <t>Changed “binary content” to “byte sequence” to align with Infra specification (#671).</t>
  <t>Changed “mapping” to “map” for #671.</t>
  <t>Don’t fail if byte sequences aren’t “=” padded (#658).</t>
  <t>Add Booleans (#683).</t>
  <t>Allow identifiers in items again (#629).</t>
  <t>Disallowed whitespace before items (#703).</t>
  <t>Explain the consequences of splitting a string across multiple headers (#686).</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-06" title="Since draft-ietf-httpbis-header-structure-06">

<t><list style="symbols">
  <t>Add a FAQ.</t>
  <t>Allow non-zero pad bits.</t>
  <t>Explicitly check for integers that violate constraints.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-05" title="Since draft-ietf-httpbis-header-structure-05">

<t><list style="symbols">
  <t>Reorganise specification to separate parsing out.</t>
  <t>Allow referencing specs to use ABNF.</t>
  <t>Define serialisation algorithms.</t>
  <t>Refine relationship between ABNF, parsing and serialisation algorithms.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-04" title="Since draft-ietf-httpbis-header-structure-04">

<t><list style="symbols">
  <t>Remove identifiers from item.</t>
  <t>Remove most limits on sizes.</t>
  <t>Refine number parsing.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-03" title="Since draft-ietf-httpbis-header-structure-03">

<t><list style="symbols">
  <t>Strengthen language around failure handling.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-02" title="Since draft-ietf-httpbis-header-structure-02">

<t><list style="symbols">
  <t>Split Numbers into Integers and Floats.</t>
  <t>Define number parsing.</t>
  <t>Tighten up binary parsing and give it an explicit end delimiter.</t>
  <t>Clarify that mappings are unordered.</t>
  <t>Allow zero-length strings.</t>
  <t>Improve string parsing algorithm.</t>
  <t>Improve limits in algorithms.</t>
  <t>Require parsers to combine header fields before processing.</t>
  <t>Throw an error on trailing garbage.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-01" title="Since draft-ietf-httpbis-header-structure-01">

<t><list style="symbols">
  <t>Replaced with draft-nottingham-structured-headers.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-00" title="Since draft-ietf-httpbis-header-structure-00">

<t><list style="symbols">
  <t>Added signed 64bit integer type.</t>
  <t>Drop UTF8, and settle on BCP137 ::EmbeddedUnicodeChar for h1-unicode-string.</t>
  <t>Change h1_blob delimiter to “:” since “’” is valid t_char</t>
</list></t>

</section>
</section>
<section numbered="false" anchor="acknowledgements" title="Acknowledgements">

<t>Many thanks to Matthew Kerwin for his detailed feedback and careful consideration during the development of this specification.</t>

<t>Thanks also to Ian Clelland, Roy Fielding, Anne van Kesteren, Kazuho Oku, Evert Pot, Julian Reschke, Martin Thomson, Mike West, and Jeffrey Yasskin for their contributions.</t>

</section>


  </back>

<!-- ##markdown-source:
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
y/tbXJZXsmwOo1Az12S05DOmzv8CfwTv1VLYAAA=

-->

</rfc>

