5a535e2adeb6f39f9202f2770bc9a4b15a09bece
[openssl.git] / crypto / x509v3 / v3_purp.c
1 /*
2  * Copyright 1999-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 <stdio.h>
11 #include "internal/cryptlib.h"
12 #include "internal/numbers.h"
13 #include <openssl/x509v3.h>
14 #include <openssl/x509_vfy.h>
15 #include "internal/x509_int.h"
16 #include "internal/tsan_assist.h"
17
18 static void x509v3_cache_extensions(X509 *x);
19
20 static int check_ssl_ca(const X509 *x);
21 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
22                                     int ca);
23 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
24                                     int ca);
25 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
26                                        int ca);
27 static int purpose_smime(const X509 *x, int ca);
28 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
29                                     int ca);
30 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
31                                        int ca);
32 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
33                                   int ca);
34 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
35                                         int ca);
36 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
37 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
38
39 static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b);
40 static void xptable_free(X509_PURPOSE *p);
41
42 static X509_PURPOSE xstandard[] = {
43     {X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0,
44      check_purpose_ssl_client, "SSL client", "sslclient", NULL},
45     {X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
46      check_purpose_ssl_server, "SSL server", "sslserver", NULL},
47     {X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
48      check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL},
49     {X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign,
50      "S/MIME signing", "smimesign", NULL},
51     {X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0,
52      check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL},
53     {X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign,
54      "CRL signing", "crlsign", NULL},
55     {X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, "Any Purpose", "any",
56      NULL},
57     {X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper,
58      "OCSP helper", "ocsphelper", NULL},
59     {X509_PURPOSE_TIMESTAMP_SIGN, X509_TRUST_TSA, 0,
60      check_purpose_timestamp_sign, "Time Stamp signing", "timestampsign",
61      NULL},
62 };
63
64 #define X509_PURPOSE_COUNT OSSL_NELEM(xstandard)
65
66 static STACK_OF(X509_PURPOSE) *xptable = NULL;
67
68 static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b)
69 {
70     return (*a)->purpose - (*b)->purpose;
71 }
72
73 /*
74  * As much as I'd like to make X509_check_purpose use a "const" X509* I
75  * really can't because it does recalculate hashes and do other non-const
76  * things.
77  */
78 int X509_check_purpose(X509 *x, int id, int ca)
79 {
80     int idx;
81     const X509_PURPOSE *pt;
82
83     x509v3_cache_extensions(x);
84
85     /* Return if side-effect only call */
86     if (id == -1)
87         return 1;
88     idx = X509_PURPOSE_get_by_id(id);
89     if (idx == -1)
90         return -1;
91     pt = X509_PURPOSE_get0(idx);
92     return pt->check_purpose(pt, x, ca);
93 }
94
95 int X509_PURPOSE_set(int *p, int purpose)
96 {
97     if (X509_PURPOSE_get_by_id(purpose) == -1) {
98         X509V3err(X509V3_F_X509_PURPOSE_SET, X509V3_R_INVALID_PURPOSE);
99         return 0;
100     }
101     *p = purpose;
102     return 1;
103 }
104
105 int X509_PURPOSE_get_count(void)
106 {
107     if (!xptable)
108         return X509_PURPOSE_COUNT;
109     return sk_X509_PURPOSE_num(xptable) + X509_PURPOSE_COUNT;
110 }
111
112 X509_PURPOSE *X509_PURPOSE_get0(int idx)
113 {
114     if (idx < 0)
115         return NULL;
116     if (idx < (int)X509_PURPOSE_COUNT)
117         return xstandard + idx;
118     return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT);
119 }
120
121 int X509_PURPOSE_get_by_sname(const char *sname)
122 {
123     int i;
124     X509_PURPOSE *xptmp;
125     for (i = 0; i < X509_PURPOSE_get_count(); i++) {
126         xptmp = X509_PURPOSE_get0(i);
127         if (strcmp(xptmp->sname, sname) == 0)
128             return i;
129     }
130     return -1;
131 }
132
133 int X509_PURPOSE_get_by_id(int purpose)
134 {
135     X509_PURPOSE tmp;
136     int idx;
137
138     if ((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
139         return purpose - X509_PURPOSE_MIN;
140     if (xptable == NULL)
141         return -1;
142     tmp.purpose = purpose;
143     idx = sk_X509_PURPOSE_find(xptable, &tmp);
144     if (idx < 0)
145         return -1;
146     return idx + X509_PURPOSE_COUNT;
147 }
148
149 int X509_PURPOSE_add(int id, int trust, int flags,
150                      int (*ck) (const X509_PURPOSE *, const X509 *, int),
151                      const char *name, const char *sname, void *arg)
152 {
153     int idx;
154     X509_PURPOSE *ptmp;
155     /*
156      * This is set according to what we change: application can't set it
157      */
158     flags &= ~X509_PURPOSE_DYNAMIC;
159     /* This will always be set for application modified trust entries */
160     flags |= X509_PURPOSE_DYNAMIC_NAME;
161     /* Get existing entry if any */
162     idx = X509_PURPOSE_get_by_id(id);
163     /* Need a new entry */
164     if (idx == -1) {
165         if ((ptmp = OPENSSL_malloc(sizeof(*ptmp))) == NULL) {
166             X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
167             return 0;
168         }
169         ptmp->flags = X509_PURPOSE_DYNAMIC;
170     } else
171         ptmp = X509_PURPOSE_get0(idx);
172
173     /* OPENSSL_free existing name if dynamic */
174     if (ptmp->flags & X509_PURPOSE_DYNAMIC_NAME) {
175         OPENSSL_free(ptmp->name);
176         OPENSSL_free(ptmp->sname);
177     }
178     /* dup supplied name */
179     ptmp->name = OPENSSL_strdup(name);
180     ptmp->sname = OPENSSL_strdup(sname);
181     if (!ptmp->name || !ptmp->sname) {
182         X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
183         goto err;
184     }
185     /* Keep the dynamic flag of existing entry */
186     ptmp->flags &= X509_PURPOSE_DYNAMIC;
187     /* Set all other flags */
188     ptmp->flags |= flags;
189
190     ptmp->purpose = id;
191     ptmp->trust = trust;
192     ptmp->check_purpose = ck;
193     ptmp->usr_data = arg;
194
195     /* If its a new entry manage the dynamic table */
196     if (idx == -1) {
197         if (xptable == NULL
198             && (xptable = sk_X509_PURPOSE_new(xp_cmp)) == NULL) {
199             X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
200             goto err;
201         }
202         if (!sk_X509_PURPOSE_push(xptable, ptmp)) {
203             X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
204             goto err;
205         }
206     }
207     return 1;
208  err:
209     if (idx == -1) {
210         OPENSSL_free(ptmp->name);
211         OPENSSL_free(ptmp->sname);
212         OPENSSL_free(ptmp);
213     }
214     return 0;
215 }
216
217 static void xptable_free(X509_PURPOSE *p)
218 {
219     if (!p)
220         return;
221     if (p->flags & X509_PURPOSE_DYNAMIC) {
222         if (p->flags & X509_PURPOSE_DYNAMIC_NAME) {
223             OPENSSL_free(p->name);
224             OPENSSL_free(p->sname);
225         }
226         OPENSSL_free(p);
227     }
228 }
229
230 void X509_PURPOSE_cleanup(void)
231 {
232     sk_X509_PURPOSE_pop_free(xptable, xptable_free);
233     xptable = NULL;
234 }
235
236 int X509_PURPOSE_get_id(const X509_PURPOSE *xp)
237 {
238     return xp->purpose;
239 }
240
241 char *X509_PURPOSE_get0_name(const X509_PURPOSE *xp)
242 {
243     return xp->name;
244 }
245
246 char *X509_PURPOSE_get0_sname(const X509_PURPOSE *xp)
247 {
248     return xp->sname;
249 }
250
251 int X509_PURPOSE_get_trust(const X509_PURPOSE *xp)
252 {
253     return xp->trust;
254 }
255
256 static int nid_cmp(const int *a, const int *b)
257 {
258     return *a - *b;
259 }
260
261 DECLARE_OBJ_BSEARCH_CMP_FN(int, int, nid);
262 IMPLEMENT_OBJ_BSEARCH_CMP_FN(int, int, nid);
263
264 int X509_supported_extension(X509_EXTENSION *ex)
265 {
266     /*
267      * This table is a list of the NIDs of supported extensions: that is
268      * those which are used by the verify process. If an extension is
269      * critical and doesn't appear in this list then the verify process will
270      * normally reject the certificate. The list must be kept in numerical
271      * order because it will be searched using bsearch.
272      */
273
274     static const int supported_nids[] = {
275         NID_netscape_cert_type, /* 71 */
276         NID_key_usage,          /* 83 */
277         NID_subject_alt_name,   /* 85 */
278         NID_basic_constraints,  /* 87 */
279         NID_certificate_policies, /* 89 */
280         NID_crl_distribution_points, /* 103 */
281         NID_ext_key_usage,      /* 126 */
282 #ifndef OPENSSL_NO_RFC3779
283         NID_sbgp_ipAddrBlock,   /* 290 */
284         NID_sbgp_autonomousSysNum, /* 291 */
285 #endif
286         NID_policy_constraints, /* 401 */
287         NID_proxyCertInfo,      /* 663 */
288         NID_name_constraints,   /* 666 */
289         NID_policy_mappings,    /* 747 */
290         NID_inhibit_any_policy  /* 748 */
291     };
292
293     int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
294
295     if (ex_nid == NID_undef)
296         return 0;
297
298     if (OBJ_bsearch_nid(&ex_nid, supported_nids, OSSL_NELEM(supported_nids)))
299         return 1;
300     return 0;
301 }
302
303 static void setup_dp(X509 *x, DIST_POINT *dp)
304 {
305     X509_NAME *iname = NULL;
306     int i;
307     if (dp->reasons) {
308         if (dp->reasons->length > 0)
309             dp->dp_reasons = dp->reasons->data[0];
310         if (dp->reasons->length > 1)
311             dp->dp_reasons |= (dp->reasons->data[1] << 8);
312         dp->dp_reasons &= CRLDP_ALL_REASONS;
313     } else
314         dp->dp_reasons = CRLDP_ALL_REASONS;
315     if (!dp->distpoint || (dp->distpoint->type != 1))
316         return;
317     for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
318         GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
319         if (gen->type == GEN_DIRNAME) {
320             iname = gen->d.directoryName;
321             break;
322         }
323     }
324     if (!iname)
325         iname = X509_get_issuer_name(x);
326
327     DIST_POINT_set_dpname(dp->distpoint, iname);
328
329 }
330
331 static void setup_crldp(X509 *x)
332 {
333     int i;
334     x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
335     for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++)
336         setup_dp(x, sk_DIST_POINT_value(x->crldp, i));
337 }
338
339 #define V1_ROOT (EXFLAG_V1|EXFLAG_SS)
340 #define ku_reject(x, usage) \
341         (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
342 #define xku_reject(x, usage) \
343         (((x)->ex_flags & EXFLAG_XKUSAGE) && !((x)->ex_xkusage & (usage)))
344 #define ns_reject(x, usage) \
345         (((x)->ex_flags & EXFLAG_NSCERT) && !((x)->ex_nscert & (usage)))
346
347 static void x509v3_cache_extensions(X509 *x)
348 {
349     BASIC_CONSTRAINTS *bs;
350     PROXY_CERT_INFO_EXTENSION *pci;
351     ASN1_BIT_STRING *usage;
352     ASN1_BIT_STRING *ns;
353     EXTENDED_KEY_USAGE *extusage;
354     X509_EXTENSION *ex;
355     int i;
356
357     /* fast lock-free check, see end of the function for details. */
358     if (tsan_load((TSAN_QUALIFIER int *)&x->ex_cached))
359         return;
360
361     CRYPTO_THREAD_write_lock(x->lock);
362     if (x->ex_flags & EXFLAG_SET) {
363         CRYPTO_THREAD_unlock(x->lock);
364         return;
365     }
366
367     X509_digest(x, EVP_sha1(), x->sha1_hash, NULL);
368     /* V1 should mean no extensions ... */
369     if (!X509_get_version(x))
370         x->ex_flags |= EXFLAG_V1;
371     /* Handle basic constraints */
372     if ((bs = X509_get_ext_d2i(x, NID_basic_constraints, NULL, NULL))) {
373         if (bs->ca)
374             x->ex_flags |= EXFLAG_CA;
375         if (bs->pathlen) {
376             if ((bs->pathlen->type == V_ASN1_NEG_INTEGER)
377                 || !bs->ca) {
378                 x->ex_flags |= EXFLAG_INVALID;
379                 x->ex_pathlen = 0;
380             } else
381                 x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen);
382         } else
383             x->ex_pathlen = -1;
384         BASIC_CONSTRAINTS_free(bs);
385         x->ex_flags |= EXFLAG_BCONS;
386     }
387     /* Handle proxy certificates */
388     if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, NULL, NULL))) {
389         if (x->ex_flags & EXFLAG_CA
390             || X509_get_ext_by_NID(x, NID_subject_alt_name, -1) >= 0
391             || X509_get_ext_by_NID(x, NID_issuer_alt_name, -1) >= 0) {
392             x->ex_flags |= EXFLAG_INVALID;
393         }
394         if (pci->pcPathLengthConstraint) {
395             x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
396         } else
397             x->ex_pcpathlen = -1;
398         PROXY_CERT_INFO_EXTENSION_free(pci);
399         x->ex_flags |= EXFLAG_PROXY;
400     }
401     /* Handle key usage */
402     if ((usage = X509_get_ext_d2i(x, NID_key_usage, NULL, NULL))) {
403         if (usage->length > 0) {
404             x->ex_kusage = usage->data[0];
405             if (usage->length > 1)
406                 x->ex_kusage |= usage->data[1] << 8;
407         } else
408             x->ex_kusage = 0;
409         x->ex_flags |= EXFLAG_KUSAGE;
410         ASN1_BIT_STRING_free(usage);
411     }
412     x->ex_xkusage = 0;
413     if ((extusage = X509_get_ext_d2i(x, NID_ext_key_usage, NULL, NULL))) {
414         x->ex_flags |= EXFLAG_XKUSAGE;
415         for (i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) {
416             switch (OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage, i))) {
417             case NID_server_auth:
418                 x->ex_xkusage |= XKU_SSL_SERVER;
419                 break;
420
421             case NID_client_auth:
422                 x->ex_xkusage |= XKU_SSL_CLIENT;
423                 break;
424
425             case NID_email_protect:
426                 x->ex_xkusage |= XKU_SMIME;
427                 break;
428
429             case NID_code_sign:
430                 x->ex_xkusage |= XKU_CODE_SIGN;
431                 break;
432
433             case NID_ms_sgc:
434             case NID_ns_sgc:
435                 x->ex_xkusage |= XKU_SGC;
436                 break;
437
438             case NID_OCSP_sign:
439                 x->ex_xkusage |= XKU_OCSP_SIGN;
440                 break;
441
442             case NID_time_stamp:
443                 x->ex_xkusage |= XKU_TIMESTAMP;
444                 break;
445
446             case NID_dvcs:
447                 x->ex_xkusage |= XKU_DVCS;
448                 break;
449
450             case NID_anyExtendedKeyUsage:
451                 x->ex_xkusage |= XKU_ANYEKU;
452                 break;
453             }
454         }
455         sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free);
456     }
457
458     if ((ns = X509_get_ext_d2i(x, NID_netscape_cert_type, NULL, NULL))) {
459         if (ns->length > 0)
460             x->ex_nscert = ns->data[0];
461         else
462             x->ex_nscert = 0;
463         x->ex_flags |= EXFLAG_NSCERT;
464         ASN1_BIT_STRING_free(ns);
465     }
466     x->skid = X509_get_ext_d2i(x, NID_subject_key_identifier, NULL, NULL);
467     x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, NULL, NULL);
468     /* Does subject name match issuer ? */
469     if (!X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x))) {
470         x->ex_flags |= EXFLAG_SI;
471         /* If SKID matches AKID also indicate self signed */
472         if (X509_check_akid(x, x->akid) == X509_V_OK &&
473             !ku_reject(x, KU_KEY_CERT_SIGN))
474             x->ex_flags |= EXFLAG_SS;
475     }
476     x->altname = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL);
477     x->nc = X509_get_ext_d2i(x, NID_name_constraints, &i, NULL);
478     if (!x->nc && (i != -1))
479         x->ex_flags |= EXFLAG_INVALID;
480     setup_crldp(x);
481
482 #ifndef OPENSSL_NO_RFC3779
483     x->rfc3779_addr = X509_get_ext_d2i(x, NID_sbgp_ipAddrBlock, NULL, NULL);
484     x->rfc3779_asid = X509_get_ext_d2i(x, NID_sbgp_autonomousSysNum,
485                                        NULL, NULL);
486 #endif
487     for (i = 0; i < X509_get_ext_count(x); i++) {
488         ex = X509_get_ext(x, i);
489         if (OBJ_obj2nid(X509_EXTENSION_get_object(ex))
490             == NID_freshest_crl)
491             x->ex_flags |= EXFLAG_FRESHEST;
492         if (!X509_EXTENSION_get_critical(ex))
493             continue;
494         if (!X509_supported_extension(ex)) {
495             x->ex_flags |= EXFLAG_CRITICAL;
496             break;
497         }
498     }
499     x509_init_sig_info(x);
500     x->ex_flags |= EXFLAG_SET;
501     CRYPTO_THREAD_unlock(x->lock);
502     /*
503      * It has to be placed after memory barrier, which is implied by unlock.
504      * Worst thing that can happen is that another thread proceeds to lock
505      * and checks x->ex_flags & EXFLAGS_SET. See beginning of the function.
506      */
507     tsan_store((TSAN_QUALIFIER int *)&x->ex_cached, 1);
508 }
509
510 /*-
511  * CA checks common to all purposes
512  * return codes:
513  * 0 not a CA
514  * 1 is a CA
515  * 2 basicConstraints absent so "maybe" a CA
516  * 3 basicConstraints absent but self signed V1.
517  * 4 basicConstraints absent but keyUsage present and keyCertSign asserted.
518  */
519
520 static int check_ca(const X509 *x)
521 {
522     /* keyUsage if present should allow cert signing */
523     if (ku_reject(x, KU_KEY_CERT_SIGN))
524         return 0;
525     if (x->ex_flags & EXFLAG_BCONS) {
526         if (x->ex_flags & EXFLAG_CA)
527             return 1;
528         /* If basicConstraints says not a CA then say so */
529         else
530             return 0;
531     } else {
532         /* we support V1 roots for...  uh, I don't really know why. */
533         if ((x->ex_flags & V1_ROOT) == V1_ROOT)
534             return 3;
535         /*
536          * If key usage present it must have certSign so tolerate it
537          */
538         else if (x->ex_flags & EXFLAG_KUSAGE)
539             return 4;
540         /* Older certificates could have Netscape-specific CA types */
541         else if (x->ex_flags & EXFLAG_NSCERT && x->ex_nscert & NS_ANY_CA)
542             return 5;
543         /* can this still be regarded a CA certificate?  I doubt it */
544         return 0;
545     }
546 }
547
548 void X509_set_proxy_flag(X509 *x)
549 {
550     x->ex_flags |= EXFLAG_PROXY;
551 }
552
553 void X509_set_proxy_pathlen(X509 *x, long l)
554 {
555     x->ex_pcpathlen = l;
556 }
557
558 int X509_check_ca(X509 *x)
559 {
560     x509v3_cache_extensions(x);
561
562     return check_ca(x);
563 }
564
565 /* Check SSL CA: common checks for SSL client and server */
566 static int check_ssl_ca(const X509 *x)
567 {
568     int ca_ret;
569     ca_ret = check_ca(x);
570     if (!ca_ret)
571         return 0;
572     /* check nsCertType if present */
573     if (ca_ret != 5 || x->ex_nscert & NS_SSL_CA)
574         return ca_ret;
575     else
576         return 0;
577 }
578
579 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
580                                     int ca)
581 {
582     if (xku_reject(x, XKU_SSL_CLIENT))
583         return 0;
584     if (ca)
585         return check_ssl_ca(x);
586     /* We need to do digital signatures or key agreement */
587     if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_KEY_AGREEMENT))
588         return 0;
589     /* nsCertType if present should allow SSL client use */
590     if (ns_reject(x, NS_SSL_CLIENT))
591         return 0;
592     return 1;
593 }
594
595 /*
596  * Key usage needed for TLS/SSL server: digital signature, encipherment or
597  * key agreement. The ssl code can check this more thoroughly for individual
598  * key types.
599  */
600 #define KU_TLS \
601         KU_DIGITAL_SIGNATURE|KU_KEY_ENCIPHERMENT|KU_KEY_AGREEMENT
602
603 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
604                                     int ca)
605 {
606     if (xku_reject(x, XKU_SSL_SERVER | XKU_SGC))
607         return 0;
608     if (ca)
609         return check_ssl_ca(x);
610
611     if (ns_reject(x, NS_SSL_SERVER))
612         return 0;
613     if (ku_reject(x, KU_TLS))
614         return 0;
615
616     return 1;
617
618 }
619
620 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
621                                        int ca)
622 {
623     int ret;
624     ret = check_purpose_ssl_server(xp, x, ca);
625     if (!ret || ca)
626         return ret;
627     /* We need to encipher or Netscape complains */
628     if (ku_reject(x, KU_KEY_ENCIPHERMENT))
629         return 0;
630     return ret;
631 }
632
633 /* common S/MIME checks */
634 static int purpose_smime(const X509 *x, int ca)
635 {
636     if (xku_reject(x, XKU_SMIME))
637         return 0;
638     if (ca) {
639         int ca_ret;
640         ca_ret = check_ca(x);
641         if (!ca_ret)
642             return 0;
643         /* check nsCertType if present */
644         if (ca_ret != 5 || x->ex_nscert & NS_SMIME_CA)
645             return ca_ret;
646         else
647             return 0;
648     }
649     if (x->ex_flags & EXFLAG_NSCERT) {
650         if (x->ex_nscert & NS_SMIME)
651             return 1;
652         /* Workaround for some buggy certificates */
653         if (x->ex_nscert & NS_SSL_CLIENT)
654             return 2;
655         return 0;
656     }
657     return 1;
658 }
659
660 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
661                                     int ca)
662 {
663     int ret;
664     ret = purpose_smime(x, ca);
665     if (!ret || ca)
666         return ret;
667     if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_NON_REPUDIATION))
668         return 0;
669     return ret;
670 }
671
672 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
673                                        int ca)
674 {
675     int ret;
676     ret = purpose_smime(x, ca);
677     if (!ret || ca)
678         return ret;
679     if (ku_reject(x, KU_KEY_ENCIPHERMENT))
680         return 0;
681     return ret;
682 }
683
684 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
685                                   int ca)
686 {
687     if (ca) {
688         int ca_ret;
689         if ((ca_ret = check_ca(x)) != 2)
690             return ca_ret;
691         else
692             return 0;
693     }
694     if (ku_reject(x, KU_CRL_SIGN))
695         return 0;
696     return 1;
697 }
698
699 /*
700  * OCSP helper: this is *not* a full OCSP check. It just checks that each CA
701  * is valid. Additional checks must be made on the chain.
702  */
703
704 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca)
705 {
706     /*
707      * Must be a valid CA.  Should we really support the "I don't know" value
708      * (2)?
709      */
710     if (ca)
711         return check_ca(x);
712     /* leaf certificate is checked in OCSP_verify() */
713     return 1;
714 }
715
716 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
717                                         int ca)
718 {
719     int i_ext;
720
721     /* If ca is true we must return if this is a valid CA certificate. */
722     if (ca)
723         return check_ca(x);
724
725     /*
726      * Check the optional key usage field:
727      * if Key Usage is present, it must be one of digitalSignature
728      * and/or nonRepudiation (other values are not consistent and shall
729      * be rejected).
730      */
731     if ((x->ex_flags & EXFLAG_KUSAGE)
732         && ((x->ex_kusage & ~(KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)) ||
733             !(x->ex_kusage & (KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE))))
734         return 0;
735
736     /* Only time stamp key usage is permitted and it's required. */
737     if (!(x->ex_flags & EXFLAG_XKUSAGE) || x->ex_xkusage != XKU_TIMESTAMP)
738         return 0;
739
740     /* Extended Key Usage MUST be critical */
741     i_ext = X509_get_ext_by_NID(x, NID_ext_key_usage, -1);
742     if (i_ext >= 0) {
743         X509_EXTENSION *ext = X509_get_ext((X509 *)x, i_ext);
744         if (!X509_EXTENSION_get_critical(ext))
745             return 0;
746     }
747
748     return 1;
749 }
750
751 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca)
752 {
753     return 1;
754 }
755
756 /*-
757  * Various checks to see if one certificate issued the second.
758  * This can be used to prune a set of possible issuer certificates
759  * which have been looked up using some simple method such as by
760  * subject name.
761  * These are:
762  * 1. Check issuer_name(subject) == subject_name(issuer)
763  * 2. If akid(subject) exists check it matches issuer
764  * 3. If key_usage(issuer) exists check it supports certificate signing
765  * returns 0 for OK, positive for reason for mismatch, reasons match
766  * codes for X509_verify_cert()
767  */
768
769 int X509_check_issued(X509 *issuer, X509 *subject)
770 {
771     if (X509_NAME_cmp(X509_get_subject_name(issuer),
772                       X509_get_issuer_name(subject)))
773         return X509_V_ERR_SUBJECT_ISSUER_MISMATCH;
774
775     x509v3_cache_extensions(issuer);
776     x509v3_cache_extensions(subject);
777
778     if (subject->akid) {
779         int ret = X509_check_akid(issuer, subject->akid);
780         if (ret != X509_V_OK)
781             return ret;
782     }
783
784     if (subject->ex_flags & EXFLAG_PROXY) {
785         if (ku_reject(issuer, KU_DIGITAL_SIGNATURE))
786             return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE;
787     } else if (ku_reject(issuer, KU_KEY_CERT_SIGN))
788         return X509_V_ERR_KEYUSAGE_NO_CERTSIGN;
789     return X509_V_OK;
790 }
791
792 int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid)
793 {
794
795     if (!akid)
796         return X509_V_OK;
797
798     /* Check key ids (if present) */
799     if (akid->keyid && issuer->skid &&
800         ASN1_OCTET_STRING_cmp(akid->keyid, issuer->skid))
801         return X509_V_ERR_AKID_SKID_MISMATCH;
802     /* Check serial number */
803     if (akid->serial &&
804         ASN1_INTEGER_cmp(X509_get_serialNumber(issuer), akid->serial))
805         return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
806     /* Check issuer name */
807     if (akid->issuer) {
808         /*
809          * Ugh, for some peculiar reason AKID includes SEQUENCE OF
810          * GeneralName. So look for a DirName. There may be more than one but
811          * we only take any notice of the first.
812          */
813         GENERAL_NAMES *gens;
814         GENERAL_NAME *gen;
815         X509_NAME *nm = NULL;
816         int i;
817         gens = akid->issuer;
818         for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
819             gen = sk_GENERAL_NAME_value(gens, i);
820             if (gen->type == GEN_DIRNAME) {
821                 nm = gen->d.dirn;
822                 break;
823             }
824         }
825         if (nm && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)))
826             return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
827     }
828     return X509_V_OK;
829 }
830
831 uint32_t X509_get_extension_flags(X509 *x)
832 {
833     /* Call for side-effect of computing hash and caching extensions */
834     X509_check_purpose(x, -1, -1);
835     return x->ex_flags;
836 }
837
838 uint32_t X509_get_key_usage(X509 *x)
839 {
840     /* Call for side-effect of computing hash and caching extensions */
841     X509_check_purpose(x, -1, -1);
842     if (x->ex_flags & EXFLAG_KUSAGE)
843         return x->ex_kusage;
844     return UINT32_MAX;
845 }
846
847 uint32_t X509_get_extended_key_usage(X509 *x)
848 {
849     /* Call for side-effect of computing hash and caching extensions */
850     X509_check_purpose(x, -1, -1);
851     if (x->ex_flags & EXFLAG_XKUSAGE)
852         return x->ex_xkusage;
853     return UINT32_MAX;
854 }
855
856 const ASN1_OCTET_STRING *X509_get0_subject_key_id(X509 *x)
857 {
858     /* Call for side-effect of computing hash and caching extensions */
859     X509_check_purpose(x, -1, -1);
860     return x->skid;
861 }
862
863 const ASN1_OCTET_STRING *X509_get0_authority_key_id(X509 *x)
864 {
865     /* Call for side-effect of computing hash and caching extensions */
866     X509_check_purpose(x, -1, -1);
867     return (x->akid != NULL ? x->akid->keyid : NULL);
868 }
869
870 long X509_get_pathlen(X509 *x)
871 {
872     /* Called for side effect of caching extensions */
873     if (X509_check_purpose(x, -1, -1) != 1
874             || (x->ex_flags & EXFLAG_BCONS) == 0)
875         return -1;
876     return x->ex_pathlen;
877 }
878
879 long X509_get_proxy_pathlen(X509 *x)
880 {
881     /* Called for side effect of caching extensions */
882     if (X509_check_purpose(x, -1, -1) != 1
883             || (x->ex_flags & EXFLAG_PROXY) == 0)
884         return -1;
885     return x->ex_pcpathlen;
886 }