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