RFC 9651: Structured Field Values for HTTP
- M. Nottingham,
- P-H. Kamp
Abstract
This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields.¶
This document obsoletes RFC 8941.¶
Status of This Memo
This is an Internet Standards Track document.¶
This document is a product of the Internet Engineering Task Force (IETF). It represents the consensus of the IETF community. It has received public review and has been approved for publication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 of RFC 7841.¶
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
https://
Copyright Notice
Copyright (c) 2024 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://
1. Introduction
Specifying the syntax of new HTTP header (and trailer) fields is an onerous task; even with the guidance in Section 16.3.2 of [HTTP], there are many decisions -- and pitfalls -- for a prospective HTTP field author.¶
Once a field is defined, bespoke parsers and serializers often need to be written, because each field value has a 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 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 [HTTP] header and trailer fields.¶
An HTTP field that is defined as a "Structured Header" or "Structured Trailer" (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
Additionally, future versions of HTTP can define alternative serializations of the abstract model of these structures, allowing fields that use that model 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 fields; the mechanisms described herein are only intended to be used with fields that explicitly opt into them.¶
Section 2 describes how to specify a Structured Field.¶
Section 3 defines a number of abstract data types that can be used in Structured Fields.¶
Those abstract types can be serialized into and parsed from HTTP field values using the algorithms described in Section 4.¶
1.1. Intentionally Strict Processing
This specification intentionally defines strict parsing and serialization behaviors using step-by-step algorithms; the only error handling defined is to fail the entire operation altogether.¶
It is designed to encourage faithful implementation and good interoperabilit
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 interoperabilit
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.¶
1.2. Notational Conventions
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 VCHAR, SP, DIGIT, ALPHA, and DQUOTE rules from [RFC5234] to specify characters and/or their corresponding ASCII bytes, depending on context. It uses the tchar and OWS rules from [HTTP] for the same purpose.¶
This document uses algorithms to specify parsing and serialization behaviors. When parsing from HTTP fields, implementations MUST have behavior that is indistinguishab
For serialization to HTTP fields, the algorithms define the recommended way to produce them. Implementations MAY vary from the specified behavior so long as the output is still correctly handled by the parsing algorithm described in Section 4.2.¶
2. Defining New Structured Fields
To specify an HTTP field as a Structured Field, its authors need to:¶
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", or strings in lowercase. Likewise, Inner Lists (Section 3.1.1) are only valid when a field definition explicitly allows them.¶
Fields that use the Display String type are advised to carefully specify their allowable Unicode code points; for example, specifying the use of a profile from [PRECIS].¶
Field definitions can only use this specification for the entire field value, not a portion thereof.¶
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.¶
This specification defines minimums for the length or number of various structures supported by implementations
2.1. Example
A fictitious Foo-Example header field might be specified as:¶
42. Foo-Example Header Field¶
The Foo-Example HTTP header field conveys information about how much Foo the message has.¶
Foo-Example is an Item Structured Header Field [RFC9651]. Its value MUST be an Integer (Section 3.3.1 of [RFC9651]).¶
Its value indicates the amount of Foo in the message, and it MUST be between 0 and 10, inclusive; other values MUST cause the entire header field to be ignored.¶
The following parameter is defined:¶
"foourl" contains a URI-reference (Section 4.1 of [RFC3986]). If its value is not a valid URI-reference, the entire header field 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:¶
2.2. Error Handling
When parsing fails, the entire field is ignored (see Section 4.2). Field definitions cannot override this 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).¶
When field-specific constraints are violated, the entire field is also ignored, unless the field definition defines other handling requirements. For example, if a header field is defined as an Item and required to be an Integer, but a String is received, it should be ignored unless that field's definition explicitly specifies otherwise.¶
2.3. Preserving Extensibility
Structured Fields are designed to be extensible because experience has shown that, even when it is not foreseen, it is often necessary to modify and add to the allowable syntax and semantics of a field in a controlled fashion.¶
Both Items and Inner Lists allow Parameters as an extensibility mechanism; this means that their values can later be extended to accommodate more information, if need be. To preserve forward compatibility, field specifications are discouraged from defining the presence of an unrecognized parameter as an error condition.¶
Field specifications are required to be either an Item, List, or Dictionary to preserve extensibility. Fields that erroneously defined as another type (e.g., Integer) are assumed to be Items (i.e., they allow Parameters).¶
To further 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. A specification could stipulate that all parameters that fit a defined pattern 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.¶
Specifications that use Dictionaries can also allow for forward compatibility by requiring that the presence of -- as well as value and type associated with -- unknown keys be ignored. Subsequent specifications can then add additional keys, specifying constraints on them as appropriate.¶
An extension to a Structured Field can then require that an entire field value be ignored by a recipient that understands the extension if constraints on the value it defines are not met.¶
2.4. Using New Structured Types in Extensions
Because a field definition needs to reference a specific RFC for Structured Fields, the types available for use in its value are limited to those defined in that RFC. For example, a field whose definition references this document can have a value that uses the Date type (Section 3.3.7), whereas a field whose definition references RFC 8941 cannot because it will be treated as invalid (and therefore discarded) by implementations of that specification.¶
This limitation also applies to future extensions to a field; for example, a field that is defined with a reference to RFC 8941 cannot use the Date type because some recipients might still be using a parser based on RFC 8941 to process it.¶
However, this document is designed to be backward compatible with RFC 8941; a parser that implements the requirements here can also parse valid Structured Fields whose definitions reference RFC 8941.¶
Upgrading a Structured Fields implementation to support a newer revision of the specification (such as this document) brings the possibility that some field values that were invalid according to the earlier RFC might become valid when processed.¶
For example, a field instance might contain a syntactically valid Date (Section 3.3.7), even though that field's definition does not accommodate Dates. An implementation based on RFC 8941 would fail parsing such a field instance because it is not defined in that specification. If that implementation were upgraded to this specification, parsing would now succeed. In some cases, the resulting Date value will be rejected by field-specific logic, but values in fields that are otherwise ignored (such as extension parameters) might not be detected, and the field might subsequently be accepted and processed.¶
3. Structured Data Types
This section provides an overview of the abstract types that Structured Fields use and gives a brief description and examples of how each of those types are serialized into textual HTTP fields. Section 4 specifies the details of how they are parsed from and serialized into textual HTTP fields.¶
In summary:¶
3.1. Lists
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 Parameterized (Section 3.1.2).¶
An empty List is denoted by not serializing the field at all. This implies that fields defined as Lists have a default empty value.¶
When serialized as a textual HTTP field, each member is separated by a comma and optional whitespace. For example, a field whose value is defined as a List of Tokens could look like:¶
Note that Lists can have their members split across multiple lines of the same header or trailer section, as per Section 5.3 of [HTTP]; for example, the following are equivalent:¶
and¶
However, individual members of a List cannot be safely split between lines; see Section 4.2 for details.¶
Parsers MUST support Lists containing at least 1024 members. Field specifications can constrain the types and cardinality of individual List values as they require.¶
3.1.1. Inner Lists
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 Parameterized (Section 3.1.2).¶
When serialized in a textual HTTP field, Inner Lists are denoted by surrounding parenthesis, and their values are delimited by one or more spaces. A field whose value is defined as a List of Inner Lists of Strings could look like:¶
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:¶
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.¶
3.1.2. Parameters
Parameters are an ordered map of key-value pairs that are associated with an Item (Section 3.3) or Inner List (Section 3.1.1). The keys are unique within the scope of the Parameters they occur within, and the values are bare items (i.e., they themselves cannot be parameterized; see Section 3.3).¶
Implementations MUST provide access to Parameters both by index and by key. Specifications MAY use either means of accessing them.¶
Note that parameters are ordered, and parameter keys cannot contain uppercase letters.¶
When serialized in a textual HTTP field, a Parameter is separated from its Item or Inner List and other Parameters by a semicolon. For example:¶
Parameters whose value is Boolean (see Section 3.3.6) true MUST omit that value when serialized. For example, the "a" parameter here is true, while the "b" parameter is false:¶
Note that this requirement is only on serialization; parsers are still required to correctly handle the true value when it appears in a parameter.¶
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 order of individual parameters, as well as their values' types as required.¶
3.2. Dictionaries
Dictionaries are ordered maps of key-value pairs, where the keys are short textual strings and the values are Items (Section 3.3) or arrays of Items, both of which can be Parameterized (Section 3.1.2). There can be zero or more members, and their keys are unique in the scope of the Dictionary they occur within.¶
Implementations MUST provide access to Dictionaries both by index and by key. Specifications MAY use either means of accessing the members.¶
As with Lists, an empty Dictionary is represented by omitting the entire field. This implies that fields defined as Dictionaries have a default empty value.¶
Typically, a field specification will define the semantics of Dictionaries by specifying the allowed type(s) for individual members by their keys, as well as whether their presence is required or optional. Recipients MUST ignore members whose keys are undefined or unknown, unless the field's specification specifically disallows them.¶
When serialized as a textual HTTP field, members are ordered as serialized and separated by a comma with optional whitespace. Member keys cannot contain uppercase characters. Keys and values are separated by "=" (without whitespace). For example:¶
Note that in this example, the final "=" is due to the inclusion of a Byte Sequence; see Section 3.3.5.¶
Members whose value is Boolean (see Section 3.3.6) true MUST omit that value when serialized. For example, here both "b" and "c" are true:¶
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.¶
A Dictionary with a member whose value is an Inner List of Tokens:¶
A Dictionary with a mix of Items and Inner Lists, some with parameters:¶
Note that Dictionaries can have their members split across multiple lines of the same header or trailer section; for example, the following are equivalent:¶
and¶
However, individual members of a Dictionary cannot be safely split between lines; see Section 4.2 for details.¶
Parsers MUST support Dictionaries containing at least 1024 key/value pairs and keys with at least 64 characters. Field specifications can constrain the order of individual Dictionary members, as well as their values' types as required.¶
3.3. Items
An Item can be an Integer (Section 3.3.1), a Decimal (Section 3.3.2), a String (Section 3.3.3), a Token (Section 3.3.4), a Byte Sequence (Section 3.3.5), a Boolean (Section 3.3.6), or a Date (Section 3.3.7). It can have associated parameters (Section 3.1.2).¶
For example, a header field that is defined to be an Item that is an Integer might look like:¶
or with parameters:¶
3.3.1. Integers
Integers have a range of
For example:¶
Integers larger than 15 digits can be supported in a variety of ways; for example, by using a String (Section 3.3.3), a Byte Sequence (Section 3.3.5), or a parameter on an Integer that acts as a scaling factor.¶
While it is possible to serialize Integers with leading zeros (e.g., "0002", "-01") and signed zero ("-0"), these distinctions may not be preserved by implementations
Note that commas in Integers are used in this section's prose only for readability; they are not valid in the wire format.¶
3.3.2. Decimals
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.¶
For example, a header whose value is defined as a Decimal could look like:¶
While it is possible to serialize Decimals with leading zeros (e.g., "0002.5", "-01.334"), trailing zeros (e.g., "5.230", "-0.40"), and signed zero (e.g., "-0.0"), these distinctions may not be preserved by implementations
Note that the serialization algorithm (Section 4.1.5) 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 field definition to occur before serialization.¶
3.3.3. Strings
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.¶
Non-ASCII characters are not directly supported in Strings because they cause a number of interoperabilit
When it is necessary for a field value to convey non-ASCII content, a Display String (Section 3.3.8) can be specified.¶
When serialized in a textual HTTP field, Strings are delimited with double quotes, using a backslash ("\") to escape double quotes and backslashes. For example:¶
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.¶
Parsers MUST support Strings (after any decoding) with at least 1024 characters.¶
3.3.4. Tokens
Tokens are short textual words that begin with an alphabetic character or "*", followed by zero to many token characters, which are the same as those allowed by the "token" ABNF rule defined in [HTTP] plus the ":" and "/" characters.¶
For example:¶
Parsers MUST support Tokens with at least 512 characters.¶
Note that Tokens are defined largely for compatibility with the data model of existing HTTP fields and may require additional steps to use in some implementations
3.3.5. Byte Sequences
Byte Sequences can be conveyed in Structured Fields.¶
When serialized in a textual HTTP field, a Byte Sequence is delimited with colons and encoded using base64 ([RFC4648], Section 4). For example:¶
Parsers MUST support Byte Sequences with at least 16384 octets after decoding.¶
3.3.6. Booleans
Boolean values can be conveyed in Structured Fields.¶
When serialized in a textual HTTP field, a Boolean is indicated with a leading "?" character followed by a "1" for a true value or "0" for false. For example:¶
Note that in Dictionary (Section 3.2) and Parameter (Section 3.1.2) values, Boolean true is indicated by omitting the value.¶
3.3.7. Dates
Date values can be conveyed in Structured Fields.¶
Dates have a data model that is similar to Integers, representing a (possibly negative) delta in seconds from 1970
For example:¶
Parsers MUST support Dates whose values include all days in years 1 to 9999 (i.e., -62,135,596,800 to 253,402,214,400 delta seconds from 1970
3.3.8. Display Strings
Display Strings are similar to Strings, in that they consist of zero or more characters, but they allow Unicode scalar values (i.e., all Unicode code points except for surrogates), unlike Strings.¶
Display Strings are intended for use in cases where a value is displayed to end users and therefore may need to carry non-ASCII content. It is NOT RECOMMENDED that they be used in situations where a String (Section 3.3.3) or Token (Section 3.3.4) would be adequate because Unicode has processing considerations (e.g., normalization) and security considerations (e.g., homograph attacks) that make it more difficult to handle correctly.¶
Note that Display Strings do not indicate the language used in the value; that can be done separately if necessary (e.g., with a parameter).¶
In textual HTTP fields, Display Strings are represented in a manner similar to Strings, except that non-ASCII characters are percent
For example:¶
See Section 6 for additional security considerations when handling Display Strings.¶
4. Working with Structured Fields in HTTP
This section defines how to serialize and parse the abstract types defined by Section 3 into textual HTTP field values and other encodings compatible with them (e.g., in HTTP/2 [HTTP/2] before compression with HPACK [HPACK]).¶
4.1. Serializing Structured Fields
Given a structure defined in this specification, return an ASCII string suitable for use in an HTTP field value.¶
4.1.1. Serializing a List
Given an array of (member_value, parameters) tuples as input_list, return an ASCII string suitable for use in an HTTP field value.¶
4.1.1.1. Serializing an Inner List
Given an array of (member_value, parameters) tuples as inner_list, and parameters as list
4.1.1.2. Serializing Parameters
Given an ordered Dictionary as input
4.1.1.3. Serializing a Key
Given a key as input_key, return an ASCII string suitable for use in an HTTP field value.¶
4.1.2. Serializing a Dictionary
Given an ordered Dictionary as input
4.1.3. Serializing an Item
Given an Item as bare_item and Parameters as item
4.1.3.1. Serializing a Bare Item
Given an Item as input_item, return an ASCII string suitable for use in an HTTP field value.¶
4.1.4. Serializing an Integer
Given an Integer as input_integer, return an ASCII string suitable for use in an HTTP field value.¶
4.1.5. Serializing a Decimal
Given a decimal number as input_decimal, return an ASCII string suitable for use in an HTTP field value.¶
4.1.6. Serializing a String
Given a String as input_string, return an ASCII string suitable for use in an HTTP field value.¶
4.1.7. Serializing a Token
Given a Token as input_token, return an ASCII string suitable for use in an HTTP field value.¶
4.1.8. Serializing a Byte Sequence
Given a Byte Sequence as input_bytes, return an ASCII string suitable for use in an HTTP field 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.¶
4.1.9. Serializing a Boolean
Given a Boolean as input_boolean, return an ASCII string suitable for use in an HTTP field value.¶
4.1.10. Serializing a Date
Given a Date as input_date, return an ASCII string suitable for use in an HTTP field value.¶
4.1.11. Serializing a Display String
Given a sequence of Unicode code points as input_sequence, return an ASCII string suitable for use in an HTTP field value.¶
Note that [UTF8] prohibits the encoding of code points between U+D800 and U+DFFF (surrogates); if they occur in input_sequence, serialization will fail.¶
4.2. Parsing Structured Fields
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 interoperabilit
Given an array of bytes as input_bytes that represent 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 field value.¶
When generating input_bytes, parsers MUST combine all field lines in the same section (header or trailer) that case
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 field instances. The parsing algorithms for both types allow tab characters, since these might
be used to combine field lines by some implementations
Strings split across multiple field lines will have unpredictable results, because one or more commas (with optional whitespace) 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, even when they are both under the control of the same party.¶
Tokens, Integers, Decimals, and Byte Sequences cannot be split across multiple field lines because the inserted commas will cause parsing to fail.¶
Parsers MAY fail when processing a field value spread across multiple field lines, when one of those lines does not parse as that field. For example, a parsing handling an Example-String field that's defined as an sf-string is allowed to fail when processing this field section:¶
If parsing fails, either the entire field value MUST be ignored (i.e., treated as if the field were not present in the section), or alternatively the complete HTTP message MUST be treated as malformed. This is intentionally strict to improve interoperabilit
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 field from a message before forwarding it.¶
4.2.1. Parsing a List
Given an ASCII string as input_string, return an array of
4.2.1.1. Parsing an Item or Inner List
Given an ASCII string as input_string, return the tuple
4.2.1.2. Parsing an Inner List
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.¶
4.2.2. Parsing a Dictionary
Given an ASCII string as input_string, return an ordered map whose values are
Note that when duplicate Dictionary keys are encountered, all but the last instance are ignored.¶
4.2.3. Parsing an Item
Given an ASCII string as input_string, return a (bare_item, parameters) tuple. input_string is modified to remove the parsed value.¶
4.2.3.1. Parsing a Bare Item
Given an ASCII string as input_string, return a bare Item. input_string is modified to remove the parsed value.¶
4.2.3.2. Parsing Parameters
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.¶
Note that when duplicate parameter keys are encountered, all but the last instance are ignored.¶
4.2.3.3. Parsing a Key
Given an ASCII string as input_string, return a key. input_string is modified to remove the parsed value.¶
4.2.4. Parsing an Integer or Decimal
Given an ASCII string as input_string, return an Integer or Decimal. input_string is modified to remove the parsed value.¶
NOTE: This algorithm parses both Integers (Section 3.3.1) and Decimals (Section 3.3.2), and returns the corresponding structure.¶
4.2.5. Parsing a String
Given an ASCII string as input_string, return an unquoted String. input_string is modified to remove the parsed value.¶
4.2.6. Parsing a Token
Given an ASCII string as input_string, return a Token. input_string is modified to remove the parsed value.¶
4.2.7. Parsing a Byte Sequence
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 rejection of encoded data that is not properly "=" padded (see [RFC4648], Section 3.2), parsers SHOULD NOT fail when "=" padding 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 non-zero pad bits are present, unless they cannot be configured to do so.¶
This specification does not relax the requirements in Sections 3.1 and 3.3 of [RFC4648]; therefore, parsers MUST fail on characters outside the base64 alphabet and on line feeds in encoded data.¶
4.2.8. Parsing a Boolean
Given an ASCII string as input_string, return a Boolean. input_string is modified to remove the parsed value.¶
4.2.9. Parsing a Date
Given an ASCII string as input_string, return a Date. input_string is modified to remove the parsed value.¶
4.2.10. Parsing a Display String
Given an ASCII string as input_string, return a sequence of Unicode code points. input_string is modified to remove the parsed value.¶
5. IANA Considerations
IANA has added the following note to the "Hypertext Transfer Protocol (HTTP) Field Name Registry":¶
The "Structured Type" column indicates the type of the field (per RFC 9651), if any, and may be "Dictionary", "List", or "Item".¶
Note that field names beginning with characters other than ALPHA or "*" will not be able to be represented as a Structured Fields Token and therefore may be incompatible with being mapped into field values that refer to it.¶
A new column, "Structured Type", has been added to the registry.¶
The indicated Structured Type for each existing registry entry listed in Table 1 has also been added.¶
6. Security Considerations
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.¶
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.¶
The Display String type can convey any possible Unicode code point without sanitization; for example, they might contain unassigned code points, control points (including NUL), or noncharacters. Therefore, applications consuming Display Strings need to consider strategies such as filtering or escaping untrusted content before displaying it. See [PRECIS] and [UNICODE-SECURITY].¶
7. References
7.1. Normative References
- [HTTP]
-
Fielding, R., Ed., Nottingham, M., Ed., and J. Reschke, Ed., "HTTP Semantics", STD 97, RFC 9110, DOI 10
.17487 , , <https:///RFC9110 www >..rfc -editor .org /info /rfc9110 - [RFC0020]
-
Cerf, V., "ASCII format for network interchange", STD 80, RFC 20, DOI 10
.17487 , , <https:///RFC0020 www >..rfc -editor .org /info /rfc20 - [RFC2119]
-
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10
.17487 , , <https:///RFC2119 www >..rfc -editor .org /info /rfc2119 - [RFC4648]
-
Josefsson, S., "The Base16, Base32, and Base64 Data Encodings", RFC 4648, DOI 10
.17487 , , <https:///RFC4648 www >..rfc -editor .org /info /rfc4648 - [RFC8174]
-
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10
.17487 , , <https:///RFC8174 www >..rfc -editor .org /info /rfc8174 - [UTF8]
-
Yergeau, F., "UTF-8, a transformation format of ISO 10646", STD 63, RFC 3629, DOI 10
.17487 , , <https:///RFC3629 www >..rfc -editor .org /info /rfc3629
7.2. Informative References
- [HPACK]
-
Peon, R. and H. Ruellan, "HPACK: Header Compression for HTTP/2", RFC 7541, DOI 10
.17487 , , <https:///RFC7541 www >..rfc -editor .org /info /rfc7541 - [HTTP/2]
-
Thomson, M., Ed. and C. Benfield, Ed., "HTTP/2", RFC 9113, DOI 10
.17487 , , <https:///RFC9113 www >..rfc -editor .org /info /rfc9113 - [IEEE754]
-
IEEE, "IEEE Standard for Floating-Point Arithmetic", IEEE Std 754-2019, DOI 10
.1109 , ISBN 978/IEEESTD .2019 .8766229 -1 , , <https://-5044 -5924 -2 ieeexplore >..ieee .org /document /8766229 - [PRECIS]
-
Saint-Andre, P. and M. Blanchet, "PRECIS Framework: Preparation, Enforcement, and Comparison of Internationaliz
ed , RFC 8264, DOI 10Strings in Application Protocols" .17487 , , <https:///RFC8264 www >..rfc -editor .org /info /rfc8264 - [RFC5234]
-
Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax Specifications: ABNF", STD 68, RFC 5234, DOI 10
.17487 , , <https:///RFC5234 www >..rfc -editor .org /info /rfc5234 - [RFC7493]
-
Bray, T., Ed., "The I-JSON Message Format", RFC 7493, DOI 10
.17487 , , <https:///RFC7493 www >..rfc -editor .org /info /rfc7493 - [RFC8259]
-
Bray, T., Ed., "The JavaScript Object Notation (JSON) Data Interchange Format", STD 90, RFC 8259, DOI 10
.17487 , , <https:///RFC8259 www >..rfc -editor .org /info /rfc8259 - [UNICODE
-SECURITY] -
Davis, M. and M. Suignard, "Unicode Security Considerations", Unicode Technical Report #36, , <https://
www >. Latest version available at <https://.unicode .org /reports /tr36 /tr36 -15 .html www >..unicode .org /reports /tr36 /
Appendix A. Frequently Asked Questions
A.1. Why Not JSON?
Earlier proposals for Structured Fields were based upon JSON [RFC8259]. However, constraining its use to make it suitable for HTTP 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 interoperabilit
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.¶
Because of JSON's broad adoption and implementation, it is difficult to impose such additional constraints across all implementations
Since a major goal for Structured Fields is to improve interoperabilit
Additionally, there were widely shared feelings that JSON doesn't "look right" in HTTP fields.¶
Appendix B. Implementation Notes
A generic implementation of this specification should expose the top-level serialize (Section 4.1) and parse (Section 4.2) 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 interoperabilit
Implementers should note that Dictionaries and Parameters are order
Likewise, implementations should note that it's important to preserve the distinction between Tokens and Strings. While most programming languages have built-in 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.¶
The serialization algorithm is defined in a way that it is not strictly limited to the data types defined in Section 3 in every case. For example, Decimals are designed to take broader input and round to allowed values.¶
Implementations are allowed to limit the size of different structures, subject to the minimums defined for each type. When a structure exceeds an implementation limit, that structure fails parsing or serialization.¶
Appendix C. ABNF
This section uses the Augmented Backus-Naur Form (ABNF) notation [RFC5234] to illustrate the expected syntax of Structured Fields. However, it cannot be used to validate their syntax because it does not capture all requirements.¶
This section is non-normative. If there is disagreement between the parsing algorithms and ABNF, the specified algorithms take precedence.¶
Appendix D. Changes from RFC 8941
This revision of the "Structured Field Values for HTTP" specification has made the following changes:¶
Acknowledgements
Many thanks to Matthew Kerwin for his detailed feedback and careful consideration during the development of this specification.¶
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.¶