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