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