blob: 7944891fbca793e08a1f95d0f465e0bd6caedcf5 [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) */
130int ssl3_do_write(SSL *s, int type)
131 {
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);
137 if (type == SSL3_RT_HANDSHAKE)
138 /* should not be done for 'Hello Request's, but in that case
139 * we'll ignore the result anyway */
140 ssl3_finish_mac(s,(unsigned char *)&s->init_buf->data[s->init_off],ret);
141
142 if (ret == s->init_num)
143 {
144 if (s->msg_callback)
145 s->msg_callback(1, s->version, type, s->init_buf->data, (size_t)(s->init_off + s->init_num), s, s->msg_callback_arg);
146 return(1);
147 }
148 s->init_off+=ret;
149 s->init_num-=ret;
150 return(0);
151 }
152
153int ssl3_send_finished(SSL *s, int a, int b, const char *sender, int slen)
154 {
155 unsigned char *p;
156 int i;
157 unsigned long l;
158
159 if (s->state == a)
160 {
161 p = ssl_handshake_start(s);
162
163 i=s->method->ssl3_enc->final_finish_mac(s,
164 sender,slen,s->s3->tmp.finish_md);
165 if (i == 0)
166 return 0;
167 s->s3->tmp.finish_md_len = i;
168 memcpy(p, s->s3->tmp.finish_md, i);
169 l=i;
170
171 /* Copy the finished so we can use it for
172 renegotiation checks */
173 if(s->type == SSL_ST_CONNECT)
174 {
175 assert(i <= EVP_MAX_MD_SIZE);
176 memcpy(s->s3->previous_client_finished,
177 s->s3->tmp.finish_md, i);
178 s->s3->previous_client_finished_len=i;
179 }
180 else
181 {
182 assert(i <= EVP_MAX_MD_SIZE);
183 memcpy(s->s3->previous_server_finished,
184 s->s3->tmp.finish_md, i);
185 s->s3->previous_server_finished_len=i;
186 }
187
Adam Langley95c29f32014-06-20 12:00:00 -0700188 ssl_set_handshake_header(s, SSL3_MT_FINISHED, l);
189 s->state=b;
190 }
191
192 /* SSL3_ST_SEND_xxxxxx_HELLO_B */
193 return ssl_do_write(s);
194 }
195
Adam Langley95c29f32014-06-20 12:00:00 -0700196/* ssl3_take_mac calculates the Finished MAC for the handshakes messages seen to far. */
197static void ssl3_take_mac(SSL *s)
198 {
199 const char *sender;
200 int slen;
201 /* If no new cipher setup return immediately: other functions will
202 * set the appropriate error.
203 */
204 if (s->s3->tmp.new_cipher == NULL)
205 return;
206 if (s->state & SSL_ST_CONNECT)
207 {
208 sender=s->method->ssl3_enc->server_finished_label;
209 slen=s->method->ssl3_enc->server_finished_label_len;
210 }
211 else
212 {
213 sender=s->method->ssl3_enc->client_finished_label;
214 slen=s->method->ssl3_enc->client_finished_label_len;
215 }
216
217 s->s3->tmp.peer_finish_md_len = s->method->ssl3_enc->final_finish_mac(s,
218 sender,slen,s->s3->tmp.peer_finish_md);
219 }
Adam Langley95c29f32014-06-20 12:00:00 -0700220
221int ssl3_get_finished(SSL *s, int a, int b)
222 {
223 int al,i,ok;
224 long n;
225 unsigned char *p;
226
Adam Langley95c29f32014-06-20 12:00:00 -0700227 n=s->method->ssl_get_message(s,
228 a,
229 b,
230 SSL3_MT_FINISHED,
231 64, /* should actually be 36+4 :-) */
David Benjamin5b8f1042014-08-25 23:28:44 -0400232 SSL_GET_MESSAGE_DONT_HASH_MESSAGE,
Adam Langley95c29f32014-06-20 12:00:00 -0700233 &ok);
234
235 if (!ok) return((int)n);
236
David Benjamin5b8f1042014-08-25 23:28:44 -0400237 /* Snapshot the finished hash before incorporating the new message. */
238 ssl3_take_mac(s);
239 ssl3_hash_current_message(s);
240
David Benjamin86271ee2014-07-21 16:14:03 -0400241 /* If this occurs, we have missed a message.
242 * TODO(davidben): Is this check now redundant with
243 * SSL3_FLAGS_EXPECT_CCS? */
Adam Langley95c29f32014-06-20 12:00:00 -0700244 if (!s->s3->change_cipher_spec)
245 {
246 al=SSL_AD_UNEXPECTED_MESSAGE;
247 OPENSSL_PUT_ERROR(SSL, ssl3_get_finished, SSL_R_GOT_A_FIN_BEFORE_A_CCS);
248 goto f_err;
249 }
250 s->s3->change_cipher_spec=0;
251
David Benjamin51b1f742014-07-12 16:31:12 -0400252 p = s->init_msg;
Adam Langley95c29f32014-06-20 12:00:00 -0700253 i = s->s3->tmp.peer_finish_md_len;
254
255 if (i != n)
256 {
257 al=SSL_AD_DECODE_ERROR;
258 OPENSSL_PUT_ERROR(SSL, ssl3_get_finished, SSL_R_BAD_DIGEST_LENGTH);
259 goto f_err;
260 }
261
262 if (CRYPTO_memcmp(p, s->s3->tmp.peer_finish_md, i) != 0)
263 {
264 al=SSL_AD_DECRYPT_ERROR;
265 OPENSSL_PUT_ERROR(SSL, ssl3_get_finished, SSL_R_DIGEST_CHECK_FAILED);
266 goto f_err;
267 }
268
269 /* Copy the finished so we can use it for
270 renegotiation checks */
271 if(s->type == SSL_ST_ACCEPT)
272 {
273 assert(i <= EVP_MAX_MD_SIZE);
274 memcpy(s->s3->previous_client_finished,
275 s->s3->tmp.peer_finish_md, i);
276 s->s3->previous_client_finished_len=i;
277 }
278 else
279 {
280 assert(i <= EVP_MAX_MD_SIZE);
281 memcpy(s->s3->previous_server_finished,
282 s->s3->tmp.peer_finish_md, i);
283 s->s3->previous_server_finished_len=i;
284 }
285
286 return(1);
287f_err:
288 ssl3_send_alert(s,SSL3_AL_FATAL,al);
289 return(0);
290 }
291
292/* for these 2 messages, we need to
293 * ssl->enc_read_ctx re-init
294 * ssl->s3->read_sequence zero
295 * ssl->s3->read_mac_secret re-init
296 * ssl->session->read_sym_enc assign
297 * ssl->session->read_compression assign
298 * ssl->session->read_hash assign
299 */
300int ssl3_send_change_cipher_spec(SSL *s, int a, int b)
301 {
302 unsigned char *p;
303
304 if (s->state == a)
305 {
306 p=(unsigned char *)s->init_buf->data;
307 *p=SSL3_MT_CCS;
308 s->init_num=1;
309 s->init_off=0;
310
311 s->state=b;
312 }
313
314 /* SSL3_ST_CW_CHANGE_B */
315 return(ssl3_do_write(s,SSL3_RT_CHANGE_CIPHER_SPEC));
316 }
317
318unsigned long ssl3_output_cert_chain(SSL *s, CERT_PKEY *cpk)
319 {
320 unsigned char *p;
321 unsigned long l = 3 + SSL_HM_HEADER_LENGTH(s);
322
323 if (!ssl_add_cert_chain(s, cpk, &l))
324 return 0;
325
326 l -= 3 + SSL_HM_HEADER_LENGTH(s);
327 p = ssl_handshake_start(s);
328 l2n3(l,p);
329 l += 3;
330 ssl_set_handshake_header(s, SSL3_MT_CERTIFICATE, l);
331 return l + SSL_HM_HEADER_LENGTH(s);
332 }
333
334/* Obtain handshake message of message type 'mt' (any if mt == -1),
335 * maximum acceptable body length 'max'.
336 * The first four bytes (msg_type and length) are read in state 'st1',
337 * the body is read in state 'stn'.
338 */
David Benjamin590cbe92014-08-25 21:34:56 -0400339long 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 -0700340 {
341 unsigned char *p;
342 unsigned long l;
343 long n;
344 int i,al;
345
346 if (s->s3->tmp.reuse_message)
347 {
David Benjamin590cbe92014-08-25 21:34:56 -0400348 /* A SSL_GET_MESSAGE_DONT_HASH_MESSAGE call cannot be combined
349 * with reuse_message; the SSL_GET_MESSAGE_DONT_HASH_MESSAGE
350 * would have to have been applied to the previous call. */
351 assert(hash_message != SSL_GET_MESSAGE_DONT_HASH_MESSAGE);
Adam Langley95c29f32014-06-20 12:00:00 -0700352 s->s3->tmp.reuse_message=0;
353 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
354 {
355 al=SSL_AD_UNEXPECTED_MESSAGE;
356 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_UNEXPECTED_MESSAGE);
357 goto f_err;
358 }
359 *ok=1;
David Benjamin51b1f742014-07-12 16:31:12 -0400360 s->init_msg = (uint8_t*)s->init_buf->data + 4;
Adam Langley95c29f32014-06-20 12:00:00 -0700361 s->init_num = (int)s->s3->tmp.message_size;
362 return s->init_num;
363 }
364
365 p=(unsigned char *)s->init_buf->data;
366
367 if (s->state == st1) /* s->init_num < 4 */
368 {
369 int skip_message;
370
371 do
372 {
373 while (s->init_num < 4)
374 {
375 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
376 &p[s->init_num],4 - s->init_num, 0);
377 if (i <= 0)
378 {
379 s->rwstate=SSL_READING;
380 *ok = 0;
381 return i;
382 }
383 s->init_num+=i;
384 }
385
386 skip_message = 0;
387 if (!s->server)
388 if (p[0] == SSL3_MT_HELLO_REQUEST)
389 /* The server may always send 'Hello Request' messages --
390 * we are doing a handshake anyway now, so ignore them
391 * if their format is correct. Does not count for
392 * 'Finished' MAC. */
393 if (p[1] == 0 && p[2] == 0 &&p[3] == 0)
394 {
395 s->init_num = 0;
396 skip_message = 1;
397
398 if (s->msg_callback)
399 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, p, 4, s, s->msg_callback_arg);
400 }
401 }
402 while (skip_message);
403
404 /* s->init_num == 4 */
405
406 if ((mt >= 0) && (*p != mt))
407 {
408 al=SSL_AD_UNEXPECTED_MESSAGE;
409 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_UNEXPECTED_MESSAGE);
410 goto f_err;
411 }
412 if ((mt < 0) && (*p == SSL3_MT_CLIENT_HELLO) &&
413 (st1 == SSL3_ST_SR_CERT_A) &&
414 (stn == SSL3_ST_SR_CERT_B))
415 {
416 /* At this point we have got an MS SGC second client
417 * hello (maybe we should always allow the client to
418 * start a new handshake?). We need to restart the mac.
419 * Don't increment {num,total}_renegotiations because
420 * we have not completed the handshake. */
421 ssl3_init_finished_mac(s);
422 }
423
424 s->s3->tmp.message_type= *(p++);
425
426 n2l3(p,l);
427 if (l > (unsigned long)max)
428 {
429 al=SSL_AD_ILLEGAL_PARAMETER;
430 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_EXCESSIVE_MESSAGE_SIZE);
431 goto f_err;
432 }
433 if (l > (INT_MAX-4)) /* BUF_MEM_grow takes an 'int' parameter */
434 {
435 al=SSL_AD_ILLEGAL_PARAMETER;
436 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, SSL_R_EXCESSIVE_MESSAGE_SIZE);
437 goto f_err;
438 }
439 if (l && !BUF_MEM_grow_clean(s->init_buf,(int)l+4))
440 {
441 OPENSSL_PUT_ERROR(SSL, ssl3_get_message, ERR_R_BUF_LIB);
442 goto err;
443 }
444 s->s3->tmp.message_size=l;
445 s->state=stn;
446
David Benjamin51b1f742014-07-12 16:31:12 -0400447 s->init_msg = (uint8_t*)s->init_buf->data + 4;
Adam Langley95c29f32014-06-20 12:00:00 -0700448 s->init_num = 0;
449 }
450
451 /* next state (stn) */
452 p = s->init_msg;
453 n = s->s3->tmp.message_size - s->init_num;
454 while (n > 0)
455 {
456 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,&p[s->init_num],n,0);
457 if (i <= 0)
458 {
459 s->rwstate=SSL_READING;
460 *ok = 0;
461 return i;
462 }
463 s->init_num += i;
464 n -= i;
465 }
466
Adam Langley95c29f32014-06-20 12:00:00 -0700467 /* Feed this message into MAC computation. */
David Benjamin590cbe92014-08-25 21:34:56 -0400468 if (hash_message != SSL_GET_MESSAGE_DONT_HASH_MESSAGE)
469 ssl3_hash_current_message(s);
Adam Langley95c29f32014-06-20 12:00:00 -0700470 if (s->msg_callback)
471 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, s->init_buf->data, (size_t)s->init_num + 4, s, s->msg_callback_arg);
472 *ok=1;
473 return s->init_num;
474f_err:
475 ssl3_send_alert(s,SSL3_AL_FATAL,al);
476err:
477 *ok=0;
478 return(-1);
479 }
480
David Benjamin590cbe92014-08-25 21:34:56 -0400481void ssl3_hash_current_message(SSL *s)
482 {
483 /* The handshake header (different size between DTLS and TLS) is included in the hash. */
484 size_t header_len = s->init_msg - (uint8_t *)s->init_buf->data;
485 ssl3_finish_mac(s, (uint8_t *)s->init_buf->data, s->init_num + header_len);
486 }
487
David Benjamin854dd652014-08-26 00:32:30 -0400488/* ssl3_cert_verify_hash is documented as needing EVP_MAX_MD_SIZE because that
489 * is sufficient pre-TLS1.2 as well. */
490OPENSSL_COMPILE_ASSERT(EVP_MAX_MD_SIZE > MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH,
491 combined_tls_hash_fits_in_max);
492
493int ssl3_cert_verify_hash(SSL *s, uint8_t *out, size_t *out_len, const EVP_MD **out_md, EVP_PKEY *pkey)
494 {
495 /* For TLS v1.2 send signature algorithm and signature using
496 * agreed digest and cached handshake records. Otherwise, use
497 * SHA1 or MD5 + SHA1 depending on key type. */
498 if (SSL_USE_SIGALGS(s))
499 {
500 const uint8_t *hdata;
501 size_t hdatalen;
502 EVP_MD_CTX mctx;
503 unsigned len;
504
505 if (!BIO_mem_contents(s->s3->handshake_buffer, &hdata, &hdatalen))
506 {
507 OPENSSL_PUT_ERROR(SSL, ssl3_cert_verify_hash, ERR_R_INTERNAL_ERROR);
508 return 0;
509 }
510 EVP_MD_CTX_init(&mctx);
511 if (!EVP_DigestInit_ex(&mctx, *out_md, NULL)
512 || !EVP_DigestUpdate(&mctx, hdata, hdatalen)
513 || !EVP_DigestFinal(&mctx, out, &len))
514 {
515 OPENSSL_PUT_ERROR(SSL, ssl3_cert_verify_hash, ERR_R_EVP_LIB);
516 EVP_MD_CTX_cleanup(&mctx);
517 return 0;
518 }
519 *out_len = len;
520 }
521 else if (pkey->type == EVP_PKEY_RSA)
522 {
523 if (s->method->ssl3_enc->cert_verify_mac(s, NID_md5, out) == 0 ||
524 s->method->ssl3_enc->cert_verify_mac(s,
525 NID_sha1, out + MD5_DIGEST_LENGTH) == 0)
526 return 0;
527 *out_len = MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH;
528 /* Using a NULL signature MD makes EVP_PKEY_sign perform
529 * a raw RSA signature, rather than wrapping in a
530 * DigestInfo. */
531 *out_md = NULL;
532 }
533 else if (pkey->type == EVP_PKEY_EC)
534 {
535 if (s->method->ssl3_enc->cert_verify_mac(s, NID_sha1, out) == 0)
536 return 0;
537 *out_len = SHA_DIGEST_LENGTH;
538 *out_md = EVP_sha1();
539 }
540 else
541 {
542 OPENSSL_PUT_ERROR(SSL, ssl3_cert_verify_hash, ERR_R_INTERNAL_ERROR);
543 return 0;
544 }
545 return 1;
546 }
547
Adam Langley95c29f32014-06-20 12:00:00 -0700548int ssl_cert_type(X509 *x, EVP_PKEY *pkey)
549 {
550 EVP_PKEY *pk;
551 int ret= -1,i;
552
553 if (pkey == NULL)
554 pk=X509_get_pubkey(x);
555 else
556 pk=pkey;
557 if (pk == NULL) goto err;
558
559 i=pk->type;
560 if (i == EVP_PKEY_RSA)
561 {
562 ret=SSL_PKEY_RSA_ENC;
563 }
Adam Langley95c29f32014-06-20 12:00:00 -0700564#ifndef OPENSSL_NO_EC
565 else if (i == EVP_PKEY_EC)
566 {
567 ret = SSL_PKEY_ECC;
568 }
569#endif
Adam Langley95c29f32014-06-20 12:00:00 -0700570
571err:
572 if(!pkey) EVP_PKEY_free(pk);
573 return(ret);
574 }
575
576int ssl_verify_alarm_type(long type)
577 {
578 int al;
579
580 switch(type)
581 {
582 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
583 case X509_V_ERR_UNABLE_TO_GET_CRL:
584 case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER:
585 al=SSL_AD_UNKNOWN_CA;
586 break;
587 case X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE:
588 case X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE:
589 case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY:
590 case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
591 case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
592 case X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD:
593 case X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD:
594 case X509_V_ERR_CERT_NOT_YET_VALID:
595 case X509_V_ERR_CRL_NOT_YET_VALID:
596 case X509_V_ERR_CERT_UNTRUSTED:
597 case X509_V_ERR_CERT_REJECTED:
598 al=SSL_AD_BAD_CERTIFICATE;
599 break;
600 case X509_V_ERR_CERT_SIGNATURE_FAILURE:
601 case X509_V_ERR_CRL_SIGNATURE_FAILURE:
602 al=SSL_AD_DECRYPT_ERROR;
603 break;
604 case X509_V_ERR_CERT_HAS_EXPIRED:
605 case X509_V_ERR_CRL_HAS_EXPIRED:
606 al=SSL_AD_CERTIFICATE_EXPIRED;
607 break;
608 case X509_V_ERR_CERT_REVOKED:
609 al=SSL_AD_CERTIFICATE_REVOKED;
610 break;
611 case X509_V_ERR_OUT_OF_MEM:
612 al=SSL_AD_INTERNAL_ERROR;
613 break;
614 case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
615 case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
616 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
617 case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE:
618 case X509_V_ERR_CERT_CHAIN_TOO_LONG:
619 case X509_V_ERR_PATH_LENGTH_EXCEEDED:
620 case X509_V_ERR_INVALID_CA:
621 al=SSL_AD_UNKNOWN_CA;
622 break;
623 case X509_V_ERR_APPLICATION_VERIFICATION:
624 al=SSL_AD_HANDSHAKE_FAILURE;
625 break;
626 case X509_V_ERR_INVALID_PURPOSE:
627 al=SSL_AD_UNSUPPORTED_CERTIFICATE;
628 break;
629 default:
630 al=SSL_AD_CERTIFICATE_UNKNOWN;
631 break;
632 }
633 return(al);
634 }
635
Adam Langley95c29f32014-06-20 12:00:00 -0700636int ssl3_setup_read_buffer(SSL *s)
637 {
638 unsigned char *p;
639 size_t len,align=0,headerlen;
640
David Benjamin09bd58d2014-08-12 21:22:28 -0400641 if (SSL_IS_DTLS(s))
Adam Langley95c29f32014-06-20 12:00:00 -0700642 headerlen = DTLS1_RT_HEADER_LENGTH;
643 else
644 headerlen = SSL3_RT_HEADER_LENGTH;
645
646#if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
647 align = (-SSL3_RT_HEADER_LENGTH)&(SSL3_ALIGN_PAYLOAD-1);
648#endif
649
650 if (s->s3->rbuf.buf == NULL)
651 {
652 len = SSL3_RT_MAX_PLAIN_LENGTH
653 + SSL3_RT_MAX_ENCRYPTED_OVERHEAD
654 + headerlen + align;
655 if (s->options & SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER)
656 {
657 s->s3->init_extra = 1;
658 len += SSL3_RT_MAX_EXTRA;
659 }
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400660 if ((p=OPENSSL_malloc(len)) == NULL)
Adam Langley95c29f32014-06-20 12:00:00 -0700661 goto err;
662 s->s3->rbuf.buf = p;
663 s->s3->rbuf.len = len;
664 }
665
666 s->packet= &(s->s3->rbuf.buf[0]);
667 return 1;
668
669err:
670 OPENSSL_PUT_ERROR(SSL, ssl3_setup_read_buffer, ERR_R_MALLOC_FAILURE);
671 return 0;
672 }
673
674int ssl3_setup_write_buffer(SSL *s)
675 {
676 unsigned char *p;
677 size_t len,align=0,headerlen;
678
David Benjamincc23df52014-08-03 13:37:47 -0400679 if (SSL_IS_DTLS(s))
Adam Langley95c29f32014-06-20 12:00:00 -0700680 headerlen = DTLS1_RT_HEADER_LENGTH + 1;
681 else
682 headerlen = SSL3_RT_HEADER_LENGTH;
683
684#if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
685 align = (-SSL3_RT_HEADER_LENGTH)&(SSL3_ALIGN_PAYLOAD-1);
686#endif
687
688 if (s->s3->wbuf.buf == NULL)
689 {
690 len = s->max_send_fragment
691 + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD
692 + headerlen + align;
693 if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS))
694 len += headerlen + align
695 + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD;
696
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400697 if ((p=OPENSSL_malloc(len)) == NULL)
Adam Langley95c29f32014-06-20 12:00:00 -0700698 goto err;
699 s->s3->wbuf.buf = p;
700 s->s3->wbuf.len = len;
701 }
702
703 return 1;
704
705err:
706 OPENSSL_PUT_ERROR(SSL, ssl3_setup_write_buffer, ERR_R_MALLOC_FAILURE);
707 return 0;
708 }
709
710
711int ssl3_setup_buffers(SSL *s)
712 {
713 if (!ssl3_setup_read_buffer(s))
714 return 0;
715 if (!ssl3_setup_write_buffer(s))
716 return 0;
717 return 1;
718 }
719
720int ssl3_release_write_buffer(SSL *s)
721 {
722 if (s->s3->wbuf.buf != NULL)
723 {
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400724 OPENSSL_free(s->s3->wbuf.buf);
Adam Langley95c29f32014-06-20 12:00:00 -0700725 s->s3->wbuf.buf = NULL;
726 }
727 return 1;
728 }
729
730int ssl3_release_read_buffer(SSL *s)
731 {
732 if (s->s3->rbuf.buf != NULL)
733 {
Alex Chernyakhovsky6ccf2902014-08-03 17:35:20 -0400734 OPENSSL_free(s->s3->rbuf.buf);
Adam Langley95c29f32014-06-20 12:00:00 -0700735 s->s3->rbuf.buf = NULL;
736 }
737 return 1;
738 }
739