HTTP Working Group | M. Nottingham |
Internet-Draft | Fastly |
Intended status: Standards Track | P-H. Kamp |
Expires: May 2, 2020 | The Varnish Cache Project |
October 30, 2019 |
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 fields. It is intended for use by specifications of new HTTP header fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.¶
RFC EDITOR: please remove this section before publication ¶
Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at https://lists.w3.org/Archives/Public/ietf-http-wg/.¶
Working Group information can be found at https://httpwg.github.io/; source code and issues list for this draft can be found at https://github.com/httpwg/http-extensions/labels/header-structure.¶
Tests for implementations are collected at https://github.com/httpwg/structured-header-tests.¶
Implementations are tracked at https://github.com/httpwg/wiki/wiki/Structured-Headers.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work in progress”.¶
This Internet-Draft will expire on May 2, 2020.¶
Copyright (c) 2019 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
Specifying the syntax of new HTTP header fields is an onerous task; even with the guidance in Section 8.3.1 of [RFC7231], there are many decisions – and pitfalls – for a prospective HTTP header field author.¶
Once a header field is defined, bespoke parsers and serializers often need to be written, because each header has slightly different handling of what looks like common syntax.¶
This document introduces a set of common data structures for use in definitions of new HTTP header field values to address these problems. In particular, it defines a generic, abstract model for header field values, along with a concrete serialisation for expressing that model in HTTP [RFC7230] header fields.¶
HTTP headers that are defined as “Structured Headers” use the types defined in this specification to define their syntax and basic handling rules, thereby simplifying both their definition by specification writers and handling by implementations.¶
Additionally, future versions of HTTP can define alternative serialisations of the abstract model of these structures, allowing headers that use it to be transmitted more efficiently without being redefined.¶
Note that it is not a goal of this document to redefine the syntax of existing HTTP headers; the mechanisms described herein are only intended to be used with headers that explicitly opt into them.¶
Section 3 defines a number of abstract data types that can be used in Structured Headers. Those abstract types can be serialized into and parsed from HTTP headers using the algorithms described in Section 4.¶
This specification intentionally defines strict parsing and serialisation behaviours using step-by-step algorithms; the only error handling defined is to fail the operation altogether.¶
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.¶
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.¶
Note that as a result of this strictness, if a header 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 header field to fail parsing.¶
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 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
This document uses algorithms to specify parsing and serialisation behaviours, and the Augmented Backus-Naur Form (ABNF) notation of [RFC5234] to illustrate expected syntax in HTTP header fields. In doing so, uses the VCHAR, SP, DIGIT, ALPHA and DQUOTE rules from [RFC5234]. It also includes the OWS and tchar rules from [RFC7230].¶
When parsing from HTTP header fields, implementations MUST follow the algorithms, but MAY vary in implementation so as the behaviours are indistinguishable from specified behaviour. 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.¶
For serialisation to header 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 behaviour so long as the output still matches the ABNF.¶
To specify a HTTP header as a structured header, its authors needs to:¶
Typically, this means that a header definition will specify the top-level type – Dictionary, List 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”.¶
When Structured Headers parsing fails, the header is ignored (see Section 4.2); in most situations, violating header-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 header requires different error handling, this should be explicitly specified.¶
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, header specifications are discouraged from defining the presence of an unrecognised parameter as an error condition.¶
Conversely, inner lists are only valid when a header definition explicitly allows them.¶
Note that a header 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 floats, the format of strings and tokens, the types allowed in a dictionary’s values, or the number of items in a list). Likewise, header field definitions can only use Structured Headers for the entire header field value, not a portion thereof.¶
This specification defines minimums for the length or number of various structures supported by Structured Headers implementations. It does not specify maximum sizes in most cases, but header authors should be aware that HTTP implementations do impose various limits on the size of individual header fields, the total number of fields, and/or the size of the entire header block.¶
Specifications can refer to a Structured Header’s field-name as a “structured header name” and its field-value as a “structured header value” as necessary. Header 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.¶
For example, a fictitious Foo-Example header field might be specified as:¶
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 URLs for the message. See below for processing requirements. "fooUrl" contains a URI-reference (Section 4.1 of [RFC3986], Section 4.1). If its value is not a valid URI-reference, that URL 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/"
This section defines the abstract value types that can be composed into Structured Headers. The ABNF provided represents the on-wire format in HTTP headers.¶
In summary:¶
Lists are arrays of zero or more members, each of which can be an item (Section 3.3) or an inner list (Section 3.1.1), both of which can be parameterised (Section 3.1.2).¶
The ABNF for lists in HTTP headers is:¶
sh-list = list-member *( OWS "," OWS list-member ) list-member = sh-item / inner-list
In HTTP headers, each member is separated by a comma and optional whitespace. For example, a header field whose value is defined as a list of strings could look like:¶
Example-StrListHeader: "foo", "bar", "It was the best of times."
In HTTP headers, an empty list is denoted by not serialising the header at all.¶
Parsers MUST support lists containing at least 1024 members. Header specifications can constrain the types and cardinality of individual list values as they require.¶
An inner list is an array of zero or more items (Section 3.3). Both the individual items and the inner-list itself can be parameterised (Section 3.1.2).¶
The ABNF for inner-lists in HTTP headers is:¶
inner-list = "(" OWS [ sh-item *( SP OWS sh-item ) OWS ] ")" *parameter
In HTTP headers, inner lists are denoted by surrounding parenthesis, and have their values delimited by a single space. A header field whose value is defined as a list of inner-lists of strings could look like:¶
Example-StrListListHeader: ("foo" "bar"), ("baz"), ("bat" "one"), ()
Note that the last member in this example is an empty inner list.¶
A header field whose value is defined as a list of inner-lists with parameters at both levels could look like:¶
Example-ListListParam: ("foo"; a=1;b=2);lvl=5, ("bar", "baz");lvl=1
Parsers MUST support inner-lists containing at least 256 members. Header specifications can constrain the types and cardinality of individual inner-list members as they require.¶
Parameters are an ordered map of key-values pairs that are associated with an item (Section 3.3) or inner-list (Section 3.1.1). The keys are required to be unique within the scope of a map of parameters, and the values are bare items (i.e., they themselves cannot be parameterised; see Section 3.3).¶
The ABNF for parameters in HTTP headers is:¶
parameter = ";" OWS param-name [ "=" param-value ] param-name = key key = lcalpha *( lcalpha / DIGIT / "_" / "-" / "*" ) lcalpha = %x61-7A ; a-z param-value = bare-item
In HTTP headers, parameters are separated from their item or inner-list and each other by semicolons. For example:¶
Example-ParamListHeader: abc;a=1;b=2; cde_456, (ghi;jk=4 l);q="9";r=w
Parsers MUST support at least 256 parameters on an item or inner-list, and support parameter keys with at least 64 characters. Header specifications can constrain the types and cardinality of individual parameter names and values as they require.¶
Dictionaries are ordered maps of name-value pairs, where the names are short, textual strings and the values are items (Section 3.3) or arrays of items, both of which can be parameterised (Section 3.1.2). There can be zero or more members, and their names are required to be unique within the scope of the dictionary they occur within.¶
Implementations MUST provide access to dictionaries both by index and by name. Specifications MAY use either means of accessing the members.¶
The ABNF for dictionaries in HTTP headers is:¶
sh-dictionary = dict-member *( OWS "," OWS dict-member ) dict-member = member-name "=" member-value member-name = key member-value = sh-item / inner-list
In HTTP headers, members are separated by a comma with optional whitespace, while names and values are separated by “=” (without whitespace). For example:¶
Example-DictHeader: en="Applepie", da=*w4ZibGV0w6ZydGU=*
A dictionary with a member whose value is an inner-list of tokens:¶
Example-DictListHeader: rating=1.5, feelings=(joy sadness)
A dictionary with a mix of singular and list values, some with parameters:¶
Example-MixDict: a=(1 2), b=3, c=4;aa=bb, d=(5 6);valid=?1
As with lists, an empty dictionary is represented in HTTP headers by omitting the entire header field.¶
Typically, a header 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 header field’s specification specifically disallows them.¶
Parsers MUST support dictionaries containing at least 1024 name/value pairs, and names with at least 64 characters.¶
An item is can be a integer (Section 3.3.1), float (Section 3.3.2), string (Section 3.3.3), token (Section 3.3.4), byte sequence (Section 3.3.5), or Boolean (Section 3.3.6). It can have associated parameters (Section 3.1.2).¶
The ABNF for items in HTTP headers is:¶
sh-item = bare-item *parameter bare-item = sh-integer / sh-float / sh-string / sh-token / sh-binary / sh-boolean
For example, a header field that is defined to be an Item that is an integer might look like:¶
Example-IntItemHeader: 5
or with parameters:¶
Example-IntItemHeader: 5; foo=bar
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 ([IEEE754]).¶
The ABNF for integers in HTTP headers is:¶
sh-integer = ["-"] 1*15DIGIT
For example:¶
Example-IntegerHeader: 42
Note that commas in integers are used in this section’s prose only for readability; they are not valid in the wire format.¶
Floats are decimal numbers with an integer and a fractional component. The fractional component has at most six digits of precision. Additionally, like integers, it can have no more than fifteen digits in total, which in some cases further constrains its precision.¶
The ABNF for floats in HTTP headers is:¶
sh-float = ["-"] (1*9DIGIT "." 1*6DIGIT / 10DIGIT "." 1*5DIGIT / 11DIGIT "." 1*4DIGIT / 12DIGIT "." 1*3DIGIT / 13DIGIT "." 1*2DIGIT / 14DIGIT "." 1DIGIT )
For example, a header whose value is defined as a float could look like:¶
Example-FloatHeader: 4.5
Strings are zero or more printable ASCII [RFC0020] characters (i.e., the range %x20 to %x7E). Note that this excludes tabs, newlines, carriage returns, etc.¶
The ABNF for strings in HTTP headers is:¶
sh-string = DQUOTE *(chr) DQUOTE chr = unescaped / escaped unescaped = %x20-21 / %x23-5B / %x5D-7E escaped = "\" ( DQUOTE / "\" )
In HTTP headers, strings are delimited with double quotes, using a backslash (“\”) to escape double quotes and backslashes. For example:¶
Example-StringHeader: "hello world"
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.¶
Unicode is not directly supported in strings, because it causes a number of interoperability issues, and – with few exceptions – header values do not require it.¶
When it is necessary for a field value to convey non-ASCII content, a byte sequence (Section 3.3.5) SHOULD be specified, along with a character encoding (preferably [UTF-8]).¶
Parsers MUST support strings with at least 1024 characters.¶
Tokens are short textual words; their abstract model is identical to their expression in the HTTP header serialisation.¶
The ABNF for tokens in HTTP headers is:¶
sh-token = ALPHA *( tchar / ":" / "/" )
Parsers MUST support tokens with at least 512 characters.¶
Byte sequences can be conveyed in Structured Headers.¶
The ABNF for a byte sequence in HTTP headers is:¶
sh-binary = "*" *(base64) "*" base64 = ALPHA / DIGIT / "+" / "/" / "="
In HTTP headers, a byte sequence is delimited with asterisks and encoded using base64 ([RFC4648], Section 4). For example:¶
Example-BinaryHdr: *cHJldGVuZCB0aGlzIGlzIGJpbmFyeSBjb250ZW50Lg==*
Parsers MUST support byte sequences with at least 16384 octets after decoding.¶
Boolean values can be conveyed in Structured Headers.¶
The ABNF for a Boolean in HTTP headers is:¶
sh-boolean = "?" boolean boolean = "0" / "1"
In HTTP headers, a boolean is indicated with a leading “?” character followed by a “1” for a true value or “0” for false. For example:¶
Example-BoolHdr: ?1
This section defines how to serialize and parse Structured Headers in header fields, and protocols compatible with them (e.g., in HTTP/2 [RFC7540] before HPACK [RFC7541] is applied).¶
Given a structure defined in this specification, return an ASCII string suitable for use in a HTTP header value.¶
Given an array of (member-value, parameters) tuples as input_list, return an ASCII string suitable for use in a HTTP header value.¶
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 header value.¶
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 header value.¶
Given a key as input_key, return an ASCII string suitable for use in a HTTP header value.¶
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 header value.¶
Given an item bare_item and parameters item_parameters as input, return an ASCII string suitable for use in a HTTP header value.¶
Given an item as input_item, return an ASCII string suitable for use in a HTTP header value.¶
Given an integer as input_integer, return an ASCII string suitable for use in a HTTP header value.¶
Given a float as input_float, return an ASCII string suitable for use in a HTTP header value.¶
Given a string as input_string, return an ASCII string suitable for use in a HTTP header value.¶
Given a token as input_token, return an ASCII string suitable for use in a HTTP header value.¶
Given a byte sequence as input_bytes, return an ASCII string suitable for use in a HTTP header value.¶
The encoded data is required to be padded with “=”, as per [RFC4648], Section 3.2.¶
Likewise, encoded data SHOULD have pad bits set to zero, as per [RFC4648], Section 3.5, unless it is not possible to do so due to implementation constraints.¶
Given a Boolean as input_boolean, return an ASCII string suitable for use in a HTTP header value.¶
When a receiving implementation parses HTTP header fields that are known to be Structured Headers, 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.¶
Given an array of bytes input_bytes that represents the chosen header’s field-value (which is empty if that header is not present), and header_type (one of “dictionary”, “list”, or “item”), return the parsed header value.¶
When generating input_bytes, parsers MUST combine all instances of the target header field into one comma-separated field-value, as per [RFC7230], Section 3.2.2; this assures that the header is processed correctly.¶
For Lists and Dictionaries, this has the effect of correctly concatenating all instances of the header field, as long as individual individual members of the top-level data structure are not split across multiple header instances.¶
Strings split across multiple header instances 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.¶
Tokens, Integers, Floats and Byte Sequences cannot be split across multiple headers because the inserted commas will cause parsing to fail.¶
If parsing fails – including when calling another algorithm – the entire header field’s value MUST be ignored (i.e., treated as if the header field were not present in the message). This is intentionally strict, to improve interoperability and safety, and specifications referencing this document are not allowed to loosen this requirement.¶
Note that this requirement does not apply to an implementation that is not parsing the header field; for example, an intermediary is not required to strip a failing header field from a message before forwarding it.¶
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.¶
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.¶
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.¶
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.¶
Given an ASCII string as input_string, return a (bare_item, parameters) tuple. input_string is modified to remove the parsed value.¶
Given an ASCII string as input_string, return a bare item. input_string is modified to remove the parsed value.¶
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.¶
Given an ASCII string as input_string, return a key. input_string is modified to remove the parsed value.¶
Given an ASCII string as input_string, return a number. input_string is modified to remove the parsed value.¶
NOTE: This algorithm parses both Integers (Section 3.3.1) and Floats (Section 3.3.2), and returns the corresponding structure.¶
Given an ASCII string as input_string, return an unquoted string. input_string is modified to remove the parsed value.¶
Given an ASCII string as input_string, return a token. input_string is modified to remove the parsed value.¶
Given an ASCII string as input_string, return a byte sequence. input_string is modified to remove the parsed value.¶
Because some implementations of base64 do not allow reject of encoded data that is not properly “=” padded (see [RFC4648], Section 3.2), parsers SHOULD NOT fail when it is not present, unless they cannot be configured to do so.¶
Because some implementations of base64 do not allow rejection of encoded data that has non-zero pad bits (see [RFC4648], Section 3.5), parsers SHOULD NOT fail when it is present, unless they cannot be configured to do so.¶
Given an ASCII string as input_string, return a Boolean. input_string is modified to remove the parsed value.¶
This draft has no actions for IANA.¶
The size of most types defined by Structured Headers is not limited; as a result, extremely large header fields could be an attack vector (e.g., for resource consumption). Most HTTP implementations limit the sizes of individual header fields as well as the overall header block size to mitigate such attacks.¶
It is possible for parties with the ability to inject new HTTP header fields to change the meaning of a Structured Header. In some circumstances, this will cause parsing to fail, but it is not possible to reliably fail in all such circumstances.¶
Many thanks to Matthew Kerwin for his detailed feedback and careful consideration during the development of this specification.¶
Earlier proposals for structured headers were based upon JSON [RFC8259]. However, constraining its use to make it suitable for HTTP header fields required senders and recipients to implement specific additional handling.¶
For example, JSON has specification issues around large numbers and objects with duplicate members. Although advice for avoiding these issues is available (e.g., [RFC7493]), it cannot be relied upon.¶
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.¶
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 header field definition will find a need to violate it.¶
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 / serialiser on header fields.¶
Since a major goal for Structured Headers is to improve interoperability and simplify implementation, these concerns led to a format that requires a dedicated parser and serializer.¶
Additionally, there were widely shared feelings that JSON doesn’t “look right” in HTTP headers.¶
Structured headers intentionally limits the complexity of data structures, to assure that it can be processed in a performant manner with little overhead. This means that work is necessary to fit some data types into them.¶
Sometimes, this can be achieved by creating limited substructures in values, and/or using more than one header. For example, consider:¶
Example-Thing: name="Widget", cost=89.2, descriptions=(foo bar) Example-Description: foo; url="https://example.net"; context=123, bar; url="https://example.org"; context=456
Since the description contains an array of key/value pairs, we use a List to represent them, with the token for each item in the array used to identify it in the “descriptions” member of the Example-Thing header.¶
When specifying more than one header, it’s important to remember to describe what a processor’s behaviour should be when one of the headers is missing.¶
If you need to fit arbitrarily complex data into a header, Structured Headers is probably a poor fit for your use case.¶
A generic implementation of this specification should expose the top-level parse (Section 4.2) and serialize (Section 4.1) 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.¶
For interoperability, it’s important that generic implementations be complete and follow the algorithms closely; see Section 1.1. To aid this, a common test suite is being maintained by the community at https://github.com/httpwg/structured-header-tests.¶
Implementers should note that dictionaries and parameters are order-preserving maps. Some headers 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.¶
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.¶
RFC Editor: Please remove this section before publication. ¶