2 * ! \file ssl/ssl_cert.c
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
7 * This package is an SSL implementation written
8 * by Eric Young (eay@cryptsoft.com).
9 * The implementation was written so as to conform with Netscapes SSL.
11 * This library is free for commercial and non-commercial use as long as
12 * the following conditions are aheared to. The following conditions
13 * apply to all code found in this distribution, be it the RC4, RSA,
14 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
15 * included with this distribution is covered by the same copyright terms
16 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
18 * Copyright remains Eric Young's, and as such any Copyright notices in
19 * the code are not to be removed.
20 * If this package is used in a product, Eric Young should be given attribution
21 * as the author of the parts of the library used.
22 * This can be in the form of a textual message at program startup or
23 * in documentation (online or textual) provided with the package.
25 * Redistribution and use in source and binary forms, with or without
26 * modification, are permitted provided that the following conditions
28 * 1. Redistributions of source code must retain the copyright
29 * notice, this list of conditions and the following disclaimer.
30 * 2. Redistributions in binary form must reproduce the above copyright
31 * notice, this list of conditions and the following disclaimer in the
32 * documentation and/or other materials provided with the distribution.
33 * 3. All advertising materials mentioning features or use of this software
34 * must display the following acknowledgement:
35 * "This product includes cryptographic software written by
36 * Eric Young (eay@cryptsoft.com)"
37 * The word 'cryptographic' can be left out if the rouines from the library
38 * being used are not cryptographic related :-).
39 * 4. If you include any Windows specific code (or a derivative thereof) from
40 * the apps directory (application code) you must include an acknowledgement:
41 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
43 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55 * The licence and distribution terms for any publically available version or
56 * derivative of this code cannot be changed. i.e. this code cannot simply be
57 * copied and put under another distribution licence
58 * [including the GNU Public Licence.]
60 /* ====================================================================
61 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
63 * Redistribution and use in source and binary forms, with or without
64 * modification, are permitted provided that the following conditions
67 * 1. Redistributions of source code must retain the above copyright
68 * notice, this list of conditions and the following disclaimer.
70 * 2. Redistributions in binary form must reproduce the above copyright
71 * notice, this list of conditions and the following disclaimer in
72 * the documentation and/or other materials provided with the
75 * 3. All advertising materials mentioning features or use of this
76 * software must display the following acknowledgment:
77 * "This product includes software developed by the OpenSSL Project
78 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
80 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
81 * endorse or promote products derived from this software without
82 * prior written permission. For written permission, please contact
83 * openssl-core@openssl.org.
85 * 5. Products derived from this software may not be called "OpenSSL"
86 * nor may "OpenSSL" appear in their names without prior written
87 * permission of the OpenSSL Project.
89 * 6. Redistributions of any form whatsoever must retain the following
91 * "This product includes software developed by the OpenSSL Project
92 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
94 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
95 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
97 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
98 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
99 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
100 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
101 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
102 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
103 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
104 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
105 * OF THE POSSIBILITY OF SUCH DAMAGE.
106 * ====================================================================
108 * This product includes cryptographic software written by Eric Young
109 * (eay@cryptsoft.com). This product includes software written by Tim
110 * Hudson (tjh@cryptsoft.com).
113 /* ====================================================================
114 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
115 * ECC cipher suite support in OpenSSL originally developed by
116 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
122 #ifndef NO_SYS_TYPES_H
123 # include <sys/types.h>
127 #include <openssl/objects.h>
128 #include <openssl/bio.h>
129 #include <openssl/pem.h>
130 #include <openssl/x509v3.h>
131 #ifndef OPENSSL_NO_DH
132 # include <openssl/dh.h>
134 #include <openssl/bn.h>
135 #include "ssl_locl.h"
137 int SSL_get_ex_data_X509_STORE_CTX_idx(void)
139 static volatile int ssl_x509_store_ctx_idx
= -1;
140 int got_write_lock
= 0;
142 if (((size_t)&ssl_x509_store_ctx_idx
&
143 (sizeof(ssl_x509_store_ctx_idx
) - 1))
144 == 0) { /* check alignment, practically always true */
147 if ((ret
= ssl_x509_store_ctx_idx
) < 0) {
148 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX
);
149 if ((ret
= ssl_x509_store_ctx_idx
) < 0) {
150 ret
= ssl_x509_store_ctx_idx
=
151 X509_STORE_CTX_get_ex_new_index(0,
152 "SSL for verify callback",
155 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX
);
159 } else { /* commonly eliminated */
161 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX
);
163 if (ssl_x509_store_ctx_idx
< 0) {
164 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX
);
165 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX
);
168 if (ssl_x509_store_ctx_idx
< 0) {
169 ssl_x509_store_ctx_idx
=
170 X509_STORE_CTX_get_ex_new_index(0,
171 "SSL for verify callback",
177 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX
);
179 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX
);
181 return ssl_x509_store_ctx_idx
;
185 void ssl_cert_set_default_md(CERT
*cert
)
187 /* Set digest values to defaults */
188 #ifndef OPENSSL_NO_DSA
189 cert
->pkeys
[SSL_PKEY_DSA_SIGN
].digest
= EVP_sha1();
191 #ifndef OPENSSL_NO_RSA
192 cert
->pkeys
[SSL_PKEY_RSA_SIGN
].digest
= EVP_sha1();
193 cert
->pkeys
[SSL_PKEY_RSA_ENC
].digest
= EVP_sha1();
195 #ifndef OPENSSL_NO_ECDSA
196 cert
->pkeys
[SSL_PKEY_ECC
].digest
= EVP_sha1();
200 CERT
*ssl_cert_new(void)
204 ret
= (CERT
*)OPENSSL_malloc(sizeof(CERT
));
206 SSLerr(SSL_F_SSL_CERT_NEW
, ERR_R_MALLOC_FAILURE
);
209 memset(ret
, 0, sizeof(CERT
));
211 ret
->key
= &(ret
->pkeys
[SSL_PKEY_RSA_ENC
]);
213 ssl_cert_set_default_md(ret
);
217 CERT
*ssl_cert_dup(CERT
*cert
)
222 ret
= (CERT
*)OPENSSL_malloc(sizeof(CERT
));
224 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_MALLOC_FAILURE
);
228 memset(ret
, 0, sizeof(CERT
));
231 ret
->key
= &ret
->pkeys
[cert
->key
- &cert
->pkeys
[0]];
233 * or ret->key = ret->pkeys + (cert->key - cert->pkeys), if you find that
237 ret
->valid
= cert
->valid
;
238 ret
->mask_k
= cert
->mask_k
;
239 ret
->mask_a
= cert
->mask_a
;
240 ret
->export_mask_k
= cert
->export_mask_k
;
241 ret
->export_mask_a
= cert
->export_mask_a
;
243 #ifndef OPENSSL_NO_RSA
244 if (cert
->rsa_tmp
!= NULL
) {
245 RSA_up_ref(cert
->rsa_tmp
);
246 ret
->rsa_tmp
= cert
->rsa_tmp
;
248 ret
->rsa_tmp_cb
= cert
->rsa_tmp_cb
;
251 #ifndef OPENSSL_NO_DH
252 if (cert
->dh_tmp
!= NULL
) {
253 ret
->dh_tmp
= DHparams_dup(cert
->dh_tmp
);
254 if (ret
->dh_tmp
== NULL
) {
255 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_DH_LIB
);
258 if (cert
->dh_tmp
->priv_key
) {
259 BIGNUM
*b
= BN_dup(cert
->dh_tmp
->priv_key
);
261 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_BN_LIB
);
264 ret
->dh_tmp
->priv_key
= b
;
266 if (cert
->dh_tmp
->pub_key
) {
267 BIGNUM
*b
= BN_dup(cert
->dh_tmp
->pub_key
);
269 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_BN_LIB
);
272 ret
->dh_tmp
->pub_key
= b
;
275 ret
->dh_tmp_cb
= cert
->dh_tmp_cb
;
278 #ifndef OPENSSL_NO_ECDH
279 if (cert
->ecdh_tmp
) {
280 ret
->ecdh_tmp
= EC_KEY_dup(cert
->ecdh_tmp
);
281 if (ret
->ecdh_tmp
== NULL
) {
282 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_EC_LIB
);
286 ret
->ecdh_tmp_cb
= cert
->ecdh_tmp_cb
;
287 ret
->ecdh_tmp_auto
= cert
->ecdh_tmp_auto
;
290 for (i
= 0; i
< SSL_PKEY_NUM
; i
++) {
291 CERT_PKEY
*cpk
= cert
->pkeys
+ i
;
292 CERT_PKEY
*rpk
= ret
->pkeys
+ i
;
293 if (cpk
->x509
!= NULL
) {
294 rpk
->x509
= cpk
->x509
;
295 CRYPTO_add(&rpk
->x509
->references
, 1, CRYPTO_LOCK_X509
);
298 if (cpk
->privatekey
!= NULL
) {
299 rpk
->privatekey
= cpk
->privatekey
;
300 CRYPTO_add(&cpk
->privatekey
->references
, 1, CRYPTO_LOCK_EVP_PKEY
);
304 rpk
->chain
= X509_chain_up_ref(cpk
->chain
);
306 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_MALLOC_FAILURE
);
310 rpk
->valid_flags
= 0;
311 #ifndef OPENSSL_NO_TLSEXT
312 if (cert
->pkeys
[i
].serverinfo
!= NULL
) {
313 /* Just copy everything. */
314 ret
->pkeys
[i
].serverinfo
=
315 OPENSSL_malloc(cert
->pkeys
[i
].serverinfo_length
);
316 if (ret
->pkeys
[i
].serverinfo
== NULL
) {
317 SSLerr(SSL_F_SSL_CERT_DUP
, ERR_R_MALLOC_FAILURE
);
320 ret
->pkeys
[i
].serverinfo_length
=
321 cert
->pkeys
[i
].serverinfo_length
;
322 memcpy(ret
->pkeys
[i
].serverinfo
,
323 cert
->pkeys
[i
].serverinfo
,
324 cert
->pkeys
[i
].serverinfo_length
);
330 * Set digests to defaults. NB: we don't copy existing values as they
331 * will be set during handshake.
333 ssl_cert_set_default_md(ret
);
334 /* Peer sigalgs set to NULL as we get these from handshake too */
335 ret
->peer_sigalgs
= NULL
;
336 ret
->peer_sigalgslen
= 0;
337 /* Configured sigalgs however we copy across */
339 if (cert
->conf_sigalgs
) {
340 ret
->conf_sigalgs
= OPENSSL_malloc(cert
->conf_sigalgslen
);
341 if (!ret
->conf_sigalgs
)
343 memcpy(ret
->conf_sigalgs
, cert
->conf_sigalgs
, cert
->conf_sigalgslen
);
344 ret
->conf_sigalgslen
= cert
->conf_sigalgslen
;
346 ret
->conf_sigalgs
= NULL
;
348 if (cert
->client_sigalgs
) {
349 ret
->client_sigalgs
= OPENSSL_malloc(cert
->client_sigalgslen
);
350 if (!ret
->client_sigalgs
)
352 memcpy(ret
->client_sigalgs
, cert
->client_sigalgs
,
353 cert
->client_sigalgslen
);
354 ret
->client_sigalgslen
= cert
->client_sigalgslen
;
356 ret
->client_sigalgs
= NULL
;
357 /* Shared sigalgs also NULL */
358 ret
->shared_sigalgs
= NULL
;
359 /* Copy any custom client certificate types */
361 ret
->ctypes
= OPENSSL_malloc(cert
->ctype_num
);
364 memcpy(ret
->ctypes
, cert
->ctypes
, cert
->ctype_num
);
365 ret
->ctype_num
= cert
->ctype_num
;
368 ret
->cert_flags
= cert
->cert_flags
;
370 ret
->cert_cb
= cert
->cert_cb
;
371 ret
->cert_cb_arg
= cert
->cert_cb_arg
;
373 if (cert
->verify_store
) {
374 CRYPTO_add(&cert
->verify_store
->references
, 1,
375 CRYPTO_LOCK_X509_STORE
);
376 ret
->verify_store
= cert
->verify_store
;
379 if (cert
->chain_store
) {
380 CRYPTO_add(&cert
->chain_store
->references
, 1, CRYPTO_LOCK_X509_STORE
);
381 ret
->chain_store
= cert
->chain_store
;
384 ret
->ciphers_raw
= NULL
;
386 #ifndef OPENSSL_NO_TLSEXT
387 if (!custom_exts_copy(&ret
->cli_ext
, &cert
->cli_ext
))
389 if (!custom_exts_copy(&ret
->srv_ext
, &cert
->srv_ext
))
395 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_ECDH)
398 #ifndef OPENSSL_NO_RSA
399 if (ret
->rsa_tmp
!= NULL
)
400 RSA_free(ret
->rsa_tmp
);
402 #ifndef OPENSSL_NO_DH
403 if (ret
->dh_tmp
!= NULL
)
404 DH_free(ret
->dh_tmp
);
406 #ifndef OPENSSL_NO_ECDH
407 if (ret
->ecdh_tmp
!= NULL
)
408 EC_KEY_free(ret
->ecdh_tmp
);
411 #ifndef OPENSSL_NO_TLSEXT
412 custom_exts_free(&ret
->cli_ext
);
413 custom_exts_free(&ret
->srv_ext
);
416 ssl_cert_clear_certs(ret
);
421 /* Free up and clear all certificates and chains */
423 void ssl_cert_clear_certs(CERT
*c
)
428 for (i
= 0; i
< SSL_PKEY_NUM
; i
++) {
429 CERT_PKEY
*cpk
= c
->pkeys
+ i
;
431 X509_free(cpk
->x509
);
434 if (cpk
->privatekey
) {
435 EVP_PKEY_free(cpk
->privatekey
);
436 cpk
->privatekey
= NULL
;
439 sk_X509_pop_free(cpk
->chain
, X509_free
);
442 #ifndef OPENSSL_NO_TLSEXT
443 if (cpk
->serverinfo
) {
444 OPENSSL_free(cpk
->serverinfo
);
445 cpk
->serverinfo
= NULL
;
446 cpk
->serverinfo_length
= 0;
449 /* Clear all flags apart from explicit sign */
450 cpk
->valid_flags
&= CERT_PKEY_EXPLICIT_SIGN
;
454 void ssl_cert_free(CERT
*c
)
461 i
= CRYPTO_add(&c
->references
, -1, CRYPTO_LOCK_SSL_CERT
);
463 REF_PRINT("CERT", c
);
469 fprintf(stderr
, "ssl_cert_free, bad reference count\n");
474 #ifndef OPENSSL_NO_RSA
476 RSA_free(c
->rsa_tmp
);
478 #ifndef OPENSSL_NO_DH
482 #ifndef OPENSSL_NO_ECDH
484 EC_KEY_free(c
->ecdh_tmp
);
487 ssl_cert_clear_certs(c
);
489 OPENSSL_free(c
->peer_sigalgs
);
491 OPENSSL_free(c
->conf_sigalgs
);
492 if (c
->client_sigalgs
)
493 OPENSSL_free(c
->client_sigalgs
);
494 if (c
->shared_sigalgs
)
495 OPENSSL_free(c
->shared_sigalgs
);
497 OPENSSL_free(c
->ctypes
);
499 X509_STORE_free(c
->verify_store
);
501 X509_STORE_free(c
->chain_store
);
503 OPENSSL_free(c
->ciphers_raw
);
504 #ifndef OPENSSL_NO_TLSEXT
505 custom_exts_free(&c
->cli_ext
);
506 custom_exts_free(&c
->srv_ext
);
511 int ssl_cert_inst(CERT
**o
)
514 * Create a CERT if there isn't already one (which cannot really happen,
515 * as it is initially created in SSL_CTX_new; but the earlier code
516 * usually allows for that one being non-existant, so we follow that
517 * behaviour, as it might turn out that there actually is a reason for it
518 * -- but I'm not sure that *all* of the existing code could cope with
519 * s->cert being NULL, otherwise we could do without the initialization
524 SSLerr(SSL_F_SSL_CERT_INST
, ERR_R_PASSED_NULL_PARAMETER
);
528 if ((*o
= ssl_cert_new()) == NULL
) {
529 SSLerr(SSL_F_SSL_CERT_INST
, ERR_R_MALLOC_FAILURE
);
536 int ssl_cert_set0_chain(CERT
*c
, STACK_OF(X509
) *chain
)
538 CERT_PKEY
*cpk
= c
->key
;
542 sk_X509_pop_free(cpk
->chain
, X509_free
);
547 int ssl_cert_set1_chain(CERT
*c
, STACK_OF(X509
) *chain
)
549 STACK_OF(X509
) *dchain
;
551 return ssl_cert_set0_chain(c
, NULL
);
552 dchain
= X509_chain_up_ref(chain
);
555 if (!ssl_cert_set0_chain(c
, dchain
)) {
556 sk_X509_pop_free(dchain
, X509_free
);
562 int ssl_cert_add0_chain_cert(CERT
*c
, X509
*x
)
564 CERT_PKEY
*cpk
= c
->key
;
568 cpk
->chain
= sk_X509_new_null();
569 if (!cpk
->chain
|| !sk_X509_push(cpk
->chain
, x
))
574 int ssl_cert_add1_chain_cert(CERT
*c
, X509
*x
)
576 if (!ssl_cert_add0_chain_cert(c
, x
))
578 CRYPTO_add(&x
->references
, 1, CRYPTO_LOCK_X509
);
582 int ssl_cert_select_current(CERT
*c
, X509
*x
)
587 for (i
= 0; i
< SSL_PKEY_NUM
; i
++) {
588 CERT_PKEY
*cpk
= c
->pkeys
+ i
;
589 if (cpk
->x509
== x
&& cpk
->privatekey
) {
595 for (i
= 0; i
< SSL_PKEY_NUM
; i
++) {
596 CERT_PKEY
*cpk
= c
->pkeys
+ i
;
597 if (cpk
->privatekey
&& cpk
->x509
&& !X509_cmp(cpk
->x509
, x
)) {
605 int ssl_cert_set_current(CERT
*c
, long op
)
610 if (op
== SSL_CERT_SET_FIRST
)
612 else if (op
== SSL_CERT_SET_NEXT
) {
613 idx
= (int)(c
->key
- c
->pkeys
+ 1);
614 if (idx
>= SSL_PKEY_NUM
)
618 for (i
= idx
; i
< SSL_PKEY_NUM
; i
++) {
619 CERT_PKEY
*cpk
= c
->pkeys
+ i
;
620 if (cpk
->x509
&& cpk
->privatekey
) {
628 void ssl_cert_set_cert_cb(CERT
*c
, int (*cb
) (SSL
*ssl
, void *arg
), void *arg
)
631 c
->cert_cb_arg
= arg
;
634 SESS_CERT
*ssl_sess_cert_new(void)
638 ret
= OPENSSL_malloc(sizeof *ret
);
640 SSLerr(SSL_F_SSL_SESS_CERT_NEW
, ERR_R_MALLOC_FAILURE
);
644 memset(ret
, 0, sizeof *ret
);
645 ret
->peer_key
= &(ret
->peer_pkeys
[SSL_PKEY_RSA_ENC
]);
651 void ssl_sess_cert_free(SESS_CERT
*sc
)
658 i
= CRYPTO_add(&sc
->references
, -1, CRYPTO_LOCK_SSL_SESS_CERT
);
660 REF_PRINT("SESS_CERT", sc
);
666 fprintf(stderr
, "ssl_sess_cert_free, bad reference count\n");
672 if (sc
->cert_chain
!= NULL
)
673 sk_X509_pop_free(sc
->cert_chain
, X509_free
);
674 for (i
= 0; i
< SSL_PKEY_NUM
; i
++) {
675 if (sc
->peer_pkeys
[i
].x509
!= NULL
)
676 X509_free(sc
->peer_pkeys
[i
].x509
);
677 #if 0 /* We don't have the peer's private key.
678 * These lines are just * here as a reminder
679 * that we're still using a
680 * not-quite-appropriate * data structure. */
681 if (sc
->peer_pkeys
[i
].privatekey
!= NULL
)
682 EVP_PKEY_free(sc
->peer_pkeys
[i
].privatekey
);
686 #ifndef OPENSSL_NO_RSA
687 if (sc
->peer_rsa_tmp
!= NULL
)
688 RSA_free(sc
->peer_rsa_tmp
);
690 #ifndef OPENSSL_NO_DH
691 if (sc
->peer_dh_tmp
!= NULL
)
692 DH_free(sc
->peer_dh_tmp
);
694 #ifndef OPENSSL_NO_ECDH
695 if (sc
->peer_ecdh_tmp
!= NULL
)
696 EC_KEY_free(sc
->peer_ecdh_tmp
);
702 int ssl_set_peer_cert_type(SESS_CERT
*sc
, int type
)
704 sc
->peer_cert_type
= type
;
708 int ssl_verify_cert_chain(SSL
*s
, STACK_OF(X509
) *sk
)
712 X509_STORE
*verify_store
;
715 if (s
->cert
->verify_store
)
716 verify_store
= s
->cert
->verify_store
;
718 verify_store
= s
->ctx
->cert_store
;
720 if ((sk
== NULL
) || (sk_X509_num(sk
) == 0))
723 x
= sk_X509_value(sk
, 0);
724 if (!X509_STORE_CTX_init(&ctx
, verify_store
, x
, sk
)) {
725 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN
, ERR_R_X509_LIB
);
728 /* Set suite B flags if needed */
729 X509_STORE_CTX_set_flags(&ctx
, tls1_suiteb(s
));
731 if (SSL_get_verify_depth(s
) >= 0)
732 X509_STORE_CTX_set_depth(&ctx
, SSL_get_verify_depth(s
));
734 X509_STORE_CTX_set_ex_data(&ctx
, SSL_get_ex_data_X509_STORE_CTX_idx(), s
);
737 * We need to inherit the verify parameters. These can be determined by
738 * the context: if its a server it will verify SSL client certificates or
742 X509_STORE_CTX_set_default(&ctx
, s
->server
? "ssl_client" : "ssl_server");
744 * Anything non-default in "param" should overwrite anything in the ctx.
746 X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx
), s
->param
);
748 if (s
->verify_callback
)
749 X509_STORE_CTX_set_verify_cb(&ctx
, s
->verify_callback
);
751 if (s
->ctx
->app_verify_callback
!= NULL
)
752 #if 1 /* new with OpenSSL 0.9.7 */
753 i
= s
->ctx
->app_verify_callback(&ctx
, s
->ctx
->app_verify_arg
);
755 i
= s
->ctx
->app_verify_callback(&ctx
); /* should pass app_verify_arg */
758 #ifndef OPENSSL_NO_X509_VERIFY
759 i
= X509_verify_cert(&ctx
);
762 ctx
.error
= X509_V_ERR_APPLICATION_VERIFICATION
;
763 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN
, SSL_R_NO_VERIFY_CALLBACK
);
767 s
->verify_result
= ctx
.error
;
768 X509_STORE_CTX_cleanup(&ctx
);
773 static void set_client_CA_list(STACK_OF(X509_NAME
) **ca_list
,
774 STACK_OF(X509_NAME
) *name_list
)
776 if (*ca_list
!= NULL
)
777 sk_X509_NAME_pop_free(*ca_list
, X509_NAME_free
);
779 *ca_list
= name_list
;
782 STACK_OF(X509_NAME
) *SSL_dup_CA_list(STACK_OF(X509_NAME
) *sk
)
785 STACK_OF(X509_NAME
) *ret
;
788 ret
= sk_X509_NAME_new_null();
789 for (i
= 0; i
< sk_X509_NAME_num(sk
); i
++) {
790 name
= X509_NAME_dup(sk_X509_NAME_value(sk
, i
));
791 if ((name
== NULL
) || !sk_X509_NAME_push(ret
, name
)) {
792 sk_X509_NAME_pop_free(ret
, X509_NAME_free
);
799 void SSL_set_client_CA_list(SSL
*s
, STACK_OF(X509_NAME
) *name_list
)
801 set_client_CA_list(&(s
->client_CA
), name_list
);
804 void SSL_CTX_set_client_CA_list(SSL_CTX
*ctx
, STACK_OF(X509_NAME
) *name_list
)
806 set_client_CA_list(&(ctx
->client_CA
), name_list
);
809 STACK_OF(X509_NAME
) *SSL_CTX_get_client_CA_list(const SSL_CTX
*ctx
)
811 return (ctx
->client_CA
);
814 STACK_OF(X509_NAME
) *SSL_get_client_CA_list(const SSL
*s
)
816 if (s
->type
== SSL_ST_CONNECT
) { /* we are in the client */
817 if (((s
->version
>> 8) == SSL3_VERSION_MAJOR
) && (s
->s3
!= NULL
))
818 return (s
->s3
->tmp
.ca_names
);
822 if (s
->client_CA
!= NULL
)
823 return (s
->client_CA
);
825 return (s
->ctx
->client_CA
);
829 static int add_client_CA(STACK_OF(X509_NAME
) **sk
, X509
*x
)
835 if ((*sk
== NULL
) && ((*sk
= sk_X509_NAME_new_null()) == NULL
))
838 if ((name
= X509_NAME_dup(X509_get_subject_name(x
))) == NULL
)
841 if (!sk_X509_NAME_push(*sk
, name
)) {
842 X509_NAME_free(name
);
848 int SSL_add_client_CA(SSL
*ssl
, X509
*x
)
850 return (add_client_CA(&(ssl
->client_CA
), x
));
853 int SSL_CTX_add_client_CA(SSL_CTX
*ctx
, X509
*x
)
855 return (add_client_CA(&(ctx
->client_CA
), x
));
858 static int xname_cmp(const X509_NAME
*const *a
, const X509_NAME
*const *b
)
860 return (X509_NAME_cmp(*a
, *b
));
863 #ifndef OPENSSL_NO_STDIO
865 * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
866 * it doesn't really have anything to do with clients (except that a common use
867 * for a stack of CAs is to send it to the client). Actually, it doesn't have
868 * much to do with CAs, either, since it will load any old cert.
869 * \param file the file containing one or more certs.
870 * \return a ::STACK containing the certs.
872 STACK_OF(X509_NAME
) *SSL_load_client_CA_file(const char *file
)
876 X509_NAME
*xn
= NULL
;
877 STACK_OF(X509_NAME
) *ret
= NULL
, *sk
;
879 sk
= sk_X509_NAME_new(xname_cmp
);
881 in
= BIO_new(BIO_s_file_internal());
883 if ((sk
== NULL
) || (in
== NULL
)) {
884 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE
, ERR_R_MALLOC_FAILURE
);
888 if (!BIO_read_filename(in
, file
))
892 if (PEM_read_bio_X509(in
, &x
, NULL
, NULL
) == NULL
)
895 ret
= sk_X509_NAME_new_null();
897 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE
, ERR_R_MALLOC_FAILURE
);
901 if ((xn
= X509_get_subject_name(x
)) == NULL
)
903 /* check for duplicates */
904 xn
= X509_NAME_dup(xn
);
907 if (sk_X509_NAME_find(sk
, xn
) >= 0)
910 sk_X509_NAME_push(sk
, xn
);
911 sk_X509_NAME_push(ret
, xn
);
918 sk_X509_NAME_pop_free(ret
, X509_NAME_free
);
922 sk_X509_NAME_free(sk
);
934 * Add a file of certs to a stack.
935 * \param stack the stack to add to.
936 * \param file the file to add from. All certs in this file that are not
937 * already in the stack will be added.
938 * \return 1 for success, 0 for failure. Note that in the case of failure some
939 * certs may have been added to \c stack.
942 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME
) *stack
,
947 X509_NAME
*xn
= NULL
;
949 int (*oldcmp
) (const X509_NAME
*const *a
, const X509_NAME
*const *b
);
951 oldcmp
= sk_X509_NAME_set_cmp_func(stack
, xname_cmp
);
953 in
= BIO_new(BIO_s_file_internal());
956 SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK
,
957 ERR_R_MALLOC_FAILURE
);
961 if (!BIO_read_filename(in
, file
))
965 if (PEM_read_bio_X509(in
, &x
, NULL
, NULL
) == NULL
)
967 if ((xn
= X509_get_subject_name(x
)) == NULL
)
969 xn
= X509_NAME_dup(xn
);
972 if (sk_X509_NAME_find(stack
, xn
) >= 0)
975 sk_X509_NAME_push(stack
, xn
);
989 (void)sk_X509_NAME_set_cmp_func(stack
, oldcmp
);
995 * Add a directory of certs to a stack.
996 * \param stack the stack to append to.
997 * \param dir the directory to append from. All files in this directory will be
998 * examined as potential certs. Any that are acceptable to
999 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
1001 * \return 1 for success, 0 for failure. Note that in the case of failure some
1002 * certs may have been added to \c stack.
1005 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME
) *stack
,
1008 OPENSSL_DIR_CTX
*d
= NULL
;
1009 const char *filename
;
1012 CRYPTO_w_lock(CRYPTO_LOCK_READDIR
);
1014 /* Note that a side effect is that the CAs will be sorted by name */
1016 while ((filename
= OPENSSL_DIR_read(&d
, dir
))) {
1020 if (strlen(dir
) + strlen(filename
) + 2 > sizeof buf
) {
1021 SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK
,
1022 SSL_R_PATH_TOO_LONG
);
1025 #ifdef OPENSSL_SYS_VMS
1026 r
= BIO_snprintf(buf
, sizeof buf
, "%s%s", dir
, filename
);
1028 r
= BIO_snprintf(buf
, sizeof buf
, "%s/%s", dir
, filename
);
1030 if (r
<= 0 || r
>= (int)sizeof(buf
))
1032 if (!SSL_add_file_cert_subjects_to_stack(stack
, buf
))
1037 SYSerr(SYS_F_OPENDIR
, get_last_sys_error());
1038 ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir
, "')");
1039 SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK
, ERR_R_SYS_LIB
);
1047 OPENSSL_DIR_end(&d
);
1048 CRYPTO_w_unlock(CRYPTO_LOCK_READDIR
);
1052 /* Add a certificate to a BUF_MEM structure */
1054 static int ssl_add_cert_to_buf(BUF_MEM
*buf
, unsigned long *l
, X509
*x
)
1059 n
= i2d_X509(x
, NULL
);
1060 if (!BUF_MEM_grow_clean(buf
, (int)(n
+ (*l
) + 3))) {
1061 SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF
, ERR_R_BUF_LIB
);
1064 p
= (unsigned char *)&(buf
->data
[*l
]);
1072 /* Add certificate chain to internal SSL BUF_MEM strcuture */
1073 int ssl_add_cert_chain(SSL
*s
, CERT_PKEY
*cpk
, unsigned long *l
)
1075 BUF_MEM
*buf
= s
->init_buf
;
1080 STACK_OF(X509
) *extra_certs
;
1081 X509_STORE
*chain_store
;
1088 if (s
->cert
->chain_store
)
1089 chain_store
= s
->cert
->chain_store
;
1091 chain_store
= s
->ctx
->cert_store
;
1094 * If we have a certificate specific chain use it, else use parent ctx.
1096 if (cpk
&& cpk
->chain
)
1097 extra_certs
= cpk
->chain
;
1099 extra_certs
= s
->ctx
->extra_certs
;
1101 if ((s
->mode
& SSL_MODE_NO_AUTO_CHAIN
) || extra_certs
)
1106 /* TLSv1 sends a chain with nothing in it, instead of an alert */
1107 if (!BUF_MEM_grow_clean(buf
, 10)) {
1108 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN
, ERR_R_BUF_LIB
);
1113 if (!ssl_add_cert_to_buf(buf
, l
, x
))
1116 X509_STORE_CTX xs_ctx
;
1118 if (!X509_STORE_CTX_init(&xs_ctx
, chain_store
, x
, NULL
)) {
1119 SSLerr(SSL_F_SSL_ADD_CERT_CHAIN
, ERR_R_X509_LIB
);
1122 X509_verify_cert(&xs_ctx
);
1123 /* Don't leave errors in the queue */
1125 for (i
= 0; i
< sk_X509_num(xs_ctx
.chain
); i
++) {
1126 x
= sk_X509_value(xs_ctx
.chain
, i
);
1128 if (!ssl_add_cert_to_buf(buf
, l
, x
)) {
1129 X509_STORE_CTX_cleanup(&xs_ctx
);
1133 X509_STORE_CTX_cleanup(&xs_ctx
);
1136 for (i
= 0; i
< sk_X509_num(extra_certs
); i
++) {
1137 x
= sk_X509_value(extra_certs
, i
);
1138 if (!ssl_add_cert_to_buf(buf
, l
, x
))
1145 /* Build a certificate chain for current certificate */
1146 int ssl_build_cert_chain(CERT
*c
, X509_STORE
*chain_store
, int flags
)
1148 CERT_PKEY
*cpk
= c
->key
;
1149 X509_STORE_CTX xs_ctx
;
1150 STACK_OF(X509
) *chain
= NULL
, *untrusted
= NULL
;
1153 unsigned long error
;
1156 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN
, SSL_R_NO_CERTIFICATE_SET
);
1159 /* Rearranging and check the chain: add everything to a store */
1160 if (flags
& SSL_BUILD_CHAIN_FLAG_CHECK
) {
1161 chain_store
= X509_STORE_new();
1164 for (i
= 0; i
< sk_X509_num(cpk
->chain
); i
++) {
1165 x
= sk_X509_value(cpk
->chain
, i
);
1166 if (!X509_STORE_add_cert(chain_store
, x
)) {
1167 error
= ERR_peek_last_error();
1168 if (ERR_GET_LIB(error
) != ERR_LIB_X509
||
1169 ERR_GET_REASON(error
) !=
1170 X509_R_CERT_ALREADY_IN_HASH_TABLE
)
1175 /* Add EE cert too: it might be self signed */
1176 if (!X509_STORE_add_cert(chain_store
, cpk
->x509
)) {
1177 error
= ERR_peek_last_error();
1178 if (ERR_GET_LIB(error
) != ERR_LIB_X509
||
1179 ERR_GET_REASON(error
) != X509_R_CERT_ALREADY_IN_HASH_TABLE
)
1185 chain_store
= c
->chain_store
;
1187 if (flags
& SSL_BUILD_CHAIN_FLAG_UNTRUSTED
)
1188 untrusted
= cpk
->chain
;
1191 if (!X509_STORE_CTX_init(&xs_ctx
, chain_store
, cpk
->x509
, untrusted
)) {
1192 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN
, ERR_R_X509_LIB
);
1195 /* Set suite B flags if needed */
1196 X509_STORE_CTX_set_flags(&xs_ctx
,
1197 c
->cert_flags
& SSL_CERT_FLAG_SUITEB_128_LOS
);
1199 i
= X509_verify_cert(&xs_ctx
);
1200 if (i
<= 0 && flags
& SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR
) {
1201 if (flags
& SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR
)
1207 chain
= X509_STORE_CTX_get1_chain(&xs_ctx
);
1209 SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN
, SSL_R_CERTIFICATE_VERIFY_FAILED
);
1210 i
= X509_STORE_CTX_get_error(&xs_ctx
);
1211 ERR_add_error_data(2, "Verify error:",
1212 X509_verify_cert_error_string(i
));
1214 X509_STORE_CTX_cleanup(&xs_ctx
);
1217 X509_STORE_CTX_cleanup(&xs_ctx
);
1219 sk_X509_pop_free(cpk
->chain
, X509_free
);
1220 /* Remove EE certificate from chain */
1221 x
= sk_X509_shift(chain
);
1223 if (flags
& SSL_BUILD_CHAIN_FLAG_NO_ROOT
) {
1224 if (sk_X509_num(chain
) > 0) {
1225 /* See if last cert is self signed */
1226 x
= sk_X509_value(chain
, sk_X509_num(chain
) - 1);
1227 X509_check_purpose(x
, -1, 0);
1228 if (x
->ex_flags
& EXFLAG_SS
) {
1229 x
= sk_X509_pop(chain
);
1238 if (flags
& SSL_BUILD_CHAIN_FLAG_CHECK
)
1239 X509_STORE_free(chain_store
);
1244 int ssl_cert_set_cert_store(CERT
*c
, X509_STORE
*store
, int chain
, int ref
)
1246 X509_STORE
**pstore
;
1248 pstore
= &c
->chain_store
;
1250 pstore
= &c
->verify_store
;
1252 X509_STORE_free(*pstore
);
1255 CRYPTO_add(&store
->references
, 1, CRYPTO_LOCK_X509_STORE
);