1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
==================
ASGI TLS Extension
==================
**Version**: 0.2 (2020-10-02)
This specification outlines how to report TLS (or SSL) connection information
in the ASGI *connection scope* object.
The Base Protocol
-----------------
TLS is not usable on its own, it always wraps another protocol.
So this specification is not designed to be usable on its own,
it must be used as an extension to another ASGI specification.
That other ASGI specification is referred to as the *base protocol
specification*.
For HTTP-over-TLS (HTTPS), use this TLS specification and the
ASGI HTTP specification. The *base protocol specification* is the
ASGI HTTP specification. (See :doc:`www`)
For WebSockets-over-TLS (wss:// protocol), use this TLS specification
and the ASGI WebSockets specification. The *base protocol specification*
is the ASGI WebSockets specification. (See :doc:`www`)
If using this extension with other protocols (not HTTPS or WebSockets), note
that the *base protocol specification* must define the *connection scope* in a
way that ensures it covers at most one TLS connection. If not, you cannot use
this extension.
When to use this extension
--------------------------
This extension must only be used for TLS connections.
For non-TLS connections, the ASGI server is forbidden from providing this
extension.
An ASGI application can check for the presence of the ``"tls"`` extension in
the ``extensions`` dictionary in the connection scope. If present, the server
supports this extension and the connection is over TLS. If not present,
either the server does not support this extension or the connection is not
over TLS.
TLS Connection Scope
--------------------
The *connection scope* information passed in ``scope`` contains an
``"extensions"`` key, which contains a dictionary of extensions. Inside that
dictionary, the key ``"tls"`` identifies the extension specified in this
document. The value will be a dictionary with the following entries:
* ``server_cert`` (*Unicode string or None*) -- The PEM-encoded conversion
of the x509 certificate sent by the server when establishing the TLS
connection. Some web server implementations may be unable to provide this
(e.g. if TLS is terminated by a separate proxy or load balancer); in that
case this shall be ``None``. Mandatory.
* ``client_cert_chain`` (*Iterable[Unicode string]*) -- An iterable of
Unicode strings, where each string is a PEM-encoded x509 certificate.
The first certificate is the client certificate. Any subsequent certificates
are part of the certificate chain sent by the client, with each certificate
signing the preceding one. If the client did not provide a client
certificate then it will be an empty iterable. Some web server
implementations may be unable to provide this (e.g. if TLS is terminated by a
separate proxy or load balancer); in that case this shall be an empty
iterable. Optional; if missing defaults to empty iterable.
* ``client_cert_name`` (*Unicode string or None*) -- The x509 Distinguished
Name of the Subject of the client certificate, as a single string encoded as
defined in `RFC4514 <https://tools.ietf.org/html/rfc4514>`_. If the client
did not provide a client certificate then it will be ``None``. Some web
server implementations may be unable to provide this (e.g. if TLS is
terminated by a separate proxy or load balancer); in that case this shall be
``None``. If ``client_cert_chain`` is provided and non-empty then this field
must be provided and must contain information that is consistent with
``client_cert_chain[0]``. Note that under some setups, (e.g. where TLS is
terminated by a separate proxy or load balancer and that device forwards the
client certificate name to the web server), this field may be set even where
``client_cert_chain`` is not set. Optional; if missing defaults to ``None``.
* ``client_cert_error`` (*Unicode string or None*) -- ``None`` if a client
certificate was provided and successfully verified, or was not provided.
If a client certificate was provided but verification failed, this is a
non-empty string containing an error message or error code indicating why
validation failed; the details are web server specific. Most web server
implementations will reject the connection if the client certificate
verification failed, instead of setting this value. However, some may be
configured to allow the connection anyway. This is especially useful when
testing that client certificates are supported properly by the client - it
allows a response containing an error message that can be presented to a
human, instead of just refusing the connection. Optional; if missing defaults
to ``None``.
* ``tls_version`` (*integer or None*) -- The TLS version in use. This is one of
the version numbers as defined in the TLS specifications, which is an
unsigned integer. Common values include ``0x0303`` for TLS 1.2 or ``0x0304``
for TLS 1.3. If TLS is not in use, set to ``None``. Some web server
implementations may be unable to provide this (e.g. if TLS is terminated by a
separate proxy or load balancer); in that case set to ``None``. Mandatory.
* ``cipher_suite`` (*integer or None*) -- The TLS cipher suite that is being
used. This is a 16-bit unsigned integer that encodes the pair of 8-bit
integers specified in the relevant RFC, in network byte order. For example
`RFC8446 section B.4 <https://tools.ietf.org/html/rfc8446#appendix-B.4>`_
defines that the cipher suite ``TLS_AES_128_GCM_SHA256`` is ``{0x13, 0x01}``;
that is encoded as a ``cipher_suite`` value of ``0x1301`` (equal to 4865
decimal). Some web server implementations may be unable to provide this
(e.g. if TLS is terminated by a separate proxy or load balancer); in that case
set to ``None``. Mandatory.
Events
------
All events are as defined in the *base protocol specification*.
Rationale (Informative)
-----------------------
This section explains the choices that led to this specification.
Providing the entire TLS certificates in ``client_cert_chain``, rather than a
parsed subset:
* Makes it easier for web servers to implement, as they do not have to
include a parser for the entirety of the x509 certificate specifications
(which are huge and complicated). They just have to convert the binary
DER format certificate from the wire, to the text PEM format. That is
supported by many off-the-shelf libraries.
* Makes it easier for web servers to maintain, as they do not have to update
their parser when new certificate fields are defined.
* Makes it easier for clients as there are plenty of existing x509 libraries
available that they can use to parse the certificate; they don't need to
do some special ASGI-specific thing.
* Improves interoperability as this is a simple, well-defined encoding, that
clients and servers are unlikely to get wrong.
* Makes it much easier to write this specification. There is no standard
documented format for a parsed certificate in Python, and we would need to
write one.
* Makes it much easier to maintain this specification. There is no need
to update a parsed certificate specification when new certificate fields
are defined.
* Allows the client to support new certificate fields without requiring
any server changes, so long as the fields are marked as "non-critical" in
the certificate. (A x509 parser is allowed to ignore non-critical fields
it does not understand. Critical fields that are not understood cause
certificate parsing to fail).
* Allows the client to do weird and wonderful things with the raw certificate,
instead of placing arbitrary limits on it.
Specifying ``tls_version`` as an integer, not a string or float:
* Avoids maintenance effort in this specification. If a new version of TLS is
defined, then no changes are needed in this specification.
* Does not significantly affect servers. Whatever format we specified, servers
would likely need a lookup table from what their TLS library reports to what
this API needs. (Unless their TLS library provides access to the raw value,
in which case it can be reported via this API directly).
* Does not significantly affect clients. Whatever format we specified, clients
would likely need a lookup table from what this API reports to the values
they support and wish to use internally.
Specifying ``cipher_suite`` as an integer, not a string:
* Avoids significant effort to compile a list of cipher suites in this
specification. There are a huge number of existing TLS cipher suites, many
of which are not widely used, even listing them all would be a huge effort.
* Avoids maintenance effort in this specification. If a new cipher suite is
defined, then no changes are needed in this specification.
* Avoids dependencies on nonstandard TLS-library-specific names. E.g. the
cipher names used by OpenSSL are different from the cipher names used by the
RFCs.
* Does not significantly affect servers. Whatever format we specified, (unless
it was a nonstandard library-specific name and the server happened to use
that library), servers would likely need a lookup table from what their
TLS library reports to what this API needs. (Unless their TLS library
provides access to the raw value, in which case it can be reported via this
API directly).
* Does not significantly affect clients. Whatever format we specified, clients
would likely need a lookup table from what this API reports to the values
they support and wish to use internally.
* Using a single integer, rather than a pair of integers, makes handling this
value simpler and faster.
``client_cert_name`` duplicates information that is also available in
``client_cert_chain``. However, many ASGI applications will probably find
that information is sufficient for their application - it provides a simple
string that identifies the user. It is simpler to use than parsing the x509
certificate. For the server, this information is readily available.
There are theoretical interoperability problems with ``client_cert_name``,
since it depends on a list of object ID names that is maintained by IANA and
theoretically can change. In practice, this is not a real problem, since the
object IDs that are actually used in certificates have not changed in many
years. So in practice it will be fine.
Copyright
---------
This document has been placed in the public domain.
|