Internet-Draft | Geohash CH | March 2022 |
Pauly & Schinazi | Expires 1 October 2022 | [Page] |
This documents defines an HTTP Client Hint that allows a client to share information about its IP Geolocation. This helps ensure that servers have information about location that is consistent with what a client expects and what other servers use.¶
This note is to be removed before publishing as an RFC.¶
Source for this draft and an issue tracker can be found at https://github.com/tfpauly/privacy-proxy.¶
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 1 October 2022.¶
Copyright (c) 2022 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.¶
HTTP Client Hints [RFC8942] defines a convention for HTTP headers to communicate optional information from clients to servers as hints. This can be done conditionally based on if a server claims supports for a particular hint.¶
This document defines a client hint that can be used to send a IP geolocation entry that maps to the client's IP address. This location can be used to influence server behavior, such as by causing the server to return responses relevant to the client's location. The format of the IP geolocation entry is the same as that defined for IP geolocation feeds in [GEOFEED].¶
This header is intended to be used to provide rough geolocation hints to servers that do not already have accurate or authoritative mappings for the IP addresses of clients. This can be particularly useful for cases where IP geolocation mappings have changed recently, or a client is using a VPN or proxy that may not be commonly recognized by servers.¶
The mechanism for how a client learns the IP geolocation mapping to send is beyond the scope of this document. [RFC9092] defines some mechanisms for discovery, but clients can also have other mechanisms (such as coordinating with a VPN or proxy that is assigning the client a tunnelled or proxied address) to learn what hint to sent.¶
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.¶
The "Sec-CH-IP-Geo" is an Item Structured Field [STRUCTURED-FIELDS]. The field's value is a String. The string uses the format defined in Section 2.1.1 of [GEOFEED], with the IP Prefix element removed. Thus, this contains a comma-separated list of Alpha2code, Region, and City. The value SHOULD NOT contain a Postal Code.¶
For example, the header for an entry "192.0.2.5,US,US-AL,Alabaster" would be:¶
Sec-CH-IP-Geo = "US,US-AL,Alabaster"¶
This field also defines a parameter, "feed", that contains the URI of the IP geolocation feed that is authoritative for this entry. For example:¶
Sec-CH-IP-Geo = "SG,SG-01,Singapore"; feed="https://noc.ietf.org/geo/google.csv"¶
Servers that can provide different content based on Geohash hints SHOULD include the headers in their "Accept-CH" list.¶
Accept-CH: Sec-CH-IP-Geo¶
Servers also SHOULD indicate for any cacheable content if the IP geo hints will influence the cached content, using the "Vary" header.¶
Vary: Sec-CH-IP-Geo¶
Upon receiving a IP Geolocation Client Hint, a server can use the information to influence its behavior in various ways, such as determining the content of HTTP responses.¶
Many servers have existing IP geolocation feeds that they use to identify client locations. Servers can choose to use the hint value in one of several ways:¶
If the server is acting as a forward proxy, such as a CONNECT proxy, it can use the hint to determine an appropriate geo-mapped IP address to use for outbound connections, or a client subnet to present in the EDNS0 Client Subnet extension for DNS queries [RFC6891] [RFC7871].¶
The use of the IP Geolocation Client Hint MUST use the Sec- header prefix as recommended in [RFC8942].¶
Servers MUST NOT use IP Geolocation Client Hints for making security or access-control decisions, as the value can be spoofed by a client. The hint is intended only for use in optimizing behavior.¶
The value contained in this hint SHOULD be based only on a IP Geolocation feed value for an IP address the client is already presenting to a server. In order to avoid disclosing any private information, this value MUST not be based on geolocation of the client determined by other means, such as physical latitude and longitude coordinates.¶
This document registers the "Sec-CH-IP-Geo" header in the "Permanent Message Header Field Names" registry <https://www.iana.org/assignments/message-headers>.¶
+----------------------+----------+--------+---------------+ | Header Field Name | Protocol | Status | Reference | +----------------------+----------+--------+---------------+ | Sec-CH-IP-Geo | http | exp | This document | +----------------------+----------+--------+---------------+¶