mod_admin_telnet: Identify native bidi sessions
[prosody.git] / util / x509.lua
blob1cdf07dcef1fcbeec606da94c370f05289a80d13
1 -- Prosody IM
2 -- Copyright (C) 2010 Matthew Wild
3 -- Copyright (C) 2010 Paul Aurich
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
9 -- TODO: I feel a fair amount of this logic should be integrated into Luasec,
10 -- so that everyone isn't re-inventing the wheel. Dependencies on
11 -- IDN libraries complicate that.
14 -- [TLS-CERTS] - http://tools.ietf.org/html/rfc6125
15 -- [XMPP-CORE] - http://tools.ietf.org/html/rfc6120
16 -- [SRV-ID] - http://tools.ietf.org/html/rfc4985
17 -- [IDNA] - http://tools.ietf.org/html/rfc5890
18 -- [LDAP] - http://tools.ietf.org/html/rfc4519
19 -- [PKIX] - http://tools.ietf.org/html/rfc5280
21 local nameprep = require "util.encodings".stringprep.nameprep;
22 local idna_to_ascii = require "util.encodings".idna.to_ascii;
23 local idna_to_unicode = require "util.encodings".idna.to_unicode;
24 local base64 = require "util.encodings".base64;
25 local log = require "util.logger".init("x509");
26 local s_format = string.format;
28 local _ENV = nil;
29 -- luacheck: std none
31 local oid_commonname = "2.5.4.3"; -- [LDAP] 2.3
32 local oid_subjectaltname = "2.5.29.17"; -- [PKIX] 4.2.1.6
33 local oid_xmppaddr = "1.3.6.1.5.5.7.8.5"; -- [XMPP-CORE]
34 local oid_dnssrv = "1.3.6.1.5.5.7.8.7"; -- [SRV-ID]
36 -- Compare a hostname (possibly international) with asserted names
37 -- extracted from a certificate.
38 -- This function follows the rules laid out in
39 -- sections 6.4.1 and 6.4.2 of [TLS-CERTS]
41 -- A wildcard ("*") all by itself is allowed only as the left-most label
42 local function compare_dnsname(host, asserted_names)
43 -- TODO: Sufficient normalization? Review relevant specs.
44 local norm_host = idna_to_ascii(host)
45 if norm_host == nil then
46 log("info", "Host %s failed IDNA ToASCII operation", host)
47 return false
48 end
50 norm_host = norm_host:lower()
52 local host_chopped = norm_host:gsub("^[^.]+%.", "") -- everything after the first label
54 for i=1,#asserted_names do
55 local name = asserted_names[i]
56 if norm_host == name:lower() then
57 log("debug", "Cert dNSName %s matched hostname", name);
58 return true
59 end
61 -- Allow the left most label to be a "*"
62 if name:match("^%*%.") then
63 local rest_name = name:gsub("^[^.]+%.", "")
64 if host_chopped == rest_name:lower() then
65 log("debug", "Cert dNSName %s matched hostname", name);
66 return true
67 end
68 end
69 end
71 return false
72 end
74 -- Compare an XMPP domain name with the asserted id-on-xmppAddr
75 -- identities extracted from a certificate. Both are UTF8 strings.
77 -- Per [XMPP-CORE], matches against asserted identities don't include
78 -- wildcards, so we just do a normalize on both and then a string comparison
80 -- TODO: Support for full JIDs?
81 local function compare_xmppaddr(host, asserted_names)
82 local norm_host = nameprep(host)
84 for i=1,#asserted_names do
85 local name = asserted_names[i]
87 -- We only want to match against bare domains right now, not
88 -- those crazy full-er JIDs.
89 if name:match("[@/]") then
90 log("debug", "Ignoring xmppAddr %s because it's not a bare domain", name)
91 else
92 local norm_name = nameprep(name)
93 if norm_name == nil then
94 log("info", "Ignoring xmppAddr %s, failed nameprep!", name)
95 else
96 if norm_host == norm_name then
97 log("debug", "Cert xmppAddr %s matched hostname", name)
98 return true
99 end
104 return false
107 -- Compare a host + service against the asserted id-on-dnsSRV (SRV-ID)
108 -- identities extracted from a certificate.
110 -- Per [SRV-ID], the asserted identities will be encoded in ASCII via ToASCII.
111 -- Comparison is done case-insensitively, and a wildcard ("*") all by itself
112 -- is allowed only as the left-most non-service label.
113 local function compare_srvname(host, service, asserted_names)
114 local norm_host = idna_to_ascii(host)
115 if norm_host == nil then
116 log("info", "Host %s failed IDNA ToASCII operation", host);
117 return false
120 -- Service names start with a "_"
121 if service:match("^_") == nil then service = "_"..service end
123 norm_host = norm_host:lower();
124 local host_chopped = norm_host:gsub("^[^.]+%.", "") -- everything after the first label
126 for i=1,#asserted_names do
127 local asserted_service, name = asserted_names[i]:match("^(_[^.]+)%.(.*)");
128 if service == asserted_service then
129 if norm_host == name:lower() then
130 log("debug", "Cert SRVName %s matched hostname", name);
131 return true;
134 -- Allow the left most label to be a "*"
135 if name:match("^%*%.") then
136 local rest_name = name:gsub("^[^.]+%.", "")
137 if host_chopped == rest_name:lower() then
138 log("debug", "Cert SRVName %s matched hostname", name)
139 return true
142 if norm_host == name:lower() then
143 log("debug", "Cert SRVName %s matched hostname", name);
144 return true
149 return false
152 local function verify_identity(host, service, cert)
153 if cert.setencode then
154 cert:setencode("utf8");
156 local ext = cert:extensions()
157 if ext[oid_subjectaltname] then
158 local sans = ext[oid_subjectaltname];
160 -- Per [TLS-CERTS] 6.3, 6.4.4, "a client MUST NOT seek a match for a
161 -- reference identifier if the presented identifiers include a DNS-ID
162 -- SRV-ID, URI-ID, or any application-specific identifier types"
163 local had_supported_altnames = false
165 if sans[oid_xmppaddr] then
166 had_supported_altnames = true
167 if service == "_xmpp-client" or service == "_xmpp-server" then
168 if compare_xmppaddr(host, sans[oid_xmppaddr]) then return true end
172 if sans[oid_dnssrv] then
173 had_supported_altnames = true
174 -- Only check srvNames if the caller specified a service
175 if service and compare_srvname(host, service, sans[oid_dnssrv]) then return true end
178 if sans["dNSName"] then
179 had_supported_altnames = true
180 if compare_dnsname(host, sans["dNSName"]) then return true end
183 -- We don't need URIs, but [TLS-CERTS] is clear.
184 if sans["uniformResourceIdentifier"] then
185 had_supported_altnames = true
188 if had_supported_altnames then return false end
191 -- Extract a common name from the certificate, and check it as if it were
192 -- a dNSName subjectAltName (wildcards may apply for, and receive,
193 -- cat treats)
195 -- Per [TLS-CERTS] 1.8, a CN-ID is the Common Name from a cert subject
196 -- which has one and only one Common Name
197 local subject = cert:subject()
198 local cn = nil
199 for i=1,#subject do
200 local dn = subject[i]
201 if dn["oid"] == oid_commonname then
202 if cn then
203 log("info", "Certificate has multiple common names")
204 return false
207 cn = dn["value"];
211 if cn then
212 -- Per [TLS-CERTS] 6.4.4, follow the comparison rules for dNSName SANs.
213 return compare_dnsname(host, { cn })
216 -- If all else fails, well, why should we be any different?
217 return false
220 -- TODO Support other SANs
221 local function get_identities(cert) --> set of names
222 if cert.setencode then
223 cert:setencode("utf8");
226 local names = {};
228 local ext = cert:extensions();
229 local sans = ext[oid_subjectaltname];
230 if sans and sans["dNSName"] then
231 for i = 1, #sans["dNSName"] do
232 names[ idna_to_unicode(sans["dNSName"][i]) ] = true;
236 local subject = cert:subject();
237 for i = 1, #subject do
238 local dn = subject[i];
239 if dn.oid == oid_commonname and nameprep(dn.value) then
240 names[dn.value] = true;
243 return names;
246 local pat = "%-%-%-%-%-BEGIN ([A-Z ]+)%-%-%-%-%-\r?\n"..
247 "([0-9A-Za-z+/=\r\n]*)\r?\n%-%-%-%-%-END %1%-%-%-%-%-";
249 local function pem2der(pem)
250 local typ, data = pem:match(pat);
251 if typ and data then
252 return base64.decode(data), typ;
256 local wrap = ('.'):rep(64);
257 local envelope = "-----BEGIN %s-----\n%s\n-----END %s-----\n"
259 local function der2pem(data, typ)
260 typ = typ and typ:upper() or "CERTIFICATE";
261 data = base64.encode(data);
262 return s_format(envelope, typ, data:gsub(wrap, '%0\n', (#data-1)/64), typ);
265 return {
266 verify_identity = verify_identity;
267 get_identities = get_identities;
268 pem2der = pem2der;
269 der2pem = der2pem;