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