<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-client-cert-field-04" category="info" submissionType="IETF" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title abbrev="Client-Cert Header">Client-Cert HTTP Header Field</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-client-cert-field-04"/>
    <author initials="B." surname="Campbell" fullname="Brian Campbell">
      <organization>Ping Identity</organization>
      <address>
        <email>bcampbell@pingidentity.com</email>
      </address>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
      <organization>Akamai</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>http</keyword>
    <keyword>client certificate</keyword>
    <abstract>
      <t>This document describes HTTP extension header fields that allow a TLS
terminating reverse proxy to convey the client certificate information of a
mutually-authenticated TLS connection to the origin server in a common and
predictable manner.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-client-cert-field/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/client-cert-field"/>.</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. At the time of writing, a common way this information is
conveyed is by using non-standard fields 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 field 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 describes two HTTP header fields, <tt>Client-Cert</tt>
and <tt>Client-Cert-Chain</tt>,  which a TLS terminating reverse proxy (TTRP) adds to
requests sent to the backend origin servers. The <tt>Client-Cert</tt> field value
contains the end-entity client certificate from  the mutually-authenticated TLS
connection between the originating client and the TTRP. Optionally, the
<tt>Client-Cert-Chain</tt> field value contains the certificate chain used for
validation of the end-entity certificate. 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
<tt>Client-Cert</tt> header field 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 "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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-and-applicability">
        <name>Terminology and Applicability</name>
        <t>This document uses the following terminology from <xref section="3" sectionFormat="of" target="RFC8941"/>
to specify syntax and parsing: List and Byte Sequence.</t>
        <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="TLS"/>
          <xref target="TLS1.2"/> 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>HTTP/2 restricts TLS 1.2 renegotiation (<xref section="9.2.1" sectionFormat="of" target="RFC9113"/>) and
prohibits TLS 1.3 post-handshake authentication <xref target="RFC8740"/>. However, they are
sometimes used to implement reactive client certificate authentication in HTTP/1.1
<xref target="RFC9112"/> where the server decides whether to request a client certificate
based on the HTTP request. HTTP application data sent on such a connection
after receipt and verification of the client certificate is also
mutually-authenticated and thus suitable for the mechanisms described in this
document. With post-handshake authentication there is also the possibility, though
unlikely in practice, of multiple certificates and certificate chains from the
client on a connection, in which case only the certificate and chain
of the last post-handshake authentication are to be utilized for the header
fields described herein.</t>
      </section>
    </section>
    <section anchor="headers">
      <name>HTTP Header Fields and Processing Rules</name>
      <t>This document designates the following headers, defined further in <xref target="header"/>
and <xref target="chain-header"/> respectively, to carry the client certificate information of a
mutually-authenticated TLS connection. The headers convey the information
from the reverse proxy to the origin server.</t>
      <dl>
        <dt>Client-Cert:</dt>
        <dd>
          <t>The end-entity certificate used by the client in the TLS handshake with
the reverse proxy.</t>
        </dd>
        <dt>Client-Cert-Chain:</dt>
        <dd>
          <t>The certificate chain used for validation of the end-entity
certificate provided by the client in the TLS handshake with the reverse proxy.</t>
        </dd>
      </dl>
      <section anchor="encoding">
        <name>Encoding</name>
        <t>The headers in this document encode certificates as Byte
Sequences (<xref section="3.3.5" sectionFormat="of" target="RFC8941"/>) where the value of the binary data
is a DER encoded <xref target="ITU.X690.1994"/> X.509 certificate <xref target="RFC5280"/>.
In effect, this means that the binary DER certificate is encoded using base64
(without line breaks, spaces, or other characters outside the base64 alphabet)
and delimited with colons on either side.</t>
        <t>Note that certificates are often stored encoded in a textual format, such as
the one described in <xref section="5.1" sectionFormat="of" target="RFC7468"/>, which is already nearly
compatible with a Byte Sequence; if so, it will be sufficient to replace
<tt>---(BEGIN|END) CERTIFICATE---</tt> with <tt>:</tt> and remove line breaks in order
to generate an appropriate item.</t>
      </section>
      <section anchor="header">
        <name>Client-Cert HTTP Header Field</name>
        <t>In the context of a TLS terminating reverse proxy deployment, the proxy
