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