<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.4.13 -->
<?rfc-ext html-pretty-print="prettyprint https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"?>
<rfc xmlns:x="http://purl.org/net/xml2rfc/ext"
     category="info"
     docName="draft-ietf-httpbis-client-cert-field-00"
     ipr="trust200902"
     submissionType="IETF">
   <x:feedback template="mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22\&amp;amp;body=%3c{ref}%3e:"/>
   <front>
      <title abbrev="Client-Cert Field">Client-Cert HTTP Header Field: Conveying Client Certificate Information from TLS Terminating Reverse Proxies to Origin Server Applications</title>
      <author fullname="Brian Campbell" initials="B." surname="Campbell">
         <organization>Ping Identity</organization>
         <address>
            <email>bcampbell@pingidentity.com</email>
         </address>
      </author>
      <author fullname="Mike Bishop"
              initials="M."
              role="editor"
              surname="Bishop">
         <organization>Akamai</organization>
         <address>
            <email>mbishop@evequefou.be</email>
         </address>
      </author>
      <date year="2021" month="June" day="8"/>
      <area>Applications and Real-Time</area>
      <workgroup>HTTP</workgroup>
      <keyword>http</keyword>
      <keyword>client certificate</keyword>
      <abstract>
         <t>This document defines the HTTP header field <spanx style="verb">Client-Cert</spanx> that allows a TLS terminating reverse proxy to convey the client certificate of a mutually-authenticated TLS connection to the origin server in a common and predictable manner.</t>
      </abstract>
      <note title="Note to Readers ">
         <t>
            <em>RFC EDITOR: please remove this section before publication</em>
         </t>
         <t>Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t>
         <t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/client-cert-header">https://github.com/httpwg/http-extensions/labels/client-cert-header</eref>.</t>
      </note>
   </front>
   <middle>
      <section anchor="Introduction">
         <name>Introduction</name>
         <t>A fairly common deployment pattern for HTTPS applications is to have the origin HTTP application servers sit behind a reverse proxy that terminates TLS connections from clients. The proxy is accessible to the internet and dispatches client requests to the appropriate origin server within a private or protected network. The origin servers are not directly accessible by clients and are only reachable through the reverse proxy. The backend details of this type of deployment are typically opaque to clients who make requests to the proxy server and see responses as though they originated from the proxy server itself. Although HTTPS is also usually employed between the proxy and the origin server, the TLS connection that the client establishes for HTTPS is only between itself and the reverse proxy server.</t>
         <t>The deployment pattern is found in a number of varieties such as n-tier architectures, content delivery networks, application load balancing services, and ingress controllers.</t>
         <t>Although not exceedingly prevalent, TLS client certificate authentication is sometimes employed and in such cases the origin server often requires information about the client certificate for its application logic. Such logic might include access control decisions, audit logging, and binding issued tokens or cookies to a certificate, and the respective validation of such bindings. The specific details from the certificate needed also vary with the application requirements. In order for these types of application deployments to work in practice, the reverse proxy needs to convey information about the client certificate to the origin application server. A common way this information is conveyed in practice today is by using non-standard headers to carry the certificate (in some encoding) or individual parts thereof in the HTTP request that is dispatched to the origin server. This solution works but interoperability between independently developed components can be cumbersome or even impossible depending on the implementation choices respectively made (like what header names are used or are configurable, which parts of the certificate are exposed, or how the certificate is encoded). A well-known predictable approach to this commonly occurring functionality could improve and simplify interoperability between independent implementations.</t>
         <t>This document aspires to standardize an HTTP header field named <spanx style="verb">Client-Cert</spanx> that a TLS terminating reverse proxy (TTRP) adds to requests that it sends to the backend origin servers. The header value contains the client certificate from the mutually-authenticated TLS connection between the originating client and the TTRP. This enables the backend origin server to utilize the client certificate information in its application logic. While there may be additional proxies or hops between the TTRP and the origin server (potentially even with mutually-authenticated TLS connections between them), the scope of the <spanx style="verb">Client-Cert</spanx> header is intentionally limited to exposing to the origin server the certificate that was presented by the originating client in its connection to the TTRP.</t>
         <section anchor="requirements-notation-and-conventions">
            <name>Requirements Notation and Conventions</name>
            <t>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 <xref target="RFC2119"/>
               <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
         </section>
         <section anchor="terminology">
            <name>Terminology</name>
            <t>Phrases like TLS client certificate authentication or mutually-authenticated TLS are used throughout this document to refer to the process whereby, in addition to the normal TLS server authentication with a certificate, a client presents its X.509 certificate <xref target="RFC5280"/> and proves possession of the corresponding private key to a server when negotiating a TLS connection or the resumption of such a connection. In contemporary versions of TLS <xref target="RFC8446"/>
               <xref target="RFC5246"/> this requires that the client send the Certificate and CertificateVerify messages during the handshake and for the server to verify the CertificateVerify and Finished messages.</t>
            <t>
               <list style="empty">
                  <t>TODO: HTTP2 forbids TLS renegotiation and post-handshake authentication but it's possible with HTTP1.1 and maybe needs to be discussed explicitly here or somewhere in this document? Naively I'd say that the <spanx style="verb">Client-Cert</spanx> header will be sent with the data of the most recent client cert anytime after renegotiation or post-handshake auth. And only for requests that are fully covered by the cert but that in practice making the determination of where exactly in the application data the cert messages arrived is hard to impossible so it'll be a best effort kind of thing.</t>
               </list>
            </t>
         </section>
      </section>
      <section anchor="http-header-field-and-processing-rules">
         <name>HTTP Header Field and Processing Rules</name>
         <section anchor="encoding">
            <name>Encoding</name>
            <t>The field-values of the HTTP header defined herein utilize the following encoded form.</t>
            <t>A certificate is represented in text as an <spanx style="verb">EncodedCertificate</spanx>, which is the base64-encoded (<xref target="RFC4648" x:fmt="of" x:sec="4"/>) DER <xref target="ITU.X690.1994"/> PKIX certificate. The encoded value MUST NOT include any line breaks, whitespace, or other additional characters. ABNF <xref target="RFC5234"/> syntax for <spanx style="verb">EncodedCertificate</spanx> is shown in the figure below.</t>
            <figure>
               <artwork>
 EncodedCertificate = 1*( DIGIT / ALPHA / "+" / "/" ) 0*2"="

 DIGIT = &lt;Defined in Section B.1 of [RFC5234]&gt;  ; A-Z / a-z
 ALPHA = &lt;Defined in Section B.1 of [RFC5234]&gt;  ; 0-9