makes the TLS client certificate available to the backend application with the
Client-Cert HTTP header field. This field contains the end-entity certificate
used by the client in the TLS handshake.</t>
        <t>Client-Cert is a Byte Sequence with the value of
the header encoded as described in <xref target="encoding"/>.</t>
        <t>The <tt>Client-Cert</tt> header field is only for use in HTTP requests and <bcp14>MUST NOT</bcp14> be
used in HTTP responses.  It is a singleton header field value as defined in
<xref section="5.5" sectionFormat="of" target="RFC9110"/>, which <bcp14>MUST NOT</bcp14> have a list of values or occur
multiple times in a request.</t>
        <t><xref target="example-header"/> in <xref target="example"/> has an example of the <tt>Client-Cert</tt> header field.</t>
      </section>
      <section anchor="chain-header">
        <name>Client-Cert-Chain HTTP Header Field</name>
        <t>In the context of a TLS terminating reverse proxy deployment, the proxy
<bcp14>MAY</bcp14> make the certificate chain
available to the backend application with the Client-Cert-Chain HTTP header
field.</t>
        <t>Client-Cert-Chain is a List (<xref section="3.3.1" sectionFormat="of" target="RFC8941"/>).  Each item in the
list <bcp14>MUST</bcp14> be a Byte Sequence encoded as described in <xref target="encoding"/>. The order
is the same as the ordering in TLS (such as described in <xref section="4.4.2" sectionFormat="of" target="TLS"/>).</t>
        <t>The <tt>Client-Cert-Chain</tt> header field is only for use in HTTP requests and <bcp14>MUST
NOT</bcp14> be used in HTTP responses.  It <bcp14>MAY</bcp14> have a list of values or occur multiple
times in a request.  For header compression purposes, it might be advantageous
to split lists into multiple instances.</t>
        <t><xref target="example-chain-header"/> in <xref target="example"/> has an example of the <tt>Client-Cert-Chain</tt> header field.</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="TLS"/> 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>
        <ol spacing="normal" type="1"><li>The client certificate is placed in the <tt>Client-Cert</tt> header field of the
dispatched request, as described in <xref target="header"/>.</li>
          <li>If so configured, the validation chain of the client certificate is placed in
the <tt>Client-Cert-Chain</tt> header field of the request, as described in
<xref target="chain-header"/>.</li>
          <li>Any occurrence of the <tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> header fields in
the original incoming request <bcp14>MUST</bcp14> be removed or overwritten before
forwarding the request. An incoming request that has a <tt>Client-Cert</tt> or
<tt>Client-Cert-Chain</tt> header field <bcp14>MAY</bcp14> be rejected with an HTTP 400 response.</li>
        </ol>
        <t>Requests made over a TLS connection where the use of client certificate
authentication was not negotiated <bcp14>MUST</bcp14> be sanitized by removing any and all
occurrences of the <tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt> header fields prior to
dispatching the request to the backend server.</t>
        <t>Backend origin servers may then use the <tt>Client-Cert</tt> header field 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.
Access control decisions based on the client certificate (or lack thereof) can be
conveyed by selecting response content as appropriate or with an HTTP 403 response,
if the certificate is deemed unacceptable for the given context.
Note that TLS clients that rely on error indications at the TLS layer for an
unacceptable certificate will not receive those signals.</t>
        <t>When the value of the <tt>Client-Cert</tt> request header field is used to select a response
(e.g., the response content is access-controlled), the response <bcp14>MUST</bcp14> either be
uncacheable (e.g., by sending <tt>Cache-Control: no-store</tt>) or be designated for
selective reuse only for subsequent requests with the same <tt>Client-Cert</tt>
header value by sending a <tt>Vary: Client-Cert</tt> response header.
If a TTRP encounters a response with a <tt>client-cert</tt> field name in the <tt>Vary</tt>
header field, it <bcp14>SHOULD</bcp14> prevent the user agent from caching the response by
transforming the value of the <tt>Vary</tt> response header field to <tt>*</tt>.</t>
        <t>Forward proxies and other intermediaries <bcp14>MUST NOT</bcp14> add the <tt>Client-Cert</tt> or
