Internet-Draft | Well-Known URI for ECH | July 2023 |
Farrell, et al. | Expires 5 January 2024 | [Page] |
We define a well-known URI at which an HTTP origin can inform an authoritative DNS server, or other interested parties, about this origin's Service Bindings, i.e. its "HTTPS" DNS records. These instructions can include Encrypted ClientHello (ECH) configurations, allowing the origin, in collaboration with DNS infrastructure elements, to publish and rotate its own ECH keys.¶
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 5 January 2024.¶
Copyright (c) 2023 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 Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
Encrypted ClientHello (ECH) [I-D.ietf-tls-esni] for TLS1.3 [RFC8446] defines a confidentiality mechanism for server names and other ClientHello content in TLS. For many applications, that requires publication of ECHConflgList data structures in the DNS. An ECHConfigList structure contains a list of ECHConfig values. Each ECHConfig value contains the public component of a key pair that will typically be periodically (re-)generated by a web server. Many web infrastructures will have an API that can be used to dynamically update the DNS RR values containing ECHConfigList values. Some deployments however, will not, so web deployments could benefit from a mechanism to use in such cases.¶
We define such a mechanism here. Note that this is not intended for universal deployment, but rather for cases where the web server doesn't have write access to the relevant zone file (or equivalent). That zone file will eventually include an HTTPS or SVCB RR [I-D.ietf-dnsop-svcb-https] containing an ECHConfigList. This mechanism is extensible to deliver other kinds of information about the origin, but in this specification it only provides the functionality necessary to configure ECH.¶
We use the term "zone factory" for the entity that does have write access to the zone file. We assume the zone factory (ZF) can also make HTTPS requests to the web server with the ECH keys.¶
We propose use of a well-known URI [RFC8615] on the web server that allows ZF to poll for changes to ECHConfigList values. For example, if a web server generates new ECHConfigList values hourly and publishes those at the well-known URI, ZF can poll that URI. When ZF sees new values, it can check if those work, and if they do, then update the zone file and re-publish the zone.¶
[[The source for this draft is in https://github.com/sftcd/wkesni/ Issues and PRs are welcome there too.]]¶
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.¶
An example deployment could be as follows:¶
If a web server ($ORIGIN) wants to convey information to the Zone Factory, it publishes the JSON content defined in Section 5 at: https://$ORIGIN/.well-known/origin-svcb¶
The well-known URI defined here MUST be an https URL and therefore the zone factory verifies the correct $ORIGIN is being accessed. If no new ECH value resulting "works" then the zone factory MUST NOT modify the zone.¶
[[The JSON structure is a work in progress.]]¶
The JSON file at the well-known URI MUST contain an object with either an "endpoints" key or an "alias" key. If the "endpoints" key is present, its value is an array whose elements represent HTTPS records in ServiceMode. Each element MAY contain one or more keys from the JSON HTTP Origin Info registry (see IANA Considerations). The initial registry entries are:¶
An empty endpoint object corresponds to an HTTPS record with inferred SvcPriority, TargetName=".", and no ECH support. An empty record of this kind can be useful as a simple way to make use of the HTTPS RR type's HSTS behavior.¶
[[TODO: What does the zone factory do if it encounters an unrecognized field?]]¶
If the object contains an "alias" key, its value MUST be an "authority" (Section 3.2 of [RFC3986]). This indicates that $ORIGIN is hosted on the same endpoints as this target, and is equivalent to an HTTPS AliasMode record. A zone factory might implement this directive by publishing an AliasMode record, publishing a CNAME record, copying HTTPS records from the target zone, or fetching https://$TARGET/.well-known/origin-svcb" (if it exists).¶
This arrangement provides the following important properties:¶
The zone factory SHOULD check that the presented endpoints work and provide access to $ORIGIN before publication. A bespoke TLS client may be needed for this check, that does not require the ECHConfigList value to have already been published in the DNS. [[I guess that calls for the zone factory to know of a "safe" URL on $ORIGIN to try, or maybe it could use HTTP HEAD? Figuring that out is TBD. The ZF could also try a GREASEd ECH and see if the retry-configs it gets back is one of the ECHConfig values in the ECHConfigList.]]¶
A careful zone factory could explode the ECHConfigList value presented into "singleton" values with one public key in each and test each for each endpoint.¶
The zone factory SHOULD publish all the endpoints that are presented in the JSON file that pass the check above.¶
The zone factory SHOULD set a DNS TTL short enough so that any cached DNS resource records are likely to have expired before the JSON object's content is likely to have changed. The zone factory MUST attempt to refresh the JSON object and regenerate the zone before this time. This aims to ensure that ECHConfigs are not used longer than intended by the origin.¶
This document defines another way to publish ECHConfigList values. If the wrong keys were read from here and published in the DNS, then clients using ECH would do the wrong thing, likely resulting in denial of service, or a privacy leak, or worse, when TLS clients attempt to use ECH with a backend web site. So: Don't do that:-)¶
Although this configuration resource MAY be publicly accessible, general HTTP clients SHOULD NOT attempt to use this resource in lieu of HTTPS records queries through their preferred DNS server for the following reasons:¶
Thanks to Niall O'Reilly for a quick review of -00.¶
[[TBD: IANA registration of a .well-known. Also TBD - how to handle I18N for $FRONT and $BACKEND within such a URL.]]¶
If approved, this specification requests the creation of an IANA registry named "JSON HTTP Origin Info" with a Standards Action registration policy, containing a field named "Name" whose value is a UTF-8 string.¶
[[RFC editor: please remove this before publication.]]¶
The -00 WG draft replaces draft-farrell-tls-wkesni-03.¶
Version 01 changed from a special-purpose design, carrying only ECHConfigs and port numbers, to a more general approach based on Service Bindings.¶
Version 02 is just a keep-alive¶
Version 03 reflects some local implementation experience with -02¶