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