Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * ! \file ssl/ssl_cert.c |
| 3 | */ |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 4 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 5 | * All rights reserved. |
| 6 | * |
| 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. |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 10 | * |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 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). |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 17 | * |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 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. |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 24 | * |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 25 | * Redistribution and use in source and binary forms, with or without |
| 26 | * modification, are permitted provided that the following conditions |
| 27 | * are met: |
| 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 :-). |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 39 | * 4. If you include any Windows specific code (or a derivative thereof) from |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 40 | * the apps directory (application code) you must include an acknowledgement: |
| 41 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 42 | * |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 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 |
| 53 | * SUCH DAMAGE. |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 54 | * |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 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.] |
| 59 | */ |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 60 | /* ==================================================================== |
Bodo Möller | 52b8dad | 2007-02-17 06:45:38 +0000 | [diff] [blame] | 61 | * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 62 | * |
| 63 | * Redistribution and use in source and binary forms, with or without |
| 64 | * modification, are permitted provided that the following conditions |
| 65 | * are met: |
| 66 | * |
| 67 | * 1. Redistributions of source code must retain the above copyright |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 68 | * notice, this list of conditions and the following disclaimer. |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 69 | * |
| 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 |
| 73 | * distribution. |
| 74 | * |
| 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 |
Bodo Möller | 675f605 | 2006-06-14 08:55:23 +0000 | [diff] [blame] | 78 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 79 | * |
| 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 |
Bodo Möller | 675f605 | 2006-06-14 08:55:23 +0000 | [diff] [blame] | 83 | * openssl-core@openssl.org. |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 84 | * |
| 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. |
| 88 | * |
| 89 | * 6. Redistributions of any form whatsoever must retain the following |
| 90 | * acknowledgment: |
| 91 | * "This product includes software developed by the OpenSSL Project |
Bodo Möller | 675f605 | 2006-06-14 08:55:23 +0000 | [diff] [blame] | 92 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 93 | * |
| 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 | * ==================================================================== |
Bodo Möller | 675f605 | 2006-06-14 08:55:23 +0000 | [diff] [blame] | 107 | * |
| 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). |
| 111 | * |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 112 | */ |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 113 | /* ==================================================================== |
| 114 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 115 | * ECC cipher suite support in OpenSSL originally developed by |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 116 | * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. |
| 117 | */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 118 | |
| 119 | #include <stdio.h> |
Andy Polyakov | 17f389b | 1999-09-11 17:54:18 +0000 | [diff] [blame] | 120 | |
Richard Levitte | 41d2a33 | 2001-02-22 14:45:02 +0000 | [diff] [blame] | 121 | #include "e_os.h" |
Andy Polyakov | 17f389b | 1999-09-11 17:54:18 +0000 | [diff] [blame] | 122 | #ifndef NO_SYS_TYPES_H |
| 123 | # include <sys/types.h> |
| 124 | #endif |
| 125 | |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 126 | #include "o_dir.h" |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 127 | #include <openssl/objects.h> |
| 128 | #include <openssl/bio.h> |
| 129 | #include <openssl/pem.h> |
Dr. Stephen Henson | bb7cd4e | 1999-11-29 22:35:00 +0000 | [diff] [blame] | 130 | #include <openssl/x509v3.h> |
Nils Larsch | 3eeaab4 | 2005-07-16 12:37:36 +0000 | [diff] [blame] | 131 | #ifndef OPENSSL_NO_DH |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 132 | # include <openssl/dh.h> |
Nils Larsch | 3eeaab4 | 2005-07-16 12:37:36 +0000 | [diff] [blame] | 133 | #endif |
Geoff Thorpe | d095b68 | 2004-05-17 18:53:47 +0000 | [diff] [blame] | 134 | #include <openssl/bn.h> |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 135 | #include "ssl_locl.h" |
| 136 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 137 | static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op, |
| 138 | int bits, int nid, void *other, |
| 139 | void *ex); |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 140 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 141 | int SSL_get_ex_data_X509_STORE_CTX_idx(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 142 | { |
| 143 | static volatile int ssl_x509_store_ctx_idx = -1; |
| 144 | int got_write_lock = 0; |
Bodo Möller | 675f605 | 2006-06-14 08:55:23 +0000 | [diff] [blame] | 145 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 146 | CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX); |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 147 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 148 | if (ssl_x509_store_ctx_idx < 0) { |
| 149 | CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX); |
| 150 | CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX); |
| 151 | got_write_lock = 1; |
Bodo Möller | 675f605 | 2006-06-14 08:55:23 +0000 | [diff] [blame] | 152 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 153 | if (ssl_x509_store_ctx_idx < 0) { |
| 154 | ssl_x509_store_ctx_idx = |
| 155 | X509_STORE_CTX_get_ex_new_index(0, "SSL for verify callback", |
| 156 | NULL, NULL, NULL); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | if (got_write_lock) |
| 161 | CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX); |
| 162 | else |
| 163 | CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX); |
| 164 | |
| 165 | return ssl_x509_store_ctx_idx; |
| 166 | } |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 167 | |
Dr. Stephen Henson | 4453cd8 | 2012-06-25 14:32:30 +0000 | [diff] [blame] | 168 | void ssl_cert_set_default_md(CERT *cert) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 169 | { |
| 170 | /* Set digest values to defaults */ |
Dr. Stephen Henson | 6b7be58 | 2011-05-06 13:00:07 +0000 | [diff] [blame] | 171 | #ifndef OPENSSL_NO_DSA |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 172 | cert->pkeys[SSL_PKEY_DSA_SIGN].digest = EVP_sha1(); |
Dr. Stephen Henson | 6b7be58 | 2011-05-06 13:00:07 +0000 | [diff] [blame] | 173 | #endif |
| 174 | #ifndef OPENSSL_NO_RSA |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 175 | cert->pkeys[SSL_PKEY_RSA_SIGN].digest = EVP_sha1(); |
| 176 | cert->pkeys[SSL_PKEY_RSA_ENC].digest = EVP_sha1(); |
Dr. Stephen Henson | 6b7be58 | 2011-05-06 13:00:07 +0000 | [diff] [blame] | 177 | #endif |
Rich Salz | 10bf4fc | 2015-03-10 19:09:27 -0400 | [diff] [blame] | 178 | #ifndef OPENSSL_NO_EC |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 179 | cert->pkeys[SSL_PKEY_ECC].digest = EVP_sha1(); |
Dr. Stephen Henson | 6b7be58 | 2011-05-06 13:00:07 +0000 | [diff] [blame] | 180 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 181 | } |
Dr. Stephen Henson | 6b7be58 | 2011-05-06 13:00:07 +0000 | [diff] [blame] | 182 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 183 | CERT *ssl_cert_new(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 184 | { |
| 185 | CERT *ret; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 186 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 187 | ret = (CERT *)OPENSSL_malloc(sizeof(CERT)); |
| 188 | if (ret == NULL) { |
| 189 | SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE); |
| 190 | return (NULL); |
| 191 | } |
| 192 | memset(ret, 0, sizeof(CERT)); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 193 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 194 | ret->key = &(ret->pkeys[SSL_PKEY_RSA_ENC]); |
| 195 | ret->references = 1; |
| 196 | ssl_cert_set_default_md(ret); |
| 197 | ret->sec_cb = ssl_security_default_callback; |
| 198 | ret->sec_level = OPENSSL_TLS_SECURITY_LEVEL; |
| 199 | ret->sec_ex = NULL; |
| 200 | return (ret); |
| 201 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 202 | |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 203 | CERT *ssl_cert_dup(CERT *cert) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 204 | { |
| 205 | CERT *ret; |
| 206 | int i; |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 207 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 208 | ret = (CERT *)OPENSSL_malloc(sizeof(CERT)); |
| 209 | if (ret == NULL) { |
| 210 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); |
| 211 | return (NULL); |
| 212 | } |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 213 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 214 | memset(ret, 0, sizeof(CERT)); |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 215 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 216 | ret->key = &ret->pkeys[cert->key - &cert->pkeys[0]]; |
| 217 | /* |
| 218 | * or ret->key = ret->pkeys + (cert->key - cert->pkeys), if you find that |
| 219 | * more readable |
| 220 | */ |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 221 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 222 | ret->valid = cert->valid; |
| 223 | ret->mask_k = cert->mask_k; |
| 224 | ret->mask_a = cert->mask_a; |
| 225 | ret->export_mask_k = cert->export_mask_k; |
| 226 | ret->export_mask_a = cert->export_mask_a; |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 227 | |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 228 | #ifndef OPENSSL_NO_RSA |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 229 | if (cert->rsa_tmp != NULL) { |
| 230 | RSA_up_ref(cert->rsa_tmp); |
| 231 | ret->rsa_tmp = cert->rsa_tmp; |
| 232 | } |
| 233 | ret->rsa_tmp_cb = cert->rsa_tmp_cb; |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 234 | #endif |
| 235 | |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 236 | #ifndef OPENSSL_NO_DH |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 237 | if (cert->dh_tmp != NULL) { |
| 238 | ret->dh_tmp = DHparams_dup(cert->dh_tmp); |
| 239 | if (ret->dh_tmp == NULL) { |
| 240 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_DH_LIB); |
| 241 | goto err; |
| 242 | } |
| 243 | if (cert->dh_tmp->priv_key) { |
| 244 | BIGNUM *b = BN_dup(cert->dh_tmp->priv_key); |
| 245 | if (!b) { |
| 246 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_BN_LIB); |
| 247 | goto err; |
| 248 | } |
| 249 | ret->dh_tmp->priv_key = b; |
| 250 | } |
| 251 | if (cert->dh_tmp->pub_key) { |
| 252 | BIGNUM *b = BN_dup(cert->dh_tmp->pub_key); |
| 253 | if (!b) { |
| 254 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_BN_LIB); |
| 255 | goto err; |
| 256 | } |
| 257 | ret->dh_tmp->pub_key = b; |
| 258 | } |
| 259 | } |
| 260 | ret->dh_tmp_cb = cert->dh_tmp_cb; |
| 261 | ret->dh_tmp_auto = cert->dh_tmp_auto; |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 262 | #endif |
| 263 | |
Rich Salz | 10bf4fc | 2015-03-10 19:09:27 -0400 | [diff] [blame] | 264 | #ifndef OPENSSL_NO_EC |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 265 | if (cert->ecdh_tmp) { |
| 266 | ret->ecdh_tmp = EC_KEY_dup(cert->ecdh_tmp); |
| 267 | if (ret->ecdh_tmp == NULL) { |
| 268 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_EC_LIB); |
| 269 | goto err; |
| 270 | } |
| 271 | } |
| 272 | ret->ecdh_tmp_cb = cert->ecdh_tmp_cb; |
| 273 | ret->ecdh_tmp_auto = cert->ecdh_tmp_auto; |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 274 | #endif |
| 275 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 276 | for (i = 0; i < SSL_PKEY_NUM; i++) { |
| 277 | CERT_PKEY *cpk = cert->pkeys + i; |
| 278 | CERT_PKEY *rpk = ret->pkeys + i; |
| 279 | if (cpk->x509 != NULL) { |
| 280 | rpk->x509 = cpk->x509; |
| 281 | CRYPTO_add(&rpk->x509->references, 1, CRYPTO_LOCK_X509); |
| 282 | } |
Dr. Stephen Henson | f71c6e5 | 2012-01-31 14:00:10 +0000 | [diff] [blame] | 283 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 284 | if (cpk->privatekey != NULL) { |
| 285 | rpk->privatekey = cpk->privatekey; |
| 286 | CRYPTO_add(&cpk->privatekey->references, 1, CRYPTO_LOCK_EVP_PKEY); |
| 287 | } |
| 288 | |
| 289 | if (cpk->chain) { |
| 290 | rpk->chain = X509_chain_up_ref(cpk->chain); |
| 291 | if (!rpk->chain) { |
| 292 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); |
| 293 | goto err; |
| 294 | } |
| 295 | } |
| 296 | rpk->valid_flags = 0; |
Trevor | a398f82 | 2013-05-12 18:55:27 -0700 | [diff] [blame] | 297 | #ifndef OPENSSL_NO_TLSEXT |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 298 | if (cert->pkeys[i].serverinfo != NULL) { |
| 299 | /* Just copy everything. */ |
| 300 | ret->pkeys[i].serverinfo = |
| 301 | OPENSSL_malloc(cert->pkeys[i].serverinfo_length); |
| 302 | if (ret->pkeys[i].serverinfo == NULL) { |
| 303 | SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); |
| 304 | goto err; |
| 305 | } |
| 306 | ret->pkeys[i].serverinfo_length = |
| 307 | cert->pkeys[i].serverinfo_length; |
| 308 | memcpy(ret->pkeys[i].serverinfo, |
| 309 | cert->pkeys[i].serverinfo, |
| 310 | cert->pkeys[i].serverinfo_length); |
| 311 | } |
Trevor | a398f82 | 2013-05-12 18:55:27 -0700 | [diff] [blame] | 312 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 313 | } |
Dr. Stephen Henson | 3dbc46d | 2012-07-03 12:51:14 +0000 | [diff] [blame] | 314 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 315 | ret->references = 1; |
| 316 | /* |
| 317 | * Set digests to defaults. NB: we don't copy existing values as they |
| 318 | * will be set during handshake. |
| 319 | */ |
| 320 | ssl_cert_set_default_md(ret); |
| 321 | /* Peer sigalgs set to NULL as we get these from handshake too */ |
| 322 | ret->peer_sigalgs = NULL; |
| 323 | ret->peer_sigalgslen = 0; |
| 324 | /* Configured sigalgs however we copy across */ |
Dr. Stephen Henson | 3dbc46d | 2012-07-03 12:51:14 +0000 | [diff] [blame] | 325 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 326 | if (cert->conf_sigalgs) { |
| 327 | ret->conf_sigalgs = OPENSSL_malloc(cert->conf_sigalgslen); |
| 328 | if (!ret->conf_sigalgs) |
| 329 | goto err; |
| 330 | memcpy(ret->conf_sigalgs, cert->conf_sigalgs, cert->conf_sigalgslen); |
| 331 | ret->conf_sigalgslen = cert->conf_sigalgslen; |
| 332 | } else |
| 333 | ret->conf_sigalgs = NULL; |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 334 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 335 | if (cert->client_sigalgs) { |
| 336 | ret->client_sigalgs = OPENSSL_malloc(cert->client_sigalgslen); |
| 337 | if (!ret->client_sigalgs) |
| 338 | goto err; |
| 339 | memcpy(ret->client_sigalgs, cert->client_sigalgs, |
| 340 | cert->client_sigalgslen); |
| 341 | ret->client_sigalgslen = cert->client_sigalgslen; |
| 342 | } else |
| 343 | ret->client_sigalgs = NULL; |
| 344 | /* Shared sigalgs also NULL */ |
| 345 | ret->shared_sigalgs = NULL; |
| 346 | /* Copy any custom client certificate types */ |
| 347 | if (cert->ctypes) { |
| 348 | ret->ctypes = OPENSSL_malloc(cert->ctype_num); |
| 349 | if (!ret->ctypes) |
| 350 | goto err; |
| 351 | memcpy(ret->ctypes, cert->ctypes, cert->ctype_num); |
| 352 | ret->ctype_num = cert->ctype_num; |
| 353 | } |
Dr. Stephen Henson | d61ff83 | 2012-06-28 12:45:49 +0000 | [diff] [blame] | 354 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 355 | ret->cert_flags = cert->cert_flags; |
Dr. Stephen Henson | 18d7158 | 2012-06-29 14:24:42 +0000 | [diff] [blame] | 356 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 357 | ret->cert_cb = cert->cert_cb; |
| 358 | ret->cert_cb_arg = cert->cert_cb_arg; |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 359 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 360 | if (cert->verify_store) { |
| 361 | CRYPTO_add(&cert->verify_store->references, 1, |
| 362 | CRYPTO_LOCK_X509_STORE); |
| 363 | ret->verify_store = cert->verify_store; |
| 364 | } |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 365 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 366 | if (cert->chain_store) { |
| 367 | CRYPTO_add(&cert->chain_store->references, 1, CRYPTO_LOCK_X509_STORE); |
| 368 | ret->chain_store = cert->chain_store; |
| 369 | } |
Dr. Stephen Henson | 94a209d | 2012-09-12 13:57:48 +0000 | [diff] [blame] | 370 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 371 | ret->ciphers_raw = NULL; |
| 372 | |
| 373 | ret->sec_cb = cert->sec_cb; |
| 374 | ret->sec_level = cert->sec_level; |
| 375 | ret->sec_ex = cert->sec_ex; |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 376 | |
Dr. Stephen Henson | b83294f | 2014-08-05 15:21:36 +0100 | [diff] [blame] | 377 | #ifndef OPENSSL_NO_TLSEXT |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 378 | if (!custom_exts_copy(&ret->cli_ext, &cert->cli_ext)) |
| 379 | goto err; |
| 380 | if (!custom_exts_copy(&ret->srv_ext, &cert->srv_ext)) |
| 381 | goto err; |
Dr. Stephen Henson | b83294f | 2014-08-05 15:21:36 +0100 | [diff] [blame] | 382 | #endif |
| 383 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 384 | return (ret); |
Dr. Stephen Henson | 9ade64d | 2012-01-27 14:21:38 +0000 | [diff] [blame] | 385 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 386 | err: |
| 387 | ssl_cert_free(ret); |
| 388 | |
| 389 | return NULL; |
| 390 | } |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 391 | |
Dr. Stephen Henson | a5ee80b | 2012-06-18 12:56:59 +0000 | [diff] [blame] | 392 | /* Free up and clear all certificates and chains */ |
| 393 | |
| 394 | void ssl_cert_clear_certs(CERT *c) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 395 | { |
| 396 | int i; |
| 397 | if (c == NULL) |
| 398 | return; |
| 399 | for (i = 0; i < SSL_PKEY_NUM; i++) { |
| 400 | CERT_PKEY *cpk = c->pkeys + i; |
| 401 | if (cpk->x509) { |
| 402 | X509_free(cpk->x509); |
| 403 | cpk->x509 = NULL; |
| 404 | } |
| 405 | if (cpk->privatekey) { |
| 406 | EVP_PKEY_free(cpk->privatekey); |
| 407 | cpk->privatekey = NULL; |
| 408 | } |
| 409 | if (cpk->chain) { |
| 410 | sk_X509_pop_free(cpk->chain, X509_free); |
| 411 | cpk->chain = NULL; |
| 412 | } |
Dr. Stephen Henson | a5ee80b | 2012-06-18 12:56:59 +0000 | [diff] [blame] | 413 | #ifndef OPENSSL_NO_TLSEXT |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 414 | if (cpk->serverinfo) { |
| 415 | OPENSSL_free(cpk->serverinfo); |
| 416 | cpk->serverinfo = NULL; |
| 417 | cpk->serverinfo_length = 0; |
| 418 | } |
Dr. Stephen Henson | a5ee80b | 2012-06-18 12:56:59 +0000 | [diff] [blame] | 419 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 420 | /* Clear all flags apart from explicit sign */ |
| 421 | cpk->valid_flags &= CERT_PKEY_EXPLICIT_SIGN; |
| 422 | } |
| 423 | } |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 424 | |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 425 | void ssl_cert_free(CERT *c) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 426 | { |
| 427 | int i; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 428 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 429 | if (c == NULL) |
| 430 | return; |
Ben Laurie | e03ddfa | 1999-01-07 19:15:59 +0000 | [diff] [blame] | 431 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 432 | i = CRYPTO_add(&c->references, -1, CRYPTO_LOCK_SSL_CERT); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 433 | #ifdef REF_PRINT |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 434 | REF_PRINT("CERT", c); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 435 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 436 | if (i > 0) |
| 437 | return; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 438 | #ifdef REF_CHECK |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 439 | if (i < 0) { |
| 440 | fprintf(stderr, "ssl_cert_free, bad reference count\n"); |
| 441 | abort(); /* ok */ |
| 442 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 443 | #endif |
| 444 | |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 445 | #ifndef OPENSSL_NO_RSA |
Rich Salz | d640708 | 2015-03-24 10:17:37 -0400 | [diff] [blame] | 446 | RSA_free(c->rsa_tmp); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 447 | #endif |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 448 | #ifndef OPENSSL_NO_DH |
Rich Salz | d640708 | 2015-03-24 10:17:37 -0400 | [diff] [blame] | 449 | DH_free(c->dh_tmp); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 450 | #endif |
Rich Salz | 10bf4fc | 2015-03-10 19:09:27 -0400 | [diff] [blame] | 451 | #ifndef OPENSSL_NO_EC |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 452 | if (c->ecdh_tmp) |
| 453 | EC_KEY_free(c->ecdh_tmp); |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 454 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 455 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 456 | ssl_cert_clear_certs(c); |
| 457 | if (c->peer_sigalgs) |
| 458 | OPENSSL_free(c->peer_sigalgs); |
| 459 | if (c->conf_sigalgs) |
| 460 | OPENSSL_free(c->conf_sigalgs); |
| 461 | if (c->client_sigalgs) |
| 462 | OPENSSL_free(c->client_sigalgs); |
| 463 | if (c->shared_sigalgs) |
| 464 | OPENSSL_free(c->shared_sigalgs); |
| 465 | if (c->ctypes) |
| 466 | OPENSSL_free(c->ctypes); |
| 467 | if (c->verify_store) |
| 468 | X509_STORE_free(c->verify_store); |
| 469 | if (c->chain_store) |
| 470 | X509_STORE_free(c->chain_store); |
| 471 | if (c->ciphers_raw) |
| 472 | OPENSSL_free(c->ciphers_raw); |
Dr. Stephen Henson | b83294f | 2014-08-05 15:21:36 +0100 | [diff] [blame] | 473 | #ifndef OPENSSL_NO_TLSEXT |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 474 | custom_exts_free(&c->cli_ext); |
| 475 | custom_exts_free(&c->srv_ext); |
Dr. Stephen Henson | b83294f | 2014-08-05 15:21:36 +0100 | [diff] [blame] | 476 | #endif |
Dr. Stephen Henson | c660ec6 | 2015-01-23 02:41:09 +0000 | [diff] [blame] | 477 | if (c->pms) { |
| 478 | OPENSSL_cleanse(c->pms, c->pmslen); |
| 479 | OPENSSL_free(c->pms); |
| 480 | c->pms = NULL; |
| 481 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 482 | OPENSSL_free(c); |
| 483 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 484 | |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 485 | int ssl_cert_set0_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 486 | { |
| 487 | int i, r; |
| 488 | CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key; |
| 489 | if (!cpk) |
| 490 | return 0; |
| 491 | if (cpk->chain) |
| 492 | sk_X509_pop_free(cpk->chain, X509_free); |
| 493 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 494 | r = ssl_security_cert(s, ctx, sk_X509_value(chain, i), 0, 0); |
| 495 | if (r != 1) { |
| 496 | SSLerr(SSL_F_SSL_CERT_SET0_CHAIN, r); |
| 497 | return 0; |
| 498 | } |
| 499 | } |
| 500 | cpk->chain = chain; |
| 501 | return 1; |
| 502 | } |
Dr. Stephen Henson | f71c6e5 | 2012-01-31 14:00:10 +0000 | [diff] [blame] | 503 | |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 504 | int ssl_cert_set1_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 505 | { |
| 506 | STACK_OF(X509) *dchain; |
| 507 | if (!chain) |
| 508 | return ssl_cert_set0_chain(s, ctx, NULL); |
| 509 | dchain = X509_chain_up_ref(chain); |
| 510 | if (!dchain) |
| 511 | return 0; |
| 512 | if (!ssl_cert_set0_chain(s, ctx, dchain)) { |
| 513 | sk_X509_pop_free(dchain, X509_free); |
| 514 | return 0; |
| 515 | } |
| 516 | return 1; |
| 517 | } |
Dr. Stephen Henson | f71c6e5 | 2012-01-31 14:00:10 +0000 | [diff] [blame] | 518 | |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 519 | int ssl_cert_add0_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 520 | { |
| 521 | int r; |
| 522 | CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key; |
| 523 | if (!cpk) |
| 524 | return 0; |
| 525 | r = ssl_security_cert(s, ctx, x, 0, 0); |
| 526 | if (r != 1) { |
| 527 | SSLerr(SSL_F_SSL_CERT_ADD0_CHAIN_CERT, r); |
| 528 | return 0; |
| 529 | } |
| 530 | if (!cpk->chain) |
| 531 | cpk->chain = sk_X509_new_null(); |
| 532 | if (!cpk->chain || !sk_X509_push(cpk->chain, x)) |
| 533 | return 0; |
| 534 | return 1; |
| 535 | } |
Dr. Stephen Henson | f71c6e5 | 2012-01-31 14:00:10 +0000 | [diff] [blame] | 536 | |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 537 | int ssl_cert_add1_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 538 | { |
| 539 | if (!ssl_cert_add0_chain_cert(s, ctx, x)) |
| 540 | return 0; |
| 541 | CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509); |
| 542 | return 1; |
| 543 | } |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 544 | |
Rob Stradling | 7b6b246 | 2013-11-11 18:04:24 +0100 | [diff] [blame] | 545 | int ssl_cert_select_current(CERT *c, X509 *x) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 546 | { |
| 547 | int i; |
| 548 | if (x == NULL) |
| 549 | return 0; |
| 550 | for (i = 0; i < SSL_PKEY_NUM; i++) { |
| 551 | CERT_PKEY *cpk = c->pkeys + i; |
| 552 | if (cpk->x509 == x && cpk->privatekey) { |
| 553 | c->key = cpk; |
| 554 | return 1; |
| 555 | } |
| 556 | } |
Dr. Stephen Henson | 629b640 | 2013-11-13 22:57:11 +0000 | [diff] [blame] | 557 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 558 | for (i = 0; i < SSL_PKEY_NUM; i++) { |
| 559 | CERT_PKEY *cpk = c->pkeys + i; |
| 560 | if (cpk->privatekey && cpk->x509 && !X509_cmp(cpk->x509, x)) { |
| 561 | c->key = cpk; |
| 562 | return 1; |
| 563 | } |
| 564 | } |
| 565 | return 0; |
| 566 | } |
Rob Stradling | 7b6b246 | 2013-11-11 18:04:24 +0100 | [diff] [blame] | 567 | |
Dr. Stephen Henson | 0f78819 | 2014-02-02 02:51:30 +0000 | [diff] [blame] | 568 | int ssl_cert_set_current(CERT *c, long op) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 569 | { |
| 570 | int i, idx; |
| 571 | if (!c) |
| 572 | return 0; |
| 573 | if (op == SSL_CERT_SET_FIRST) |
| 574 | idx = 0; |
| 575 | else if (op == SSL_CERT_SET_NEXT) { |
| 576 | idx = (int)(c->key - c->pkeys + 1); |
| 577 | if (idx >= SSL_PKEY_NUM) |
| 578 | return 0; |
| 579 | } else |
| 580 | return 0; |
| 581 | for (i = idx; i < SSL_PKEY_NUM; i++) { |
| 582 | CERT_PKEY *cpk = c->pkeys + i; |
| 583 | if (cpk->x509 && cpk->privatekey) { |
| 584 | c->key = cpk; |
| 585 | return 1; |
| 586 | } |
| 587 | } |
| 588 | return 0; |
| 589 | } |
Dr. Stephen Henson | 0f78819 | 2014-02-02 02:51:30 +0000 | [diff] [blame] | 590 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 591 | void ssl_cert_set_cert_cb(CERT *c, int (*cb) (SSL *ssl, void *arg), void *arg) |
| 592 | { |
| 593 | c->cert_cb = cb; |
| 594 | c->cert_cb_arg = arg; |
| 595 | } |
Dr. Stephen Henson | 18d7158 | 2012-06-29 14:24:42 +0000 | [diff] [blame] | 596 | |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 597 | SESS_CERT *ssl_sess_cert_new(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 598 | { |
| 599 | SESS_CERT *ret; |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 600 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 601 | ret = OPENSSL_malloc(sizeof *ret); |
| 602 | if (ret == NULL) { |
| 603 | SSLerr(SSL_F_SSL_SESS_CERT_NEW, ERR_R_MALLOC_FAILURE); |
| 604 | return NULL; |
| 605 | } |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 606 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 607 | memset(ret, 0, sizeof *ret); |
| 608 | ret->peer_key = &(ret->peer_pkeys[SSL_PKEY_RSA_ENC]); |
| 609 | ret->references = 1; |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 610 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 611 | return ret; |
| 612 | } |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 613 | |
| 614 | void ssl_sess_cert_free(SESS_CERT *sc) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 615 | { |
| 616 | int i; |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 617 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 618 | if (sc == NULL) |
| 619 | return; |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 620 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 621 | i = CRYPTO_add(&sc->references, -1, CRYPTO_LOCK_SSL_SESS_CERT); |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 622 | #ifdef REF_PRINT |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 623 | REF_PRINT("SESS_CERT", sc); |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 624 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 625 | if (i > 0) |
| 626 | return; |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 627 | #ifdef REF_CHECK |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 628 | if (i < 0) { |
| 629 | fprintf(stderr, "ssl_sess_cert_free, bad reference count\n"); |
| 630 | abort(); /* ok */ |
| 631 | } |
Bodo Möller | ca8e5b9 | 1999-05-09 20:12:44 +0000 | [diff] [blame] | 632 | #endif |
Ralf S. Engelschall | 15d21c2 | 1999-02-25 14:40:29 +0000 | [diff] [blame] | 633 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 634 | /* i == 0 */ |
| 635 | if (sc->cert_chain != NULL) |
| 636 | sk_X509_pop_free(sc->cert_chain, X509_free); |
| 637 | for (i = 0; i < SSL_PKEY_NUM; i++) { |
| 638 | if (sc->peer_pkeys[i].x509 != NULL) |
| 639 | X509_free(sc->peer_pkeys[i].x509); |
Rich Salz | 9e9858d | 2015-02-06 10:52:12 -0500 | [diff] [blame] | 640 | #if 0 |
| 641 | /* |
| 642 | * We don't have the peer's private key. These lines are just |
| 643 | * here as a reminder that we're still using a not-quite-appropriate |
| 644 | * data structure. |
| 645 | */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 646 | if (sc->peer_pkeys[i].privatekey != NULL) |
| 647 | EVP_PKEY_free(sc->peer_pkeys[i].privatekey); |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 648 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 649 | } |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 650 | |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 651 | #ifndef OPENSSL_NO_RSA |
Rich Salz | d640708 | 2015-03-24 10:17:37 -0400 | [diff] [blame] | 652 | RSA_free(sc->peer_rsa_tmp); |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 653 | #endif |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 654 | #ifndef OPENSSL_NO_DH |
Rich Salz | d640708 | 2015-03-24 10:17:37 -0400 | [diff] [blame] | 655 | DH_free(sc->peer_dh_tmp); |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 656 | #endif |
Rich Salz | 10bf4fc | 2015-03-10 19:09:27 -0400 | [diff] [blame] | 657 | #ifndef OPENSSL_NO_EC |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 658 | if (sc->peer_ecdh_tmp != NULL) |
| 659 | EC_KEY_free(sc->peer_ecdh_tmp); |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 660 | #endif |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 661 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 662 | OPENSSL_free(sc); |
| 663 | } |
Bodo Möller | b56bce4 | 1999-05-13 15:09:38 +0000 | [diff] [blame] | 664 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 665 | int ssl_set_peer_cert_type(SESS_CERT *sc, int type) |
| 666 | { |
| 667 | sc->peer_cert_type = type; |
| 668 | return (1); |
| 669 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 670 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 671 | int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk) |
| 672 | { |
| 673 | X509 *x; |
| 674 | int i; |
| 675 | X509_STORE *verify_store; |
| 676 | X509_STORE_CTX ctx; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 677 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 678 | if (s->cert->verify_store) |
| 679 | verify_store = s->cert->verify_store; |
| 680 | else |
| 681 | verify_store = s->ctx->cert_store; |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 682 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 683 | if ((sk == NULL) || (sk_X509_num(sk) == 0)) |
| 684 | return (0); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 685 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 686 | x = sk_X509_value(sk, 0); |
| 687 | if (!X509_STORE_CTX_init(&ctx, verify_store, x, sk)) { |
| 688 | SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_X509_LIB); |
| 689 | return (0); |
| 690 | } |
| 691 | /* Set suite B flags if needed */ |
| 692 | X509_STORE_CTX_set_flags(&ctx, tls1_suiteb(s)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 693 | X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s); |
Bodo Möller | 3ac82fa | 2000-12-15 16:40:35 +0000 | [diff] [blame] | 694 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 695 | /* |
| 696 | * We need to inherit the verify parameters. These can be determined by |
| 697 | * the context: if its a server it will verify SSL client certificates or |
| 698 | * vice versa. |
| 699 | */ |
Dr. Stephen Henson | bb7cd4e | 1999-11-29 22:35:00 +0000 | [diff] [blame] | 700 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 701 | X509_STORE_CTX_set_default(&ctx, s->server ? "ssl_client" : "ssl_server"); |
| 702 | /* |
| 703 | * Anything non-default in "param" should overwrite anything in the ctx. |
| 704 | */ |
| 705 | X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx), s->param); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 706 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 707 | if (s->verify_callback) |
| 708 | X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback); |
Lutz Jänicke | 1f0c9ad | 2001-07-30 11:45:34 +0000 | [diff] [blame] | 709 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 710 | if (s->ctx->app_verify_callback != NULL) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 711 | i = s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 712 | else { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 713 | i = X509_verify_cert(&ctx); |
| 714 | # if 0 |
| 715 | /* Dummy error calls so mkerr generates them */ |
| 716 | SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL); |
| 717 | SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL); |
| 718 | SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK); |
| 719 | # endif |
| 720 | if (i > 0) |
| 721 | i = ssl_security_cert_chain(s, ctx.chain, NULL, 1); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 722 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 723 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 724 | s->verify_result = ctx.error; |
| 725 | X509_STORE_CTX_cleanup(&ctx); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 726 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 727 | return (i); |
| 728 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 729 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 730 | static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list, |
| 731 | STACK_OF(X509_NAME) *name_list) |
| 732 | { |
| 733 | if (*ca_list != NULL) |
| 734 | sk_X509_NAME_pop_free(*ca_list, X509_NAME_free); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 735 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 736 | *ca_list = name_list; |
| 737 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 738 | |
Ben Laurie | 838d25a | 1999-05-30 14:13:19 +0000 | [diff] [blame] | 739 | STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 740 | { |
| 741 | int i; |
| 742 | STACK_OF(X509_NAME) *ret; |
| 743 | X509_NAME *name; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 744 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 745 | ret = sk_X509_NAME_new_null(); |
| 746 | for (i = 0; i < sk_X509_NAME_num(sk); i++) { |
| 747 | name = X509_NAME_dup(sk_X509_NAME_value(sk, i)); |
| 748 | if ((name == NULL) || !sk_X509_NAME_push(ret, name)) { |
| 749 | sk_X509_NAME_pop_free(ret, X509_NAME_free); |
| 750 | return (NULL); |
| 751 | } |
| 752 | } |
| 753 | return (ret); |
| 754 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 755 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 756 | void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list) |
| 757 | { |
| 758 | set_client_CA_list(&(s->client_CA), name_list); |
| 759 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 760 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 761 | void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) |
| 762 | { |
| 763 | set_client_CA_list(&(ctx->client_CA), name_list); |
| 764 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 765 | |
Ben Laurie | 0821bcd | 2005-03-30 10:26:02 +0000 | [diff] [blame] | 766 | STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 767 | { |
| 768 | return (ctx->client_CA); |
| 769 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 770 | |
Ben Laurie | 0821bcd | 2005-03-30 10:26:02 +0000 | [diff] [blame] | 771 | STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 772 | { |
| 773 | if (s->type == SSL_ST_CONNECT) { /* we are in the client */ |
| 774 | if (((s->version >> 8) == SSL3_VERSION_MAJOR) && (s->s3 != NULL)) |
| 775 | return (s->s3->tmp.ca_names); |
| 776 | else |
| 777 | return (NULL); |
| 778 | } else { |
| 779 | if (s->client_CA != NULL) |
| 780 | return (s->client_CA); |
| 781 | else |
| 782 | return (s->ctx->client_CA); |
| 783 | } |
| 784 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 785 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 786 | static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x) |
| 787 | { |
| 788 | X509_NAME *name; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 789 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 790 | if (x == NULL) |
| 791 | return (0); |
| 792 | if ((*sk == NULL) && ((*sk = sk_X509_NAME_new_null()) == NULL)) |
| 793 | return (0); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 794 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 795 | if ((name = X509_NAME_dup(X509_get_subject_name(x))) == NULL) |
| 796 | return (0); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 797 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 798 | if (!sk_X509_NAME_push(*sk, name)) { |
| 799 | X509_NAME_free(name); |
| 800 | return (0); |
| 801 | } |
| 802 | return (1); |
| 803 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 804 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 805 | int SSL_add_client_CA(SSL *ssl, X509 *x) |
| 806 | { |
| 807 | return (add_client_CA(&(ssl->client_CA), x)); |
| 808 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 809 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 810 | int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x) |
| 811 | { |
| 812 | return (add_client_CA(&(ctx->client_CA), x)); |
| 813 | } |
| 814 | |
| 815 | static int xname_cmp(const X509_NAME *const *a, const X509_NAME *const *b) |
| 816 | { |
| 817 | return (X509_NAME_cmp(*a, *b)); |
| 818 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 819 | |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 820 | #ifndef OPENSSL_NO_STDIO |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 821 | /** |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 822 | * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed; |
| 823 | * it doesn't really have anything to do with clients (except that a common use |
| 824 | * for a stack of CAs is to send it to the client). Actually, it doesn't have |
| 825 | * much to do with CAs, either, since it will load any old cert. |
| 826 | * \param file the file containing one or more certs. |
| 827 | * \return a ::STACK containing the certs. |
| 828 | */ |
Ben Laurie | f73e07c | 1999-04-12 17:23:57 +0000 | [diff] [blame] | 829 | STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 830 | { |
| 831 | BIO *in; |
| 832 | X509 *x = NULL; |
| 833 | X509_NAME *xn = NULL; |
| 834 | STACK_OF(X509_NAME) *ret = NULL, *sk; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 835 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 836 | sk = sk_X509_NAME_new(xname_cmp); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 837 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 838 | in = BIO_new(BIO_s_file_internal()); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 839 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 840 | if ((sk == NULL) || (in == NULL)) { |
| 841 | SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE); |
| 842 | goto err; |
| 843 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 844 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 845 | if (!BIO_read_filename(in, file)) |
| 846 | goto err; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 847 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 848 | for (;;) { |
| 849 | if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) |
| 850 | break; |
| 851 | if (ret == NULL) { |
| 852 | ret = sk_X509_NAME_new_null(); |
| 853 | if (ret == NULL) { |
| 854 | SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE); |
| 855 | goto err; |
| 856 | } |
| 857 | } |
| 858 | if ((xn = X509_get_subject_name(x)) == NULL) |
| 859 | goto err; |
| 860 | /* check for duplicates */ |
| 861 | xn = X509_NAME_dup(xn); |
| 862 | if (xn == NULL) |
| 863 | goto err; |
| 864 | if (sk_X509_NAME_find(sk, xn) >= 0) |
| 865 | X509_NAME_free(xn); |
| 866 | else { |
| 867 | sk_X509_NAME_push(sk, xn); |
| 868 | sk_X509_NAME_push(ret, xn); |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | if (0) { |
| 873 | err: |
| 874 | if (ret != NULL) |
| 875 | sk_X509_NAME_pop_free(ret, X509_NAME_free); |
| 876 | ret = NULL; |
| 877 | } |
| 878 | if (sk != NULL) |
| 879 | sk_X509_NAME_free(sk); |
Rich Salz | ca3a82c | 2015-03-25 11:31:18 -0400 | [diff] [blame^] | 880 | BIO_free(in); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 881 | if (x != NULL) |
| 882 | X509_free(x); |
| 883 | if (ret != NULL) |
| 884 | ERR_clear_error(); |
| 885 | return (ret); |
| 886 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 887 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 888 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 889 | /** |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 890 | * Add a file of certs to a stack. |
| 891 | * \param stack the stack to add to. |
| 892 | * \param file the file to add from. All certs in this file that are not |
| 893 | * already in the stack will be added. |
| 894 | * \return 1 for success, 0 for failure. Note that in the case of failure some |
| 895 | * certs may have been added to \c stack. |
| 896 | */ |
| 897 | |
Ben Laurie | 661b361 | 1999-05-03 19:55:00 +0000 | [diff] [blame] | 898 | int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 899 | const char *file) |
| 900 | { |
| 901 | BIO *in; |
| 902 | X509 *x = NULL; |
| 903 | X509_NAME *xn = NULL; |
| 904 | int ret = 1; |
| 905 | int (*oldcmp) (const X509_NAME *const *a, const X509_NAME *const *b); |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 906 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 907 | oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_cmp); |
Dr. Stephen Henson | a3a06e6 | 2010-03-24 23:17:15 +0000 | [diff] [blame] | 908 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 909 | in = BIO_new(BIO_s_file_internal()); |
Bodo Möller | 2ea0910 | 2000-05-21 14:14:30 +0000 | [diff] [blame] | 910 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 911 | if (in == NULL) { |
| 912 | SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK, |
| 913 | ERR_R_MALLOC_FAILURE); |
| 914 | goto err; |
| 915 | } |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 916 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 917 | if (!BIO_read_filename(in, file)) |
| 918 | goto err; |
| 919 | |
| 920 | for (;;) { |
| 921 | if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) |
| 922 | break; |
| 923 | if ((xn = X509_get_subject_name(x)) == NULL) |
| 924 | goto err; |
| 925 | xn = X509_NAME_dup(xn); |
| 926 | if (xn == NULL) |
| 927 | goto err; |
| 928 | if (sk_X509_NAME_find(stack, xn) >= 0) |
| 929 | X509_NAME_free(xn); |
| 930 | else |
| 931 | sk_X509_NAME_push(stack, xn); |
| 932 | } |
| 933 | |
| 934 | ERR_clear_error(); |
| 935 | |
| 936 | if (0) { |
| 937 | err: |
| 938 | ret = 0; |
| 939 | } |
Rich Salz | ca3a82c | 2015-03-25 11:31:18 -0400 | [diff] [blame^] | 940 | BIO_free(in); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 941 | if (x != NULL) |
| 942 | X509_free(x); |
| 943 | |
| 944 | (void)sk_X509_NAME_set_cmp_func(stack, oldcmp); |
| 945 | |
| 946 | return ret; |
| 947 | } |
| 948 | |
| 949 | /** |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 950 | * Add a directory of certs to a stack. |
| 951 | * \param stack the stack to append to. |
| 952 | * \param dir the directory to append from. All files in this directory will be |
| 953 | * examined as potential certs. Any that are acceptable to |
Ralf S. Engelschall | 72e442a | 1999-03-22 15:50:34 +0000 | [diff] [blame] | 954 | * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 955 | * included. |
| 956 | * \return 1 for success, 0 for failure. Note that in the case of failure some |
| 957 | * certs may have been added to \c stack. |
| 958 | */ |
| 959 | |
Ben Laurie | 661b361 | 1999-05-03 19:55:00 +0000 | [diff] [blame] | 960 | int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 961 | const char *dir) |
| 962 | { |
| 963 | OPENSSL_DIR_CTX *d = NULL; |
| 964 | const char *filename; |
| 965 | int ret = 0; |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 966 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 967 | CRYPTO_w_lock(CRYPTO_LOCK_READDIR); |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 968 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 969 | /* Note that a side effect is that the CAs will be sorted by name */ |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 970 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 971 | while ((filename = OPENSSL_DIR_read(&d, dir))) { |
| 972 | char buf[1024]; |
| 973 | int r; |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 974 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 975 | if (strlen(dir) + strlen(filename) + 2 > sizeof buf) { |
| 976 | SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, |
| 977 | SSL_R_PATH_TOO_LONG); |
| 978 | goto err; |
| 979 | } |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 980 | #ifdef OPENSSL_SYS_VMS |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 981 | r = BIO_snprintf(buf, sizeof buf, "%s%s", dir, filename); |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 982 | #else |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 983 | r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename); |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 984 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 985 | if (r <= 0 || r >= (int)sizeof(buf)) |
| 986 | goto err; |
| 987 | if (!SSL_add_file_cert_subjects_to_stack(stack, buf)) |
| 988 | goto err; |
| 989 | } |
Ben Laurie | eb90a48 | 1999-02-28 17:41:55 +0000 | [diff] [blame] | 990 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 991 | if (errno) { |
| 992 | SYSerr(SYS_F_OPENDIR, get_last_sys_error()); |
| 993 | ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')"); |
| 994 | SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, ERR_R_SYS_LIB); |
| 995 | goto err; |
| 996 | } |
Richard Levitte | 4083a22 | 2004-07-10 13:17:16 +0000 | [diff] [blame] | 997 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 998 | ret = 1; |
Richard Levitte | 285046e | 2001-10-04 12:27:39 +0000 | [diff] [blame] | 999 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1000 | err: |
| 1001 | if (d) |
| 1002 | OPENSSL_DIR_end(&d); |
| 1003 | CRYPTO_w_unlock(CRYPTO_LOCK_READDIR); |
| 1004 | return ret; |
| 1005 | } |
Richard Levitte | 285046e | 2001-10-04 12:27:39 +0000 | [diff] [blame] | 1006 | |
Dr. Stephen Henson | 4379d0e | 2012-01-26 15:47:32 +0000 | [diff] [blame] | 1007 | /* Add a certificate to a BUF_MEM structure */ |
| 1008 | |
| 1009 | static int ssl_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1010 | { |
| 1011 | int n; |
| 1012 | unsigned char *p; |
Dr. Stephen Henson | 4379d0e | 2012-01-26 15:47:32 +0000 | [diff] [blame] | 1013 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1014 | n = i2d_X509(x, NULL); |
| 1015 | if (!BUF_MEM_grow_clean(buf, (int)(n + (*l) + 3))) { |
| 1016 | SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_BUF_LIB); |
| 1017 | return 0; |
| 1018 | } |
| 1019 | p = (unsigned char *)&(buf->data[*l]); |
| 1020 | l2n3(n, p); |
| 1021 | i2d_X509(x, &p); |
| 1022 | *l += n + 3; |
Dr. Stephen Henson | 4379d0e | 2012-01-26 15:47:32 +0000 | [diff] [blame] | 1023 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1024 | return 1; |
| 1025 | } |
Dr. Stephen Henson | 4379d0e | 2012-01-26 15:47:32 +0000 | [diff] [blame] | 1026 | |
| 1027 | /* Add certificate chain to internal SSL BUF_MEM strcuture */ |
Dr. Stephen Henson | c526ed4 | 2012-01-26 16:00:34 +0000 | [diff] [blame] | 1028 | int ssl_add_cert_chain(SSL *s, CERT_PKEY *cpk, unsigned long *l) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1029 | { |
| 1030 | BUF_MEM *buf = s->init_buf; |
| 1031 | int i; |
Dr. Stephen Henson | 4379d0e | 2012-01-26 15:47:32 +0000 | [diff] [blame] | 1032 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1033 | X509 *x; |
| 1034 | STACK_OF(X509) *extra_certs; |
| 1035 | X509_STORE *chain_store; |
Dr. Stephen Henson | c526ed4 | 2012-01-26 16:00:34 +0000 | [diff] [blame] | 1036 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1037 | /* TLSv1 sends a chain with nothing in it, instead of an alert */ |
| 1038 | if (!BUF_MEM_grow_clean(buf, 10)) { |
| 1039 | SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_BUF_LIB); |
| 1040 | return 0; |
| 1041 | } |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1042 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1043 | if (!cpk || !cpk->x509) |
| 1044 | return 1; |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1045 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1046 | x = cpk->x509; |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1047 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1048 | /* |
| 1049 | * If we have a certificate specific chain use it, else use parent ctx. |
| 1050 | */ |
| 1051 | if (cpk->chain) |
| 1052 | extra_certs = cpk->chain; |
| 1053 | else |
| 1054 | extra_certs = s->ctx->extra_certs; |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1055 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1056 | if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs) |
| 1057 | chain_store = NULL; |
| 1058 | else if (s->cert->chain_store) |
| 1059 | chain_store = s->cert->chain_store; |
| 1060 | else |
| 1061 | chain_store = s->ctx->cert_store; |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1062 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1063 | if (chain_store) { |
| 1064 | X509_STORE_CTX xs_ctx; |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1065 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1066 | if (!X509_STORE_CTX_init(&xs_ctx, chain_store, x, NULL)) { |
| 1067 | SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB); |
| 1068 | return (0); |
| 1069 | } |
| 1070 | X509_verify_cert(&xs_ctx); |
| 1071 | /* Don't leave errors in the queue */ |
| 1072 | ERR_clear_error(); |
| 1073 | i = ssl_security_cert_chain(s, xs_ctx.chain, NULL, 0); |
| 1074 | if (i != 1) { |
| 1075 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 1076 | SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i); |
| 1077 | return 0; |
| 1078 | } |
| 1079 | for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) { |
| 1080 | x = sk_X509_value(xs_ctx.chain, i); |
Dr. Stephen Henson | d628885 | 2014-03-09 16:12:20 +0000 | [diff] [blame] | 1081 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1082 | if (!ssl_add_cert_to_buf(buf, l, x)) { |
| 1083 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 1084 | return 0; |
| 1085 | } |
| 1086 | } |
| 1087 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 1088 | } else { |
| 1089 | i = ssl_security_cert_chain(s, extra_certs, x, 0); |
| 1090 | if (i != 1) { |
| 1091 | SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i); |
| 1092 | return 0; |
| 1093 | } |
| 1094 | if (!ssl_add_cert_to_buf(buf, l, x)) |
| 1095 | return 0; |
| 1096 | for (i = 0; i < sk_X509_num(extra_certs); i++) { |
| 1097 | x = sk_X509_value(extra_certs, i); |
| 1098 | if (!ssl_add_cert_to_buf(buf, l, x)) |
| 1099 | return 0; |
| 1100 | } |
| 1101 | } |
| 1102 | return 1; |
| 1103 | } |
Dr. Stephen Henson | 4379d0e | 2012-01-26 15:47:32 +0000 | [diff] [blame] | 1104 | |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1105 | /* Build a certificate chain for current certificate */ |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 1106 | int ssl_build_cert_chain(SSL *s, SSL_CTX *ctx, int flags) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1107 | { |
| 1108 | CERT *c = s ? s->cert : ctx->cert; |
| 1109 | CERT_PKEY *cpk = c->key; |
| 1110 | X509_STORE *chain_store = NULL; |
| 1111 | X509_STORE_CTX xs_ctx; |
| 1112 | STACK_OF(X509) *chain = NULL, *untrusted = NULL; |
| 1113 | X509 *x; |
| 1114 | int i, rv = 0; |
| 1115 | unsigned long error; |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1116 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1117 | if (!cpk->x509) { |
| 1118 | SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_NO_CERTIFICATE_SET); |
| 1119 | goto err; |
| 1120 | } |
| 1121 | /* Rearranging and check the chain: add everything to a store */ |
| 1122 | if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) { |
| 1123 | chain_store = X509_STORE_new(); |
| 1124 | if (!chain_store) |
| 1125 | goto err; |
| 1126 | for (i = 0; i < sk_X509_num(cpk->chain); i++) { |
| 1127 | x = sk_X509_value(cpk->chain, i); |
| 1128 | if (!X509_STORE_add_cert(chain_store, x)) { |
| 1129 | error = ERR_peek_last_error(); |
| 1130 | if (ERR_GET_LIB(error) != ERR_LIB_X509 || |
| 1131 | ERR_GET_REASON(error) != |
| 1132 | X509_R_CERT_ALREADY_IN_HASH_TABLE) |
| 1133 | goto err; |
| 1134 | ERR_clear_error(); |
| 1135 | } |
| 1136 | } |
| 1137 | /* Add EE cert too: it might be self signed */ |
| 1138 | if (!X509_STORE_add_cert(chain_store, cpk->x509)) { |
| 1139 | error = ERR_peek_last_error(); |
| 1140 | if (ERR_GET_LIB(error) != ERR_LIB_X509 || |
| 1141 | ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE) |
| 1142 | goto err; |
| 1143 | ERR_clear_error(); |
| 1144 | } |
| 1145 | } else { |
| 1146 | if (c->chain_store) |
| 1147 | chain_store = c->chain_store; |
| 1148 | else if (s) |
| 1149 | chain_store = s->ctx->cert_store; |
| 1150 | else |
| 1151 | chain_store = ctx->cert_store; |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1152 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1153 | if (flags & SSL_BUILD_CHAIN_FLAG_UNTRUSTED) |
| 1154 | untrusted = cpk->chain; |
| 1155 | } |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1156 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1157 | if (!X509_STORE_CTX_init(&xs_ctx, chain_store, cpk->x509, untrusted)) { |
| 1158 | SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_X509_LIB); |
| 1159 | goto err; |
| 1160 | } |
| 1161 | /* Set suite B flags if needed */ |
| 1162 | X509_STORE_CTX_set_flags(&xs_ctx, |
| 1163 | c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS); |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1164 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1165 | i = X509_verify_cert(&xs_ctx); |
| 1166 | if (i <= 0 && flags & SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR) { |
| 1167 | if (flags & SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR) |
| 1168 | ERR_clear_error(); |
| 1169 | i = 1; |
| 1170 | rv = 2; |
| 1171 | } |
| 1172 | if (i > 0) |
| 1173 | chain = X509_STORE_CTX_get1_chain(&xs_ctx); |
| 1174 | if (i <= 0) { |
| 1175 | SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_CERTIFICATE_VERIFY_FAILED); |
| 1176 | i = X509_STORE_CTX_get_error(&xs_ctx); |
| 1177 | ERR_add_error_data(2, "Verify error:", |
| 1178 | X509_verify_cert_error_string(i)); |
Dr. Stephen Henson | 13dc3ce | 2014-02-23 12:00:18 +0000 | [diff] [blame] | 1179 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1180 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 1181 | goto err; |
| 1182 | } |
| 1183 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 1184 | /* Remove EE certificate from chain */ |
| 1185 | x = sk_X509_shift(chain); |
| 1186 | X509_free(x); |
| 1187 | if (flags & SSL_BUILD_CHAIN_FLAG_NO_ROOT) { |
| 1188 | if (sk_X509_num(chain) > 0) { |
| 1189 | /* See if last cert is self signed */ |
| 1190 | x = sk_X509_value(chain, sk_X509_num(chain) - 1); |
| 1191 | X509_check_purpose(x, -1, 0); |
| 1192 | if (x->ex_flags & EXFLAG_SS) { |
| 1193 | x = sk_X509_pop(chain); |
| 1194 | X509_free(x); |
| 1195 | } |
| 1196 | } |
| 1197 | } |
| 1198 | /* |
| 1199 | * Check security level of all CA certificates: EE will have been checked |
| 1200 | * already. |
| 1201 | */ |
| 1202 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1203 | x = sk_X509_value(chain, i); |
| 1204 | rv = ssl_security_cert(s, ctx, x, 0, 0); |
| 1205 | if (rv != 1) { |
| 1206 | SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, rv); |
| 1207 | sk_X509_pop_free(chain, X509_free); |
| 1208 | rv = 0; |
| 1209 | goto err; |
| 1210 | } |
| 1211 | } |
| 1212 | if (cpk->chain) |
| 1213 | sk_X509_pop_free(cpk->chain, X509_free); |
| 1214 | cpk->chain = chain; |
| 1215 | if (rv == 0) |
| 1216 | rv = 1; |
| 1217 | err: |
| 1218 | if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) |
| 1219 | X509_STORE_free(chain_store); |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1220 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1221 | return rv; |
| 1222 | } |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1223 | |
| 1224 | int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1225 | { |
| 1226 | X509_STORE **pstore; |
| 1227 | if (chain) |
| 1228 | pstore = &c->chain_store; |
| 1229 | else |
| 1230 | pstore = &c->verify_store; |
| 1231 | if (*pstore) |
| 1232 | X509_STORE_free(*pstore); |
| 1233 | *pstore = store; |
| 1234 | if (ref && store) |
| 1235 | CRYPTO_add(&store->references, 1, CRYPTO_LOCK_X509_STORE); |
| 1236 | return 1; |
| 1237 | } |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1238 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1239 | static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op, |
| 1240 | int bits, int nid, void *other, |
| 1241 | void *ex) |
| 1242 | { |
| 1243 | int level, minbits; |
| 1244 | static const int minbits_table[5] = { 80, 112, 128, 192, 256 }; |
| 1245 | if (ctx) |
| 1246 | level = SSL_CTX_get_security_level(ctx); |
| 1247 | else |
| 1248 | level = SSL_get_security_level(s); |
| 1249 | /* Level 0: anything goes */ |
| 1250 | if (level <= 0) |
| 1251 | return 1; |
| 1252 | if (level > 5) |
| 1253 | level = 5; |
| 1254 | minbits = minbits_table[level - 1]; |
| 1255 | switch (op) { |
| 1256 | case SSL_SECOP_CIPHER_SUPPORTED: |
| 1257 | case SSL_SECOP_CIPHER_SHARED: |
| 1258 | case SSL_SECOP_CIPHER_CHECK: |
| 1259 | { |
| 1260 | const SSL_CIPHER *c = other; |
| 1261 | /* No ciphers below security level */ |
| 1262 | if (bits < minbits) |
| 1263 | return 0; |
| 1264 | /* No unauthenticated ciphersuites */ |
| 1265 | if (c->algorithm_auth & SSL_aNULL) |
| 1266 | return 0; |
| 1267 | /* No MD5 mac ciphersuites */ |
| 1268 | if (c->algorithm_mac & SSL_MD5) |
| 1269 | return 0; |
| 1270 | /* SHA1 HMAC is 160 bits of security */ |
| 1271 | if (minbits > 160 && c->algorithm_mac & SSL_SHA1) |
| 1272 | return 0; |
| 1273 | /* Level 2: no RC4 */ |
| 1274 | if (level >= 2 && c->algorithm_enc == SSL_RC4) |
| 1275 | return 0; |
| 1276 | /* Level 3: forward secure ciphersuites only */ |
| 1277 | if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH))) |
| 1278 | return 0; |
| 1279 | break; |
| 1280 | } |
| 1281 | case SSL_SECOP_VERSION: |
| 1282 | /* SSLv3 not allowed on level 2 */ |
| 1283 | if (nid <= SSL3_VERSION && level >= 2) |
| 1284 | return 0; |
| 1285 | /* TLS v1.1 and above only for level 3 */ |
| 1286 | if (nid <= TLS1_VERSION && level >= 3) |
| 1287 | return 0; |
| 1288 | /* TLS v1.2 only for level 4 and above */ |
| 1289 | if (nid <= TLS1_1_VERSION && level >= 4) |
| 1290 | return 0; |
| 1291 | break; |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 1292 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1293 | case SSL_SECOP_COMPRESSION: |
| 1294 | if (level >= 2) |
| 1295 | return 0; |
| 1296 | break; |
| 1297 | case SSL_SECOP_TICKET: |
| 1298 | if (level >= 3) |
| 1299 | return 0; |
| 1300 | break; |
| 1301 | default: |
| 1302 | if (bits < minbits) |
| 1303 | return 0; |
| 1304 | } |
| 1305 | return 1; |
| 1306 | } |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 1307 | |
| 1308 | int ssl_security(SSL *s, int op, int bits, int nid, void *other) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1309 | { |
| 1310 | return s->cert->sec_cb(s, NULL, op, bits, nid, other, s->cert->sec_ex); |
| 1311 | } |
Dr. Stephen Henson | b362cca | 2013-12-15 13:32:24 +0000 | [diff] [blame] | 1312 | |
| 1313 | int ssl_ctx_security(SSL_CTX *ctx, int op, int bits, int nid, void *other) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1314 | { |
| 1315 | return ctx->cert->sec_cb(NULL, ctx, op, bits, nid, other, |
| 1316 | ctx->cert->sec_ex); |
| 1317 | } |