Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 2 | * All rights reserved. |
| 3 | * |
| 4 | * This package is an SSL implementation written |
| 5 | * by Eric Young (eay@cryptsoft.com). |
| 6 | * The implementation was written so as to conform with Netscapes SSL. |
| 7 | * |
| 8 | * This library is free for commercial and non-commercial use as long as |
| 9 | * the following conditions are aheared to. The following conditions |
| 10 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 12 | * included with this distribution is covered by the same copyright terms |
| 13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 14 | * |
| 15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 16 | * the code are not to be removed. |
| 17 | * If this package is used in a product, Eric Young should be given attribution |
| 18 | * as the author of the parts of the library used. |
| 19 | * This can be in the form of a textual message at program startup or |
| 20 | * in documentation (online or textual) provided with the package. |
| 21 | * |
| 22 | * Redistribution and use in source and binary forms, with or without |
| 23 | * modification, are permitted provided that the following conditions |
| 24 | * are met: |
| 25 | * 1. Redistributions of source code must retain the copyright |
| 26 | * notice, this list of conditions and the following disclaimer. |
| 27 | * 2. Redistributions in binary form must reproduce the above copyright |
| 28 | * notice, this list of conditions and the following disclaimer in the |
| 29 | * documentation and/or other materials provided with the distribution. |
| 30 | * 3. All advertising materials mentioning features or use of this software |
| 31 | * must display the following acknowledgement: |
| 32 | * "This product includes cryptographic software written by |
| 33 | * Eric Young (eay@cryptsoft.com)" |
| 34 | * The word 'cryptographic' can be left out if the rouines from the library |
| 35 | * being used are not cryptographic related :-). |
| 36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 37 | * the apps directory (application code) you must include an acknowledgement: |
| 38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 39 | * |
| 40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 50 | * SUCH DAMAGE. |
| 51 | * |
| 52 | * The licence and distribution terms for any publically available version or |
| 53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 54 | * copied and put under another distribution licence |
| 55 | * [including the GNU Public Licence.] |
| 56 | */ |
| 57 | /* ==================================================================== |
| 58 | * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. |
| 59 | * |
| 60 | * Redistribution and use in source and binary forms, with or without |
| 61 | * modification, are permitted provided that the following conditions |
| 62 | * are met: |
| 63 | * |
| 64 | * 1. Redistributions of source code must retain the above copyright |
| 65 | * notice, this list of conditions and the following disclaimer. |
| 66 | * |
| 67 | * 2. Redistributions in binary form must reproduce the above copyright |
| 68 | * notice, this list of conditions and the following disclaimer in |
| 69 | * the documentation and/or other materials provided with the |
| 70 | * distribution. |
| 71 | * |
| 72 | * 3. All advertising materials mentioning features or use of this |
| 73 | * software must display the following acknowledgment: |
| 74 | * "This product includes software developed by the OpenSSL Project |
| 75 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 76 | * |
| 77 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 78 | * endorse or promote products derived from this software without |
| 79 | * prior written permission. For written permission, please contact |
| 80 | * openssl-core@openssl.org. |
| 81 | * |
| 82 | * 5. Products derived from this software may not be called "OpenSSL" |
| 83 | * nor may "OpenSSL" appear in their names without prior written |
| 84 | * permission of the OpenSSL Project. |
| 85 | * |
| 86 | * 6. Redistributions of any form whatsoever must retain the following |
| 87 | * acknowledgment: |
| 88 | * "This product includes software developed by the OpenSSL Project |
| 89 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 90 | * |
| 91 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 92 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 93 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 94 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 95 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 96 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 97 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 98 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 99 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 100 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 101 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 102 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 103 | * ==================================================================== |
| 104 | * |
| 105 | * This product includes cryptographic software written by Eric Young |
| 106 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 107 | * Hudson (tjh@cryptsoft.com). |
| 108 | * |
| 109 | */ |
| 110 | /* ==================================================================== |
| 111 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 112 | * ECC cipher suite support in OpenSSL originally developed by |
| 113 | * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. |
| 114 | */ |
| 115 | /* ==================================================================== |
| 116 | * Copyright 2005 Nokia. All rights reserved. |
| 117 | * |
| 118 | * The portions of the attached software ("Contribution") is developed by |
| 119 | * Nokia Corporation and is licensed pursuant to the OpenSSL open source |
| 120 | * license. |
| 121 | * |
| 122 | * The Contribution, originally written by Mika Kousa and Pasi Eronen of |
| 123 | * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites |
| 124 | * support (see RFC 4279) to OpenSSL. |
| 125 | * |
| 126 | * No patent licenses or other rights except those expressly stated in |
| 127 | * the OpenSSL open source license shall be deemed granted or received |
| 128 | * expressly, by implication, estoppel, or otherwise. |
| 129 | * |
| 130 | * No assurances are provided by Nokia that the Contribution does not |
| 131 | * infringe the patent or other intellectual property rights of any third |
| 132 | * party or that the license provides you with all the necessary rights |
| 133 | * to make use of the Contribution. |
| 134 | * |
| 135 | * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN |
| 136 | * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA |
| 137 | * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY |
| 138 | * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR |
| 139 | * OTHERWISE. */ |
| 140 | |
| 141 | #include <stdio.h> |
| 142 | #include <assert.h> |
| 143 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 144 | #include <openssl/engine.h> |
| 145 | #include <openssl/mem.h> |
| 146 | #include <openssl/obj.h> |
| 147 | |
| 148 | #include "ssl_locl.h" |
| 149 | |
| 150 | #define SSL_ENC_DES_IDX 0 |
| 151 | #define SSL_ENC_3DES_IDX 1 |
| 152 | #define SSL_ENC_RC4_IDX 2 |
| 153 | #define SSL_ENC_RC2_IDX 3 |
| 154 | #define SSL_ENC_IDEA_IDX 4 |
| 155 | #define SSL_ENC_NULL_IDX 5 |
| 156 | #define SSL_ENC_AES128_IDX 6 |
| 157 | #define SSL_ENC_AES256_IDX 7 |
| 158 | #define SSL_ENC_CAMELLIA128_IDX 8 |
| 159 | #define SSL_ENC_CAMELLIA256_IDX 9 |
| 160 | #define SSL_ENC_GOST89_IDX 10 |
| 161 | #define SSL_ENC_SEED_IDX 11 |
| 162 | #define SSL_ENC_AES128GCM_IDX 12 |
| 163 | #define SSL_ENC_AES256GCM_IDX 13 |
| 164 | #define SSL_ENC_NUM_IDX 14 |
| 165 | |
| 166 | |
| 167 | static const EVP_CIPHER *ssl_cipher_methods[SSL_ENC_NUM_IDX]={ |
| 168 | NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL |
| 169 | }; |
| 170 | |
| 171 | #define SSL_COMP_NULL_IDX 0 |
| 172 | #define SSL_COMP_ZLIB_IDX 1 |
| 173 | #define SSL_COMP_NUM_IDX 2 |
| 174 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 175 | #define SSL_MD_MD5_IDX 0 |
| 176 | #define SSL_MD_SHA1_IDX 1 |
| 177 | #define SSL_MD_GOST94_IDX 2 |
| 178 | #define SSL_MD_GOST89MAC_IDX 3 |
| 179 | #define SSL_MD_SHA256_IDX 4 |
| 180 | #define SSL_MD_SHA384_IDX 5 |
| 181 | /*Constant SSL_MAX_DIGEST equal to size of digests array should be |
| 182 | * defined in the |
| 183 | * ssl_locl.h */ |
| 184 | #define SSL_MD_NUM_IDX SSL_MAX_DIGEST |
| 185 | static const EVP_MD *ssl_digest_methods[SSL_MD_NUM_IDX]={ |
| 186 | NULL,NULL,NULL,NULL,NULL,NULL |
| 187 | }; |
| 188 | /* PKEY_TYPE for GOST89MAC is known in advance, but, because |
| 189 | * implementation is engine-provided, we'll fill it only if |
| 190 | * corresponding EVP_PKEY_METHOD is found |
| 191 | */ |
| 192 | static int ssl_mac_pkey_id[SSL_MD_NUM_IDX]={ |
| 193 | EVP_PKEY_HMAC,EVP_PKEY_HMAC,EVP_PKEY_HMAC,NID_undef, |
| 194 | EVP_PKEY_HMAC,EVP_PKEY_HMAC |
| 195 | }; |
| 196 | |
| 197 | static int ssl_mac_secret_size[SSL_MD_NUM_IDX]={ |
| 198 | 0,0,0,0,0,0 |
| 199 | }; |
| 200 | |
| 201 | static int ssl_handshake_digest_flag[SSL_MD_NUM_IDX]={ |
| 202 | SSL_HANDSHAKE_MAC_MD5,SSL_HANDSHAKE_MAC_SHA, |
| 203 | SSL_HANDSHAKE_MAC_GOST94, 0, SSL_HANDSHAKE_MAC_SHA256, |
| 204 | SSL_HANDSHAKE_MAC_SHA384 |
| 205 | }; |
| 206 | |
| 207 | #define CIPHER_ADD 1 |
| 208 | #define CIPHER_KILL 2 |
| 209 | #define CIPHER_DEL 3 |
| 210 | #define CIPHER_ORD 4 |
| 211 | #define CIPHER_SPECIAL 5 |
| 212 | |
| 213 | typedef struct cipher_order_st |
| 214 | { |
| 215 | const SSL_CIPHER *cipher; |
| 216 | int active; |
| 217 | int dead; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 218 | int in_group; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 219 | struct cipher_order_st *next,*prev; |
| 220 | } CIPHER_ORDER; |
| 221 | |
| 222 | static const SSL_CIPHER cipher_aliases[]={ |
| 223 | /* "ALL" doesn't include eNULL (must be specifically enabled) */ |
| 224 | {0,SSL_TXT_ALL,0, 0,0,~SSL_eNULL,0,0,0,0,0,0}, |
| 225 | /* "COMPLEMENTOFALL" */ |
| 226 | {0,SSL_TXT_CMPALL,0, 0,0,SSL_eNULL,0,0,0,0,0,0}, |
| 227 | |
| 228 | /* "COMPLEMENTOFDEFAULT" (does *not* include ciphersuites not found in ALL!) */ |
| 229 | {0,SSL_TXT_CMPDEF,0, SSL_kEDH|SSL_kEECDH,SSL_aNULL,~SSL_eNULL,0,0,0,0,0,0}, |
| 230 | |
| 231 | /* key exchange aliases |
| 232 | * (some of those using only a single bit here combine |
| 233 | * multiple key exchange algs according to the RFCs, |
| 234 | * e.g. kEDH combines DHE_DSS and DHE_RSA) */ |
| 235 | {0,SSL_TXT_kRSA,0, SSL_kRSA, 0,0,0,0,0,0,0,0}, |
| 236 | |
| 237 | {0,SSL_TXT_kDHr,0, SSL_kDHr, 0,0,0,0,0,0,0,0}, |
| 238 | {0,SSL_TXT_kDHd,0, SSL_kDHd, 0,0,0,0,0,0,0,0}, |
| 239 | {0,SSL_TXT_kDH,0, SSL_kDHr|SSL_kDHd,0,0,0,0,0,0,0,0}, |
| 240 | {0,SSL_TXT_kEDH,0, SSL_kEDH, 0,0,0,0,0,0,0,0}, |
| 241 | {0,SSL_TXT_DH,0, SSL_kDHr|SSL_kDHd|SSL_kEDH,0,0,0,0,0,0,0,0}, |
| 242 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 243 | {0,SSL_TXT_kECDHr,0, SSL_kECDHr,0,0,0,0,0,0,0,0}, |
| 244 | {0,SSL_TXT_kECDHe,0, SSL_kECDHe,0,0,0,0,0,0,0,0}, |
| 245 | {0,SSL_TXT_kECDH,0, SSL_kECDHr|SSL_kECDHe,0,0,0,0,0,0,0,0}, |
| 246 | {0,SSL_TXT_kEECDH,0, SSL_kEECDH,0,0,0,0,0,0,0,0}, |
| 247 | {0,SSL_TXT_ECDH,0, SSL_kECDHr|SSL_kECDHe|SSL_kEECDH,0,0,0,0,0,0,0,0}, |
| 248 | |
| 249 | {0,SSL_TXT_kPSK,0, SSL_kPSK, 0,0,0,0,0,0,0,0}, |
| 250 | {0,SSL_TXT_kSRP,0, SSL_kSRP, 0,0,0,0,0,0,0,0}, |
| 251 | {0,SSL_TXT_kGOST,0, SSL_kGOST,0,0,0,0,0,0,0,0}, |
| 252 | |
| 253 | /* server authentication aliases */ |
| 254 | {0,SSL_TXT_aRSA,0, 0,SSL_aRSA, 0,0,0,0,0,0,0}, |
| 255 | {0,SSL_TXT_aDSS,0, 0,SSL_aDSS, 0,0,0,0,0,0,0}, |
| 256 | {0,SSL_TXT_DSS,0, 0,SSL_aDSS, 0,0,0,0,0,0,0}, |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 257 | {0,SSL_TXT_aNULL,0, 0,SSL_aNULL, 0,0,0,0,0,0,0}, |
| 258 | {0,SSL_TXT_aDH,0, 0,SSL_aDH, 0,0,0,0,0,0,0}, /* no such ciphersuites supported! */ |
| 259 | {0,SSL_TXT_aECDH,0, 0,SSL_aECDH, 0,0,0,0,0,0,0}, |
| 260 | {0,SSL_TXT_aECDSA,0, 0,SSL_aECDSA,0,0,0,0,0,0,0}, |
| 261 | {0,SSL_TXT_ECDSA,0, 0,SSL_aECDSA, 0,0,0,0,0,0,0}, |
| 262 | {0,SSL_TXT_aPSK,0, 0,SSL_aPSK, 0,0,0,0,0,0,0}, |
| 263 | {0,SSL_TXT_aGOST94,0,0,SSL_aGOST94,0,0,0,0,0,0,0}, |
| 264 | {0,SSL_TXT_aGOST01,0,0,SSL_aGOST01,0,0,0,0,0,0,0}, |
| 265 | {0,SSL_TXT_aGOST,0,0,SSL_aGOST94|SSL_aGOST01,0,0,0,0,0,0,0}, |
| 266 | |
| 267 | /* aliases combining key exchange and server authentication */ |
| 268 | {0,SSL_TXT_EDH,0, SSL_kEDH,~SSL_aNULL,0,0,0,0,0,0,0}, |
| 269 | {0,SSL_TXT_EECDH,0, SSL_kEECDH,~SSL_aNULL,0,0,0,0,0,0,0}, |
| 270 | {0,SSL_TXT_NULL,0, 0,0,SSL_eNULL, 0,0,0,0,0,0}, |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 271 | {0,SSL_TXT_RSA,0, SSL_kRSA,SSL_aRSA,0,0,0,0,0,0,0}, |
| 272 | {0,SSL_TXT_ADH,0, SSL_kEDH,SSL_aNULL,0,0,0,0,0,0,0}, |
| 273 | {0,SSL_TXT_AECDH,0, SSL_kEECDH,SSL_aNULL,0,0,0,0,0,0,0}, |
| 274 | {0,SSL_TXT_PSK,0, SSL_kPSK,SSL_aPSK,0,0,0,0,0,0,0}, |
| 275 | {0,SSL_TXT_SRP,0, SSL_kSRP,0,0,0,0,0,0,0,0}, |
| 276 | |
| 277 | |
| 278 | /* symmetric encryption aliases */ |
| 279 | {0,SSL_TXT_DES,0, 0,0,SSL_DES, 0,0,0,0,0,0}, |
| 280 | {0,SSL_TXT_3DES,0, 0,0,SSL_3DES, 0,0,0,0,0,0}, |
| 281 | {0,SSL_TXT_RC4,0, 0,0,SSL_RC4, 0,0,0,0,0,0}, |
| 282 | {0,SSL_TXT_RC2,0, 0,0,SSL_RC2, 0,0,0,0,0,0}, |
| 283 | {0,SSL_TXT_IDEA,0, 0,0,SSL_IDEA, 0,0,0,0,0,0}, |
| 284 | {0,SSL_TXT_SEED,0, 0,0,SSL_SEED, 0,0,0,0,0,0}, |
| 285 | {0,SSL_TXT_eNULL,0, 0,0,SSL_eNULL, 0,0,0,0,0,0}, |
| 286 | {0,SSL_TXT_AES128,0, 0,0,SSL_AES128|SSL_AES128GCM,0,0,0,0,0,0}, |
| 287 | {0,SSL_TXT_AES256,0, 0,0,SSL_AES256|SSL_AES256GCM,0,0,0,0,0,0}, |
| 288 | {0,SSL_TXT_AES,0, 0,0,SSL_AES,0,0,0,0,0,0}, |
| 289 | {0,SSL_TXT_AES_GCM,0, 0,0,SSL_AES128GCM|SSL_AES256GCM,0,0,0,0,0,0}, |
| 290 | {0,SSL_TXT_CAMELLIA128,0,0,0,SSL_CAMELLIA128,0,0,0,0,0,0}, |
| 291 | {0,SSL_TXT_CAMELLIA256,0,0,0,SSL_CAMELLIA256,0,0,0,0,0,0}, |
| 292 | {0,SSL_TXT_CAMELLIA ,0,0,0,SSL_CAMELLIA128|SSL_CAMELLIA256,0,0,0,0,0,0}, |
Adam Langley | de0b202 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 293 | {0,SSL_TXT_CHACHA20 ,0,0,0,SSL_CHACHA20POLY1305,0,0,0,0,0,0}, |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 294 | |
| 295 | /* MAC aliases */ |
| 296 | {0,SSL_TXT_MD5,0, 0,0,0,SSL_MD5, 0,0,0,0,0}, |
| 297 | {0,SSL_TXT_SHA1,0, 0,0,0,SSL_SHA1, 0,0,0,0,0}, |
| 298 | {0,SSL_TXT_SHA,0, 0,0,0,SSL_SHA1, 0,0,0,0,0}, |
| 299 | {0,SSL_TXT_GOST94,0, 0,0,0,SSL_GOST94, 0,0,0,0,0}, |
| 300 | {0,SSL_TXT_GOST89MAC,0, 0,0,0,SSL_GOST89MAC, 0,0,0,0,0}, |
| 301 | {0,SSL_TXT_SHA256,0, 0,0,0,SSL_SHA256, 0,0,0,0,0}, |
| 302 | {0,SSL_TXT_SHA384,0, 0,0,0,SSL_SHA384, 0,0,0,0,0}, |
| 303 | |
| 304 | /* protocol version aliases */ |
| 305 | {0,SSL_TXT_SSLV2,0, 0,0,0,0,SSL_SSLV2, 0,0,0,0}, |
| 306 | {0,SSL_TXT_SSLV3,0, 0,0,0,0,SSL_SSLV3, 0,0,0,0}, |
| 307 | {0,SSL_TXT_TLSV1,0, 0,0,0,0,SSL_TLSV1, 0,0,0,0}, |
| 308 | {0,SSL_TXT_TLSV1_2,0, 0,0,0,0,SSL_TLSV1_2, 0,0,0,0}, |
| 309 | |
| 310 | /* export flag */ |
| 311 | {0,SSL_TXT_EXP,0, 0,0,0,0,0,SSL_EXPORT,0,0,0}, |
| 312 | {0,SSL_TXT_EXPORT,0, 0,0,0,0,0,SSL_EXPORT,0,0,0}, |
| 313 | |
| 314 | /* strength classes */ |
| 315 | {0,SSL_TXT_EXP40,0, 0,0,0,0,0,SSL_EXP40, 0,0,0}, |
| 316 | {0,SSL_TXT_EXP56,0, 0,0,0,0,0,SSL_EXP56, 0,0,0}, |
| 317 | {0,SSL_TXT_LOW,0, 0,0,0,0,0,SSL_LOW, 0,0,0}, |
| 318 | {0,SSL_TXT_MEDIUM,0, 0,0,0,0,0,SSL_MEDIUM,0,0,0}, |
| 319 | {0,SSL_TXT_HIGH,0, 0,0,0,0,0,SSL_HIGH, 0,0,0}, |
| 320 | /* FIPS 140-2 approved ciphersuite */ |
| 321 | {0,SSL_TXT_FIPS,0, 0,0,~SSL_eNULL,0,0,SSL_FIPS, 0,0,0}, |
| 322 | }; |
| 323 | |
| 324 | void ssl_load_ciphers(void) |
| 325 | { |
| 326 | ssl_cipher_methods[SSL_ENC_DES_IDX]= EVP_des_cbc(); |
| 327 | ssl_cipher_methods[SSL_ENC_3DES_IDX]= EVP_des_ede3_cbc(); |
| 328 | ssl_cipher_methods[SSL_ENC_RC4_IDX]= EVP_rc4(); |
| 329 | ssl_cipher_methods[SSL_ENC_AES128_IDX]= EVP_aes_128_cbc(); |
| 330 | ssl_cipher_methods[SSL_ENC_AES256_IDX]= EVP_aes_256_cbc(); |
| 331 | |
| 332 | ssl_cipher_methods[SSL_ENC_AES128GCM_IDX]= EVP_aes_128_gcm(); |
| 333 | ssl_cipher_methods[SSL_ENC_AES256GCM_IDX]= EVP_aes_256_gcm(); |
| 334 | |
| 335 | ssl_digest_methods[SSL_MD_MD5_IDX]= EVP_md5(); |
| 336 | ssl_mac_secret_size[SSL_MD_MD5_IDX]= EVP_MD_size(EVP_md5()); |
| 337 | assert(ssl_mac_secret_size[SSL_MD_MD5_IDX] >= 0); |
| 338 | ssl_digest_methods[SSL_MD_SHA1_IDX]=EVP_sha1(); |
| 339 | ssl_mac_secret_size[SSL_MD_SHA1_IDX]= EVP_MD_size(EVP_sha1()); |
| 340 | assert(ssl_mac_secret_size[SSL_MD_SHA1_IDX] >= 0); |
| 341 | |
| 342 | ssl_digest_methods[SSL_MD_SHA256_IDX]= EVP_sha256(); |
| 343 | ssl_mac_secret_size[SSL_MD_SHA256_IDX]= EVP_MD_size(EVP_sha256()); |
| 344 | ssl_digest_methods[SSL_MD_SHA384_IDX]= EVP_sha384(); |
| 345 | ssl_mac_secret_size[SSL_MD_SHA384_IDX]= EVP_MD_size(EVP_sha384()); |
| 346 | } |
| 347 | |
Adam Langley | c9fb375 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 348 | /* ssl_cipher_get_evp_aead sets |*aead| to point to the correct EVP_AEAD object |
| 349 | * for |s->cipher|. It returns 1 on success and 0 on error. */ |
| 350 | int ssl_cipher_get_evp_aead(const SSL_SESSION *s, const EVP_AEAD **aead) |
| 351 | { |
| 352 | const SSL_CIPHER *c = s->cipher; |
| 353 | |
| 354 | *aead = NULL; |
| 355 | |
| 356 | if (c == NULL) |
| 357 | return 0; |
Adam Langley | 9447dff | 2014-06-24 17:29:06 -0700 | [diff] [blame] | 358 | if ((c->algorithm2 & SSL_CIPHER_ALGORITHM2_AEAD) == 0 && |
| 359 | (c->algorithm2 & SSL_CIPHER_ALGORITHM2_STATEFUL_AEAD) == 0) |
Adam Langley | c9fb375 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 360 | return 0; |
| 361 | |
| 362 | #ifndef OPENSSL_NO_AES |
Adam Langley | de0b202 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 363 | switch (c->algorithm_enc) |
| 364 | { |
| 365 | case SSL_AES128GCM: |
| 366 | *aead = EVP_aead_aes_128_gcm(); |
| 367 | return 1; |
Adam Langley | 5c270c5 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 368 | case SSL_AES256GCM: |
| 369 | *aead = EVP_aead_aes_256_gcm(); |
| 370 | return 1; |
Adam Langley | de0b202 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 371 | case SSL_CHACHA20POLY1305: |
| 372 | *aead = EVP_aead_chacha20_poly1305(); |
| 373 | return 1; |
Adam Langley | 9447dff | 2014-06-24 17:29:06 -0700 | [diff] [blame] | 374 | case SSL_RC4: |
| 375 | if (c->algorithm_mac == SSL_MD5) |
| 376 | *aead = EVP_aead_rc4_md5_tls(); |
| 377 | else |
| 378 | return 0; |
| 379 | return 1; |
| 380 | } |
Adam Langley | c9fb375 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 381 | #endif |
| 382 | |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | int ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc, |
| 387 | const EVP_MD **md, int *mac_pkey_type, int *mac_secret_size) |
| 388 | { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 389 | int i; |
| 390 | const SSL_CIPHER *c; |
| 391 | |
| 392 | c=s->cipher; |
| 393 | if (c == NULL) return(0); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 394 | |
Adam Langley | c9fb375 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 395 | /* This function doesn't deal with EVP_AEAD. See |
| 396 | * |ssl_cipher_get_aead_evp|. */ |
| 397 | if (c->algorithm2 & SSL_CIPHER_ALGORITHM2_AEAD) |
| 398 | return(0); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 399 | |
| 400 | if ((enc == NULL) || (md == NULL)) return(0); |
| 401 | |
| 402 | switch (c->algorithm_enc) |
| 403 | { |
| 404 | case SSL_DES: |
| 405 | i=SSL_ENC_DES_IDX; |
| 406 | break; |
| 407 | case SSL_3DES: |
| 408 | i=SSL_ENC_3DES_IDX; |
| 409 | break; |
| 410 | case SSL_RC4: |
| 411 | i=SSL_ENC_RC4_IDX; |
| 412 | break; |
| 413 | case SSL_RC2: |
| 414 | i=SSL_ENC_RC2_IDX; |
| 415 | break; |
| 416 | case SSL_IDEA: |
| 417 | i=SSL_ENC_IDEA_IDX; |
| 418 | break; |
| 419 | case SSL_eNULL: |
| 420 | i=SSL_ENC_NULL_IDX; |
| 421 | break; |
| 422 | case SSL_AES128: |
| 423 | i=SSL_ENC_AES128_IDX; |
| 424 | break; |
| 425 | case SSL_AES256: |
| 426 | i=SSL_ENC_AES256_IDX; |
| 427 | break; |
| 428 | case SSL_CAMELLIA128: |
| 429 | i=SSL_ENC_CAMELLIA128_IDX; |
| 430 | break; |
| 431 | case SSL_CAMELLIA256: |
| 432 | i=SSL_ENC_CAMELLIA256_IDX; |
| 433 | break; |
| 434 | case SSL_eGOST2814789CNT: |
| 435 | i=SSL_ENC_GOST89_IDX; |
| 436 | break; |
| 437 | case SSL_SEED: |
| 438 | i=SSL_ENC_SEED_IDX; |
| 439 | break; |
| 440 | case SSL_AES128GCM: |
| 441 | i=SSL_ENC_AES128GCM_IDX; |
| 442 | break; |
| 443 | case SSL_AES256GCM: |
| 444 | i=SSL_ENC_AES256GCM_IDX; |
| 445 | break; |
| 446 | default: |
| 447 | i= -1; |
| 448 | break; |
| 449 | } |
| 450 | |
Adam Langley | 4c65f3a | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 451 | if ((i < 0) || (i >= SSL_ENC_NUM_IDX)) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 452 | *enc=NULL; |
| 453 | else |
| 454 | { |
| 455 | if (i == SSL_ENC_NULL_IDX) |
| 456 | *enc = EVP_enc_null(); |
| 457 | |
| 458 | *enc=ssl_cipher_methods[i]; |
| 459 | } |
| 460 | |
Adam Langley | 9447dff | 2014-06-24 17:29:06 -0700 | [diff] [blame] | 461 | if (!ssl_cipher_get_mac(s, md, mac_pkey_type, mac_secret_size)) |
| 462 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 463 | |
| 464 | if ((*enc != NULL) && |
| 465 | (*md != NULL || (EVP_CIPHER_flags(*enc)&EVP_CIPH_FLAG_AEAD_CIPHER)) && |
| 466 | (!mac_pkey_type||*mac_pkey_type != NID_undef)) |
| 467 | { |
| 468 | if (s->ssl_version>>8 != TLS1_VERSION_MAJOR || |
| 469 | s->ssl_version < TLS1_VERSION) |
| 470 | return 1; |
| 471 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 472 | /* TODO(fork): enable the stitched cipher modes. */ |
| 473 | #if 0 |
| 474 | if (c->algorithm_enc == SSL_RC4 && |
| 475 | c->algorithm_mac == SSL_MD5 && |
| 476 | (evp=EVP_get_cipherbyname("RC4-HMAC-MD5"))) |
| 477 | *enc = evp, *md = NULL; |
| 478 | else if (c->algorithm_enc == SSL_AES128 && |
| 479 | c->algorithm_mac == SSL_SHA1 && |
| 480 | (evp=EVP_get_cipherbyname("AES-128-CBC-HMAC-SHA1"))) |
| 481 | *enc = evp, *md = NULL; |
| 482 | else if (c->algorithm_enc == SSL_AES256 && |
| 483 | c->algorithm_mac == SSL_SHA1 && |
| 484 | (evp=EVP_get_cipherbyname("AES-256-CBC-HMAC-SHA1"))) |
| 485 | *enc = evp, *md = NULL; |
| 486 | #endif |
| 487 | return(1); |
| 488 | } |
| 489 | else |
| 490 | return(0); |
| 491 | } |
| 492 | |
Adam Langley | 9447dff | 2014-06-24 17:29:06 -0700 | [diff] [blame] | 493 | int ssl_cipher_get_mac(const SSL_SESSION *s, const EVP_MD **md, int *mac_pkey_type, int *mac_secret_size) |
| 494 | { |
| 495 | int i; |
| 496 | const SSL_CIPHER *c; |
| 497 | |
| 498 | c=s->cipher; |
| 499 | if (c == NULL) return(0); |
| 500 | |
| 501 | switch (c->algorithm_mac) |
| 502 | { |
| 503 | case SSL_MD5: |
| 504 | i=SSL_MD_MD5_IDX; |
| 505 | break; |
| 506 | case SSL_SHA1: |
| 507 | i=SSL_MD_SHA1_IDX; |
| 508 | break; |
| 509 | case SSL_SHA256: |
| 510 | i=SSL_MD_SHA256_IDX; |
| 511 | break; |
| 512 | case SSL_SHA384: |
| 513 | i=SSL_MD_SHA384_IDX; |
| 514 | break; |
| 515 | case SSL_GOST94: |
| 516 | i = SSL_MD_GOST94_IDX; |
| 517 | break; |
| 518 | case SSL_GOST89MAC: |
| 519 | i = SSL_MD_GOST89MAC_IDX; |
| 520 | break; |
| 521 | default: |
| 522 | i= -1; |
| 523 | break; |
| 524 | } |
| 525 | |
| 526 | if ((i < 0) || (i >= SSL_MD_NUM_IDX)) |
| 527 | { |
| 528 | *md=NULL; |
| 529 | if (mac_pkey_type!=NULL) *mac_pkey_type = NID_undef; |
| 530 | if (mac_secret_size!=NULL) *mac_secret_size = 0; |
| 531 | } |
| 532 | else |
| 533 | { |
| 534 | *md=ssl_digest_methods[i]; |
| 535 | if (mac_pkey_type!=NULL) *mac_pkey_type = ssl_mac_pkey_id[i]; |
| 536 | if (mac_secret_size!=NULL) *mac_secret_size = ssl_mac_secret_size[i]; |
| 537 | } |
| 538 | |
| 539 | return 1; |
| 540 | } |
| 541 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 542 | int ssl_get_handshake_digest(int idx, long *mask, const EVP_MD **md) |
| 543 | { |
| 544 | if (idx <0||idx>=SSL_MD_NUM_IDX) |
| 545 | { |
| 546 | return 0; |
| 547 | } |
| 548 | *mask = ssl_handshake_digest_flag[idx]; |
| 549 | if (*mask) |
| 550 | *md = ssl_digest_methods[idx]; |
| 551 | else |
| 552 | *md = NULL; |
| 553 | return 1; |
| 554 | } |
| 555 | |
| 556 | #define ITEM_SEP(a) \ |
| 557 | (((a) == ':') || ((a) == ' ') || ((a) == ';') || ((a) == ',')) |
| 558 | |
| 559 | static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, |
| 560 | CIPHER_ORDER **tail) |
| 561 | { |
| 562 | if (curr == *tail) return; |
| 563 | if (curr == *head) |
| 564 | *head=curr->next; |
| 565 | if (curr->prev != NULL) |
| 566 | curr->prev->next=curr->next; |
| 567 | if (curr->next != NULL) |
| 568 | curr->next->prev=curr->prev; |
| 569 | (*tail)->next=curr; |
| 570 | curr->prev= *tail; |
| 571 | curr->next=NULL; |
| 572 | *tail=curr; |
| 573 | } |
| 574 | |
| 575 | static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, |
| 576 | CIPHER_ORDER **tail) |
| 577 | { |
| 578 | if (curr == *head) return; |
| 579 | if (curr == *tail) |
| 580 | *tail=curr->prev; |
| 581 | if (curr->next != NULL) |
| 582 | curr->next->prev=curr->prev; |
| 583 | if (curr->prev != NULL) |
| 584 | curr->prev->next=curr->next; |
| 585 | (*head)->prev=curr; |
| 586 | curr->next= *head; |
| 587 | curr->prev=NULL; |
| 588 | *head=curr; |
| 589 | } |
| 590 | |
| 591 | static void ssl_cipher_get_disabled(unsigned long *mkey, unsigned long *auth, unsigned long *enc, unsigned long *mac, unsigned long *ssl) |
| 592 | { |
| 593 | *mkey = 0; |
| 594 | *auth = 0; |
| 595 | *enc = 0; |
| 596 | *mac = 0; |
| 597 | *ssl = 0; |
| 598 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 599 | #ifdef OPENSSL_NO_DSA |
| 600 | *auth |= SSL_aDSS; |
| 601 | #endif |
| 602 | #ifdef OPENSSL_NO_DH |
| 603 | *mkey |= SSL_kDHr|SSL_kDHd|SSL_kEDH; |
| 604 | *auth |= SSL_aDH; |
| 605 | #endif |
| 606 | #ifdef OPENSSL_NO_ECDSA |
| 607 | *auth |= SSL_aECDSA; |
| 608 | #endif |
| 609 | #ifdef OPENSSL_NO_ECDH |
| 610 | *mkey |= SSL_kECDHe|SSL_kECDHr; |
| 611 | *auth |= SSL_aECDH; |
| 612 | #endif |
| 613 | #ifdef OPENSSL_NO_PSK |
| 614 | *mkey |= SSL_kPSK; |
| 615 | *auth |= SSL_aPSK; |
| 616 | #endif |
| 617 | #ifdef SSL_FORBID_ENULL |
| 618 | *enc |= SSL_eNULL; |
| 619 | #endif |
| 620 | |
| 621 | |
| 622 | |
| 623 | *enc |= (ssl_cipher_methods[SSL_ENC_DES_IDX ] == NULL) ? SSL_DES :0; |
| 624 | *enc |= (ssl_cipher_methods[SSL_ENC_3DES_IDX] == NULL) ? SSL_3DES:0; |
| 625 | *enc |= (ssl_cipher_methods[SSL_ENC_RC4_IDX ] == NULL) ? SSL_RC4 :0; |
| 626 | *enc |= (ssl_cipher_methods[SSL_ENC_RC2_IDX ] == NULL) ? SSL_RC2 :0; |
| 627 | *enc |= (ssl_cipher_methods[SSL_ENC_IDEA_IDX] == NULL) ? SSL_IDEA:0; |
| 628 | *enc |= (ssl_cipher_methods[SSL_ENC_AES128_IDX] == NULL) ? SSL_AES128:0; |
| 629 | *enc |= (ssl_cipher_methods[SSL_ENC_AES256_IDX] == NULL) ? SSL_AES256:0; |
| 630 | *enc |= (ssl_cipher_methods[SSL_ENC_AES128GCM_IDX] == NULL) ? SSL_AES128GCM:0; |
| 631 | *enc |= (ssl_cipher_methods[SSL_ENC_AES256GCM_IDX] == NULL) ? SSL_AES256GCM:0; |
| 632 | *enc |= (ssl_cipher_methods[SSL_ENC_CAMELLIA128_IDX] == NULL) ? SSL_CAMELLIA128:0; |
| 633 | *enc |= (ssl_cipher_methods[SSL_ENC_CAMELLIA256_IDX] == NULL) ? SSL_CAMELLIA256:0; |
| 634 | *enc |= (ssl_cipher_methods[SSL_ENC_GOST89_IDX] == NULL) ? SSL_eGOST2814789CNT:0; |
| 635 | *enc |= (ssl_cipher_methods[SSL_ENC_SEED_IDX] == NULL) ? SSL_SEED:0; |
| 636 | |
| 637 | *mac |= (ssl_digest_methods[SSL_MD_MD5_IDX ] == NULL) ? SSL_MD5 :0; |
| 638 | *mac |= (ssl_digest_methods[SSL_MD_SHA1_IDX] == NULL) ? SSL_SHA1:0; |
| 639 | *mac |= (ssl_digest_methods[SSL_MD_SHA256_IDX] == NULL) ? SSL_SHA256:0; |
| 640 | *mac |= (ssl_digest_methods[SSL_MD_SHA384_IDX] == NULL) ? SSL_SHA384:0; |
| 641 | *mac |= (ssl_digest_methods[SSL_MD_GOST94_IDX] == NULL) ? SSL_GOST94:0; |
| 642 | *mac |= (ssl_digest_methods[SSL_MD_GOST89MAC_IDX] == NULL || ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX]==NID_undef)? SSL_GOST89MAC:0; |
| 643 | |
| 644 | } |
| 645 | |
| 646 | static void ssl_cipher_collect_ciphers(const SSL_METHOD *ssl_method, |
| 647 | int num_of_ciphers, |
| 648 | unsigned long disabled_mkey, unsigned long disabled_auth, |
| 649 | unsigned long disabled_enc, unsigned long disabled_mac, |
| 650 | unsigned long disabled_ssl, |
| 651 | CIPHER_ORDER *co_list, |
| 652 | CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p) |
| 653 | { |
| 654 | int i, co_list_num; |
| 655 | const SSL_CIPHER *c; |
| 656 | |
| 657 | /* |
| 658 | * We have num_of_ciphers descriptions compiled in, depending on the |
| 659 | * method selected (SSLv2 and/or SSLv3, TLSv1 etc). |
| 660 | * These will later be sorted in a linked list with at most num |
| 661 | * entries. |
| 662 | */ |
| 663 | |
| 664 | /* Get the initial list of ciphers */ |
| 665 | co_list_num = 0; /* actual count of ciphers */ |
| 666 | for (i = 0; i < num_of_ciphers; i++) |
| 667 | { |
| 668 | c = ssl_method->get_cipher(i); |
| 669 | /* drop those that use any of that is not available */ |
| 670 | if ((c != NULL) && c->valid && |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 671 | !(c->algorithm_mkey & disabled_mkey) && |
| 672 | !(c->algorithm_auth & disabled_auth) && |
| 673 | !(c->algorithm_enc & disabled_enc) && |
| 674 | !(c->algorithm_mac & disabled_mac) && |
| 675 | !(c->algorithm_ssl & disabled_ssl)) |
| 676 | { |
| 677 | co_list[co_list_num].cipher = c; |
| 678 | co_list[co_list_num].next = NULL; |
| 679 | co_list[co_list_num].prev = NULL; |
| 680 | co_list[co_list_num].active = 0; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 681 | co_list[co_list_num].in_group = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 682 | co_list_num++; |
| 683 | #ifdef KSSL_DEBUG |
| 684 | printf("\t%d: %s %lx %lx %lx\n",i,c->name,c->id,c->algorithm_mkey,c->algorithm_auth); |
| 685 | #endif /* KSSL_DEBUG */ |
| 686 | /* |
| 687 | if (!sk_push(ca_list,(char *)c)) goto err; |
| 688 | */ |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | /* |
| 693 | * Prepare linked list from list entries |
| 694 | */ |
| 695 | if (co_list_num > 0) |
| 696 | { |
| 697 | co_list[0].prev = NULL; |
| 698 | |
| 699 | if (co_list_num > 1) |
| 700 | { |
| 701 | co_list[0].next = &co_list[1]; |
| 702 | |
| 703 | for (i = 1; i < co_list_num - 1; i++) |
| 704 | { |
| 705 | co_list[i].prev = &co_list[i - 1]; |
| 706 | co_list[i].next = &co_list[i + 1]; |
| 707 | } |
| 708 | |
| 709 | co_list[co_list_num - 1].prev = &co_list[co_list_num - 2]; |
| 710 | } |
| 711 | |
| 712 | co_list[co_list_num - 1].next = NULL; |
| 713 | |
| 714 | *head_p = &co_list[0]; |
| 715 | *tail_p = &co_list[co_list_num - 1]; |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | static void ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, |
| 720 | int num_of_group_aliases, |
| 721 | unsigned long disabled_mkey, unsigned long disabled_auth, |
| 722 | unsigned long disabled_enc, unsigned long disabled_mac, |
| 723 | unsigned long disabled_ssl, |
| 724 | CIPHER_ORDER *head) |
| 725 | { |
| 726 | CIPHER_ORDER *ciph_curr; |
| 727 | const SSL_CIPHER **ca_curr; |
| 728 | int i; |
| 729 | unsigned long mask_mkey = ~disabled_mkey; |
| 730 | unsigned long mask_auth = ~disabled_auth; |
| 731 | unsigned long mask_enc = ~disabled_enc; |
| 732 | unsigned long mask_mac = ~disabled_mac; |
| 733 | unsigned long mask_ssl = ~disabled_ssl; |
| 734 | |
| 735 | /* |
| 736 | * First, add the real ciphers as already collected |
| 737 | */ |
| 738 | ciph_curr = head; |
| 739 | ca_curr = ca_list; |
| 740 | while (ciph_curr != NULL) |
| 741 | { |
| 742 | *ca_curr = ciph_curr->cipher; |
| 743 | ca_curr++; |
| 744 | ciph_curr = ciph_curr->next; |
| 745 | } |
| 746 | |
| 747 | /* |
| 748 | * Now we add the available ones from the cipher_aliases[] table. |
| 749 | * They represent either one or more algorithms, some of which |
| 750 | * in any affected category must be supported (set in enabled_mask), |
| 751 | * or represent a cipher strength value (will be added in any case because algorithms=0). |
| 752 | */ |
| 753 | for (i = 0; i < num_of_group_aliases; i++) |
| 754 | { |
| 755 | unsigned long algorithm_mkey = cipher_aliases[i].algorithm_mkey; |
| 756 | unsigned long algorithm_auth = cipher_aliases[i].algorithm_auth; |
| 757 | unsigned long algorithm_enc = cipher_aliases[i].algorithm_enc; |
| 758 | unsigned long algorithm_mac = cipher_aliases[i].algorithm_mac; |
| 759 | unsigned long algorithm_ssl = cipher_aliases[i].algorithm_ssl; |
| 760 | |
| 761 | if (algorithm_mkey) |
| 762 | if ((algorithm_mkey & mask_mkey) == 0) |
| 763 | continue; |
| 764 | |
| 765 | if (algorithm_auth) |
| 766 | if ((algorithm_auth & mask_auth) == 0) |
| 767 | continue; |
| 768 | |
| 769 | if (algorithm_enc) |
| 770 | if ((algorithm_enc & mask_enc) == 0) |
| 771 | continue; |
| 772 | |
| 773 | if (algorithm_mac) |
| 774 | if ((algorithm_mac & mask_mac) == 0) |
| 775 | continue; |
| 776 | |
| 777 | if (algorithm_ssl) |
| 778 | if ((algorithm_ssl & mask_ssl) == 0) |
| 779 | continue; |
| 780 | |
| 781 | *ca_curr = (SSL_CIPHER *)(cipher_aliases + i); |
| 782 | ca_curr++; |
| 783 | } |
| 784 | |
| 785 | *ca_curr = NULL; /* end of list */ |
| 786 | } |
| 787 | |
| 788 | static void ssl_cipher_apply_rule(unsigned long cipher_id, |
| 789 | unsigned long alg_mkey, unsigned long alg_auth, |
| 790 | unsigned long alg_enc, unsigned long alg_mac, |
| 791 | unsigned long alg_ssl, |
| 792 | unsigned long algo_strength, |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 793 | int rule, int strength_bits, int in_group, |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 794 | CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p) |
| 795 | { |
| 796 | CIPHER_ORDER *head, *tail, *curr, *curr2, *last; |
| 797 | const SSL_CIPHER *cp; |
| 798 | int reverse = 0; |
| 799 | |
| 800 | #ifdef CIPHER_DEBUG |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 801 | printf("Applying rule %d with %08lx/%08lx/%08lx/%08lx/%08lx %08lx (%d) in_group:%d\n", |
| 802 | rule, alg_mkey, alg_auth, alg_enc, alg_mac, alg_ssl, algo_strength, strength_bits, in_group); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 803 | #endif |
| 804 | |
| 805 | if (rule == CIPHER_DEL) |
| 806 | reverse = 1; /* needed to maintain sorting between currently deleted ciphers */ |
| 807 | |
| 808 | head = *head_p; |
| 809 | tail = *tail_p; |
| 810 | |
| 811 | if (reverse) |
| 812 | { |
| 813 | curr = tail; |
| 814 | last = head; |
| 815 | } |
| 816 | else |
| 817 | { |
| 818 | curr = head; |
| 819 | last = tail; |
| 820 | } |
| 821 | |
| 822 | curr2 = curr; |
| 823 | for (;;) |
| 824 | { |
| 825 | if ((curr == NULL) || (curr == last)) break; |
| 826 | curr = curr2; |
| 827 | curr2 = reverse ? curr->prev : curr->next; |
| 828 | |
| 829 | cp = curr->cipher; |
| 830 | |
| 831 | /* |
| 832 | * Selection criteria is either the value of strength_bits |
| 833 | * or the algorithms used. |
| 834 | */ |
| 835 | if (strength_bits >= 0) |
| 836 | { |
| 837 | if (strength_bits != cp->strength_bits) |
| 838 | continue; |
| 839 | } |
| 840 | else |
| 841 | { |
| 842 | #ifdef CIPHER_DEBUG |
| 843 | printf("\nName: %s:\nAlgo = %08lx/%08lx/%08lx/%08lx/%08lx Algo_strength = %08lx\n", cp->name, cp->algorithm_mkey, cp->algorithm_auth, cp->algorithm_enc, cp->algorithm_mac, cp->algorithm_ssl, cp->algo_strength); |
| 844 | #endif |
| 845 | #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL |
| 846 | if (cipher_id && cipher_id != cp->id) |
| 847 | continue; |
| 848 | #endif |
| 849 | if (alg_mkey && !(alg_mkey & cp->algorithm_mkey)) |
| 850 | continue; |
| 851 | if (alg_auth && !(alg_auth & cp->algorithm_auth)) |
| 852 | continue; |
| 853 | if (alg_enc && !(alg_enc & cp->algorithm_enc)) |
| 854 | continue; |
| 855 | if (alg_mac && !(alg_mac & cp->algorithm_mac)) |
| 856 | continue; |
| 857 | if (alg_ssl && !(alg_ssl & cp->algorithm_ssl)) |
| 858 | continue; |
| 859 | if ((algo_strength & SSL_EXP_MASK) && !(algo_strength & SSL_EXP_MASK & cp->algo_strength)) |
| 860 | continue; |
| 861 | if ((algo_strength & SSL_STRONG_MASK) && !(algo_strength & SSL_STRONG_MASK & cp->algo_strength)) |
| 862 | continue; |
| 863 | } |
| 864 | |
| 865 | #ifdef CIPHER_DEBUG |
| 866 | printf("Action = %d\n", rule); |
| 867 | #endif |
| 868 | |
| 869 | /* add the cipher if it has not been added yet. */ |
| 870 | if (rule == CIPHER_ADD) |
| 871 | { |
| 872 | /* reverse == 0 */ |
| 873 | if (!curr->active) |
| 874 | { |
| 875 | ll_append_tail(&head, curr, &tail); |
| 876 | curr->active = 1; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 877 | curr->in_group = in_group; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 878 | } |
| 879 | } |
| 880 | /* Move the added cipher to this location */ |
| 881 | else if (rule == CIPHER_ORD) |
| 882 | { |
| 883 | /* reverse == 0 */ |
| 884 | if (curr->active) |
| 885 | { |
| 886 | ll_append_tail(&head, curr, &tail); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 887 | curr->in_group = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 888 | } |
| 889 | } |
| 890 | else if (rule == CIPHER_DEL) |
| 891 | { |
| 892 | /* reverse == 1 */ |
| 893 | if (curr->active) |
| 894 | { |
| 895 | /* most recently deleted ciphersuites get best positions |
| 896 | * for any future CIPHER_ADD (note that the CIPHER_DEL loop |
| 897 | * works in reverse to maintain the order) */ |
| 898 | ll_append_head(&head, curr, &tail); |
| 899 | curr->active = 0; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 900 | curr->in_group = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 901 | } |
| 902 | } |
| 903 | else if (rule == CIPHER_KILL) |
| 904 | { |
| 905 | /* reverse == 0 */ |
| 906 | if (head == curr) |
| 907 | head = curr->next; |
| 908 | else |
| 909 | curr->prev->next = curr->next; |
| 910 | if (tail == curr) |
| 911 | tail = curr->prev; |
| 912 | curr->active = 0; |
| 913 | if (curr->next != NULL) |
| 914 | curr->next->prev = curr->prev; |
| 915 | if (curr->prev != NULL) |
| 916 | curr->prev->next = curr->next; |
| 917 | curr->next = NULL; |
| 918 | curr->prev = NULL; |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | *head_p = head; |
| 923 | *tail_p = tail; |
| 924 | } |
| 925 | |
| 926 | static int ssl_cipher_strength_sort(CIPHER_ORDER **head_p, |
| 927 | CIPHER_ORDER **tail_p) |
| 928 | { |
| 929 | int max_strength_bits, i, *number_uses; |
| 930 | CIPHER_ORDER *curr; |
| 931 | |
| 932 | /* |
| 933 | * This routine sorts the ciphers with descending strength. The sorting |
| 934 | * must keep the pre-sorted sequence, so we apply the normal sorting |
| 935 | * routine as '+' movement to the end of the list. |
| 936 | */ |
| 937 | max_strength_bits = 0; |
| 938 | curr = *head_p; |
| 939 | while (curr != NULL) |
| 940 | { |
| 941 | if (curr->active && |
| 942 | (curr->cipher->strength_bits > max_strength_bits)) |
| 943 | max_strength_bits = curr->cipher->strength_bits; |
| 944 | curr = curr->next; |
| 945 | } |
| 946 | |
| 947 | number_uses = OPENSSL_malloc((max_strength_bits + 1) * sizeof(int)); |
| 948 | if (!number_uses) |
| 949 | { |
| 950 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_strength_sort, ERR_R_MALLOC_FAILURE); |
| 951 | return(0); |
| 952 | } |
| 953 | memset(number_uses, 0, (max_strength_bits + 1) * sizeof(int)); |
| 954 | |
| 955 | /* |
| 956 | * Now find the strength_bits values actually used |
| 957 | */ |
| 958 | curr = *head_p; |
| 959 | while (curr != NULL) |
| 960 | { |
| 961 | if (curr->active) |
| 962 | number_uses[curr->cipher->strength_bits]++; |
| 963 | curr = curr->next; |
| 964 | } |
| 965 | /* |
| 966 | * Go through the list of used strength_bits values in descending |
| 967 | * order. |
| 968 | */ |
| 969 | for (i = max_strength_bits; i >= 0; i--) |
| 970 | if (number_uses[i] > 0) |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 971 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ORD, i, 0, head_p, tail_p); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 972 | |
| 973 | OPENSSL_free(number_uses); |
| 974 | return(1); |
| 975 | } |
| 976 | |
| 977 | static int ssl_cipher_process_rulestr(const char *rule_str, |
| 978 | CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p, |
| 979 | const SSL_CIPHER **ca_list) |
| 980 | { |
| 981 | unsigned long alg_mkey, alg_auth, alg_enc, alg_mac, alg_ssl, algo_strength; |
| 982 | const char *l, *buf; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 983 | int j, multi, found, rule, retval, ok, buflen, in_group = 0, |
| 984 | has_group = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 985 | unsigned long cipher_id = 0; |
| 986 | char ch; |
| 987 | |
| 988 | retval = 1; |
| 989 | l = rule_str; |
| 990 | for (;;) |
| 991 | { |
| 992 | ch = *l; |
| 993 | |
| 994 | if (ch == '\0') |
| 995 | break; /* done */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 996 | if (in_group) |
| 997 | { |
| 998 | if (ch == ']') |
| 999 | { |
| 1000 | if (!in_group) |
| 1001 | { |
| 1002 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_UNEXPECTED_GROUP_CLOSE); |
| 1003 | retval = found = in_group = 0; |
| 1004 | break; |
| 1005 | } |
| 1006 | if (*tail_p) |
| 1007 | (*tail_p)->in_group = 0; |
| 1008 | in_group = 0; |
| 1009 | l++; |
| 1010 | continue; |
| 1011 | } |
| 1012 | if (ch == '|') |
| 1013 | { rule = CIPHER_ADD; l++; continue; } |
| 1014 | else if (!(ch >= 'a' && ch <= 'z') && |
| 1015 | !(ch >= 'A' && ch <= 'Z') && |
| 1016 | !(ch >= '0' && ch <= '9')) |
| 1017 | { |
| 1018 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_UNEXPECTED_OPERATOR_IN_GROUP); |
| 1019 | retval = found = in_group = 0; |
| 1020 | break; |
| 1021 | } |
| 1022 | else |
| 1023 | rule = CIPHER_ADD; |
| 1024 | } |
| 1025 | else if (ch == '-') |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1026 | { rule = CIPHER_DEL; l++; } |
| 1027 | else if (ch == '+') |
| 1028 | { rule = CIPHER_ORD; l++; } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1029 | else if (ch == '!' && has_group) |
| 1030 | { |
| 1031 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_MIXED_SPECIAL_OPERATOR_WITH_GROUPS); |
| 1032 | retval = found = in_group = 0; |
| 1033 | break; |
| 1034 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1035 | else if (ch == '!') |
| 1036 | { rule = CIPHER_KILL; l++; } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1037 | else if (ch == '@' && has_group) |
| 1038 | { |
| 1039 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_MIXED_SPECIAL_OPERATOR_WITH_GROUPS); |
| 1040 | retval = found = in_group = 0; |
| 1041 | break; |
| 1042 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1043 | else if (ch == '@') |
| 1044 | { rule = CIPHER_SPECIAL; l++; } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1045 | else if (ch == '[') |
| 1046 | { |
| 1047 | if (in_group) |
| 1048 | { |
| 1049 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_NESTED_GROUP); |
| 1050 | retval = found = in_group = 0; |
| 1051 | break; |
| 1052 | } |
| 1053 | in_group = 1; |
| 1054 | has_group = 1; |
| 1055 | l++; |
| 1056 | continue; |
| 1057 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1058 | else |
| 1059 | { rule = CIPHER_ADD; } |
| 1060 | |
| 1061 | if (ITEM_SEP(ch)) |
| 1062 | { |
| 1063 | l++; |
| 1064 | continue; |
| 1065 | } |
| 1066 | |
| 1067 | alg_mkey = 0; |
| 1068 | alg_auth = 0; |
| 1069 | alg_enc = 0; |
| 1070 | alg_mac = 0; |
| 1071 | alg_ssl = 0; |
| 1072 | algo_strength = 0; |
| 1073 | |
| 1074 | for (;;) |
| 1075 | { |
| 1076 | ch = *l; |
| 1077 | buf = l; |
| 1078 | buflen = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1079 | while ( ((ch >= 'A') && (ch <= 'Z')) || |
| 1080 | ((ch >= '0') && (ch <= '9')) || |
| 1081 | ((ch >= 'a') && (ch <= 'z')) || |
| 1082 | (ch == '-') || (ch == '.')) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1083 | { |
| 1084 | ch = *(++l); |
| 1085 | buflen++; |
| 1086 | } |
| 1087 | |
| 1088 | if (buflen == 0) |
| 1089 | { |
| 1090 | /* |
| 1091 | * We hit something we cannot deal with, |
| 1092 | * it is no command or separator nor |
| 1093 | * alphanumeric, so we call this an error. |
| 1094 | */ |
| 1095 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_INVALID_COMMAND); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1096 | retval = found = in_group = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1097 | l++; |
| 1098 | break; |
| 1099 | } |
| 1100 | |
| 1101 | if (rule == CIPHER_SPECIAL) |
| 1102 | { |
| 1103 | found = 0; /* unused -- avoid compiler warning */ |
| 1104 | break; /* special treatment */ |
| 1105 | } |
| 1106 | |
| 1107 | /* check for multi-part specification */ |
| 1108 | if (ch == '+') |
| 1109 | { |
| 1110 | multi=1; |
| 1111 | l++; |
| 1112 | } |
| 1113 | else |
| 1114 | multi=0; |
| 1115 | |
| 1116 | /* |
| 1117 | * Now search for the cipher alias in the ca_list. Be careful |
| 1118 | * with the strncmp, because the "buflen" limitation |
| 1119 | * will make the rule "ADH:SOME" and the cipher |
| 1120 | * "ADH-MY-CIPHER" look like a match for buflen=3. |
| 1121 | * So additionally check whether the cipher name found |
| 1122 | * has the correct length. We can save a strlen() call: |
| 1123 | * just checking for the '\0' at the right place is |
| 1124 | * sufficient, we have to strncmp() anyway. (We cannot |
| 1125 | * use strcmp(), because buf is not '\0' terminated.) |
| 1126 | */ |
| 1127 | j = found = 0; |
| 1128 | cipher_id = 0; |
| 1129 | while (ca_list[j]) |
| 1130 | { |
| 1131 | if (!strncmp(buf, ca_list[j]->name, buflen) && |
| 1132 | (ca_list[j]->name[buflen] == '\0')) |
| 1133 | { |
| 1134 | found = 1; |
| 1135 | break; |
| 1136 | } |
| 1137 | else |
| 1138 | j++; |
| 1139 | } |
| 1140 | |
| 1141 | if (!found) |
| 1142 | break; /* ignore this entry */ |
| 1143 | |
| 1144 | if (ca_list[j]->algorithm_mkey) |
| 1145 | { |
| 1146 | if (alg_mkey) |
| 1147 | { |
| 1148 | alg_mkey &= ca_list[j]->algorithm_mkey; |
| 1149 | if (!alg_mkey) { found = 0; break; } |
| 1150 | } |
| 1151 | else |
| 1152 | alg_mkey = ca_list[j]->algorithm_mkey; |
| 1153 | } |
| 1154 | |
| 1155 | if (ca_list[j]->algorithm_auth) |
| 1156 | { |
| 1157 | if (alg_auth) |
| 1158 | { |
| 1159 | alg_auth &= ca_list[j]->algorithm_auth; |
| 1160 | if (!alg_auth) { found = 0; break; } |
| 1161 | } |
| 1162 | else |
| 1163 | alg_auth = ca_list[j]->algorithm_auth; |
| 1164 | } |
| 1165 | |
| 1166 | if (ca_list[j]->algorithm_enc) |
| 1167 | { |
| 1168 | if (alg_enc) |
| 1169 | { |
| 1170 | alg_enc &= ca_list[j]->algorithm_enc; |
| 1171 | if (!alg_enc) { found = 0; break; } |
| 1172 | } |
| 1173 | else |
| 1174 | alg_enc = ca_list[j]->algorithm_enc; |
| 1175 | } |
| 1176 | |
| 1177 | if (ca_list[j]->algorithm_mac) |
| 1178 | { |
| 1179 | if (alg_mac) |
| 1180 | { |
| 1181 | alg_mac &= ca_list[j]->algorithm_mac; |
| 1182 | if (!alg_mac) { found = 0; break; } |
| 1183 | } |
| 1184 | else |
| 1185 | alg_mac = ca_list[j]->algorithm_mac; |
| 1186 | } |
| 1187 | |
| 1188 | if (ca_list[j]->algo_strength & SSL_EXP_MASK) |
| 1189 | { |
| 1190 | if (algo_strength & SSL_EXP_MASK) |
| 1191 | { |
| 1192 | algo_strength &= (ca_list[j]->algo_strength & SSL_EXP_MASK) | ~SSL_EXP_MASK; |
| 1193 | if (!(algo_strength & SSL_EXP_MASK)) { found = 0; break; } |
| 1194 | } |
| 1195 | else |
| 1196 | algo_strength |= ca_list[j]->algo_strength & SSL_EXP_MASK; |
| 1197 | } |
| 1198 | |
| 1199 | if (ca_list[j]->algo_strength & SSL_STRONG_MASK) |
| 1200 | { |
| 1201 | if (algo_strength & SSL_STRONG_MASK) |
| 1202 | { |
| 1203 | algo_strength &= (ca_list[j]->algo_strength & SSL_STRONG_MASK) | ~SSL_STRONG_MASK; |
| 1204 | if (!(algo_strength & SSL_STRONG_MASK)) { found = 0; break; } |
| 1205 | } |
| 1206 | else |
| 1207 | algo_strength |= ca_list[j]->algo_strength & SSL_STRONG_MASK; |
| 1208 | } |
| 1209 | |
| 1210 | if (ca_list[j]->valid) |
| 1211 | { |
| 1212 | /* explicit ciphersuite found; its protocol version |
| 1213 | * does not become part of the search pattern!*/ |
| 1214 | |
| 1215 | cipher_id = ca_list[j]->id; |
| 1216 | } |
| 1217 | else |
| 1218 | { |
| 1219 | /* not an explicit ciphersuite; only in this case, the |
| 1220 | * protocol version is considered part of the search pattern */ |
| 1221 | |
| 1222 | if (ca_list[j]->algorithm_ssl) |
| 1223 | { |
| 1224 | if (alg_ssl) |
| 1225 | { |
| 1226 | alg_ssl &= ca_list[j]->algorithm_ssl; |
| 1227 | if (!alg_ssl) { found = 0; break; } |
| 1228 | } |
| 1229 | else |
| 1230 | alg_ssl = ca_list[j]->algorithm_ssl; |
| 1231 | } |
| 1232 | } |
| 1233 | |
| 1234 | if (!multi) break; |
| 1235 | } |
| 1236 | |
| 1237 | /* |
| 1238 | * Ok, we have the rule, now apply it |
| 1239 | */ |
| 1240 | if (rule == CIPHER_SPECIAL) |
| 1241 | { /* special command */ |
| 1242 | ok = 0; |
| 1243 | if ((buflen == 8) && |
| 1244 | !strncmp(buf, "STRENGTH", 8)) |
| 1245 | ok = ssl_cipher_strength_sort(head_p, tail_p); |
| 1246 | else |
| 1247 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_INVALID_COMMAND); |
| 1248 | if (ok == 0) |
| 1249 | retval = 0; |
| 1250 | /* |
| 1251 | * We do not support any "multi" options |
| 1252 | * together with "@", so throw away the |
| 1253 | * rest of the command, if any left, until |
| 1254 | * end or ':' is found. |
| 1255 | */ |
| 1256 | while ((*l != '\0') && !ITEM_SEP(*l)) |
| 1257 | l++; |
| 1258 | } |
| 1259 | else if (found) |
| 1260 | { |
| 1261 | ssl_cipher_apply_rule(cipher_id, |
| 1262 | alg_mkey, alg_auth, alg_enc, alg_mac, alg_ssl, algo_strength, |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1263 | rule, -1, in_group, head_p, tail_p); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1264 | } |
| 1265 | else |
| 1266 | { |
| 1267 | while ((*l != '\0') && !ITEM_SEP(*l)) |
| 1268 | l++; |
| 1269 | } |
| 1270 | if (*l == '\0') break; /* done */ |
| 1271 | } |
| 1272 | |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1273 | if (in_group) |
| 1274 | { |
| 1275 | OPENSSL_PUT_ERROR(SSL, ssl_cipher_process_rulestr, SSL_R_INVALID_COMMAND); |
| 1276 | retval = 0; |
| 1277 | } |
| 1278 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1279 | return(retval); |
| 1280 | } |
| 1281 | #ifndef OPENSSL_NO_EC |
| 1282 | static int check_suiteb_cipher_list(const SSL_METHOD *meth, CERT *c, |
| 1283 | const char **prule_str) |
| 1284 | { |
| 1285 | unsigned int suiteb_flags = 0, suiteb_comb2 = 0; |
| 1286 | if (!strcmp(*prule_str, "SUITEB128")) |
| 1287 | suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS; |
| 1288 | else if (!strcmp(*prule_str, "SUITEB128ONLY")) |
| 1289 | suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS_ONLY; |
| 1290 | else if (!strcmp(*prule_str, "SUITEB128C2")) |
| 1291 | { |
| 1292 | suiteb_comb2 = 1; |
| 1293 | suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS; |
| 1294 | } |
| 1295 | else if (!strcmp(*prule_str, "SUITEB192")) |
| 1296 | suiteb_flags = SSL_CERT_FLAG_SUITEB_192_LOS; |
| 1297 | |
| 1298 | if (suiteb_flags) |
| 1299 | { |
| 1300 | c->cert_flags &= ~SSL_CERT_FLAG_SUITEB_128_LOS; |
| 1301 | c->cert_flags |= suiteb_flags; |
| 1302 | } |
| 1303 | else |
| 1304 | suiteb_flags = c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS; |
| 1305 | |
| 1306 | if (!suiteb_flags) |
| 1307 | return 1; |
| 1308 | /* Check version: if TLS 1.2 ciphers allowed we can use Suite B */ |
| 1309 | |
| 1310 | if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS)) |
| 1311 | { |
| 1312 | if (meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) |
| 1313 | OPENSSL_PUT_ERROR(SSL, check_suiteb_cipher_list, SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE); |
| 1314 | else |
| 1315 | OPENSSL_PUT_ERROR(SSL, check_suiteb_cipher_list, SSL_R_ONLY_TLS_1_2_ALLOWED_IN_SUITEB_MODE); |
| 1316 | return 0; |
| 1317 | } |
| 1318 | |
| 1319 | switch(suiteb_flags) |
| 1320 | { |
| 1321 | case SSL_CERT_FLAG_SUITEB_128_LOS: |
| 1322 | if (suiteb_comb2) |
| 1323 | *prule_str = "ECDHE-ECDSA-AES256-GCM-SHA384"; |
| 1324 | else |
| 1325 | *prule_str = "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384"; |
| 1326 | break; |
| 1327 | case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY: |
| 1328 | *prule_str = "ECDHE-ECDSA-AES128-GCM-SHA256"; |
| 1329 | break; |
| 1330 | case SSL_CERT_FLAG_SUITEB_192_LOS: |
| 1331 | *prule_str = "ECDHE-ECDSA-AES256-GCM-SHA384"; |
| 1332 | break; |
| 1333 | } |
| 1334 | /* Set auto ECDH parameter determination */ |
| 1335 | c->ecdh_tmp_auto = 1; |
| 1336 | return 1; |
| 1337 | } |
| 1338 | #endif |
| 1339 | |
| 1340 | |
| 1341 | STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method, |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1342 | struct ssl_cipher_preference_list_st **cipher_list, |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1343 | STACK_OF(SSL_CIPHER) **cipher_list_by_id, |
| 1344 | const char *rule_str, CERT *c) |
| 1345 | { |
| 1346 | int ok, num_of_ciphers, num_of_alias_max, num_of_group_aliases; |
| 1347 | unsigned long disabled_mkey, disabled_auth, disabled_enc, disabled_mac, disabled_ssl; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1348 | STACK_OF(SSL_CIPHER) *cipherstack = NULL, *tmp_cipher_list = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1349 | const char *rule_p; |
| 1350 | CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; |
| 1351 | const SSL_CIPHER **ca_list = NULL; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1352 | unsigned char *in_group_flags = NULL; |
| 1353 | unsigned int num_in_group_flags = 0; |
| 1354 | struct ssl_cipher_preference_list_st *pref_list = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1355 | |
| 1356 | /* |
| 1357 | * Return with error if nothing to do. |
| 1358 | */ |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1359 | if (rule_str == NULL || cipher_list == NULL) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1360 | return NULL; |
| 1361 | #ifndef OPENSSL_NO_EC |
| 1362 | if (!check_suiteb_cipher_list(ssl_method, c, &rule_str)) |
| 1363 | return NULL; |
| 1364 | #endif |
| 1365 | |
| 1366 | /* |
| 1367 | * To reduce the work to do we only want to process the compiled |
| 1368 | * in algorithms, so we first get the mask of disabled ciphers. |
| 1369 | */ |
| 1370 | ssl_cipher_get_disabled(&disabled_mkey, &disabled_auth, &disabled_enc, &disabled_mac, &disabled_ssl); |
| 1371 | |
| 1372 | /* |
| 1373 | * Now we have to collect the available ciphers from the compiled |
| 1374 | * in ciphers. We cannot get more than the number compiled in, so |
| 1375 | * it is used for allocation. |
| 1376 | */ |
| 1377 | num_of_ciphers = ssl_method->num_ciphers(); |
| 1378 | #ifdef KSSL_DEBUG |
| 1379 | printf("ssl_create_cipher_list() for %d ciphers\n", num_of_ciphers); |
| 1380 | #endif /* KSSL_DEBUG */ |
| 1381 | co_list = (CIPHER_ORDER *)OPENSSL_malloc(sizeof(CIPHER_ORDER) * num_of_ciphers); |
| 1382 | if (co_list == NULL) |
| 1383 | { |
| 1384 | OPENSSL_PUT_ERROR(SSL, ssl_create_cipher_list, ERR_R_MALLOC_FAILURE); |
| 1385 | return(NULL); /* Failure */ |
| 1386 | } |
| 1387 | |
| 1388 | ssl_cipher_collect_ciphers(ssl_method, num_of_ciphers, |
| 1389 | disabled_mkey, disabled_auth, disabled_enc, disabled_mac, disabled_ssl, |
| 1390 | co_list, &head, &tail); |
| 1391 | |
| 1392 | |
| 1393 | /* Now arrange all ciphers by preference: */ |
| 1394 | |
| 1395 | /* Everything else being equal, prefer ephemeral ECDH over other key exchange mechanisms */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1396 | ssl_cipher_apply_rule(0, SSL_kEECDH, 0, 0, 0, 0, 0, CIPHER_ADD, -1, 0, &head, &tail); |
| 1397 | ssl_cipher_apply_rule(0, SSL_kEECDH, 0, 0, 0, 0, 0, CIPHER_DEL, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1398 | |
| 1399 | /* AES is our preferred symmetric cipher */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1400 | ssl_cipher_apply_rule(0, 0, 0, SSL_AES, 0, 0, 0, CIPHER_ADD, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1401 | |
| 1402 | /* Temporarily enable everything else for sorting */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1403 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1404 | |
| 1405 | /* Low priority for MD5 */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1406 | ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1407 | |
| 1408 | /* Move anonymous ciphers to the end. Usually, these will remain disabled. |
| 1409 | * (For applications that allow them, they aren't too bad, but we prefer |
| 1410 | * authenticated ciphers.) */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1411 | ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1412 | |
| 1413 | /* Move ciphers without forward secrecy to the end */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1414 | ssl_cipher_apply_rule(0, 0, SSL_aECDH, 0, 0, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); |
| 1415 | /* ssl_cipher_apply_rule(0, 0, SSL_aDH, 0, 0, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); */ |
| 1416 | ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); |
| 1417 | ssl_cipher_apply_rule(0, SSL_kPSK, 0,0, 0, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1418 | |
| 1419 | /* RC4 is sort-of broken -- move the the end */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1420 | ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1421 | |
| 1422 | /* Now sort by symmetric encryption strength. The above ordering remains |
| 1423 | * in force within each class */ |
| 1424 | if (!ssl_cipher_strength_sort(&head, &tail)) |
| 1425 | { |
| 1426 | OPENSSL_free(co_list); |
| 1427 | return NULL; |
| 1428 | } |
| 1429 | |
| 1430 | /* Now disable everything (maintaining the ordering!) */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1431 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL, -1, 0, &head, &tail); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1432 | |
| 1433 | |
| 1434 | /* |
| 1435 | * We also need cipher aliases for selecting based on the rule_str. |
| 1436 | * There might be two types of entries in the rule_str: 1) names |
| 1437 | * of ciphers themselves 2) aliases for groups of ciphers. |
| 1438 | * For 1) we need the available ciphers and for 2) the cipher |
| 1439 | * groups of cipher_aliases added together in one list (otherwise |
| 1440 | * we would be happy with just the cipher_aliases table). |
| 1441 | */ |
| 1442 | num_of_group_aliases = sizeof(cipher_aliases) / sizeof(SSL_CIPHER); |
| 1443 | num_of_alias_max = num_of_ciphers + num_of_group_aliases + 1; |
| 1444 | ca_list = OPENSSL_malloc(sizeof(SSL_CIPHER *) * num_of_alias_max); |
| 1445 | if (ca_list == NULL) |
| 1446 | { |
| 1447 | OPENSSL_free(co_list); |
| 1448 | OPENSSL_PUT_ERROR(SSL, ssl_create_cipher_list, ERR_R_MALLOC_FAILURE); |
| 1449 | return(NULL); /* Failure */ |
| 1450 | } |
| 1451 | ssl_cipher_collect_aliases(ca_list, num_of_group_aliases, |
| 1452 | disabled_mkey, disabled_auth, disabled_enc, |
| 1453 | disabled_mac, disabled_ssl, head); |
| 1454 | |
| 1455 | /* |
| 1456 | * If the rule_string begins with DEFAULT, apply the default rule |
| 1457 | * before using the (possibly available) additional rules. |
| 1458 | */ |
| 1459 | ok = 1; |
| 1460 | rule_p = rule_str; |
| 1461 | if (strncmp(rule_str,"DEFAULT",7) == 0) |
| 1462 | { |
| 1463 | ok = ssl_cipher_process_rulestr(SSL_DEFAULT_CIPHER_LIST, |
| 1464 | &head, &tail, ca_list); |
| 1465 | rule_p += 7; |
| 1466 | if (*rule_p == ':') |
| 1467 | rule_p++; |
| 1468 | } |
| 1469 | |
| 1470 | if (ok && (strlen(rule_p) > 0)) |
| 1471 | ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list); |
| 1472 | |
| 1473 | OPENSSL_free((void *)ca_list); /* Not needed anymore */ |
| 1474 | |
| 1475 | if (!ok) |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1476 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1477 | |
| 1478 | /* |
| 1479 | * Allocate new "cipherstack" for the result, return with error |
| 1480 | * if we cannot get one. |
| 1481 | */ |
| 1482 | if ((cipherstack = sk_SSL_CIPHER_new_null()) == NULL) |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1483 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1484 | |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1485 | in_group_flags = OPENSSL_malloc(num_of_ciphers); |
| 1486 | if (!in_group_flags) |
| 1487 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1488 | /* |
| 1489 | * The cipher selection for the list is done. The ciphers are added |
| 1490 | * to the resulting precedence to the STACK_OF(SSL_CIPHER). |
| 1491 | */ |
| 1492 | for (curr = head; curr != NULL; curr = curr->next) |
| 1493 | { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1494 | if (curr->active) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1495 | { |
| 1496 | sk_SSL_CIPHER_push(cipherstack, curr->cipher); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1497 | in_group_flags[num_in_group_flags++] = curr->in_group; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1498 | #ifdef CIPHER_DEBUG |
| 1499 | printf("<%s>\n",curr->cipher->name); |
| 1500 | #endif |
| 1501 | } |
| 1502 | } |
| 1503 | OPENSSL_free(co_list); /* Not needed any longer */ |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1504 | co_list = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1505 | |
| 1506 | tmp_cipher_list = sk_SSL_CIPHER_dup(cipherstack); |
| 1507 | if (tmp_cipher_list == NULL) |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1508 | goto err; |
| 1509 | pref_list = OPENSSL_malloc(sizeof(struct ssl_cipher_preference_list_st)); |
| 1510 | if (!pref_list) |
| 1511 | goto err; |
| 1512 | pref_list->ciphers = cipherstack; |
| 1513 | pref_list->in_group_flags = OPENSSL_malloc(num_in_group_flags); |
| 1514 | if (!pref_list->in_group_flags) |
| 1515 | goto err; |
| 1516 | memcpy(pref_list->in_group_flags, in_group_flags, num_in_group_flags); |
| 1517 | OPENSSL_free(in_group_flags); |
| 1518 | in_group_flags = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1519 | if (*cipher_list != NULL) |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1520 | ssl_cipher_preference_list_free(*cipher_list); |
| 1521 | *cipher_list = pref_list; |
| 1522 | pref_list = NULL; |
| 1523 | |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1524 | if (cipher_list_by_id != NULL) |
| 1525 | { |
| 1526 | if (*cipher_list_by_id != NULL) |
| 1527 | sk_SSL_CIPHER_free(*cipher_list_by_id); |
| 1528 | *cipher_list_by_id = tmp_cipher_list; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1529 | tmp_cipher_list = NULL; |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1530 | (void)sk_SSL_CIPHER_set_cmp_func(*cipher_list_by_id,ssl_cipher_ptr_id_cmp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1531 | |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1532 | sk_SSL_CIPHER_sort(*cipher_list_by_id); |
| 1533 | } |
| 1534 | else |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1535 | { |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1536 | sk_SSL_CIPHER_free(tmp_cipher_list); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1537 | tmp_cipher_list = NULL; |
| 1538 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1539 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1540 | return(cipherstack); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1541 | |
| 1542 | err: |
| 1543 | if (co_list) |
| 1544 | OPENSSL_free(co_list); |
| 1545 | if (in_group_flags) |
| 1546 | OPENSSL_free(in_group_flags); |
| 1547 | if (cipherstack) |
| 1548 | sk_SSL_CIPHER_free(cipherstack); |
| 1549 | if (tmp_cipher_list) |
| 1550 | sk_SSL_CIPHER_free(tmp_cipher_list); |
| 1551 | if (pref_list && pref_list->in_group_flags) |
| 1552 | OPENSSL_free(pref_list->in_group_flags); |
| 1553 | if (pref_list) |
| 1554 | OPENSSL_free(pref_list); |
| 1555 | return NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1556 | } |
| 1557 | |
Adam Langley | 7351076 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1558 | const char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1559 | { |
| 1560 | int is_export,pkl,kl; |
| 1561 | const char *ver,*exp_str; |
| 1562 | const char *kx,*au,*enc,*mac; |
| 1563 | unsigned long alg_mkey,alg_auth,alg_enc,alg_mac,alg_ssl,alg2; |
| 1564 | #ifdef KSSL_DEBUG |
| 1565 | static const char *format="%-23s %s Kx=%-8s Au=%-4s Enc=%-9s Mac=%-4s%s AL=%lx/%lx/%lx/%lx/%lx\n"; |
| 1566 | #else |
| 1567 | static const char *format="%-23s %s Kx=%-8s Au=%-4s Enc=%-9s Mac=%-4s%s\n"; |
| 1568 | #endif /* KSSL_DEBUG */ |
| 1569 | |
| 1570 | alg_mkey = cipher->algorithm_mkey; |
| 1571 | alg_auth = cipher->algorithm_auth; |
| 1572 | alg_enc = cipher->algorithm_enc; |
| 1573 | alg_mac = cipher->algorithm_mac; |
| 1574 | alg_ssl = cipher->algorithm_ssl; |
| 1575 | |
| 1576 | alg2=cipher->algorithm2; |
| 1577 | |
| 1578 | is_export=SSL_C_IS_EXPORT(cipher); |
| 1579 | pkl=SSL_C_EXPORT_PKEYLENGTH(cipher); |
| 1580 | kl=SSL_C_EXPORT_KEYLENGTH(cipher); |
| 1581 | exp_str=is_export?" export":""; |
| 1582 | |
| 1583 | if (alg_ssl & SSL_SSLV2) |
| 1584 | ver="SSLv2"; |
| 1585 | else if (alg_ssl & SSL_SSLV3) |
| 1586 | ver="SSLv3"; |
| 1587 | else if (alg_ssl & SSL_TLSV1_2) |
| 1588 | ver="TLSv1.2"; |
| 1589 | else |
| 1590 | ver="unknown"; |
| 1591 | |
| 1592 | switch (alg_mkey) |
| 1593 | { |
| 1594 | case SSL_kRSA: |
| 1595 | kx=is_export?(pkl == 512 ? "RSA(512)" : "RSA(1024)"):"RSA"; |
| 1596 | break; |
| 1597 | case SSL_kDHr: |
| 1598 | kx="DH/RSA"; |
| 1599 | break; |
| 1600 | case SSL_kDHd: |
| 1601 | kx="DH/DSS"; |
| 1602 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1603 | case SSL_kEDH: |
| 1604 | kx=is_export?(pkl == 512 ? "DH(512)" : "DH(1024)"):"DH"; |
| 1605 | break; |
| 1606 | case SSL_kECDHr: |
| 1607 | kx="ECDH/RSA"; |
| 1608 | break; |
| 1609 | case SSL_kECDHe: |
| 1610 | kx="ECDH/ECDSA"; |
| 1611 | break; |
| 1612 | case SSL_kEECDH: |
| 1613 | kx="ECDH"; |
| 1614 | break; |
| 1615 | case SSL_kPSK: |
| 1616 | kx="PSK"; |
| 1617 | break; |
| 1618 | case SSL_kSRP: |
| 1619 | kx="SRP"; |
| 1620 | break; |
| 1621 | default: |
| 1622 | kx="unknown"; |
| 1623 | } |
| 1624 | |
| 1625 | switch (alg_auth) |
| 1626 | { |
| 1627 | case SSL_aRSA: |
| 1628 | au="RSA"; |
| 1629 | break; |
| 1630 | case SSL_aDSS: |
| 1631 | au="DSS"; |
| 1632 | break; |
| 1633 | case SSL_aDH: |
| 1634 | au="DH"; |
| 1635 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1636 | case SSL_aECDH: |
| 1637 | au="ECDH"; |
| 1638 | break; |
| 1639 | case SSL_aNULL: |
| 1640 | au="None"; |
| 1641 | break; |
| 1642 | case SSL_aECDSA: |
| 1643 | au="ECDSA"; |
| 1644 | break; |
| 1645 | case SSL_aPSK: |
| 1646 | au="PSK"; |
| 1647 | break; |
| 1648 | default: |
| 1649 | au="unknown"; |
| 1650 | break; |
| 1651 | } |
| 1652 | |
| 1653 | switch (alg_enc) |
| 1654 | { |
| 1655 | case SSL_DES: |
| 1656 | enc=(is_export && kl == 5)?"DES(40)":"DES(56)"; |
| 1657 | break; |
| 1658 | case SSL_3DES: |
| 1659 | enc="3DES(168)"; |
| 1660 | break; |
| 1661 | case SSL_RC4: |
| 1662 | enc=is_export?(kl == 5 ? "RC4(40)" : "RC4(56)") |
| 1663 | :((alg2&SSL2_CF_8_BYTE_ENC)?"RC4(64)":"RC4(128)"); |
| 1664 | break; |
| 1665 | case SSL_RC2: |
| 1666 | enc=is_export?(kl == 5 ? "RC2(40)" : "RC2(56)"):"RC2(128)"; |
| 1667 | break; |
| 1668 | case SSL_IDEA: |
| 1669 | enc="IDEA(128)"; |
| 1670 | break; |
| 1671 | case SSL_eNULL: |
| 1672 | enc="None"; |
| 1673 | break; |
| 1674 | case SSL_AES128: |
| 1675 | enc="AES(128)"; |
| 1676 | break; |
| 1677 | case SSL_AES256: |
| 1678 | enc="AES(256)"; |
| 1679 | break; |
| 1680 | case SSL_AES128GCM: |
| 1681 | enc="AESGCM(128)"; |
| 1682 | break; |
| 1683 | case SSL_AES256GCM: |
| 1684 | enc="AESGCM(256)"; |
| 1685 | break; |
| 1686 | case SSL_CAMELLIA128: |
| 1687 | enc="Camellia(128)"; |
| 1688 | break; |
| 1689 | case SSL_CAMELLIA256: |
| 1690 | enc="Camellia(256)"; |
| 1691 | break; |
| 1692 | case SSL_SEED: |
| 1693 | enc="SEED(128)"; |
| 1694 | break; |
Adam Langley | de0b202 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1695 | case SSL_CHACHA20POLY1305: |
| 1696 | enc="ChaCha20-Poly1305"; |
| 1697 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1698 | default: |
| 1699 | enc="unknown"; |
| 1700 | break; |
| 1701 | } |
| 1702 | |
| 1703 | switch (alg_mac) |
| 1704 | { |
| 1705 | case SSL_MD5: |
| 1706 | mac="MD5"; |
| 1707 | break; |
| 1708 | case SSL_SHA1: |
| 1709 | mac="SHA1"; |
| 1710 | break; |
| 1711 | case SSL_SHA256: |
| 1712 | mac="SHA256"; |
| 1713 | break; |
| 1714 | case SSL_SHA384: |
| 1715 | mac="SHA384"; |
| 1716 | break; |
| 1717 | case SSL_AEAD: |
| 1718 | mac="AEAD"; |
| 1719 | break; |
| 1720 | default: |
| 1721 | mac="unknown"; |
| 1722 | break; |
| 1723 | } |
| 1724 | |
| 1725 | if (buf == NULL) |
| 1726 | { |
| 1727 | len=128; |
| 1728 | buf=OPENSSL_malloc(len); |
| 1729 | if (buf == NULL) return("OPENSSL_malloc Error"); |
| 1730 | } |
| 1731 | else if (len < 128) |
| 1732 | return("Buffer too small"); |
| 1733 | |
| 1734 | #ifdef KSSL_DEBUG |
| 1735 | BIO_snprintf(buf,len,format,cipher->name,ver,kx,au,enc,mac,exp_str,alg_mkey,alg_auth,alg_enc,alg_mac,alg_ssl); |
| 1736 | #else |
| 1737 | BIO_snprintf(buf,len,format,cipher->name,ver,kx,au,enc,mac,exp_str); |
| 1738 | #endif /* KSSL_DEBUG */ |
| 1739 | return(buf); |
| 1740 | } |
| 1741 | |
Adam Langley | 4d4bff8 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1742 | /* Next three functions require non-null cipher */ |
| 1743 | int SSL_CIPHER_is_AES(const SSL_CIPHER *c) |
| 1744 | { |
| 1745 | return (c->algorithm_enc & SSL_AES) != 0; |
| 1746 | } |
| 1747 | |
| 1748 | int SSL_CIPHER_has_MD5_HMAC(const SSL_CIPHER *c) |
| 1749 | { |
| 1750 | return (c->algorithm_mac & SSL_MD5) != 0; |
| 1751 | } |
| 1752 | |
| 1753 | int SSL_CIPHER_is_AESGCM(const SSL_CIPHER *c) |
| 1754 | { |
| 1755 | return (c->algorithm_mac & (SSL_AES128GCM|SSL_AES256GCM)) != 0; |
| 1756 | } |
| 1757 | |
Adam Langley | de0b202 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1758 | int SSL_CIPHER_is_CHACHA20POLY1305(const SSL_CIPHER *c) |
| 1759 | { |
| 1760 | return (c->algorithm_enc & SSL_CHACHA20POLY1305) != 0; |
| 1761 | } |
| 1762 | |
Adam Langley | 7351076 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1763 | const char *SSL_CIPHER_get_version(const SSL_CIPHER *c) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1764 | { |
| 1765 | int i; |
| 1766 | |
| 1767 | if (c == NULL) return("(NONE)"); |
| 1768 | i=(int)(c->id>>24L); |
| 1769 | if (i == 3) |
| 1770 | return("TLSv1/SSLv3"); |
| 1771 | else if (i == 2) |
| 1772 | return("SSLv2"); |
| 1773 | else |
| 1774 | return("unknown"); |
| 1775 | } |
| 1776 | |
| 1777 | /* return the actual cipher being used */ |
| 1778 | const char *SSL_CIPHER_get_name(const SSL_CIPHER *c) |
| 1779 | { |
| 1780 | if (c != NULL) |
| 1781 | return(c->name); |
| 1782 | return("(NONE)"); |
| 1783 | } |
| 1784 | |
| 1785 | /* number of bits for symmetric cipher */ |
| 1786 | int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits) |
| 1787 | { |
| 1788 | int ret=0; |
| 1789 | |
| 1790 | if (c != NULL) |
| 1791 | { |
| 1792 | if (alg_bits != NULL) *alg_bits = c->alg_bits; |
| 1793 | ret = c->strength_bits; |
| 1794 | } |
| 1795 | return(ret); |
| 1796 | } |
| 1797 | |
| 1798 | unsigned long SSL_CIPHER_get_id(const SSL_CIPHER *c) |
| 1799 | { |
| 1800 | return c->id; |
| 1801 | } |
| 1802 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1803 | void *SSL_COMP_get_compression_methods(void) |
| 1804 | { |
| 1805 | return NULL; |
| 1806 | } |
| 1807 | int SSL_COMP_add_compression_method(int id, void *cm) |
| 1808 | { |
| 1809 | return 1; |
| 1810 | } |
| 1811 | |
| 1812 | const char *SSL_COMP_get_name(const void *comp) |
| 1813 | { |
| 1814 | return NULL; |
| 1815 | } |
| 1816 | |
| 1817 | /* For a cipher return the index corresponding to the certificate type */ |
| 1818 | int ssl_cipher_get_cert_index(const SSL_CIPHER *c) |
| 1819 | { |
| 1820 | unsigned long alg_k, alg_a; |
| 1821 | |
| 1822 | alg_k = c->algorithm_mkey; |
| 1823 | alg_a = c->algorithm_auth; |
| 1824 | |
| 1825 | if (alg_k & (SSL_kECDHr|SSL_kECDHe)) |
| 1826 | { |
| 1827 | /* we don't need to look at SSL_kEECDH |
| 1828 | * since no certificate is needed for |
| 1829 | * anon ECDH and for authenticated |
| 1830 | * EECDH, the check for the auth |
| 1831 | * algorithm will set i correctly |
| 1832 | * NOTE: For ECDH-RSA, we need an ECC |
| 1833 | * not an RSA cert but for EECDH-RSA |
| 1834 | * we need an RSA cert. Placing the |
| 1835 | * checks for SSL_kECDH before RSA |
| 1836 | * checks ensures the correct cert is chosen. |
| 1837 | */ |
| 1838 | return SSL_PKEY_ECC; |
| 1839 | } |
| 1840 | else if (alg_a & SSL_aECDSA) |
| 1841 | return SSL_PKEY_ECC; |
| 1842 | else if (alg_k & SSL_kDHr) |
| 1843 | return SSL_PKEY_DH_RSA; |
| 1844 | else if (alg_k & SSL_kDHd) |
| 1845 | return SSL_PKEY_DH_DSA; |
| 1846 | else if (alg_a & SSL_aDSS) |
| 1847 | return SSL_PKEY_DSA_SIGN; |
| 1848 | else if (alg_a & SSL_aRSA) |
| 1849 | return SSL_PKEY_RSA_ENC; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1850 | else if (alg_a & SSL_aGOST94) |
| 1851 | return SSL_PKEY_GOST94; |
| 1852 | else if (alg_a & SSL_aGOST01) |
| 1853 | return SSL_PKEY_GOST01; |
| 1854 | return -1; |
| 1855 | } |
| 1856 | |
| 1857 | const SSL_CIPHER *ssl_get_cipher_by_char(SSL *ssl, const unsigned char *ptr) |
| 1858 | { |
| 1859 | const SSL_CIPHER *c; |
| 1860 | c = ssl->method->get_cipher_by_char(ptr); |
| 1861 | if (c == NULL || c->valid == 0) |
| 1862 | return NULL; |
| 1863 | return c; |
| 1864 | } |
| 1865 | |
| 1866 | const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr) |
| 1867 | { |
| 1868 | return ssl->method->get_cipher_by_char(ptr); |
| 1869 | } |
David Benjamin | e8f3d66 | 2014-07-12 01:10:19 -0400 | [diff] [blame] | 1870 | |
| 1871 | /* ssl_cipher_has_server_public_key returns 1 if |cipher| involves a |
| 1872 | * server public key in the key exchange, sent in a server Certificate |
| 1873 | * message. Otherwise it returns 0. */ |
| 1874 | int ssl_cipher_has_server_public_key(const SSL_CIPHER *cipher) |
| 1875 | { |
| 1876 | /* Anonymous ciphers do not include a server certificate. */ |
| 1877 | if (cipher->algorithm_auth & SSL_aNULL) |
| 1878 | return 0; |
| 1879 | /* Neither do PSK ciphers, except for RSA_PSK. */ |
| 1880 | if ((cipher->algorithm_auth & SSL_aPSK) && |
| 1881 | !(cipher->algorithm_mkey & SSL_kRSA)) |
| 1882 | return 0; |
| 1883 | /* All other ciphers include it. */ |
| 1884 | return 1; |
| 1885 | } |
David Benjamin | 9c651c9 | 2014-07-12 13:27:45 -0400 | [diff] [blame^] | 1886 | |
| 1887 | /* ssl_cipher_requires_server_key_exchange returns 1 if |cipher| |
| 1888 | * requires a ServerKeyExchange message. Otherwise it returns 0. |
| 1889 | * |
| 1890 | * Unlike ssl_cipher_has_server_public_key, some ciphers take optional |
| 1891 | * ServerKeyExchanges. PSK and RSA_PSK only use the ServerKeyExchange |
| 1892 | * to communicate a psk_identity_hint, so it is optional. |
| 1893 | * |
| 1894 | * Also, as implemented, the RSA key exchange takes an optional |
| 1895 | * ServerKeyExchange containing a signed ephemeral RSA encryption key. |
| 1896 | * |
| 1897 | * TODO(davidben): Can we remove the RSA one? This is a remnant of |
| 1898 | * RSA_EXPORT ciphers which required this (it was used to generate an |
| 1899 | * ephemeral 512-bit RSA encryption key), but it's allowed for all RSA |
| 1900 | * ciphers. There's even a SSL_OP_EPHEMERAL_RSA to always use it. */ |
| 1901 | int ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher) |
| 1902 | { |
| 1903 | /* Ephemeral Diffie-Hellman key exchanges require a |
| 1904 | * ServerKeyExchange. */ |
| 1905 | if (cipher->algorithm_mkey & SSL_kEDH || |
| 1906 | cipher->algorithm_mkey & SSL_kEECDH) |
| 1907 | return 1; |
| 1908 | /* It is optional in all others. */ |
| 1909 | return 0; |
| 1910 | } |