1 | /*
|
---|
2 | * Copyright 2003-2018 The OpenSSL Project Authors. All Rights Reserved.
|
---|
3 | *
|
---|
4 | * Licensed under the OpenSSL license (the "License"). You may not use
|
---|
5 | * this file except in compliance with the License. You can obtain a copy
|
---|
6 | * in the file LICENSE in the source distribution or at
|
---|
7 | * https://www.openssl.org/source/license.html
|
---|
8 | */
|
---|
9 |
|
---|
10 | #include "internal/cryptlib.h"
|
---|
11 | #include "internal/numbers.h"
|
---|
12 | #include <stdio.h>
|
---|
13 | #include "crypto/asn1.h"
|
---|
14 | #include <openssl/asn1t.h>
|
---|
15 | #include <openssl/conf.h>
|
---|
16 | #include <openssl/x509v3.h>
|
---|
17 |
|
---|
18 | #include "crypto/x509.h"
|
---|
19 | #include "ext_dat.h"
|
---|
20 |
|
---|
21 | static void *v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method,
|
---|
22 | X509V3_CTX *ctx,
|
---|
23 | STACK_OF(CONF_VALUE) *nval);
|
---|
24 | static int i2r_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
|
---|
25 | BIO *bp, int ind);
|
---|
26 | static int do_i2r_name_constraints(const X509V3_EXT_METHOD *method,
|
---|
27 | STACK_OF(GENERAL_SUBTREE) *trees, BIO *bp,
|
---|
28 | int ind, const char *name);
|
---|
29 | static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip);
|
---|
30 |
|
---|
31 | static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
|
---|
32 | static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen);
|
---|
33 | static int nc_dn(X509_NAME *sub, X509_NAME *nm);
|
---|
34 | static int nc_dns(ASN1_IA5STRING *sub, ASN1_IA5STRING *dns);
|
---|
35 | static int nc_email(ASN1_IA5STRING *sub, ASN1_IA5STRING *eml);
|
---|
36 | static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base);
|
---|
37 | static int nc_ip(ASN1_OCTET_STRING *ip, ASN1_OCTET_STRING *base);
|
---|
38 |
|
---|
39 | const X509V3_EXT_METHOD v3_name_constraints = {
|
---|
40 | NID_name_constraints, 0,
|
---|
41 | ASN1_ITEM_ref(NAME_CONSTRAINTS),
|
---|
42 | 0, 0, 0, 0,
|
---|
43 | 0, 0,
|
---|
44 | 0, v2i_NAME_CONSTRAINTS,
|
---|
45 | i2r_NAME_CONSTRAINTS, 0,
|
---|
46 | NULL
|
---|
47 | };
|
---|
48 |
|
---|
49 | ASN1_SEQUENCE(GENERAL_SUBTREE) = {
|
---|
50 | ASN1_SIMPLE(GENERAL_SUBTREE, base, GENERAL_NAME),
|
---|
51 | ASN1_IMP_OPT(GENERAL_SUBTREE, minimum, ASN1_INTEGER, 0),
|
---|
52 | ASN1_IMP_OPT(GENERAL_SUBTREE, maximum, ASN1_INTEGER, 1)
|
---|
53 | } ASN1_SEQUENCE_END(GENERAL_SUBTREE)
|
---|
54 |
|
---|
55 | ASN1_SEQUENCE(NAME_CONSTRAINTS) = {
|
---|
56 | ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, permittedSubtrees,
|
---|
57 | GENERAL_SUBTREE, 0),
|
---|
58 | ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, excludedSubtrees,
|
---|
59 | GENERAL_SUBTREE, 1),
|
---|
60 | } ASN1_SEQUENCE_END(NAME_CONSTRAINTS)
|
---|
61 |
|
---|
62 |
|
---|
63 | IMPLEMENT_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE)
|
---|
64 | IMPLEMENT_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
|
---|
65 |
|
---|
66 | /*
|
---|
67 | * We cannot use strncasecmp here because that applies locale specific rules.
|
---|
68 | * For example in Turkish 'I' is not the uppercase character for 'i'. We need to
|
---|
69 | * do a simple ASCII case comparison ignoring the locale (that is why we use
|
---|
70 | * numeric constants below).
|
---|
71 | */
|
---|
72 | static int ia5ncasecmp(const char *s1, const char *s2, size_t n)
|
---|
73 | {
|
---|
74 | for (; n > 0; n--, s1++, s2++) {
|
---|
75 | if (*s1 != *s2) {
|
---|
76 | unsigned char c1 = (unsigned char)*s1, c2 = (unsigned char)*s2;
|
---|
77 |
|
---|
78 | /* Convert to lower case */
|
---|
79 | if (c1 >= 0x41 /* A */ && c1 <= 0x5A /* Z */)
|
---|
80 | c1 += 0x20;
|
---|
81 | if (c2 >= 0x41 /* A */ && c2 <= 0x5A /* Z */)
|
---|
82 | c2 += 0x20;
|
---|
83 |
|
---|
84 | if (c1 == c2)
|
---|
85 | continue;
|
---|
86 |
|
---|
87 | if (c1 < c2)
|
---|
88 | return -1;
|
---|
89 |
|
---|
90 | /* c1 > c2 */
|
---|
91 | return 1;
|
---|
92 | } else if (*s1 == 0) {
|
---|
93 | /* If we get here we know that *s2 == 0 too */
|
---|
94 | return 0;
|
---|
95 | }
|
---|
96 | }
|
---|
97 |
|
---|
98 | return 0;
|
---|
99 | }
|
---|
100 |
|
---|
101 | static int ia5casecmp(const char *s1, const char *s2)
|
---|
102 | {
|
---|
103 | return ia5ncasecmp(s1, s2, SIZE_MAX);
|
---|
104 | }
|
---|
105 |
|
---|
106 | static void *v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method,
|
---|
107 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
|
---|
108 | {
|
---|
109 | int i;
|
---|
110 | CONF_VALUE tval, *val;
|
---|
111 | STACK_OF(GENERAL_SUBTREE) **ptree = NULL;
|
---|
112 | NAME_CONSTRAINTS *ncons = NULL;
|
---|
113 | GENERAL_SUBTREE *sub = NULL;
|
---|
114 |
|
---|
115 | ncons = NAME_CONSTRAINTS_new();
|
---|
116 | if (ncons == NULL)
|
---|
117 | goto memerr;
|
---|
118 | for (i = 0; i < sk_CONF_VALUE_num(nval); i++) {
|
---|
119 | val = sk_CONF_VALUE_value(nval, i);
|
---|
120 | if (strncmp(val->name, "permitted", 9) == 0 && val->name[9]) {
|
---|
121 | ptree = &ncons->permittedSubtrees;
|
---|
122 | tval.name = val->name + 10;
|
---|
123 | } else if (strncmp(val->name, "excluded", 8) == 0 && val->name[8]) {
|
---|
124 | ptree = &ncons->excludedSubtrees;
|
---|
125 | tval.name = val->name + 9;
|
---|
126 | } else {
|
---|
127 | X509V3err(X509V3_F_V2I_NAME_CONSTRAINTS, X509V3_R_INVALID_SYNTAX);
|
---|
128 | goto err;
|
---|
129 | }
|
---|
130 | tval.value = val->value;
|
---|
131 | sub = GENERAL_SUBTREE_new();
|
---|
132 | if (sub == NULL)
|
---|
133 | goto memerr;
|
---|
134 | if (!v2i_GENERAL_NAME_ex(sub->base, method, ctx, &tval, 1))
|
---|
135 | goto err;
|
---|
136 | if (*ptree == NULL)
|
---|
137 | *ptree = sk_GENERAL_SUBTREE_new_null();
|
---|
138 | if (*ptree == NULL || !sk_GENERAL_SUBTREE_push(*ptree, sub))
|
---|
139 | goto memerr;
|
---|
140 | sub = NULL;
|
---|
141 | }
|
---|
142 |
|
---|
143 | return ncons;
|
---|
144 |
|
---|
145 | memerr:
|
---|
146 | X509V3err(X509V3_F_V2I_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
|
---|
147 | err:
|
---|
148 | NAME_CONSTRAINTS_free(ncons);
|
---|
149 | GENERAL_SUBTREE_free(sub);
|
---|
150 |
|
---|
151 | return NULL;
|
---|
152 | }
|
---|
153 |
|
---|
154 | static int i2r_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
|
---|
155 | BIO *bp, int ind)
|
---|
156 | {
|
---|
157 | NAME_CONSTRAINTS *ncons = a;
|
---|
158 | do_i2r_name_constraints(method, ncons->permittedSubtrees,
|
---|
159 | bp, ind, "Permitted");
|
---|
160 | do_i2r_name_constraints(method, ncons->excludedSubtrees,
|
---|
161 | bp, ind, "Excluded");
|
---|
162 | return 1;
|
---|
163 | }
|
---|
164 |
|
---|
165 | static int do_i2r_name_constraints(const X509V3_EXT_METHOD *method,
|
---|
166 | STACK_OF(GENERAL_SUBTREE) *trees,
|
---|
167 | BIO *bp, int ind, const char *name)
|
---|
168 | {
|
---|
169 | GENERAL_SUBTREE *tree;
|
---|
170 | int i;
|
---|
171 | if (sk_GENERAL_SUBTREE_num(trees) > 0)
|
---|
172 | BIO_printf(bp, "%*s%s:\n", ind, "", name);
|
---|
173 | for (i = 0; i < sk_GENERAL_SUBTREE_num(trees); i++) {
|
---|
174 | tree = sk_GENERAL_SUBTREE_value(trees, i);
|
---|
175 | BIO_printf(bp, "%*s", ind + 2, "");
|
---|
176 | if (tree->base->type == GEN_IPADD)
|
---|
177 | print_nc_ipadd(bp, tree->base->d.ip);
|
---|
178 | else
|
---|
179 | GENERAL_NAME_print(bp, tree->base);
|
---|
180 | BIO_puts(bp, "\n");
|
---|
181 | }
|
---|
182 | return 1;
|
---|
183 | }
|
---|
184 |
|
---|
185 | static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip)
|
---|
186 | {
|
---|
187 | int i, len;
|
---|
188 | unsigned char *p;
|
---|
189 | p = ip->data;
|
---|
190 | len = ip->length;
|
---|
191 | BIO_puts(bp, "IP:");
|
---|
192 | if (len == 8) {
|
---|
193 | BIO_printf(bp, "%d.%d.%d.%d/%d.%d.%d.%d",
|
---|
194 | p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
|
---|
195 | } else if (len == 32) {
|
---|
196 | for (i = 0; i < 16; i++) {
|
---|
197 | BIO_printf(bp, "%X", p[0] << 8 | p[1]);
|
---|
198 | p += 2;
|
---|
199 | if (i == 7)
|
---|
200 | BIO_puts(bp, "/");
|
---|
201 | else if (i != 15)
|
---|
202 | BIO_puts(bp, ":");
|
---|
203 | }
|
---|
204 | } else
|
---|
205 | BIO_printf(bp, "IP Address:<invalid>");
|
---|
206 | return 1;
|
---|
207 | }
|
---|
208 |
|
---|
209 | #define NAME_CHECK_MAX (1 << 20)
|
---|
210 |
|
---|
211 | static int add_lengths(int *out, int a, int b)
|
---|
212 | {
|
---|
213 | /* sk_FOO_num(NULL) returns -1 but is effectively 0 when iterating. */
|
---|
214 | if (a < 0)
|
---|
215 | a = 0;
|
---|
216 | if (b < 0)
|
---|
217 | b = 0;
|
---|
218 |
|
---|
219 | if (a > INT_MAX - b)
|
---|
220 | return 0;
|
---|
221 | *out = a + b;
|
---|
222 | return 1;
|
---|
223 | }
|
---|
224 |
|
---|
225 | /*-
|
---|
226 | * Check a certificate conforms to a specified set of constraints.
|
---|
227 | * Return values:
|
---|
228 | * X509_V_OK: All constraints obeyed.
|
---|
229 | * X509_V_ERR_PERMITTED_VIOLATION: Permitted subtree violation.
|
---|
230 | * X509_V_ERR_EXCLUDED_VIOLATION: Excluded subtree violation.
|
---|
231 | * X509_V_ERR_SUBTREE_MINMAX: Min or max values present and matching type.
|
---|
232 | * X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE: Unsupported constraint type.
|
---|
233 | * X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX: bad unsupported constraint syntax.
|
---|
234 | * X509_V_ERR_UNSUPPORTED_NAME_SYNTAX: bad or unsupported syntax of name
|
---|
235 | */
|
---|
236 |
|
---|
237 | int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc)
|
---|
238 | {
|
---|
239 | int r, i, name_count, constraint_count;
|
---|
240 | X509_NAME *nm;
|
---|
241 |
|
---|
242 | nm = X509_get_subject_name(x);
|
---|
243 |
|
---|
244 | /*
|
---|
245 | * Guard against certificates with an excessive number of names or
|
---|
246 | * constraints causing a computationally expensive name constraints check.
|
---|
247 | */
|
---|
248 | if (!add_lengths(&name_count, X509_NAME_entry_count(nm),
|
---|
249 | sk_GENERAL_NAME_num(x->altname))
|
---|
250 | || !add_lengths(&constraint_count,
|
---|
251 | sk_GENERAL_SUBTREE_num(nc->permittedSubtrees),
|
---|
252 | sk_GENERAL_SUBTREE_num(nc->excludedSubtrees))
|
---|
253 | || (name_count > 0 && constraint_count > NAME_CHECK_MAX / name_count))
|
---|
254 | return X509_V_ERR_UNSPECIFIED;
|
---|
255 |
|
---|
256 | if (X509_NAME_entry_count(nm) > 0) {
|
---|
257 | GENERAL_NAME gntmp;
|
---|
258 | gntmp.type = GEN_DIRNAME;
|
---|
259 | gntmp.d.directoryName = nm;
|
---|
260 |
|
---|
261 | r = nc_match(&gntmp, nc);
|
---|
262 |
|
---|
263 | if (r != X509_V_OK)
|
---|
264 | return r;
|
---|
265 |
|
---|
266 | gntmp.type = GEN_EMAIL;
|
---|
267 |
|
---|
268 | /* Process any email address attributes in subject name */
|
---|
269 |
|
---|
270 | for (i = -1;;) {
|
---|
271 | const X509_NAME_ENTRY *ne;
|
---|
272 |
|
---|
273 | i = X509_NAME_get_index_by_NID(nm, NID_pkcs9_emailAddress, i);
|
---|
274 | if (i == -1)
|
---|
275 | break;
|
---|
276 | ne = X509_NAME_get_entry(nm, i);
|
---|
277 | gntmp.d.rfc822Name = X509_NAME_ENTRY_get_data(ne);
|
---|
278 | if (gntmp.d.rfc822Name->type != V_ASN1_IA5STRING)
|
---|
279 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
280 |
|
---|
281 | r = nc_match(&gntmp, nc);
|
---|
282 |
|
---|
283 | if (r != X509_V_OK)
|
---|
284 | return r;
|
---|
285 | }
|
---|
286 |
|
---|
287 | }
|
---|
288 |
|
---|
289 | for (i = 0; i < sk_GENERAL_NAME_num(x->altname); i++) {
|
---|
290 | GENERAL_NAME *gen = sk_GENERAL_NAME_value(x->altname, i);
|
---|
291 | r = nc_match(gen, nc);
|
---|
292 | if (r != X509_V_OK)
|
---|
293 | return r;
|
---|
294 | }
|
---|
295 |
|
---|
296 | return X509_V_OK;
|
---|
297 |
|
---|
298 | }
|
---|
299 |
|
---|
300 | static int cn2dnsid(ASN1_STRING *cn, unsigned char **dnsid, size_t *idlen)
|
---|
301 | {
|
---|
302 | int utf8_length;
|
---|
303 | unsigned char *utf8_value;
|
---|
304 | int i;
|
---|
305 | int isdnsname = 0;
|
---|
306 |
|
---|
307 | /* Don't leave outputs uninitialized */
|
---|
308 | *dnsid = NULL;
|
---|
309 | *idlen = 0;
|
---|
310 |
|
---|
311 | /*-
|
---|
312 | * Per RFC 6125, DNS-IDs representing internationalized domain names appear
|
---|
313 | * in certificates in A-label encoded form:
|
---|
314 | *
|
---|
315 | * https://tools.ietf.org/html/rfc6125#section-6.4.2
|
---|
316 | *
|
---|
317 | * The same applies to CNs which are intended to represent DNS names.
|
---|
318 | * However, while in the SAN DNS-IDs are IA5Strings, as CNs they may be
|
---|
319 | * needlessly encoded in 16-bit Unicode. We perform a conversion to UTF-8
|
---|
320 | * to ensure that we get an ASCII representation of any CNs that are
|
---|
321 | * representable as ASCII, but just not encoded as ASCII. The UTF-8 form
|
---|
322 | * may contain some non-ASCII octets, and that's fine, such CNs are not
|
---|
323 | * valid legacy DNS names.
|
---|
324 | *
|
---|
325 | * Note, 'int' is the return type of ASN1_STRING_to_UTF8() so that's what
|
---|
326 | * we must use for 'utf8_length'.
|
---|
327 | */
|
---|
328 | if ((utf8_length = ASN1_STRING_to_UTF8(&utf8_value, cn)) < 0)
|
---|
329 | return X509_V_ERR_OUT_OF_MEM;
|
---|
330 |
|
---|
331 | /*
|
---|
332 | * Some certificates have had names that include a *trailing* NUL byte.
|
---|
333 | * Remove these harmless NUL characters. They would otherwise yield false
|
---|
334 | * alarms with the following embedded NUL check.
|
---|
335 | */
|
---|
336 | while (utf8_length > 0 && utf8_value[utf8_length - 1] == '\0')
|
---|
337 | --utf8_length;
|
---|
338 |
|
---|
339 | /* Reject *embedded* NULs */
|
---|
340 | if ((size_t)utf8_length != strlen((char *)utf8_value)) {
|
---|
341 | OPENSSL_free(utf8_value);
|
---|
342 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
343 | }
|
---|
344 |
|
---|
345 | /*
|
---|
346 | * XXX: Deviation from strict DNS name syntax, also check names with '_'
|
---|
347 | * Check DNS name syntax, any '-' or '.' must be internal,
|
---|
348 | * and on either side of each '.' we can't have a '-' or '.'.
|
---|
349 | *
|
---|
350 | * If the name has just one label, we don't consider it a DNS name. This
|
---|
351 | * means that "CN=sometld" cannot be precluded by DNS name constraints, but
|
---|
352 | * that is not a problem.
|
---|
353 | */
|
---|
354 | for (i = 0; i < utf8_length; ++i) {
|
---|
355 | unsigned char c = utf8_value[i];
|
---|
356 |
|
---|
357 | if ((c >= 'a' && c <= 'z')
|
---|
358 | || (c >= 'A' && c <= 'Z')
|
---|
359 | || (c >= '0' && c <= '9')
|
---|
360 | || c == '_')
|
---|
361 | continue;
|
---|
362 |
|
---|
363 | /* Dot and hyphen cannot be first or last. */
|
---|
364 | if (i > 0 && i < utf8_length - 1) {
|
---|
365 | if (c == '-')
|
---|
366 | continue;
|
---|
367 | /*
|
---|
368 | * Next to a dot the preceding and following characters must not be
|
---|
369 | * another dot or a hyphen. Otherwise, record that the name is
|
---|
370 | * plausible, since it has two or more labels.
|
---|
371 | */
|
---|
372 | if (c == '.'
|
---|
373 | && utf8_value[i + 1] != '.'
|
---|
374 | && utf8_value[i - 1] != '-'
|
---|
375 | && utf8_value[i + 1] != '-') {
|
---|
376 | isdnsname = 1;
|
---|
377 | continue;
|
---|
378 | }
|
---|
379 | }
|
---|
380 | isdnsname = 0;
|
---|
381 | break;
|
---|
382 | }
|
---|
383 |
|
---|
384 | if (isdnsname) {
|
---|
385 | *dnsid = utf8_value;
|
---|
386 | *idlen = (size_t)utf8_length;
|
---|
387 | return X509_V_OK;
|
---|
388 | }
|
---|
389 | OPENSSL_free(utf8_value);
|
---|
390 | return X509_V_OK;
|
---|
391 | }
|
---|
392 |
|
---|
393 | /*
|
---|
394 | * Check CN against DNS-ID name constraints.
|
---|
395 | */
|
---|
396 | int NAME_CONSTRAINTS_check_CN(X509 *x, NAME_CONSTRAINTS *nc)
|
---|
397 | {
|
---|
398 | int r, i;
|
---|
399 | X509_NAME *nm = X509_get_subject_name(x);
|
---|
400 | ASN1_STRING stmp;
|
---|
401 | GENERAL_NAME gntmp;
|
---|
402 |
|
---|
403 | stmp.flags = 0;
|
---|
404 | stmp.type = V_ASN1_IA5STRING;
|
---|
405 | gntmp.type = GEN_DNS;
|
---|
406 | gntmp.d.dNSName = &stmp;
|
---|
407 |
|
---|
408 | /* Process any commonName attributes in subject name */
|
---|
409 |
|
---|
410 | for (i = -1;;) {
|
---|
411 | X509_NAME_ENTRY *ne;
|
---|
412 | ASN1_STRING *cn;
|
---|
413 | unsigned char *idval;
|
---|
414 | size_t idlen;
|
---|
415 |
|
---|
416 | i = X509_NAME_get_index_by_NID(nm, NID_commonName, i);
|
---|
417 | if (i == -1)
|
---|
418 | break;
|
---|
419 | ne = X509_NAME_get_entry(nm, i);
|
---|
420 | cn = X509_NAME_ENTRY_get_data(ne);
|
---|
421 |
|
---|
422 | /* Only process attributes that look like host names */
|
---|
423 | if ((r = cn2dnsid(cn, &idval, &idlen)) != X509_V_OK)
|
---|
424 | return r;
|
---|
425 | if (idlen == 0)
|
---|
426 | continue;
|
---|
427 |
|
---|
428 | stmp.length = idlen;
|
---|
429 | stmp.data = idval;
|
---|
430 | r = nc_match(&gntmp, nc);
|
---|
431 | OPENSSL_free(idval);
|
---|
432 | if (r != X509_V_OK)
|
---|
433 | return r;
|
---|
434 | }
|
---|
435 | return X509_V_OK;
|
---|
436 | }
|
---|
437 |
|
---|
438 | static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
|
---|
439 | {
|
---|
440 | GENERAL_SUBTREE *sub;
|
---|
441 | int i, r, match = 0;
|
---|
442 |
|
---|
443 | /*
|
---|
444 | * Permitted subtrees: if any subtrees exist of matching the type at
|
---|
445 | * least one subtree must match.
|
---|
446 | */
|
---|
447 |
|
---|
448 | for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++) {
|
---|
449 | sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i);
|
---|
450 | if (gen->type != sub->base->type)
|
---|
451 | continue;
|
---|
452 | if (sub->minimum || sub->maximum)
|
---|
453 | return X509_V_ERR_SUBTREE_MINMAX;
|
---|
454 | /* If we already have a match don't bother trying any more */
|
---|
455 | if (match == 2)
|
---|
456 | continue;
|
---|
457 | if (match == 0)
|
---|
458 | match = 1;
|
---|
459 | r = nc_match_single(gen, sub->base);
|
---|
460 | if (r == X509_V_OK)
|
---|
461 | match = 2;
|
---|
462 | else if (r != X509_V_ERR_PERMITTED_VIOLATION)
|
---|
463 | return r;
|
---|
464 | }
|
---|
465 |
|
---|
466 | if (match == 1)
|
---|
467 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
468 |
|
---|
469 | /* Excluded subtrees: must not match any of these */
|
---|
470 |
|
---|
471 | for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++) {
|
---|
472 | sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i);
|
---|
473 | if (gen->type != sub->base->type)
|
---|
474 | continue;
|
---|
475 | if (sub->minimum || sub->maximum)
|
---|
476 | return X509_V_ERR_SUBTREE_MINMAX;
|
---|
477 |
|
---|
478 | r = nc_match_single(gen, sub->base);
|
---|
479 | if (r == X509_V_OK)
|
---|
480 | return X509_V_ERR_EXCLUDED_VIOLATION;
|
---|
481 | else if (r != X509_V_ERR_PERMITTED_VIOLATION)
|
---|
482 | return r;
|
---|
483 |
|
---|
484 | }
|
---|
485 |
|
---|
486 | return X509_V_OK;
|
---|
487 |
|
---|
488 | }
|
---|
489 |
|
---|
490 | static int nc_match_single(GENERAL_NAME *gen, GENERAL_NAME *base)
|
---|
491 | {
|
---|
492 | switch (base->type) {
|
---|
493 | case GEN_DIRNAME:
|
---|
494 | return nc_dn(gen->d.directoryName, base->d.directoryName);
|
---|
495 |
|
---|
496 | case GEN_DNS:
|
---|
497 | return nc_dns(gen->d.dNSName, base->d.dNSName);
|
---|
498 |
|
---|
499 | case GEN_EMAIL:
|
---|
500 | return nc_email(gen->d.rfc822Name, base->d.rfc822Name);
|
---|
501 |
|
---|
502 | case GEN_URI:
|
---|
503 | return nc_uri(gen->d.uniformResourceIdentifier,
|
---|
504 | base->d.uniformResourceIdentifier);
|
---|
505 |
|
---|
506 | case GEN_IPADD:
|
---|
507 | return nc_ip(gen->d.iPAddress, base->d.iPAddress);
|
---|
508 |
|
---|
509 | default:
|
---|
510 | return X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE;
|
---|
511 | }
|
---|
512 |
|
---|
513 | }
|
---|
514 |
|
---|
515 | /*
|
---|
516 | * directoryName name constraint matching. The canonical encoding of
|
---|
517 | * X509_NAME makes this comparison easy. It is matched if the subtree is a
|
---|
518 | * subset of the name.
|
---|
519 | */
|
---|
520 |
|
---|
521 | static int nc_dn(X509_NAME *nm, X509_NAME *base)
|
---|
522 | {
|
---|
523 | /* Ensure canonical encodings are up to date. */
|
---|
524 | if (nm->modified && i2d_X509_NAME(nm, NULL) < 0)
|
---|
525 | return X509_V_ERR_OUT_OF_MEM;
|
---|
526 | if (base->modified && i2d_X509_NAME(base, NULL) < 0)
|
---|
527 | return X509_V_ERR_OUT_OF_MEM;
|
---|
528 | if (base->canon_enclen > nm->canon_enclen)
|
---|
529 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
530 | if (memcmp(base->canon_enc, nm->canon_enc, base->canon_enclen))
|
---|
531 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
532 | return X509_V_OK;
|
---|
533 | }
|
---|
534 |
|
---|
535 | static int nc_dns(ASN1_IA5STRING *dns, ASN1_IA5STRING *base)
|
---|
536 | {
|
---|
537 | char *baseptr = (char *)base->data;
|
---|
538 | char *dnsptr = (char *)dns->data;
|
---|
539 | /* Empty matches everything */
|
---|
540 | if (!*baseptr)
|
---|
541 | return X509_V_OK;
|
---|
542 | /*
|
---|
543 | * Otherwise can add zero or more components on the left so compare RHS
|
---|
544 | * and if dns is longer and expect '.' as preceding character.
|
---|
545 | */
|
---|
546 | if (dns->length > base->length) {
|
---|
547 | dnsptr += dns->length - base->length;
|
---|
548 | if (*baseptr != '.' && dnsptr[-1] != '.')
|
---|
549 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
550 | }
|
---|
551 |
|
---|
552 | if (ia5casecmp(baseptr, dnsptr))
|
---|
553 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
554 |
|
---|
555 | return X509_V_OK;
|
---|
556 |
|
---|
557 | }
|
---|
558 |
|
---|
559 | static int nc_email(ASN1_IA5STRING *eml, ASN1_IA5STRING *base)
|
---|
560 | {
|
---|
561 | const char *baseptr = (char *)base->data;
|
---|
562 | const char *emlptr = (char *)eml->data;
|
---|
563 |
|
---|
564 | const char *baseat = strchr(baseptr, '@');
|
---|
565 | const char *emlat = strchr(emlptr, '@');
|
---|
566 | if (!emlat)
|
---|
567 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
568 | /* Special case: initial '.' is RHS match */
|
---|
569 | if (!baseat && (*baseptr == '.')) {
|
---|
570 | if (eml->length > base->length) {
|
---|
571 | emlptr += eml->length - base->length;
|
---|
572 | if (ia5casecmp(baseptr, emlptr) == 0)
|
---|
573 | return X509_V_OK;
|
---|
574 | }
|
---|
575 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
576 | }
|
---|
577 |
|
---|
578 | /* If we have anything before '@' match local part */
|
---|
579 |
|
---|
580 | if (baseat) {
|
---|
581 | if (baseat != baseptr) {
|
---|
582 | if ((baseat - baseptr) != (emlat - emlptr))
|
---|
583 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
584 | /* Case sensitive match of local part */
|
---|
585 | if (strncmp(baseptr, emlptr, emlat - emlptr))
|
---|
586 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
587 | }
|
---|
588 | /* Position base after '@' */
|
---|
589 | baseptr = baseat + 1;
|
---|
590 | }
|
---|
591 | emlptr = emlat + 1;
|
---|
592 | /* Just have hostname left to match: case insensitive */
|
---|
593 | if (ia5casecmp(baseptr, emlptr))
|
---|
594 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
595 |
|
---|
596 | return X509_V_OK;
|
---|
597 |
|
---|
598 | }
|
---|
599 |
|
---|
600 | static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
|
---|
601 | {
|
---|
602 | const char *baseptr = (char *)base->data;
|
---|
603 | const char *hostptr = (char *)uri->data;
|
---|
604 | const char *p = strchr(hostptr, ':');
|
---|
605 | int hostlen;
|
---|
606 | /* Check for foo:// and skip past it */
|
---|
607 | if (!p || (p[1] != '/') || (p[2] != '/'))
|
---|
608 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
609 | hostptr = p + 3;
|
---|
610 |
|
---|
611 | /* Determine length of hostname part of URI */
|
---|
612 |
|
---|
613 | /* Look for a port indicator as end of hostname first */
|
---|
614 |
|
---|
615 | p = strchr(hostptr, ':');
|
---|
616 | /* Otherwise look for trailing slash */
|
---|
617 | if (!p)
|
---|
618 | p = strchr(hostptr, '/');
|
---|
619 |
|
---|
620 | if (!p)
|
---|
621 | hostlen = strlen(hostptr);
|
---|
622 | else
|
---|
623 | hostlen = p - hostptr;
|
---|
624 |
|
---|
625 | if (hostlen == 0)
|
---|
626 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
627 |
|
---|
628 | /* Special case: initial '.' is RHS match */
|
---|
629 | if (*baseptr == '.') {
|
---|
630 | if (hostlen > base->length) {
|
---|
631 | p = hostptr + hostlen - base->length;
|
---|
632 | if (ia5ncasecmp(p, baseptr, base->length) == 0)
|
---|
633 | return X509_V_OK;
|
---|
634 | }
|
---|
635 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
636 | }
|
---|
637 |
|
---|
638 | if ((base->length != (int)hostlen)
|
---|
639 | || ia5ncasecmp(hostptr, baseptr, hostlen))
|
---|
640 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
641 |
|
---|
642 | return X509_V_OK;
|
---|
643 |
|
---|
644 | }
|
---|
645 |
|
---|
646 | static int nc_ip(ASN1_OCTET_STRING *ip, ASN1_OCTET_STRING *base)
|
---|
647 | {
|
---|
648 | int hostlen, baselen, i;
|
---|
649 | unsigned char *hostptr, *baseptr, *maskptr;
|
---|
650 | hostptr = ip->data;
|
---|
651 | hostlen = ip->length;
|
---|
652 | baseptr = base->data;
|
---|
653 | baselen = base->length;
|
---|
654 |
|
---|
655 | /* Invalid if not IPv4 or IPv6 */
|
---|
656 | if (!((hostlen == 4) || (hostlen == 16)))
|
---|
657 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
658 | if (!((baselen == 8) || (baselen == 32)))
|
---|
659 | return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
---|
660 |
|
---|
661 | /* Do not match IPv4 with IPv6 */
|
---|
662 | if (hostlen * 2 != baselen)
|
---|
663 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
664 |
|
---|
665 | maskptr = base->data + hostlen;
|
---|
666 |
|
---|
667 | /* Considering possible not aligned base ipAddress */
|
---|
668 | /* Not checking for wrong mask definition: i.e.: 255.0.255.0 */
|
---|
669 | for (i = 0; i < hostlen; i++)
|
---|
670 | if ((hostptr[i] & maskptr[i]) != (baseptr[i] & maskptr[i]))
|
---|
671 | return X509_V_ERR_PERMITTED_VIOLATION;
|
---|
672 |
|
---|
673 | return X509_V_OK;
|
---|
674 |
|
---|
675 | }
|
---|