blob: 423f488918f14e2de9a71d8666b5297457dfb58b [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57/* ====================================================================
58 * Copyright (c) 1998-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
113#include <assert.h>
114#include <limits.h>
115#include <stdio.h>
116#include <string.h>
117
118#include <openssl/buf.h>
119#include <openssl/evp.h>
120#include <openssl/mem.h>
David Benjamin854dd652014-08-26 00:32:30 -0400121#include <openssl/md5.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700122#include <openssl/obj.h>
123#include <openssl/rand.h>
David Benjamin854dd652014-08-26 00:32:30 -0400124#include <openssl/sha.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700125#include <openssl/x509.h>
126
127#include "ssl_locl.h"
128
129/* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */
David Benjamine4824e82014-12-14 19:44:34 -0500130int ssl3_do_write(SSL *s, int type)
Adam Langley95c29f32014-06-20 12:00:00 -0700131 {
132 int ret;
133
134 ret=ssl3_write_bytes(s,type,&s->init_buf->data[s->init_off],
135 s->init_num);
136 if (ret < 0) return(-1);
Adam Langley95c29f32014-06-20 12:00:00 -0700137 if (ret == s->init_num)
138 {
139 if (s->msg_callback)
140 s->msg_callback(1, s->version, type, s->init_buf->data, (size_t)(s->init_off + s->init_num), s, s->msg_callback_arg);
141 return(1);
142 }
143 s->init_off+=ret;
144 s->init_num-=ret;
145 return(0);
146 }
147
148int ssl3_send_finished(SSL *s, int a, int b, const char *sender, int slen)
149 {
150 unsigned char *p;
151 int i;
152 unsigned long l;
153
154 if (s->state == a)
155 {
156 p = ssl_handshake_start(s);
157
David Benjamine99e9122014-12-11 01:46:01 -0500158 i=s->enc_method->final_finish_mac(s,
Adam Langley95c29f32014-06-20 12:00:00 -0700159 sender,slen,s->s3->tmp.finish_md);
160 if (i == 0)
161 return 0;
162 s->s3->tmp.finish_md_len = i;
163 memcpy(p, s->s3->tmp.finish_md, i);
164 l=i;
165
David Benjamin859ec3c2014-09-02 16:29:36 -0400166 /* Log the master secret, if logging is enabled. */
167 if (!ssl_ctx_log_master_secret(s->ctx,
168 s->s3->client_random, SSL3_RANDOM_SIZE,
169 s->session->master_key, s->session->master_key_length))
170 {
171 return 0;
172 }
173
David Benjamin63246e82014-11-23 16:23:35 -0500174 /* Copy the finished so we can use it for
175 * renegotiation checks */
176 if (s->server)
177 {
178 assert(i <= EVP_MAX_MD_SIZE);
179 memcpy(s->s3->previous_server_finished,
180 s->s3->tmp.finish_md, i);
181 s->s3->previous_server_finished_len = i;
182 }
183 else
184 {
185 assert(i <= EVP_MAX_MD_SIZE);
186 memcpy(s->s3->previous_client_finished,
187 s->s3->tmp.finish_md, i);
188 s->s3->previous_client_finished_len = i;
189 }
Adam Langley95c29f32014-06-20 12:00:00 -0700190
Adam Langley95c29f32014-06-20 12:00:00 -0700191 ssl_set_handshake_header(s, SSL3_MT_FINISHED, l);
192 s->state=b;
193 }
194
195 /* SSL3_ST_SEND_xxxxxx_HELLO_B */
196 return ssl_do_write(s);
197 }
198
Adam Langley95c29f32014-06-20 12:00:00 -0700199/* ssl3_take_mac calculates the Finished MAC for the handshakes messages seen to far. */
200static void ssl3_take_mac(SSL *s)
201 {
202 const char *sender;
203 int slen;
204 /* If no new cipher setup return immediately: other functions will
205 * set the appropriate error.
206 */
207 if (s->s3->tmp.new_cipher == NULL)
208 return;
209 if (s->state & SSL_ST_CONNECT)
210 {
David Benjamine99e9122014-12-11 01:46:01 -0500211 sender=s->enc_method->server_finished_label;
212 slen=s->enc_method->server_finished_label_len;
Adam Langley95c29f32014-06-20 12:00:00 -0700213 }
214 else
215 {
David Benjamine99e9122014-12-11 01:46:01 -0500216 sender=s->enc_method->client_finished_label;
217 slen=s->enc_method->client_finished_label_len;
Adam Langley95c29f32014-06-20 12:00:00 -0700218 }
219
David Benjamine99e9122014-12-11 01:46:01 -0500220 s->s3->tmp.peer_finish_md_len = s->enc_method->final_finish_mac(s,
Adam Langley95c29f32014-06-20 12:00:00 -0700221 sender,slen,s->s3->tmp.peer_finish_md);
222 }
Adam Langley95c29f32014-06-20 12:00:00 -0700223
224int ssl3_get_finished(SSL *s, int a, int b)
225 {
226 int al,i,ok;
227 long n;
228 unsigned char *p;
229
Adam Langley95c29f32014-06-20 12:00:00 -0700230 n=s->method->ssl_get_message(s,
231 a,
232 b,
233 SSL3_MT_FINISHED,
David Benjamin44f2d1a2014-12-14 19:28:30 -0500234 EVP_MAX_MD_SIZE,
David Benjamin5b8f1042014-08-25 23:28:44 -0400235 SSL_GET_MESSAGE_DONT_HASH_MESSAGE,
Adam Langley95c29f32014-06-20 12:00:00 -0700236 &ok);
237
238 if (!ok) return((int)n);
239
David Benjamin5b8f1042014-08-25 23:28:44 -0400240 /* Snapshot the finished hash before incorporating the new message. */
241 ssl3_take_mac(s);
242 ssl3_hash_current_message(s);
243
David Benjamin86271ee2014-07-21 16:14:03 -0400244 /* If this occurs, we have missed a message.
245 * TODO(davidben): Is this check now redundant with
246 * SSL3_FLAGS_EXPECT_CCS? */
Adam Langley95c29f32014-06-20 12:00:00 -0700247 if (!s->s3->change_cipher_spec)
248 {
249 al=SSL_AD_UNEXPECTED_MESSAGE;
250 OPENSSL_PUT_ERROR(SSL, ssl3_get_finished, SSL_R_GOT_A_FIN_BEFORE_A_CCS);
251 goto f_err;
252 }
253 s->s3->change_cipher_spec=0;
254
David Benjamin51b1f742014-07-12 16:31:12 -0400255 p = s->init_msg;
Adam Langley95c29f32014-06-20 12:00:00 -0700256 i = s->s3->tmp.peer_finish_md_len;
257
258 if (i != n)
259 {
260 al=SSL_AD_DECODE_ERROR;
261 OPENSSL_PUT_ERROR(SSL, ssl3_get_finished, SSL_R_BAD_DIGEST_LENGTH);
262 goto f_err;
263 }
264
265 if (CRYPTO_memcmp(p, s->s3->tmp.peer_finish_md, i) != 0)
266 {
267 al=SSL_AD_DECRYPT_ERROR;
268 OPENSSL_PUT_ERROR(SSL, ssl3_get_finished, SSL_R_DIGEST_CHECK_FAILED);
269 goto f_err;
270 }
271
David Benjamin63246e82014-11-23 16:23:35 -0500272 /* Copy the finished so we can use it for renegotiation
273 * checks */
274 if (s->server)
275 {
276 assert(i <= EVP_MAX_MD_SIZE);
277 memcpy(s->s3->previous_client_finished,
278 s->s3->tmp.peer_finish_md, i);
279 s->s3->previous_client_finished_len = i;
280 }
281 else
282 {
283 assert(i <= EVP_MAX_MD_SIZE);
284 memcpy(s->s3->previous_server_finished,
285 s->s3->tmp.peer_finish_md, i);
286 s->s3->previous_server_finished_len = i;
287 }
Adam Langley95c29f32014-06-20 12:00:00 -0700288
289 return(1);
290f_err:
291 ssl3_send_alert(s,SSL3_AL_FATAL,al);
292 return(0);
293 }
294
295/* for these 2 messages, we need to
296 * ssl->enc_read_ctx re-init
297 * ssl->s3->read_sequence zero
298 * ssl->s3->read_mac_secret re-init
299 * ssl->session->read_sym_enc assign
300 * ssl->session->read_compression assign
301 * ssl->session->read_hash assign
302 */
303int ssl3_send_change_cipher_spec(SSL *s, int a, int b)
304 {
305 unsigned char *p;
306
307 if (s->state == a)
308 {
309 p=(unsigned char *)s->init_buf->data;
310 *p=SSL3_MT_CCS;
311 s->init_num=1;
312 s->init_off=0;
313
314 s->state=b;
315 }
316
317 /* SSL3_ST_CW_CHANGE_B */
David Benjamine4824e82014-12-14 19:44:34 -0500318 return ssl3_do_write(s, SSL3_RT_CHANGE_CIPHER_SPEC);
Adam Langley95c29f32014-06-20 12:00:00 -0700319 }
320
321unsigned long ssl3_output_cert_chain(SSL *s, CERT_PKEY *cpk)
322 {
323 unsigned char *p;
324 unsigned long l = 3 + SSL_HM_HEADER_LENGTH(s);
325
326 if (!ssl_add_cert_chain(s, cpk, &l))
327 return 0;
328
329 l -= 3 + SSL_HM_HEADER_LENGTH(s);
330 p = ssl_handshake_start(s);
331 l2n3(l,p);
332 l += 3;
333 ssl_set_handshake_header(s, SSL3_MT_CERTIFICATE, l);
334 return l + SSL_HM_HEADER_LENGTH(s);
335 }
336
337/* Obtain handshake message of message type 'mt' (any if mt == -1),
338 * maximum acceptable body length 'max'.
339 * The first four bytes (msg_type and length) are read in state 'st1',
340 * the body is read in state 'stn'.
341 */
David Benjamin590cbe92014-08-25 21:34:56 -0400342long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int hash_message, int *ok)
Adam Langley95c29f32014-06-20 12:00:00 -0700343 {
344 unsigned char *p;
345 unsigned long l;
346 long n;
347 int i,al;
348
349 if (s->s3->tmp.reuse_message)
350 {
David Benjamin590cbe92014-08-25 21:34:56 -0400351 /* A SSL_GET_MESSAGE_DONT_HASH_MESSAGE call cannot be combined
352 * with reuse_message; the SSL_GET_MESSAGE_DONT_HASH_MESSAGE
353 * would have to have been applied to the previous call. */
354 assert(hash_message != SSL_GET_MESSAGE_DONT_HASH_MESSAGE);
Adam Langley95c29f32014-06-20 12:00:00 -0700355 s->s3->tmp.reuse_message=0;
356 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
357 {
358 al=SSL_AD_UNEXPECTED_MESSAGE;
359 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_UNEXPECTED_MESSAGE);
360 goto f_err;
361 }
362 *ok=1;
David Benjamin8c37cb62014-12-04 16:38:48 -0500363 s->state = stn;
David Benjamin51b1f742014-07-12 16:31:12 -0400364 s->init_msg = (uint8_t*)s->init_buf->data + 4;
Adam Langley95c29f32014-06-20 12:00:00 -0700365 s->init_num = (int)s->s3->tmp.message_size;
366 return s->init_num;
367 }
368
369 p=(unsigned char *)s->init_buf->data;
370
371 if (s->state == st1) /* s->init_num < 4 */
372 {
373 int skip_message;
374
375 do
376 {
377 while (s->init_num < 4)
378 {
379 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
380 &p[s->init_num],4 - s->init_num, 0);
381 if (i <= 0)
382 {
383 s->rwstate=SSL_READING;
384 *ok = 0;
385 return i;
386 }
387 s->init_num+=i;
388 }
389
390 skip_message = 0;
391 if (!s->server)
392 if (p[0] == SSL3_MT_HELLO_REQUEST)
393 /* The server may always send 'Hello Request' messages --
394 * we are doing a handshake anyway now, so ignore them
395 * if their format is correct. Does not count for
396 * 'Finished' MAC. */
397 if (p[1] == 0 && p[2] == 0 &&p[3] == 0)
398 {
399 s->init_num = 0;
400 skip_message = 1;
401
402 if (s->msg_callback)
403 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, p, 4, s, s->msg_callback_arg);
404 }
405 }
406 while (skip_message);
407
408 /* s->init_num == 4 */
409
410 if ((mt >= 0) && (*p != mt))
411 {
412 al=SSL_AD_UNEXPECTED_MESSAGE;
413 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_UNEXPECTED_MESSAGE);
414 goto f_err;
415 }
Adam Langley95c29f32014-06-20 12:00:00 -0700416 s->s3->tmp.message_type= *(p++);
417
418 n2l3(p,l);
419 if (l > (unsigned long)max)
420 {
421 al=SSL_AD_ILLEGAL_PARAMETER;
422 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_EXCESSIVE_MESSAGE_SIZE);
423 goto f_err;
424 }
425 if (l > (INT_MAX-4)) /* BUF_MEM_grow takes an 'int' parameter */
426 {
427 al=SSL_AD_ILLEGAL_PARAMETER;
428 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_EXCESSIVE_MESSAGE_SIZE);
429 goto f_err;
430 }
431 if (l && !BUF_MEM_grow_clean(s->init_buf,(int)l+4))
432 {
433 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, ERR_R_BUF_LIB);
434 goto err;
435 }
436 s->s3->tmp.message_size=l;
437 s->state=stn;
438
David Benjamin51b1f742014-07-12 16:31:12 -0400439 s->init_msg = (uint8_t*)s->init_buf->data + 4;
Adam Langley95c29f32014-06-20 12:00:00 -0700440 s->init_num = 0;
441 }
442
443 /* next state (stn) */
444 p = s->init_msg;
445 n = s->s3->tmp.message_size - s->init_num;
446 while (n > 0)
447 {
448 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,&p[s->init_num],n,0);
449 if (i <= 0)
450 {
451 s->rwstate=SSL_READING;
452 *ok = 0;
453 return i;
454 }
455 s->init_num += i;
456 n -= i;
457 }
458
Adam Langley95c29f32014-06-20 12:00:00 -0700459 /* Feed this message into MAC computation. */
David Benjamin590cbe92014-08-25 21:34:56 -0400460 if (hash_message != SSL_GET_MESSAGE_DONT_HASH_MESSAGE)
461 ssl3_hash_current_message(s);
Adam Langley95c29f32014-06-20 12:00:00 -0700462 if (s->msg_callback)
463 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, s->init_buf->data, (size_t)s->init_num + 4, s, s->msg_callback_arg);
464 *ok=1;
465 return s->init_num;
466f_err:
467 ssl3_send_alert(s,SSL3_AL_FATAL,al);
468err:
469 *ok=0;
470 return(-1);
471 }
472
David Benjamin590cbe92014-08-25 21:34:56 -0400473void ssl3_hash_current_message(SSL *s)
474 {
475 /* The handshake header (different size between DTLS and TLS) is included in the hash. */
476 size_t header_len = s->init_msg - (uint8_t *)s->init_buf->data;
477 ssl3_finish_mac(s, (uint8_t *)s->init_buf->data, s->init_num + header_len);
478 }
479
David Benjamin854dd652014-08-26 00:32:30 -0400480/* ssl3_cert_verify_hash is documented as needing EVP_MAX_MD_SIZE because that
481 * is sufficient pre-TLS1.2 as well. */
482OPENSSL_COMPILE_ASSERT(EVP_MAX_MD_SIZE > MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH,
483 combined_tls_hash_fits_in_max);
484
485int ssl3_cert_verify_hash(SSL *s, uint8_t *out, size_t *out_len, const EVP_MD **out_md, EVP_PKEY *pkey)
486 {
487 /* For TLS v1.2 send signature algorithm and signature using
488 * agreed digest and cached handshake records. Otherwise, use
489 * SHA1 or MD5 + SHA1 depending on key type. */
490 if (SSL_USE_SIGALGS(s))
491 {
492 const uint8_t *hdata;
493 size_t hdatalen;
494 EVP_MD_CTX mctx;
495 unsigned len;
496
497 if (!BIO_mem_contents(s->s3->handshake_buffer, &hdata, &hdatalen))
498 {
499 OPENSSL_PUT_ERROR(SSL, ssl3_cert_verify_hash, ERR_R_INTERNAL_ERROR);
500 return 0;
501 }
502 EVP_MD_CTX_init(&mctx);
503 if (!EVP_DigestInit_ex(&mctx, *out_md, NULL)
504 || !EVP_DigestUpdate(&mctx, hdata, hdatalen)
505 || !EVP_DigestFinal(&mctx, out, &len))
506 {
507 OPENSSL_PUT_ERROR(SSL, ssl3_cert_verify_hash, ERR_R_EVP_LIB);
508 EVP_MD_CTX_cleanup(&mctx);
509 return 0;
510 }
511 *out_len = len;
512 }
513 else if (pkey->type == EVP_PKEY_RSA)
514 {
David Benjamine99e9122014-12-11 01:46:01 -0500515 if (s->enc_method->cert_verify_mac(s, NID_md5, out) == 0 ||
516 s->enc_method->cert_verify_mac(s,
David Benjamin854dd652014-08-26 00:32:30 -0400517 NID_sha1, out + MD5_DIGEST_LENGTH) == 0)
518 return 0;
519 *out_len = MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH;
David Benjamin00505ec2014-11-26 16:38:00 -0500520 *out_md = EVP_md5_sha1();
David Benjamin854dd652014-08-26 00:32:30 -0400521 }
522 else if (pkey->type == EVP_PKEY_EC)
523 {
David Benjamine99e9122014-12-11 01:46:01 -0500524 if (s->enc_method->cert_verify_mac(s, NID_sha1, out) == 0)
David Benjamin854dd652014-08-26 00:32:30 -0400525 return 0;
526 *out_len = SHA_DIGEST_LENGTH;
527 *out_md = EVP_sha1();
528 }
529 else
530 {
531 OPENSSL_PUT_ERROR(SSL, ssl3_cert_verify_hash, ERR_R_INTERNAL_ERROR);
532 return 0;
533 }
534 return 1;
535 }
536
Adam Langley95c29f32014-06-20 12:00:00 -0700537int ssl_cert_type(X509 *x, EVP_PKEY *pkey)
538 {
539 EVP_PKEY *pk;
540 int ret= -1,i;
541
542 if (pkey == NULL)
543 pk=X509_get_pubkey(x);
544 else
545 pk=pkey;
546 if (pk == NULL) goto err;
547
548 i=pk->type;
549 if (i == EVP_PKEY_RSA)
550 {
551 ret=SSL_PKEY_RSA_ENC;
552 }
Adam Langley95c29f32014-06-20 12:00:00 -0700553 else if (i == EVP_PKEY_EC)
554 {
555 ret = SSL_PKEY_ECC;
556 }
Adam Langley95c29f32014-06-20 12:00:00 -0700557
558err:
559 if(!pkey) EVP_PKEY_free(pk);
560 return(ret);
561 }
562
563int ssl_verify_alarm_type(long type)
564 {
565 int al;
566
567 switch(type)
568 {
569 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
570 case X509_V_ERR_UNABLE_TO_GET_CRL:
571 case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER:
572 al=SSL_AD_UNKNOWN_CA;
573 break;
574 case X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE:
575 case X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE:
576 case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY:
577 case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
578 case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
579 case X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD:
580 case X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD:
581 case X509_V_ERR_CERT_NOT_YET_VALID:
582 case X509_V_ERR_CRL_NOT_YET_VALID:
583 case X509_V_ERR_CERT_UNTRUSTED:
584 case X509_V_ERR_CERT_REJECTED:
585 al=SSL_AD_BAD_CERTIFICATE;
586 break;
587 case X509_V_ERR_CERT_SIGNATURE_FAILURE:
588 case X509_V_ERR_CRL_SIGNATURE_FAILURE:
589 al=SSL_AD_DECRYPT_ERROR;
590 break;
591 case X509_V_ERR_CERT_HAS_EXPIRED:
592 case X509_V_ERR_CRL_HAS_EXPIRED:
593 al=SSL_AD_CERTIFICATE_EXPIRED;
594 break;
595 case X509_V_ERR_CERT_REVOKED:
596 al=SSL_AD_CERTIFICATE_REVOKED;
597 break;
598 case X509_V_ERR_OUT_OF_MEM:
599 al=SSL_AD_INTERNAL_ERROR;
600 break;
601 case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
602 case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
603 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
604 case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE:
605 case X509_V_ERR_CERT_CHAIN_TOO_LONG:
606 case X509_V_ERR_PATH_LENGTH_EXCEEDED:
607 case X509_V_ERR_INVALID_CA:
608 al=SSL_AD_UNKNOWN_CA;
609 break;
610 case X509_V_ERR_APPLICATION_VERIFICATION:
611 al=SSL_AD_HANDSHAKE_FAILURE;
612 break;
613 case X509_V_ERR_INVALID_PURPOSE:
614 al=SSL_AD_UNSUPPORTED_CERTIFICATE;
615 break;
616 default:
617 al=SSL_AD_CERTIFICATE_UNKNOWN;
618 break;
619 }
620 return(al);
621 }
622
Adam Langley95c29f32014-06-20 12:00:00 -0700623int ssl3_setup_read_buffer(SSL *s)
624 {
625 unsigned char *p;
626 size_t len,align=0,headerlen;
627
David Benjamin09bd58d2014-08-12 21:22:28 -0400628 if (SSL_IS_DTLS(s))
Adam Langley95c29f32014-06-20 12:00:00 -0700629 headerlen = DTLS1_RT_HEADER_LENGTH;
630 else
631 headerlen = SSL3_RT_HEADER_LENGTH;
632
633#if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
634 align = (-SSL3_RT_HEADER_LENGTH)&(SSL3_ALIGN_PAYLOAD-1);
635#endif
636
637 if (s->s3->rbuf.buf == NULL)
638 {
639 len = SSL3_RT_MAX_PLAIN_LENGTH
640 + SSL3_RT_MAX_ENCRYPTED_OVERHEAD
641 + headerlen + align;
642 if (s->options & SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER)
643 {
644 s->s3->init_extra = 1;
645 len += SSL3_RT_MAX_EXTRA;
646 }
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400647 if ((p=OPENSSL_malloc(len)) == NULL)
Adam Langley95c29f32014-06-20 12:00:00 -0700648 goto err;
649 s->s3->rbuf.buf = p;
650 s->s3->rbuf.len = len;
651 }
652
653 s->packet= &(s->s3->rbuf.buf[0]);
654 return 1;
655
656err:
657 OPENSSL_PUT_ERROR(SSL, ssl3_setup_read_buffer, ERR_R_MALLOC_FAILURE);
658 return 0;
659 }
660
661int ssl3_setup_write_buffer(SSL *s)
662 {
663 unsigned char *p;
664 size_t len,align=0,headerlen;
665
David Benjamincc23df52014-08-03 13:37:47 -0400666 if (SSL_IS_DTLS(s))
Adam Langley95c29f32014-06-20 12:00:00 -0700667 headerlen = DTLS1_RT_HEADER_LENGTH + 1;
668 else
669 headerlen = SSL3_RT_HEADER_LENGTH;
670
671#if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
672 align = (-SSL3_RT_HEADER_LENGTH)&(SSL3_ALIGN_PAYLOAD-1);
673#endif
674
675 if (s->s3->wbuf.buf == NULL)
676 {
677 len = s->max_send_fragment
678 + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD
679 + headerlen + align;
David Benjaminc92c2d72014-08-30 22:14:20 -0400680 /* Account for 1/n-1 record splitting. */
681 if (s->mode & SSL_MODE_CBC_RECORD_SPLITTING)
682 len += headerlen + align + 1
Adam Langley95c29f32014-06-20 12:00:00 -0700683 + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD;
684
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400685 if ((p=OPENSSL_malloc(len)) == NULL)
Adam Langley95c29f32014-06-20 12:00:00 -0700686 goto err;
687 s->s3->wbuf.buf = p;
688 s->s3->wbuf.len = len;
689 }
690
691 return 1;
692
693err:
694 OPENSSL_PUT_ERROR(SSL, ssl3_setup_write_buffer, ERR_R_MALLOC_FAILURE);
695 return 0;
696 }
697
698
699int ssl3_setup_buffers(SSL *s)
700 {
701 if (!ssl3_setup_read_buffer(s))
702 return 0;
703 if (!ssl3_setup_write_buffer(s))
704 return 0;
705 return 1;
706 }
707
708int ssl3_release_write_buffer(SSL *s)
709 {
710 if (s->s3->wbuf.buf != NULL)
711 {
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400712 OPENSSL_free(s->s3->wbuf.buf);
Adam Langley95c29f32014-06-20 12:00:00 -0700713 s->s3->wbuf.buf = NULL;
714 }
715 return 1;
716 }
717
718int ssl3_release_read_buffer(SSL *s)
719 {
720 if (s->s3->rbuf.buf != NULL)
721 {
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400722 OPENSSL_free(s->s3->rbuf.buf);
Adam Langley95c29f32014-06-20 12:00:00 -0700723 s->s3->rbuf.buf = NULL;
724 }
725 return 1;
726 }
727
Adam Langley139ed192014-12-13 15:35:50 -0800728/* ssl_fill_hello_random fills a client_random or server_random field of length
729 * |len|. Returns 0 on failure or 1 on success. */
730int ssl_fill_hello_random(SSL *s, int server, uint8_t *result, size_t len) {
731 int send_time = 0;
732
733 if (server) {
734 send_time = (s->mode & SSL_MODE_SEND_SERVERHELLO_TIME) != 0;
735 } else {
736 send_time = (s->mode & SSL_MODE_SEND_CLIENTHELLO_TIME) != 0;
737 }
738
739 if (send_time) {
740 const uint32_t current_time = time(NULL);
741 uint8_t *p = result;
742
743 if (len < 4) {
744 return 0;
745 }
746 p[0] = current_time >> 24;
747 p[1] = current_time >> 16;
748 p[2] = current_time >> 8;
749 p[3] = current_time;
750 return RAND_bytes(p + 4, len - 4);
751 } else {
752 return RAND_bytes(result, len);
753 }
754}