HTTP Working Group | M. Nottingham |
Internet-Draft | E. Nygren |
Intended status: Standards Track | Akamai |
Expires: April 1, 2017 | September 28, 2016 |
This document specifies the ORIGIN frame for HTTP/2, to indicate what origins are available on a given connection.¶
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 http://httpwg.github.io/; source code and issues list for this draft can be found at https://github.com/httpwg/http-extensions/labels/origin-frame.¶
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 http://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 April 1, 2017.¶
Copyright (c) 2016 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 (http://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.¶
HTTP/2 [RFC7540] allows clients to coalesce different origins [RFC6454] onto the same connection when certain conditions are met. However, in certain cases, a connection is is not usable for a coalesced origin, so the 421 (Misdirected Request) status code ([RFC7540], Section 9.1.2) was defined.¶
Using a status code in this manner allows clients to recover from misdirected requests, but at the penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type, “ORIGIN”, to allow servers to indicate what origins a connection is usable for.¶
The ORIGIN HTTP/2 frame ([RFC7540], Section 4) allows a server to indicate what origin(s) [RFC6454] the server would like the client to consider as members of the Origin Set (Section 2.1) for the connection it occurs within.¶
The ORIGIN frame type is 0xb (decimal 11).¶
+-------------------------------+-------------------------------+ | Origin-Len (16) | Origin? (*) ... +-------------------------------+-------------------------------+
The ORIGIN frame’s payload contains the following fields, sets of which may be repeated within the frame to indicate multiple origins:¶
The ORIGIN frame defines the following flags:¶
The set of origins (as per [RFC6454]) that a given connection might be used for is known in this specification as the Origin Set.¶
When a connection is first established, its Origin Set is defined to be those origins that the client would normally consider the connection authoritative for; see [RFC7540], Section 10.1.¶
The ORIGIN frame allows the server to modify the Origin Set. In particular:¶
Adding to the Origin Set (cases 1 and 3 above) does not imply that the connection is authoritative for the added origins (in the sense of [RFC7540], Section 10.1) on its own; this MUST be established by some other mechanism.¶
A client that implements this specification MUST NOT use a connection for a given origin unless that origin appears in the Origin Set for the connection, regardless of whether or not it believes that the connection is authoritative for that origin.¶
The ORIGIN frame is a non-critical extension to HTTP/2. Endpoints that do not support this frame can safely ignore it upon receipt.¶
When received by a client, it can be used to inform HTTP/2 connection coalescing (see Section 2.1), but does not relax the requirement there that the server is authoritative.¶
The origin frame MUST be sent on stream 0; an ORIGIN frame on any other stream is invalid and MUST be ignored.¶
The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients configured to use a proxy MUST ignore any ORIGIN frames received from it.¶
The following algorithm illustrates how a client can handle received ORIGIN frames:¶