Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 2 | * All rights reserved. |
| 3 | * |
| 4 | * This package is an SSL implementation written |
| 5 | * by Eric Young (eay@cryptsoft.com). |
| 6 | * The implementation was written so as to conform with Netscapes SSL. |
| 7 | * |
| 8 | * This library is free for commercial and non-commercial use as long as |
| 9 | * the following conditions are aheared to. The following conditions |
| 10 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 12 | * included with this distribution is covered by the same copyright terms |
| 13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 14 | * |
| 15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 16 | * the code are not to be removed. |
| 17 | * If this package is used in a product, Eric Young should be given attribution |
| 18 | * as the author of the parts of the library used. |
| 19 | * This can be in the form of a textual message at program startup or |
| 20 | * in documentation (online or textual) provided with the package. |
| 21 | * |
| 22 | * Redistribution and use in source and binary forms, with or without |
| 23 | * modification, are permitted provided that the following conditions |
| 24 | * are met: |
| 25 | * 1. Redistributions of source code must retain the copyright |
| 26 | * notice, this list of conditions and the following disclaimer. |
| 27 | * 2. Redistributions in binary form must reproduce the above copyright |
| 28 | * notice, this list of conditions and the following disclaimer in the |
| 29 | * documentation and/or other materials provided with the distribution. |
| 30 | * 3. All advertising materials mentioning features or use of this software |
| 31 | * must display the following acknowledgement: |
| 32 | * "This product includes cryptographic software written by |
| 33 | * Eric Young (eay@cryptsoft.com)" |
| 34 | * The word 'cryptographic' can be left out if the rouines from the library |
| 35 | * being used are not cryptographic related :-). |
| 36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 37 | * the apps directory (application code) you must include an acknowledgement: |
| 38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 39 | * |
| 40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 50 | * SUCH DAMAGE. |
| 51 | * |
| 52 | * The licence and distribution terms for any publically available version or |
| 53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 54 | * copied and put under another distribution licence |
| 55 | * [including the GNU Public Licence.] |
| 56 | */ |
| 57 | /* ==================================================================== |
| 58 | * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. |
| 59 | * |
| 60 | * Redistribution and use in source and binary forms, with or without |
| 61 | * modification, are permitted provided that the following conditions |
| 62 | * are met: |
| 63 | * |
| 64 | * 1. Redistributions of source code must retain the above copyright |
| 65 | * notice, this list of conditions and the following disclaimer. |
| 66 | * |
| 67 | * 2. Redistributions in binary form must reproduce the above copyright |
| 68 | * notice, this list of conditions and the following disclaimer in |
| 69 | * the documentation and/or other materials provided with the |
| 70 | * distribution. |
| 71 | * |
| 72 | * 3. All advertising materials mentioning features or use of this |
| 73 | * software must display the following acknowledgment: |
| 74 | * "This product includes software developed by the OpenSSL Project |
| 75 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 76 | * |
| 77 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 78 | * endorse or promote products derived from this software without |
| 79 | * prior written permission. For written permission, please contact |
| 80 | * openssl-core@openssl.org. |
| 81 | * |
| 82 | * 5. Products derived from this software may not be called "OpenSSL" |
| 83 | * nor may "OpenSSL" appear in their names without prior written |
| 84 | * permission of the OpenSSL Project. |
| 85 | * |
| 86 | * 6. Redistributions of any form whatsoever must retain the following |
| 87 | * acknowledgment: |
| 88 | * "This product includes software developed by the OpenSSL Project |
| 89 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 90 | * |
| 91 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 92 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 93 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 94 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 95 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 96 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 97 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 98 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 99 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 100 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 101 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 102 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 103 | * ==================================================================== |
| 104 | * |
| 105 | * This product includes cryptographic software written by Eric Young |
| 106 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 107 | * Hudson (tjh@cryptsoft.com). |
| 108 | * |
| 109 | */ |
| 110 | /* ==================================================================== |
| 111 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 112 | * ECC cipher suite support in OpenSSL originally developed by |
| 113 | * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ |
| 114 | |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 115 | #include <errno.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 116 | #include <stdio.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 117 | #include <string.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 118 | |
| 119 | #include <openssl/bio.h> |
| 120 | #include <openssl/bn.h> |
David Benjamin | 676d1e7 | 2014-07-08 14:34:10 -0400 | [diff] [blame] | 121 | #include <openssl/buf.h> |
David Benjamin | 680ca96 | 2015-06-18 12:37:23 -0400 | [diff] [blame] | 122 | #include <openssl/ec_key.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 123 | #include <openssl/dh.h> |
| 124 | #include <openssl/err.h> |
| 125 | #include <openssl/mem.h> |
| 126 | #include <openssl/obj.h> |
| 127 | #include <openssl/pem.h> |
David Benjamin | 680ca96 | 2015-06-18 12:37:23 -0400 | [diff] [blame] | 128 | #include <openssl/x509.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 129 | #include <openssl/x509v3.h> |
| 130 | |
| 131 | #include "../crypto/dh/internal.h" |
| 132 | #include "../crypto/directory.h" |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 133 | #include "../crypto/internal.h" |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 134 | #include "internal.h" |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 135 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 136 | |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 137 | static CRYPTO_once_t g_x509_store_ex_data_index_once; |
| 138 | static int g_x509_store_ex_data_index; |
| 139 | |
| 140 | static void ssl_x509_store_ex_data_index_init(void) { |
| 141 | g_x509_store_ex_data_index = X509_STORE_CTX_get_ex_new_index( |
| 142 | 0, "SSL for verify callback", NULL, NULL, NULL); |
| 143 | } |
| 144 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 145 | int SSL_get_ex_data_X509_STORE_CTX_idx(void) { |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 146 | CRYPTO_once(&g_x509_store_ex_data_index_once, |
| 147 | ssl_x509_store_ex_data_index_init); |
| 148 | return g_x509_store_ex_data_index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 149 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 150 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 151 | CERT *ssl_cert_new(void) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 152 | CERT *ret = (CERT *)OPENSSL_malloc(sizeof(CERT)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 153 | if (ret == NULL) { |
| 154 | OPENSSL_PUT_ERROR(SSL, ssl_cert_new, ERR_R_MALLOC_FAILURE); |
| 155 | return NULL; |
| 156 | } |
| 157 | memset(ret, 0, sizeof(CERT)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 158 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 159 | return ret; |
| 160 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 161 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 162 | CERT *ssl_cert_dup(CERT *cert) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 163 | CERT *ret = (CERT *)OPENSSL_malloc(sizeof(CERT)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 164 | if (ret == NULL) { |
| 165 | OPENSSL_PUT_ERROR(SSL, ssl_cert_dup, ERR_R_MALLOC_FAILURE); |
| 166 | return NULL; |
| 167 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 168 | memset(ret, 0, sizeof(CERT)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 169 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 170 | ret->mask_k = cert->mask_k; |
| 171 | ret->mask_a = cert->mask_a; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 172 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 173 | if (cert->dh_tmp != NULL) { |
| 174 | ret->dh_tmp = DHparams_dup(cert->dh_tmp); |
| 175 | if (ret->dh_tmp == NULL) { |
| 176 | OPENSSL_PUT_ERROR(SSL, ssl_cert_dup, ERR_R_DH_LIB); |
| 177 | goto err; |
| 178 | } |
| 179 | if (cert->dh_tmp->priv_key) { |
| 180 | BIGNUM *b = BN_dup(cert->dh_tmp->priv_key); |
| 181 | if (!b) { |
| 182 | OPENSSL_PUT_ERROR(SSL, ssl_cert_dup, ERR_R_BN_LIB); |
| 183 | goto err; |
| 184 | } |
| 185 | ret->dh_tmp->priv_key = b; |
| 186 | } |
| 187 | if (cert->dh_tmp->pub_key) { |
| 188 | BIGNUM *b = BN_dup(cert->dh_tmp->pub_key); |
| 189 | if (!b) { |
| 190 | OPENSSL_PUT_ERROR(SSL, ssl_cert_dup, ERR_R_BN_LIB); |
| 191 | goto err; |
| 192 | } |
| 193 | ret->dh_tmp->pub_key = b; |
| 194 | } |
| 195 | } |
| 196 | ret->dh_tmp_cb = cert->dh_tmp_cb; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 197 | |
David Benjamin | c0f763b | 2015-03-27 02:05:39 -0400 | [diff] [blame] | 198 | ret->ecdh_nid = cert->ecdh_nid; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 199 | ret->ecdh_tmp_cb = cert->ecdh_tmp_cb; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 200 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 201 | if (cert->x509 != NULL) { |
| 202 | ret->x509 = X509_up_ref(cert->x509); |
| 203 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 204 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 205 | if (cert->privatekey != NULL) { |
| 206 | ret->privatekey = EVP_PKEY_up_ref(cert->privatekey); |
| 207 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 208 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 209 | if (cert->chain) { |
| 210 | ret->chain = X509_chain_up_ref(cert->chain); |
| 211 | if (!ret->chain) { |
| 212 | OPENSSL_PUT_ERROR(SSL, ssl_cert_dup, ERR_R_MALLOC_FAILURE); |
| 213 | goto err; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 214 | } |
| 215 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 216 | |
David Benjamin | b85a4c2 | 2015-03-19 14:47:27 -0400 | [diff] [blame] | 217 | /* Copy over signature algorithm configuration. */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 218 | if (cert->conf_sigalgs) { |
David Benjamin | b85a4c2 | 2015-03-19 14:47:27 -0400 | [diff] [blame] | 219 | ret->conf_sigalgs = BUF_memdup(cert->conf_sigalgs, cert->conf_sigalgslen); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 220 | if (!ret->conf_sigalgs) { |
| 221 | goto err; |
| 222 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 223 | ret->conf_sigalgslen = cert->conf_sigalgslen; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 224 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 225 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 226 | if (cert->client_sigalgs) { |
David Benjamin | b85a4c2 | 2015-03-19 14:47:27 -0400 | [diff] [blame] | 227 | ret->client_sigalgs = BUF_memdup(cert->client_sigalgs, |
| 228 | cert->client_sigalgslen); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 229 | if (!ret->client_sigalgs) { |
| 230 | goto err; |
| 231 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 232 | ret->client_sigalgslen = cert->client_sigalgslen; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 233 | } |
David Benjamin | b85a4c2 | 2015-03-19 14:47:27 -0400 | [diff] [blame] | 234 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 235 | /* Copy any custom client certificate types */ |
| 236 | if (cert->client_certificate_types) { |
| 237 | ret->client_certificate_types = BUF_memdup( |
| 238 | cert->client_certificate_types, cert->num_client_certificate_types); |
| 239 | if (!ret->client_certificate_types) { |
| 240 | goto err; |
| 241 | } |
| 242 | ret->num_client_certificate_types = cert->num_client_certificate_types; |
| 243 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 244 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 245 | ret->cert_cb = cert->cert_cb; |
| 246 | ret->cert_cb_arg = cert->cert_cb_arg; |
| 247 | |
| 248 | if (cert->verify_store) { |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 249 | CRYPTO_refcount_inc(&cert->verify_store->references); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 250 | ret->verify_store = cert->verify_store; |
| 251 | } |
| 252 | |
| 253 | if (cert->chain_store) { |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 254 | CRYPTO_refcount_inc(&cert->chain_store->references); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 255 | ret->chain_store = cert->chain_store; |
| 256 | } |
| 257 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 258 | return ret; |
| 259 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 260 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 261 | ssl_cert_free(ret); |
| 262 | return NULL; |
| 263 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 264 | |
| 265 | /* Free up and clear all certificates and chains */ |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 266 | void ssl_cert_clear_certs(CERT *cert) { |
| 267 | if (cert == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 268 | return; |
| 269 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 270 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 271 | X509_free(cert->x509); |
| 272 | cert->x509 = NULL; |
| 273 | EVP_PKEY_free(cert->privatekey); |
| 274 | cert->privatekey = NULL; |
| 275 | sk_X509_pop_free(cert->chain, X509_free); |
| 276 | cert->chain = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 277 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 278 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 279 | void ssl_cert_free(CERT *c) { |
| 280 | if (c == NULL) { |
| 281 | return; |
| 282 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 283 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 284 | DH_free(c->dh_tmp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 285 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 286 | ssl_cert_clear_certs(c); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 287 | OPENSSL_free(c->peer_sigalgs); |
| 288 | OPENSSL_free(c->conf_sigalgs); |
| 289 | OPENSSL_free(c->client_sigalgs); |
| 290 | OPENSSL_free(c->shared_sigalgs); |
| 291 | OPENSSL_free(c->client_certificate_types); |
| 292 | X509_STORE_free(c->verify_store); |
| 293 | X509_STORE_free(c->chain_store); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 294 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 295 | OPENSSL_free(c); |
| 296 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 297 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 298 | int ssl_cert_set0_chain(CERT *cert, STACK_OF(X509) *chain) { |
| 299 | sk_X509_pop_free(cert->chain, X509_free); |
| 300 | cert->chain = chain; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 301 | return 1; |
| 302 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 303 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 304 | int ssl_cert_set1_chain(CERT *cert, STACK_OF(X509) *chain) { |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 305 | STACK_OF(X509) *dchain; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 306 | if (chain == NULL) { |
| 307 | return ssl_cert_set0_chain(cert, NULL); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 308 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 309 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 310 | dchain = X509_chain_up_ref(chain); |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 311 | if (dchain == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 312 | return 0; |
| 313 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 314 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 315 | if (!ssl_cert_set0_chain(cert, dchain)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 316 | sk_X509_pop_free(dchain, X509_free); |
| 317 | return 0; |
| 318 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 319 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 320 | return 1; |
| 321 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 322 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 323 | int ssl_cert_add0_chain_cert(CERT *cert, X509 *x509) { |
| 324 | if (cert->chain == NULL) { |
| 325 | cert->chain = sk_X509_new_null(); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 326 | } |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 327 | if (cert->chain == NULL || !sk_X509_push(cert->chain, x509)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 328 | return 0; |
| 329 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 330 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 331 | return 1; |
| 332 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 333 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 334 | int ssl_cert_add1_chain_cert(CERT *cert, X509 *x509) { |
| 335 | if (!ssl_cert_add0_chain_cert(cert, x509)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 336 | return 0; |
| 337 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 338 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 339 | X509_up_ref(x509); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 340 | return 1; |
| 341 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 342 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 343 | void ssl_cert_set_cert_cb(CERT *c, int (*cb)(SSL *ssl, void *arg), void *arg) { |
| 344 | c->cert_cb = cb; |
| 345 | c->cert_cb_arg = arg; |
| 346 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 347 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 348 | SESS_CERT *ssl_sess_cert_new(void) { |
| 349 | SESS_CERT *ret; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 350 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 351 | ret = OPENSSL_malloc(sizeof *ret); |
| 352 | if (ret == NULL) { |
| 353 | OPENSSL_PUT_ERROR(SSL, ssl_sess_cert_new, ERR_R_MALLOC_FAILURE); |
| 354 | return NULL; |
| 355 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 356 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 357 | memset(ret, 0, sizeof *ret); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 358 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 359 | return ret; |
| 360 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 361 | |
David Benjamin | 680ca96 | 2015-06-18 12:37:23 -0400 | [diff] [blame] | 362 | SESS_CERT *ssl_sess_cert_dup(const SESS_CERT *sess_cert) { |
| 363 | SESS_CERT *ret = ssl_sess_cert_new(); |
| 364 | if (ret == NULL) { |
| 365 | return NULL; |
| 366 | } |
| 367 | |
| 368 | if (sess_cert->cert_chain != NULL) { |
| 369 | ret->cert_chain = X509_chain_up_ref(sess_cert->cert_chain); |
| 370 | if (ret->cert_chain == NULL) { |
| 371 | ssl_sess_cert_free(ret); |
| 372 | return NULL; |
| 373 | } |
| 374 | } |
| 375 | if (sess_cert->peer_cert != NULL) { |
| 376 | ret->peer_cert = X509_up_ref(sess_cert->peer_cert); |
| 377 | } |
| 378 | if (sess_cert->peer_dh_tmp != NULL) { |
| 379 | ret->peer_dh_tmp = sess_cert->peer_dh_tmp; |
| 380 | DH_up_ref(ret->peer_dh_tmp); |
| 381 | } |
| 382 | if (sess_cert->peer_ecdh_tmp != NULL) { |
| 383 | ret->peer_ecdh_tmp = sess_cert->peer_ecdh_tmp; |
| 384 | EC_KEY_up_ref(ret->peer_ecdh_tmp); |
| 385 | } |
| 386 | return ret; |
| 387 | } |
| 388 | |
| 389 | void ssl_sess_cert_free(SESS_CERT *sess_cert) { |
| 390 | if (sess_cert == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 391 | return; |
| 392 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 393 | |
David Benjamin | 680ca96 | 2015-06-18 12:37:23 -0400 | [diff] [blame] | 394 | sk_X509_pop_free(sess_cert->cert_chain, X509_free); |
| 395 | X509_free(sess_cert->peer_cert); |
| 396 | DH_free(sess_cert->peer_dh_tmp); |
| 397 | EC_KEY_free(sess_cert->peer_ecdh_tmp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 398 | |
David Benjamin | 680ca96 | 2015-06-18 12:37:23 -0400 | [diff] [blame] | 399 | OPENSSL_free(sess_cert); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 400 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 401 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 402 | int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 403 | X509 *x; |
| 404 | int i; |
| 405 | X509_STORE *verify_store; |
| 406 | X509_STORE_CTX ctx; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 407 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 408 | if (s->cert->verify_store) { |
| 409 | verify_store = s->cert->verify_store; |
| 410 | } else { |
| 411 | verify_store = s->ctx->cert_store; |
| 412 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 413 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 414 | if (sk == NULL || sk_X509_num(sk) == 0) { |
| 415 | return 0; |
| 416 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 417 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 418 | x = sk_X509_value(sk, 0); |
| 419 | if (!X509_STORE_CTX_init(&ctx, verify_store, x, sk)) { |
| 420 | OPENSSL_PUT_ERROR(SSL, ssl_verify_cert_chain, ERR_R_X509_LIB); |
| 421 | return 0; |
| 422 | } |
| 423 | X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 424 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 425 | /* We need to inherit the verify parameters. These can be determined by the |
| 426 | * context: if its a server it will verify SSL client certificates or vice |
| 427 | * versa. */ |
| 428 | X509_STORE_CTX_set_default(&ctx, s->server ? "ssl_client" : "ssl_server"); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 429 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 430 | /* Anything non-default in "param" should overwrite anything in the ctx. */ |
| 431 | X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx), s->param); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 432 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 433 | if (s->verify_callback) { |
| 434 | X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback); |
| 435 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 436 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 437 | if (s->ctx->app_verify_callback != NULL) { |
| 438 | i = s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg); |
| 439 | } else { |
| 440 | i = X509_verify_cert(&ctx); |
| 441 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 442 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 443 | s->verify_result = ctx.error; |
| 444 | X509_STORE_CTX_cleanup(&ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 445 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 446 | return i; |
| 447 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 448 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 449 | static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list, |
| 450 | STACK_OF(X509_NAME) *name_list) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 451 | sk_X509_NAME_pop_free(*ca_list, X509_NAME_free); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 452 | *ca_list = name_list; |
| 453 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 454 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 455 | STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 456 | size_t i; |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 457 | STACK_OF(X509_NAME) *ret; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 458 | X509_NAME *name; |
| 459 | |
| 460 | ret = sk_X509_NAME_new_null(); |
| 461 | for (i = 0; i < sk_X509_NAME_num(sk); i++) { |
| 462 | name = X509_NAME_dup(sk_X509_NAME_value(sk, i)); |
| 463 | if (name == NULL || !sk_X509_NAME_push(ret, name)) { |
| 464 | sk_X509_NAME_pop_free(ret, X509_NAME_free); |
| 465 | return NULL; |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | return ret; |
| 470 | } |
| 471 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 472 | void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 473 | set_client_CA_list(&(s->client_CA), name_list); |
| 474 | } |
| 475 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 476 | void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 477 | set_client_CA_list(&(ctx->client_CA), name_list); |
| 478 | } |
| 479 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 480 | STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 481 | return ctx->client_CA; |
| 482 | } |
| 483 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 484 | STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 485 | if (s->server) { |
| 486 | if (s->client_CA != NULL) { |
| 487 | return s->client_CA; |
| 488 | } else { |
| 489 | return s->ctx->client_CA; |
| 490 | } |
| 491 | } else { |
| 492 | if ((s->version >> 8) == SSL3_VERSION_MAJOR && s->s3 != NULL) { |
| 493 | return s->s3->tmp.ca_names; |
| 494 | } else { |
| 495 | return NULL; |
| 496 | } |
| 497 | } |
| 498 | } |
| 499 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 500 | static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 501 | X509_NAME *name; |
| 502 | |
| 503 | if (x == NULL) { |
| 504 | return 0; |
| 505 | } |
| 506 | if (*sk == NULL) { |
| 507 | *sk = sk_X509_NAME_new_null(); |
| 508 | if (*sk == NULL) { |
| 509 | return 0; |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | name = X509_NAME_dup(X509_get_subject_name(x)); |
| 514 | if (name == NULL) { |
| 515 | return 0; |
| 516 | } |
| 517 | |
| 518 | if (!sk_X509_NAME_push(*sk, name)) { |
| 519 | X509_NAME_free(name); |
| 520 | return 0; |
| 521 | } |
| 522 | |
| 523 | return 1; |
| 524 | } |
| 525 | |
| 526 | int SSL_add_client_CA(SSL *ssl, X509 *x) { |
| 527 | return add_client_CA(&(ssl->client_CA), x); |
| 528 | } |
| 529 | |
| 530 | int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x) { |
| 531 | return add_client_CA(&(ctx->client_CA), x); |
| 532 | } |
| 533 | |
| 534 | static int xname_cmp(const X509_NAME **a, const X509_NAME **b) { |
| 535 | return X509_NAME_cmp(*a, *b); |
| 536 | } |
| 537 | |
| 538 | /* Load CA certs from a file into a STACK. Note that it is somewhat misnamed; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 539 | * it doesn't really have anything to do with clients (except that a common use |
| 540 | * for a stack of CAs is to send it to the client). Actually, it doesn't have |
| 541 | * much to do with CAs, either, since it will load any old cert. |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 542 | * |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 543 | * \param file the file containing one or more certs. |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 544 | * \return a ::STACK containing the certs. */ |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 545 | STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 546 | BIO *in; |
| 547 | X509 *x = NULL; |
| 548 | X509_NAME *xn = NULL; |
| 549 | STACK_OF(X509_NAME) *ret = NULL, *sk; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 550 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 551 | sk = sk_X509_NAME_new(xname_cmp); |
| 552 | in = BIO_new(BIO_s_file()); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 553 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 554 | if (sk == NULL || in == NULL) { |
| 555 | OPENSSL_PUT_ERROR(SSL, SSL_load_client_CA_file, ERR_R_MALLOC_FAILURE); |
| 556 | goto err; |
| 557 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 558 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 559 | if (!BIO_read_filename(in, file)) { |
| 560 | goto err; |
| 561 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 562 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 563 | for (;;) { |
| 564 | if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) { |
| 565 | break; |
| 566 | } |
| 567 | if (ret == NULL) { |
| 568 | ret = sk_X509_NAME_new_null(); |
| 569 | if (ret == NULL) { |
| 570 | OPENSSL_PUT_ERROR(SSL, SSL_load_client_CA_file, ERR_R_MALLOC_FAILURE); |
| 571 | goto err; |
| 572 | } |
| 573 | } |
| 574 | xn = X509_get_subject_name(x); |
| 575 | if (xn == NULL) { |
| 576 | goto err; |
| 577 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 578 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 579 | /* check for duplicates */ |
| 580 | xn = X509_NAME_dup(xn); |
| 581 | if (xn == NULL) { |
| 582 | goto err; |
| 583 | } |
| 584 | if (sk_X509_NAME_find(sk, NULL, xn)) { |
| 585 | X509_NAME_free(xn); |
| 586 | } else { |
| 587 | sk_X509_NAME_push(sk, xn); |
| 588 | sk_X509_NAME_push(ret, xn); |
| 589 | } |
| 590 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 591 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 592 | if (0) { |
| 593 | err: |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 594 | sk_X509_NAME_pop_free(ret, X509_NAME_free); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 595 | ret = NULL; |
| 596 | } |
| 597 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 598 | sk_X509_NAME_free(sk); |
| 599 | BIO_free(in); |
| 600 | X509_free(x); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 601 | if (ret != NULL) { |
| 602 | ERR_clear_error(); |
| 603 | } |
| 604 | return ret; |
| 605 | } |
| 606 | |
| 607 | /* Add a file of certs to a stack. |
| 608 | * |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 609 | * \param stack the stack to add to. |
| 610 | * \param file the file to add from. All certs in this file that are not |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 611 | * already in the stack will be added. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 612 | * \return 1 for success, 0 for failure. Note that in the case of failure some |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 613 | * certs may have been added to \c stack. */ |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 614 | int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 615 | const char *file) { |
| 616 | BIO *in; |
| 617 | X509 *x = NULL; |
| 618 | X509_NAME *xn = NULL; |
| 619 | int ret = 1; |
| 620 | int (*oldcmp)(const X509_NAME **a, const X509_NAME **b); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 621 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 622 | oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_cmp); |
| 623 | in = BIO_new(BIO_s_file()); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 624 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 625 | if (in == NULL) { |
| 626 | OPENSSL_PUT_ERROR(SSL, SSL_add_file_cert_subjects_to_stack, |
| 627 | ERR_R_MALLOC_FAILURE); |
| 628 | goto err; |
| 629 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 630 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 631 | if (!BIO_read_filename(in, file)) { |
| 632 | goto err; |
| 633 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 634 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 635 | for (;;) { |
| 636 | if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) { |
| 637 | break; |
| 638 | } |
| 639 | xn = X509_get_subject_name(x); |
| 640 | if (xn == NULL) { |
| 641 | goto err; |
| 642 | } |
| 643 | xn = X509_NAME_dup(xn); |
| 644 | if (xn == NULL) { |
| 645 | goto err; |
| 646 | } |
| 647 | if (sk_X509_NAME_find(stack, NULL, xn)) { |
| 648 | X509_NAME_free(xn); |
| 649 | } else { |
| 650 | sk_X509_NAME_push(stack, xn); |
| 651 | } |
| 652 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 653 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 654 | ERR_clear_error(); |
| 655 | |
| 656 | if (0) { |
| 657 | err: |
| 658 | ret = 0; |
| 659 | } |
| 660 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 661 | BIO_free(in); |
| 662 | X509_free(x); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 663 | |
Adam Langley | a307dfd | 2015-01-09 15:42:58 -0800 | [diff] [blame] | 664 | (void) sk_X509_NAME_set_cmp_func(stack, oldcmp); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 665 | |
| 666 | return ret; |
| 667 | } |
| 668 | |
| 669 | /* Add a directory of certs to a stack. |
| 670 | * |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 671 | * \param stack the stack to append to. |
| 672 | * \param dir the directory to append from. All files in this directory will be |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 673 | * examined as potential certs. Any that are acceptable to |
| 674 | * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will |
| 675 | * be included. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 676 | * \return 1 for success, 0 for failure. Note that in the case of failure some |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 677 | * certs may have been added to \c stack. */ |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 678 | int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 679 | const char *dir) { |
| 680 | OPENSSL_DIR_CTX *d = NULL; |
| 681 | const char *filename; |
| 682 | int ret = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 683 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 684 | /* Note that a side effect is that the CAs will be sorted by name */ |
| 685 | while ((filename = OPENSSL_DIR_read(&d, dir))) { |
| 686 | char buf[1024]; |
| 687 | int r; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 688 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 689 | if (strlen(dir) + strlen(filename) + 2 > sizeof(buf)) { |
| 690 | OPENSSL_PUT_ERROR(SSL, SSL_add_dir_cert_subjects_to_stack, |
| 691 | SSL_R_PATH_TOO_LONG); |
| 692 | goto err; |
| 693 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 694 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 695 | r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename); |
| 696 | if (r <= 0 || r >= (int)sizeof(buf) || |
| 697 | !SSL_add_file_cert_subjects_to_stack(stack, buf)) { |
| 698 | goto err; |
| 699 | } |
| 700 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 701 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 702 | if (errno) { |
HÃ¥vard Molland | ab2479a | 2015-03-20 13:15:39 +0100 | [diff] [blame] | 703 | OPENSSL_PUT_ERROR(SSL, SSL_add_dir_cert_subjects_to_stack, ERR_R_SYS_LIB); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 704 | ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')"); |
| 705 | goto err; |
| 706 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 707 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 708 | ret = 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 709 | |
| 710 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 711 | if (d) { |
| 712 | OPENSSL_DIR_end(&d); |
| 713 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 714 | return ret; |
| 715 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 716 | |
| 717 | /* Add a certificate to a BUF_MEM structure */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 718 | static int ssl_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x) { |
| 719 | int n; |
| 720 | uint8_t *p; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 721 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 722 | n = i2d_X509(x, NULL); |
| 723 | if (!BUF_MEM_grow_clean(buf, (int)(n + (*l) + 3))) { |
| 724 | OPENSSL_PUT_ERROR(SSL, ssl_add_cert_to_buf, ERR_R_BUF_LIB); |
| 725 | return 0; |
| 726 | } |
| 727 | p = (uint8_t *)&(buf->data[*l]); |
| 728 | l2n3(n, p); |
| 729 | i2d_X509(x, &p); |
| 730 | *l += n + 3; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 731 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 732 | return 1; |
| 733 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 734 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 735 | /* Add certificate chain to internal SSL BUF_MEM structure. */ |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 736 | int ssl_add_cert_chain(SSL *ssl, unsigned long *l) { |
| 737 | CERT *cert = ssl->cert; |
| 738 | BUF_MEM *buf = ssl->init_buf; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 739 | int no_chain = 0; |
| 740 | size_t i; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 741 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 742 | X509 *x = cert->x509; |
| 743 | STACK_OF(X509) *chain = cert->chain; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 744 | X509_STORE *chain_store; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 745 | |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 746 | if (x == NULL) { |
| 747 | OPENSSL_PUT_ERROR(SSL, ssl_add_cert_chain, SSL_R_NO_CERTIFICATE_SET); |
| 748 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 749 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 750 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 751 | if (ssl->cert->chain_store) { |
| 752 | chain_store = ssl->cert->chain_store; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 753 | } else { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 754 | chain_store = ssl->ctx->cert_store; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 755 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 756 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 757 | if ((ssl->mode & SSL_MODE_NO_AUTO_CHAIN) || chain != NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 758 | no_chain = 1; |
| 759 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 760 | |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 761 | if (no_chain) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 762 | if (!ssl_add_cert_to_buf(buf, l, x)) { |
| 763 | return 0; |
| 764 | } |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 765 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 766 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 767 | x = sk_X509_value(chain, i); |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 768 | if (!ssl_add_cert_to_buf(buf, l, x)) { |
| 769 | return 0; |
| 770 | } |
| 771 | } |
| 772 | } else { |
| 773 | X509_STORE_CTX xs_ctx; |
| 774 | |
| 775 | if (!X509_STORE_CTX_init(&xs_ctx, chain_store, x, NULL)) { |
| 776 | OPENSSL_PUT_ERROR(SSL, ssl_add_cert_chain, ERR_R_X509_LIB); |
| 777 | return 0; |
| 778 | } |
| 779 | X509_verify_cert(&xs_ctx); |
| 780 | /* Don't leave errors in the queue */ |
| 781 | ERR_clear_error(); |
| 782 | for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) { |
| 783 | x = sk_X509_value(xs_ctx.chain, i); |
| 784 | |
| 785 | if (!ssl_add_cert_to_buf(buf, l, x)) { |
| 786 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 787 | return 0; |
| 788 | } |
| 789 | } |
| 790 | X509_STORE_CTX_cleanup(&xs_ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | return 1; |
| 794 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 795 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 796 | int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref) { |
| 797 | X509_STORE **pstore; |
| 798 | if (chain) { |
| 799 | pstore = &c->chain_store; |
| 800 | } else { |
| 801 | pstore = &c->verify_store; |
| 802 | } |
| 803 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 804 | X509_STORE_free(*pstore); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 805 | *pstore = store; |
| 806 | |
| 807 | if (ref && store) { |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 808 | CRYPTO_refcount_inc(&store->references); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 809 | } |
| 810 | return 1; |
| 811 | } |
David Benjamin | 11c0f8e | 2015-07-06 00:18:15 -0400 | [diff] [blame^] | 812 | |
| 813 | int SSL_CTX_set0_chain(SSL_CTX *ctx, STACK_OF(X509) *chain) { |
| 814 | return ssl_cert_set0_chain(ctx->cert, chain); |
| 815 | } |
| 816 | |
| 817 | int SSL_CTX_set1_chain(SSL_CTX *ctx, STACK_OF(X509) *chain) { |
| 818 | return ssl_cert_set1_chain(ctx->cert, chain); |
| 819 | } |
| 820 | |
| 821 | int SSL_set0_chain(SSL *ssl, STACK_OF(X509) *chain) { |
| 822 | return ssl_cert_set0_chain(ssl->cert, chain); |
| 823 | } |
| 824 | |
| 825 | int SSL_set1_chain(SSL *ssl, STACK_OF(X509) *chain) { |
| 826 | return ssl_cert_set1_chain(ssl->cert, chain); |
| 827 | } |
| 828 | |
| 829 | int SSL_CTX_add0_chain_cert(SSL_CTX *ctx, X509 *x509) { |
| 830 | return ssl_cert_add0_chain_cert(ctx->cert, x509); |
| 831 | } |
| 832 | |
| 833 | int SSL_CTX_add1_chain_cert(SSL_CTX *ctx, X509 *x509) { |
| 834 | return ssl_cert_add1_chain_cert(ctx->cert, x509); |
| 835 | } |
| 836 | |
| 837 | int SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *x509) { |
| 838 | return SSL_CTX_add0_chain_cert(ctx, x509); |
| 839 | } |
| 840 | |
| 841 | int SSL_add0_chain_cert(SSL *ssl, X509 *x509) { |
| 842 | return ssl_cert_add0_chain_cert(ssl->cert, x509); |
| 843 | } |
| 844 | |
| 845 | int SSL_add1_chain_cert(SSL *ssl, X509 *x509) { |
| 846 | return ssl_cert_add1_chain_cert(ssl->cert, x509); |
| 847 | } |
| 848 | |
| 849 | int SSL_CTX_clear_chain_certs(SSL_CTX *ctx) { |
| 850 | return SSL_CTX_set0_chain(ctx, NULL); |
| 851 | } |
| 852 | |
| 853 | int SSL_CTX_clear_extra_chain_certs(SSL_CTX *ctx) { |
| 854 | return SSL_CTX_clear_chain_certs(ctx); |
| 855 | } |
| 856 | |
| 857 | int SSL_clear_chain_certs(SSL *ssl) { |
| 858 | return SSL_set0_chain(ssl, NULL); |
| 859 | } |
| 860 | |
| 861 | int SSL_CTX_get0_chain_certs(const SSL_CTX *ctx, STACK_OF(X509) **out_chain) { |
| 862 | *out_chain = ctx->cert->chain; |
| 863 | return 1; |
| 864 | } |
| 865 | |
| 866 | int SSL_CTX_get_extra_chain_certs(const SSL_CTX *ctx, |
| 867 | STACK_OF(X509) **out_chain) { |
| 868 | return SSL_CTX_get0_chain_certs(ctx, out_chain); |
| 869 | } |
| 870 | |
| 871 | int SSL_get0_chain_certs(const SSL *ssl, STACK_OF(X509) **out_chain) { |
| 872 | *out_chain = ssl->cert->chain; |
| 873 | return 1; |
| 874 | } |