blob: aab86108af9b4bbc6f4651ac4f2bb6998ad4cb38 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* 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 Benjamin443a1f62015-09-04 15:05:05 -0400115#include <openssl/ssl.h>
116
David Benjaminf0ae1702015-04-07 23:05:04 -0400117#include <string.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700118
Adam Langley95c29f32014-06-20 12:00:00 -0700119#include <openssl/bn.h>
David Benjamin676d1e72014-07-08 14:34:10 -0400120#include <openssl/buf.h>
David Benjamin680ca962015-06-18 12:37:23 -0400121#include <openssl/ec_key.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700122#include <openssl/dh.h>
123#include <openssl/err.h>
124#include <openssl/mem.h>
David Benjamin680ca962015-06-18 12:37:23 -0400125#include <openssl/x509.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700126#include <openssl/x509v3.h>
127
128#include "../crypto/dh/internal.h"
Adam Langley0da323a2015-05-15 12:49:30 -0700129#include "../crypto/internal.h"
David Benjamin2ee94aa2015-04-07 22:38:30 -0400130#include "internal.h"
Adam Langley95c29f32014-06-20 12:00:00 -0700131
Adam Langley95c29f32014-06-20 12:00:00 -0700132
Adam Langleyfcf25832014-12-18 17:42:32 -0800133int SSL_get_ex_data_X509_STORE_CTX_idx(void) {
David Benjaminaa585132015-06-29 23:36:17 -0400134 /* The ex_data index to go from |X509_STORE_CTX| to |SSL| always uses the
135 * reserved app_data slot. Before ex_data was introduced, app_data was used.
136 * Avoid breaking any software which assumes |X509_STORE_CTX_get_app_data|
137 * works. */
138 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -0800139}
Adam Langley95c29f32014-06-20 12:00:00 -0700140
Adam Langleyfcf25832014-12-18 17:42:32 -0800141CERT *ssl_cert_new(void) {
Brian Smith5ba06892016-02-07 09:36:04 -1000142 CERT *ret = OPENSSL_malloc(sizeof(CERT));
Adam Langleyfcf25832014-12-18 17:42:32 -0800143 if (ret == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400144 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
Adam Langleyfcf25832014-12-18 17:42:32 -0800145 return NULL;
146 }
147 memset(ret, 0, sizeof(CERT));
Adam Langley95c29f32014-06-20 12:00:00 -0700148
Adam Langleyfcf25832014-12-18 17:42:32 -0800149 return ret;
150}
Adam Langley95c29f32014-06-20 12:00:00 -0700151
Adam Langleyfcf25832014-12-18 17:42:32 -0800152CERT *ssl_cert_dup(CERT *cert) {
Brian Smith5ba06892016-02-07 09:36:04 -1000153 CERT *ret = OPENSSL_malloc(sizeof(CERT));
Adam Langleyfcf25832014-12-18 17:42:32 -0800154 if (ret == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400155 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
Adam Langleyfcf25832014-12-18 17:42:32 -0800156 return NULL;
157 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800158 memset(ret, 0, sizeof(CERT));
Adam Langley95c29f32014-06-20 12:00:00 -0700159
Adam Langleyfcf25832014-12-18 17:42:32 -0800160 ret->mask_k = cert->mask_k;
161 ret->mask_a = cert->mask_a;
Adam Langley95c29f32014-06-20 12:00:00 -0700162
Adam Langleyfcf25832014-12-18 17:42:32 -0800163 if (cert->dh_tmp != NULL) {
164 ret->dh_tmp = DHparams_dup(cert->dh_tmp);
165 if (ret->dh_tmp == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400166 OPENSSL_PUT_ERROR(SSL, ERR_R_DH_LIB);
Adam Langleyfcf25832014-12-18 17:42:32 -0800167 goto err;
168 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800169 }
170 ret->dh_tmp_cb = cert->dh_tmp_cb;
Adam Langley95c29f32014-06-20 12:00:00 -0700171
David Benjamind1d80782015-07-05 11:54:09 -0400172 if (cert->x509 != NULL) {
173 ret->x509 = X509_up_ref(cert->x509);
174 }
Adam Langley95c29f32014-06-20 12:00:00 -0700175
David Benjamind1d80782015-07-05 11:54:09 -0400176 if (cert->privatekey != NULL) {
Adam Langley310d3f62016-07-12 10:39:20 -0700177 EVP_PKEY_up_ref(cert->privatekey);
178 ret->privatekey = cert->privatekey;
David Benjamind1d80782015-07-05 11:54:09 -0400179 }
Adam Langley95c29f32014-06-20 12:00:00 -0700180
David Benjamind1d80782015-07-05 11:54:09 -0400181 if (cert->chain) {
182 ret->chain = X509_chain_up_ref(cert->chain);
183 if (!ret->chain) {
David Benjamin3570d732015-06-29 00:28:17 -0400184 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
David Benjamind1d80782015-07-05 11:54:09 -0400185 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -0800186 }
187 }
Adam Langley95c29f32014-06-20 12:00:00 -0700188
Tom Thorogood66b2fe82016-03-06 20:08:38 +1030189 ret->key_method = cert->key_method;
190
Adam Langleyfcf25832014-12-18 17:42:32 -0800191 ret->cert_cb = cert->cert_cb;
192 ret->cert_cb_arg = cert->cert_cb_arg;
193
Adam Langleyd323f4b2016-03-01 15:58:14 -0800194 if (cert->verify_store != NULL) {
195 X509_STORE_up_ref(cert->verify_store);
196 ret->verify_store = cert->verify_store;
197 }
198
Adam Langleyfcf25832014-12-18 17:42:32 -0800199 return ret;
200
Adam Langley95c29f32014-06-20 12:00:00 -0700201err:
Adam Langleyfcf25832014-12-18 17:42:32 -0800202 ssl_cert_free(ret);
203 return NULL;
204}
Adam Langley95c29f32014-06-20 12:00:00 -0700205
206/* Free up and clear all certificates and chains */
David Benjamind1d80782015-07-05 11:54:09 -0400207void ssl_cert_clear_certs(CERT *cert) {
208 if (cert == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800209 return;
210 }
Adam Langley95c29f32014-06-20 12:00:00 -0700211
David Benjamind1d80782015-07-05 11:54:09 -0400212 X509_free(cert->x509);
213 cert->x509 = NULL;
214 EVP_PKEY_free(cert->privatekey);
215 cert->privatekey = NULL;
216 sk_X509_pop_free(cert->chain, X509_free);
217 cert->chain = NULL;
David Benjamin71d2e542015-07-06 00:30:25 -0400218 cert->key_method = NULL;
Adam Langleyfcf25832014-12-18 17:42:32 -0800219}
Adam Langley95c29f32014-06-20 12:00:00 -0700220
Adam Langleyfcf25832014-12-18 17:42:32 -0800221void ssl_cert_free(CERT *c) {
222 if (c == NULL) {
223 return;
224 }
Adam Langley95c29f32014-06-20 12:00:00 -0700225
David Benjamin2755a3e2015-04-22 16:17:58 -0400226 DH_free(c->dh_tmp);
Adam Langley95c29f32014-06-20 12:00:00 -0700227
Adam Langleyfcf25832014-12-18 17:42:32 -0800228 ssl_cert_clear_certs(c);
David Benjamin2755a3e2015-04-22 16:17:58 -0400229 OPENSSL_free(c->peer_sigalgs);
David Benjamind246b812016-07-08 15:07:02 -0700230 OPENSSL_free(c->sigalgs);
Adam Langleyd323f4b2016-03-01 15:58:14 -0800231 X509_STORE_free(c->verify_store);
Adam Langley95c29f32014-06-20 12:00:00 -0700232
Adam Langleyfcf25832014-12-18 17:42:32 -0800233 OPENSSL_free(c);
234}
Adam Langley95c29f32014-06-20 12:00:00 -0700235
David Benjamind1d80782015-07-05 11:54:09 -0400236int ssl_cert_set0_chain(CERT *cert, STACK_OF(X509) *chain) {
237 sk_X509_pop_free(cert->chain, X509_free);
238 cert->chain = chain;
Adam Langleyfcf25832014-12-18 17:42:32 -0800239 return 1;
240}
Adam Langley95c29f32014-06-20 12:00:00 -0700241
David Benjamind1d80782015-07-05 11:54:09 -0400242int ssl_cert_set1_chain(CERT *cert, STACK_OF(X509) *chain) {
David Benjamin60da0cd2015-05-03 15:21:28 -0400243 STACK_OF(X509) *dchain;
David Benjamind1d80782015-07-05 11:54:09 -0400244 if (chain == NULL) {
245 return ssl_cert_set0_chain(cert, NULL);
Adam Langleyfcf25832014-12-18 17:42:32 -0800246 }
Adam Langley95c29f32014-06-20 12:00:00 -0700247
Adam Langleyfcf25832014-12-18 17:42:32 -0800248 dchain = X509_chain_up_ref(chain);
David Benjamind1d80782015-07-05 11:54:09 -0400249 if (dchain == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800250 return 0;
251 }
Adam Langley95c29f32014-06-20 12:00:00 -0700252
David Benjamind1d80782015-07-05 11:54:09 -0400253 if (!ssl_cert_set0_chain(cert, dchain)) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800254 sk_X509_pop_free(dchain, X509_free);
255 return 0;
256 }
Adam Langley95c29f32014-06-20 12:00:00 -0700257
Adam Langleyfcf25832014-12-18 17:42:32 -0800258 return 1;
259}
Adam Langley95c29f32014-06-20 12:00:00 -0700260
David Benjamind1d80782015-07-05 11:54:09 -0400261int ssl_cert_add0_chain_cert(CERT *cert, X509 *x509) {
262 if (cert->chain == NULL) {
263 cert->chain = sk_X509_new_null();
Adam Langleyfcf25832014-12-18 17:42:32 -0800264 }
David Benjamind1d80782015-07-05 11:54:09 -0400265 if (cert->chain == NULL || !sk_X509_push(cert->chain, x509)) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800266 return 0;
267 }
Adam Langley95c29f32014-06-20 12:00:00 -0700268
Adam Langleyfcf25832014-12-18 17:42:32 -0800269 return 1;
270}
Adam Langley95c29f32014-06-20 12:00:00 -0700271
David Benjamind1d80782015-07-05 11:54:09 -0400272int ssl_cert_add1_chain_cert(CERT *cert, X509 *x509) {
273 if (!ssl_cert_add0_chain_cert(cert, x509)) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800274 return 0;
275 }
Adam Langley95c29f32014-06-20 12:00:00 -0700276
David Benjamind1d80782015-07-05 11:54:09 -0400277 X509_up_ref(x509);
Adam Langleyfcf25832014-12-18 17:42:32 -0800278 return 1;
279}
Adam Langley95c29f32014-06-20 12:00:00 -0700280
Adam Langleyfcf25832014-12-18 17:42:32 -0800281void ssl_cert_set_cert_cb(CERT *c, int (*cb)(SSL *ssl, void *arg), void *arg) {
282 c->cert_cb = cb;
283 c->cert_cb_arg = arg;
284}
Adam Langley95c29f32014-06-20 12:00:00 -0700285
David Benjamin306ece32015-09-17 13:46:22 -0400286int ssl_verify_cert_chain(SSL *ssl, STACK_OF(X509) *cert_chain) {
287 if (cert_chain == NULL || sk_X509_num(cert_chain) == 0) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800288 return 0;
289 }
Adam Langley95c29f32014-06-20 12:00:00 -0700290
Adam Langleyd323f4b2016-03-01 15:58:14 -0800291 X509_STORE *verify_store = ssl->ctx->cert_store;
292 if (ssl->cert->verify_store != NULL) {
293 verify_store = ssl->cert->verify_store;
294 }
295
David Benjamin306ece32015-09-17 13:46:22 -0400296 X509 *leaf = sk_X509_value(cert_chain, 0);
297 int ret = 0;
298 X509_STORE_CTX ctx;
Adam Langleyd323f4b2016-03-01 15:58:14 -0800299 if (!X509_STORE_CTX_init(&ctx, verify_store, leaf, cert_chain)) {
David Benjamin3570d732015-06-29 00:28:17 -0400300 OPENSSL_PUT_ERROR(SSL, ERR_R_X509_LIB);
Adam Langleyfcf25832014-12-18 17:42:32 -0800301 return 0;
302 }
David Benjamin306ece32015-09-17 13:46:22 -0400303 if (!X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(),
304 ssl)) {
305 goto err;
306 }
Adam Langley95c29f32014-06-20 12:00:00 -0700307
Adam Langleyfcf25832014-12-18 17:42:32 -0800308 /* We need to inherit the verify parameters. These can be determined by the
309 * context: if its a server it will verify SSL client certificates or vice
310 * versa. */
David Benjamin306ece32015-09-17 13:46:22 -0400311 X509_STORE_CTX_set_default(&ctx, ssl->server ? "ssl_client" : "ssl_server");
Adam Langley95c29f32014-06-20 12:00:00 -0700312
Adam Langleyfcf25832014-12-18 17:42:32 -0800313 /* Anything non-default in "param" should overwrite anything in the ctx. */
David Benjamin306ece32015-09-17 13:46:22 -0400314 X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx), ssl->param);
Adam Langley95c29f32014-06-20 12:00:00 -0700315
David Benjamin306ece32015-09-17 13:46:22 -0400316 if (ssl->verify_callback) {
317 X509_STORE_CTX_set_verify_cb(&ctx, ssl->verify_callback);
Adam Langleyfcf25832014-12-18 17:42:32 -0800318 }
Adam Langley95c29f32014-06-20 12:00:00 -0700319
David Benjamin306ece32015-09-17 13:46:22 -0400320 if (ssl->ctx->app_verify_callback != NULL) {
321 ret = ssl->ctx->app_verify_callback(&ctx, ssl->ctx->app_verify_arg);
Adam Langleyfcf25832014-12-18 17:42:32 -0800322 } else {
David Benjamin306ece32015-09-17 13:46:22 -0400323 ret = X509_verify_cert(&ctx);
Adam Langleyfcf25832014-12-18 17:42:32 -0800324 }
Adam Langley95c29f32014-06-20 12:00:00 -0700325
David Benjamin306ece32015-09-17 13:46:22 -0400326 ssl->verify_result = ctx.error;
Adam Langley95c29f32014-06-20 12:00:00 -0700327
David Benjamin306ece32015-09-17 13:46:22 -0400328err:
329 X509_STORE_CTX_cleanup(&ctx);
330 return ret;
Adam Langleyfcf25832014-12-18 17:42:32 -0800331}
Adam Langley95c29f32014-06-20 12:00:00 -0700332
David Benjamin60da0cd2015-05-03 15:21:28 -0400333static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,
334 STACK_OF(X509_NAME) *name_list) {
David Benjamin2755a3e2015-04-22 16:17:58 -0400335 sk_X509_NAME_pop_free(*ca_list, X509_NAME_free);
Adam Langleyfcf25832014-12-18 17:42:32 -0800336 *ca_list = name_list;
337}
Adam Langley95c29f32014-06-20 12:00:00 -0700338
David Benjamin59937042015-09-19 13:04:22 -0400339STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *list) {
340 STACK_OF(X509_NAME) *ret = sk_X509_NAME_new_null();
341 if (ret == NULL) {
342 return NULL;
343 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800344
David Benjamin59937042015-09-19 13:04:22 -0400345 size_t i;
346 for (i = 0; i < sk_X509_NAME_num(list); i++) {
347 X509_NAME *name = X509_NAME_dup(sk_X509_NAME_value(list, i));
Adam Langleyfcf25832014-12-18 17:42:32 -0800348 if (name == NULL || !sk_X509_NAME_push(ret, name)) {
David Benjamin59937042015-09-19 13:04:22 -0400349 X509_NAME_free(name);
Adam Langleyfcf25832014-12-18 17:42:32 -0800350 sk_X509_NAME_pop_free(ret, X509_NAME_free);
351 return NULL;
352 }
353 }
354
355 return ret;
356}
357
David Benjamin59937042015-09-19 13:04:22 -0400358void SSL_set_client_CA_list(SSL *ssl, STACK_OF(X509_NAME) *name_list) {
359 set_client_CA_list(&ssl->client_CA, name_list);
Adam Langleyfcf25832014-12-18 17:42:32 -0800360}
361
David Benjamin60da0cd2015-05-03 15:21:28 -0400362void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) {
David Benjamin59937042015-09-19 13:04:22 -0400363 set_client_CA_list(&ctx->client_CA, name_list);
Adam Langleyfcf25832014-12-18 17:42:32 -0800364}
365
David Benjamin60da0cd2015-05-03 15:21:28 -0400366STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800367 return ctx->client_CA;
368}
369
David Benjamin1d128f32015-09-08 17:41:40 -0400370STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *ssl) {
371 /* For historical reasons, this function is used both to query configuration
372 * state on a server as well as handshake state on a client. However, whether
373 * |ssl| is a client or server is not known until explicitly configured with
374 * |SSL_set_connect_state|. If |handshake_func| is NULL, |ssl| is in an
375 * indeterminate mode and |ssl->server| is unset. */
376 if (ssl->handshake_func != NULL && !ssl->server) {
377 return ssl->s3->tmp.ca_names;
Adam Langleyfcf25832014-12-18 17:42:32 -0800378 }
David Benjamin1d128f32015-09-08 17:41:40 -0400379
380 if (ssl->client_CA != NULL) {
381 return ssl->client_CA;
382 }
383 return ssl->ctx->client_CA;
Adam Langleyfcf25832014-12-18 17:42:32 -0800384}
385
David Benjamin59937042015-09-19 13:04:22 -0400386static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x509) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800387 X509_NAME *name;
388
David Benjamin59937042015-09-19 13:04:22 -0400389 if (x509 == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800390 return 0;
391 }
392 if (*sk == NULL) {
393 *sk = sk_X509_NAME_new_null();
394 if (*sk == NULL) {
395 return 0;
396 }
397 }
398
David Benjamin59937042015-09-19 13:04:22 -0400399 name = X509_NAME_dup(X509_get_subject_name(x509));
Adam Langleyfcf25832014-12-18 17:42:32 -0800400 if (name == NULL) {
401 return 0;
402 }
403
404 if (!sk_X509_NAME_push(*sk, name)) {
405 X509_NAME_free(name);
406 return 0;
407 }
408
409 return 1;
410}
411
David Benjamin59937042015-09-19 13:04:22 -0400412int SSL_add_client_CA(SSL *ssl, X509 *x509) {
413 return add_client_CA(&ssl->client_CA, x509);
Adam Langleyfcf25832014-12-18 17:42:32 -0800414}
415
David Benjamin59937042015-09-19 13:04:22 -0400416int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x509) {
417 return add_client_CA(&ctx->client_CA, x509);
Adam Langleyfcf25832014-12-18 17:42:32 -0800418}
419
David Benjamin32a66d52016-07-13 22:03:11 -0400420int ssl_has_certificate(const SSL *ssl) {
421 return ssl->cert->x509 != NULL && ssl_has_private_key(ssl);
422}
423
David Benjamin75836432016-06-17 18:48:29 -0400424int ssl_add_cert_to_cbb(CBB *cbb, X509 *x509) {
425 int len = i2d_X509(x509, NULL);
426 if (len < 0) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800427 return 0;
428 }
David Benjamin75836432016-06-17 18:48:29 -0400429 uint8_t *buf;
430 if (!CBB_add_space(cbb, &buf, len)) {
431 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
432 return 0;
Steven Valdezb32a9152016-04-26 12:57:22 -0400433 }
David Benjamin75836432016-06-17 18:48:29 -0400434 if (buf != NULL && i2d_X509(x509, &buf) < 0) {
435 return 0;
436 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800437 return 1;
438}
Adam Langley95c29f32014-06-20 12:00:00 -0700439
David Benjamin75836432016-06-17 18:48:29 -0400440static int ssl_add_cert_with_length(CBB *cbb, X509 *x509) {
441 CBB child;
442 return CBB_add_u24_length_prefixed(cbb, &child) &&
443 ssl_add_cert_to_cbb(&child, x509) &&
444 CBB_flush(cbb);
445}
446
447int ssl_add_cert_chain(SSL *ssl, CBB *cbb) {
David Benjamin32a66d52016-07-13 22:03:11 -0400448 if (!ssl_has_certificate(ssl)) {
449 return CBB_add_u24(cbb, 0);
450 }
451
David Benjamind1d80782015-07-05 11:54:09 -0400452 CERT *cert = ssl->cert;
David Benjamind1d80782015-07-05 11:54:09 -0400453 X509 *x = cert->x509;
Adam Langley95c29f32014-06-20 12:00:00 -0700454
David Benjamin75836432016-06-17 18:48:29 -0400455 CBB child;
456 if (!CBB_add_u24_length_prefixed(cbb, &child)) {
457 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
458 return 0;
459 }
460
461 int no_chain = 0;
462 STACK_OF(X509) *chain = cert->chain;
David Benjamind1d80782015-07-05 11:54:09 -0400463 if ((ssl->mode & SSL_MODE_NO_AUTO_CHAIN) || chain != NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800464 no_chain = 1;
465 }
Adam Langley95c29f32014-06-20 12:00:00 -0700466
David Benjamin605641e2015-05-03 15:14:04 -0400467 if (no_chain) {
Steven Valdez57a6f3c2016-06-28 15:37:37 -0400468 if (!ssl_add_cert_with_length(&child, x)) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800469 return 0;
470 }
David Benjamin605641e2015-05-03 15:14:04 -0400471
David Benjamin75836432016-06-17 18:48:29 -0400472 size_t i;
David Benjamind1d80782015-07-05 11:54:09 -0400473 for (i = 0; i < sk_X509_num(chain); i++) {
474 x = sk_X509_value(chain, i);
David Benjamin75836432016-06-17 18:48:29 -0400475 if (!ssl_add_cert_with_length(&child, x)) {
David Benjamin605641e2015-05-03 15:14:04 -0400476 return 0;
477 }
478 }
479 } else {
480 X509_STORE_CTX xs_ctx;
481
David Benjamind27441a2015-08-09 11:05:17 -0400482 if (!X509_STORE_CTX_init(&xs_ctx, ssl->ctx->cert_store, x, NULL)) {
David Benjamin3570d732015-06-29 00:28:17 -0400483 OPENSSL_PUT_ERROR(SSL, ERR_R_X509_LIB);
David Benjamin605641e2015-05-03 15:14:04 -0400484 return 0;
485 }
486 X509_verify_cert(&xs_ctx);
487 /* Don't leave errors in the queue */
488 ERR_clear_error();
David Benjamin75836432016-06-17 18:48:29 -0400489
490 size_t i;
David Benjamin605641e2015-05-03 15:14:04 -0400491 for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) {
492 x = sk_X509_value(xs_ctx.chain, i);
David Benjamin75836432016-06-17 18:48:29 -0400493 if (!ssl_add_cert_with_length(&child, x)) {
David Benjamin605641e2015-05-03 15:14:04 -0400494 X509_STORE_CTX_cleanup(&xs_ctx);
495 return 0;
496 }
497 }
498 X509_STORE_CTX_cleanup(&xs_ctx);
Adam Langleyfcf25832014-12-18 17:42:32 -0800499 }
500
David Benjamin75836432016-06-17 18:48:29 -0400501 return CBB_flush(cbb);
Adam Langleyfcf25832014-12-18 17:42:32 -0800502}
Adam Langley95c29f32014-06-20 12:00:00 -0700503
David Benjamine0332e82016-07-13 22:40:36 -0400504static int ca_dn_cmp(const X509_NAME **a, const X509_NAME **b) {
505 return X509_NAME_cmp(*a, *b);
506}
507
508STACK_OF(X509_NAME) *
509 ssl_parse_client_CA_list(SSL *ssl, uint8_t *out_alert, CBS *cbs) {
510 STACK_OF(X509_NAME) *ret = sk_X509_NAME_new(ca_dn_cmp);
511 X509_NAME *name = NULL;
512 if (ret == NULL) {
513 *out_alert = SSL_AD_INTERNAL_ERROR;
514 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
515 return NULL;
516 }
517
518 CBS child;
519 if (!CBS_get_u16_length_prefixed(cbs, &child)) {
520 *out_alert = SSL_AD_DECODE_ERROR;
521 OPENSSL_PUT_ERROR(SSL, SSL_R_LENGTH_MISMATCH);
522 goto err;
523 }
524
525 while (CBS_len(&child) > 0) {
526 CBS distinguished_name;
527 if (!CBS_get_u16_length_prefixed(&child, &distinguished_name)) {
528 *out_alert = SSL_AD_DECODE_ERROR;
529 OPENSSL_PUT_ERROR(SSL, SSL_R_CA_DN_TOO_LONG);
530 goto err;
531 }
532
533 const uint8_t *ptr = CBS_data(&distinguished_name);
534 /* A u16 length cannot overflow a long. */
535 name = d2i_X509_NAME(NULL, &ptr, (long)CBS_len(&distinguished_name));
536 if (name == NULL ||
537 ptr != CBS_data(&distinguished_name) + CBS_len(&distinguished_name)) {
538 *out_alert = SSL_AD_DECODE_ERROR;
539 OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR);
540 goto err;
541 }
542
543 if (!sk_X509_NAME_push(ret, name)) {
544 *out_alert = SSL_AD_INTERNAL_ERROR;
545 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
546 goto err;
547 }
548 name = NULL;
549 }
550
551 return ret;
552
553err:
554 X509_NAME_free(name);
555 sk_X509_NAME_pop_free(ret, X509_NAME_free);
556 return NULL;
557}
558
David Benjamin32a66d52016-07-13 22:03:11 -0400559int ssl_add_client_CA_list(SSL *ssl, CBB *cbb) {
560 CBB child, name_cbb;
561 if (!CBB_add_u16_length_prefixed(cbb, &child)) {
562 return 0;
563 }
564
565 STACK_OF(X509_NAME) *sk = SSL_get_client_CA_list(ssl);
566 if (sk == NULL) {
567 return CBB_flush(cbb);
568 }
569
570 for (size_t i = 0; i < sk_X509_NAME_num(sk); i++) {
571 X509_NAME *name = sk_X509_NAME_value(sk, i);
572 int len = i2d_X509_NAME(name, NULL);
573 if (len < 0) {
574 return 0;
575 }
576 uint8_t *ptr;
577 if (!CBB_add_u16_length_prefixed(&child, &name_cbb) ||
578 !CBB_add_space(&name_cbb, &ptr, (size_t)len) ||
579 (len > 0 && i2d_X509_NAME(name, &ptr) < 0)) {
580 return 0;
581 }
582 }
583
584 return CBB_flush(cbb);
585}
586
Adam Langleyd323f4b2016-03-01 15:58:14 -0800587static int set_cert_store(X509_STORE **store_ptr, X509_STORE *new_store, int take_ref) {
588 X509_STORE_free(*store_ptr);
589 *store_ptr = new_store;
590
591 if (new_store != NULL && take_ref) {
592 X509_STORE_up_ref(new_store);
593 }
594
595 return 1;
596}
597
598int SSL_CTX_set0_verify_cert_store(SSL_CTX *ctx, X509_STORE *store) {
599 return set_cert_store(&ctx->cert->verify_store, store, 0);
600}
601
602int SSL_CTX_set1_verify_cert_store(SSL_CTX *ctx, X509_STORE *store) {
603 return set_cert_store(&ctx->cert->verify_store, store, 1);
604}
605
606int SSL_set0_verify_cert_store(SSL *ssl, X509_STORE *store) {
607 return set_cert_store(&ssl->cert->verify_store, store, 0);
608}
609
610int SSL_set1_verify_cert_store(SSL *ssl, X509_STORE *store) {
611 return set_cert_store(&ssl->cert->verify_store, store, 1);
612}
613
David Benjamin11c0f8e2015-07-06 00:18:15 -0400614int SSL_CTX_set0_chain(SSL_CTX *ctx, STACK_OF(X509) *chain) {
615 return ssl_cert_set0_chain(ctx->cert, chain);
616}
617
618int SSL_CTX_set1_chain(SSL_CTX *ctx, STACK_OF(X509) *chain) {
619 return ssl_cert_set1_chain(ctx->cert, chain);
620}
621
622int SSL_set0_chain(SSL *ssl, STACK_OF(X509) *chain) {
623 return ssl_cert_set0_chain(ssl->cert, chain);
624}
625
626int SSL_set1_chain(SSL *ssl, STACK_OF(X509) *chain) {
627 return ssl_cert_set1_chain(ssl->cert, chain);
628}
629
630int SSL_CTX_add0_chain_cert(SSL_CTX *ctx, X509 *x509) {
631 return ssl_cert_add0_chain_cert(ctx->cert, x509);
632}
633
634int SSL_CTX_add1_chain_cert(SSL_CTX *ctx, X509 *x509) {
635 return ssl_cert_add1_chain_cert(ctx->cert, x509);
636}
637
638int SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *x509) {
639 return SSL_CTX_add0_chain_cert(ctx, x509);
640}
641
642int SSL_add0_chain_cert(SSL *ssl, X509 *x509) {
643 return ssl_cert_add0_chain_cert(ssl->cert, x509);
644}
645
646int SSL_add1_chain_cert(SSL *ssl, X509 *x509) {
647 return ssl_cert_add1_chain_cert(ssl->cert, x509);
648}
649
650int SSL_CTX_clear_chain_certs(SSL_CTX *ctx) {
651 return SSL_CTX_set0_chain(ctx, NULL);
652}
653
654int SSL_CTX_clear_extra_chain_certs(SSL_CTX *ctx) {
655 return SSL_CTX_clear_chain_certs(ctx);
656}
657
658int SSL_clear_chain_certs(SSL *ssl) {
659 return SSL_set0_chain(ssl, NULL);
660}
661
662int SSL_CTX_get0_chain_certs(const SSL_CTX *ctx, STACK_OF(X509) **out_chain) {
663 *out_chain = ctx->cert->chain;
664 return 1;
665}
666
667int SSL_CTX_get_extra_chain_certs(const SSL_CTX *ctx,
668 STACK_OF(X509) **out_chain) {
669 return SSL_CTX_get0_chain_certs(ctx, out_chain);
670}
671
672int SSL_get0_chain_certs(const SSL *ssl, STACK_OF(X509) **out_chain) {
673 *out_chain = ssl->cert->chain;
674 return 1;
675}