]> git.ipfire.org Git - thirdparty/openssl.git/blob - ssl/ssl_cert.c
Revert "various spelling fixes"
[thirdparty/openssl.git] / ssl / ssl_cert.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57 /* ====================================================================
58 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
59 *
60 * Redistribution and use in source and binary forms, with or without
61 * modification, are permitted provided that the following conditions
62 * are met:
63 *
64 * 1. Redistributions of source code must retain the above copyright
65 * notice, this list of conditions and the following disclaimer.
66 *
67 * 2. Redistributions in binary form must reproduce the above copyright
68 * notice, this list of conditions and the following disclaimer in
69 * the documentation and/or other materials provided with the
70 * distribution.
71 *
72 * 3. All advertising materials mentioning features or use of this
73 * software must display the following acknowledgment:
74 * "This product includes software developed by the OpenSSL Project
75 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76 *
77 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78 * endorse or promote products derived from this software without
79 * prior written permission. For written permission, please contact
80 * openssl-core@openssl.org.
81 *
82 * 5. Products derived from this software may not be called "OpenSSL"
83 * nor may "OpenSSL" appear in their names without prior written
84 * permission of the OpenSSL Project.
85 *
86 * 6. Redistributions of any form whatsoever must retain the following
87 * acknowledgment:
88 * "This product includes software developed by the OpenSSL Project
89 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90 *
91 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
95 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 * OF THE POSSIBILITY OF SUCH DAMAGE.
103 * ====================================================================
104 *
105 * This product includes cryptographic software written by Eric Young
106 * (eay@cryptsoft.com). This product includes software written by Tim
107 * Hudson (tjh@cryptsoft.com).
108 *
109 */
110 /* ====================================================================
111 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
112 * ECC cipher suite support in OpenSSL originally developed by
113 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
114 */
115
116 #include <stdio.h>
117
118 #include "e_os.h"
119 #ifndef NO_SYS_TYPES_H
120 # include <sys/types.h>
121 #endif
122
123 #include "internal/o_dir.h"
124 #include <openssl/lhash.h>
125 #include <openssl/bio.h>
126 #include <openssl/pem.h>
127 #include <openssl/x509v3.h>
128 #include <openssl/dh.h>
129 #include <openssl/bn.h>
130 #include "internal/threads.h"
131 #include "ssl_locl.h"
132
133 static int ssl_security_default_callback(const SSL *s, const SSL_CTX *ctx, int op,
134 int bits, int nid, void *other,
135 void *ex);
136
137 static CRYPTO_ONCE ssl_x509_store_ctx_once = CRYPTO_ONCE_STATIC_INIT;
138 static volatile int ssl_x509_store_ctx_idx = -1;
139
140 static void ssl_x509_store_ctx_init(void)
141 {
142 ssl_x509_store_ctx_idx = X509_STORE_CTX_get_ex_new_index(0,
143 "SSL for verify callback",
144 NULL, NULL, NULL);
145 }
146
147 int SSL_get_ex_data_X509_STORE_CTX_idx(void)
148 {
149
150 CRYPTO_THREAD_run_once(&ssl_x509_store_ctx_once, ssl_x509_store_ctx_init);
151 return ssl_x509_store_ctx_idx;
152 }
153
154 CERT *ssl_cert_new(void)
155 {
156 CERT *ret = OPENSSL_zalloc(sizeof(*ret));
157
158 if (ret == NULL) {
159 SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE);
160 return NULL;
161 }
162
163 ret->key = &(ret->pkeys[SSL_PKEY_RSA_ENC]);
164 ret->references = 1;
165 ret->sec_cb = ssl_security_default_callback;
166 ret->sec_level = OPENSSL_TLS_SECURITY_LEVEL;
167 ret->sec_ex = NULL;
168 ret->lock = CRYPTO_THREAD_lock_new();
169 if (ret->lock == NULL) {
170 SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE);
171 OPENSSL_free(ret);
172 return NULL;
173 }
174
175 return ret;
176 }
177
178 CERT *ssl_cert_dup(CERT *cert)
179 {
180 CERT *ret = OPENSSL_zalloc(sizeof(*ret));
181 int i;
182
183 if (ret == NULL) {
184 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
185 return NULL;
186 }
187
188 ret->references = 1;
189 ret->key = &ret->pkeys[cert->key - cert->pkeys];
190 ret->lock = CRYPTO_THREAD_lock_new();
191 if (ret->lock == NULL) {
192 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
193 OPENSSL_free(ret);
194 return NULL;
195 }
196
197 #ifndef OPENSSL_NO_DH
198 if (cert->dh_tmp != NULL) {
199 ret->dh_tmp = cert->dh_tmp;
200 EVP_PKEY_up_ref(ret->dh_tmp);
201 }
202 ret->dh_tmp_cb = cert->dh_tmp_cb;
203 ret->dh_tmp_auto = cert->dh_tmp_auto;
204 #endif
205
206 for (i = 0; i < SSL_PKEY_NUM; i++) {
207 CERT_PKEY *cpk = cert->pkeys + i;
208 CERT_PKEY *rpk = ret->pkeys + i;
209 if (cpk->x509 != NULL) {
210 rpk->x509 = cpk->x509;
211 X509_up_ref(rpk->x509);
212 }
213
214 if (cpk->privatekey != NULL) {
215 rpk->privatekey = cpk->privatekey;
216 EVP_PKEY_up_ref(cpk->privatekey);
217 }
218
219 if (cpk->chain) {
220 rpk->chain = X509_chain_up_ref(cpk->chain);
221 if (!rpk->chain) {
222 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
223 goto err;
224 }
225 }
226 if (cert->pkeys[i].serverinfo != NULL) {
227 /* Just copy everything. */
228 ret->pkeys[i].serverinfo =
229 OPENSSL_malloc(cert->pkeys[i].serverinfo_length);
230 if (ret->pkeys[i].serverinfo == NULL) {
231 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
232 goto err;
233 }
234 ret->pkeys[i].serverinfo_length =
235 cert->pkeys[i].serverinfo_length;
236 memcpy(ret->pkeys[i].serverinfo,
237 cert->pkeys[i].serverinfo,
238 cert->pkeys[i].serverinfo_length);
239 }
240 }
241
242 /* Configured sigalgs copied across */
243 if (cert->conf_sigalgs) {
244 ret->conf_sigalgs = OPENSSL_malloc(cert->conf_sigalgslen);
245 if (ret->conf_sigalgs == NULL)
246 goto err;
247 memcpy(ret->conf_sigalgs, cert->conf_sigalgs, cert->conf_sigalgslen);
248 ret->conf_sigalgslen = cert->conf_sigalgslen;
249 } else
250 ret->conf_sigalgs = NULL;
251
252 if (cert->client_sigalgs) {
253 ret->client_sigalgs = OPENSSL_malloc(cert->client_sigalgslen);
254 if (ret->client_sigalgs == NULL)
255 goto err;
256 memcpy(ret->client_sigalgs, cert->client_sigalgs,
257 cert->client_sigalgslen);
258 ret->client_sigalgslen = cert->client_sigalgslen;
259 } else
260 ret->client_sigalgs = NULL;
261 /* Shared sigalgs also NULL */
262 ret->shared_sigalgs = NULL;
263 /* Copy any custom client certificate types */
264 if (cert->ctypes) {
265 ret->ctypes = OPENSSL_malloc(cert->ctype_num);
266 if (ret->ctypes == NULL)
267 goto err;
268 memcpy(ret->ctypes, cert->ctypes, cert->ctype_num);
269 ret->ctype_num = cert->ctype_num;
270 }
271
272 ret->cert_flags = cert->cert_flags;
273
274 ret->cert_cb = cert->cert_cb;
275 ret->cert_cb_arg = cert->cert_cb_arg;
276
277 if (cert->verify_store) {
278 X509_STORE_up_ref(cert->verify_store);
279 ret->verify_store = cert->verify_store;
280 }
281
282 if (cert->chain_store) {
283 X509_STORE_up_ref(cert->chain_store);
284 ret->chain_store = cert->chain_store;
285 }
286
287 ret->sec_cb = cert->sec_cb;
288 ret->sec_level = cert->sec_level;
289 ret->sec_ex = cert->sec_ex;
290
291 if (!custom_exts_copy(&ret->cli_ext, &cert->cli_ext))
292 goto err;
293 if (!custom_exts_copy(&ret->srv_ext, &cert->srv_ext))
294 goto err;
295 #ifndef OPENSSL_NO_PSK
296 if (cert->psk_identity_hint) {
297 ret->psk_identity_hint = OPENSSL_strdup(cert->psk_identity_hint);
298 if (ret->psk_identity_hint == NULL)
299 goto err;
300 }
301 #endif
302 return ret;
303
304 err:
305 ssl_cert_free(ret);
306
307 return NULL;
308 }
309
310 /* Free up and clear all certificates and chains */
311
312 void ssl_cert_clear_certs(CERT *c)
313 {
314 int i;
315 if (c == NULL)
316 return;
317 for (i = 0; i < SSL_PKEY_NUM; i++) {
318 CERT_PKEY *cpk = c->pkeys + i;
319 X509_free(cpk->x509);
320 cpk->x509 = NULL;
321 EVP_PKEY_free(cpk->privatekey);
322 cpk->privatekey = NULL;
323 sk_X509_pop_free(cpk->chain, X509_free);
324 cpk->chain = NULL;
325 OPENSSL_free(cpk->serverinfo);
326 cpk->serverinfo = NULL;
327 cpk->serverinfo_length = 0;
328 }
329 }
330
331 void ssl_cert_free(CERT *c)
332 {
333 int i;
334
335 if (c == NULL)
336 return;
337
338 CRYPTO_atomic_add(&c->references, -1, &i, c->lock);
339 REF_PRINT_COUNT("CERT", c);
340 if (i > 0)
341 return;
342 REF_ASSERT_ISNT(i < 0);
343
344 #ifndef OPENSSL_NO_DH
345 EVP_PKEY_free(c->dh_tmp);
346 #endif
347
348 ssl_cert_clear_certs(c);
349 OPENSSL_free(c->conf_sigalgs);
350 OPENSSL_free(c->client_sigalgs);
351 OPENSSL_free(c->shared_sigalgs);
352 OPENSSL_free(c->ctypes);
353 X509_STORE_free(c->verify_store);
354 X509_STORE_free(c->chain_store);
355 custom_exts_free(&c->cli_ext);
356 custom_exts_free(&c->srv_ext);
357 #ifndef OPENSSL_NO_PSK
358 OPENSSL_free(c->psk_identity_hint);
359 #endif
360 CRYPTO_THREAD_lock_free(c->lock);
361 OPENSSL_free(c);
362 }
363
364 int ssl_cert_set0_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
365 {
366 int i, r;
367 CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
368 if (!cpk)
369 return 0;
370 sk_X509_pop_free(cpk->chain, X509_free);
371 for (i = 0; i < sk_X509_num(chain); i++) {
372 r = ssl_security_cert(s, ctx, sk_X509_value(chain, i), 0, 0);
373 if (r != 1) {
374 SSLerr(SSL_F_SSL_CERT_SET0_CHAIN, r);
375 return 0;
376 }
377 }
378 cpk->chain = chain;
379 return 1;
380 }
381
382 int ssl_cert_set1_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
383 {
384 STACK_OF(X509) *dchain;
385 if (!chain)
386 return ssl_cert_set0_chain(s, ctx, NULL);
387 dchain = X509_chain_up_ref(chain);
388 if (!dchain)
389 return 0;
390 if (!ssl_cert_set0_chain(s, ctx, dchain)) {
391 sk_X509_pop_free(dchain, X509_free);
392 return 0;
393 }
394 return 1;
395 }
396
397 int ssl_cert_add0_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
398 {
399 int r;
400 CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
401 if (!cpk)
402 return 0;
403 r = ssl_security_cert(s, ctx, x, 0, 0);
404 if (r != 1) {
405 SSLerr(SSL_F_SSL_CERT_ADD0_CHAIN_CERT, r);
406 return 0;
407 }
408 if (!cpk->chain)
409 cpk->chain = sk_X509_new_null();
410 if (!cpk->chain || !sk_X509_push(cpk->chain, x))
411 return 0;
412 return 1;
413 }
414
415 int ssl_cert_add1_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
416 {
417 if (!ssl_cert_add0_chain_cert(s, ctx, x))
418 return 0;
419 X509_up_ref(x);
420 return 1;
421 }
422
423 int ssl_cert_select_current(CERT *c, X509 *x)
424 {
425 int i;
426 if (x == NULL)
427 return 0;
428 for (i = 0; i < SSL_PKEY_NUM; i++) {
429 CERT_PKEY *cpk = c->pkeys + i;
430 if (cpk->x509 == x && cpk->privatekey) {
431 c->key = cpk;
432 return 1;
433 }
434 }
435
436 for (i = 0; i < SSL_PKEY_NUM; i++) {
437 CERT_PKEY *cpk = c->pkeys + i;
438 if (cpk->privatekey && cpk->x509 && !X509_cmp(cpk->x509, x)) {
439 c->key = cpk;
440 return 1;
441 }
442 }
443 return 0;
444 }
445
446 int ssl_cert_set_current(CERT *c, long op)
447 {
448 int i, idx;
449 if (!c)
450 return 0;
451 if (op == SSL_CERT_SET_FIRST)
452 idx = 0;
453 else if (op == SSL_CERT_SET_NEXT) {
454 idx = (int)(c->key - c->pkeys + 1);
455 if (idx >= SSL_PKEY_NUM)
456 return 0;
457 } else
458 return 0;
459 for (i = idx; i < SSL_PKEY_NUM; i++) {
460 CERT_PKEY *cpk = c->pkeys + i;
461 if (cpk->x509 && cpk->privatekey) {
462 c->key = cpk;
463 return 1;
464 }
465 }
466 return 0;
467 }
468
469 void ssl_cert_set_cert_cb(CERT *c, int (*cb) (SSL *ssl, void *arg), void *arg)
470 {
471 c->cert_cb = cb;
472 c->cert_cb_arg = arg;
473 }
474
475 int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk)
476 {
477 X509 *x;
478 int i;
479 X509_STORE *verify_store;
480 X509_STORE_CTX ctx;
481 X509_VERIFY_PARAM *param;
482
483 if (s->cert->verify_store)
484 verify_store = s->cert->verify_store;
485 else
486 verify_store = s->ctx->cert_store;
487
488 if ((sk == NULL) || (sk_X509_num(sk) == 0))
489 return (0);
490
491 x = sk_X509_value(sk, 0);
492 if (!X509_STORE_CTX_init(&ctx, verify_store, x, sk)) {
493 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_X509_LIB);
494 return (0);
495 }
496 param = X509_STORE_CTX_get0_param(&ctx);
497 /*
498 * XXX: Separate @AUTHSECLEVEL and @TLSSECLEVEL would be useful at some
499 * point, for now a single @SECLEVEL sets the same policy for TLS crypto
500 * and PKI authentication.
501 */
502 X509_VERIFY_PARAM_set_auth_level(param, SSL_get_security_level(s));
503
504 /* Set suite B flags if needed */
505 X509_STORE_CTX_set_flags(&ctx, tls1_suiteb(s));
506 X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s);
507
508 /* Verify via DANE if enabled */
509 if (DANETLS_ENABLED(&s->dane))
510 X509_STORE_CTX_set0_dane(&ctx, &s->dane);
511
512 /*
513 * We need to inherit the verify parameters. These can be determined by
514 * the context: if its a server it will verify SSL client certificates or
515 * vice versa.
516 */
517
518 X509_STORE_CTX_set_default(&ctx, s->server ? "ssl_client" : "ssl_server");
519 /*
520 * Anything non-default in "s->param" should overwrite anything in the ctx.
521 */
522 X509_VERIFY_PARAM_set1(param, s->param);
523
524 if (s->verify_callback)
525 X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback);
526
527 if (s->ctx->app_verify_callback != NULL)
528 i = s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg);
529 else
530 i = X509_verify_cert(&ctx);
531
532 s->verify_result = ctx.error;
533 sk_X509_pop_free(s->verified_chain, X509_free);
534 s->verified_chain = NULL;
535 if (X509_STORE_CTX_get_chain(&ctx) != NULL) {
536 s->verified_chain = X509_STORE_CTX_get1_chain(&ctx);
537 if (s->verified_chain == NULL) {
538 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_MALLOC_FAILURE);
539 i = 0;
540 }
541 }
542
543 /* Move peername from the store context params to the SSL handle's */
544 X509_VERIFY_PARAM_move_peername(s->param, param);
545
546 X509_STORE_CTX_cleanup(&ctx);
547
548 return (i);
549 }
550
551 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,
552 STACK_OF(X509_NAME) *name_list)
553 {
554 sk_X509_NAME_pop_free(*ca_list, X509_NAME_free);
555 *ca_list = name_list;
556 }
557
558 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk)
559 {
560 int i;
561 STACK_OF(X509_NAME) *ret;
562 X509_NAME *name;
563
564 ret = sk_X509_NAME_new_null();
565 for (i = 0; i < sk_X509_NAME_num(sk); i++) {
566 name = X509_NAME_dup(sk_X509_NAME_value(sk, i));
567 if ((name == NULL) || !sk_X509_NAME_push(ret, name)) {
568 sk_X509_NAME_pop_free(ret, X509_NAME_free);
569 return (NULL);
570 }
571 }
572 return (ret);
573 }
574
575 void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list)
576 {
577 set_client_CA_list(&(s->client_CA), name_list);
578 }
579
580 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list)
581 {
582 set_client_CA_list(&(ctx->client_CA), name_list);
583 }
584
585 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
586 {
587 return (ctx->client_CA);
588 }
589
590 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s)
591 {
592 if (!s->server) { /* we are in the client */
593 if (((s->version >> 8) == SSL3_VERSION_MAJOR) && (s->s3 != NULL))
594 return (s->s3->tmp.ca_names);
595 else
596 return (NULL);
597 } else {
598 if (s->client_CA != NULL)
599 return (s->client_CA);
600 else
601 return (s->ctx->client_CA);
602 }
603 }
604
605 static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x)
606 {
607 X509_NAME *name;
608
609 if (x == NULL)
610 return (0);
611 if ((*sk == NULL) && ((*sk = sk_X509_NAME_new_null()) == NULL))
612 return (0);
613
614 if ((name = X509_NAME_dup(X509_get_subject_name(x))) == NULL)
615 return (0);
616
617 if (!sk_X509_NAME_push(*sk, name)) {
618 X509_NAME_free(name);
619 return (0);
620 }
621 return (1);
622 }
623
624 int SSL_add_client_CA(SSL *ssl, X509 *x)
625 {
626 return (add_client_CA(&(ssl->client_CA), x));
627 }
628
629 int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x)
630 {
631 return (add_client_CA(&(ctx->client_CA), x));
632 }
633
634 static int xname_sk_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
635 {
636 return (X509_NAME_cmp(*a, *b));
637 }
638
639 static int xname_cmp(const X509_NAME *a, const X509_NAME *b)
640 {
641 return X509_NAME_cmp(a, b);
642 }
643
644 static unsigned long xname_hash(const X509_NAME *a)
645 {
646 return X509_NAME_hash((X509_NAME *)a);
647 }
648
649 /**
650 * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
651 * it doesn't really have anything to do with clients (except that a common use
652 * for a stack of CAs is to send it to the client). Actually, it doesn't have
653 * much to do with CAs, either, since it will load any old cert.
654 * \param file the file containing one or more certs.
655 * \return a ::STACK containing the certs.
656 */
657 STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file)
658 {
659 BIO *in = BIO_new(BIO_s_file());
660 X509 *x = NULL;
661 X509_NAME *xn = NULL;
662 STACK_OF(X509_NAME) *ret = NULL;
663 LHASH_OF(X509_NAME) *name_hash =
664 lh_X509_NAME_new(xname_hash, xname_cmp);
665
666 if ((name_hash == NULL) || (in == NULL)) {
667 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
668 goto err;
669 }
670
671 if (!BIO_read_filename(in, file))
672 goto err;
673
674 for (;;) {
675 if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
676 break;
677 if (ret == NULL) {
678 ret = sk_X509_NAME_new_null();
679 if (ret == NULL) {
680 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
681 goto err;
682 }
683 }
684 if ((xn = X509_get_subject_name(x)) == NULL)
685 goto err;
686 /* check for duplicates */
687 xn = X509_NAME_dup(xn);
688 if (xn == NULL)
689 goto err;
690 if (lh_X509_NAME_retrieve(name_hash, xn) != NULL) {
691 /* Duplicate. */
692 X509_NAME_free(xn);
693 } else {
694 lh_X509_NAME_insert(name_hash, xn);
695 sk_X509_NAME_push(ret, xn);
696 }
697 }
698 goto done;
699
700 err:
701 sk_X509_NAME_pop_free(ret, X509_NAME_free);
702 ret = NULL;
703 done:
704 BIO_free(in);
705 X509_free(x);
706 lh_X509_NAME_free(name_hash);
707 if (ret != NULL)
708 ERR_clear_error();
709 return (ret);
710 }
711
712 /**
713 * Add a file of certs to a stack.
714 * \param stack the stack to add to.
715 * \param file the file to add from. All certs in this file that are not
716 * already in the stack will be added.
717 * \return 1 for success, 0 for failure. Note that in the case of failure some
718 * certs may have been added to \c stack.
719 */
720
721 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
722 const char *file)
723 {
724 BIO *in;
725 X509 *x = NULL;
726 X509_NAME *xn = NULL;
727 int ret = 1;
728 int (*oldcmp) (const X509_NAME *const *a, const X509_NAME *const *b);
729
730 oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_sk_cmp);
731
732 in = BIO_new(BIO_s_file());
733
734 if (in == NULL) {
735 SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK,
736 ERR_R_MALLOC_FAILURE);
737 goto err;
738 }
739
740 if (!BIO_read_filename(in, file))
741 goto err;
742
743 for (;;) {
744 if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
745 break;
746 if ((xn = X509_get_subject_name(x)) == NULL)
747 goto err;
748 xn = X509_NAME_dup(xn);
749 if (xn == NULL)
750 goto err;
751 if (sk_X509_NAME_find(stack, xn) >= 0)
752 X509_NAME_free(xn);
753 else
754 sk_X509_NAME_push(stack, xn);
755 }
756
757 ERR_clear_error();
758 goto done;
759
760 err:
761 ret = 0;
762 done:
763 BIO_free(in);
764 X509_free(x);
765 (void)sk_X509_NAME_set_cmp_func(stack, oldcmp);
766 return ret;
767 }
768
769 /**
770 * Add a directory of certs to a stack.
771 * \param stack the stack to append to.
772 * \param dir the directory to append from. All files in this directory will be
773 * examined as potential certs. Any that are acceptable to
774 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
775 * included.
776 * \return 1 for success, 0 for failure. Note that in the case of failure some
777 * certs may have been added to \c stack.
778 */
779
780 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
781 const char *dir)
782 {
783 OPENSSL_DIR_CTX *d = NULL;
784 const char *filename;
785 int ret = 0;
786
787 /* Note that a side effect is that the CAs will be sorted by name */
788
789 while ((filename = OPENSSL_DIR_read(&d, dir))) {
790 char buf[1024];
791 int r;
792
793 if (strlen(dir) + strlen(filename) + 2 > sizeof buf) {
794 SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK,
795 SSL_R_PATH_TOO_LONG);
796 goto err;
797 }
798 #ifdef OPENSSL_SYS_VMS
799 r = BIO_snprintf(buf, sizeof buf, "%s%s", dir, filename);
800 #else
801 r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename);
802 #endif
803 if (r <= 0 || r >= (int)sizeof(buf))
804 goto err;
805 if (!SSL_add_file_cert_subjects_to_stack(stack, buf))
806 goto err;
807 }
808
809 if (errno) {
810 SYSerr(SYS_F_OPENDIR, get_last_sys_error());
811 ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')");
812 SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, ERR_R_SYS_LIB);
813 goto err;
814 }
815
816 ret = 1;
817
818 err:
819 if (d)
820 OPENSSL_DIR_end(&d);
821
822 return ret;
823 }
824
825 /* Add a certificate to a BUF_MEM structure */
826
827 static int ssl_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x)
828 {
829 int n;
830 unsigned char *p;
831
832 n = i2d_X509(x, NULL);
833 if (!BUF_MEM_grow_clean(buf, (int)(n + (*l) + 3))) {
834 SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_BUF_LIB);
835 return 0;
836 }
837 p = (unsigned char *)&(buf->data[*l]);
838 l2n3(n, p);
839 i2d_X509(x, &p);
840 *l += n + 3;
841
842 return 1;
843 }
844
845 /* Add certificate chain to internal SSL BUF_MEM strcuture */
846 int ssl_add_cert_chain(SSL *s, CERT_PKEY *cpk, unsigned long *l)
847 {
848 BUF_MEM *buf = s->init_buf;
849 int i;
850
851 X509 *x;
852 STACK_OF(X509) *extra_certs;
853 X509_STORE *chain_store;
854
855 /* TLSv1 sends a chain with nothing in it, instead of an alert */
856 if (!BUF_MEM_grow_clean(buf, 10)) {
857 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_BUF_LIB);
858 return 0;
859 }
860
861 if (!cpk || !cpk->x509)
862 return 1;
863
864 x = cpk->x509;
865
866 /*
867 * If we have a certificate specific chain use it, else use parent ctx.
868 */
869 if (cpk->chain)
870 extra_certs = cpk->chain;
871 else
872 extra_certs = s->ctx->extra_certs;
873
874 if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs)
875 chain_store = NULL;
876 else if (s->cert->chain_store)
877 chain_store = s->cert->chain_store;
878 else
879 chain_store = s->ctx->cert_store;
880
881 if (chain_store) {
882 X509_STORE_CTX xs_ctx;
883
884 if (!X509_STORE_CTX_init(&xs_ctx, chain_store, x, NULL)) {
885 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB);
886 return (0);
887 }
888 /*
889 * It is valid for the chain not to be complete (because normally we
890 * don't include the root cert in the chain). Therefore we deliberately
891 * ignore the error return from this call. We're not actually verifying
892 * the cert - we're just building as much of the chain as we can
893 */
894 (void) X509_verify_cert(&xs_ctx);
895 /* Don't leave errors in the queue */
896 ERR_clear_error();
897 i = ssl_security_cert_chain(s, xs_ctx.chain, NULL, 0);
898 if (i != 1) {
899 X509_STORE_CTX_cleanup(&xs_ctx);
900 #if 0
901 /* Dummy error calls so mkerr generates them */
902 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL);
903 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL);
904 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK);
905 #endif
906 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
907 return 0;
908 }
909 for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) {
910 x = sk_X509_value(xs_ctx.chain, i);
911
912 if (!ssl_add_cert_to_buf(buf, l, x)) {
913 X509_STORE_CTX_cleanup(&xs_ctx);
914 return 0;
915 }
916 }
917 X509_STORE_CTX_cleanup(&xs_ctx);
918 } else {
919 i = ssl_security_cert_chain(s, extra_certs, x, 0);
920 if (i != 1) {
921 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
922 return 0;
923 }
924 if (!ssl_add_cert_to_buf(buf, l, x))
925 return 0;
926 for (i = 0; i < sk_X509_num(extra_certs); i++) {
927 x = sk_X509_value(extra_certs, i);
928 if (!ssl_add_cert_to_buf(buf, l, x))
929 return 0;
930 }
931 }
932 return 1;
933 }
934
935 /* Build a certificate chain for current certificate */
936 int ssl_build_cert_chain(SSL *s, SSL_CTX *ctx, int flags)
937 {
938 CERT *c = s ? s->cert : ctx->cert;
939 CERT_PKEY *cpk = c->key;
940 X509_STORE *chain_store = NULL;
941 X509_STORE_CTX xs_ctx;
942 STACK_OF(X509) *chain = NULL, *untrusted = NULL;
943 X509 *x;
944 int i, rv = 0;
945 unsigned long error;
946
947 if (!cpk->x509) {
948 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_NO_CERTIFICATE_SET);
949 goto err;
950 }
951 /* Rearranging and check the chain: add everything to a store */
952 if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) {
953 chain_store = X509_STORE_new();
954 if (chain_store == NULL)
955 goto err;
956 for (i = 0; i < sk_X509_num(cpk->chain); i++) {
957 x = sk_X509_value(cpk->chain, i);
958 if (!X509_STORE_add_cert(chain_store, x)) {
959 error = ERR_peek_last_error();
960 if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
961 ERR_GET_REASON(error) !=
962 X509_R_CERT_ALREADY_IN_HASH_TABLE)
963 goto err;
964 ERR_clear_error();
965 }
966 }
967 /* Add EE cert too: it might be self signed */
968 if (!X509_STORE_add_cert(chain_store, cpk->x509)) {
969 error = ERR_peek_last_error();
970 if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
971 ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE)
972 goto err;
973 ERR_clear_error();
974 }
975 } else {
976 if (c->chain_store)
977 chain_store = c->chain_store;
978 else if (s)
979 chain_store = s->ctx->cert_store;
980 else
981 chain_store = ctx->cert_store;
982
983 if (flags & SSL_BUILD_CHAIN_FLAG_UNTRUSTED)
984 untrusted = cpk->chain;
985 }
986
987 if (!X509_STORE_CTX_init(&xs_ctx, chain_store, cpk->x509, untrusted)) {
988 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_X509_LIB);
989 goto err;
990 }
991 /* Set suite B flags if needed */
992 X509_STORE_CTX_set_flags(&xs_ctx,
993 c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS);
994
995 i = X509_verify_cert(&xs_ctx);
996 if (i <= 0 && flags & SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR) {
997 if (flags & SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR)
998 ERR_clear_error();
999 i = 1;
1000 rv = 2;
1001 }
1002 if (i > 0)
1003 chain = X509_STORE_CTX_get1_chain(&xs_ctx);
1004 if (i <= 0) {
1005 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_CERTIFICATE_VERIFY_FAILED);
1006 i = X509_STORE_CTX_get_error(&xs_ctx);
1007 ERR_add_error_data(2, "Verify error:",
1008 X509_verify_cert_error_string(i));
1009
1010 X509_STORE_CTX_cleanup(&xs_ctx);
1011 goto err;
1012 }
1013 X509_STORE_CTX_cleanup(&xs_ctx);
1014 /* Remove EE certificate from chain */
1015 x = sk_X509_shift(chain);
1016 X509_free(x);
1017 if (flags & SSL_BUILD_CHAIN_FLAG_NO_ROOT) {
1018 if (sk_X509_num(chain) > 0) {
1019 /* See if last cert is self signed */
1020 x = sk_X509_value(chain, sk_X509_num(chain) - 1);
1021 if (X509_get_extension_flags(x) & EXFLAG_SS) {
1022 x = sk_X509_pop(chain);
1023 X509_free(x);
1024 }
1025 }
1026 }
1027 /*
1028 * Check security level of all CA certificates: EE will have been checked
1029 * already.
1030 */
1031 for (i = 0; i < sk_X509_num(chain); i++) {
1032 x = sk_X509_value(chain, i);
1033 rv = ssl_security_cert(s, ctx, x, 0, 0);
1034 if (rv != 1) {
1035 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, rv);
1036 sk_X509_pop_free(chain, X509_free);
1037 rv = 0;
1038 goto err;
1039 }
1040 }
1041 sk_X509_pop_free(cpk->chain, X509_free);
1042 cpk->chain = chain;
1043 if (rv == 0)
1044 rv = 1;
1045 err:
1046 if (flags & SSL_BUILD_CHAIN_FLAG_CHECK)
1047 X509_STORE_free(chain_store);
1048
1049 return rv;
1050 }
1051
1052 int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref)
1053 {
1054 X509_STORE **pstore;
1055 if (chain)
1056 pstore = &c->chain_store;
1057 else
1058 pstore = &c->verify_store;
1059 X509_STORE_free(*pstore);
1060 *pstore = store;
1061 if (ref && store)
1062 X509_STORE_up_ref(store);
1063 return 1;
1064 }
1065
1066 static int ssl_security_default_callback(const SSL *s, const SSL_CTX *ctx, int op,
1067 int bits, int nid, void *other,
1068 void *ex)
1069 {
1070 int level, minbits;
1071 static const int minbits_table[5] = { 80, 112, 128, 192, 256 };
1072 if (ctx)
1073 level = SSL_CTX_get_security_level(ctx);
1074 else
1075 level = SSL_get_security_level(s);
1076
1077 if (level <= 0) {
1078 /*
1079 * No EDH keys weaker than 1024-bits even at level 0, otherwise,
1080 * anything goes.
1081 */
1082 if (op == SSL_SECOP_TMP_DH && bits < 80)
1083 return 0;
1084 return 1;
1085 }
1086 if (level > 5)
1087 level = 5;
1088 minbits = minbits_table[level - 1];
1089 switch (op) {
1090 case SSL_SECOP_CIPHER_SUPPORTED:
1091 case SSL_SECOP_CIPHER_SHARED:
1092 case SSL_SECOP_CIPHER_CHECK:
1093 {
1094 const SSL_CIPHER *c = other;
1095 /* No ciphers below security level */
1096 if (bits < minbits)
1097 return 0;
1098 /* No unauthenticated ciphersuites */
1099 if (c->algorithm_auth & SSL_aNULL)
1100 return 0;
1101 /* No MD5 mac ciphersuites */
1102 if (c->algorithm_mac & SSL_MD5)
1103 return 0;
1104 /* SHA1 HMAC is 160 bits of security */
1105 if (minbits > 160 && c->algorithm_mac & SSL_SHA1)
1106 return 0;
1107 /* Level 2: no RC4 */
1108 if (level >= 2 && c->algorithm_enc == SSL_RC4)
1109 return 0;
1110 /* Level 3: forward secure ciphersuites only */
1111 if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)))
1112 return 0;
1113 break;
1114 }
1115 case SSL_SECOP_VERSION:
1116 if (!SSL_IS_DTLS(s)) {
1117 /* SSLv3 not allowed at level 2 */
1118 if (nid <= SSL3_VERSION && level >= 2)
1119 return 0;
1120 /* TLS v1.1 and above only for level 3 */
1121 if (nid <= TLS1_VERSION && level >= 3)
1122 return 0;
1123 /* TLS v1.2 only for level 4 and above */
1124 if (nid <= TLS1_1_VERSION && level >= 4)
1125 return 0;
1126 } else {
1127 /* DTLS v1.2 only for level 4 and above */
1128 if (DTLS_VERSION_LT(nid, DTLS1_2_VERSION) && level >= 4)
1129 return 0;
1130 }
1131 break;
1132
1133 case SSL_SECOP_COMPRESSION:
1134 if (level >= 2)
1135 return 0;
1136 break;
1137 case SSL_SECOP_TICKET:
1138 if (level >= 3)
1139 return 0;
1140 break;
1141 default:
1142 if (bits < minbits)
1143 return 0;
1144 }
1145 return 1;
1146 }
1147
1148 int ssl_security(const SSL *s, int op, int bits, int nid, void *other)
1149 {
1150 return s->cert->sec_cb(s, NULL, op, bits, nid, other, s->cert->sec_ex);
1151 }
1152
1153 int ssl_ctx_security(const SSL_CTX *ctx, int op, int bits, int nid, void *other)
1154 {
1155 return ctx->cert->sec_cb(NULL, ctx, op, bits, nid, other,
1156 ctx->cert->sec_ex);
1157 }