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