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