/src/openssl32/crypto/x509/v3_purp.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include "internal/numbers.h" |
13 | | #include <openssl/x509v3.h> |
14 | | #include <openssl/x509_vfy.h> |
15 | | #include "crypto/x509.h" |
16 | | #include "internal/tsan_assist.h" |
17 | | #include "x509_local.h" |
18 | | |
19 | | static int check_ssl_ca(const X509 *x); |
20 | | static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, |
21 | | int non_leaf); |
22 | | static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, |
23 | | int non_leaf); |
24 | | static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, |
25 | | int non_leaf); |
26 | | static int purpose_smime(const X509 *x, int non_leaf); |
27 | | static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, |
28 | | int non_leaf); |
29 | | static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, |
30 | | int non_leaf); |
31 | | static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, |
32 | | int non_leaf); |
33 | | static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, |
34 | | int non_leaf); |
35 | | static int check_purpose_code_sign(const X509_PURPOSE *xp, const X509 *x, |
36 | | int non_leaf); |
37 | | static int no_check_purpose(const X509_PURPOSE *xp, const X509 *x, |
38 | | int non_leaf); |
39 | | static int check_purpose_ocsp_helper(const X509_PURPOSE *xp, const X509 *x, |
40 | | int non_leaf); |
41 | | |
42 | | static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b); |
43 | | static void xptable_free(X509_PURPOSE *p); |
44 | | |
45 | | static X509_PURPOSE xstandard[] = { |
46 | | {X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0, |
47 | | check_purpose_ssl_client, "SSL client", "sslclient", NULL}, |
48 | | {X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, |
49 | | check_purpose_ssl_server, "SSL server", "sslserver", NULL}, |
50 | | {X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, |
51 | | check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL}, |
52 | | {X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign, |
53 | | "S/MIME signing", "smimesign", NULL}, |
54 | | {X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0, |
55 | | check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL}, |
56 | | {X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign, |
57 | | "CRL signing", "crlsign", NULL}, |
58 | | {X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check_purpose, |
59 | | "Any Purpose", "any", |
60 | | NULL}, |
61 | | {X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, check_purpose_ocsp_helper, |
62 | | "OCSP helper", "ocsphelper", NULL}, |
63 | | {X509_PURPOSE_TIMESTAMP_SIGN, X509_TRUST_TSA, 0, |
64 | | check_purpose_timestamp_sign, "Time Stamp signing", "timestampsign", |
65 | | NULL}, |
66 | | {X509_PURPOSE_CODE_SIGN, X509_TRUST_OBJECT_SIGN, 0, |
67 | | check_purpose_code_sign, "Code signing", "codesign", |
68 | | NULL}, |
69 | | }; |
70 | | |
71 | 528 | #define X509_PURPOSE_COUNT OSSL_NELEM(xstandard) |
72 | | |
73 | | static STACK_OF(X509_PURPOSE) *xptable = NULL; |
74 | | |
75 | | static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b) |
76 | 0 | { |
77 | 0 | return (*a)->purpose - (*b)->purpose; |
78 | 0 | } |
79 | | |
80 | | /* |
81 | | * As much as I'd like to make X509_check_purpose use a "const" X509* I really |
82 | | * can't because it does recalculate hashes and do other non-const things. |
83 | | * If id == -1 it just calls x509v3_cache_extensions() for its side-effect. |
84 | | * Returns 1 on success, 0 if x does not allow purpose, -1 on (internal) error. |
85 | | */ |
86 | | int X509_check_purpose(X509 *x, int id, int non_leaf) |
87 | 199k | { |
88 | 199k | int idx; |
89 | 199k | const X509_PURPOSE *pt; |
90 | | |
91 | 199k | if (!ossl_x509v3_cache_extensions(x)) |
92 | 29.1k | return -1; |
93 | 169k | if (id == -1) |
94 | 169k | return 1; |
95 | | |
96 | 328 | idx = X509_PURPOSE_get_by_id(id); |
97 | 328 | if (idx == -1) |
98 | 0 | return -1; |
99 | 328 | pt = X509_PURPOSE_get0(idx); |
100 | 328 | return pt->check_purpose(pt, x, non_leaf); |
101 | 328 | } |
102 | | |
103 | | int X509_PURPOSE_set(int *p, int purpose) |
104 | 0 | { |
105 | 0 | if (X509_PURPOSE_get_by_id(purpose) == -1) { |
106 | 0 | ERR_raise(ERR_LIB_X509V3, X509V3_R_INVALID_PURPOSE); |
107 | 0 | return 0; |
108 | 0 | } |
109 | 0 | *p = purpose; |
110 | 0 | return 1; |
111 | 0 | } |
112 | | |
113 | | int X509_PURPOSE_get_count(void) |
114 | 0 | { |
115 | 0 | if (!xptable) |
116 | 0 | return X509_PURPOSE_COUNT; |
117 | 0 | return sk_X509_PURPOSE_num(xptable) + X509_PURPOSE_COUNT; |
118 | 0 | } |
119 | | |
120 | | X509_PURPOSE *X509_PURPOSE_get0(int idx) |
121 | 34.8k | { |
122 | 34.8k | if (idx < 0) |
123 | 34.3k | return NULL; |
124 | 528 | if (idx < (int)X509_PURPOSE_COUNT) |
125 | 528 | return xstandard + idx; |
126 | 0 | return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT); |
127 | 528 | } |
128 | | |
129 | | int X509_PURPOSE_get_by_sname(const char *sname) |
130 | 0 | { |
131 | 0 | int i; |
132 | 0 | X509_PURPOSE *xptmp; |
133 | |
|
134 | 0 | for (i = 0; i < X509_PURPOSE_get_count(); i++) { |
135 | 0 | xptmp = X509_PURPOSE_get0(i); |
136 | 0 | if (strcmp(xptmp->sname, sname) == 0) |
137 | 0 | return i; |
138 | 0 | } |
139 | 0 | return -1; |
140 | 0 | } |
141 | | |
142 | | /* Returns -1 on error, else an index => 0 in standard/extended purpose table */ |
143 | | int X509_PURPOSE_get_by_id(int purpose) |
144 | 34.8k | { |
145 | 34.8k | X509_PURPOSE tmp; |
146 | 34.8k | int idx; |
147 | | |
148 | 34.8k | if (purpose >= X509_PURPOSE_MIN && purpose <= X509_PURPOSE_MAX) |
149 | 528 | return purpose - X509_PURPOSE_MIN; |
150 | 34.3k | if (xptable == NULL) |
151 | 34.3k | return -1; |
152 | 0 | tmp.purpose = purpose; |
153 | 0 | idx = sk_X509_PURPOSE_find(xptable, &tmp); |
154 | 0 | if (idx < 0) |
155 | 0 | return -1; |
156 | 0 | return idx + X509_PURPOSE_COUNT; |
157 | 0 | } |
158 | | |
159 | | int X509_PURPOSE_add(int id, int trust, int flags, |
160 | | int (*ck) (const X509_PURPOSE *, const X509 *, int), |
161 | | const char *name, const char *sname, void *arg) |
162 | 0 | { |
163 | 0 | int idx; |
164 | 0 | X509_PURPOSE *ptmp; |
165 | | |
166 | | /* This is set according to what we change: application can't set it */ |
167 | 0 | flags &= ~X509_PURPOSE_DYNAMIC; |
168 | | /* This will always be set for application modified trust entries */ |
169 | 0 | flags |= X509_PURPOSE_DYNAMIC_NAME; |
170 | | /* Get existing entry if any */ |
171 | 0 | idx = X509_PURPOSE_get_by_id(id); |
172 | | /* Need a new entry */ |
173 | 0 | if (idx == -1) { |
174 | 0 | if ((ptmp = OPENSSL_malloc(sizeof(*ptmp))) == NULL) |
175 | 0 | return 0; |
176 | 0 | ptmp->flags = X509_PURPOSE_DYNAMIC; |
177 | 0 | } else { |
178 | 0 | ptmp = X509_PURPOSE_get0(idx); |
179 | 0 | } |
180 | | |
181 | | /* OPENSSL_free existing name if dynamic */ |
182 | 0 | if ((ptmp->flags & X509_PURPOSE_DYNAMIC_NAME) != 0) { |
183 | 0 | OPENSSL_free(ptmp->name); |
184 | 0 | OPENSSL_free(ptmp->sname); |
185 | 0 | } |
186 | | /* Dup supplied name */ |
187 | 0 | ptmp->name = OPENSSL_strdup(name); |
188 | 0 | ptmp->sname = OPENSSL_strdup(sname); |
189 | 0 | if (ptmp->name == NULL || ptmp->sname == NULL) |
190 | 0 | goto err; |
191 | | /* Keep the dynamic flag of existing entry */ |
192 | 0 | ptmp->flags &= X509_PURPOSE_DYNAMIC; |
193 | | /* Set all other flags */ |
194 | 0 | ptmp->flags |= flags; |
195 | |
|
196 | 0 | ptmp->purpose = id; |
197 | 0 | ptmp->trust = trust; |
198 | 0 | ptmp->check_purpose = ck; |
199 | 0 | ptmp->usr_data = arg; |
200 | | |
201 | | /* If its a new entry manage the dynamic table */ |
202 | 0 | if (idx == -1) { |
203 | 0 | if (xptable == NULL |
204 | 0 | && (xptable = sk_X509_PURPOSE_new(xp_cmp)) == NULL) { |
205 | 0 | ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB); |
206 | 0 | goto err; |
207 | 0 | } |
208 | 0 | if (!sk_X509_PURPOSE_push(xptable, ptmp)) { |
209 | 0 | ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB); |
210 | 0 | goto err; |
211 | 0 | } |
212 | 0 | } |
213 | 0 | return 1; |
214 | 0 | err: |
215 | 0 | if (idx == -1) { |
216 | 0 | OPENSSL_free(ptmp->name); |
217 | 0 | OPENSSL_free(ptmp->sname); |
218 | 0 | OPENSSL_free(ptmp); |
219 | 0 | } |
220 | 0 | return 0; |
221 | 0 | } |
222 | | |
223 | | static void xptable_free(X509_PURPOSE *p) |
224 | 0 | { |
225 | 0 | if (p == NULL) |
226 | 0 | return; |
227 | 0 | if ((p->flags & X509_PURPOSE_DYNAMIC) != 0) { |
228 | 0 | if ((p->flags & X509_PURPOSE_DYNAMIC_NAME) != 0) { |
229 | 0 | OPENSSL_free(p->name); |
230 | 0 | OPENSSL_free(p->sname); |
231 | 0 | } |
232 | 0 | OPENSSL_free(p); |
233 | 0 | } |
234 | 0 | } |
235 | | |
236 | | void X509_PURPOSE_cleanup(void) |
237 | 0 | { |
238 | 0 | sk_X509_PURPOSE_pop_free(xptable, xptable_free); |
239 | 0 | xptable = NULL; |
240 | 0 | } |
241 | | |
242 | | int X509_PURPOSE_get_id(const X509_PURPOSE *xp) |
243 | 0 | { |
244 | 0 | return xp->purpose; |
245 | 0 | } |
246 | | |
247 | | char *X509_PURPOSE_get0_name(const X509_PURPOSE *xp) |
248 | 0 | { |
249 | 0 | return xp->name; |
250 | 0 | } |
251 | | |
252 | | char *X509_PURPOSE_get0_sname(const X509_PURPOSE *xp) |
253 | 0 | { |
254 | 0 | return xp->sname; |
255 | 0 | } |
256 | | |
257 | | int X509_PURPOSE_get_trust(const X509_PURPOSE *xp) |
258 | 0 | { |
259 | 0 | return xp->trust; |
260 | 0 | } |
261 | | |
262 | | static int nid_cmp(const int *a, const int *b) |
263 | 140k | { |
264 | 140k | return *a - *b; |
265 | 140k | } |
266 | | |
267 | | DECLARE_OBJ_BSEARCH_CMP_FN(int, int, nid); |
268 | | IMPLEMENT_OBJ_BSEARCH_CMP_FN(int, int, nid); |
269 | | |
270 | | int X509_supported_extension(X509_EXTENSION *ex) |
271 | 59.5k | { |
272 | | /* |
273 | | * This table is a list of the NIDs of supported extensions: that is |
274 | | * those which are used by the verify process. If an extension is |
275 | | * critical and doesn't appear in this list then the verify process will |
276 | | * normally reject the certificate. The list must be kept in numerical |
277 | | * order because it will be searched using bsearch. |
278 | | */ |
279 | 59.5k | static const int supported_nids[] = { |
280 | 59.5k | NID_netscape_cert_type, /* 71 */ |
281 | 59.5k | NID_key_usage, /* 83 */ |
282 | 59.5k | NID_subject_alt_name, /* 85 */ |
283 | 59.5k | NID_basic_constraints, /* 87 */ |
284 | 59.5k | NID_certificate_policies, /* 89 */ |
285 | 59.5k | NID_crl_distribution_points, /* 103 */ |
286 | 59.5k | NID_ext_key_usage, /* 126 */ |
287 | 59.5k | #ifndef OPENSSL_NO_RFC3779 |
288 | 59.5k | NID_sbgp_ipAddrBlock, /* 290 */ |
289 | 59.5k | NID_sbgp_autonomousSysNum, /* 291 */ |
290 | 59.5k | #endif |
291 | 59.5k | NID_id_pkix_OCSP_noCheck, /* 369 */ |
292 | 59.5k | NID_policy_constraints, /* 401 */ |
293 | 59.5k | NID_proxyCertInfo, /* 663 */ |
294 | 59.5k | NID_name_constraints, /* 666 */ |
295 | 59.5k | NID_policy_mappings, /* 747 */ |
296 | 59.5k | NID_inhibit_any_policy /* 748 */ |
297 | 59.5k | }; |
298 | | |
299 | 59.5k | int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex)); |
300 | | |
301 | 59.5k | if (ex_nid == NID_undef) |
302 | 3.99k | return 0; |
303 | | |
304 | 55.5k | if (OBJ_bsearch_nid(&ex_nid, supported_nids, OSSL_NELEM(supported_nids))) |
305 | 54.6k | return 1; |
306 | 935 | return 0; |
307 | 55.5k | } |
308 | | |
309 | | /* Returns 1 on success, 0 if x is invalid, -1 on (internal) error. */ |
310 | | static int setup_dp(const X509 *x, DIST_POINT *dp) |
311 | 815 | { |
312 | 815 | const X509_NAME *iname = NULL; |
313 | 815 | int i; |
314 | | |
315 | 815 | if (dp->distpoint == NULL && sk_GENERAL_NAME_num(dp->CRLissuer) <= 0) { |
316 | 28 | ERR_raise(ERR_LIB_X509, X509_R_INVALID_DISTPOINT); |
317 | 28 | return 0; |
318 | 28 | } |
319 | 787 | if (dp->reasons != NULL) { |
320 | 24 | if (dp->reasons->length > 0) |
321 | 24 | dp->dp_reasons = dp->reasons->data[0]; |
322 | 24 | if (dp->reasons->length > 1) |
323 | 16 | dp->dp_reasons |= (dp->reasons->data[1] << 8); |
324 | 24 | dp->dp_reasons &= CRLDP_ALL_REASONS; |
325 | 763 | } else { |
326 | 763 | dp->dp_reasons = CRLDP_ALL_REASONS; |
327 | 763 | } |
328 | 787 | if (dp->distpoint == NULL || dp->distpoint->type != 1) |
329 | 761 | return 1; |
330 | | |
331 | | /* Handle name fragment given by nameRelativeToCRLIssuer */ |
332 | | /* |
333 | | * Note that the below way of determining iname is not really compliant |
334 | | * with https://tools.ietf.org/html/rfc5280#section-4.2.1.13 |
335 | | * According to it, sk_GENERAL_NAME_num(dp->CRLissuer) MUST be <= 1 |
336 | | * and any CRLissuer could be of type different to GEN_DIRNAME. |
337 | | */ |
338 | 47 | for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) { |
339 | 22 | GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i); |
340 | | |
341 | 22 | if (gen->type == GEN_DIRNAME) { |
342 | 1 | iname = gen->d.directoryName; |
343 | 1 | break; |
344 | 1 | } |
345 | 22 | } |
346 | 26 | if (iname == NULL) |
347 | 25 | iname = X509_get_issuer_name(x); |
348 | 26 | return DIST_POINT_set_dpname(dp->distpoint, iname) ? 1 : -1; |
349 | 787 | } |
350 | | |
351 | | /* Return 1 on success, 0 if x is invalid, -1 on (internal) error. */ |
352 | | static int setup_crldp(X509 *x) |
353 | 108k | { |
354 | 108k | int i; |
355 | | |
356 | 108k | x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, &i, NULL); |
357 | 108k | if (x->crldp == NULL && i != -1) |
358 | 1.03k | return 0; |
359 | | |
360 | 108k | for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) { |
361 | 815 | int res = setup_dp(x, sk_DIST_POINT_value(x->crldp, i)); |
362 | | |
363 | 815 | if (res < 1) |
364 | 41 | return res; |
365 | 815 | } |
366 | 107k | return 1; |
367 | 107k | } |
368 | | |
369 | | /* Check that issuer public key algorithm matches subject signature algorithm */ |
370 | | static int check_sig_alg_match(const EVP_PKEY *issuer_key, const X509 *subject) |
371 | 96.3k | { |
372 | 96.3k | int subj_sig_nid; |
373 | | |
374 | 96.3k | if (issuer_key == NULL) |
375 | 8.07k | return X509_V_ERR_NO_ISSUER_PUBLIC_KEY; |
376 | 88.3k | if (OBJ_find_sigid_algs(OBJ_obj2nid(subject->cert_info.signature.algorithm), |
377 | 88.3k | NULL, &subj_sig_nid) == 0) |
378 | 4.63k | return X509_V_ERR_UNSUPPORTED_SIGNATURE_ALGORITHM; |
379 | 83.6k | if (EVP_PKEY_is_a(issuer_key, OBJ_nid2sn(subj_sig_nid)) |
380 | 83.6k | || (EVP_PKEY_is_a(issuer_key, "RSA") && subj_sig_nid == NID_rsassaPss)) |
381 | 83.3k | return X509_V_OK; |
382 | 307 | return X509_V_ERR_SIGNATURE_ALGORITHM_MISMATCH; |
383 | 83.6k | } |
384 | | |
385 | 6.62k | #define V1_ROOT (EXFLAG_V1 | EXFLAG_SS) |
386 | | #define ku_reject(x, usage) \ |
387 | 5.85k | (((x)->ex_flags & EXFLAG_KUSAGE) != 0 && ((x)->ex_kusage & (usage)) == 0) |
388 | | #define xku_reject(x, usage) \ |
389 | 0 | (((x)->ex_flags & EXFLAG_XKUSAGE) != 0 && ((x)->ex_xkusage & (usage)) == 0) |
390 | | #define ns_reject(x, usage) \ |
391 | 0 | (((x)->ex_flags & EXFLAG_NSCERT) != 0 && ((x)->ex_nscert & (usage)) == 0) |
392 | | |
393 | | /* |
394 | | * Cache info on various X.509v3 extensions and further derived information, |
395 | | * e.g., if cert 'x' is self-issued, in x->ex_flags and other internal fields. |
396 | | * x->sha1_hash is filled in, or else EXFLAG_NO_FINGERPRINT is set in x->flags. |
397 | | * X509_SIG_INFO_VALID is set in x->flags if x->siginf was filled successfully. |
398 | | * Set EXFLAG_INVALID and return 0 in case the certificate is invalid. |
399 | | */ |
400 | | int ossl_x509v3_cache_extensions(X509 *x) |
401 | 165k | { |
402 | 165k | BASIC_CONSTRAINTS *bs; |
403 | 165k | PROXY_CERT_INFO_EXTENSION *pci; |
404 | 165k | ASN1_BIT_STRING *usage; |
405 | 165k | ASN1_BIT_STRING *ns; |
406 | 165k | EXTENDED_KEY_USAGE *extusage; |
407 | 165k | int i; |
408 | 165k | int res; |
409 | | |
410 | 165k | #ifdef tsan_ld_acq |
411 | | /* Fast lock-free check, see end of the function for details. */ |
412 | 165k | if (tsan_ld_acq((TSAN_QUALIFIER int *)&x->ex_cached)) |
413 | 100k | return (x->ex_flags & EXFLAG_INVALID) == 0; |
414 | 65.7k | #endif |
415 | | |
416 | 65.7k | if (!CRYPTO_THREAD_write_lock(x->lock)) |
417 | 0 | return 0; |
418 | 65.7k | if ((x->ex_flags & EXFLAG_SET) != 0) { /* Cert has already been processed */ |
419 | 0 | CRYPTO_THREAD_unlock(x->lock); |
420 | 0 | return (x->ex_flags & EXFLAG_INVALID) == 0; |
421 | 0 | } |
422 | | |
423 | 65.7k | ERR_set_mark(); |
424 | | |
425 | | /* Cache the SHA1 digest of the cert */ |
426 | 65.7k | if (!X509_digest(x, EVP_sha1(), x->sha1_hash, NULL)) |
427 | 0 | x->ex_flags |= EXFLAG_NO_FINGERPRINT; |
428 | | |
429 | | /* V1 should mean no extensions ... */ |
430 | 65.7k | if (X509_get_version(x) == X509_VERSION_1) |
431 | 2.04k | x->ex_flags |= EXFLAG_V1; |
432 | | |
433 | | /* Handle basic constraints */ |
434 | 65.7k | x->ex_pathlen = -1; |
435 | 65.7k | if ((bs = X509_get_ext_d2i(x, NID_basic_constraints, &i, NULL)) != NULL) { |
436 | 54.3k | if (bs->ca) |
437 | 6.12k | x->ex_flags |= EXFLAG_CA; |
438 | 54.3k | if (bs->pathlen != NULL) { |
439 | | /* |
440 | | * The error case !bs->ca is checked by check_chain() |
441 | | * in case ctx->param->flags & X509_V_FLAG_X509_STRICT |
442 | | */ |
443 | 882 | if (bs->pathlen->type == V_ASN1_NEG_INTEGER) { |
444 | 30 | ERR_raise(ERR_LIB_X509V3, X509V3_R_NEGATIVE_PATHLEN); |
445 | 30 | x->ex_flags |= EXFLAG_INVALID; |
446 | 852 | } else { |
447 | 852 | x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen); |
448 | 852 | } |
449 | 882 | } |
450 | 54.3k | BASIC_CONSTRAINTS_free(bs); |
451 | 54.3k | x->ex_flags |= EXFLAG_BCONS; |
452 | 54.3k | } else if (i != -1) { |
453 | 1.48k | x->ex_flags |= EXFLAG_INVALID; |
454 | 1.48k | } |
455 | | |
456 | | /* Handle proxy certificates */ |
457 | 65.7k | if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, &i, NULL)) != NULL) { |
458 | 236 | if ((x->ex_flags & EXFLAG_CA) != 0 |
459 | 236 | || X509_get_ext_by_NID(x, NID_subject_alt_name, -1) >= 0 |
460 | 236 | || X509_get_ext_by_NID(x, NID_issuer_alt_name, -1) >= 0) { |
461 | 96 | x->ex_flags |= EXFLAG_INVALID; |
462 | 96 | } |
463 | 236 | if (pci->pcPathLengthConstraint != NULL) |
464 | 156 | x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint); |
465 | 80 | else |
466 | 80 | x->ex_pcpathlen = -1; |
467 | 236 | PROXY_CERT_INFO_EXTENSION_free(pci); |
468 | 236 | x->ex_flags |= EXFLAG_PROXY; |
469 | 65.5k | } else if (i != -1) { |
470 | 59 | x->ex_flags |= EXFLAG_INVALID; |
471 | 59 | } |
472 | | |
473 | | /* Handle (basic) key usage */ |
474 | 65.7k | if ((usage = X509_get_ext_d2i(x, NID_key_usage, &i, NULL)) != NULL) { |
475 | 43.2k | x->ex_kusage = 0; |
476 | 43.2k | if (usage->length > 0) { |
477 | 43.1k | x->ex_kusage = usage->data[0]; |
478 | 43.1k | if (usage->length > 1) |
479 | 27 | x->ex_kusage |= usage->data[1] << 8; |
480 | 43.1k | } |
481 | 43.2k | x->ex_flags |= EXFLAG_KUSAGE; |
482 | 43.2k | ASN1_BIT_STRING_free(usage); |
483 | | /* Check for empty key usage according to RFC 5280 section 4.2.1.3 */ |
484 | 43.2k | if (x->ex_kusage == 0) { |
485 | 182 | ERR_raise(ERR_LIB_X509V3, X509V3_R_EMPTY_KEY_USAGE); |
486 | 182 | x->ex_flags |= EXFLAG_INVALID; |
487 | 182 | } |
488 | 43.2k | } else if (i != -1) { |
489 | 658 | x->ex_flags |= EXFLAG_INVALID; |
490 | 658 | } |
491 | | |
492 | | /* Handle extended key usage */ |
493 | 65.7k | x->ex_xkusage = 0; |
494 | 65.7k | if ((extusage = X509_get_ext_d2i(x, NID_ext_key_usage, &i, NULL)) != NULL) { |
495 | 45.8k | x->ex_flags |= EXFLAG_XKUSAGE; |
496 | 91.8k | for (i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) { |
497 | 45.9k | switch (OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage, i))) { |
498 | 44.6k | case NID_server_auth: |
499 | 44.6k | x->ex_xkusage |= XKU_SSL_SERVER; |
500 | 44.6k | break; |
501 | 55 | case NID_client_auth: |
502 | 55 | x->ex_xkusage |= XKU_SSL_CLIENT; |
503 | 55 | break; |
504 | 47 | case NID_email_protect: |
505 | 47 | x->ex_xkusage |= XKU_SMIME; |
506 | 47 | break; |
507 | 42 | case NID_code_sign: |
508 | 42 | x->ex_xkusage |= XKU_CODE_SIGN; |
509 | 42 | break; |
510 | 1 | case NID_ms_sgc: |
511 | 2 | case NID_ns_sgc: |
512 | 2 | x->ex_xkusage |= XKU_SGC; |
513 | 2 | break; |
514 | 13 | case NID_OCSP_sign: |
515 | 13 | x->ex_xkusage |= XKU_OCSP_SIGN; |
516 | 13 | break; |
517 | 35 | case NID_time_stamp: |
518 | 35 | x->ex_xkusage |= XKU_TIMESTAMP; |
519 | 35 | break; |
520 | 39 | case NID_dvcs: |
521 | 39 | x->ex_xkusage |= XKU_DVCS; |
522 | 39 | break; |
523 | 1 | case NID_anyExtendedKeyUsage: |
524 | 1 | x->ex_xkusage |= XKU_ANYEKU; |
525 | 1 | break; |
526 | 1.05k | default: |
527 | | /* Ignore unknown extended key usage */ |
528 | 1.05k | break; |
529 | 45.9k | } |
530 | 45.9k | } |
531 | 45.8k | sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free); |
532 | 45.8k | } else if (i != -1) { |
533 | 2.50k | x->ex_flags |= EXFLAG_INVALID; |
534 | 2.50k | } |
535 | | |
536 | | /* Handle legacy Netscape extension */ |
537 | 65.7k | if ((ns = X509_get_ext_d2i(x, NID_netscape_cert_type, &i, NULL)) != NULL) { |
538 | 19 | if (ns->length > 0) |
539 | 10 | x->ex_nscert = ns->data[0]; |
540 | 9 | else |
541 | 9 | x->ex_nscert = 0; |
542 | 19 | x->ex_flags |= EXFLAG_NSCERT; |
543 | 19 | ASN1_BIT_STRING_free(ns); |
544 | 65.7k | } else if (i != -1) { |
545 | 16 | x->ex_flags |= EXFLAG_INVALID; |
546 | 16 | } |
547 | | |
548 | | /* Handle subject key identifier and issuer/authority key identifier */ |
549 | 65.7k | x->skid = X509_get_ext_d2i(x, NID_subject_key_identifier, &i, NULL); |
550 | 65.7k | if (x->skid == NULL && i != -1) |
551 | 1.02k | x->ex_flags |= EXFLAG_INVALID; |
552 | | |
553 | 65.7k | x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, &i, NULL); |
554 | 65.7k | if (x->akid == NULL && i != -1) |
555 | 3.12k | x->ex_flags |= EXFLAG_INVALID; |
556 | | |
557 | | /* Check if subject name matches issuer */ |
558 | 65.7k | if (X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x)) == 0) { |
559 | 49.8k | x->ex_flags |= EXFLAG_SI; /* Cert is self-issued */ |
560 | 49.8k | if (X509_check_akid(x, x->akid) == X509_V_OK /* SKID matches AKID */ |
561 | | /* .. and the signature alg matches the PUBKEY alg: */ |
562 | 49.8k | && check_sig_alg_match(X509_get0_pubkey(x), x) == X509_V_OK) |
563 | 46.7k | x->ex_flags |= EXFLAG_SS; /* indicate self-signed */ |
564 | | /* This is very related to ossl_x509_likely_issued(x, x) == X509_V_OK */ |
565 | 49.8k | } |
566 | | |
567 | | /* Handle subject alternative names and various other extensions */ |
568 | 65.7k | x->altname = X509_get_ext_d2i(x, NID_subject_alt_name, &i, NULL); |
569 | 65.7k | if (x->altname == NULL && i != -1) |
570 | 1.67k | x->ex_flags |= EXFLAG_INVALID; |
571 | 65.7k | x->nc = X509_get_ext_d2i(x, NID_name_constraints, &i, NULL); |
572 | 65.7k | if (x->nc == NULL && i != -1) |
573 | 307 | x->ex_flags |= EXFLAG_INVALID; |
574 | | |
575 | | /* Handle CRL distribution point entries */ |
576 | 65.7k | res = setup_crldp(x); |
577 | 65.7k | if (res == 0) |
578 | 577 | x->ex_flags |= EXFLAG_INVALID; |
579 | | |
580 | 65.7k | #ifndef OPENSSL_NO_RFC3779 |
581 | 65.7k | x->rfc3779_addr = X509_get_ext_d2i(x, NID_sbgp_ipAddrBlock, &i, NULL); |
582 | 65.7k | if (x->rfc3779_addr == NULL && i != -1) |
583 | 88 | x->ex_flags |= EXFLAG_INVALID; |
584 | 65.7k | x->rfc3779_asid = X509_get_ext_d2i(x, NID_sbgp_autonomousSysNum, &i, NULL); |
585 | 65.7k | if (x->rfc3779_asid == NULL && i != -1) |
586 | 44 | x->ex_flags |= EXFLAG_INVALID; |
587 | 65.7k | #endif |
588 | 323k | for (i = 0; i < X509_get_ext_count(x); i++) { |
589 | 259k | X509_EXTENSION *ex = X509_get_ext(x, i); |
590 | 259k | int nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex)); |
591 | | |
592 | 259k | if (nid == NID_freshest_crl) |
593 | 1.04k | x->ex_flags |= EXFLAG_FRESHEST; |
594 | 259k | if (!X509_EXTENSION_get_critical(ex)) |
595 | 227k | continue; |
596 | 32.4k | if (!X509_supported_extension(ex)) { |
597 | 2.57k | x->ex_flags |= EXFLAG_CRITICAL; |
598 | 2.57k | break; |
599 | 2.57k | } |
600 | 29.8k | switch (nid) { |
601 | 16.8k | case NID_basic_constraints: |
602 | 16.8k | x->ex_flags |= EXFLAG_BCONS_CRITICAL; |
603 | 16.8k | break; |
604 | 0 | case NID_authority_key_identifier: |
605 | 0 | x->ex_flags |= EXFLAG_AKID_CRITICAL; |
606 | 0 | break; |
607 | 0 | case NID_subject_key_identifier: |
608 | 0 | x->ex_flags |= EXFLAG_SKID_CRITICAL; |
609 | 0 | break; |
610 | 125 | case NID_subject_alt_name: |
611 | 125 | x->ex_flags |= EXFLAG_SAN_CRITICAL; |
612 | 125 | break; |
613 | 12.8k | default: |
614 | 12.8k | break; |
615 | 29.8k | } |
616 | 29.8k | } |
617 | | |
618 | | /* Set x->siginf, ignoring errors due to unsupported algos */ |
619 | 65.7k | (void)ossl_x509_init_sig_info(x); |
620 | | |
621 | 65.7k | x->ex_flags |= EXFLAG_SET; /* Indicate that cert has been processed */ |
622 | 65.7k | #ifdef tsan_st_rel |
623 | 65.7k | tsan_st_rel((TSAN_QUALIFIER int *)&x->ex_cached, 1); |
624 | | /* |
625 | | * Above store triggers fast lock-free check in the beginning of the |
626 | | * function. But one has to ensure that the structure is "stable", i.e. |
627 | | * all stores are visible on all processors. Hence the release fence. |
628 | | */ |
629 | 65.7k | #endif |
630 | 65.7k | ERR_pop_to_mark(); |
631 | | |
632 | 65.7k | if ((x->ex_flags & EXFLAG_INVALID) == 0) { |
633 | 57.8k | CRYPTO_THREAD_unlock(x->lock); |
634 | 57.8k | return 1; |
635 | 57.8k | } |
636 | 7.92k | CRYPTO_THREAD_unlock(x->lock); |
637 | 7.92k | ERR_raise(ERR_LIB_X509V3, X509V3_R_INVALID_CERTIFICATE); |
638 | 7.92k | return 0; |
639 | 65.7k | } |
640 | | |
641 | | /*- |
642 | | * CA checks common to all purposes |
643 | | * return codes: |
644 | | * 0 not a CA |
645 | | * 1 is a CA |
646 | | * 2 Only possible in older versions of openSSL when basicConstraints are absent |
647 | | * new versions will not return this value. May be a CA |
648 | | * 3 basicConstraints absent but self-signed V1. |
649 | | * 4 basicConstraints absent but keyUsage present and keyCertSign asserted. |
650 | | * 5 Netscape specific CA Flags present |
651 | | */ |
652 | | |
653 | | static int check_ca(const X509 *x) |
654 | 3.70k | { |
655 | | /* keyUsage if present should allow cert signing */ |
656 | 3.70k | if (ku_reject(x, KU_KEY_CERT_SIGN)) |
657 | 7 | return 0; |
658 | 3.69k | if ((x->ex_flags & EXFLAG_BCONS) != 0) { |
659 | | /* If basicConstraints says not a CA then say so */ |
660 | 382 | return (x->ex_flags & EXFLAG_CA) != 0; |
661 | 3.31k | } else { |
662 | | /* We support V1 roots for... uh, I don't really know why. */ |
663 | 3.31k | if ((x->ex_flags & V1_ROOT) == V1_ROOT) |
664 | 34 | return 3; |
665 | | /* |
666 | | * If key usage present it must have certSign so tolerate it |
667 | | */ |
668 | 3.27k | else if ((x->ex_flags & EXFLAG_KUSAGE) != 0) |
669 | 9 | return 4; |
670 | | /* Older certificates could have Netscape-specific CA types */ |
671 | 3.27k | else if ((x->ex_flags & EXFLAG_NSCERT) != 0 |
672 | 3.27k | && (x->ex_nscert & NS_ANY_CA) != 0) |
673 | 3 | return 5; |
674 | | /* Can this still be regarded a CA certificate? I doubt it. */ |
675 | 3.26k | return 0; |
676 | 3.31k | } |
677 | 3.69k | } |
678 | | |
679 | | void X509_set_proxy_flag(X509 *x) |
680 | 0 | { |
681 | 0 | if (CRYPTO_THREAD_write_lock(x->lock)) { |
682 | 0 | x->ex_flags |= EXFLAG_PROXY; |
683 | 0 | CRYPTO_THREAD_unlock(x->lock); |
684 | 0 | } |
685 | 0 | } |
686 | | |
687 | | void X509_set_proxy_pathlen(X509 *x, long l) |
688 | 0 | { |
689 | 0 | x->ex_pcpathlen = l; |
690 | 0 | } |
691 | | |
692 | | int X509_check_ca(X509 *x) |
693 | 8.99k | { |
694 | | /* Note 0 normally means "not a CA" - but in this case means error. */ |
695 | 8.99k | if (!ossl_x509v3_cache_extensions(x)) |
696 | 1.41k | return 0; |
697 | | |
698 | 7.58k | return check_ca(x); |
699 | 8.99k | } |
700 | | |
701 | | /* Check SSL CA: common checks for SSL client and server. */ |
702 | | static int check_ssl_ca(const X509 *x) |
703 | 0 | { |
704 | 0 | int ca_ret = check_ca(x); |
705 | |
|
706 | 0 | if (ca_ret == 0) |
707 | 0 | return 0; |
708 | | /* Check nsCertType if present */ |
709 | 0 | return ca_ret != 5 || (x->ex_nscert & NS_SSL_CA) != 0; |
710 | 0 | } |
711 | | |
712 | | static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, |
713 | | int non_leaf) |
714 | 0 | { |
715 | 0 | if (xku_reject(x, XKU_SSL_CLIENT)) |
716 | 0 | return 0; |
717 | 0 | if (non_leaf) |
718 | 0 | return check_ssl_ca(x); |
719 | | /* We need to do digital signatures or key agreement */ |
720 | 0 | if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_KEY_AGREEMENT)) |
721 | 0 | return 0; |
722 | | /* nsCertType if present should allow SSL client use */ |
723 | 0 | if (ns_reject(x, NS_SSL_CLIENT)) |
724 | 0 | return 0; |
725 | 0 | return 1; |
726 | 0 | } |
727 | | |
728 | | /* |
729 | | * Key usage needed for TLS/SSL server: digital signature, encipherment or |
730 | | * key agreement. The ssl code can check this more thoroughly for individual |
731 | | * key types. |
732 | | */ |
733 | | #define KU_TLS \ |
734 | | KU_DIGITAL_SIGNATURE | KU_KEY_ENCIPHERMENT | KU_KEY_AGREEMENT |
735 | | |
736 | | static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, |
737 | | int non_leaf) |
738 | 0 | { |
739 | 0 | if (xku_reject(x, XKU_SSL_SERVER | XKU_SGC)) |
740 | 0 | return 0; |
741 | 0 | if (non_leaf) |
742 | 0 | return check_ssl_ca(x); |
743 | | |
744 | 0 | if (ns_reject(x, NS_SSL_SERVER)) |
745 | 0 | return 0; |
746 | 0 | if (ku_reject(x, KU_TLS)) |
747 | 0 | return 0; |
748 | | |
749 | 0 | return 1; |
750 | |
|
751 | 0 | } |
752 | | |
753 | | static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, |
754 | | int non_leaf) |
755 | 0 | { |
756 | 0 | int ret = check_purpose_ssl_server(xp, x, non_leaf); |
757 | |
|
758 | 0 | if (!ret || non_leaf) |
759 | 0 | return ret; |
760 | | /* We need to encipher or Netscape complains */ |
761 | 0 | return ku_reject(x, KU_KEY_ENCIPHERMENT) ? 0 : ret; |
762 | 0 | } |
763 | | |
764 | | /* common S/MIME checks */ |
765 | | static int purpose_smime(const X509 *x, int non_leaf) |
766 | 0 | { |
767 | 0 | if (xku_reject(x, XKU_SMIME)) |
768 | 0 | return 0; |
769 | 0 | if (non_leaf) { |
770 | 0 | int ca_ret = check_ca(x); |
771 | |
|
772 | 0 | if (ca_ret == 0) |
773 | 0 | return 0; |
774 | | /* Check nsCertType if present */ |
775 | 0 | if (ca_ret != 5 || (x->ex_nscert & NS_SMIME_CA) != 0) |
776 | 0 | return ca_ret; |
777 | 0 | else |
778 | 0 | return 0; |
779 | 0 | } |
780 | 0 | if ((x->ex_flags & EXFLAG_NSCERT) != 0) { |
781 | 0 | if ((x->ex_nscert & NS_SMIME) != 0) |
782 | 0 | return 1; |
783 | | /* Workaround for some buggy certificates */ |
784 | 0 | return (x->ex_nscert & NS_SSL_CLIENT) != 0 ? 2 : 0; |
785 | 0 | } |
786 | 0 | return 1; |
787 | 0 | } |
788 | | |
789 | | static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, |
790 | | int non_leaf) |
791 | 0 | { |
792 | 0 | int ret = purpose_smime(x, non_leaf); |
793 | |
|
794 | 0 | if (!ret || non_leaf) |
795 | 0 | return ret; |
796 | 0 | return ku_reject(x, KU_DIGITAL_SIGNATURE | KU_NON_REPUDIATION) ? 0 : ret; |
797 | 0 | } |
798 | | |
799 | | static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, |
800 | | int non_leaf) |
801 | 0 | { |
802 | 0 | int ret = purpose_smime(x, non_leaf); |
803 | |
|
804 | 0 | if (!ret || non_leaf) |
805 | 0 | return ret; |
806 | 0 | return ku_reject(x, KU_KEY_ENCIPHERMENT) ? 0 : ret; |
807 | 0 | } |
808 | | |
809 | | static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, |
810 | | int non_leaf) |
811 | 0 | { |
812 | 0 | if (non_leaf) { |
813 | 0 | int ca_ret = check_ca(x); |
814 | |
|
815 | 0 | return ca_ret == 2 ? 0 : ca_ret; |
816 | 0 | } |
817 | 0 | return !ku_reject(x, KU_CRL_SIGN); |
818 | 0 | } |
819 | | |
820 | | /* |
821 | | * OCSP helper: this is *not* a full OCSP check. It just checks that each CA |
822 | | * is valid. Additional checks must be made on the chain. |
823 | | */ |
824 | | static int check_purpose_ocsp_helper(const X509_PURPOSE *xp, const X509 *x, |
825 | | int non_leaf) |
826 | 328 | { |
827 | | /* |
828 | | * Must be a valid CA. Should we really support the "I don't know" value |
829 | | * (2)? |
830 | | */ |
831 | 328 | if (non_leaf) |
832 | 151 | return check_ca(x); |
833 | | /* Leaf certificate is checked in OCSP_verify() */ |
834 | 177 | return 1; |
835 | 328 | } |
836 | | |
837 | | static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, |
838 | | int non_leaf) |
839 | 0 | { |
840 | 0 | int i_ext; |
841 | | |
842 | | /* |
843 | | * If non_leaf is true we must check if this is a valid CA certificate. |
844 | | * The extra requirements by the CA/Browser Forum are not checked. |
845 | | */ |
846 | 0 | if (non_leaf) |
847 | 0 | return check_ca(x); |
848 | | |
849 | | /* |
850 | | * Key Usage is checked according to RFC 5280 and |
851 | | * Extended Key Usage attributes is checked according to RFC 3161. |
852 | | * The extra (and somewhat conflicting) CA/Browser Forum |
853 | | * Baseline Requirements for the Issuance and Management of |
854 | | * Publicly‐Trusted Code Signing Certificates, Version 3.0.0, |
855 | | * Section 7.1.2.3: Code signing and Timestamp Certificate are not checked. |
856 | | */ |
857 | | /* |
858 | | * Check the optional key usage field: |
859 | | * if Key Usage is present, it must be one of digitalSignature |
860 | | * and/or nonRepudiation (other values are not consistent and shall |
861 | | * be rejected). |
862 | | */ |
863 | 0 | if ((x->ex_flags & EXFLAG_KUSAGE) != 0 |
864 | 0 | && ((x->ex_kusage & ~(KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)) || |
865 | 0 | !(x->ex_kusage & (KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)))) |
866 | 0 | return 0; |
867 | | |
868 | | /* Only timestamp key usage is permitted and it's required. */ |
869 | 0 | if ((x->ex_flags & EXFLAG_XKUSAGE) == 0 || x->ex_xkusage != XKU_TIMESTAMP) |
870 | 0 | return 0; |
871 | | |
872 | | /* Extended Key Usage MUST be critical */ |
873 | 0 | i_ext = X509_get_ext_by_NID(x, NID_ext_key_usage, -1); |
874 | 0 | if (i_ext >= 0 |
875 | 0 | && !X509_EXTENSION_get_critical(X509_get_ext((X509 *)x, i_ext))) |
876 | 0 | return 0; |
877 | 0 | return 1; |
878 | 0 | } |
879 | | |
880 | | static int check_purpose_code_sign(const X509_PURPOSE *xp, const X509 *x, |
881 | | int non_leaf) |
882 | 0 | { |
883 | 0 | int i_ext; |
884 | | |
885 | | /* |
886 | | * If non_leaf is true we must check if this is a valid CA certificate. |
887 | | * The extra requirements by the CA/Browser Forum are not checked. |
888 | | */ |
889 | 0 | if (non_leaf) |
890 | 0 | return check_ca(x); |
891 | | |
892 | | /* |
893 | | * Check the key usage and extended key usage fields: |
894 | | * |
895 | | * Reference: CA/Browser Forum, |
896 | | * Baseline Requirements for the Issuance and Management of |
897 | | * Publicly‐Trusted Code Signing Certificates, Version 3.0.0, |
898 | | * Section 7.1.2.3: Code signing and Timestamp Certificate |
899 | | * |
900 | | * Checking covers Key Usage and Extended Key Usage attributes. |
901 | | * The certificatePolicies, cRLDistributionPoints (CDP), and |
902 | | * authorityInformationAccess (AIA) extensions are so far not checked. |
903 | | */ |
904 | | /* Key Usage */ |
905 | 0 | if ((x->ex_flags & EXFLAG_KUSAGE) == 0) |
906 | 0 | return 0; |
907 | 0 | if ((x->ex_kusage & KU_DIGITAL_SIGNATURE) == 0) |
908 | 0 | return 0; |
909 | 0 | if ((x->ex_kusage & (KU_KEY_CERT_SIGN | KU_CRL_SIGN)) != 0) |
910 | 0 | return 0; |
911 | | |
912 | | /* Key Usage MUST be critical */ |
913 | 0 | i_ext = X509_get_ext_by_NID(x, NID_key_usage, -1); |
914 | 0 | if (i_ext < 0) |
915 | 0 | return 0; |
916 | 0 | if (i_ext >= 0) { |
917 | 0 | X509_EXTENSION *ext = X509_get_ext((X509 *)x, i_ext); |
918 | 0 | if (!X509_EXTENSION_get_critical(ext)) |
919 | 0 | return 0; |
920 | 0 | } |
921 | | |
922 | | /* Extended Key Usage */ |
923 | 0 | if ((x->ex_flags & EXFLAG_XKUSAGE) == 0) |
924 | 0 | return 0; |
925 | 0 | if ((x->ex_xkusage & XKU_CODE_SIGN) == 0) |
926 | 0 | return 0; |
927 | 0 | if ((x->ex_xkusage & (XKU_ANYEKU | XKU_SSL_SERVER)) != 0) |
928 | 0 | return 0; |
929 | | |
930 | 0 | return 1; |
931 | |
|
932 | 0 | } |
933 | | |
934 | | static int no_check_purpose(const X509_PURPOSE *xp, const X509 *x, |
935 | | int non_leaf) |
936 | 0 | { |
937 | 0 | return 1; |
938 | 0 | } |
939 | | |
940 | | /*- |
941 | | * Various checks to see if one certificate potentially issued the second. |
942 | | * This can be used to prune a set of possible issuer certificates which |
943 | | * have been looked up using some simple method such as by subject name. |
944 | | * These are: |
945 | | * 1. issuer_name(subject) == subject_name(issuer) |
946 | | * 2. If akid(subject) exists, it matches the respective issuer fields. |
947 | | * 3. subject signature algorithm == issuer public key algorithm |
948 | | * 4. If key_usage(issuer) exists, it allows for signing subject. |
949 | | * Note that this does not include actually checking the signature. |
950 | | * Returns 0 for OK, or positive for reason for mismatch |
951 | | * where reason codes match those for X509_verify_cert(). |
952 | | */ |
953 | | int X509_check_issued(X509 *issuer, X509 *subject) |
954 | 16.8k | { |
955 | 16.8k | int ret; |
956 | | |
957 | 16.8k | if ((ret = ossl_x509_likely_issued(issuer, subject)) != X509_V_OK) |
958 | 15.3k | return ret; |
959 | 1.45k | return ossl_x509_signing_allowed(issuer, subject); |
960 | 16.8k | } |
961 | | |
962 | | /* do the checks 1., 2., and 3. as described above for X509_check_issued() */ |
963 | | int ossl_x509_likely_issued(X509 *issuer, X509 *subject) |
964 | 43.0k | { |
965 | 43.0k | int ret; |
966 | | |
967 | 43.0k | if (X509_NAME_cmp(X509_get_subject_name(issuer), |
968 | 43.0k | X509_get_issuer_name(subject)) != 0) |
969 | 25.9k | return X509_V_ERR_SUBJECT_ISSUER_MISMATCH; |
970 | | |
971 | | /* set issuer->skid and subject->akid */ |
972 | 17.0k | if (!ossl_x509v3_cache_extensions(issuer) |
973 | 17.0k | || !ossl_x509v3_cache_extensions(subject)) |
974 | 3.84k | return X509_V_ERR_UNSPECIFIED; |
975 | | |
976 | 13.2k | ret = X509_check_akid(issuer, subject->akid); |
977 | 13.2k | if (ret != X509_V_OK) |
978 | 1.20k | return ret; |
979 | | |
980 | | /* Check if the subject signature alg matches the issuer's PUBKEY alg */ |
981 | 12.0k | return check_sig_alg_match(X509_get0_pubkey(issuer), subject); |
982 | 13.2k | } |
983 | | |
984 | | /*- |
985 | | * Check if certificate I<issuer> is allowed to issue certificate I<subject> |
986 | | * according to the B<keyUsage> field of I<issuer> if present |
987 | | * depending on any proxyCertInfo extension of I<subject>. |
988 | | * Returns 0 for OK, or positive for reason for rejection |
989 | | * where reason codes match those for X509_verify_cert(). |
990 | | */ |
991 | | int ossl_x509_signing_allowed(const X509 *issuer, const X509 *subject) |
992 | 2.14k | { |
993 | 2.14k | if ((subject->ex_flags & EXFLAG_PROXY) != 0) { |
994 | 2 | if (ku_reject(issuer, KU_DIGITAL_SIGNATURE)) |
995 | 0 | return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE; |
996 | 2.14k | } else if (ku_reject(issuer, KU_KEY_CERT_SIGN)) { |
997 | 42 | return X509_V_ERR_KEYUSAGE_NO_CERTSIGN; |
998 | 42 | } |
999 | 2.10k | return X509_V_OK; |
1000 | 2.14k | } |
1001 | | |
1002 | | int X509_check_akid(const X509 *issuer, const AUTHORITY_KEYID *akid) |
1003 | 101k | { |
1004 | 101k | if (akid == NULL) |
1005 | 91.1k | return X509_V_OK; |
1006 | | |
1007 | | /* Check key ids (if present) */ |
1008 | 10.5k | if (akid->keyid && issuer->skid && |
1009 | 10.5k | ASN1_OCTET_STRING_cmp(akid->keyid, issuer->skid)) |
1010 | 1.06k | return X509_V_ERR_AKID_SKID_MISMATCH; |
1011 | | /* Check serial number */ |
1012 | 9.50k | if (akid->serial && |
1013 | 9.50k | ASN1_INTEGER_cmp(X509_get0_serialNumber(issuer), akid->serial)) |
1014 | 891 | return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH; |
1015 | | /* Check issuer name */ |
1016 | 8.61k | if (akid->issuer) { |
1017 | | /* |
1018 | | * Ugh, for some peculiar reason AKID includes SEQUENCE OF |
1019 | | * GeneralName. So look for a DirName. There may be more than one but |
1020 | | * we only take any notice of the first. |
1021 | | */ |
1022 | 316 | GENERAL_NAMES *gens = akid->issuer; |
1023 | 316 | GENERAL_NAME *gen; |
1024 | 316 | X509_NAME *nm = NULL; |
1025 | 316 | int i; |
1026 | | |
1027 | 633 | for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) { |
1028 | 442 | gen = sk_GENERAL_NAME_value(gens, i); |
1029 | 442 | if (gen->type == GEN_DIRNAME) { |
1030 | 125 | nm = gen->d.dirn; |
1031 | 125 | break; |
1032 | 125 | } |
1033 | 442 | } |
1034 | 316 | if (nm != NULL && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)) != 0) |
1035 | 51 | return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH; |
1036 | 316 | } |
1037 | 8.56k | return X509_V_OK; |
1038 | 8.61k | } |
1039 | | |
1040 | | uint32_t X509_get_extension_flags(X509 *x) |
1041 | 89.5k | { |
1042 | | /* Call for side-effect of computing hash and caching extensions */ |
1043 | 89.5k | X509_check_purpose(x, -1, 0); |
1044 | 89.5k | return x->ex_flags; |
1045 | 89.5k | } |
1046 | | |
1047 | | uint32_t X509_get_key_usage(X509 *x) |
1048 | 8.27k | { |
1049 | | /* Call for side-effect of computing hash and caching extensions */ |
1050 | 8.27k | if (X509_check_purpose(x, -1, 0) != 1) |
1051 | 0 | return 0; |
1052 | 8.27k | return (x->ex_flags & EXFLAG_KUSAGE) != 0 ? x->ex_kusage : UINT32_MAX; |
1053 | 8.27k | } |
1054 | | |
1055 | | uint32_t X509_get_extended_key_usage(X509 *x) |
1056 | 2 | { |
1057 | | /* Call for side-effect of computing hash and caching extensions */ |
1058 | 2 | if (X509_check_purpose(x, -1, 0) != 1) |
1059 | 0 | return 0; |
1060 | 2 | return (x->ex_flags & EXFLAG_XKUSAGE) != 0 ? x->ex_xkusage : UINT32_MAX; |
1061 | 2 | } |
1062 | | |
1063 | | const ASN1_OCTET_STRING *X509_get0_subject_key_id(X509 *x) |
1064 | 2.49k | { |
1065 | | /* Call for side-effect of computing hash and caching extensions */ |
1066 | 2.49k | if (X509_check_purpose(x, -1, 0) != 1) |
1067 | 192 | return NULL; |
1068 | 2.30k | return x->skid; |
1069 | 2.49k | } |
1070 | | |
1071 | | const ASN1_OCTET_STRING *X509_get0_authority_key_id(X509 *x) |
1072 | 0 | { |
1073 | | /* Call for side-effect of computing hash and caching extensions */ |
1074 | 0 | if (X509_check_purpose(x, -1, 0) != 1) |
1075 | 0 | return NULL; |
1076 | 0 | return (x->akid != NULL ? x->akid->keyid : NULL); |
1077 | 0 | } |
1078 | | |
1079 | | const GENERAL_NAMES *X509_get0_authority_issuer(X509 *x) |
1080 | 0 | { |
1081 | | /* Call for side-effect of computing hash and caching extensions */ |
1082 | 0 | if (X509_check_purpose(x, -1, 0) != 1) |
1083 | 0 | return NULL; |
1084 | 0 | return (x->akid != NULL ? x->akid->issuer : NULL); |
1085 | 0 | } |
1086 | | |
1087 | | const ASN1_INTEGER *X509_get0_authority_serial(X509 *x) |
1088 | 0 | { |
1089 | | /* Call for side-effect of computing hash and caching extensions */ |
1090 | 0 | if (X509_check_purpose(x, -1, 0) != 1) |
1091 | 0 | return NULL; |
1092 | 0 | return (x->akid != NULL ? x->akid->serial : NULL); |
1093 | 0 | } |
1094 | | |
1095 | | long X509_get_pathlen(X509 *x) |
1096 | 0 | { |
1097 | | /* Called for side effect of caching extensions */ |
1098 | 0 | if (X509_check_purpose(x, -1, 0) != 1 |
1099 | 0 | || (x->ex_flags & EXFLAG_BCONS) == 0) |
1100 | 0 | return -1; |
1101 | 0 | return x->ex_pathlen; |
1102 | 0 | } |
1103 | | |
1104 | | long X509_get_proxy_pathlen(X509 *x) |
1105 | 0 | { |
1106 | | /* Called for side effect of caching extensions */ |
1107 | 0 | if (X509_check_purpose(x, -1, 0) != 1 |
1108 | 0 | || (x->ex_flags & EXFLAG_PROXY) == 0) |
1109 | 0 | return -1; |
1110 | 0 | return x->ex_pcpathlen; |
1111 | 0 | } |