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-2002 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 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 110 | * ECC cipher suite support in OpenSSL originally developed by |
| 111 | * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ |
| 112 | |
David Benjamin | 9e4e01e | 2015-09-15 01:48:04 -0400 | [diff] [blame] | 113 | #include <openssl/ssl.h> |
| 114 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 115 | #include <assert.h> |
| 116 | #include <limits.h> |
| 117 | #include <stdio.h> |
| 118 | #include <string.h> |
| 119 | |
| 120 | #include <openssl/buf.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 121 | #include <openssl/err.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 122 | #include <openssl/evp.h> |
| 123 | #include <openssl/mem.h> |
David Benjamin | 854dd65 | 2014-08-26 00:32:30 -0400 | [diff] [blame] | 124 | #include <openssl/md5.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 125 | #include <openssl/obj.h> |
| 126 | #include <openssl/rand.h> |
David Benjamin | 854dd65 | 2014-08-26 00:32:30 -0400 | [diff] [blame] | 127 | #include <openssl/sha.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 128 | #include <openssl/x509.h> |
| 129 | |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 130 | #include "internal.h" |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 131 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 132 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 133 | /* ssl3_do_write sends |ssl->init_buf| in records of type 'type' |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 134 | * (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC). It returns -1 on error, 1 |
| 135 | * on success or zero if the transmission is still incomplete. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 136 | int ssl3_do_write(SSL *ssl, int type) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 137 | int n; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 138 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 139 | n = ssl3_write_bytes(ssl, type, &ssl->init_buf->data[ssl->init_off], |
| 140 | ssl->init_num); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 141 | if (n < 0) { |
| 142 | return -1; |
| 143 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 144 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 145 | if (n == ssl->init_num) { |
| 146 | if (ssl->msg_callback) { |
| 147 | ssl->msg_callback(1, ssl->version, type, ssl->init_buf->data, |
| 148 | (size_t)(ssl->init_off + ssl->init_num), ssl, |
| 149 | ssl->msg_callback_arg); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 150 | } |
| 151 | return 1; |
| 152 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 153 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 154 | ssl->init_off += n; |
| 155 | ssl->init_num -= n; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 156 | return 0; |
| 157 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 158 | |
David Benjamin | baa1216 | 2015-12-29 19:13:58 -0500 | [diff] [blame] | 159 | int ssl3_send_finished(SSL *ssl, int a, int b) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 160 | uint8_t *p; |
| 161 | int n; |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 162 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 163 | if (ssl->state == a) { |
| 164 | p = ssl_handshake_start(ssl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 165 | |
David Benjamin | b83003e | 2015-12-30 17:39:26 -0500 | [diff] [blame] | 166 | n = ssl->s3->enc_method->final_finish_mac(ssl, ssl->server, |
| 167 | ssl->s3->tmp.finish_md); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 168 | if (n == 0) { |
| 169 | return 0; |
| 170 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 171 | ssl->s3->tmp.finish_md_len = n; |
| 172 | memcpy(p, ssl->s3->tmp.finish_md, n); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 173 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 174 | /* Log the master secret, if logging is enabled. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 175 | if (!ssl_log_master_secret(ssl, ssl->s3->client_random, SSL3_RANDOM_SIZE, |
| 176 | ssl->session->master_key, |
| 177 | ssl->session->master_key_length)) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 178 | return 0; |
| 179 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 180 | |
David Benjamin | 8b36841 | 2015-03-14 01:54:17 -0400 | [diff] [blame] | 181 | /* Copy the finished so we can use it for renegotiation checks */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 182 | if (ssl->server) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 183 | assert(n <= EVP_MAX_MD_SIZE); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 184 | memcpy(ssl->s3->previous_server_finished, ssl->s3->tmp.finish_md, n); |
| 185 | ssl->s3->previous_server_finished_len = n; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 186 | } else { |
| 187 | assert(n <= EVP_MAX_MD_SIZE); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 188 | memcpy(ssl->s3->previous_client_finished, ssl->s3->tmp.finish_md, n); |
| 189 | ssl->s3->previous_client_finished_len = n; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 190 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 191 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 192 | if (!ssl_set_handshake_header(ssl, SSL3_MT_FINISHED, n)) { |
David Benjamin | fbdfefb | 2015-02-16 19:33:53 -0500 | [diff] [blame] | 193 | return 0; |
| 194 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 195 | ssl->state = b; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 196 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 197 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 198 | /* SSL3_ST_SEND_xxxxxx_HELLO_B */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 199 | return ssl_do_write(ssl); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 200 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 201 | |
Adam Langley | 691992b | 2015-06-03 09:49:55 -0700 | [diff] [blame] | 202 | /* ssl3_take_mac calculates the Finished MAC for the handshakes messages seen |
| 203 | * so far. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 204 | static void ssl3_take_mac(SSL *ssl) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 205 | /* If no new cipher setup then return immediately: other functions will set |
| 206 | * the appropriate error. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 207 | if (ssl->s3->tmp.new_cipher == NULL) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 208 | return; |
| 209 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 210 | |
David Benjamin | b83003e | 2015-12-30 17:39:26 -0500 | [diff] [blame] | 211 | ssl->s3->tmp.peer_finish_md_len = ssl->s3->enc_method->final_finish_mac( |
David Benjamin | baa1216 | 2015-12-29 19:13:58 -0500 | [diff] [blame] | 212 | ssl, !ssl->server, ssl->s3->tmp.peer_finish_md); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 213 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 214 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 215 | int ssl3_get_finished(SSL *ssl, int a, int b) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 216 | int al, finished_len, ok; |
| 217 | long message_len; |
| 218 | uint8_t *p; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 219 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 220 | message_len = ssl->method->ssl_get_message( |
| 221 | ssl, a, b, SSL3_MT_FINISHED, EVP_MAX_MD_SIZE, ssl_dont_hash_message, &ok); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 222 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 223 | if (!ok) { |
| 224 | return message_len; |
| 225 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 226 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 227 | /* Snapshot the finished hash before incorporating the new message. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 228 | ssl3_take_mac(ssl); |
| 229 | if (!ssl3_hash_current_message(ssl)) { |
David Benjamin | fbdfefb | 2015-02-16 19:33:53 -0500 | [diff] [blame] | 230 | goto err; |
| 231 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 232 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 233 | p = ssl->init_msg; |
| 234 | finished_len = ssl->s3->tmp.peer_finish_md_len; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 235 | |
| 236 | if (finished_len != message_len) { |
| 237 | al = SSL_AD_DECODE_ERROR; |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 238 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_DIGEST_LENGTH); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 239 | goto f_err; |
| 240 | } |
| 241 | |
David Benjamin | bf82aed | 2016-03-01 22:57:40 -0500 | [diff] [blame^] | 242 | int finished_ret = |
| 243 | CRYPTO_memcmp(p, ssl->s3->tmp.peer_finish_md, finished_len); |
| 244 | #if defined(BORINGSSL_UNSAFE_FUZZER_MODE) |
| 245 | finished_ret = 0; |
| 246 | #endif |
| 247 | if (finished_ret != 0) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 248 | al = SSL_AD_DECRYPT_ERROR; |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 249 | OPENSSL_PUT_ERROR(SSL, SSL_R_DIGEST_CHECK_FAILED); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 250 | goto f_err; |
| 251 | } |
| 252 | |
| 253 | /* Copy the finished so we can use it for renegotiation checks */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 254 | if (ssl->server) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 255 | assert(finished_len <= EVP_MAX_MD_SIZE); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 256 | memcpy(ssl->s3->previous_client_finished, ssl->s3->tmp.peer_finish_md, |
| 257 | finished_len); |
| 258 | ssl->s3->previous_client_finished_len = finished_len; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 259 | } else { |
| 260 | assert(finished_len <= EVP_MAX_MD_SIZE); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 261 | memcpy(ssl->s3->previous_server_finished, ssl->s3->tmp.peer_finish_md, |
| 262 | finished_len); |
| 263 | ssl->s3->previous_server_finished_len = finished_len; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | return 1; |
| 267 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 268 | f_err: |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 269 | ssl3_send_alert(ssl, SSL3_AL_FATAL, al); |
David Benjamin | fbdfefb | 2015-02-16 19:33:53 -0500 | [diff] [blame] | 270 | err: |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 271 | return 0; |
| 272 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 273 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 274 | int ssl3_send_change_cipher_spec(SSL *ssl, int a, int b) { |
| 275 | if (ssl->state == a) { |
| 276 | *((uint8_t *)ssl->init_buf->data) = SSL3_MT_CCS; |
| 277 | ssl->init_num = 1; |
| 278 | ssl->init_off = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 279 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 280 | ssl->state = b; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 281 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 282 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 283 | /* SSL3_ST_CW_CHANGE_B */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 284 | return ssl3_do_write(ssl, SSL3_RT_CHANGE_CIPHER_SPEC); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 285 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 286 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 287 | int ssl3_output_cert_chain(SSL *ssl) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 288 | uint8_t *p; |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 289 | unsigned long l = 3 + SSL_HM_HEADER_LENGTH(ssl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 290 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 291 | if (!ssl_add_cert_chain(ssl, &l)) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 292 | return 0; |
| 293 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 294 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 295 | l -= 3 + SSL_HM_HEADER_LENGTH(ssl); |
| 296 | p = ssl_handshake_start(ssl); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 297 | l2n3(l, p); |
| 298 | l += 3; |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 299 | return ssl_set_handshake_header(ssl, SSL3_MT_CERTIFICATE, l); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 300 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 301 | |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 302 | /* Obtain handshake message of message type |msg_type| (any if |msg_type| == -1), |
| 303 | * maximum acceptable body length |max|. The first four bytes (msg_type and |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 304 | * length) are read in state |header_state|, the body is read in state |
| 305 | * |body_state|. */ |
| 306 | long ssl3_get_message(SSL *ssl, int header_state, int body_state, int msg_type, |
David Benjamin | 5ca39fb | 2015-03-01 23:57:54 -0500 | [diff] [blame] | 307 | long max, enum ssl_hash_message_t hash_message, int *ok) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 308 | uint8_t *p; |
| 309 | unsigned long l; |
| 310 | long n; |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 311 | int al; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 312 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 313 | if (ssl->s3->tmp.reuse_message) { |
David Benjamin | 5ca39fb | 2015-03-01 23:57:54 -0500 | [diff] [blame] | 314 | /* A ssl_dont_hash_message call cannot be combined with reuse_message; the |
| 315 | * ssl_dont_hash_message would have to have been applied to the previous |
| 316 | * call. */ |
| 317 | assert(hash_message == ssl_hash_message); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 318 | ssl->s3->tmp.reuse_message = 0; |
| 319 | if (msg_type >= 0 && ssl->s3->tmp.message_type != msg_type) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 320 | al = SSL_AD_UNEXPECTED_MESSAGE; |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 321 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_MESSAGE); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 322 | goto f_err; |
| 323 | } |
| 324 | *ok = 1; |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 325 | ssl->state = body_state; |
| 326 | ssl->init_msg = (uint8_t *)ssl->init_buf->data + 4; |
| 327 | ssl->init_num = (int)ssl->s3->tmp.message_size; |
| 328 | return ssl->init_num; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 329 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 330 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 331 | p = (uint8_t *)ssl->init_buf->data; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 332 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 333 | if (ssl->state == header_state) { |
| 334 | assert(ssl->init_num < 4); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 335 | |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 336 | for (;;) { |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 337 | while (ssl->init_num < 4) { |
| 338 | int bytes_read = ssl3_read_bytes( |
| 339 | ssl, SSL3_RT_HANDSHAKE, &p[ssl->init_num], 4 - ssl->init_num, 0); |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 340 | if (bytes_read <= 0) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 341 | *ok = 0; |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 342 | return bytes_read; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 343 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 344 | ssl->init_num += bytes_read; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 345 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 346 | |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 347 | static const uint8_t kHelloRequest[4] = {SSL3_MT_HELLO_REQUEST, 0, 0, 0}; |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 348 | if (ssl->server || memcmp(p, kHelloRequest, sizeof(kHelloRequest)) != 0) { |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 349 | break; |
| 350 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 351 | |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 352 | /* The server may always send 'Hello Request' messages -- we are doing |
| 353 | * a handshake anyway now, so ignore them if their format is correct. |
| 354 | * Does not count for 'Finished' MAC. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 355 | ssl->init_num = 0; |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 356 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 357 | if (ssl->msg_callback) { |
| 358 | ssl->msg_callback(0, ssl->version, SSL3_RT_HANDSHAKE, p, 4, ssl, |
| 359 | ssl->msg_callback_arg); |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 360 | } |
| 361 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 362 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 363 | /* ssl->init_num == 4 */ |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 364 | |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 365 | if (msg_type >= 0 && *p != msg_type) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 366 | al = SSL_AD_UNEXPECTED_MESSAGE; |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 367 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_MESSAGE); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 368 | goto f_err; |
| 369 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 370 | ssl->s3->tmp.message_type = *(p++); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 371 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 372 | n2l3(p, l); |
| 373 | if (l > (unsigned long)max) { |
| 374 | al = SSL_AD_ILLEGAL_PARAMETER; |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 375 | OPENSSL_PUT_ERROR(SSL, SSL_R_EXCESSIVE_MESSAGE_SIZE); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 376 | goto f_err; |
| 377 | } |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 378 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 379 | if (l && !BUF_MEM_grow_clean(ssl->init_buf, l + 4)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 380 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 381 | goto err; |
| 382 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 383 | ssl->s3->tmp.message_size = l; |
| 384 | ssl->state = body_state; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 385 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 386 | ssl->init_msg = (uint8_t *)ssl->init_buf->data + 4; |
| 387 | ssl->init_num = 0; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 388 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 389 | |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 390 | /* next state (body_state) */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 391 | p = ssl->init_msg; |
| 392 | n = ssl->s3->tmp.message_size - ssl->init_num; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 393 | while (n > 0) { |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 394 | int bytes_read = |
| 395 | ssl3_read_bytes(ssl, SSL3_RT_HANDSHAKE, &p[ssl->init_num], n, 0); |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 396 | if (bytes_read <= 0) { |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 397 | ssl->rwstate = SSL_READING; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 398 | *ok = 0; |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 399 | return bytes_read; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 400 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 401 | ssl->init_num += bytes_read; |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 402 | n -= bytes_read; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | /* Feed this message into MAC computation. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 406 | if (hash_message == ssl_hash_message && !ssl3_hash_current_message(ssl)) { |
David Benjamin | fbdfefb | 2015-02-16 19:33:53 -0500 | [diff] [blame] | 407 | goto err; |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 408 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 409 | if (ssl->msg_callback) { |
| 410 | ssl->msg_callback(0, ssl->version, SSL3_RT_HANDSHAKE, ssl->init_buf->data, |
| 411 | (size_t)ssl->init_num + 4, ssl, ssl->msg_callback_arg); |
Adam Langley | 6e73d62 | 2014-12-15 18:46:16 -0800 | [diff] [blame] | 412 | } |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 413 | *ok = 1; |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 414 | return ssl->init_num; |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 415 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 416 | f_err: |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 417 | ssl3_send_alert(ssl, SSL3_AL_FATAL, al); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 418 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 419 | err: |
| 420 | *ok = 0; |
| 421 | return -1; |
| 422 | } |
| 423 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 424 | int ssl3_hash_current_message(SSL *ssl) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 425 | /* The handshake header (different size between DTLS and TLS) is included in |
| 426 | * the hash. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 427 | size_t header_len = ssl->init_msg - (uint8_t *)ssl->init_buf->data; |
| 428 | return ssl3_update_handshake_hash(ssl, (uint8_t *)ssl->init_buf->data, |
| 429 | ssl->init_num + header_len); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 430 | } |
David Benjamin | 590cbe9 | 2014-08-25 21:34:56 -0400 | [diff] [blame] | 431 | |
David Benjamin | 854dd65 | 2014-08-26 00:32:30 -0400 | [diff] [blame] | 432 | /* ssl3_cert_verify_hash is documented as needing EVP_MAX_MD_SIZE because that |
| 433 | * is sufficient pre-TLS1.2 as well. */ |
| 434 | OPENSSL_COMPILE_ASSERT(EVP_MAX_MD_SIZE > MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH, |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 435 | combined_tls_hash_fits_in_max); |
David Benjamin | 854dd65 | 2014-08-26 00:32:30 -0400 | [diff] [blame] | 436 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 437 | int ssl3_cert_verify_hash(SSL *ssl, uint8_t *out, size_t *out_len, |
David Benjamin | 396a441 | 2015-07-05 01:38:09 -0400 | [diff] [blame] | 438 | const EVP_MD **out_md, int pkey_type) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 439 | /* For TLS v1.2 send signature algorithm and signature using |
| 440 | * agreed digest and cached handshake records. Otherwise, use |
| 441 | * SHA1 or MD5 + SHA1 depending on key type. */ |
David Benjamin | a1e9cab | 2015-12-30 00:08:49 -0500 | [diff] [blame] | 442 | if (ssl3_protocol_version(ssl) >= TLS1_2_VERSION) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 443 | EVP_MD_CTX mctx; |
| 444 | unsigned len; |
David Benjamin | 854dd65 | 2014-08-26 00:32:30 -0400 | [diff] [blame] | 445 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 446 | EVP_MD_CTX_init(&mctx); |
| 447 | if (!EVP_DigestInit_ex(&mctx, *out_md, NULL) || |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 448 | !EVP_DigestUpdate(&mctx, ssl->s3->handshake_buffer->data, |
| 449 | ssl->s3->handshake_buffer->length) || |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 450 | !EVP_DigestFinal(&mctx, out, &len)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 451 | OPENSSL_PUT_ERROR(SSL, ERR_R_EVP_LIB); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 452 | EVP_MD_CTX_cleanup(&mctx); |
| 453 | return 0; |
| 454 | } |
| 455 | *out_len = len; |
David Benjamin | 396a441 | 2015-07-05 01:38:09 -0400 | [diff] [blame] | 456 | } else if (pkey_type == EVP_PKEY_RSA) { |
David Benjamin | b83003e | 2015-12-30 17:39:26 -0500 | [diff] [blame] | 457 | if (ssl->s3->enc_method->cert_verify_mac(ssl, NID_md5, out) == 0 || |
| 458 | ssl->s3->enc_method->cert_verify_mac(ssl, NID_sha1, |
| 459 | out + MD5_DIGEST_LENGTH) == 0) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 460 | return 0; |
| 461 | } |
| 462 | *out_len = MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH; |
| 463 | *out_md = EVP_md5_sha1(); |
David Benjamin | 396a441 | 2015-07-05 01:38:09 -0400 | [diff] [blame] | 464 | } else if (pkey_type == EVP_PKEY_EC) { |
David Benjamin | b83003e | 2015-12-30 17:39:26 -0500 | [diff] [blame] | 465 | if (ssl->s3->enc_method->cert_verify_mac(ssl, NID_sha1, out) == 0) { |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 466 | return 0; |
| 467 | } |
| 468 | *out_len = SHA_DIGEST_LENGTH; |
| 469 | *out_md = EVP_sha1(); |
| 470 | } else { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 471 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 472 | return 0; |
| 473 | } |
David Benjamin | 854dd65 | 2014-08-26 00:32:30 -0400 | [diff] [blame] | 474 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 475 | return 1; |
| 476 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 477 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 478 | int ssl_verify_alarm_type(long type) { |
| 479 | int al; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 480 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 481 | switch (type) { |
| 482 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: |
| 483 | case X509_V_ERR_UNABLE_TO_GET_CRL: |
| 484 | case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER: |
| 485 | al = SSL_AD_UNKNOWN_CA; |
| 486 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 487 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 488 | case X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE: |
| 489 | case X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE: |
| 490 | case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY: |
| 491 | case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD: |
| 492 | case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD: |
| 493 | case X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD: |
| 494 | case X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD: |
| 495 | case X509_V_ERR_CERT_NOT_YET_VALID: |
| 496 | case X509_V_ERR_CRL_NOT_YET_VALID: |
| 497 | case X509_V_ERR_CERT_UNTRUSTED: |
| 498 | case X509_V_ERR_CERT_REJECTED: |
| 499 | al = SSL_AD_BAD_CERTIFICATE; |
| 500 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 501 | |
Adam Langley | 2481975 | 2014-12-15 18:42:07 -0800 | [diff] [blame] | 502 | case X509_V_ERR_CERT_SIGNATURE_FAILURE: |
| 503 | case X509_V_ERR_CRL_SIGNATURE_FAILURE: |
| 504 | al = SSL_AD_DECRYPT_ERROR; |
| 505 | break; |
| 506 | |
| 507 | case X509_V_ERR_CERT_HAS_EXPIRED: |
| 508 | case X509_V_ERR_CRL_HAS_EXPIRED: |
| 509 | al = SSL_AD_CERTIFICATE_EXPIRED; |
| 510 | break; |
| 511 | |
| 512 | case X509_V_ERR_CERT_REVOKED: |
| 513 | al = SSL_AD_CERTIFICATE_REVOKED; |
| 514 | break; |
| 515 | |
| 516 | case X509_V_ERR_OUT_OF_MEM: |
| 517 | al = SSL_AD_INTERNAL_ERROR; |
| 518 | break; |
| 519 | |
| 520 | case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: |
| 521 | case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN: |
| 522 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY: |
| 523 | case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE: |
| 524 | case X509_V_ERR_CERT_CHAIN_TOO_LONG: |
| 525 | case X509_V_ERR_PATH_LENGTH_EXCEEDED: |
| 526 | case X509_V_ERR_INVALID_CA: |
| 527 | al = SSL_AD_UNKNOWN_CA; |
| 528 | break; |
| 529 | |
| 530 | case X509_V_ERR_APPLICATION_VERIFICATION: |
| 531 | al = SSL_AD_HANDSHAKE_FAILURE; |
| 532 | break; |
| 533 | |
| 534 | case X509_V_ERR_INVALID_PURPOSE: |
| 535 | al = SSL_AD_UNSUPPORTED_CERTIFICATE; |
| 536 | break; |
| 537 | |
| 538 | default: |
| 539 | al = SSL_AD_CERTIFICATE_UNKNOWN; |
| 540 | break; |
| 541 | } |
| 542 | |
| 543 | return al; |
| 544 | } |
| 545 | |
David Benjamin | 74d8bc2 | 2015-05-21 02:16:53 -0400 | [diff] [blame] | 546 | int ssl_fill_hello_random(uint8_t *out, size_t len, int is_server) { |
| 547 | if (is_server) { |
Adam Langley | 139ed19 | 2014-12-13 15:35:50 -0800 | [diff] [blame] | 548 | const uint32_t current_time = time(NULL); |
David Benjamin | 74d8bc2 | 2015-05-21 02:16:53 -0400 | [diff] [blame] | 549 | uint8_t *p = out; |
Adam Langley | 139ed19 | 2014-12-13 15:35:50 -0800 | [diff] [blame] | 550 | |
| 551 | if (len < 4) { |
| 552 | return 0; |
| 553 | } |
| 554 | p[0] = current_time >> 24; |
| 555 | p[1] = current_time >> 16; |
| 556 | p[2] = current_time >> 8; |
| 557 | p[3] = current_time; |
| 558 | return RAND_bytes(p + 4, len - 4); |
| 559 | } else { |
David Benjamin | 74d8bc2 | 2015-05-21 02:16:53 -0400 | [diff] [blame] | 560 | return RAND_bytes(out, len); |
Adam Langley | 139ed19 | 2014-12-13 15:35:50 -0800 | [diff] [blame] | 561 | } |
| 562 | } |