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