<tt>Client-Cert-Chain</tt> header fields to requests, or modify an existing
<tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> header field. Similarly, clients <bcp14>MUST NOT</bcp14>
employ the <tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> header field in requests.</t>
      </section>
    </section>
    <section anchor="deployment">
      <name>Deployment Considerations</name>
      <section anchor="header-field-compression">
        <name>Header Field Compression</name>
        <t>If the connection between the TTRP and origin is capable of field compression
(e.g., HPACK <xref target="HPACK"/> or QPACK <xref target="QPACK"/>), and the TTRP multiplexes more
than one client's requests into that connection, the size and variation of <tt>Client-Cert</tt> and
<tt>Client-Cert-Chain</tt> field values can reduce compression efficiency significantly.
An origin could mitigate the efficiency loss by increasing the size of the dynamic table.
If the TTRP determines that the origin dynamic table is not sufficiently large,
it may find it beneficial to always send the field value as a literal,
rather than entering it into the table.</t>
      </section>
      <section anchor="message-header-size">
        <name>Message Header Size</name>
        <t>A server in receipt of a larger message header than it is willing to handle can send
an HTTP 431 (Request Header Fields Too Large) status code per <xref section="5" sectionFormat="of" target="RFC6585"/>.
Due to the typical size of the field values containing certificate data,
recipients may need to be configured to allow for a larger maximum header size.
An intermediary generating client certificate header fields on connections that allow
for advertising the maximum acceptable header size (e.g. HTTP/2 <xref target="RFC9113"/>
or HTTP/3 <xref target="RFC9114"/>) should account for the additional size of the header
of the requests it sends vs. requests it receives by advertising a value to its
clients that is sufficiently smaller so as to allow for the addition of certificate data.</t>
      </section>
      <section anchor="tls-session-resumption">
        <name>TLS Session Resumption</name>
        <t>Some TLS implementations do not retain client certificate information when resuming.
Providing inconsistent values of Client-Cert and Client-Cert-Chain when resuming might
lead to errors, so implementations that are unable to provide these values <bcp14>SHOULD</bcp14>
either disable resumption for connections with client certificates or initially omit a
<tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> field if it might not be available after resuming.</t>
      </section>
    </section>
    <section anchor="sec">
      <name>Security Considerations</name>
      <t>The header fields 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 header fields outside that intended use
case, however, may undermine the protections afforded by TLS client certificate
authentication. Therefore, steps <bcp14>MUST</bcp14> be taken to prevent unintended use, both in
sending the header field and in relying on its value.</t>
      <t>Producing and consuming the <tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt> header
fields <bcp14>SHOULD</bcp14> be configurable
options, respectively, in a TTRP and backend server (or individual application in
that server). The default configuration for both should be to not use the
header fields thus requiring an "opt-in" to the functionality.</t>
      <t>In order to prevent field injection, backend servers <bcp14>MUST</bcp14> only accept the
<tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt> header fields from a trusted
TTRP (or other proxy in a trusted path
from the TTRP). A TTRP <bcp14>MUST</bcp14> sanitize the incoming request before forwarding it
on by removing or overwriting any existing instances of the fields. Otherwise,
arbitrary clients can control the field values as seen and used by the backend
server. It is important to note that neglecting to prevent field 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 field 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 <tt>Client-Cert</tt>
and <tt>Client-Cert-Chain</tt> header fields occurring
only on that connection.
<xref section="B.3" sectionFormat="of" target="I-D.ietf-httpbis-message-signatures"/> gives one example of
this with an application of HTTP Message Signatures.
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>
      <section anchor="http-field-name-registrations">
        <name>HTTP Field Name Registrations</name>
        <t>Please register the following entries in the "Hypertext Transfer Protocol (HTTP) Field
Name Registry" defined by HTTP Semantics <xref target="RFC9110"/>:</t>
        <ul spacing="normal">
          <li>Field name: Client-Cert</li>
          <li>Status: permanent</li>
          <li>Specification document: <xref target="headers"/> of [this document]
