check_sig_alg_match(): weaken sig nid comparison to allow RSA{,PSS} key verify RSA-PSS
[openssl.git] / crypto / x509 / v3_purp.c
1 /*
2  * Copyright 1999-2021 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 #include "x509_local.h"
18
19 static int check_ssl_ca(const X509 *x);
20 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
21                                     int ca);
22 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
23                                     int ca);
24 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
25                                        int ca);
26 static int purpose_smime(const X509 *x, int ca);
27 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
28                                     int ca);
29 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
30                                        int ca);
31 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
32                                   int ca);
33 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
34                                         int ca);
35 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
36 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
37
38 static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b);
39 static void xptable_free(X509_PURPOSE *p);
40
41 static X509_PURPOSE xstandard[] = {
42     {X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0,
43      check_purpose_ssl_client, "SSL client", "sslclient", NULL},
44     {X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
45      check_purpose_ssl_server, "SSL server", "sslserver", NULL},
46     {X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
47      check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL},
48     {X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign,
49      "S/MIME signing", "smimesign", NULL},
50     {X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0,
51      check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL},
52     {X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign,
53      "CRL signing", "crlsign", NULL},
54     {X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, "Any Purpose", "any",
55      NULL},
56     {X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper,
57      "OCSP helper", "ocsphelper", NULL},
58     {X509_PURPOSE_TIMESTAMP_SIGN, X509_TRUST_TSA, 0,
59      check_purpose_timestamp_sign, "Time Stamp signing", "timestampsign",
60      NULL},
61 };
62
63 #define X509_PURPOSE_COUNT OSSL_NELEM(xstandard)
64
65 static STACK_OF(X509_PURPOSE) *xptable = NULL;
66
67 static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b)
68 {
69     return (*a)->purpose - (*b)->purpose;
70 }
71
72 /*
73  * As much as I'd like to make X509_check_purpose use a "const" X509* I
74  * really can't because it does recalculate hashes and do other non-const
75  * things.
76  */
77 int X509_check_purpose(X509 *x, int id, int ca)
78 {
79     int idx;
80     const X509_PURPOSE *pt;
81
82     if (!x509v3_cache_extensions(x))
83         return -1;
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         ERR_raise(ERR_LIB_X509V3, 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             ERR_raise(ERR_LIB_X509V3, 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 == NULL|| ptmp->sname == NULL) {
182         ERR_raise(ERR_LIB_X509V3, 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             ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE);
200             goto err;
201         }
202         if (!sk_X509_PURPOSE_push(xptable, ptmp)) {
203             ERR_raise(ERR_LIB_X509V3, 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 == NULL)
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_id_pkix_OCSP_noCheck, /* 369 */
287         NID_policy_constraints, /* 401 */
288         NID_proxyCertInfo,      /* 663 */
289         NID_name_constraints,   /* 666 */
290         NID_policy_mappings,    /* 747 */
291         NID_inhibit_any_policy  /* 748 */
292     };
293
294     int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
295
296     if (ex_nid == NID_undef)
297         return 0;
298
299     if (OBJ_bsearch_nid(&ex_nid, supported_nids, OSSL_NELEM(supported_nids)))
300         return 1;
301     return 0;
302 }
303
304 /* return 1 on success, 0 if x is invalid, -1 on (internal) error */
305 static int setup_dp(const X509 *x, DIST_POINT *dp)
306 {
307     const X509_NAME *iname = NULL;
308     int i;
309
310     if (dp->distpoint == NULL && sk_GENERAL_NAME_num(dp->CRLissuer) <= 0) {
311         ERR_raise(ERR_LIB_X509, X509_R_INVALID_DISTPOINT);
312         return 0;
313     }
314     if (dp->reasons != NULL) {
315         if (dp->reasons->length > 0)
316             dp->dp_reasons = dp->reasons->data[0];
317         if (dp->reasons->length > 1)
318             dp->dp_reasons |= (dp->reasons->data[1] << 8);
319         dp->dp_reasons &= CRLDP_ALL_REASONS;
320     } else {
321         dp->dp_reasons = CRLDP_ALL_REASONS;
322     }
323     if (dp->distpoint == NULL || dp->distpoint->type != 1)
324         return 1;
325
326     /* handle name fragment given by nameRelativeToCRLIssuer */
327     /*
328      * Note that the below way of determining iname is not really compliant
329      * with https://tools.ietf.org/html/rfc5280#section-4.2.1.13
330      * According to it, sk_GENERAL_NAME_num(dp->CRLissuer) MUST be <= 1
331      * and any CRLissuer could be of type different to GEN_DIRNAME.
332      */
333     for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
334         GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
335
336         if (gen->type == GEN_DIRNAME) {
337             iname = gen->d.directoryName;
338             break;
339         }
340     }
341     if (iname == NULL)
342         iname = X509_get_issuer_name(x);
343     return DIST_POINT_set_dpname(dp->distpoint, iname) ? 1 : -1;
344 }
345
346 /* return 1 on success, 0 if x is invalid, -1 on (internal) error */
347 static int setup_crldp(X509 *x)
348 {
349     int i;
350
351     x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, &i, NULL);
352     if (x->crldp == NULL && i != -1)
353         return 0;
354
355     for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
356         int res = setup_dp(x, sk_DIST_POINT_value(x->crldp, i));
357
358         if (res < 1)
359             return res;
360     }
361     return 1;
362 }
363
364 /* Check that issuer public key algorithm matches subject signature algorithm */
365 static int check_sig_alg_match(const EVP_PKEY *issuer_key, const X509 *subject)
366 {
367     int signer_nid, subj_sig_nid;
368
369     if (issuer_key == NULL)
370         return X509_V_ERR_NO_ISSUER_PUBLIC_KEY;
371     signer_nid = EVP_PKEY_base_id(issuer_key);
372     if (OBJ_find_sigid_algs(OBJ_obj2nid(subject->cert_info.signature.algorithm),
373                             NULL, &subj_sig_nid) == 0)
374          return X509_V_ERR_UNSUPPORTED_SIGNATURE_ALGORITHM;
375     if (signer_nid == EVP_PKEY_type(subj_sig_nid)
376         || (signer_nid == NID_rsaEncryption && subj_sig_nid == NID_rsassaPss))
377         return X509_V_OK;
378     return X509_V_ERR_SIGNATURE_ALGORITHM_MISMATCH;
379 }
380
381 #define V1_ROOT (EXFLAG_V1|EXFLAG_SS)
382 #define ku_reject(x, usage) \
383         (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
384 #define xku_reject(x, usage) \
385         (((x)->ex_flags & EXFLAG_XKUSAGE) && !((x)->ex_xkusage & (usage)))
386 #define ns_reject(x, usage) \
387         (((x)->ex_flags & EXFLAG_NSCERT) && !((x)->ex_nscert & (usage)))
388
389 /*
390  * Cache info on various X.509v3 extensions and further derived information,
391  * e.g., if cert 'x' is self-issued, in x->ex_flags and other internal fields.
392  * x->sha1_hash is filled in, or else EXFLAG_NO_FINGERPRINT is set in x->flags.
393  * X509_SIG_INFO_VALID is set in x->flags if x->siginf was filled successfully.
394  * Set EXFLAG_INVALID and return 0 in case the certificate is invalid.
395  */
396 int x509v3_cache_extensions(X509 *x)
397 {
398     BASIC_CONSTRAINTS *bs;
399     PROXY_CERT_INFO_EXTENSION *pci;
400     ASN1_BIT_STRING *usage;
401     ASN1_BIT_STRING *ns;
402     EXTENDED_KEY_USAGE *extusage;
403     int i;
404     int res;
405
406 #ifdef tsan_ld_acq
407     /* fast lock-free check, see end of the function for details. */
408     if (tsan_ld_acq((TSAN_QUALIFIER int *)&x->ex_cached))
409         return (x->ex_flags & EXFLAG_INVALID) == 0;
410 #endif
411
412     CRYPTO_THREAD_write_lock(x->lock);
413     if (x->ex_flags & EXFLAG_SET) { /* cert has already been processed */
414         CRYPTO_THREAD_unlock(x->lock);
415         return (x->ex_flags & EXFLAG_INVALID) == 0;
416     }
417
418     /* Cache the SHA1 digest of the cert */
419     if (!X509_digest(x, EVP_sha1(), x->sha1_hash, NULL))
420         x->ex_flags |= EXFLAG_NO_FINGERPRINT;
421
422     ERR_set_mark();
423
424     /* V1 should mean no extensions ... */
425     if (X509_get_version(x) == 0)
426         x->ex_flags |= EXFLAG_V1;
427
428     /* Handle basic constraints */
429     x->ex_pathlen = -1;
430     if ((bs = X509_get_ext_d2i(x, NID_basic_constraints, &i, NULL)) != NULL) {
431         if (bs->ca)
432             x->ex_flags |= EXFLAG_CA;
433         if (bs->pathlen != NULL) {
434             /*
435              * the error case !bs->ca is checked by check_chain()
436              * in case ctx->param->flags & X509_V_FLAG_X509_STRICT
437              */
438             if (bs->pathlen->type == V_ASN1_NEG_INTEGER) {
439                 ERR_raise(ERR_LIB_X509, X509V3_R_NEGATIVE_PATHLEN);
440                 x->ex_flags |= EXFLAG_INVALID;
441             } else {
442                 x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen);
443             }
444         }
445         BASIC_CONSTRAINTS_free(bs);
446         x->ex_flags |= EXFLAG_BCONS;
447     } else if (i != -1) {
448         x->ex_flags |= EXFLAG_INVALID;
449     }
450
451     /* Handle proxy certificates */
452     if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, &i, NULL)) != NULL) {
453         if (x->ex_flags & EXFLAG_CA
454             || X509_get_ext_by_NID(x, NID_subject_alt_name, -1) >= 0
455             || X509_get_ext_by_NID(x, NID_issuer_alt_name, -1) >= 0) {
456             x->ex_flags |= EXFLAG_INVALID;
457         }
458         if (pci->pcPathLengthConstraint != NULL)
459             x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
460         else
461             x->ex_pcpathlen = -1;
462         PROXY_CERT_INFO_EXTENSION_free(pci);
463         x->ex_flags |= EXFLAG_PROXY;
464     } else if (i != -1) {
465         x->ex_flags |= EXFLAG_INVALID;
466     }
467
468     /* Handle (basic) key usage */
469     if ((usage = X509_get_ext_d2i(x, NID_key_usage, &i, NULL)) != NULL) {
470         x->ex_kusage = 0;
471         if (usage->length > 0) {
472             x->ex_kusage = usage->data[0];
473             if (usage->length > 1)
474                 x->ex_kusage |= usage->data[1] << 8;
475         }
476         x->ex_flags |= EXFLAG_KUSAGE;
477         ASN1_BIT_STRING_free(usage);
478         /* Check for empty key usage according to RFC 5280 section 4.2.1.3 */
479         if (x->ex_kusage == 0) {
480             ERR_raise(ERR_LIB_X509, X509V3_R_EMPTY_KEY_USAGE);
481             x->ex_flags |= EXFLAG_INVALID;
482         }
483     } else if (i != -1) {
484         x->ex_flags |= EXFLAG_INVALID;
485     }
486
487     /* Handle extended key usage */
488     x->ex_xkusage = 0;
489     if ((extusage = X509_get_ext_d2i(x, NID_ext_key_usage, &i, NULL)) != NULL) {
490         x->ex_flags |= EXFLAG_XKUSAGE;
491         for (i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) {
492             switch (OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage, i))) {
493             case NID_server_auth:
494                 x->ex_xkusage |= XKU_SSL_SERVER;
495                 break;
496             case NID_client_auth:
497                 x->ex_xkusage |= XKU_SSL_CLIENT;
498                 break;
499             case NID_email_protect:
500                 x->ex_xkusage |= XKU_SMIME;
501                 break;
502             case NID_code_sign:
503                 x->ex_xkusage |= XKU_CODE_SIGN;
504                 break;
505             case NID_ms_sgc:
506             case NID_ns_sgc:
507                 x->ex_xkusage |= XKU_SGC;
508                 break;
509             case NID_OCSP_sign:
510                 x->ex_xkusage |= XKU_OCSP_SIGN;
511                 break;
512             case NID_time_stamp:
513                 x->ex_xkusage |= XKU_TIMESTAMP;
514                 break;
515             case NID_dvcs:
516                 x->ex_xkusage |= XKU_DVCS;
517                 break;
518             case NID_anyExtendedKeyUsage:
519                 x->ex_xkusage |= XKU_ANYEKU;
520                 break;
521             default:
522                 /* ignore unknown extended key usage */
523                 break;
524             }
525         }
526         sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free);
527     } else if (i != -1) {
528         x->ex_flags |= EXFLAG_INVALID;
529     }
530
531     /* Handle legacy Netscape extension */
532     if ((ns = X509_get_ext_d2i(x, NID_netscape_cert_type, &i, NULL)) != NULL) {
533         if (ns->length > 0)
534             x->ex_nscert = ns->data[0];
535         else
536             x->ex_nscert = 0;
537         x->ex_flags |= EXFLAG_NSCERT;
538         ASN1_BIT_STRING_free(ns);
539     } else if (i != -1) {
540         x->ex_flags |= EXFLAG_INVALID;
541     }
542
543     /* Handle subject key identifier and issuer/authority key identifier */
544     x->skid = X509_get_ext_d2i(x, NID_subject_key_identifier, &i, NULL);
545     if (x->skid == NULL && i != -1)
546         x->ex_flags |= EXFLAG_INVALID;
547
548     x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, &i, NULL);
549     if (x->akid == NULL && i != -1)
550         x->ex_flags |= EXFLAG_INVALID;
551
552     /* Check if subject name matches issuer */
553     if (X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x)) == 0) {
554         x->ex_flags |= EXFLAG_SI; /* cert is self-issued */
555         if (X509_check_akid(x, x->akid) == X509_V_OK /* SKID matches AKID */
556                 /* .. and the signature alg matches the PUBKEY alg: */
557                 && check_sig_alg_match(X509_get0_pubkey(x), x) == X509_V_OK)
558             x->ex_flags |= EXFLAG_SS; /* indicate self-signed */
559         /* This is very related to x509_likely_issued(x, x) == X509_V_OK */
560     }
561
562     /* Handle subject alternative names and various other extensions */
563     x->altname = X509_get_ext_d2i(x, NID_subject_alt_name, &i, NULL);
564     if (x->altname == NULL && i != -1)
565         x->ex_flags |= EXFLAG_INVALID;
566     x->nc = X509_get_ext_d2i(x, NID_name_constraints, &i, NULL);
567     if (x->nc == NULL && i != -1)
568         x->ex_flags |= EXFLAG_INVALID;
569
570     /* Handle CRL distribution point entries */
571     res = setup_crldp(x);
572     if (res == 0)
573         x->ex_flags |= EXFLAG_INVALID;
574     else if (res < 0)
575         goto err;
576
577 #ifndef OPENSSL_NO_RFC3779
578     x->rfc3779_addr = X509_get_ext_d2i(x, NID_sbgp_ipAddrBlock, &i, NULL);
579     if (x->rfc3779_addr == NULL && i != -1)
580         x->ex_flags |= EXFLAG_INVALID;
581     x->rfc3779_asid = X509_get_ext_d2i(x, NID_sbgp_autonomousSysNum, &i, NULL);
582     if (x->rfc3779_asid == NULL && i != -1)
583         x->ex_flags |= EXFLAG_INVALID;
584 #endif
585     for (i = 0; i < X509_get_ext_count(x); i++) {
586         X509_EXTENSION *ex = X509_get_ext(x, i);
587         int nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
588
589         if (nid == NID_freshest_crl)
590             x->ex_flags |= EXFLAG_FRESHEST;
591         if (!X509_EXTENSION_get_critical(ex))
592             continue;
593         if (!X509_supported_extension(ex)) {
594             x->ex_flags |= EXFLAG_CRITICAL;
595             break;
596         }
597         switch (nid) {
598         case NID_basic_constraints:
599             x->ex_flags |= EXFLAG_BCONS_CRITICAL;
600             break;
601         case NID_authority_key_identifier:
602             x->ex_flags |= EXFLAG_AKID_CRITICAL;
603             break;
604         case NID_subject_key_identifier:
605             x->ex_flags |= EXFLAG_SKID_CRITICAL;
606             break;
607         case NID_subject_alt_name:
608             x->ex_flags |= EXFLAG_SAN_CRITICAL;
609             break;
610         default:
611             break;
612         }
613     }
614
615     /* Set x->siginf, ignoring errors due to unsupported algos */
616     (void)x509_init_sig_info(x);
617
618     x->ex_flags |= EXFLAG_SET; /* indicate that cert has been processed */
619 #ifdef tsan_st_rel
620     tsan_st_rel((TSAN_QUALIFIER int *)&x->ex_cached, 1);
621     /*
622      * Above store triggers fast lock-free check in the beginning of the
623      * function. But one has to ensure that the structure is "stable", i.e.
624      * all stores are visible on all processors. Hence the release fence.
625      */
626 #endif
627     ERR_pop_to_mark();
628     if ((x->ex_flags & (EXFLAG_INVALID | EXFLAG_NO_FINGERPRINT)) == 0) {
629         CRYPTO_THREAD_unlock(x->lock);
630         return 1;
631     }
632     if ((x->ex_flags & EXFLAG_INVALID) != 0)
633         ERR_raise(ERR_LIB_X509, X509V3_R_INVALID_CERTIFICATE);
634     /* If computing sha1_hash failed the error queue already reflects this. */
635
636  err:
637     x->ex_flags |= EXFLAG_SET; /* indicate that cert has been processed */
638     CRYPTO_THREAD_unlock(x->lock);
639     return 0;
640 }
641
642 /*-
643  * CA checks common to all purposes
644  * return codes:
645  * 0 not a CA
646  * 1 is a CA
647  * 2 Only possible in older versions of openSSL when basicConstraints are absent
648  *   new versions will not return this value. May be a CA
649  * 3 basicConstraints absent but self-signed V1.
650  * 4 basicConstraints absent but keyUsage present and keyCertSign asserted.
651  * 5 Netscape specific CA Flags present
652  */
653
654 static int check_ca(const X509 *x)
655 {
656     /* keyUsage if present should allow cert signing */
657     if (ku_reject(x, KU_KEY_CERT_SIGN))
658         return 0;
659     if (x->ex_flags & EXFLAG_BCONS) {
660         if (x->ex_flags & EXFLAG_CA)
661             return 1;
662         /* If basicConstraints says not a CA then say so */
663         else
664             return 0;
665     } else {
666         /* we support V1 roots for...  uh, I don't really know why. */
667         if ((x->ex_flags & V1_ROOT) == V1_ROOT)
668             return 3;
669         /*
670          * If key usage present it must have certSign so tolerate it
671          */
672         else if (x->ex_flags & EXFLAG_KUSAGE)
673             return 4;
674         /* Older certificates could have Netscape-specific CA types */
675         else if (x->ex_flags & EXFLAG_NSCERT && x->ex_nscert & NS_ANY_CA)
676             return 5;
677         /* can this still be regarded a CA certificate?  I doubt it */
678         return 0;
679     }
680 }
681
682 void X509_set_proxy_flag(X509 *x)
683 {
684     x->ex_flags |= EXFLAG_PROXY;
685 }
686
687 void X509_set_proxy_pathlen(X509 *x, long l)
688 {
689     x->ex_pcpathlen = l;
690 }
691
692 int X509_check_ca(X509 *x)
693 {
694     /* Note 0 normally means "not a CA" - but in this case means error. */
695     if (!x509v3_cache_extensions(x))
696         return 0;
697
698     return check_ca(x);
699 }
700
701 /* Check SSL CA: common checks for SSL client and server */
702 static int check_ssl_ca(const X509 *x)
703 {
704     int ca_ret;
705     ca_ret = check_ca(x);
706     if (!ca_ret)
707         return 0;
708     /* check nsCertType if present */
709     if (ca_ret != 5 || x->ex_nscert & NS_SSL_CA)
710         return ca_ret;
711     else
712         return 0;
713 }
714
715 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
716                                     int ca)
717 {
718     if (xku_reject(x, XKU_SSL_CLIENT))
719         return 0;
720     if (ca)
721         return check_ssl_ca(x);
722     /* We need to do digital signatures or key agreement */
723     if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_KEY_AGREEMENT))
724         return 0;
725     /* nsCertType if present should allow SSL client use */
726     if (ns_reject(x, NS_SSL_CLIENT))
727         return 0;
728     return 1;
729 }
730
731 /*
732  * Key usage needed for TLS/SSL server: digital signature, encipherment or
733  * key agreement. The ssl code can check this more thoroughly for individual
734  * key types.
735  */
736 #define KU_TLS \
737         KU_DIGITAL_SIGNATURE|KU_KEY_ENCIPHERMENT|KU_KEY_AGREEMENT
738
739 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
740                                     int ca)
741 {
742     if (xku_reject(x, XKU_SSL_SERVER | XKU_SGC))
743         return 0;
744     if (ca)
745         return check_ssl_ca(x);
746
747     if (ns_reject(x, NS_SSL_SERVER))
748         return 0;
749     if (ku_reject(x, KU_TLS))
750         return 0;
751
752     return 1;
753
754 }
755
756 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
757                                        int ca)
758 {
759     int ret;
760     ret = check_purpose_ssl_server(xp, x, ca);
761     if (!ret || ca)
762         return ret;
763     /* We need to encipher or Netscape complains */
764     if (ku_reject(x, KU_KEY_ENCIPHERMENT))
765         return 0;
766     return ret;
767 }
768
769 /* common S/MIME checks */
770 static int purpose_smime(const X509 *x, int ca)
771 {
772     if (xku_reject(x, XKU_SMIME))
773         return 0;
774     if (ca) {
775         int ca_ret;
776         ca_ret = check_ca(x);
777         if (!ca_ret)
778             return 0;
779         /* check nsCertType if present */
780         if (ca_ret != 5 || x->ex_nscert & NS_SMIME_CA)
781             return ca_ret;
782         else
783             return 0;
784     }
785     if (x->ex_flags & EXFLAG_NSCERT) {
786         if (x->ex_nscert & NS_SMIME)
787             return 1;
788         /* Workaround for some buggy certificates */
789         if (x->ex_nscert & NS_SSL_CLIENT)
790             return 2;
791         return 0;
792     }
793     return 1;
794 }
795
796 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
797                                     int ca)
798 {
799     int ret;
800     ret = purpose_smime(x, ca);
801     if (!ret || ca)
802         return ret;
803     if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_NON_REPUDIATION))
804         return 0;
805     return ret;
806 }
807
808 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
809                                        int ca)
810 {
811     int ret;
812     ret = purpose_smime(x, ca);
813     if (!ret || ca)
814         return ret;
815     if (ku_reject(x, KU_KEY_ENCIPHERMENT))
816         return 0;
817     return ret;
818 }
819
820 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
821                                   int ca)
822 {
823     if (ca) {
824         int ca_ret;
825         if ((ca_ret = check_ca(x)) != 2)
826             return ca_ret;
827         else
828             return 0;
829     }
830     if (ku_reject(x, KU_CRL_SIGN))
831         return 0;
832     return 1;
833 }
834
835 /*
836  * OCSP helper: this is *not* a full OCSP check. It just checks that each CA
837  * is valid. Additional checks must be made on the chain.
838  */
839
840 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca)
841 {
842     /*
843      * Must be a valid CA.  Should we really support the "I don't know" value
844      * (2)?
845      */
846     if (ca)
847         return check_ca(x);
848     /* leaf certificate is checked in OCSP_verify() */
849     return 1;
850 }
851
852 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
853                                         int ca)
854 {
855     int i_ext;
856
857     /* If ca is true we must return if this is a valid CA certificate. */
858     if (ca)
859         return check_ca(x);
860
861     /*
862      * Check the optional key usage field:
863      * if Key Usage is present, it must be one of digitalSignature
864      * and/or nonRepudiation (other values are not consistent and shall
865      * be rejected).
866      */
867     if ((x->ex_flags & EXFLAG_KUSAGE)
868         && ((x->ex_kusage & ~(KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)) ||
869             !(x->ex_kusage & (KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE))))
870         return 0;
871
872     /* Only time stamp key usage is permitted and it's required. */
873     if (!(x->ex_flags & EXFLAG_XKUSAGE) || x->ex_xkusage != XKU_TIMESTAMP)
874         return 0;
875
876     /* Extended Key Usage MUST be critical */
877     i_ext = X509_get_ext_by_NID(x, NID_ext_key_usage, -1);
878     if (i_ext >= 0) {
879         X509_EXTENSION *ext = X509_get_ext((X509 *)x, i_ext);
880         if (!X509_EXTENSION_get_critical(ext))
881             return 0;
882     }
883
884     return 1;
885 }
886
887 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca)
888 {
889     return 1;
890 }
891
892 /*-
893  * Various checks to see if one certificate potentially issued the second.
894  * This can be used to prune a set of possible issuer certificates which
895  * have been looked up using some simple method such as by subject name.
896  * These are:
897  * 1. Check issuer_name(subject) == subject_name(issuer)
898  * 2. If akid(subject) exists, check that it matches issuer
899  * 3. Check that issuer public key algorithm matches subject signature algorithm
900  * 4. Check that any key_usage(issuer) allows certificate signing
901  * Note that this does not include actually checking the signature.
902  * Returns 0 for OK, or positive for reason for mismatch
903  * where reason codes match those for X509_verify_cert().
904  */
905 int X509_check_issued(X509 *issuer, X509 *subject)
906 {
907     int ret;
908
909     if ((ret = x509_likely_issued(issuer, subject)) != X509_V_OK)
910         return ret;
911     return x509_signing_allowed(issuer, subject);
912 }
913
914 /* do the checks 1., 2., and 3. as described above for X509_check_issued() */
915 int x509_likely_issued(X509 *issuer, X509 *subject)
916 {
917     int ret;
918
919     if (X509_NAME_cmp(X509_get_subject_name(issuer),
920                       X509_get_issuer_name(subject)) != 0)
921         return X509_V_ERR_SUBJECT_ISSUER_MISMATCH;
922
923     /* set issuer->skid and subject->akid */
924     if (!x509v3_cache_extensions(issuer)
925             || !x509v3_cache_extensions(subject))
926         return X509_V_ERR_UNSPECIFIED;
927
928     ret = X509_check_akid(issuer, subject->akid);
929     if (ret != X509_V_OK)
930         return ret;
931
932     /* check if the subject signature alg matches the issuer's PUBKEY alg */
933     return check_sig_alg_match(X509_get0_pubkey(issuer), subject);
934 }
935
936 /*-
937  * Check if certificate I<issuer> is allowed to issue certificate I<subject>
938  * according to the B<keyUsage> field of I<issuer> if present
939  * depending on any proxyCertInfo extension of I<subject>.
940  * Returns 0 for OK, or positive for reason for rejection
941  * where reason codes match those for X509_verify_cert().
942  */
943 int x509_signing_allowed(const X509 *issuer, const X509 *subject)
944 {
945     if (subject->ex_flags & EXFLAG_PROXY) {
946         if (ku_reject(issuer, KU_DIGITAL_SIGNATURE))
947             return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE;
948     } else if (ku_reject(issuer, KU_KEY_CERT_SIGN))
949         return X509_V_ERR_KEYUSAGE_NO_CERTSIGN;
950     return X509_V_OK;
951 }
952
953 int X509_check_akid(const X509 *issuer, const AUTHORITY_KEYID *akid)
954 {
955     if (akid == NULL)
956         return X509_V_OK;
957
958     /* Check key ids (if present) */
959     if (akid->keyid && issuer->skid &&
960         ASN1_OCTET_STRING_cmp(akid->keyid, issuer->skid))
961         return X509_V_ERR_AKID_SKID_MISMATCH;
962     /* Check serial number */
963     if (akid->serial &&
964         ASN1_INTEGER_cmp(X509_get0_serialNumber(issuer), akid->serial))
965         return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
966     /* Check issuer name */
967     if (akid->issuer) {
968         /*
969          * Ugh, for some peculiar reason AKID includes SEQUENCE OF
970          * GeneralName. So look for a DirName. There may be more than one but
971          * we only take any notice of the first.
972          */
973         GENERAL_NAMES *gens;
974         GENERAL_NAME *gen;
975         X509_NAME *nm = NULL;
976         int i;
977         gens = akid->issuer;
978         for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
979             gen = sk_GENERAL_NAME_value(gens, i);
980             if (gen->type == GEN_DIRNAME) {
981                 nm = gen->d.dirn;
982                 break;
983             }
984         }
985         if (nm != NULL && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)) != 0)
986             return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
987     }
988     return X509_V_OK;
989 }
990
991 uint32_t X509_get_extension_flags(X509 *x)
992 {
993     /* Call for side-effect of computing hash and caching extensions */
994     X509_check_purpose(x, -1, -1);
995     return x->ex_flags;
996 }
997
998 uint32_t X509_get_key_usage(X509 *x)
999 {
1000     /* Call for side-effect of computing hash and caching extensions */
1001     if (X509_check_purpose(x, -1, -1) != 1)
1002         return 0;
1003     if (x->ex_flags & EXFLAG_KUSAGE)
1004         return x->ex_kusage;
1005     return UINT32_MAX;
1006 }
1007
1008 uint32_t X509_get_extended_key_usage(X509 *x)
1009 {
1010     /* Call for side-effect of computing hash and caching extensions */
1011     if (X509_check_purpose(x, -1, -1) != 1)
1012         return 0;
1013     if (x->ex_flags & EXFLAG_XKUSAGE)
1014         return x->ex_xkusage;
1015     return UINT32_MAX;
1016 }
1017
1018 const ASN1_OCTET_STRING *X509_get0_subject_key_id(X509 *x)
1019 {
1020     /* Call for side-effect of computing hash and caching extensions */
1021     if (X509_check_purpose(x, -1, -1) != 1)
1022         return NULL;
1023     return x->skid;
1024 }
1025
1026 const ASN1_OCTET_STRING *X509_get0_authority_key_id(X509 *x)
1027 {
1028     /* Call for side-effect of computing hash and caching extensions */
1029     if (X509_check_purpose(x, -1, -1) != 1)
1030         return NULL;
1031     return (x->akid != NULL ? x->akid->keyid : NULL);
1032 }
1033
1034 const GENERAL_NAMES *X509_get0_authority_issuer(X509 *x)
1035 {
1036     /* Call for side-effect of computing hash and caching extensions */
1037     if (X509_check_purpose(x, -1, -1) != 1)
1038         return NULL;
1039     return (x->akid != NULL ? x->akid->issuer : NULL);
1040 }
1041
1042 const ASN1_INTEGER *X509_get0_authority_serial(X509 *x)
1043 {
1044     /* Call for side-effect of computing hash and caching extensions */
1045     if (X509_check_purpose(x, -1, -1) != 1)
1046         return NULL;
1047     return (x->akid != NULL ? x->akid->serial : NULL);
1048 }
1049
1050 long X509_get_pathlen(X509 *x)
1051 {
1052     /* Called for side effect of caching extensions */
1053     if (X509_check_purpose(x, -1, -1) != 1
1054             || (x->ex_flags & EXFLAG_BCONS) == 0)
1055         return -1;
1056     return x->ex_pathlen;
1057 }
1058
1059 long X509_get_proxy_pathlen(X509 *x)
1060 {
1061     /* Called for side effect of caching extensions */
1062     if (X509_check_purpose(x, -1, -1) != 1
1063             || (x->ex_flags & EXFLAG_PROXY) == 0)
1064         return -1;
1065     return x->ex_pcpathlen;
1066 }