HTTP Working Group | M. Nottingham |
Internet-Draft | Fastly |
Intended status: Standards Track | P-H. Kamp |
Expires: December 7, 2018 | The Varnish Cache Project |
June 5, 2018 |
This document describes a set of data types and algorithms associated with them that are intended to make it easier and safer to define and handle HTTP header fields. It is intended for use by new specifications of HTTP header fields as well as revisions of existing header field specifications when doing so does not cause interoperability issues.¶
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 December 7, 2018.¶
Copyright (c) 2018 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 [RFC7231], Section 8.3.1, there are many decisions – and pitfalls – for a prospective HTTP header field author.¶
Once a header field is defined, bespoke parsers and serialisers 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 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/1 [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.¶
Those abstract types can be serialised into and parsed from textual headers – such as those used in HTTP/1 – using the algorithms described in Section 4.¶
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 the Augmented Backus-Naur Form (ABNF) notation of [RFC5234], including the DIGIT, ALPHA and DQUOTE rules from that document. It also includes the OWS rule from [RFC7230].¶
This document uses algorithms to specify parsing and serialisation behaviours, and ABNF to illustrate expected syntax.¶
For parsing, 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.¶
For serialisation, 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 define a HTTP header as a structured header, its specification needs to:¶
Note that a header field definition cannot relax the requirements of a structure or its processing; they can only add additional constraints, because doing so would preclude handling by generic software.¶
For example:¶
# Foo-Example Header The Foo-Example HTTP header field conveys information about how much Foo the message has. Foo-Example is a Structured Header [RFCxxxx]. Its value MUST be a dictionary ([RFCxxxx], Section Y.Y). Its ABNF is: Foo-Example = sh-dictionary The dictionary MUST contain: * Exactly one member whose key is "foo", and whose value is an integer ([RFCxxxx], Section Y.Y), indicating the number of foos in the message. * Exactly one member whose key is "barUrls", and whose value is a string ([RFCxxxx], Section Y.Y), conveying the Bar URLs for the message. See below for processing requirements. If the parsed header field does not contain both, it MUST be ignored. "foo" MUST be between 0 and 10, inclusive; other values MUST cause the header to be ignored. "barUrls" contains a space-separated list of URI-references ([RFC3986], Section 4.1): barURLs = URI-reference *( 1*SP URI-reference ) If a member of barURLs is not a valid URI-reference, it MUST cause that value to be ignored. If a member of barURLs is a relative reference ([RFC3986], Section 4.2), it MUST be resolved ([RFC3986], Section 5) before being used.
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.¶
This section defines the abstract value types that can be composed into Structured Headers. The ABNF provided represents the on-wire format in HTTP/1.¶
Dictionaries are unordered maps of key-value pairs, where the keys are identifiers (Section 3.8) and the values are items (Section 3.4). There can be one or more members, and keys are required to be unique.¶
The ABNF for dictionaries is:¶
sh-dictionary = dict-member *( OWS "," OWS dict-member ) dict-member = member-name "=" member-value member-name = identifier member-value = sh-item
In HTTP/1, keys and values are separated by “=” (without whitespace), and key/value pairs are separated by a comma with optional whitespace. For example:¶
Example-DictHeader: en="Applepie", da=*w4ZibGV0w6ZydGUK=*
Typically, a header field specification will define the semantics of individual keys, as well as whether their presence is required or optional. Recipients MUST ignore keys that are undefined or unknown, unless the header field’s specification specifically disallows them.¶
Parsers MUST support dictionaries containing at least 1024 key/value pairs.¶
Lists are arrays of items (Section 3.4) with one or more members.¶
The ABNF for lists is:¶
sh-list = list-member *( OWS "," OWS list-member ) list-member = sh-item
In HTTP/1, 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."
Header specifications can constrain the types of individual values if necessary.¶
Parsers MUST support lists containing at least 1024 members.¶
Parameterised Lists are arrays of a parameterised identifiers.¶
A parameterised identifier is an identifier (Section 3.8) with an optional set of parameters, each parameter having a identifier and an optional value that is an item (Section 3.4). Ordering between parameters is not significant, and duplicate parameters MUST cause parsing to fail.¶
The ABNF for parameterised lists is:¶
sh-param-list = param-id *( OWS "," OWS param-id ) param-id = identifier *parameter parameter = OWS ";" OWS param-name [ "=" param-value ] param-name = identifier param-value = sh-item
In HTTP/1, each param-id is separated by a comma and optional whitespace (as in Lists), and the parameters are separated by semicolons. For example:¶
Example-ParamListHeader: abc_123;a=1;b=2; cdef_456, ghi;q="9";r=w
Parsers MUST support parameterised lists containing at least 1024 members, and support members with at least 256 parameters.¶
An item is can be a integer (Section 3.5), float (Section 3.6), string (Section 3.7), or binary content (Section 3.9).¶
The ABNF for items is:¶
sh-item = sh-integer / sh-float / sh-string / sh-binary
Integers have a range of −9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 inclusive (i.e., a 64-bit signed integer).¶
The ABNF for integers is:¶
sh-integer = ["-"] 1*19DIGIT
For example:¶
Example-IntegerHeader: 42
Floats are integers with a fractional part, that can be stored as IEEE 754 double precision numbers (binary64) ([IEEE754]).¶
The ABNF for floats is:¶
sh-float = ["-"] ( DIGIT "." 1*14DIGIT / 2DIGIT "." 1*13DIGIT / 3DIGIT "." 1*12DIGIT / 4DIGIT "." 1*11DIGIT / 5DIGIT "." 1*10DIGIT / 6DIGIT "." 1*9DIGIT / 7DIGIT "." 1*8DIGIT / 8DIGIT "." 1*7DIGIT / 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 0x20 to 0x7E). Note that this excludes tabs, newlines, carriage returns, etc.¶
The ABNF for strings is:¶
sh-string = DQUOTE *(chr) DQUOTE chr = unescaped / escaped unescaped = %x20-21 / %x23-5B / %x5D-7E escaped = "\" ( DQUOTE / "\" )
In HTTP/1 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 sequences MUST cause parsing to fail.¶
Unicode is not directly supported in this document, 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 string content, binary content (Section 3.9) SHOULD be specified, along with a character encoding (preferably, UTF-8).¶
Parsers MUST support strings with at least 1024 characters.¶
Identifiers are short textual identifiers; their abstract model is identical to their expression in the textual HTTP serialisation. Parsers MUST support identifiers with at least 64 characters.¶
The ABNF for identifiers is:¶
identifier = lcalpha *( lcalpha / DIGIT / "_" / "-"/ "*" / "/" ) lcalpha = %x61-7A ; a-z
Note that identifiers can only contain lowercase letters.¶
Arbitrary binary content can be conveyed in Structured Headers.¶
The ABNF for binary content is:¶
sh-binary = "*" *(base64) "*" base64 = ALPHA / DIGIT / "+" / "/" / "="
In HTTP/1 headers, binary content is delimited with asterisks and encoded using base64 ([RFC4648], Section 4). For example:¶
Example-BinaryHdr: *cHJldGVuZCB0aGlzIGlzIGJpbmFyeSBjb250ZW50Lg==*
Parsers MUST support binary content with at least 16384 octets after decoding.¶
This section defines how to serialise and parse Structured Headers in HTTP/1 textual header fields, and protocols compatible with them (e.g., in HTTP/2 [RFC7540] before HPACK [RFC7541] is applied).¶
Given a structured defined in this specification:¶
Given a dictionary as input:¶
Given a list as input:¶
Given a parameterised list as input:¶
Given an item as input:¶
Given an integer as input:¶
Given a float as input:¶
Given a string as input:¶
Given an identifier as input:¶
Given binary content as input:¶
The encoded data is required to be padded with “=”, as per [RFC4648], Section 3.2. Likewise, encoded data is required to have pad bits set to zero, as per [RFC4648], Section 3.5.¶
When a receiving implementation parses textual HTTP header fields (e.g., in HTTP/1 or HTTP/2) 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 ASCII string input_string that represents the chosen header’s field-value, and header_type, one of “dictionary”, “list”, “param-list”, or “item”, return the parsed header value.¶
When generating input_string, 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, Parameterised Lists and Dictionaries, this has the effect of correctly concatenating all instances of the header field.¶
Strings can but SHOULD NOT be split across multiple header instances, because comma(s) inserted upon combination will become part of the string output by the parser.¶
Integers, Floats and Binary Content 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 discarded. This is intentionally strict, to improve interoperability and safety, and specifications referencing this document cannot loosen this requirement.¶
Note that this has the effect of discarding any header field with non-ASCII characters in input_string.¶
Given an ASCII string input_string, return a mapping of (identifier, item). input_string is modified to remove the parsed value.¶
Given an ASCII string input_string, return a list of items. input_string is modified to remove the parsed value.¶
Given an ASCII string input_string, return a list of parameterised identifiers. input_string is modified to remove the parsed value.¶
Given an ASCII string input_string, return a identifier with an mapping of parameters. input_string is modified to remove the parsed value.¶
Given an ASCII string input_string, return an item. input_string is modified to remove the parsed value.¶
NOTE: This algorithm parses both Integers Section 3.5 and Floats Section 3.6, and returns the corresponding structure.¶
Parsers that encounter an integer outside the range defined in Section 3.5 MUST fail parsing. Therefore, the value “9223372036854775808” would be invalid. Likewise, values that do not conform to the ABNF above are invalid, and MUST fail parsing.¶
Parsers that encounter a float that does not conform to the ABNF in Section 3.6 MUST fail parsing.¶
Given an ASCII string input_string, return an unquoted string. input_string is modified to remove the parsed value.¶
Given an ASCII string input_string, return a identifier. input_string is modified to remove the parsed value.¶
Given an ASCII string input_string, return binary content. input_string is modified to remove the parsed value.¶
As per [RFC4648], Section 3.2, it is RECOMMENDED that parsers reject encoded data that is not properly padded, although this might not be possible in some base64 implementations.¶
As per [RFC4648], Section 3.5, it is RECOMMENDED that parsers fail on encoded data that has non-zero pad bits, although this might not be possible in some base64 implementations.¶
This specification does not relax the requirements in [RFC4648], Section 3.1 and 3.3; therefore, parsers MUST fail on characters outside the base64 alphabet, and on line feeds in encoded data.¶
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 size 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 Headers. In some circumstances, this will cause parsing to fail, but it is not possible to reliably fail in all such circumstances.¶