<br/></li>
          <li>Field name: Client-Cert-Chain</li>
          <li>Status: permanent</li>
          <li>Specification document: <xref target="headers"/> of [this document]</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="RFC8941" to="STRUCTURED-FIELDS"/>
    <displayreference target="RFC9110" to="HTTP"/>
    <displayreference target="RFC9112" to="HTTP/1.1"/>
    <displayreference target="RFC9113" to="HTTP/2"/>
    <displayreference target="RFC9114" to="HTTP/3"/>
    <displayreference target="I-D.ietf-httpbis-message-signatures" to="HTTPSIG"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC8941">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </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">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </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">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </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 year="1994"/>
          </front>
          <seriesInfo name="ITU-T" value="Recommendation X.690"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns. </t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC9114">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-message-signatures">
          <front>
            <title>HTTP Message Signatures</title>
            <author fullname="Annabelle Backman" initials="A." surname="Backman">
              <organization>Amazon</organization>
            </author>
            <author fullname="Justin Richer" initials="J." surname="Richer">
              <organization>Bespoke Engineering</organization>
            </author>
            <author fullname="Manu Sporny" initials="M." surname="Sporny">
              <organization>Digital Bazaar</organization>
            </author>
            <date day="21" month="November" year="2022"/>
            <abstract>
              <t>   This document describes a mechanism for creating, encoding, and
   verifying digital signatures or message authentication codes over
   components of an HTTP message.  This mechanism supports use cases
   where the full HTTP message may not be known to the signer, and where
   the message may be transformed (e.g., by intermediaries) before
   reaching the verifier.  This document also describes a means for
   requesting that a signature be applied to a subsequent HTTP message
   in an ongoing HTTP exchange.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-message-signatures-15"/>
        </reference>
        <reference anchor="TLS">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="TLS1.2">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC8740">
          <front>
            <title>Using TLS 1.3 with HTTP/2</title>
            <author fullname="D. Benjamin" initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document updates RFC 7540 by forbidding TLS 1.3 post-handshake authentication, as an analog to the existing TLS 1.2 renegotiation restriction.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8740"/>
          <seriesInfo name="DOI" value="10.17487/RFC8740"/>
        </reference>
        <reference anchor="RFC7468">
          <front>
            <title>Textual Encodings of PKIX, PKCS, and CMS Structures</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="S. Leonard" initials="S." surname="Leonard">
              <organization/>
            </author>
            <date month="April" year="2015"/>
            <abstract>
              <t>This document describes and discusses the textual encodings of the Public-Key Infrastructure X.509 (PKIX), Public-Key Cryptography Standards (PKCS), and Cryptographic Message Syntax (CMS).  The textual encodings are well-known, are implemented by several applications and libraries, and are widely deployed.  This document articulates the de facto rules by which existing implementations operate and defines them so that future implementations can interoperate.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7468"/>
          <seriesInfo name="DOI" value="10.17487/RFC7468"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="HPACK">
          <front>
            <title>HPACK: Header Compression for HTTP/2</title>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="H. Ruellan" initials="H." surname="Ruellan">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification defines HPACK, a compression format for efficiently representing HTTP header fields, to be used in HTTP/2.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7541"/>
          <seriesInfo name="DOI" value="10.17487/RFC7541"/>
        </reference>
        <reference anchor="QPACK">
          <front>
            <title>QPACK: Field Compression for HTTP/3</title>
            <author fullname="C. Krasic" initials="C." surname="Krasic">
              <organization/>
            </author>
            <author fullname="M. Bishop" initials="M." surname="Bishop">
              <organization/>
            </author>
            <author fullname="A. Frindell" initials="A." role="editor" surname="Frindell">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification defines QPACK: a compression format for efficiently representing HTTP fields that is to be used in HTTP/3. This is a variation of HPACK compression that seeks to reduce head-of-line blocking.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9204"/>
          <seriesInfo name="DOI" value="10.17487/RFC9204"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations.  [STANDARDS-TRACK]</t>
            </abstract>
          </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">
              <organization/>
            </author>
            <author fullname="M. Nilsson" initials="M." surname="Nilsson">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document defines an HTTP extension header field that allows proxy components to disclose information lost in the proxying process, for example, the originating IP address of a request or IP address of the proxy on the user-agent-facing interface.  In a path of proxying components, this makes it possible to arrange it so that each subsequent component will have access to, for example, all IP addresses used in the chain of proxied HTTP requests.</t>
              <t>This document also specifies guidelines for a proxy administrator to anonymize the origin of a request.</t>
            </abstract>
          </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">
              <organization/>
            </author>
            <author fullname="J. Bradley" initials="J." surname="Bradley">
              <organization/>
            </author>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates.  OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8705"/>
          <seriesInfo name="DOI" value="10.17487/RFC8705"/>
        </reference>
      </references>
    </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
