티스토리 수익 글 보기

티스토리 수익 글 보기

MAY“> MUST“> MUST NOT“> OPTIONAL“> RECOMMENDED“> REQUIRED“> SHALL“> SHALL NOT“> SHOULD“> SHOULD NOT“> ]> Application of RFC 2231 Encoding to Hypertext Transfer Protocol (HTTP) Headers greenbytes GmbH
Hafenweg 16 MuensterNW48155 Germany julian.reschke@greenbytes.de http://greenbytes.de/tech/webdav/
By default, message header parameters in Hypertext Transfer Protocol (HTTP) messages can not carry characters outside the ISO-8859-1 character set. RFC 2231 defines an escaping mechanism for use in Multipurpose Internet Mail Extensions (MIME) headers. This document specifies a profile of that encoding suitable for use in HTTP. There are multiple HTTP headers that already use RFC 2231 encoding in practice (Content-Disposition) or might use it in the future (Link). The purpose of this document is to provide a single place where the generic aspects of RFC 2231 encoding in HTTP headers are defined. Distribution of this document is unlimited. Although this is not a work item of the HTTPbis Working Group, comments should be sent to the Hypertext Transfer Protocol (HTTP) mailing list at ietf-http-wg@w3.org, which may be joined by sending a message with subject “subscribe” to ietf-http-wg-request@w3.org. Discussions of the HTTPbis Working Group are archived at . XML versions, latest edits and the issues list for this document are available from . A collection of test cases is available at .
Umbrella issue for editorial fixes/enhancements.
By default, message header parameters in HTTP () messages can not carry characters outside the ISO-8859-1 character set (). RFC 2231 () defines an escaping mechanism for use in MIME headers. This document specifies a profile of that encoding for use in HTTP.
The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in . This specification uses the ABNF (Augmented Backus-Naur Form) notation defined in . The following core rules are included by reference, as defined in : ALPHA (letters), DIGIT (decimal 0-9), HEXDIG (hexadecimal 0-9/A-F/a-f) and LWSP (linear white space). Non-ASCII characters used in prose for examples are encoded using the format “Backslash-U with Delimiters”, defined in . Note that this specification uses the term “character set” for consistency with other IETF specifications such as RFC 2277 (see ). A more accurate term would be “character encoding” (a mapping of code points to octet sequences).
RFC 2231 defines several extensions to MIME. The sections below discuss if and how they apply to HTTP. In short: Parameter Continuations aren’t needed (), Character Set and Language Information are useful, therefore a simple subset is specified (), and Language Specifications in Encoded Words aren’t needed ().
defines a mechanism that deals with the length limitations that apply to MIME headers. These limitations do not apply to HTTP (). Thus in HTTP, senders &MUST-NOT; use parameter continuations, and therefore recipients do not need to support them.
specifies how to embed language information into parameter values, and also how to encode non-ASCII characters, dealing with restrictions both in MIME and HTTP header parameters. However, RFC 2231 does not specify a mandatory-to-implement character encoding, making it hard for senders to decide which character set to use. Thus, recipients implementing this specification &MUST; support the character sets “ISO-8859-1” and “UTF-8” . Furthermore, RFC 2231 allows leaving out the character encoding information. The profile defined by this specification does not allow that. The syntax for parameters is defined in (with RFC 2616 implied LWS translated to RFC 5234 LWSP):
parameter = attribute LWSP “=” LWSP value
attribute = token value = token / quoted-string quoted-string = <quoted-string, defined in > token = <token, defined in >
This specification extends the grammar to:
parameter = reg-parameter / ext-parameter reg-parameter = attribute LWSP “=” LWSP value ext-parameter = attribute “*” LWSP “=” LWSP ext-value ext-value = charset “‘” [ language ] “‘” value-chars ; extended-initial-value, ; defined in charset = “UTF-8” ; “UTF-8” / “ISO-8859-1” ; “ISO-8859-1” / ext-charset ext-charset = token ; see IANA charset registry ; () language = <Language-Tag, defined in > value-chars = *( pct-encoded / attr-char ) pct-encoded = “%” HEXDIG HEXDIG ; see attr-char = ALPHA / DIGIT / “-” / “.” / “_” / “~” / “:” / “!” / “$” / “&” / “+”
Thus, a parameter is either regular parameter (reg-parameter), as previously defined in , or an extended parameter (ext-parameter). Extended parameters are those where the left hand side of the assignment ends with an asterisk character. The value part of an extended parameter (ext-value) is a token that consists of three parts: the &REQUIRED; character set name (charset), the &OPTIONAL; language information (language), and a a character sequence representing the actual value (value-chars), separated by single quote characters. Inside the value part, characters not contained in attr-char are encoded into an octet sequence using the specified character set. That octet sequence then is percent-encoded as specified in . Producers &MUST-NOT; use character sets other than “UTF-8” () or ISO-8859-1 (). Extension character sets (ext-charset) are reserved for future use.
Non-extended notation, using “token”: foo: bar; title=Economy
Non-extended notation, using “quoted-string”: foo: bar; title=”US-$ rates”
Extended notation, using the unicode character \u’00A3′U+00A3 (POUND SIGN): foo: bar; title*=iso-8859-1’en’%A3%20rates Note: the Unicode pound sign character \u’00A3′U+00A3 was encoded using ISO-8859-1 into the single octet A3, then percent-encoded. Also note that the space character was encoded as %20, as it is not contained in attr-char.
Extended notation, using the unicode characters \u’00A3′U+00A3 (POUND SIGN) and \u’20AC’U+20AC (EURO SIGN): foo: bar; title*=UTF-8”%c2%a3%20and%20%e2%82%ac%20rates Note: the unicode pound sign character \u’00A3′U+00A3 was encoded using UTF-8 into the octet sequence C2 A3, then percent-encoded. Likewise, the unicode euro sign character \u’20AC’U+20AC was encoded into the octet sequence E2 82 AC, then percent-encoded. Also note that HEXDIG allows both lower-case and upper-case character, so recipients must understand both, and that the language information is optional, while the character set is not.
extends the encoding defined in to also support language specification in encoded words. Although the HTTP/1.1 specification does refer to RFC 2047 (), it’s not clear to which header field exactly it applies, and whether it is implemented in practice (see for details). Thus, the RFC 2231 profile defined by this specification does not include this feature.
Specifications of HTTP headers that use the extensions defined in should clearly state that. A simple way to achieve this is to normatively reference this specification, and to include the ext-value production into the ABNF for that header.
For instance: foo-header = “foo” LWSP “:” LWSP token “;” LWSP title-param title-param = “title” LWSP “=” LWSP value / “title*” LWSP “=” LWSP ext-value ext-value = <see RFCxxxx, >
Note to RFC Editor: in the figure above, please replace “xxxx” by the RFC number assigned to this specification.
requires that protocol elements containing text can carry language information. Thus, the ext-value production should always be used when the parameter value is of textual nature. Furthermore, the extension should also be used whenever the parameter value needs to carry characters not present in the US-ASCII () character set (note that it would be unacceptable to define a new parameter that would be restricted to a subset of the Unicode character set).
Header specifications that include parameters should also specify whether same-named parameters can occur multiple times. If repetitions are not allowed (and this is believed to be the common case), the specification should state whether regular or the extended syntax takes precedence. In the latter case, this could be used by producers to use both formats without breaking recipients that do not understand the syntax. Does not work as expected, see and .
Example: foo: bar; title=”EURO exchange rates”; title*=utf-8”%e2%82%ac%20exchange%20rates In this case, the sender provides an ASCII version of the title for legacy recipients, but also includes an internationalized version for recipients understanding this specification — the latter obviously should prefer the new syntax over the old one.
This document does not discuss security issues and is not believed to raise any security issues not already endemic in HTTP.
There are no IANA Considerations related to this specification.
Thanks to Frank Ellermann for help figuring out ABNF details, and to Roar Lauritzsen for implementer’s feedback.
Key words for use in RFCs to Indicate Requirement Levels Harvard University
sob@harvard.edu
General keyword
Hypertext Transfer Protocol — HTTP/1.1 University of California, Irvine
fielding@ics.uci.edu
W3C
jg@w3.org
Compaq Computer Corporation
mogul@wrl.dec.com
MIT Laboratory for Computer Science
frystyk@w3.org
Xerox Corporation
masinter@parc.xerox.com
Microsoft Corporation
paulle@microsoft.com
W3C
timbl@w3.org
UTF-8, a transformation format of ISO 10646 Alis Technologies
fyergeau@alis.com
Tags for Identifying Languages Yahoo! Inc.
addison@inter-locale.com
Google
mark.davis@macchiato.com
Augmented BNF for Syntax Specifications: ABNF Brandenburg InternetWorking
+1.408.246.8253 dcrocker@bbiw.net
THUS plc.
paul.overell@thus.net
Information technology — 8-bit single-byte coded graphic character sets — Part 1: Latin alphabet No. 1 International Organization for Standardization
MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text University of Tennessee
moore@cs.utk.edu
MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations Innosoft International, Inc.
ned.freed@innosoft.com
University of Tennessee
moore@cs.utk.edu
IETF Policy on Character Sets and Languages UNINETT
Harald.T.Alvestrand@uninett.no
Uniform Resource Identifier (URI): Generic Syntax World Wide Web Consortium
timbl@w3.org http://www.w3.org/People/Berners-Lee/
Day Software
fielding@gbiv.com http://roy.gbiv.com/
Adobe Systems Incorporated
LMM@acm.org http://larry.masinter.net/
ASCII Escaping of Unicode Characters
john-ietf@jck.com
Coded Character Set — 7-bit American Standard Code for Information Interchange American National Standards Institute
Use RFC5234-style ABNF, closer to the one used in RFC 2231. Make RFC 2231 dependency informative, so this specification can evolve independantly. Explain the ABNF in prose.
Remove unneeded RFC5137 notation (code point vs character).