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