<tt>Client-Cert</tt> field shown in <xref target="example-header"/> to the backend. Note that line
breaks and whitespace have been added to the field value in <xref target="example-header"/>
and <xref target="example-chain-header"/>
for display and formatting purposes only.</t>
      <figure anchor="example-chain">
        <name>Certificate Chain (with client certificate first)</name>
        <artwork><![CDATA[
-----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">
        <name>Header Field in HTTP Request to Origin Server</name>
        <artwork><![CDATA[
Client-Cert: :MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKDBJ
 MZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTAeFw0
 yMDAxMTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFkwEwYHKoZ
 Izj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmckC8vdgJ1p5Be
 5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDVR0TBAIwADAfBgN
 VHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf8EBAMCBsAwEwYDVR0
 lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV4YW1wbGUuY29tMAoGCCq
 GSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6bMjeSkC3dFCOOB8TAiEAx/k
 HSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=:
]]></artwork>
      </figure>
      <t>If the proxy were configured to also include the certificate chain, it would
also include this header:</t>
      <figure anchor="example-chain-header">
        <name>Certificate Chain in HTTP Request to Origin Server</name>
        <artwork><![CDATA[
Client-Cert-Chain: :MIIB5jCCAYugAwIBAgIBFjAKBggqhkjOPQQDAjBWMQsw
 CQYDVQQGEwJVUzEbMBkGA1UECgwSTGV0J3MgQXV0aGVudGljYXRlMSowKAYDVQQ
 DDCFMZXQncyBBdXRoZW50aWNhdGUgUm9vdCBBdXRob3JpdHkwHhcNMjAwMTE0Mj
 EzMjMwWhcNMzAwMTExMjEzMjMwWjA6MRswGQYDVQQKDBJMZXQncyBBdXRoZW50a
 WNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTBZMBMGByqGSM49AgEG
 CCqGSM49AwEHA0IABJf+aA54RC5pyLAR5yfXVYmNpgd+CGUTDp2KOGhc0gK91zx
 hHesEYkdXkpS2UN8Kati+yHtWCV3kkhCngGyv7RqjZjBkMB0GA1UdDgQWBBRm3W
 jLa38lbEYCuiCPct0ZaSED2DAfBgNVHSMEGDAWgBTEA2Q6eecKu9g9yb5glbkhh
 VINGDASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAKBggqhkjO
 PQQDAgNJADBGAiEA5pLvaFwRRkxomIAtDIwg9D7gC1xzxBl4r28EzmSO1pcCIQC
 JUShpSXO9HDIQMUgH69fNDEMHXD3RRX5gP7kuu2KGMg==:, :MIICBjCCAaygAw
 IBAgIJAKS0yiqKtlhoMAoGCCqGSM49BAMCMFYxCzAJBgNVBAYTAlVTMRswGQYDV
 QQKDBJMZXQncyBBdXRoZW50aWNhdGUxKjAoBgNVBAMMIUxldCdzIEF1dGhlbnRp
 Y2F0ZSBSb290IEF1dGhvcml0eTAeFw0yMDAxMTQyMTI1NDVaFw00MDAxMDkyMTI
 1NDVaMFYxCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJMZXQncyBBdXRoZW50aWNhdG
 UxKjAoBgNVBAMMIUxldCdzIEF1dGhlbnRpY2F0ZSBSb290IEF1dGhvcml0eTBZM
 BMGByqGSM49AgEGCCqGSM49AwEHA0IABFoaHU+Z5bPKmGzlYXtCf+E6HYj62fOR
 aHDOrt+yyh3H/rTcs7ynFfGn+gyFsrSP3Ez88rajv+U2NfD0o0uZ4PmjYzBhMB0
 GA1UdDgQWBBTEA2Q6eecKu9g9yb5glbkhhVINGDAfBgNVHSMEGDAWgBTEA2Q6ee
 cKu9g9yb5glbkhhVINGDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBh
 jAKBggqhkjOPQQDAgNIADBFAiEAmAeg1ycKHriqHnaD4M/UDBpQRpkmdcRFYGMg
 1Qyrkx4CIB4ivz3wQcQkGhcsUZ1SOImd/lq1Q0FLf09rGfLQPWDc:
]]></artwork>
      </figure>
    </section>
    <section anchor="considerations-considered">
      <name>Considerations Considered</name>
      <section anchor="field-injection">
        <name>Field Injection</name>
        <t>This draft requires that the TTRP sanitize the fields of the incoming request by
removing or overwriting any existing instances of the <tt>Client-Cert</tt>
and <tt>Client-Cert-Chain</tt> header fields
before dispatching that request to the backend application. Otherwise, a client
could inject its own values that would appear to the backend to
have come from the TTRP. Although numerous other methods of detecting/preventing
field injection are possible; such as the use of a unique secret value as part
of the field name or value or the application of a signature, HMAC, or AEAD,
there is no common general mechanism. The potential problem of
client field injection is not at all unique to the functionality of this draft,
and it would therefore be inappropriate for this draft to define a one-off
solution. In the absence of a generic common solution existing currently,
stripping/sanitizing the fields is the de facto means of protecting against
field injection in practice. Sanitizing the fields is sufficient when
properly implemented and is a normative requirement of <xref target="sec"/>.</t>
      </section>
      <section anchor="the-forwarded-http-extension">
        <name>The Forwarded HTTP Extension</name>
        <t>The <tt>Forwarded</tt> 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 <tt>Forwarded</tt> field; however, doing so
would have had some disadvantages that this draft endeavored to avoid. The
<tt>Forwarded</tt> field syntax allows for information about a full chain of proxied
HTTP requests, whereas the <tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt>
header fields of this document are 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 <tt>Forwarded</tt> field 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 field injection
considerably more difficult and error-prone. Thus, this draft opted for a
flatter and more straightforward structure.</t>
      </section>
      <section anchor="the-whole-certificate-and-certificate-chain">
        <name>The Whole Certificate and Certificate Chain</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
<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 <tt>Client-Cert</tt> field.</t>
        <t>The validation of the client certificate and chain of the mutually-authenticated
TLS connection is typically performed by the TTRP during the handshake.  With the
responsibility of certificate validation falling on the TTRP, the
end-entity certificate is oftentimes sufficient for the needs of the origin server.
The separate <tt>Client-Cert-Chain</tt> field can convey the certificate chain for
origin server deployments that require this additional information.</t>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors 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>
      <ul spacing="normal">
        <li>Evan Anderson</li>
        <li>Annabelle Backman</li>
        <li>Alan Frindell</li>
        <li>Rory Hewitt</li>
        <li>Fredrik Jeansson</li>
        <li>Benjamin Kaduk</li>
        <li>Torsten Lodderstedt</li>
        <li>Kathleen Moriarty</li>
        <li>Mark Nottingham</li>
        <li>Erik Nygren</li>
        <li>Mike Ounsworth</li>
        <li>Lucas Pardue</li>
        <li>Matt Peterson</li>
        <li>Eric Rescorla</li>
        <li>Justin Richer</li>
        <li>Michael Richardson</li>
        <li>Joe Salowey</li>
        <li>Rich Salz</li>
        <li>Mohit Sethi</li>
        <li>Rifaat Shekh-Yusef</li>
        <li>Travis Spencer</li>
        <li>Nick Sullivan</li>
        <li>Willy Tarreau</li>
        <li>Martin Thomson</li>
        <li>Peter Wu</li>
        <li>Hans Zandbelt</li>
      </ul>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <ul empty="true">
        <li>
          <t>To be removed by the RFC Editor before publication as an RFC</t>
        </li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-04</t>
      <ul spacing="normal">
        <li>Updates, fixes, and clarifications from WGLC feedback</li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-03</t>
      <ul spacing="normal">
        <li>State that the certificate chain is in the same order as it appears in TLS rather than copying the language from TLS</li>
        <li>Update references for HTTP Semantics, HTTP/3, and QPACK to point to the now RFCs 9110/9114/9204</li>
        <li>HTTP Semantics now a normative ref</li>
        <li>Mention that origin server access control decisions can be
conveyed by selecting response content or with a 403</li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-02</t>
      <ul spacing="normal">
        <li>Add a note about cert retention on TLS session resumption</li>
        <li>Say to use only the last one in the case of multiple post-handshake client cert authentications</li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-01</t>
      <ul spacing="normal">
        <li>Use RFC 8941 Structured Field Values for HTTP</li>
        <li>Introduce a separate header that can convey the certificate chain</li>
        <li>Add considerations on header compression and size</li>
        <li>Describe interaction with caching</li>
        <li>Fill out IANA Considerations with HTTP field name registrations</li>
        <li>Discuss renegotiation</li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-00</t>
      <ul spacing="normal">
        <li>Initial WG revision</li>
        <li>Mike Bishop added as co-editor</li>
      </ul>
      <t>draft-bdc-something-something-certificate-05</t>
      <ul spacing="normal">
        <li>Change intended status of the draft to Informational</li>
        <li>Editorial updates and (hopefully) clarifications</li>
      </ul>
      <t>draft-bdc-something-something-certificate-04</t>
      <ul spacing="normal">
        <li>Update reference from draft-ietf-oauth-mtls to RFC8705</li>
      </ul>
      <t>draft-bdc-something-something-certificate-03</t>
      <ul spacing="normal">
        <li>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</li>
      </ul>
      <t>draft-bdc-something-something-certificate-02</t>
      <ul spacing="normal">
        <li>Editorial tweaks + further discussion notes</li>
      </ul>
      <t>draft-bdc-something-something-certificate-01</t>
      <ul spacing="normal">
        <li>Use the RFC v3 Format or die trying</li>
      </ul>
      <t>draft-bdc-something-something-certificate-00</t>
      <ul spacing="normal">
        <li>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</li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
0vEz4RDrpaPxtdvoHjWWvI/1cTvbU2CT43qtU298HL1V9b1dcdHcmy8/1y/2
lqMvVzezk/nYeds8uuy35tufTo8mw9r40/7Ww/3k2I3bN1Pny3Te2748+fAJ
rMTb5XFyLZpXO9PppBmMj5Z37y/+uP1625h2G7UjIK7TGp9fN57m5ZEoMn6/
Xd8+f+e6w0/p/nh/Odgb+4PpZHLVOYHve3TvRZcYv9mqHyE/C1hfvVvf5REX
7cbm4ryN/DAp88L45GO91ThC9tybf74DbXFxMb0PxaxTT1qdxXi/9X7c3Lp/
uG/4u9H2h/bDrHe6NR82O+fNj5e9ybz35XT/uNU5716Oj9/tj05a7e7xl9bO
hbj4sjc+ez9N0+1PR93x7/8GQzcbyNBqaRj6Y/1Tr7b0/viU+JOwLJzdwxtL
s930AUhe9Z/LSp9u66Fhpc7lve80nQdgp8Mt52jiD4KL+c02sVNvsL1f09fv
hjO/5lrKl3Rvv7N10rpC3VsTdLE1zS6Wp/izGYqfTfFnMxQ8xWdIwGGoji/f
ft0bnH2aHT34N1+S5uht+504vrl9tz06vVDHrdMoebtcTnaON6P+MH6/DA5H
R8Hb8fIwjnpnO+2HDx8idXv39nL7ZNSqhbX06+7Z7FbcPDQmRQl4kqlHZQEQ
T9x8ZktAow+GAySgzPziEe7vAPcfIvfP6u54azn8dBx5fxwHqrXb3bxsNebn
F/PpzBleHIobYOOt82U0vd8F1b/r3T3sLM6H51NQCPHl163eaWfmbPp/bJ3X
Dj+PavvR0ejz+dl1a/gE4yOQ+H4gfytAEkmHDf7+ym6k5Oj460fC0QB9ojh5
8+oHQxO7h0gevBCMCPlshfsEGhEyF4mXwxEhO/8uHgE4IuS/BUg0HhHyxYjE
AiRCvgiSlBCJkL+MSdZAEiGfDUoOVjjWZEeZZQuJf1OefZHXcZ1yXKRHvjGy
q04ua1/CjVazkJjt0ScslYuZSFq4jwe9EFG6GRwynt3BiljodjcWjufCJSHX
AaZfwEtCrkVMzwdMQq6HTM9GTEL+kgivGgygwSOg6ZmYSchHUdPzQJOQj8Om
Z6EmEODHcdNzYJOQTwGnZ+AmIZ9ETmXgdLBBfGqhINCHv4yDCiBDyBcAIRtl
CPkSJGQBISFfBIXyOQr5MiyUQSEhXwiGDBYS8qVoSIMhUN8vhUN8r5Avx0PE
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

-->

</rfc>
