=encoding utf-8 =head1 Name ngx.ssl - Lua API for controlling NGINX downstream SSL handshakes =head1 Status This Lua module is production ready. =head1 Synopsis # Note: you do not need the following line if you are using # OpenResty 1.9.7.2+. lua_package_path "/path/to/lua-resty-core/lib/?.lua;;"; server { listen 443 ssl; server_name test.com; # useless placeholders: just to shut up NGINX configuration # loader errors: ssl_certificate /path/to/fallback.crt; ssl_certificate_key /path/to/fallback.key; ssl_certificate_by_lua_block { local ssl = require "ngx.ssl" -- clear the fallback certificates and private keys -- set by the ssl_certificate and ssl_certificate_key -- directives above: local ok, err = ssl.clear_certs() if not ok then ngx.log(ngx.ERR, "failed to clear existing (fallback) certificates") return ngx.exit(ngx.ERROR) end -- assuming the user already defines the my_load_certificate_chain() -- herself. local pem_cert_chain = assert(my_load_certificate_chain()) local der_cert_chain, err = ssl.cert_pem_to_der(pem_cert_chain) if not der_cert_chain then ngx.log(ngx.ERR, "failed to convert certificate chain ", "from PEM to DER: ", err) return ngx.exit(ngx.ERROR) end local ok, err = ssl.set_der_cert(der_cert_chain) if not ok then ngx.log(ngx.ERR, "failed to set DER cert: ", err) return ngx.exit(ngx.ERROR) end -- assuming the user already defines the my_load_private_key() -- function herself. local pem_pkey = assert(my_load_private_key()) local passphrase = "password" -- or nil local der_pkey, err = ssl.priv_key_pem_to_der(pem_pkey, passphrase) if not der_pkey then ngx.log(ngx.ERR, "failed to convert private key ", "from PEM to DER: ", err) return ngx.exit(ngx.ERROR) end local ok, err = ssl.set_der_priv_key(der_pkey) if not ok then ngx.log(ngx.ERR, "failed to set DER private key: ", err) return ngx.exit(ngx.ERROR) end } location / { root html; } } =head1 Description This Lua module provides API functions to control the SSL handshake process in contexts like L (of the L module). For web servers serving many (like millions of) https sites, it is often desired to lazily load and cache the SSL certificate chain and private key data for the https sites actually being served by a particular server. This Lua module provides API to support such use cases in the context of the L directive. To load the C module in Lua, just write local ssl = require "ngx.ssl" =head1 Methods =head2 clear_certs B I B I> Clears any existing SSL certificates and/or private keys set on the current SSL connection. Returns C on success, or a C value and a string describing the error otherwise. =head2 cert_pem_to_der B I B I Converts the PEM-formatted SSL certificate chain data into the DER format (for later uses in the L function, for example). In case of failures, returns C and a string describing the error. It is known that the C command-line utility may not convert the whole SSL certificate chain from PEM to DER correctly. So always use this Lua function to do the conversion. You can always use libraries like L and/or ngx_lua APIs like L to do the caching of the DER-formatted results, for example. This function can be called in any context. =head2 set_der_cert B I B I> Sets the DER-formatted SSL certificate chain data for the current SSL connection. Note that the DER data is directly in the Lua string argument. I external file names are supported here. Returns C on success, or a C value and a string describing the error otherwise. Note that, the SSL certificate chain is usually encoded in the PEM format. So you need to use the L function to do the conversion first. =head2 priv_key_pem_to_der B I B I Converts the PEM-formatted SSL private key data into the DER format (for later uses in the L function, for example). The C is the passphrase for C if the private key is password protected. In case of failures, returns C and a string describing the error. Alternatively, you can do the PEM to DER conversion I with the C command-line utility, like below openssl rsa -in key.pem -outform DER -out key.der This function can be called in any context. =head2 set_der_priv_key B I B I> Sets the DER-formatted prviate key for the current SSL connection. Returns C on success, or a C value and a string describing the error otherwise. Usually, the private keys are encoded in the PEM format. You can either use the L function to do the PEM to DER conversion or just use the C command-line utility offline, like below openssl rsa -in key.pem -outform DER -out key.der =head2 server_name B I B I Returns the TLS SNI (Server Name Indication) name set by the client. Returns C when the client does not set it. In case of failures, it returns C I a string describing the error. Usually we use this SNI name as the domain name (like C) to identify the current web site while loading the corresponding SSL certificate chain and private key for the site. Please note that not all https clients set the SNI name, so when the SNI name is missing from the client handshake request, we use the server IP address accessed by the client to identify the site. See the L method for more details. This function can be called in any context where downstream https is used. =head2 server_port B port, err = ssl.server_port() B I Returns the server port. Returns C when server dont have a port. In case of failures, it returns C I a string describing the error. This function can be called in any context where downstream https is used. =head2 raw_server_addr B I B I Returns the raw server address actually accessed by the client in the current SSL connection. The first two return values are strings representing the address data and the address type, respectively. The address values are interpreted differently according to the address type values: =over =item * C : The address data is a file path for the UNIX domain socket. =item * C : The address data is a binary IPv4 address of 4 bytes long. =item * C : The address data is a binary IPv6 address of 16 bytes long. =back Returns two C values and a Lua string describing the error. The following code snippet shows how to print out the UNIX domain socket address and the IPv4 address as human-readable strings: local ssl = require "ngx.ssl" local byte = string.byte local addr, addrtyp, err = ssl.raw_server_addr() if not addr then ngx.log(ngx.ERR, "failed to fetch raw server addr: ", err) return end if addrtyp == "inet" then -- IPv4 ip = string.format("%d.%d.%d.%d", byte(addr, 1), byte(addr, 2), byte(addr, 3), byte(addr, 4)) print("Using IPv4 address: ", ip) elseif addrtyp == "unix" then -- UNIX print("Using unix socket file ", addr) else -- IPv6 -- leave as an exercise for the readers end This function can be called in any context where downstream https is used. =head2 export_keying_material B I context: I, rewrite_by_luaE<42>, access_by_luaE<42>, content_by_luaE<42>, header_filter_by_luaE<42>, body_filter_by_luaE<42>, log_by_luaE<42>> Return a key derived from the SSL master secret. As described in RFC8446 section 7.5 this function returns key material that is derived from the SSL master secret and can be used on the application level. The returned key material is of the given length. Label is mandatory and requires a special format that is described in RFC5705 section 4. Context is optional but note that in TLSv1.2 and below a zero length context is treated differently from no context at all, and will result in different keying material being returned. In TLSv1.3 a zero length context is that same as no context at all and will result in the same keying material being returned. The following code snippet shows how to derive a new key that can be used on the application level. local ssl = require "ngx.ssl" local key_length = 16 local label = "EXPERIMENTAL my label" local context = "\x00\x01\x02\x03" local key, err = ssl.export_keying_material(key_length, label, context) if not key then ngx.log(ngx.ERR, "failed to derive key ", err) return end -- use key... end This function can be called in any context where downstream https is used. =head2 export_keying_material_early B I context: I, rewrite_by_luaE<42>, access_by_luaE<42>, content_by_luaE<42>, header_filter_by_luaE<42>, body_filter_by_luaE<42>, log_by_luaE<42>> Returns a key derived from the SSL early exporter master secret. As described in RFC8446 section 7.5 this function returns key material that is derived from the SSL early exporter master secret and can be used on the application level. The returned key material is of the given length. Label is mandatory and requires a special format that is described in RFC5705 section 4. This function is only usable with TLSv1.3, and derives keying material using the early_exporter_master_secret (as defined in the TLS 1.3 RFC). For the client, the early_exporter_master_secret is only available when the client attempts to send 0-RTT data. For the server, it is only available when the server accepts 0-RTT data. The following code snippet shows how to derive a new key that can be used on the application level. local ssl = require "ngx.ssl" local key_length = 16 local label = "EXPERIMENTAL my label" local context = "\x00\x01\x02\x03" local key, err = ssl.export_keying_material_early(key_length, label, context) if not key then ngx.log(ngx.ERR, "failed to derive key ", err) return end -- use key... end This function can be called in any context where downstream https TLS1.3 is used. =head2 raw_client_addr B I B I Returns the raw client address of the current SSL connection. The first two return values are strings representing the address data and the address type, respectively. The address values are interpreted differently according to the address type values: =over =item * C : The address data is a file path for the UNIX domain socket. =item * C : The address data is a binary IPv4 address of 4 bytes long. =item * C : The address data is a binary IPv6 address of 16 bytes long. =back Returns two C values and a Lua string describing the error. The following code snippet shows how to print out the UNIX domain socket address and the IPv4 address as human-readable strings: local ssl = require "ngx.ssl" local byte = string.byte local addr, addrtyp, err = ssl.raw_client_addr() if not addr then ngx.log(ngx.ERR, "failed to fetch raw client addr: ", err) return end if addrtyp == "inet" then -- IPv4 ip = string.format("%d.%d.%d.%d", byte(addr, 1), byte(addr, 2), byte(addr, 3), byte(addr, 4)) print("Client IPv4 address: ", ip) elseif addrtyp == "unix" then -- UNIX print("Client unix socket file ", addr) else -- IPv6 -- leave as an exercise for the readers end This function can be called in any context where downstream https is used. This function was first introduced in lua-resty-core 0.1.14. =head2 get_tls1_version B I B I Returns the TLS 1.x version number used by the current SSL connection. Returns C and a string describing the error otherwise. Typical return values are: =over =item * C<0x0300>(SSLv3) =item * C<0x0301>(TLSv1) =item * C<0x0302>(TLSv1.1) =item * C<0x0303>(TLSv1.2) =item * C<0x0304>(TLSv1.3) =back This function can be called in any context where downstream https is used. =head2 get_tls1_version_str B I B I Returns the TLS 1.x version string used by the current SSL connection. Returns C and a string describing the error otherwise. If the TLS 1.x version number used by the current SSL connection is not recognized, the return values will be C and the string "unknown version". Typical return values are: =over =item * C =item * C =item * C =item * C =item * C =back This function can be called in any context where downstream https is used. =head2 parse_pem_cert B I B I Converts the PEM-formated SSL certificate chain data into an opaque cdata pointer (for later uses in the L function, for example). In case of failures, returns C and a string describing the error. You can always use libraries like L to cache the cdata result. This function can be called in any context. This function was first added in version C<0.1.7>. =head2 parse_pem_priv_key B I B I Converts the PEM-formatted SSL private key data into an opaque cdata pointer (for later uses in the L function, for example). In case of failures, returns C and a string describing the error. This function can be called in any context. This function was first added in version C<0.1.7>. =head2 parse_der_cert B I B I Converts the DER-formated SSL certificate chain data into an opaque cdata pointer (for later uses in the L function, for example). In case of failures, returns C and a string describing the error. You can always use libraries like L to cache the cdata result. This function can be called in any context. =head2 parse_der_priv_key B I B I Converts the DER-formatted SSL private key data into an opaque cdata pointer (for later uses in the L function, for example). In case of failures, returns C and a string describing the error. This function can be called in any context. =head2 set_cert B I B I> Sets the SSL certificate chain opaque pointer returned by the L or Lfunction for the current SSL connection. Returns C on success, or a C value and a string describing the error otherwise. Note that this C function will run slightly faster, in terms of CPU cycles wasted, than the L variant, since the first function uses opaque cdata pointers which do not require any additional conversion needed to be performed by the SSL library during the SSL handshake. This function was first added in version C<0.1.7>. =head2 set_priv_key B I B I> Sets the SSL private key opaque pointer returned by the L or L function for the current SSL connection. Returns C on success, or a C value and a string describing the error otherwise. Note that this C function will run slightly faster, in terms of CPU cycles wasted, than the L variant, since the first function uses opaque cdata pointers which do not require any additional conversion needed to be performed by the SSL library during the SSL handshake. This function was first added in version C<0.1.7>. =head2 verify_client B I B I> Requires a client certificate during TLS handshake. The C is the CA certificate chain opaque pointer returned by the L function for the current SSL connection. The list of certificates will be sent to clients. Also, they will be added to trusted store. If omitted, will not send any CA certificate to clients. The C is the verification depth in the client certificates chain. If omitted, will use the value specified by C. The C is same returned by the L function. They will be added to trusted store. Returns C on success, or a C value and a string describing the error otherwise. Note that TLS is not terminated when verification fails. You need to examine Nginx variable C<$ssl_client_verify> later to determine next steps. This function was first added in version C<0.1.20>. =head2 get_client_random B I B I Returns the random value sent from the client to the server during the initial SSL/TLS handshake. The C parameter indicates the maximum length of the client_random value returned. If the C is zero, this function returns the total length of the client_random value. If omitted, will use the value 32. This function can be called in any context where downstream https is used, but in the context of L, it can not return the real client_random value, just a string filled with 0. =head2 get_req_ssl_pointer B I B I Retrieves the OpenSSL C object for the current downstream connection. Returns an FFI pointer on success, or a C value and a string describing the error otherwise. If you need to retain the pointer beyond the current phase then you will need to use OpenSSL's C to increase the reference count. If you do, ensure that your reference is released with C. This function was first added in version C<0.1.16>. =head1 Community =head2 English Mailing List The L mailing list is for English speakers. =head2 Chinese Mailing List The L mailing list is for Chinese speakers. =head1 Bugs and Patches Please report bugs or submit patches by =over =item 1. creating a ticket on the L, =item 2. or posting to the L. =back =head1 Author Yichun Zhang Eagentzh@gmail.comE (agentzh), OpenResty Inc. =head1 Copyright and License This module is licensed under the BSD license. Copyright (C) 2015-2017, by Yichun "agentzh" Zhang, OpenResty Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: =over =item * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. =back =over =item * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. =back THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. =head1 See Also =over =item * the ngx_lua module: https://github.com/openresty/lua-nginx-module =item * the L module. =item * the L directive. =item * the L library. =item * OpenResty: https://openresty.org =back