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 | 443a1f6 | 2015-09-04 15:05:05 -0400 | [diff] [blame] | 115 | #include <openssl/ssl.h> |
| 116 | |
Steven Valdez | bf5aa84 | 2016-07-15 07:07:40 -0400 | [diff] [blame] | 117 | #include <assert.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 118 | #include <string.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 119 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 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> |
David Benjamin | 5c900c8 | 2016-07-13 23:03:26 -0400 | [diff] [blame] | 126 | #include <openssl/sha.h> |
David Benjamin | 680ca96 | 2015-06-18 12:37:23 -0400 | [diff] [blame] | 127 | #include <openssl/x509.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 128 | #include <openssl/x509v3.h> |
| 129 | |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 130 | #include "../crypto/internal.h" |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 131 | #include "internal.h" |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 132 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 133 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 134 | int SSL_get_ex_data_X509_STORE_CTX_idx(void) { |
David Benjamin | aa58513 | 2015-06-29 23:36:17 -0400 | [diff] [blame] | 135 | /* The ex_data index to go from |X509_STORE_CTX| to |SSL| always uses the |
| 136 | * reserved app_data slot. Before ex_data was introduced, app_data was used. |
| 137 | * Avoid breaking any software which assumes |X509_STORE_CTX_get_app_data| |
| 138 | * works. */ |
| 139 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 140 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 141 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 142 | CERT *ssl_cert_new(void) { |
Brian Smith | 5ba0689 | 2016-02-07 09:36:04 -1000 | [diff] [blame] | 143 | CERT *ret = OPENSSL_malloc(sizeof(CERT)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 144 | if (ret == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 145 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 146 | return NULL; |
| 147 | } |
| 148 | memset(ret, 0, sizeof(CERT)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 149 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 150 | return ret; |
| 151 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 152 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 153 | CERT *ssl_cert_dup(CERT *cert) { |
Brian Smith | 5ba0689 | 2016-02-07 09:36:04 -1000 | [diff] [blame] | 154 | CERT *ret = OPENSSL_malloc(sizeof(CERT)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 155 | if (ret == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 156 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 157 | return NULL; |
| 158 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 159 | memset(ret, 0, sizeof(CERT)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 160 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 161 | if (cert->x509 != NULL) { |
David Benjamin | 96a16cd | 2016-08-11 12:14:47 -0400 | [diff] [blame] | 162 | X509_up_ref(cert->x509); |
| 163 | ret->x509 = cert->x509; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 164 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 165 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 166 | if (cert->privatekey != NULL) { |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 167 | EVP_PKEY_up_ref(cert->privatekey); |
| 168 | ret->privatekey = cert->privatekey; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 169 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 170 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 171 | if (cert->chain) { |
| 172 | ret->chain = X509_chain_up_ref(cert->chain); |
| 173 | if (!ret->chain) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 174 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 175 | goto err; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 176 | } |
| 177 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 178 | |
Tom Thorogood | 66b2fe8 | 2016-03-06 20:08:38 +1030 | [diff] [blame] | 179 | ret->key_method = cert->key_method; |
| 180 | |
David Benjamin | 0fc37ef | 2016-08-17 15:29:46 -0400 | [diff] [blame] | 181 | ret->mask_k = cert->mask_k; |
| 182 | ret->mask_a = cert->mask_a; |
| 183 | |
| 184 | if (cert->dh_tmp != NULL) { |
| 185 | ret->dh_tmp = DHparams_dup(cert->dh_tmp); |
| 186 | if (ret->dh_tmp == NULL) { |
| 187 | OPENSSL_PUT_ERROR(SSL, ERR_R_DH_LIB); |
| 188 | goto err; |
| 189 | } |
| 190 | } |
| 191 | ret->dh_tmp_cb = cert->dh_tmp_cb; |
| 192 | |
| 193 | if (cert->sigalgs != NULL) { |
| 194 | ret->sigalgs = |
| 195 | BUF_memdup(cert->sigalgs, cert->num_sigalgs * sizeof(cert->sigalgs[0])); |
| 196 | if (ret->sigalgs == NULL) { |
| 197 | goto err; |
| 198 | } |
| 199 | } |
| 200 | ret->num_sigalgs = cert->num_sigalgs; |
| 201 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 202 | ret->cert_cb = cert->cert_cb; |
| 203 | ret->cert_cb_arg = cert->cert_cb_arg; |
| 204 | |
Adam Langley | d323f4b | 2016-03-01 15:58:14 -0800 | [diff] [blame] | 205 | if (cert->verify_store != NULL) { |
| 206 | X509_STORE_up_ref(cert->verify_store); |
| 207 | ret->verify_store = cert->verify_store; |
| 208 | } |
| 209 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 210 | return ret; |
| 211 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 212 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 213 | ssl_cert_free(ret); |
| 214 | return NULL; |
| 215 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 216 | |
| 217 | /* Free up and clear all certificates and chains */ |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 218 | void ssl_cert_clear_certs(CERT *cert) { |
| 219 | if (cert == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 220 | return; |
| 221 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 222 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 223 | X509_free(cert->x509); |
| 224 | cert->x509 = NULL; |
| 225 | EVP_PKEY_free(cert->privatekey); |
| 226 | cert->privatekey = NULL; |
| 227 | sk_X509_pop_free(cert->chain, X509_free); |
| 228 | cert->chain = NULL; |
David Benjamin | 71d2e54 | 2015-07-06 00:30:25 -0400 | [diff] [blame] | 229 | cert->key_method = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 230 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 231 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 232 | void ssl_cert_free(CERT *c) { |
| 233 | if (c == NULL) { |
| 234 | return; |
| 235 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 236 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 237 | DH_free(c->dh_tmp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 238 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 239 | ssl_cert_clear_certs(c); |
David Benjamin | d246b81 | 2016-07-08 15:07:02 -0700 | [diff] [blame] | 240 | OPENSSL_free(c->sigalgs); |
Adam Langley | d323f4b | 2016-03-01 15:58:14 -0800 | [diff] [blame] | 241 | X509_STORE_free(c->verify_store); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 242 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 243 | OPENSSL_free(c); |
| 244 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 245 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 246 | int ssl_cert_set0_chain(CERT *cert, STACK_OF(X509) *chain) { |
| 247 | sk_X509_pop_free(cert->chain, X509_free); |
| 248 | cert->chain = chain; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 249 | return 1; |
| 250 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 251 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 252 | int ssl_cert_set1_chain(CERT *cert, STACK_OF(X509) *chain) { |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 253 | STACK_OF(X509) *dchain; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 254 | if (chain == NULL) { |
| 255 | return ssl_cert_set0_chain(cert, NULL); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 256 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 257 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 258 | dchain = X509_chain_up_ref(chain); |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 259 | if (dchain == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 260 | return 0; |
| 261 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 262 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 263 | if (!ssl_cert_set0_chain(cert, dchain)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 264 | sk_X509_pop_free(dchain, X509_free); |
| 265 | return 0; |
| 266 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 267 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 268 | return 1; |
| 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 | int ssl_cert_add0_chain_cert(CERT *cert, X509 *x509) { |
| 272 | if (cert->chain == NULL) { |
| 273 | cert->chain = sk_X509_new_null(); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 274 | } |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 275 | if (cert->chain == NULL || !sk_X509_push(cert->chain, x509)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 276 | return 0; |
| 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 | return 1; |
| 280 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 281 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 282 | int ssl_cert_add1_chain_cert(CERT *cert, X509 *x509) { |
| 283 | if (!ssl_cert_add0_chain_cert(cert, x509)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 284 | return 0; |
| 285 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 286 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 287 | X509_up_ref(x509); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 288 | return 1; |
| 289 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 290 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 291 | void ssl_cert_set_cert_cb(CERT *c, int (*cb)(SSL *ssl, void *arg), void *arg) { |
| 292 | c->cert_cb = cb; |
| 293 | c->cert_cb_arg = arg; |
| 294 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 295 | |
David Benjamin | 7aa31d6 | 2016-08-08 21:38:32 -0400 | [diff] [blame] | 296 | int ssl_verify_cert_chain(SSL *ssl, long *out_verify_result, |
| 297 | STACK_OF(X509) *cert_chain) { |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 298 | if (cert_chain == NULL || sk_X509_num(cert_chain) == 0) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 299 | return 0; |
| 300 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 301 | |
Adam Langley | d323f4b | 2016-03-01 15:58:14 -0800 | [diff] [blame] | 302 | X509_STORE *verify_store = ssl->ctx->cert_store; |
| 303 | if (ssl->cert->verify_store != NULL) { |
| 304 | verify_store = ssl->cert->verify_store; |
| 305 | } |
| 306 | |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 307 | X509 *leaf = sk_X509_value(cert_chain, 0); |
| 308 | int ret = 0; |
| 309 | X509_STORE_CTX ctx; |
Adam Langley | d323f4b | 2016-03-01 15:58:14 -0800 | [diff] [blame] | 310 | if (!X509_STORE_CTX_init(&ctx, verify_store, leaf, cert_chain)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 311 | OPENSSL_PUT_ERROR(SSL, ERR_R_X509_LIB); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 312 | return 0; |
| 313 | } |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 314 | if (!X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), |
| 315 | ssl)) { |
| 316 | goto err; |
| 317 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 318 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 319 | /* We need to inherit the verify parameters. These can be determined by the |
| 320 | * context: if its a server it will verify SSL client certificates or vice |
| 321 | * versa. */ |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 322 | X509_STORE_CTX_set_default(&ctx, ssl->server ? "ssl_client" : "ssl_server"); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 323 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 324 | /* Anything non-default in "param" should overwrite anything in the ctx. */ |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 325 | X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx), ssl->param); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 326 | |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 327 | if (ssl->verify_callback) { |
| 328 | X509_STORE_CTX_set_verify_cb(&ctx, ssl->verify_callback); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 329 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 330 | |
David Benjamin | e455e51 | 2016-08-01 20:11:13 -0400 | [diff] [blame] | 331 | int verify_ret; |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 332 | if (ssl->ctx->app_verify_callback != NULL) { |
David Benjamin | e455e51 | 2016-08-01 20:11:13 -0400 | [diff] [blame] | 333 | verify_ret = ssl->ctx->app_verify_callback(&ctx, ssl->ctx->app_verify_arg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 334 | } else { |
David Benjamin | e455e51 | 2016-08-01 20:11:13 -0400 | [diff] [blame] | 335 | verify_ret = X509_verify_cert(&ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 336 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 337 | |
Adam Langley | a6cd185 | 2016-08-26 09:38:13 -0700 | [diff] [blame] | 338 | *out_verify_result = ctx.error; |
| 339 | |
David Benjamin | e455e51 | 2016-08-01 20:11:13 -0400 | [diff] [blame] | 340 | /* If |SSL_VERIFY_NONE|, the error is non-fatal, but we keep the result. */ |
| 341 | if (verify_ret <= 0 && ssl->verify_mode != SSL_VERIFY_NONE) { |
David Benjamin | 7aa31d6 | 2016-08-08 21:38:32 -0400 | [diff] [blame] | 342 | ssl3_send_alert(ssl, SSL3_AL_FATAL, ssl_verify_alarm_type(ctx.error)); |
David Benjamin | e455e51 | 2016-08-01 20:11:13 -0400 | [diff] [blame] | 343 | OPENSSL_PUT_ERROR(SSL, SSL_R_CERTIFICATE_VERIFY_FAILED); |
| 344 | goto err; |
| 345 | } |
| 346 | |
| 347 | ERR_clear_error(); |
| 348 | ret = 1; |
| 349 | |
David Benjamin | 306ece3 | 2015-09-17 13:46:22 -0400 | [diff] [blame] | 350 | err: |
| 351 | X509_STORE_CTX_cleanup(&ctx); |
| 352 | return ret; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 353 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 354 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 355 | static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list, |
| 356 | STACK_OF(X509_NAME) *name_list) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 357 | sk_X509_NAME_pop_free(*ca_list, X509_NAME_free); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 358 | *ca_list = name_list; |
| 359 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 360 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 361 | STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *list) { |
| 362 | STACK_OF(X509_NAME) *ret = sk_X509_NAME_new_null(); |
| 363 | if (ret == NULL) { |
| 364 | return NULL; |
| 365 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 366 | |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 367 | for (size_t i = 0; i < sk_X509_NAME_num(list); i++) { |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 368 | X509_NAME *name = X509_NAME_dup(sk_X509_NAME_value(list, i)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 369 | if (name == NULL || !sk_X509_NAME_push(ret, name)) { |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 370 | X509_NAME_free(name); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 371 | sk_X509_NAME_pop_free(ret, X509_NAME_free); |
| 372 | return NULL; |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | return ret; |
| 377 | } |
| 378 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 379 | void SSL_set_client_CA_list(SSL *ssl, STACK_OF(X509_NAME) *name_list) { |
| 380 | set_client_CA_list(&ssl->client_CA, name_list); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 381 | } |
| 382 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 383 | void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) { |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 384 | set_client_CA_list(&ctx->client_CA, name_list); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 385 | } |
| 386 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 387 | 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] | 388 | return ctx->client_CA; |
| 389 | } |
| 390 | |
David Benjamin | 1d128f3 | 2015-09-08 17:41:40 -0400 | [diff] [blame] | 391 | STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *ssl) { |
| 392 | /* For historical reasons, this function is used both to query configuration |
| 393 | * state on a server as well as handshake state on a client. However, whether |
| 394 | * |ssl| is a client or server is not known until explicitly configured with |
| 395 | * |SSL_set_connect_state|. If |handshake_func| is NULL, |ssl| is in an |
| 396 | * indeterminate mode and |ssl->server| is unset. */ |
| 397 | if (ssl->handshake_func != NULL && !ssl->server) { |
| 398 | return ssl->s3->tmp.ca_names; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 399 | } |
David Benjamin | 1d128f3 | 2015-09-08 17:41:40 -0400 | [diff] [blame] | 400 | |
| 401 | if (ssl->client_CA != NULL) { |
| 402 | return ssl->client_CA; |
| 403 | } |
| 404 | return ssl->ctx->client_CA; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 405 | } |
| 406 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 407 | static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x509) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 408 | X509_NAME *name; |
| 409 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 410 | if (x509 == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 411 | return 0; |
| 412 | } |
| 413 | if (*sk == NULL) { |
| 414 | *sk = sk_X509_NAME_new_null(); |
| 415 | if (*sk == NULL) { |
| 416 | return 0; |
| 417 | } |
| 418 | } |
| 419 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 420 | name = X509_NAME_dup(X509_get_subject_name(x509)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 421 | if (name == NULL) { |
| 422 | return 0; |
| 423 | } |
| 424 | |
| 425 | if (!sk_X509_NAME_push(*sk, name)) { |
| 426 | X509_NAME_free(name); |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | return 1; |
| 431 | } |
| 432 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 433 | int SSL_add_client_CA(SSL *ssl, X509 *x509) { |
| 434 | return add_client_CA(&ssl->client_CA, x509); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 435 | } |
| 436 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 437 | int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x509) { |
| 438 | return add_client_CA(&ctx->client_CA, x509); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 439 | } |
| 440 | |
David Benjamin | 32a66d5 | 2016-07-13 22:03:11 -0400 | [diff] [blame] | 441 | int ssl_has_certificate(const SSL *ssl) { |
| 442 | return ssl->cert->x509 != NULL && ssl_has_private_key(ssl); |
| 443 | } |
| 444 | |
David Benjamin | 5c900c8 | 2016-07-13 23:03:26 -0400 | [diff] [blame] | 445 | STACK_OF(X509) *ssl_parse_cert_chain(SSL *ssl, uint8_t *out_alert, |
| 446 | uint8_t *out_leaf_sha256, CBS *cbs) { |
| 447 | STACK_OF(X509) *ret = sk_X509_new_null(); |
| 448 | if (ret == NULL) { |
| 449 | *out_alert = SSL_AD_INTERNAL_ERROR; |
| 450 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 451 | return NULL; |
| 452 | } |
| 453 | |
| 454 | X509 *x = NULL; |
| 455 | CBS certificate_list; |
| 456 | if (!CBS_get_u24_length_prefixed(cbs, &certificate_list)) { |
| 457 | *out_alert = SSL_AD_DECODE_ERROR; |
| 458 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
| 459 | goto err; |
| 460 | } |
| 461 | |
| 462 | while (CBS_len(&certificate_list) > 0) { |
| 463 | CBS certificate; |
| 464 | if (!CBS_get_u24_length_prefixed(&certificate_list, &certificate)) { |
| 465 | *out_alert = SSL_AD_DECODE_ERROR; |
| 466 | OPENSSL_PUT_ERROR(SSL, SSL_R_CERT_LENGTH_MISMATCH); |
| 467 | goto err; |
| 468 | } |
| 469 | |
| 470 | /* Retain the hash of the leaf certificate if requested. */ |
| 471 | if (sk_X509_num(ret) == 0 && out_leaf_sha256 != NULL) { |
| 472 | SHA256(CBS_data(&certificate), CBS_len(&certificate), out_leaf_sha256); |
| 473 | } |
| 474 | |
| 475 | /* A u24 length cannot overflow a long. */ |
| 476 | const uint8_t *data = CBS_data(&certificate); |
| 477 | x = d2i_X509(NULL, &data, (long)CBS_len(&certificate)); |
| 478 | if (x == NULL || data != CBS_data(&certificate) + CBS_len(&certificate)) { |
| 479 | *out_alert = SSL_AD_DECODE_ERROR; |
| 480 | goto err; |
| 481 | } |
| 482 | if (!sk_X509_push(ret, x)) { |
| 483 | *out_alert = SSL_AD_INTERNAL_ERROR; |
| 484 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 485 | goto err; |
| 486 | } |
| 487 | x = NULL; |
| 488 | } |
| 489 | |
| 490 | return ret; |
| 491 | |
| 492 | err: |
| 493 | X509_free(x); |
| 494 | sk_X509_pop_free(ret, X509_free); |
| 495 | return NULL; |
| 496 | } |
| 497 | |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 498 | int ssl_add_cert_to_cbb(CBB *cbb, X509 *x509) { |
| 499 | int len = i2d_X509(x509, NULL); |
| 500 | if (len < 0) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 501 | return 0; |
| 502 | } |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 503 | uint8_t *buf; |
| 504 | if (!CBB_add_space(cbb, &buf, len)) { |
| 505 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 506 | return 0; |
Steven Valdez | b32a915 | 2016-04-26 12:57:22 -0400 | [diff] [blame] | 507 | } |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 508 | if (buf != NULL && i2d_X509(x509, &buf) < 0) { |
| 509 | return 0; |
| 510 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 511 | return 1; |
| 512 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 513 | |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 514 | static int ssl_add_cert_with_length(CBB *cbb, X509 *x509) { |
| 515 | CBB child; |
| 516 | return CBB_add_u24_length_prefixed(cbb, &child) && |
| 517 | ssl_add_cert_to_cbb(&child, x509) && |
| 518 | CBB_flush(cbb); |
| 519 | } |
| 520 | |
| 521 | int ssl_add_cert_chain(SSL *ssl, CBB *cbb) { |
David Benjamin | 32a66d5 | 2016-07-13 22:03:11 -0400 | [diff] [blame] | 522 | if (!ssl_has_certificate(ssl)) { |
| 523 | return CBB_add_u24(cbb, 0); |
| 524 | } |
| 525 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 526 | CERT *cert = ssl->cert; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 527 | X509 *x = cert->x509; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 528 | |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 529 | CBB child; |
| 530 | if (!CBB_add_u24_length_prefixed(cbb, &child)) { |
| 531 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 532 | return 0; |
| 533 | } |
| 534 | |
| 535 | int no_chain = 0; |
| 536 | STACK_OF(X509) *chain = cert->chain; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 537 | if ((ssl->mode & SSL_MODE_NO_AUTO_CHAIN) || chain != NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 538 | no_chain = 1; |
| 539 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 540 | |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 541 | if (no_chain) { |
Steven Valdez | 57a6f3c | 2016-06-28 15:37:37 -0400 | [diff] [blame] | 542 | if (!ssl_add_cert_with_length(&child, x)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 543 | return 0; |
| 544 | } |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 545 | |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 546 | for (size_t i = 0; i < sk_X509_num(chain); i++) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 547 | x = sk_X509_value(chain, i); |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 548 | if (!ssl_add_cert_with_length(&child, x)) { |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 549 | return 0; |
| 550 | } |
| 551 | } |
| 552 | } else { |
| 553 | X509_STORE_CTX xs_ctx; |
| 554 | |
David Benjamin | d27441a | 2015-08-09 11:05:17 -0400 | [diff] [blame] | 555 | if (!X509_STORE_CTX_init(&xs_ctx, ssl->ctx->cert_store, x, NULL)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 556 | OPENSSL_PUT_ERROR(SSL, ERR_R_X509_LIB); |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 557 | return 0; |
| 558 | } |
| 559 | X509_verify_cert(&xs_ctx); |
| 560 | /* Don't leave errors in the queue */ |
| 561 | ERR_clear_error(); |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 562 | |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 563 | for (size_t i = 0; i < sk_X509_num(xs_ctx.chain); i++) { |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 564 | x = sk_X509_value(xs_ctx.chain, i); |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 565 | if (!ssl_add_cert_with_length(&child, x)) { |
David Benjamin | 605641e | 2015-05-03 15:14:04 -0400 | [diff] [blame] | 566 | X509_STORE_CTX_cleanup(&xs_ctx); |
| 567 | return 0; |
| 568 | } |
| 569 | } |
| 570 | X509_STORE_CTX_cleanup(&xs_ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 571 | } |
| 572 | |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 573 | return CBB_flush(cbb); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 574 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 575 | |
David Benjamin | e0332e8 | 2016-07-13 22:40:36 -0400 | [diff] [blame] | 576 | static int ca_dn_cmp(const X509_NAME **a, const X509_NAME **b) { |
| 577 | return X509_NAME_cmp(*a, *b); |
| 578 | } |
| 579 | |
| 580 | STACK_OF(X509_NAME) * |
| 581 | ssl_parse_client_CA_list(SSL *ssl, uint8_t *out_alert, CBS *cbs) { |
| 582 | STACK_OF(X509_NAME) *ret = sk_X509_NAME_new(ca_dn_cmp); |
| 583 | X509_NAME *name = NULL; |
| 584 | if (ret == NULL) { |
| 585 | *out_alert = SSL_AD_INTERNAL_ERROR; |
| 586 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 587 | return NULL; |
| 588 | } |
| 589 | |
| 590 | CBS child; |
| 591 | if (!CBS_get_u16_length_prefixed(cbs, &child)) { |
| 592 | *out_alert = SSL_AD_DECODE_ERROR; |
| 593 | OPENSSL_PUT_ERROR(SSL, SSL_R_LENGTH_MISMATCH); |
| 594 | goto err; |
| 595 | } |
| 596 | |
| 597 | while (CBS_len(&child) > 0) { |
| 598 | CBS distinguished_name; |
| 599 | if (!CBS_get_u16_length_prefixed(&child, &distinguished_name)) { |
| 600 | *out_alert = SSL_AD_DECODE_ERROR; |
| 601 | OPENSSL_PUT_ERROR(SSL, SSL_R_CA_DN_TOO_LONG); |
| 602 | goto err; |
| 603 | } |
| 604 | |
| 605 | const uint8_t *ptr = CBS_data(&distinguished_name); |
| 606 | /* A u16 length cannot overflow a long. */ |
| 607 | name = d2i_X509_NAME(NULL, &ptr, (long)CBS_len(&distinguished_name)); |
| 608 | if (name == NULL || |
| 609 | ptr != CBS_data(&distinguished_name) + CBS_len(&distinguished_name)) { |
| 610 | *out_alert = SSL_AD_DECODE_ERROR; |
| 611 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
| 612 | goto err; |
| 613 | } |
| 614 | |
| 615 | if (!sk_X509_NAME_push(ret, name)) { |
| 616 | *out_alert = SSL_AD_INTERNAL_ERROR; |
| 617 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 618 | goto err; |
| 619 | } |
| 620 | name = NULL; |
| 621 | } |
| 622 | |
| 623 | return ret; |
| 624 | |
| 625 | err: |
| 626 | X509_NAME_free(name); |
| 627 | sk_X509_NAME_pop_free(ret, X509_NAME_free); |
| 628 | return NULL; |
| 629 | } |
| 630 | |
David Benjamin | 32a66d5 | 2016-07-13 22:03:11 -0400 | [diff] [blame] | 631 | int ssl_add_client_CA_list(SSL *ssl, CBB *cbb) { |
| 632 | CBB child, name_cbb; |
| 633 | if (!CBB_add_u16_length_prefixed(cbb, &child)) { |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | STACK_OF(X509_NAME) *sk = SSL_get_client_CA_list(ssl); |
| 638 | if (sk == NULL) { |
| 639 | return CBB_flush(cbb); |
| 640 | } |
| 641 | |
| 642 | for (size_t i = 0; i < sk_X509_NAME_num(sk); i++) { |
| 643 | X509_NAME *name = sk_X509_NAME_value(sk, i); |
| 644 | int len = i2d_X509_NAME(name, NULL); |
| 645 | if (len < 0) { |
| 646 | return 0; |
| 647 | } |
| 648 | uint8_t *ptr; |
| 649 | if (!CBB_add_u16_length_prefixed(&child, &name_cbb) || |
| 650 | !CBB_add_space(&name_cbb, &ptr, (size_t)len) || |
| 651 | (len > 0 && i2d_X509_NAME(name, &ptr) < 0)) { |
| 652 | return 0; |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | return CBB_flush(cbb); |
| 657 | } |
| 658 | |
David Benjamin | 13f1ebe | 2016-07-20 10:11:04 +0200 | [diff] [blame] | 659 | int ssl_do_client_cert_cb(SSL *ssl, int *out_should_retry) { |
| 660 | if (ssl_has_certificate(ssl) || ssl->ctx->client_cert_cb == NULL) { |
| 661 | return 1; |
| 662 | } |
| 663 | |
| 664 | X509 *x509 = NULL; |
| 665 | EVP_PKEY *pkey = NULL; |
| 666 | int ret = ssl->ctx->client_cert_cb(ssl, &x509, &pkey); |
| 667 | if (ret < 0) { |
| 668 | *out_should_retry = 1; |
| 669 | return 0; |
| 670 | } |
| 671 | |
| 672 | if (ret != 0) { |
| 673 | if (!SSL_use_certificate(ssl, x509) || |
| 674 | !SSL_use_PrivateKey(ssl, pkey)) { |
| 675 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 676 | *out_should_retry = 0; |
| 677 | return 0; |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | X509_free(x509); |
| 682 | EVP_PKEY_free(pkey); |
| 683 | return 1; |
| 684 | } |
| 685 | |
Adam Langley | d323f4b | 2016-03-01 15:58:14 -0800 | [diff] [blame] | 686 | static int set_cert_store(X509_STORE **store_ptr, X509_STORE *new_store, int take_ref) { |
| 687 | X509_STORE_free(*store_ptr); |
| 688 | *store_ptr = new_store; |
| 689 | |
| 690 | if (new_store != NULL && take_ref) { |
| 691 | X509_STORE_up_ref(new_store); |
| 692 | } |
| 693 | |
| 694 | return 1; |
| 695 | } |
| 696 | |
| 697 | int SSL_CTX_set0_verify_cert_store(SSL_CTX *ctx, X509_STORE *store) { |
| 698 | return set_cert_store(&ctx->cert->verify_store, store, 0); |
| 699 | } |
| 700 | |
| 701 | int SSL_CTX_set1_verify_cert_store(SSL_CTX *ctx, X509_STORE *store) { |
| 702 | return set_cert_store(&ctx->cert->verify_store, store, 1); |
| 703 | } |
| 704 | |
| 705 | int SSL_set0_verify_cert_store(SSL *ssl, X509_STORE *store) { |
| 706 | return set_cert_store(&ssl->cert->verify_store, store, 0); |
| 707 | } |
| 708 | |
| 709 | int SSL_set1_verify_cert_store(SSL *ssl, X509_STORE *store) { |
| 710 | return set_cert_store(&ssl->cert->verify_store, store, 1); |
| 711 | } |
| 712 | |
David Benjamin | 11c0f8e | 2015-07-06 00:18:15 -0400 | [diff] [blame] | 713 | int SSL_CTX_set0_chain(SSL_CTX *ctx, STACK_OF(X509) *chain) { |
| 714 | return ssl_cert_set0_chain(ctx->cert, chain); |
| 715 | } |
| 716 | |
| 717 | int SSL_CTX_set1_chain(SSL_CTX *ctx, STACK_OF(X509) *chain) { |
| 718 | return ssl_cert_set1_chain(ctx->cert, chain); |
| 719 | } |
| 720 | |
| 721 | int SSL_set0_chain(SSL *ssl, STACK_OF(X509) *chain) { |
| 722 | return ssl_cert_set0_chain(ssl->cert, chain); |
| 723 | } |
| 724 | |
| 725 | int SSL_set1_chain(SSL *ssl, STACK_OF(X509) *chain) { |
| 726 | return ssl_cert_set1_chain(ssl->cert, chain); |
| 727 | } |
| 728 | |
| 729 | int SSL_CTX_add0_chain_cert(SSL_CTX *ctx, X509 *x509) { |
| 730 | return ssl_cert_add0_chain_cert(ctx->cert, x509); |
| 731 | } |
| 732 | |
| 733 | int SSL_CTX_add1_chain_cert(SSL_CTX *ctx, X509 *x509) { |
| 734 | return ssl_cert_add1_chain_cert(ctx->cert, x509); |
| 735 | } |
| 736 | |
| 737 | int SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *x509) { |
| 738 | return SSL_CTX_add0_chain_cert(ctx, x509); |
| 739 | } |
| 740 | |
| 741 | int SSL_add0_chain_cert(SSL *ssl, X509 *x509) { |
| 742 | return ssl_cert_add0_chain_cert(ssl->cert, x509); |
| 743 | } |
| 744 | |
| 745 | int SSL_add1_chain_cert(SSL *ssl, X509 *x509) { |
| 746 | return ssl_cert_add1_chain_cert(ssl->cert, x509); |
| 747 | } |
| 748 | |
| 749 | int SSL_CTX_clear_chain_certs(SSL_CTX *ctx) { |
| 750 | return SSL_CTX_set0_chain(ctx, NULL); |
| 751 | } |
| 752 | |
| 753 | int SSL_CTX_clear_extra_chain_certs(SSL_CTX *ctx) { |
| 754 | return SSL_CTX_clear_chain_certs(ctx); |
| 755 | } |
| 756 | |
| 757 | int SSL_clear_chain_certs(SSL *ssl) { |
| 758 | return SSL_set0_chain(ssl, NULL); |
| 759 | } |
| 760 | |
| 761 | int SSL_CTX_get0_chain_certs(const SSL_CTX *ctx, STACK_OF(X509) **out_chain) { |
| 762 | *out_chain = ctx->cert->chain; |
| 763 | return 1; |
| 764 | } |
| 765 | |
| 766 | int SSL_CTX_get_extra_chain_certs(const SSL_CTX *ctx, |
| 767 | STACK_OF(X509) **out_chain) { |
| 768 | return SSL_CTX_get0_chain_certs(ctx, out_chain); |
| 769 | } |
| 770 | |
| 771 | int SSL_get0_chain_certs(const SSL *ssl, STACK_OF(X509) **out_chain) { |
| 772 | *out_chain = ssl->cert->chain; |
| 773 | return 1; |
| 774 | } |
Steven Valdez | bf5aa84 | 2016-07-15 07:07:40 -0400 | [diff] [blame] | 775 | |
| 776 | int ssl_check_leaf_certificate(SSL *ssl, X509 *leaf) { |
| 777 | int ret = 0; |
| 778 | EVP_PKEY *pkey = X509_get_pubkey(leaf); |
| 779 | if (pkey == NULL) { |
| 780 | goto err; |
| 781 | } |
| 782 | |
| 783 | /* Check the certificate's type matches the cipher. */ |
| 784 | const SSL_CIPHER *cipher = ssl->s3->tmp.new_cipher; |
| 785 | int expected_type = ssl_cipher_get_key_type(cipher); |
| 786 | assert(expected_type != EVP_PKEY_NONE); |
| 787 | if (pkey->type != expected_type) { |
| 788 | OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_CERTIFICATE_TYPE); |
| 789 | goto err; |
| 790 | } |
| 791 | |
| 792 | if (cipher->algorithm_auth & SSL_aECDSA) { |
| 793 | /* TODO(davidben): This behavior is preserved from upstream. Should key |
| 794 | * usages be checked in other cases as well? */ |
| 795 | /* This call populates the ex_flags field correctly */ |
| 796 | X509_check_purpose(leaf, -1, 0); |
| 797 | if ((leaf->ex_flags & EXFLAG_KUSAGE) && |
| 798 | !(leaf->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE)) { |
| 799 | OPENSSL_PUT_ERROR(SSL, SSL_R_ECC_CERT_NOT_FOR_SIGNING); |
| 800 | goto err; |
| 801 | } |
| 802 | |
| 803 | if (!tls1_check_ec_cert(ssl, leaf)) { |
| 804 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_ECC_CERT); |
| 805 | goto err; |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | ret = 1; |
| 810 | |
| 811 | err: |
| 812 | EVP_PKEY_free(pkey); |
| 813 | return ret; |
| 814 | } |