dcd65905a5e4b228a86043942ec4c8fba52997c2
[openssl.git] / crypto / x509v3 / v3_ncons.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2003 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include "internal/cryptlib.h"
61 #include <openssl/asn1t.h>
62 #include <openssl/conf.h>
63 #include <openssl/x509v3.h>
64
65 #include "internal/x509_int.h"
66 #include "ext_dat.h"
67
68 static void *v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method,
69                                   X509V3_CTX *ctx,
70                                   STACK_OF(CONF_VALUE) *nval);
71 static int i2r_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
72                                 BIO *bp, int ind);
73 static int do_i2r_name_constraints(const X509V3_EXT_METHOD *method,
74                                    STACK_OF(GENERAL_SUBTREE) *trees, BIO *bp,
75                                    int ind, char *name);
76 static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip);
77
78 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
79 static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen);
80 static int nc_dn(X509_NAME *sub, X509_NAME *nm);
81 static int nc_dns(ASN1_IA5STRING *sub, ASN1_IA5STRING *dns);
82 static int nc_email(ASN1_IA5STRING *sub, ASN1_IA5STRING *eml);
83 static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base);
84 static int nc_ip(ASN1_OCTET_STRING *ip, ASN1_OCTET_STRING *base);
85
86 const X509V3_EXT_METHOD v3_name_constraints = {
87     NID_name_constraints, 0,
88     ASN1_ITEM_ref(NAME_CONSTRAINTS),
89     0, 0, 0, 0,
90     0, 0,
91     0, v2i_NAME_CONSTRAINTS,
92     i2r_NAME_CONSTRAINTS, 0,
93     NULL
94 };
95
96 ASN1_SEQUENCE(GENERAL_SUBTREE) = {
97         ASN1_SIMPLE(GENERAL_SUBTREE, base, GENERAL_NAME),
98         ASN1_IMP_OPT(GENERAL_SUBTREE, minimum, ASN1_INTEGER, 0),
99         ASN1_IMP_OPT(GENERAL_SUBTREE, maximum, ASN1_INTEGER, 1)
100 } ASN1_SEQUENCE_END(GENERAL_SUBTREE)
101
102 ASN1_SEQUENCE(NAME_CONSTRAINTS) = {
103         ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, permittedSubtrees,
104                                                         GENERAL_SUBTREE, 0),
105         ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, excludedSubtrees,
106                                                         GENERAL_SUBTREE, 1),
107 } ASN1_SEQUENCE_END(NAME_CONSTRAINTS)
108
109
110 IMPLEMENT_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE)
111 IMPLEMENT_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
112
113 static void *v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method,
114                                   X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
115 {
116     int i;
117     CONF_VALUE tval, *val;
118     STACK_OF(GENERAL_SUBTREE) **ptree = NULL;
119     NAME_CONSTRAINTS *ncons = NULL;
120     GENERAL_SUBTREE *sub = NULL;
121
122     ncons = NAME_CONSTRAINTS_new();
123     if (ncons == NULL)
124         goto memerr;
125     for (i = 0; i < sk_CONF_VALUE_num(nval); i++) {
126         val = sk_CONF_VALUE_value(nval, i);
127         if (strncmp(val->name, "permitted", 9) == 0 && val->name[9]) {
128             ptree = &ncons->permittedSubtrees;
129             tval.name = val->name + 10;
130         } else if (strncmp(val->name, "excluded", 8) == 0 && val->name[8]) {
131             ptree = &ncons->excludedSubtrees;
132             tval.name = val->name + 9;
133         } else {
134             X509V3err(X509V3_F_V2I_NAME_CONSTRAINTS, X509V3_R_INVALID_SYNTAX);
135             goto err;
136         }
137         tval.value = val->value;
138         sub = GENERAL_SUBTREE_new();
139         if (sub == NULL)
140             goto memerr;
141         if (!v2i_GENERAL_NAME_ex(sub->base, method, ctx, &tval, 1))
142             goto err;
143         if (*ptree == NULL)
144             *ptree = sk_GENERAL_SUBTREE_new_null();
145         if (*ptree == NULL || !sk_GENERAL_SUBTREE_push(*ptree, sub))
146             goto memerr;
147         sub = NULL;
148     }
149
150     return ncons;
151
152  memerr:
153     X509V3err(X509V3_F_V2I_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
154  err:
155     NAME_CONSTRAINTS_free(ncons);
156     GENERAL_SUBTREE_free(sub);
157
158     return NULL;
159 }
160
161 static int i2r_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
162                                 BIO *bp, int ind)
163 {
164     NAME_CONSTRAINTS *ncons = a;
165     do_i2r_name_constraints(method, ncons->permittedSubtrees,
166                             bp, ind, "Permitted");
167     do_i2r_name_constraints(method, ncons->excludedSubtrees,
168                             bp, ind, "Excluded");
169     return 1;
170 }
171
172 static int do_i2r_name_constraints(const X509V3_EXT_METHOD *method,
173                                    STACK_OF(GENERAL_SUBTREE) *trees,
174                                    BIO *bp, int ind, char *name)
175 {
176     GENERAL_SUBTREE *tree;
177     int i;
178     if (sk_GENERAL_SUBTREE_num(trees) > 0)
179         BIO_printf(bp, "%*s%s:\n", ind, "", name);
180     for (i = 0; i < sk_GENERAL_SUBTREE_num(trees); i++) {
181         tree = sk_GENERAL_SUBTREE_value(trees, i);
182         BIO_printf(bp, "%*s", ind + 2, "");
183         if (tree->base->type == GEN_IPADD)
184             print_nc_ipadd(bp, tree->base->d.ip);
185         else
186             GENERAL_NAME_print(bp, tree->base);
187         BIO_puts(bp, "\n");
188     }
189     return 1;
190 }
191
192 static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip)
193 {
194     int i, len;
195     unsigned char *p;
196     p = ip->data;
197     len = ip->length;
198     BIO_puts(bp, "IP:");
199     if (len == 8) {
200         BIO_printf(bp, "%d.%d.%d.%d/%d.%d.%d.%d",
201                    p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
202     } else if (len == 32) {
203         for (i = 0; i < 16; i++) {
204             BIO_printf(bp, "%X", p[0] << 8 | p[1]);
205             p += 2;
206             if (i == 7)
207                 BIO_puts(bp, "/");
208             else if (i != 15)
209                 BIO_puts(bp, ":");
210         }
211     } else
212         BIO_printf(bp, "IP Address:<invalid>");
213     return 1;
214 }
215
216 /*-
217  * Check a certificate conforms to a specified set of constraints.
218  * Return values:
219  *  X509_V_OK: All constraints obeyed.
220  *  X509_V_ERR_PERMITTED_VIOLATION: Permitted subtree violation.
221  *  X509_V_ERR_EXCLUDED_VIOLATION: Excluded subtree violation.
222  *  X509_V_ERR_SUBTREE_MINMAX: Min or max values present and matching type.
223  *  X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE:  Unsupported constraint type.
224  *  X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX: bad unsupported constraint syntax.
225  *  X509_V_ERR_UNSUPPORTED_NAME_SYNTAX: bad or unsupported syntax of name
226  */
227
228 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc)
229 {
230     int r, i;
231     X509_NAME *nm;
232
233     nm = X509_get_subject_name(x);
234
235     if (X509_NAME_entry_count(nm) > 0) {
236         GENERAL_NAME gntmp;
237         gntmp.type = GEN_DIRNAME;
238         gntmp.d.directoryName = nm;
239
240         r = nc_match(&gntmp, nc);
241
242         if (r != X509_V_OK)
243             return r;
244
245         gntmp.type = GEN_EMAIL;
246
247         /* Process any email address attributes in subject name */
248
249         for (i = -1;;) {
250             X509_NAME_ENTRY *ne;
251             i = X509_NAME_get_index_by_NID(nm, NID_pkcs9_emailAddress, i);
252             if (i == -1)
253                 break;
254             ne = X509_NAME_get_entry(nm, i);
255             gntmp.d.rfc822Name = X509_NAME_ENTRY_get_data(ne);
256             if (gntmp.d.rfc822Name->type != V_ASN1_IA5STRING)
257                 return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
258
259             r = nc_match(&gntmp, nc);
260
261             if (r != X509_V_OK)
262                 return r;
263         }
264
265     }
266
267     for (i = 0; i < sk_GENERAL_NAME_num(x->altname); i++) {
268         GENERAL_NAME *gen = sk_GENERAL_NAME_value(x->altname, i);
269         r = nc_match(gen, nc);
270         if (r != X509_V_OK)
271             return r;
272     }
273
274     return X509_V_OK;
275
276 }
277
278 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
279 {
280     GENERAL_SUBTREE *sub;
281     int i, r, match = 0;
282
283     /*
284      * Permitted subtrees: if any subtrees exist of matching the type at
285      * least one subtree must match.
286      */
287
288     for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++) {
289         sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i);
290         if (gen->type != sub->base->type)
291             continue;
292         if (sub->minimum || sub->maximum)
293             return X509_V_ERR_SUBTREE_MINMAX;
294         /* If we already have a match don't bother trying any more */
295         if (match == 2)
296             continue;
297         if (match == 0)
298             match = 1;
299         r = nc_match_single(gen, sub->base);
300         if (r == X509_V_OK)
301             match = 2;
302         else if (r != X509_V_ERR_PERMITTED_VIOLATION)
303             return r;
304     }
305
306     if (match == 1)
307         return X509_V_ERR_PERMITTED_VIOLATION;
308
309     /* Excluded subtrees: must not match any of these */
310
311     for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++) {
312         sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i);
313         if (gen->type != sub->base->type)
314             continue;
315         if (sub->minimum || sub->maximum)
316             return X509_V_ERR_SUBTREE_MINMAX;
317
318         r = nc_match_single(gen, sub->base);
319         if (r == X509_V_OK)
320             return X509_V_ERR_EXCLUDED_VIOLATION;
321         else if (r != X509_V_ERR_PERMITTED_VIOLATION)
322             return r;
323
324     }
325
326     return X509_V_OK;
327
328 }
329
330 static int nc_match_single(GENERAL_NAME *gen, GENERAL_NAME *base)
331 {
332     switch (base->type) {
333     case GEN_DIRNAME:
334         return nc_dn(gen->d.directoryName, base->d.directoryName);
335
336     case GEN_DNS:
337         return nc_dns(gen->d.dNSName, base->d.dNSName);
338
339     case GEN_EMAIL:
340         return nc_email(gen->d.rfc822Name, base->d.rfc822Name);
341
342     case GEN_URI:
343         return nc_uri(gen->d.uniformResourceIdentifier,
344                       base->d.uniformResourceIdentifier);
345
346     case GEN_IPADD:
347         return nc_ip(gen->d.iPAddress, base->d.iPAddress);
348
349     default:
350         return X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE;
351     }
352
353 }
354
355 /*
356  * directoryName name constraint matching. The canonical encoding of
357  * X509_NAME makes this comparison easy. It is matched if the subtree is a
358  * subset of the name.
359  */
360
361 static int nc_dn(X509_NAME *nm, X509_NAME *base)
362 {
363     /* Ensure canonical encodings are up to date.  */
364     if (nm->modified && i2d_X509_NAME(nm, NULL) < 0)
365         return X509_V_ERR_OUT_OF_MEM;
366     if (base->modified && i2d_X509_NAME(base, NULL) < 0)
367         return X509_V_ERR_OUT_OF_MEM;
368     if (base->canon_enclen > nm->canon_enclen)
369         return X509_V_ERR_PERMITTED_VIOLATION;
370     if (memcmp(base->canon_enc, nm->canon_enc, base->canon_enclen))
371         return X509_V_ERR_PERMITTED_VIOLATION;
372     return X509_V_OK;
373 }
374
375 static int nc_dns(ASN1_IA5STRING *dns, ASN1_IA5STRING *base)
376 {
377     char *baseptr = (char *)base->data;
378     char *dnsptr = (char *)dns->data;
379     /* Empty matches everything */
380     if (!*baseptr)
381         return X509_V_OK;
382     /*
383      * Otherwise can add zero or more components on the left so compare RHS
384      * and if dns is longer and expect '.' as preceding character.
385      */
386     if (dns->length > base->length) {
387         dnsptr += dns->length - base->length;
388         if (*baseptr != '.' && dnsptr[-1] != '.')
389             return X509_V_ERR_PERMITTED_VIOLATION;
390     }
391
392     if (strcasecmp(baseptr, dnsptr))
393         return X509_V_ERR_PERMITTED_VIOLATION;
394
395     return X509_V_OK;
396
397 }
398
399 static int nc_email(ASN1_IA5STRING *eml, ASN1_IA5STRING *base)
400 {
401     const char *baseptr = (char *)base->data;
402     const char *emlptr = (char *)eml->data;
403
404     const char *baseat = strchr(baseptr, '@');
405     const char *emlat = strchr(emlptr, '@');
406     if (!emlat)
407         return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
408     /* Special case: inital '.' is RHS match */
409     if (!baseat && (*baseptr == '.')) {
410         if (eml->length > base->length) {
411             emlptr += eml->length - base->length;
412             if (strcasecmp(baseptr, emlptr) == 0)
413                 return X509_V_OK;
414         }
415         return X509_V_ERR_PERMITTED_VIOLATION;
416     }
417
418     /* If we have anything before '@' match local part */
419
420     if (baseat) {
421         if (baseat != baseptr) {
422             if ((baseat - baseptr) != (emlat - emlptr))
423                 return X509_V_ERR_PERMITTED_VIOLATION;
424             /* Case sensitive match of local part */
425             if (strncmp(baseptr, emlptr, emlat - emlptr))
426                 return X509_V_ERR_PERMITTED_VIOLATION;
427         }
428         /* Position base after '@' */
429         baseptr = baseat + 1;
430     }
431     emlptr = emlat + 1;
432     /* Just have hostname left to match: case insensitive */
433     if (strcasecmp(baseptr, emlptr))
434         return X509_V_ERR_PERMITTED_VIOLATION;
435
436     return X509_V_OK;
437
438 }
439
440 static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
441 {
442     const char *baseptr = (char *)base->data;
443     const char *hostptr = (char *)uri->data;
444     const char *p = strchr(hostptr, ':');
445     int hostlen;
446     /* Check for foo:// and skip past it */
447     if (!p || (p[1] != '/') || (p[2] != '/'))
448         return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
449     hostptr = p + 3;
450
451     /* Determine length of hostname part of URI */
452
453     /* Look for a port indicator as end of hostname first */
454
455     p = strchr(hostptr, ':');
456     /* Otherwise look for trailing slash */
457     if (!p)
458         p = strchr(hostptr, '/');
459
460     if (!p)
461         hostlen = strlen(hostptr);
462     else
463         hostlen = p - hostptr;
464
465     if (hostlen == 0)
466         return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
467
468     /* Special case: inital '.' is RHS match */
469     if (*baseptr == '.') {
470         if (hostlen > base->length) {
471             p = hostptr + hostlen - base->length;
472             if (strncasecmp(p, baseptr, base->length) == 0)
473                 return X509_V_OK;
474         }
475         return X509_V_ERR_PERMITTED_VIOLATION;
476     }
477
478     if ((base->length != (int)hostlen)
479         || strncasecmp(hostptr, baseptr, hostlen))
480         return X509_V_ERR_PERMITTED_VIOLATION;
481
482     return X509_V_OK;
483
484 }
485
486 static int nc_ip(ASN1_OCTET_STRING *ip, ASN1_OCTET_STRING *base)
487 {
488     int hostlen, baselen, i;
489     unsigned char *hostptr, *baseptr, *maskptr;
490     hostptr = ip->data;
491     hostlen = ip->length;
492     baseptr = base->data;
493     baselen = base->length;
494
495     /* Invalid if not IPv4 or IPv6 */
496     if (!((hostlen == 4) || (hostlen == 16)))
497         return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
498     if (!((baselen == 8) || (baselen == 32)))
499         return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
500
501     /* Do not match IPv4 with IPv6 */
502     if (hostlen * 2 != baselen)
503         return X509_V_ERR_PERMITTED_VIOLATION;
504
505     maskptr = base->data + hostlen;
506
507     /* Considering possible not aligned base ipAddress */
508     /* Not checking for wrong mask definition: i.e.: 255.0.255.0 */
509     for (i = 0; i < hostlen; i++)
510         if ((hostptr[i] & maskptr[i]) != (baseptr[i] & maskptr[i]))
511             return X509_V_ERR_PERMITTED_VIOLATION;
512
513     return X509_V_OK;
514
515 }