</artwork>
            </figure>
         </section>
         <section anchor="header">
            <name>Client-Cert HTTP Header Field</name>
            <t>In the context of a TLS terminating reverse proxy (TTRP) deployment, the TTRP makes the TLS client certificate available to the backend application with the following header field.</t>
            <dl>
               <dt>Client-Cert:</dt>
               <dd>
                  <t>The end-entity client certificate as an <spanx style="verb">EncodedCertificate</spanx> value.</t>
               </dd>
            </dl>
            <t>The <spanx style="verb">Client-Cert</spanx> header field defined herein is only for use in HTTP requests and MUST NOT be used in HTTP responses. It is a single HTTP header field-value as defined in <xref target="RFC7230" x:fmt="of" x:sec="3.2"/>, which MUST NOT have a list of values or occur multiple times in a request.</t>
         </section>
         <section anchor="processing-rules">
            <name>Processing Rules</name>
            <t>This section outlines the applicable processing rules for a TLS terminating reverse proxy (TTRP) that has negotiated a mutually-authenticated TLS connection to convey the client certificate from that connection to the backend origin servers. Use of the technique is to be a configuration or deployment option and the processing rules described herein are for servers operating with that option enabled.</t>
            <t>A TTRP negotiates the use of a mutually-authenticated TLS connection with the client, such as is described in <xref target="RFC8446"/> or <xref target="RFC5246"/>, and validates the client certificate per its policy and trusted certificate authorities. Each HTTP request on the underlying TLS connection are dispatched to the origin server with the following modifications:</t>
            <t>
               <list style="numbers">
                  <t>The client certificate is be placed in the <spanx style="verb">Client-Cert</spanx> header field of the dispatched request as defined in <xref target="header"/>.</t>
                  <t>Any occurrence of the <spanx style="verb">Client-Cert</spanx> header in the original incoming request MUST be removed or overwritten before forwarding the request. An incoming request that has a <spanx style="verb">Client-Cert</spanx> header MAY be rejected with an HTTP 400 response.</t>
               </list>
            </t>
            <t>Requests made over a TLS connection where the use of client certificate authentication was not negotiated MUST be sanitized by removing any and all occurrences <spanx style="verb">Client-Cert</spanx> header field prior to dispatching the request to the backend server.</t>
            <t>Backend origin servers may then use the <spanx style="verb">Client-Cert</spanx> header of the request to determine if the connection from the client to the TTRP was mutually-authenticated and, if so, the certificate thereby presented by the client.</t>
            <t>Forward proxies and other intermediaries MUST NOT add the <spanx style="verb">Client-Cert</spanx> header to requests, or modify an existing <spanx style="verb">Client-Cert</spanx> header. Similarly, clients MUST NOT employ the <spanx style="verb">Client-Cert</spanx> header in requests.</t>
            <t>A server that receives a request with a <spanx style="verb">Client-Cert</spanx> header value that it considers to be too large can respond with an HTTP 431 status code per <xref target="RFC6585" x:fmt="of" x:sec="5"/>.</t>
         </section>
      </section>
      <section anchor="sec">
         <name>Security Considerations</name>
         <t>The header described herein enable a TTRP and backend or origin server to function together as though, from the client's perspective, they are a single logical server side deployment of HTTPS over a mutually-authenticated TLS connection. Use of the <spanx style="verb">Client-Cert</spanx> header outside that intended use case, however, may undermine the protections afforded by TLS client certificate authentication. Therefore steps MUST be taken to prevent unintended use, both in sending the header and in relying on its value.</t>
         <t>Producing and consuming the <spanx style="verb">Client-Cert</spanx> header SHOULD be a configurable option, respectively, in a TTRP and backend server (or individual application in that server). The default configuration for both should be to not use the <spanx style="verb">Client-Cert</spanx> header thus requiring an "opt-in" to the functionality.</t>
         <t>In order to prevent header injection, backend servers MUST only accept the <spanx style="verb">Client-Cert</spanx> header from a trusted TTRP (or other proxy in a trusted path from the TTRP). A TTRP MUST sanitize the incoming request before forwarding it on by removing or overwriting any existing instances of the header. Otherwise arbitrary clients can control the header value as seen and used by the backend server. It is important to note that neglecting to prevent header injection does not "fail safe" in that the nominal functionality will still work as expected even when malicious actions are possible. As such, extra care is recommended in ensuring that proper header sanitation is in place.</t>
         <t>The communication between a TTRP and backend server needs to be secured against eavesdropping and modification by unintended parties.</t>
         <t>The configuration options and request sanitization are necessarily functionally of the respective servers. The other requirements can be met in a number of ways, which will vary based on specific deployments. The communication between a TTRP and backend or origin server, for example, might be authenticated in some way with the insertion and consumption of the <spanx style="verb">Client-Cert</spanx> header occurring only on that connection. Alternatively the network topology might dictate a private network such that the backend application is only able to accept requests from the TTRP and the proxy can only make requests to that server. Other deployments that meet the requirements set forth herein are also possible.</t>
      </section>
      <section anchor="iana-considerations">
         <name>IANA Considerations</name>
         <t>
            <list style="empty">
               <t>TODO: register the <spanx style="verb">Client-Cert</spanx> HTTP header field in the registry defined by http-core.</t>
            </list>
         </t>
      </section>
   </middle>
   <back>
      <references title="Normative References">
         <reference anchor="RFC2119">
            <front>
               <title>Key words for use in RFCs to Indicate Requirement Levels</title>
               <author fullname="S. Bradner" initials="S." surname="Bradner"/>
               <date month="March" year="1997"/>
            </front>
            <seriesInfo name="BCP" value="14"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
         </reference>
         <reference anchor="RFC8174">
            <front>
               <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
               <author fullname="B. Leiba" initials="B." surname="Leiba"/>
               <date month="May" year="2017"/>
            </front>
            <seriesInfo name="BCP" value="14"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
         </reference>
         <reference anchor="RFC5280">
            <front>
               <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
               <author fullname="D. Cooper" initials="D." surname="Cooper"/>
               <author fullname="S. Santesson" initials="S." surname="Santesson"/>
               <author fullname="S. Farrell" initials="S." surname="Farrell"/>
               <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
               <author fullname="R. Housley" initials="R." surname="Housley"/>
               <author fullname="W. Polk" initials="W." surname="Polk"/>
               <date month="May" year="2008"/>
            </front>
            <seriesInfo name="RFC" value="5280"/>
            <seriesInfo name="DOI" value="10.17487/RFC5280"/>
         </reference>
         <reference anchor="RFC4648">
            <front>
               <title>The Base16, Base32, and Base64 Data Encodings</title>
               <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
               <date month="October" year="2006"/>
            </front>
            <seriesInfo name="RFC" value="4648"/>
            <seriesInfo name="DOI" value="10.17487/RFC4648"/>
         </reference>
         <reference anchor="ITU.X690.1994">
            <front>
               <title>Information Technology - ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
               <author>
                  <organization>International Telecommunications Union</organization>
               </author>
               <date month="" year="1994"/>
            </front>
            <seriesInfo name="ITU-T" value="Recommendation X.690"/>
         </reference>
      </references>
      <references title="Informative References">
         <reference anchor="RFC8446">
            <front>
               <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
               <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
               <date month="August" year="2018"/>
            </front>
            <seriesInfo name="RFC" value="8446"/>
            <seriesInfo name="DOI" value="10.17487/RFC8446"/>
         </reference>
         <reference anchor="RFC5246">
            <front>
               <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
               <author fullname="T. Dierks" initials="T." surname="Dierks"/>
               <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
               <date month="August" year="2008"/>
            </front>
            <seriesInfo name="RFC" value="5246"/>
            <seriesInfo name="DOI" value="10.17487/RFC5246"/>
         </reference>
         <reference anchor="RFC5234">
            <front>
               <title>Augmented BNF for Syntax Specifications: ABNF</title>
               <author fullname="D. Crocker"
                       initials="D."
                       role="editor"
                       surname="Crocker"/>
               <author fullname="P. Overell" initials="P." surname="Overell"/>
               <date month="January" year="2008"/>
            </front>
            <seriesInfo name="STD" value="68"/>
            <seriesInfo name="RFC" value="5234"/>
            <seriesInfo name="DOI" value="10.17487/RFC5234"/>
         </reference>
         <reference anchor="RFC7230">
            <front>
               <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
               <author fullname="R. Fielding"
                       initials="R."
                       role="editor"
                       surname="Fielding"/>
               <author fullname="J. Reschke"
                       initials="J."
                       role="editor"
                       surname="Reschke"/>
               <date month="June" year="2014"/>
            </front>
            <seriesInfo name="RFC" value="7230"/>
            <seriesInfo name="DOI" value="10.17487/RFC7230"/>
         </reference>
         <reference anchor="RFC6585">
            <front>
               <title>Additional HTTP Status Codes</title>
               <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
               <author fullname="R. Fielding" initials="R." surname="Fielding"/>
               <date month="April" year="2012"/>
            </front>
            <seriesInfo name="RFC" value="6585"/>
            <seriesInfo name="DOI" value="10.17487/RFC6585"/>
         </reference>
         <reference anchor="RFC7239">
            <front>
               <title>Forwarded HTTP Extension</title>
               <author fullname="A. Petersson" initials="A." surname="Petersson"/>
               <author fullname="M. Nilsson" initials="M." surname="Nilsson"/>
               <date month="June" year="2014"/>
            </front>
            <seriesInfo name="RFC" value="7239"/>
            <seriesInfo name="DOI" value="10.17487/RFC7239"/>
         </reference>
         <reference anchor="RFC8705">
            <front>
               <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
               <author fullname="B. Campbell" initials="B." surname="Campbell"/>
               <author fullname="J. Bradley" initials="J." surname="Bradley"/>
               <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
               <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
               <date month="February" year="2020"/>
            </front>
            <seriesInfo name="RFC" value="8705"/>
            <seriesInfo name="DOI" value="10.17487/RFC8705"/>
         </reference>
         <reference anchor="RFC8941">
            <front>
               <title>Structured Field Values for HTTP</title>
               <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
               <author fullname="P-H. Kamp" initials="P-H." surname="Kamp"/>
               <date month="February" year="2021"/>
            </front>
            <seriesInfo name="RFC" value="8941"/>
            <seriesInfo name="DOI" value="10.17487/RFC8941"/>
         </reference>
         <reference anchor="RFC7250">
            <front>
               <title>Using Raw Public Keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
               <author fullname="P. Wouters"
                       initials="P."
                       role="editor"
                       surname="Wouters"/>
               <author fullname="H. Tschofenig"
                       initials="H."
                       role="editor"
                       surname="Tschofenig"/>
               <author fullname="J. Gilmore" initials="J." surname="Gilmore"/>
               <author fullname="S. Weiler" initials="S." surname="Weiler"/>
               <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
               <date month="June" year="2014"/>
            </front>
            <seriesInfo name="RFC" value="7250"/>
            <seriesInfo name="DOI" value="10.17487/RFC7250"/>
         </reference>
      </references>
      <section anchor="example">
         <name>Example</name>
         <t>In a hypothetical example where a TLS client presents the client and intermediate certificate from <xref target="example-chain"/> when establishing a mutually-authenticated TLS connection with the TTRP, the proxy would send the <spanx style="verb">Client-Cert</spanx> header shown in {#example-header} to the backend. Note that line breaks and whitespace have been added to the value of the header field in <xref target="example-header"/> for display and formatting purposes only.</t>
         <figure anchor="example-chain"
                 title="Certificate Chain (with client certificate first)">
            <artwork>
-----BEGIN CERTIFICATE-----
MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKDBJMZXQncyBB
dXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTAeFw0yMDAx
MTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFkwEwYHKoZI
zj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmckC8vdgJ1p
5Be5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDVR0TBAIw
ADAfBgNVHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf8EBAMC
BsAwEwYDVR0lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV4YW1w
bGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6bMje
SkC3dFCOOB8TAiEAx/kHSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIB5jCCAYugAwIBAgIBFjAKBggqhkjOPQQDAjBWMQswCQYDVQQGEwJVUzEbMBkG
A1UECgwSTGV0J3MgQXV0aGVudGljYXRlMSowKAYDVQQDDCFMZXQncyBBdXRoZW50
aWNhdGUgUm9vdCBBdXRob3JpdHkwHhcNMjAwMTE0MjEzMjMwWhcNMzAwMTExMjEz
MjMwWjA6MRswGQYDVQQKDBJMZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxB
IEludGVybWVkaWF0ZSBDQTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJf+aA54
RC5pyLAR5yfXVYmNpgd+CGUTDp2KOGhc0gK91zxhHesEYkdXkpS2UN8Kati+yHtW
CV3kkhCngGyv7RqjZjBkMB0GA1UdDgQWBBRm3WjLa38lbEYCuiCPct0ZaSED2DAf
BgNVHSMEGDAWgBTEA2Q6eecKu9g9yb5glbkhhVINGDASBgNVHRMBAf8ECDAGAQH/
AgEAMA4GA1UdDwEB/wQEAwIBhjAKBggqhkjOPQQDAgNJADBGAiEA5pLvaFwRRkxo
mIAtDIwg9D7gC1xzxBl4r28EzmSO1pcCIQCJUShpSXO9HDIQMUgH69fNDEMHXD3R
RX5gP7kuu2KGMg==
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIICBjCCAaygAwIBAgIJAKS0yiqKtlhoMAoGCCqGSM49BAMCMFYxCzAJBgNVBAYT
AlVTMRswGQYDVQQKDBJMZXQncyBBdXRoZW50aWNhdGUxKjAoBgNVBAMMIUxldCdz
IEF1dGhlbnRpY2F0ZSBSb290IEF1dGhvcml0eTAeFw0yMDAxMTQyMTI1NDVaFw00
MDAxMDkyMTI1NDVaMFYxCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJMZXQncyBBdXRo
ZW50aWNhdGUxKjAoBgNVBAMMIUxldCdzIEF1dGhlbnRpY2F0ZSBSb290IEF1dGhv
cml0eTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFoaHU+Z5bPKmGzlYXtCf+E6
HYj62fORaHDOrt+yyh3H/rTcs7ynFfGn+gyFsrSP3Ez88rajv+U2NfD0o0uZ4Pmj
YzBhMB0GA1UdDgQWBBTEA2Q6eecKu9g9yb5glbkhhVINGDAfBgNVHSMEGDAWgBTE
A2Q6eecKu9g9yb5glbkhhVINGDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE
AwIBhjAKBggqhkjOPQQDAgNIADBFAiEAmAeg1ycKHriqHnaD4M/UDBpQRpkmdcRF
YGMg1Qyrkx4CIB4ivz3wQcQkGhcsUZ1SOImd/lq1Q0FLf09rGfLQPWDc
-----END CERTIFICATE-----
</artwork>
         </figure>
         <figure anchor="example-header" title="Header in HTTP Request to Origin Server">
            <artwork>
Client-Cert: MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKDBJM
 ZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTAeFw0y
 MDAxMTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFkwEwYHKoZI
 zj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmckC8vdgJ1p5Be5
 F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDVR0TBAIwADAfBgNV
 HSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf8EBAMCBsAwEwYDVR0l
 BAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV4YW1wbGUuY29tMAoGCCqG
 SM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6bMjeSkC3dFCOOB8TAiEAx/kH
 SB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=
</artwork>
         </figure>
      </section>
      <section anchor="considerations-considered">
         <name>Considerations Considered</name>
         <section anchor="header-injection">
            <name>Header Injection</name>
            <t>This draft requires that the TTRP sanitize the headers of the incoming request by removing or overwriting any existing instances of the <spanx style="verb">Client-Cert</spanx> header before dispatching that request to the backend application. Otherwise, a client could inject its own <spanx style="verb">Client-Cert</spanx> header that would appear to the backend to have come from the TTRP. Although numerous other methods of detecting/preventing header injection are possible; such as the use of a unique secret value as part of the header name or value or the application of a signature, HMAC, or AEAD, there is no common general standardized mechanism. The potential problem of client header injection is not at all unique to the functionality of this draft and it would therefor be inappropriate for this draft to define a one-off solution. In the absence of a generic standardized solution existing currently, stripping/sanitizing the headers is the de facto means of protecting against header injection in practice today. Sanitizing the headers is sufficient when properly implemented and is normative requirement of <xref target="sec"/>.</t>
         </section>
         <section anchor="the-forwarded-http-extension">
            <name>The Forwarded HTTP Extension</name>
            <t>The <spanx style="verb">Forwarded</spanx> HTTP header field defined in <xref target="RFC7239"/> allows proxy components to disclose information lost in the proxying process. The TLS client certificate information of concern to this draft could have been communicated with an extension parameter to the <spanx style="verb">Forwarded</spanx> header field, however, doing so would have had some disadvantages that this draft endeavored to avoid. The <spanx style="verb">Forwarded</spanx> header syntax allows for information about a full chain of proxied HTTP requests, whereas the <spanx style="verb">Client-Cert</spanx> header of this document is concerned only with conveying information about the certificate presented by the originating client on the TLS connection to the TTRP (which appears as the server from that client's perspective) to backend applications. The multi-hop syntax of the <spanx style="verb">Forwarded</spanx> header is expressive but also more complicated, which would make processing it more cumbersome, and more importantly, make properly sanitizing its content as required by <xref target="sec"/> to prevent header injection considerably more difficult and error prone. Thus, this draft opted for the flatter and more straightforward structure of a single <spanx style="verb">Client-Cert</spanx> header.</t>
         </section>
         <section anchor="the-whole-certificate-and-only-the-whole-certificate">
            <name>The Whole Certificate and Only the Whole Certificate</name>
            <t>Different applications will have varying requirements about what information from the client certificate is needed, such as the subject and/or issuer distinguished name, subject alternative name(s), serial number, subject public key info, fingerprint, etc.. Furthermore some applications, such as "OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens" <xref target="RFC8705"/>, make use of the entire certificate. In order to accommodate the latter and ensure wide applicability by not trying to cherry-pick particular certificate information, this draft opted to pass the full encoded certificate as the value of the <spanx style="verb">Client-Cert</spanx> header.</t>
            <t>The handshake and validation of the client certificate (chain) of the mutually-authenticated TLS connection is performed by the TTRP. With the responsibility of certificate validation falling on the TTRP, only the end-entity certificate is passed to the backend - the root Certificate Authority is not included nor are any intermediates.</t>
            <t>
               <list style="empty">
                  <t>TODO: It has been suggested that more information about the certificate chain might be needed/wanted by the backend application (to independently evaluate the cert chain, for example, although that seems like it would be terribly inefficient) and that any intermediates as well as the root should also be somehow conveyed, which is an area for further discussion should this draft progress. One potential approach suggested by a few folks is to allow some configurability in what is sent along with maybe a prefix token to indicate what's being sent - something like <spanx style="verb">Client-Cert: FULL \&lt;cert&gt; \&lt;intermediate&gt; \&lt;anchor&gt;</spanx> or <spanx style="verb">Client-Cert: EE \&lt;cert&gt;</spanx> as the strawman. Or a perhaps a parameter or other construct of <xref target="RFC8941"/> to indicate what's being sent. It's also been suggested that the end-entity certificate by itself might sometimes be too big (esp. e.g., with some post-quantum signature schemes). Hard to account for it both being too much data and not enough data at the same time. But potentially opening up configuration options to send only specific attribute(s) from the client certificate is a possibility for that. In the author's humble opinion the end-entity certificate by itself strikes a good balance for the vast majority of needs and avoids optionality. But, again, this is an area for further discussion should this draft progress.</t>
               </list>
            </t>
            <t>
               <list style="empty">
                  <t>TODO: It has also been suggested that maybe considerations for <xref target="RFC7250"/> Raw Public Keys is maybe worth considering. This too is this is an area for further discussion and consideration should this draft progress.</t>
               </list>
            </t>
         </section>
      </section>
      <section anchor="acknowledgements">
         <name>Acknowledgements</name>
         <t>The author would like to thank the following individuals who've contributed in various ways ranging from just being generally supportive of bringing forth the draft to providing specific feedback or content:</t>
         <t>
            <list style="symbols">
               <t>Evan Anderson</t>
               <t>Annabelle Backman</t>
               <t>Mike Bishop</t>
               <t>Rory Hewitt</t>
               <t>Fredrik Jeansson</t>
               <t>Benjamin Kaduk</t>
               <t>Torsten Lodderstedt</t>
               <t>Kathleen Moriarty</t>
               <t>Mark Nottingham</t>
               <t>Mike Ounsworth</t>
               <t>Matt Peterson</t>
               <t>Eric Rescorla</t>
               <t>Justin Richer</t>
               <t>Michael Richardson</t>
               <t>Joe Salowey</t>
               <t>Rich Salz</t>
               <t>Mohit Sethi</t>
               <t>Rifaat Shekh-Yusef</t>
               <t>Travis Spencer</t>
               <t>Nick Sullivan</t>
               <t>Peter Wu</t>
               <t>Hans Zandbelt</t>
            </list>
         </t>
      </section>
      <section anchor="document-history">
         <name>Document History</name>
         <t>
            <list style="empty">
               <t>To be removed by the RFC Editor before publication as an RFC</t>
            </list>
         </t>
         <t>draft-ietf-httpbis-client-cert-field-00</t>
         <t>
            <list style="symbols">
               <t>Initial WG revision</t>
               <t>Mike Bishop added as co-editor</t>
            </list>
         </t>
         <t>draft-bdc-something-something-certificate-05</t>
         <t>
            <list style="symbols">
               <t>Change intended status of the draft to Informational</t>
               <t>Editorial updates and (hopefully) clarifications</t>
            </list>
         </t>
         <t>draft-bdc-something-something-certificate-04</t>
         <t>
            <list style="symbols">
               <t>Update reference from draft-ietf-oauth-mtls to RFC8705</t>
            </list>
         </t>
         <t>draft-bdc-something-something-certificate-03</t>
         <t>
            <list style="symbols">
               <t>Expanded further discussion notes to capture some of the feedback in and around the presentation of the draft in SECDISPATCH at IETF 107 and add those who've provided such feedback to the acknowledgements</t>
            </list>
         </t>
         <t>draft-bdc-something-something-certificate-02</t>
         <t>
            <list style="symbols">
               <t>Editorial tweaks + further discussion notes</t>
            </list>
         </t>
         <t>draft-bdc-something-something-certificate-01</t>
         <t>
            <list style="symbols">
               <t>Use the RFC v3 Format or die trying</t>
            </list>
         </t>
         <t>draft-bdc-something-something-certificate-00</t>
         <t>
            <list style="symbols">
               <t>Initial draft after a time constrained and rushed <eref target="https://datatracker.ietf.org/meeting/106/materials/slides-106-secdispatch-securing-protocols-between-proxies-and-backend-http-servers-00">secdispatch presentation</eref> at IETF 106 in Singapore with the recommendation to write up a draft (at the end of the <eref target="https://datatracker.ietf.org/meeting/106/materials/minutes-106-secdispatch">minutes</eref>) and some folks expressing interest despite the rather poor presentation</t>
            </list>
         </t>
      </section>
   </back>
</rfc>
