Mercurial > prosody-hg
annotate util/x509.lua @ 14229:ce31fdde0ad1 default tip
net.unbound: Simplify conditional
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 13 Jun 2026 11:35:18 +0200 |
| parents | f587496eb08f |
| children |
| rev | line source |
|---|---|
| 3651 | 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 -- | |
| 8 | |
| 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. | |
| 12 | |
| 13 | |
|
13729
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
14 -- [TLS-CERTS] - https://www.rfc-editor.org/rfc/rfc6125.html -- Obsolete |
|
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
15 -- [TLS-IDENT] - https://www.rfc-editor.org/rfc/rfc9525.html |
|
12604
bd9e006a7a74
various: Update IETF RFC URLs for tools.ietf.org transition
Kim Alvefur <zash@zash.se>
parents:
12106
diff
changeset
|
16 -- [XMPP-CORE] - https://www.rfc-editor.org/rfc/rfc6120.html |
|
bd9e006a7a74
various: Update IETF RFC URLs for tools.ietf.org transition
Kim Alvefur <zash@zash.se>
parents:
12106
diff
changeset
|
17 -- [SRV-ID] - https://www.rfc-editor.org/rfc/rfc4985.html |
|
bd9e006a7a74
various: Update IETF RFC URLs for tools.ietf.org transition
Kim Alvefur <zash@zash.se>
parents:
12106
diff
changeset
|
18 -- [IDNA] - https://www.rfc-editor.org/rfc/rfc5890.html |
|
bd9e006a7a74
various: Update IETF RFC URLs for tools.ietf.org transition
Kim Alvefur <zash@zash.se>
parents:
12106
diff
changeset
|
19 -- [LDAP] - https://www.rfc-editor.org/rfc/rfc4519.html |
|
bd9e006a7a74
various: Update IETF RFC URLs for tools.ietf.org transition
Kim Alvefur <zash@zash.se>
parents:
12106
diff
changeset
|
20 -- [PKIX] - https://www.rfc-editor.org/rfc/rfc5280.html |
| 3651 | 21 |
|
12975
d10957394a3c
util: Prefix module imports with prosody namespace
Kim Alvefur <zash@zash.se>
parents:
12812
diff
changeset
|
22 local nameprep = require "prosody.util.encodings".stringprep.nameprep; |
|
d10957394a3c
util: Prefix module imports with prosody namespace
Kim Alvefur <zash@zash.se>
parents:
12812
diff
changeset
|
23 local idna_to_ascii = require "prosody.util.encodings".idna.to_ascii; |
|
d10957394a3c
util: Prefix module imports with prosody namespace
Kim Alvefur <zash@zash.se>
parents:
12812
diff
changeset
|
24 local idna_to_unicode = require "prosody.util.encodings".idna.to_unicode; |
|
d10957394a3c
util: Prefix module imports with prosody namespace
Kim Alvefur <zash@zash.se>
parents:
12812
diff
changeset
|
25 local base64 = require "prosody.util.encodings".base64; |
|
d10957394a3c
util: Prefix module imports with prosody namespace
Kim Alvefur <zash@zash.se>
parents:
12812
diff
changeset
|
26 local log = require "prosody.util.logger".init("x509"); |
|
d10957394a3c
util: Prefix module imports with prosody namespace
Kim Alvefur <zash@zash.se>
parents:
12812
diff
changeset
|
27 local mt = require "prosody.util.multitable"; |
|
14110
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
28 local ip = require "prosody.util.ip"; |
|
4486
f04db5e7e90d
user.x509: Add some utility functions for generating OpenSSL configs
Kim Alvefur <zash@zash.se>
parents:
4330
diff
changeset
|
29 local s_format = string.format; |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
30 local ipairs = ipairs; |
| 3651 | 31 |
|
6777
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
32 local _ENV = nil; |
|
8555
4f0f5b49bb03
vairious: Add annotation when an empty environment is set [luacheck]
Kim Alvefur <zash@zash.se>
parents:
6777
diff
changeset
|
33 -- luacheck: std none |
| 3651 | 34 |
| 35 local oid_commonname = "2.5.4.3"; -- [LDAP] 2.3 | |
| 36 local oid_subjectaltname = "2.5.29.17"; -- [PKIX] 4.2.1.6 | |
| 37 local oid_xmppaddr = "1.3.6.1.5.5.7.8.5"; -- [XMPP-CORE] | |
| 38 local oid_dnssrv = "1.3.6.1.5.5.7.8.7"; -- [SRV-ID] | |
| 39 | |
|
13729
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
40 -- Compare a hostname (possibly international) with asserted names extracted from a certificate. |
|
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
41 -- This function follows the rules laid out in section 6.3 of [TLS-IDENT] |
| 3651 | 42 -- |
| 43 -- A wildcard ("*") all by itself is allowed only as the left-most label | |
| 44 local function compare_dnsname(host, asserted_names) | |
| 45 -- TODO: Sufficient normalization? Review relevant specs. | |
| 46 local norm_host = idna_to_ascii(host) | |
| 47 if norm_host == nil then | |
| 48 log("info", "Host %s failed IDNA ToASCII operation", host) | |
| 49 return false | |
| 50 end | |
| 51 | |
| 52 norm_host = norm_host:lower() | |
| 53 | |
| 54 local host_chopped = norm_host:gsub("^[^.]+%.", "") -- everything after the first label | |
| 55 | |
| 56 for i=1,#asserted_names do | |
| 57 local name = asserted_names[i] | |
| 58 if norm_host == name:lower() then | |
| 59 log("debug", "Cert dNSName %s matched hostname", name); | |
| 60 return true | |
| 61 end | |
| 62 | |
| 63 -- Allow the left most label to be a "*" | |
| 64 if name:match("^%*%.") then | |
| 65 local rest_name = name:gsub("^[^.]+%.", "") | |
| 66 if host_chopped == rest_name:lower() then | |
| 67 log("debug", "Cert dNSName %s matched hostname", name); | |
| 68 return true | |
| 69 end | |
| 70 end | |
| 71 end | |
| 72 | |
| 73 return false | |
| 74 end | |
| 75 | |
|
14110
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
76 local function compare_ipaddress(host, asserted_names) |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
77 local host_ip = ip.new_ip(host:match("^%[([%x:.]+)%]$") or host); |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
78 if not host_ip then return false end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
79 |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
80 for i=1,#asserted_names do |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
81 if ip.new_ip(asserted_names[i]) == host_ip then |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
82 log("debug", "Cert iPAddress %s matched IP address", host_ip); |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
83 return true; |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
84 end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
85 end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
86 |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
87 return false |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
88 end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
89 |
| 3651 | 90 -- Compare an XMPP domain name with the asserted id-on-xmppAddr |
| 91 -- identities extracted from a certificate. Both are UTF8 strings. | |
| 92 -- | |
| 93 -- Per [XMPP-CORE], matches against asserted identities don't include | |
| 94 -- wildcards, so we just do a normalize on both and then a string comparison | |
| 95 -- | |
| 96 -- TODO: Support for full JIDs? | |
| 97 local function compare_xmppaddr(host, asserted_names) | |
| 98 local norm_host = nameprep(host) | |
| 99 | |
| 100 for i=1,#asserted_names do | |
| 101 local name = asserted_names[i] | |
| 102 | |
| 103 -- We only want to match against bare domains right now, not | |
| 104 -- those crazy full-er JIDs. | |
| 105 if name:match("[@/]") then | |
| 106 log("debug", "Ignoring xmppAddr %s because it's not a bare domain", name) | |
| 107 else | |
| 108 local norm_name = nameprep(name) | |
| 109 if norm_name == nil then | |
| 110 log("info", "Ignoring xmppAddr %s, failed nameprep!", name) | |
| 111 else | |
| 112 if norm_host == norm_name then | |
| 113 log("debug", "Cert xmppAddr %s matched hostname", name) | |
| 114 return true | |
| 115 end | |
| 116 end | |
| 117 end | |
| 118 end | |
| 119 | |
| 120 return false | |
| 121 end | |
| 122 | |
| 123 -- Compare a host + service against the asserted id-on-dnsSRV (SRV-ID) | |
| 124 -- identities extracted from a certificate. | |
| 125 -- | |
| 126 -- Per [SRV-ID], the asserted identities will be encoded in ASCII via ToASCII. | |
| 127 -- Comparison is done case-insensitively, and a wildcard ("*") all by itself | |
| 128 -- is allowed only as the left-most non-service label. | |
| 129 local function compare_srvname(host, service, asserted_names) | |
| 130 local norm_host = idna_to_ascii(host) | |
| 131 if norm_host == nil then | |
| 132 log("info", "Host %s failed IDNA ToASCII operation", host); | |
| 133 return false | |
| 134 end | |
| 135 | |
| 136 -- Service names start with a "_" | |
| 137 if service:match("^_") == nil then service = "_"..service end | |
| 138 | |
| 139 norm_host = norm_host:lower(); | |
| 140 local host_chopped = norm_host:gsub("^[^.]+%.", "") -- everything after the first label | |
| 141 | |
| 142 for i=1,#asserted_names do | |
| 143 local asserted_service, name = asserted_names[i]:match("^(_[^.]+)%.(.*)"); | |
| 144 if service == asserted_service then | |
| 145 if norm_host == name:lower() then | |
| 146 log("debug", "Cert SRVName %s matched hostname", name); | |
| 147 return true; | |
| 148 end | |
| 149 | |
| 150 -- Allow the left most label to be a "*" | |
| 151 if name:match("^%*%.") then | |
| 152 local rest_name = name:gsub("^[^.]+%.", "") | |
| 153 if host_chopped == rest_name:lower() then | |
| 154 log("debug", "Cert SRVName %s matched hostname", name) | |
| 155 return true | |
| 156 end | |
| 157 end | |
| 158 if norm_host == name:lower() then | |
| 159 log("debug", "Cert SRVName %s matched hostname", name); | |
| 160 return true | |
| 161 end | |
| 162 end | |
| 163 end | |
| 164 | |
| 165 return false | |
| 166 end | |
| 167 | |
|
6777
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
168 local function verify_identity(host, service, cert) |
|
6708
d2beb98ece29
util.x509: Tell LuaSec we want UTF-8 data
Kim Alvefur <zash@zash.se>
parents:
6153
diff
changeset
|
169 if cert.setencode then |
|
d2beb98ece29
util.x509: Tell LuaSec we want UTF-8 data
Kim Alvefur <zash@zash.se>
parents:
6153
diff
changeset
|
170 cert:setencode("utf8"); |
|
d2beb98ece29
util.x509: Tell LuaSec we want UTF-8 data
Kim Alvefur <zash@zash.se>
parents:
6153
diff
changeset
|
171 end |
| 3651 | 172 local ext = cert:extensions() |
| 173 if ext[oid_subjectaltname] then | |
| 174 local sans = ext[oid_subjectaltname]; | |
| 175 | |
| 176 if sans[oid_xmppaddr] then | |
|
5845
c48f717c2fd6
util.x509: Only compare identity with oid-on-xmppAddr for XMPP services
Kim Alvefur <zash@zash.se>
parents:
4825
diff
changeset
|
177 if service == "_xmpp-client" or service == "_xmpp-server" then |
|
c48f717c2fd6
util.x509: Only compare identity with oid-on-xmppAddr for XMPP services
Kim Alvefur <zash@zash.se>
parents:
4825
diff
changeset
|
178 if compare_xmppaddr(host, sans[oid_xmppaddr]) then return true end |
|
c48f717c2fd6
util.x509: Only compare identity with oid-on-xmppAddr for XMPP services
Kim Alvefur <zash@zash.se>
parents:
4825
diff
changeset
|
179 end |
| 3651 | 180 end |
| 181 | |
| 182 if sans[oid_dnssrv] then | |
| 183 -- Only check srvNames if the caller specified a service | |
| 184 if service and compare_srvname(host, service, sans[oid_dnssrv]) then return true end | |
| 185 end | |
| 186 | |
| 187 if sans["dNSName"] then | |
| 188 if compare_dnsname(host, sans["dNSName"]) then return true end | |
| 189 end | |
|
14110
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
190 if sans["iPAddress"] then |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
191 if compare_ipaddress(host, sans["iPAddress"]) then return true end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
192 end |
| 3651 | 193 end |
| 194 | |
|
13729
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
195 -- Per [TLS-IDENT] ignore the Common Name |
|
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
196 -- The server identity can only be expressed in the subjectAltNames extension; |
|
b50eadfddd57
util.x509: Per RFC 9525, remove obsolete Common Name check
Kim Alvefur <zash@zash.se>
parents:
12975
diff
changeset
|
197 -- it is no longer valid to use the commonName RDN, known as CN-ID in [TLS-CERTS]. |
| 3651 | 198 |
| 199 -- If all else fails, well, why should we be any different? | |
| 200 return false | |
| 201 end | |
| 202 | |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
203 -- TODO Support other SANs |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
204 local function get_identities(cert) --> map of names to sets of services |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
205 if cert.setencode then |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
206 cert:setencode("utf8"); |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
207 end |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
208 |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
209 local names = mt.new(); |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
210 |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
211 local ext = cert:extensions(); |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
212 local sans = ext[oid_subjectaltname]; |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
213 if sans then |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
214 if sans["dNSName"] then -- Valid for any service |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
215 for _, name in ipairs(sans["dNSName"]) do |
|
12106
c0cb8e86ad21
util.x509: Fix to include wildcard identity
Kim Alvefur <zash@zash.se>
parents:
10494
diff
changeset
|
216 local is_wildcard = name:sub(1, 2) == "*."; |
|
c0cb8e86ad21
util.x509: Fix to include wildcard identity
Kim Alvefur <zash@zash.se>
parents:
10494
diff
changeset
|
217 if is_wildcard then name = name:sub(3); end |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
218 name = idna_to_unicode(nameprep(name)); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
219 if name then |
|
12106
c0cb8e86ad21
util.x509: Fix to include wildcard identity
Kim Alvefur <zash@zash.se>
parents:
10494
diff
changeset
|
220 if is_wildcard then name = "*." .. name; end |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
221 names:set(name, "*", true); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
222 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
223 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
224 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
225 if sans[oid_xmppaddr] then |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
226 for _, name in ipairs(sans[oid_xmppaddr]) do |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
227 name = nameprep(name); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
228 if name then |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
229 names:set(name, "xmpp-client", true); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
230 names:set(name, "xmpp-server", true); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
231 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
232 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
233 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
234 if sans[oid_dnssrv] then |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
235 for _, srvname in ipairs(sans[oid_dnssrv]) do |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
236 local srv, name = srvname:match("^_([^.]+)%.(.*)"); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
237 if srv then |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
238 name = nameprep(name); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
239 if name then |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
240 names:set(name, srv, true); |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
241 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
242 end |
|
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
243 end |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
244 end |
|
14110
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
245 if sans["iPAddress"] then |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
246 for _, addr in ipairs(sans["iPAddress"]) do |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
247 if addr:find(":") then |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
248 names:set("[" .. addr .. "]", "*", true); |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
249 else |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
250 names:set(addr, "*", true); |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
251 end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
252 end |
|
f587496eb08f
util.x509: Add support for iPAddress certs
Kim Alvefur <zash@zash.se>
parents:
13729
diff
changeset
|
253 end |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
254 end |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
255 |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
256 local subject = cert:subject(); |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
257 for i = 1, #subject do |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
258 local dn = subject[i]; |
|
10255
8e8d3b3a55da
util.x509: Nameprep commonName once
Kim Alvefur <zash@zash.se>
parents:
9907
diff
changeset
|
259 if dn.oid == oid_commonname then |
|
8e8d3b3a55da
util.x509: Nameprep commonName once
Kim Alvefur <zash@zash.se>
parents:
9907
diff
changeset
|
260 local name = nameprep(dn.value); |
|
10256
b2e7b07f8b74
util.x509: Only collect commonNames that pass idna
Kim Alvefur <zash@zash.se>
parents:
10255
diff
changeset
|
261 if name and idna_to_ascii(name) then |
|
10494
69e55b03d5cf
util.x509: Fix recording of CommonNames in get_identities
Kim Alvefur <zash@zash.se>
parents:
10259
diff
changeset
|
262 names:set(name, "*", true); |
|
10255
8e8d3b3a55da
util.x509: Nameprep commonName once
Kim Alvefur <zash@zash.se>
parents:
9907
diff
changeset
|
263 end |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
264 end |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
265 end |
|
10259
9df135b06c2f
util.x509: Return sets of services per identity
Kim Alvefur <zash@zash.se>
parents:
10256
diff
changeset
|
266 return names.data; |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
267 end |
|
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
268 |
|
12812
b2d422b88cd6
Revert unintentionally committed parts of 12bd40b8e105
Kim Alvefur <zash@zash.se>
parents:
12808
diff
changeset
|
269 local pat = "%-%-%-%-%-BEGIN ([A-Z ]+)%-%-%-%-%-\r?\n".. |
|
b2d422b88cd6
Revert unintentionally committed parts of 12bd40b8e105
Kim Alvefur <zash@zash.se>
parents:
12808
diff
changeset
|
270 "([0-9A-Za-z+/=\r\n]*)\r?\n%-%-%-%-%-END %1%-%-%-%-%-"; |
|
6152
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
271 |
|
6777
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
272 local function pem2der(pem) |
|
6152
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
273 local typ, data = pem:match(pat); |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
274 if typ and data then |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
275 return base64.decode(data), typ; |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
276 end |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
277 end |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
278 |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
279 local wrap = ('.'):rep(64); |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
280 local envelope = "-----BEGIN %s-----\n%s\n-----END %s-----\n" |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
281 |
|
6777
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
282 local function der2pem(data, typ) |
|
6152
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
283 typ = typ and typ:upper() or "CERTIFICATE"; |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
284 data = base64.encode(data); |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
285 return s_format(envelope, typ, data:gsub(wrap, '%0\n', (#data-1)/64), typ); |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
286 end |
|
fbab74c28e31
util.x509: And functions for converting between DER and PEM
Kim Alvefur <zash@zash.se>
parents:
5845
diff
changeset
|
287 |
|
6777
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
288 return { |
|
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
289 verify_identity = verify_identity; |
|
9907
54e36a8677bc
util.x509: Add function that extracts usable names from a certificate
Kim Alvefur <zash@zash.se>
parents:
8555
diff
changeset
|
290 get_identities = get_identities; |
|
6777
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
291 pem2der = pem2der; |
|
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
292 der2pem = der2pem; |
|
5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Kim Alvefur <zash@zash.se>
parents:
6708
diff
changeset
|
293 }; |
