Move state machine knowledge out of the record layer
[openssl.git] / ssl / record / rec_layer_s3.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <assert.h>
12 #include <limits.h>
13 #include <errno.h>
14 #define USE_SOCKETS
15 #include "../ssl_locl.h"
16 #include <openssl/evp.h>
17 #include <openssl/buffer.h>
18 #include <openssl/rand.h>
19 #include "record_locl.h"
20
21 #if     defined(OPENSSL_SMALL_FOOTPRINT) || \
22         !(      defined(AES_ASM) &&     ( \
23                 defined(__x86_64)       || defined(__x86_64__)  || \
24                 defined(_M_AMD64)       || defined(_M_X64)      ) \
25         )
26 # undef EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
27 # define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0
28 #endif
29
30 void RECORD_LAYER_init(RECORD_LAYER *rl, SSL *s)
31 {
32     rl->s = s;
33     RECORD_LAYER_set_first_record(&s->rlayer);
34     SSL3_RECORD_clear(rl->rrec, SSL_MAX_PIPELINES);
35 }
36
37 void RECORD_LAYER_clear(RECORD_LAYER *rl)
38 {
39     rl->rstate = SSL_ST_READ_HEADER;
40
41     /*
42      * Do I need to clear read_ahead? As far as I can tell read_ahead did not
43      * previously get reset by SSL_clear...so I'll keep it that way..but is
44      * that right?
45      */
46
47     rl->packet = NULL;
48     rl->packet_length = 0;
49     rl->wnum = 0;
50     memset(rl->alert_fragment, 0, sizeof(rl->alert_fragment));
51     rl->alert_fragment_len = 0;
52     memset(rl->handshake_fragment, 0, sizeof(rl->handshake_fragment));
53     rl->handshake_fragment_len = 0;
54     rl->wpend_tot = 0;
55     rl->wpend_type = 0;
56     rl->wpend_ret = 0;
57     rl->wpend_buf = NULL;
58
59     SSL3_BUFFER_clear(&rl->rbuf);
60     ssl3_release_write_buffer(rl->s);
61     rl->numrpipes = 0;
62     SSL3_RECORD_clear(rl->rrec, SSL_MAX_PIPELINES);
63
64     RECORD_LAYER_reset_read_sequence(rl);
65     RECORD_LAYER_reset_write_sequence(rl);
66
67     if (rl->d)
68         DTLS_RECORD_LAYER_clear(rl);
69 }
70
71 void RECORD_LAYER_release(RECORD_LAYER *rl)
72 {
73     if (SSL3_BUFFER_is_initialised(&rl->rbuf))
74         ssl3_release_read_buffer(rl->s);
75     if (rl->numwpipes > 0)
76         ssl3_release_write_buffer(rl->s);
77     SSL3_RECORD_release(rl->rrec, SSL_MAX_PIPELINES);
78 }
79
80 int RECORD_LAYER_read_pending(const RECORD_LAYER *rl)
81 {
82     return SSL3_BUFFER_get_left(&rl->rbuf) != 0;
83 }
84
85 int RECORD_LAYER_write_pending(const RECORD_LAYER *rl)
86 {
87     return (rl->numwpipes > 0)
88         && SSL3_BUFFER_get_left(&rl->wbuf[rl->numwpipes - 1]) != 0;
89 }
90
91 int RECORD_LAYER_set_data(RECORD_LAYER *rl, const unsigned char *buf,
92                           size_t len)
93 {
94     rl->packet_length = len;
95     if (len != 0) {
96         rl->rstate = SSL_ST_READ_HEADER;
97         if (!SSL3_BUFFER_is_initialised(&rl->rbuf))
98             if (!ssl3_setup_read_buffer(rl->s))
99                 return 0;
100     }
101
102     rl->packet = SSL3_BUFFER_get_buf(&rl->rbuf);
103     SSL3_BUFFER_set_data(&rl->rbuf, buf, len);
104
105     return 1;
106 }
107
108 void RECORD_LAYER_reset_read_sequence(RECORD_LAYER *rl)
109 {
110     memset(rl->read_sequence, 0, sizeof(rl->read_sequence));
111 }
112
113 void RECORD_LAYER_reset_write_sequence(RECORD_LAYER *rl)
114 {
115     memset(rl->write_sequence, 0, sizeof(rl->write_sequence));
116 }
117
118 size_t ssl3_pending(const SSL *s)
119 {
120     size_t i, num = 0;
121
122     if (s->rlayer.rstate == SSL_ST_READ_BODY)
123         return 0;
124
125     for (i = 0; i < RECORD_LAYER_get_numrpipes(&s->rlayer); i++) {
126         if (SSL3_RECORD_get_type(&s->rlayer.rrec[i])
127             != SSL3_RT_APPLICATION_DATA)
128             return 0;
129         num += SSL3_RECORD_get_length(&s->rlayer.rrec[i]);
130     }
131
132     return num;
133 }
134
135 void SSL_CTX_set_default_read_buffer_len(SSL_CTX *ctx, size_t len)
136 {
137     ctx->default_read_buf_len = len;
138 }
139
140 void SSL_set_default_read_buffer_len(SSL *s, size_t len)
141 {
142     SSL3_BUFFER_set_default_len(RECORD_LAYER_get_rbuf(&s->rlayer), len);
143 }
144
145 const char *SSL_rstate_string_long(const SSL *s)
146 {
147     switch (s->rlayer.rstate) {
148     case SSL_ST_READ_HEADER:
149         return "read header";
150     case SSL_ST_READ_BODY:
151         return "read body";
152     case SSL_ST_READ_DONE:
153         return "read done";
154     default:
155         return "unknown";
156     }
157 }
158
159 const char *SSL_rstate_string(const SSL *s)
160 {
161     switch (s->rlayer.rstate) {
162     case SSL_ST_READ_HEADER:
163         return "RH";
164     case SSL_ST_READ_BODY:
165         return "RB";
166     case SSL_ST_READ_DONE:
167         return "RD";
168     default:
169         return "unknown";
170     }
171 }
172
173 /*
174  * Return values are as per SSL_read()
175  */
176 int ssl3_read_n(SSL *s, size_t n, size_t max, int extend, int clearold,
177                 size_t *readbytes)
178 {
179     /*
180      * If extend == 0, obtain new n-byte packet; if extend == 1, increase
181      * packet by another n bytes. The packet will be in the sub-array of
182      * s->s3->rbuf.buf specified by s->packet and s->packet_length. (If
183      * s->rlayer.read_ahead is set, 'max' bytes may be stored in rbuf [plus
184      * s->packet_length bytes if extend == 1].)
185      * if clearold == 1, move the packet to the start of the buffer; if
186      * clearold == 0 then leave any old packets where they were
187      */
188     size_t len, left, align = 0;
189     unsigned char *pkt;
190     SSL3_BUFFER *rb;
191
192     if (n == 0)
193         return 0;
194
195     rb = &s->rlayer.rbuf;
196     if (rb->buf == NULL)
197         if (!ssl3_setup_read_buffer(s))
198             return -1;
199
200     left = rb->left;
201 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
202     align = (size_t)rb->buf + SSL3_RT_HEADER_LENGTH;
203     align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD);
204 #endif
205
206     if (!extend) {
207         /* start with empty packet ... */
208         if (left == 0)
209             rb->offset = align;
210         else if (align != 0 && left >= SSL3_RT_HEADER_LENGTH) {
211             /*
212              * check if next packet length is large enough to justify payload
213              * alignment...
214              */
215             pkt = rb->buf + rb->offset;
216             if (pkt[0] == SSL3_RT_APPLICATION_DATA
217                 && (pkt[3] << 8 | pkt[4]) >= 128) {
218                 /*
219                  * Note that even if packet is corrupted and its length field
220                  * is insane, we can only be led to wrong decision about
221                  * whether memmove will occur or not. Header values has no
222                  * effect on memmove arguments and therefore no buffer
223                  * overrun can be triggered.
224                  */
225                 memmove(rb->buf + align, pkt, left);
226                 rb->offset = align;
227             }
228         }
229         s->rlayer.packet = rb->buf + rb->offset;
230         s->rlayer.packet_length = 0;
231         /* ... now we can act as if 'extend' was set */
232     }
233
234     len = s->rlayer.packet_length;
235     pkt = rb->buf + align;
236     /*
237      * Move any available bytes to front of buffer: 'len' bytes already
238      * pointed to by 'packet', 'left' extra ones at the end
239      */
240     if (s->rlayer.packet != pkt && clearold == 1) {
241         memmove(pkt, s->rlayer.packet, len + left);
242         s->rlayer.packet = pkt;
243         rb->offset = len + align;
244     }
245
246     /*
247      * For DTLS/UDP reads should not span multiple packets because the read
248      * operation returns the whole packet at once (as long as it fits into
249      * the buffer).
250      */
251     if (SSL_IS_DTLS(s)) {
252         if (left == 0 && extend)
253             return 0;
254         if (left > 0 && n > left)
255             n = left;
256     }
257
258     /* if there is enough in the buffer from a previous read, take some */
259     if (left >= n) {
260         s->rlayer.packet_length += n;
261         rb->left = left - n;
262         rb->offset += n;
263         *readbytes = n;
264         return 1;
265     }
266
267     /* else we need to read more data */
268
269     if (n > rb->len - rb->offset) { /* does not happen */
270         SSLerr(SSL_F_SSL3_READ_N, ERR_R_INTERNAL_ERROR);
271         return -1;
272     }
273
274     /* We always act like read_ahead is set for DTLS */
275     if (!s->rlayer.read_ahead && !SSL_IS_DTLS(s))
276         /* ignore max parameter */
277         max = n;
278     else {
279         if (max < n)
280             max = n;
281         if (max > rb->len - rb->offset)
282             max = rb->len - rb->offset;
283     }
284
285     while (left < n) {
286         size_t bioread = 0;
287         int ret;
288
289         /*
290          * Now we have len+left bytes at the front of s->s3->rbuf.buf and
291          * need to read in more until we have len+n (up to len+max if
292          * possible)
293          */
294
295         clear_sys_error();
296         if (s->rbio != NULL) {
297             s->rwstate = SSL_READING;
298             /* TODO(size_t): Convert this function */
299             ret = BIO_read(s->rbio, pkt + len + left, max - left);
300             if (ret >= 0)
301                 bioread = ret;
302         } else {
303             SSLerr(SSL_F_SSL3_READ_N, SSL_R_READ_BIO_NOT_SET);
304             ret = -1;
305         }
306
307         if (ret <= 0) {
308             rb->left = left;
309             if (s->mode & SSL_MODE_RELEASE_BUFFERS && !SSL_IS_DTLS(s))
310                 if (len + left == 0)
311                     ssl3_release_read_buffer(s);
312             return ret;
313         }
314         left += bioread;
315         /*
316          * reads should *never* span multiple packets for DTLS because the
317          * underlying transport protocol is message oriented as opposed to
318          * byte oriented as in the TLS case.
319          */
320         if (SSL_IS_DTLS(s)) {
321             if (n > left)
322                 n = left;       /* makes the while condition false */
323         }
324     }
325
326     /* done reading, now the book-keeping */
327     rb->offset += n;
328     rb->left = left - n;
329     s->rlayer.packet_length += n;
330     s->rwstate = SSL_NOTHING;
331     *readbytes = n;
332     return 1;
333 }
334
335 /*
336  * Call this to write data in records of type 'type' It will return <= 0 if
337  * not all data has been sent or non-blocking IO.
338  */
339 int ssl3_write_bytes(SSL *s, int type, const void *buf_, size_t len,
340                      size_t *written)
341 {
342     const unsigned char *buf = buf_;
343     size_t tot;
344     size_t n, split_send_fragment, maxpipes;
345 #if !defined(OPENSSL_NO_MULTIBLOCK) && EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
346     size_t max_send_fragment, nw;
347 #endif
348     SSL3_BUFFER *wb = &s->rlayer.wbuf[0];
349     int i;
350     size_t tmpwrit;
351
352     s->rwstate = SSL_NOTHING;
353     tot = s->rlayer.wnum;
354     /*
355      * ensure that if we end up with a smaller value of data to write out
356      * than the the original len from a write which didn't complete for
357      * non-blocking I/O and also somehow ended up avoiding the check for
358      * this in ssl3_write_pending/SSL_R_BAD_WRITE_RETRY as it must never be
359      * possible to end up with (len-tot) as a large number that will then
360      * promptly send beyond the end of the users buffer ... so we trap and
361      * report the error in a way the user will notice
362      */
363     if (len < s->rlayer.wnum) {
364         SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_BAD_LENGTH);
365         return -1;
366     }
367
368     s->rlayer.wnum = 0;
369
370     if (SSL_in_init(s) && !ossl_statem_get_in_handshake(s)) {
371         i = s->handshake_func(s);
372         if (i < 0)
373             return i;
374         if (i == 0) {
375             SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
376             return -1;
377         }
378     }
379
380     /*
381      * first check if there is a SSL3_BUFFER still being written out.  This
382      * will happen with non blocking IO
383      */
384     if (wb->left != 0) {
385         i = ssl3_write_pending(s, type, &buf[tot], s->rlayer.wpend_tot,
386                                &tmpwrit);
387         if (i <= 0) {
388             /* XXX should we ssl3_release_write_buffer if i<0? */
389             s->rlayer.wnum = tot;
390             return i;
391         }
392         tot += tmpwrit;               /* this might be last fragment */
393     }
394 #if !defined(OPENSSL_NO_MULTIBLOCK) && EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
395     /*
396      * Depending on platform multi-block can deliver several *times*
397      * better performance. Downside is that it has to allocate
398      * jumbo buffer to accommodate up to 8 records, but the
399      * compromise is considered worthy.
400      */
401     if (type == SSL3_RT_APPLICATION_DATA &&
402         len >= 4 * (max_send_fragment = s->max_send_fragment) &&
403         s->compress == NULL && s->msg_callback == NULL &&
404         !SSL_USE_ETM(s) && SSL_USE_EXPLICIT_IV(s) &&
405         EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(s->enc_write_ctx)) &
406         EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK) {
407         unsigned char aad[13];
408         EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM mb_param;
409         size_t packlen;
410         int packleni;
411
412         /* minimize address aliasing conflicts */
413         if ((max_send_fragment & 0xfff) == 0)
414             max_send_fragment -= 512;
415
416         if (tot == 0 || wb->buf == NULL) { /* allocate jumbo buffer */
417             ssl3_release_write_buffer(s);
418
419             packlen = EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
420                                           EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE,
421                                           (int)max_send_fragment, NULL);
422
423             if (len >= 8 * max_send_fragment)
424                 packlen *= 8;
425             else
426                 packlen *= 4;
427
428             if (!ssl3_setup_write_buffer(s, 1, packlen)) {
429                 SSLerr(SSL_F_SSL3_WRITE_BYTES, ERR_R_MALLOC_FAILURE);
430                 return -1;
431             }
432         } else if (tot == len) { /* done? */
433             /* free jumbo buffer */
434             ssl3_release_write_buffer(s);
435             *written = tot;
436             return 1;
437         }
438
439         n = (len - tot);
440         for (;;) {
441             if (n < 4 * max_send_fragment) {
442                 /* free jumbo buffer */
443                 ssl3_release_write_buffer(s);
444                 break;
445             }
446
447             if (s->s3->alert_dispatch) {
448                 i = s->method->ssl_dispatch_alert(s);
449                 if (i <= 0) {
450                     s->rlayer.wnum = tot;
451                     return i;
452                 }
453             }
454
455             if (n >= 8 * max_send_fragment)
456                 nw = max_send_fragment * (mb_param.interleave = 8);
457             else
458                 nw = max_send_fragment * (mb_param.interleave = 4);
459
460             memcpy(aad, s->rlayer.write_sequence, 8);
461             aad[8] = type;
462             aad[9] = (unsigned char)(s->version >> 8);
463             aad[10] = (unsigned char)(s->version);
464             aad[11] = 0;
465             aad[12] = 0;
466             mb_param.out = NULL;
467             mb_param.inp = aad;
468             mb_param.len = nw;
469
470             packleni = EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
471                                           EVP_CTRL_TLS1_1_MULTIBLOCK_AAD,
472                                           sizeof(mb_param), &mb_param);
473             packlen = (size_t)packleni;
474             if (packleni <= 0 || packlen > wb->len) { /* never happens */
475                 /* free jumbo buffer */
476                 ssl3_release_write_buffer(s);
477                 break;
478             }
479
480             mb_param.out = wb->buf;
481             mb_param.inp = &buf[tot];
482             mb_param.len = nw;
483
484             if (EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
485                                     EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT,
486                                     sizeof(mb_param), &mb_param) <= 0)
487                 return -1;
488
489             s->rlayer.write_sequence[7] += mb_param.interleave;
490             if (s->rlayer.write_sequence[7] < mb_param.interleave) {
491                 int j = 6;
492                 while (j >= 0 && (++s->rlayer.write_sequence[j--]) == 0) ;
493             }
494
495             wb->offset = 0;
496             wb->left = packlen;
497
498             s->rlayer.wpend_tot = nw;
499             s->rlayer.wpend_buf = &buf[tot];
500             s->rlayer.wpend_type = type;
501             s->rlayer.wpend_ret = nw;
502
503             i = ssl3_write_pending(s, type, &buf[tot], nw, &tmpwrit);
504             if (i <= 0) {
505                 if (i < 0 && (!s->wbio || !BIO_should_retry(s->wbio))) {
506                     /* free jumbo buffer */
507                     ssl3_release_write_buffer(s);
508                 }
509                 s->rlayer.wnum = tot;
510                 return i;
511             }
512             if (tmpwrit == n) {
513                 /* free jumbo buffer */
514                 ssl3_release_write_buffer(s);
515                 *written = tot + tmpwrit;
516                 return 1;
517             }
518             n -= tmpwrit;
519             tot += tmpwrit;
520         }
521     } else
522 #endif
523     if (tot == len) {           /* done? */
524         if (s->mode & SSL_MODE_RELEASE_BUFFERS && !SSL_IS_DTLS(s))
525             ssl3_release_write_buffer(s);
526
527         *written = tot;
528         return 1;
529     }
530
531     n = (len - tot);
532
533     split_send_fragment = s->split_send_fragment;
534     /*
535      * If max_pipelines is 0 then this means "undefined" and we default to
536      * 1 pipeline. Similarly if the cipher does not support pipelined
537      * processing then we also only use 1 pipeline, or if we're not using
538      * explicit IVs
539      */
540     maxpipes = s->max_pipelines;
541     if (maxpipes > SSL_MAX_PIPELINES) {
542         /*
543          * We should have prevented this when we set max_pipelines so we
544          * shouldn't get here
545          */
546         SSLerr(SSL_F_SSL3_WRITE_BYTES, ERR_R_INTERNAL_ERROR);
547         return -1;
548     }
549     if (maxpipes == 0
550         || s->enc_write_ctx == NULL
551         || !(EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(s->enc_write_ctx))
552              & EVP_CIPH_FLAG_PIPELINE)
553         || !SSL_USE_EXPLICIT_IV(s))
554         maxpipes = 1;
555     if (s->max_send_fragment == 0 || split_send_fragment > s->max_send_fragment
556         || split_send_fragment == 0) {
557         /*
558          * We should have prevented this when we set the split and max send
559          * fragments so we shouldn't get here
560          */
561         SSLerr(SSL_F_SSL3_WRITE_BYTES, ERR_R_INTERNAL_ERROR);
562         return -1;
563     }
564
565     for (;;) {
566         size_t pipelens[SSL_MAX_PIPELINES], tmppipelen, remain;
567         size_t numpipes, j;
568
569         if (n == 0)
570             numpipes = 1;
571         else
572             numpipes = ((n - 1) / split_send_fragment) + 1;
573         if (numpipes > maxpipes)
574             numpipes = maxpipes;
575
576         if (n / numpipes >= s->max_send_fragment) {
577             /*
578              * We have enough data to completely fill all available
579              * pipelines
580              */
581             for (j = 0; j < numpipes; j++) {
582                 pipelens[j] = s->max_send_fragment;
583             }
584         } else {
585             /* We can partially fill all available pipelines */
586             tmppipelen = n / numpipes;
587             remain = n % numpipes;
588             for (j = 0; j < numpipes; j++) {
589                 pipelens[j] = tmppipelen;
590                 if (j < remain)
591                     pipelens[j]++;
592             }
593         }
594
595         i = do_ssl3_write(s, type, &(buf[tot]), pipelens, numpipes, 0,
596                           &tmpwrit);
597         if (i <= 0) {
598             /* XXX should we ssl3_release_write_buffer if i<0? */
599             s->rlayer.wnum = tot;
600             return i;
601         }
602
603         if (tmpwrit == n ||
604             (type == SSL3_RT_APPLICATION_DATA &&
605              (s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE))) {
606             /*
607              * next chunk of data should get another prepended empty fragment
608              * in ciphersuites with known-IV weakness:
609              */
610             s->s3->empty_fragment_done = 0;
611
612             if ((i == (int)n) && s->mode & SSL_MODE_RELEASE_BUFFERS &&
613                 !SSL_IS_DTLS(s))
614                 ssl3_release_write_buffer(s);
615
616             *written = tot + tmpwrit;
617             return 1;
618         }
619
620         n -= tmpwrit;
621         tot += tmpwrit;
622     }
623 }
624
625 int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
626                   size_t *pipelens, size_t numpipes,
627                   int create_empty_fragment, size_t *written)
628 {
629     WPACKET pkt[SSL_MAX_PIPELINES];
630     SSL3_RECORD wr[SSL_MAX_PIPELINES];
631     WPACKET *thispkt;
632     SSL3_RECORD *thiswr;
633     unsigned char *recordstart;
634     int i, mac_size, clear = 0;
635     size_t prefix_len = 0;
636     int eivlen = 0;
637     size_t align = 0;
638     SSL3_BUFFER *wb;
639     SSL_SESSION *sess;
640     size_t totlen = 0, len, wpinited = 0;
641     size_t j;
642
643     for (j = 0; j < numpipes; j++)
644         totlen += pipelens[j];
645     /*
646      * first check if there is a SSL3_BUFFER still being written out.  This
647      * will happen with non blocking IO
648      */
649     if (RECORD_LAYER_write_pending(&s->rlayer))
650         return ssl3_write_pending(s, type, buf, totlen, written);
651
652     /* If we have an alert to send, lets send it */
653     if (s->s3->alert_dispatch) {
654         i = s->method->ssl_dispatch_alert(s);
655         if (i <= 0)
656             return (i);
657         /* if it went, fall through and send more stuff */
658     }
659
660     if (s->rlayer.numwpipes < numpipes)
661         if (!ssl3_setup_write_buffer(s, numpipes, 0))
662             return -1;
663
664     if (totlen == 0 && !create_empty_fragment)
665         return 0;
666
667     sess = s->session;
668
669     if ((sess == NULL) ||
670         (s->enc_write_ctx == NULL) || (EVP_MD_CTX_md(s->write_hash) == NULL)) {
671         clear = s->enc_write_ctx ? 0 : 1; /* must be AEAD cipher */
672         mac_size = 0;
673     } else {
674         /* TODO(siz_t): Convert me */
675         mac_size = EVP_MD_CTX_size(s->write_hash);
676         if (mac_size < 0)
677             goto err;
678     }
679
680     /*
681      * 'create_empty_fragment' is true only when this function calls itself
682      */
683     if (!clear && !create_empty_fragment && !s->s3->empty_fragment_done) {
684         /*
685          * countermeasure against known-IV weakness in CBC ciphersuites (see
686          * http://www.openssl.org/~bodo/tls-cbc.txt)
687          */
688
689         if (s->s3->need_empty_fragments && type == SSL3_RT_APPLICATION_DATA) {
690             /*
691              * recursive function call with 'create_empty_fragment' set; this
692              * prepares and buffers the data for an empty fragment (these
693              * 'prefix_len' bytes are sent out later together with the actual
694              * payload)
695              */
696             size_t tmppipelen = 0;
697             int ret;
698
699             ret = do_ssl3_write(s, type, buf, &tmppipelen, 1, 1, &prefix_len);
700             if (ret <= 0)
701                 goto err;
702
703             if (prefix_len >
704                 (SSL3_RT_HEADER_LENGTH + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD)) {
705                 /* insufficient space */
706                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
707                 goto err;
708             }
709         }
710
711         s->s3->empty_fragment_done = 1;
712     }
713
714     if (create_empty_fragment) {
715         wb = &s->rlayer.wbuf[0];
716 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
717         /*
718          * extra fragment would be couple of cipher blocks, which would be
719          * multiple of SSL3_ALIGN_PAYLOAD, so if we want to align the real
720          * payload, then we can just pretend we simply have two headers.
721          */
722         align = (size_t)SSL3_BUFFER_get_buf(wb) + 2 * SSL3_RT_HEADER_LENGTH;
723         align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD);
724 #endif
725         SSL3_BUFFER_set_offset(wb, align);
726         if (!WPACKET_init_static_len(&pkt[0], SSL3_BUFFER_get_buf(wb),
727                                      SSL3_BUFFER_get_len(wb), 0)
728                 || !WPACKET_allocate_bytes(&pkt[0], align, NULL)) {
729             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
730             goto err;
731         }
732         wpinited = 1;
733     } else if (prefix_len) {
734         wb = &s->rlayer.wbuf[0];
735         if (!WPACKET_init_static_len(&pkt[0],
736                                      SSL3_BUFFER_get_buf(wb),
737                                      SSL3_BUFFER_get_len(wb), 0)
738                 || !WPACKET_allocate_bytes(&pkt[0], SSL3_BUFFER_get_offset(wb)
739                                                     + prefix_len, NULL)) {
740             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
741             goto err;
742         }
743         wpinited = 1;
744     } else {
745         for (j = 0; j < numpipes; j++) {
746             thispkt = &pkt[j];
747
748             wb = &s->rlayer.wbuf[j];
749 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD != 0
750             align = (size_t)SSL3_BUFFER_get_buf(wb) + SSL3_RT_HEADER_LENGTH;
751             align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD);
752 #endif
753             SSL3_BUFFER_set_offset(wb, align);
754             if (!WPACKET_init_static_len(thispkt, SSL3_BUFFER_get_buf(wb),
755                                          SSL3_BUFFER_get_len(wb), 0)
756                     || !WPACKET_allocate_bytes(thispkt, align, NULL)) {
757                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
758                 goto err;
759             }
760             wpinited++;
761         }
762     }
763
764     /* Explicit IV length, block ciphers appropriate version flag */
765     if (s->enc_write_ctx && SSL_USE_EXPLICIT_IV(s)) {
766         int mode = EVP_CIPHER_CTX_mode(s->enc_write_ctx);
767         if (mode == EVP_CIPH_CBC_MODE) {
768             /* TODO(size_t): Convert me */
769             eivlen = EVP_CIPHER_CTX_iv_length(s->enc_write_ctx);
770             if (eivlen <= 1)
771                 eivlen = 0;
772         } else if (mode == EVP_CIPH_GCM_MODE) {
773             /* Need explicit part of IV for GCM mode */
774             eivlen = EVP_GCM_TLS_EXPLICIT_IV_LEN;
775         } else if (mode == EVP_CIPH_CCM_MODE) {
776             eivlen = EVP_CCM_TLS_EXPLICIT_IV_LEN;
777         }
778     }
779
780     totlen = 0;
781     /* Clear our SSL3_RECORD structures */
782     memset(wr, 0, sizeof wr);
783     for (j = 0; j < numpipes; j++) {
784         unsigned int version = SSL_IS_TLS13(s) ? TLS1_VERSION : s->version;
785         unsigned char *compressdata = NULL;
786         size_t maxcomplen;
787         unsigned int rectype;
788
789         thispkt = &pkt[j];
790         thiswr = &wr[j];
791
792         SSL3_RECORD_set_type(thiswr, type);
793         /*
794          * In TLSv1.3, once encrypting, we always use application data for the
795          * record type
796          */
797         if (SSL_IS_TLS13(s) && s->enc_write_ctx != NULL)
798             rectype = SSL3_RT_APPLICATION_DATA;
799         else
800             rectype = type;
801         /*
802          * Some servers hang if initial client hello is larger than 256 bytes
803          * and record version number > TLS 1.0
804          */
805         if (SSL_get_state(s) == TLS_ST_CW_CLNT_HELLO
806             && !s->renegotiate && TLS1_get_version(s) > TLS1_VERSION)
807             version = TLS1_VERSION;
808
809         maxcomplen = pipelens[j];
810         if (s->compress != NULL)
811             pipelens[j] += SSL3_RT_MAX_COMPRESSED_OVERHEAD;
812
813         /* write the header */
814         if (!WPACKET_put_bytes_u8(thispkt, rectype)
815                 || !WPACKET_put_bytes_u16(thispkt, version)
816                 || !WPACKET_start_sub_packet_u16(thispkt)
817                 || (eivlen > 0
818                     && !WPACKET_allocate_bytes(thispkt, eivlen, NULL))
819                 || (maxcomplen > 0
820                     && !WPACKET_reserve_bytes(thispkt, maxcomplen,
821                                               &compressdata))) {
822             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
823             goto err;
824         }
825
826         /* lets setup the record stuff. */
827         SSL3_RECORD_set_data(thiswr, compressdata);
828         SSL3_RECORD_set_length(thiswr, pipelens[j]);
829         SSL3_RECORD_set_input(thiswr, (unsigned char *)&buf[totlen]);
830         totlen += pipelens[j];
831
832         /*
833          * we now 'read' from thiswr->input, thiswr->length bytes into
834          * thiswr->data
835          */
836
837         /* first we compress */
838         if (s->compress != NULL) {
839             /*
840              * TODO(TLS1.3): Make sure we prevent compression!!!
841              */
842             if (!ssl3_do_compress(s, thiswr)
843                     || !WPACKET_allocate_bytes(thispkt, thiswr->length, NULL)) {
844                 SSLerr(SSL_F_DO_SSL3_WRITE, SSL_R_COMPRESSION_FAILURE);
845                 goto err;
846             }
847         } else {
848             if (!WPACKET_memcpy(thispkt, thiswr->input, thiswr->length)) {
849                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
850                 goto err;
851             }
852             SSL3_RECORD_reset_input(&wr[j]);
853         }
854
855         if (SSL_IS_TLS13(s) && s->enc_write_ctx != NULL) {
856             if (!WPACKET_put_bytes_u8(thispkt, type)) {
857                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
858                 goto err;
859             }
860             SSL3_RECORD_add_length(thiswr, 1);
861             /*
862              * TODO(TLS1.3): Padding goes here. Do we need an API to add this?
863              * For now, use no padding
864              */
865         }
866
867         /*
868          * we should still have the output to thiswr->data and the input from
869          * wr->input. Length should be thiswr->length. thiswr->data still points
870          * in the wb->buf
871          */
872
873         if (!SSL_USE_ETM(s) && mac_size != 0) {
874             unsigned char *mac;
875
876             if (!WPACKET_allocate_bytes(thispkt, mac_size, &mac)
877                     || !s->method->ssl3_enc->mac(s, thiswr, mac, 1)) {
878                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
879                 goto err;
880             }
881         }
882
883         /*
884          * Reserve some bytes for any growth that may occur during encryption.
885          * This will be at most one cipher block or the tag length if using
886          * AEAD. SSL_RT_MAX_CIPHER_BLOCK_SIZE covers either case.
887          */
888         if(!WPACKET_reserve_bytes(thispkt, SSL_RT_MAX_CIPHER_BLOCK_SIZE,
889                                   NULL)
890                    /*
891                     * We also need next the amount of bytes written to this
892                     * sub-packet
893                     */
894                 || !WPACKET_get_length(thispkt, &len)) {
895             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
896             goto err;
897         }
898
899         /* Get a pointer to the start of this record excluding header */
900         recordstart = WPACKET_get_curr(thispkt) - len;
901
902         SSL3_RECORD_set_data(thiswr, recordstart);
903         SSL3_RECORD_reset_input(thiswr);
904         SSL3_RECORD_set_length(thiswr, len);
905     }
906
907     if (s->method->ssl3_enc->enc(s, wr, numpipes, 1) < 1)
908         goto err;
909
910     for (j = 0; j < numpipes; j++) {
911         size_t origlen;
912
913         thispkt = &pkt[j];
914         thiswr = &wr[j];
915
916         /* Allocate bytes for the encryption overhead */
917         if (!WPACKET_get_length(thispkt, &origlen)
918                    /* Encryption should never shrink the data! */
919                 || origlen > thiswr->length
920                 || (thiswr->length > origlen
921                     && !WPACKET_allocate_bytes(thispkt,
922                                                thiswr->length - origlen, NULL))) {
923             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
924             goto err;
925         }
926         if (SSL_USE_ETM(s) && mac_size != 0) {
927             unsigned char *mac;
928
929             if (!WPACKET_allocate_bytes(thispkt, mac_size, &mac)
930                     || !s->method->ssl3_enc->mac(s, thiswr, mac, 1)) {
931                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
932                 goto err;
933             }
934             SSL3_RECORD_add_length(thiswr, mac_size);
935         }
936
937         if (!WPACKET_get_length(thispkt, &len)
938                 || !WPACKET_close(thispkt)) {
939             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
940             goto err;
941         }
942
943         if (s->msg_callback) {
944             recordstart = WPACKET_get_curr(thispkt) - len
945                           - SSL3_RT_HEADER_LENGTH;
946             s->msg_callback(1, 0, SSL3_RT_HEADER, recordstart,
947                             SSL3_RT_HEADER_LENGTH, s,
948                             s->msg_callback_arg);
949         }
950
951         if (!WPACKET_finish(thispkt)) {
952             SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
953             goto err;
954         }
955
956         /*
957          * we should now have thiswr->data pointing to the encrypted data, which
958          * is thiswr->length long
959          */
960         SSL3_RECORD_set_type(thiswr, type); /* not needed but helps for
961                                              * debugging */
962         SSL3_RECORD_add_length(thiswr, SSL3_RT_HEADER_LENGTH);
963
964         if (create_empty_fragment) {
965             /*
966              * we are in a recursive call; just return the length, don't write
967              * out anything here
968              */
969             if (j > 0) {
970                 /* We should never be pipelining an empty fragment!! */
971                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
972                 goto err;
973             }
974             *written = SSL3_RECORD_get_length(thiswr);
975             return 1;
976         }
977
978         /* now let's set up wb */
979         SSL3_BUFFER_set_left(&s->rlayer.wbuf[j],
980                              prefix_len + SSL3_RECORD_get_length(thiswr));
981     }
982
983     /*
984      * memorize arguments so that ssl3_write_pending can detect bad write
985      * retries later
986      */
987     s->rlayer.wpend_tot = totlen;
988     s->rlayer.wpend_buf = buf;
989     s->rlayer.wpend_type = type;
990     s->rlayer.wpend_ret = totlen;
991
992     /* we now just need to write the buffer */
993     return ssl3_write_pending(s, type, buf, totlen, written);
994  err:
995     for (j = 0; j < wpinited; j++)
996         WPACKET_cleanup(&pkt[j]);
997     return -1;
998 }
999
1000 /* if s->s3->wbuf.left != 0, we need to call this
1001  *
1002  * Return values are as per SSL_write()
1003  */
1004 int ssl3_write_pending(SSL *s, int type, const unsigned char *buf, size_t len,
1005                        size_t *written)
1006 {
1007     int i;
1008     SSL3_BUFFER *wb = s->rlayer.wbuf;
1009     size_t currbuf = 0;
1010     size_t tmpwrit = 0;
1011
1012     if ((s->rlayer.wpend_tot > len)
1013         || ((s->rlayer.wpend_buf != buf) &&
1014             !(s->mode & SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER))
1015         || (s->rlayer.wpend_type != type)) {
1016         SSLerr(SSL_F_SSL3_WRITE_PENDING, SSL_R_BAD_WRITE_RETRY);
1017         return -1;
1018     }
1019
1020     for (;;) {
1021         /* Loop until we find a buffer we haven't written out yet */
1022         if (SSL3_BUFFER_get_left(&wb[currbuf]) == 0
1023             && currbuf < s->rlayer.numwpipes - 1) {
1024             currbuf++;
1025             continue;
1026         }
1027         clear_sys_error();
1028         if (s->wbio != NULL) {
1029             s->rwstate = SSL_WRITING;
1030             /* TODO(size_t): Convert this call */
1031             i = BIO_write(s->wbio, (char *)
1032                           &(SSL3_BUFFER_get_buf(&wb[currbuf])
1033                             [SSL3_BUFFER_get_offset(&wb[currbuf])]),
1034                           (unsigned int)SSL3_BUFFER_get_left(&wb[currbuf]));
1035             if (i >= 0)
1036                 tmpwrit = i;
1037         } else {
1038             SSLerr(SSL_F_SSL3_WRITE_PENDING, SSL_R_BIO_NOT_SET);
1039             i = -1;
1040         }
1041         if (i > 0 && tmpwrit == SSL3_BUFFER_get_left(&wb[currbuf])) {
1042             SSL3_BUFFER_set_left(&wb[currbuf], 0);
1043             SSL3_BUFFER_add_offset(&wb[currbuf], tmpwrit);
1044             if (currbuf + 1 < s->rlayer.numwpipes)
1045                 continue;
1046             s->rwstate = SSL_NOTHING;
1047             *written = s->rlayer.wpend_ret;
1048             return 1;
1049         } else if (i <= 0) {
1050             if (SSL_IS_DTLS(s)) {
1051                 /*
1052                  * For DTLS, just drop it. That's kind of the whole point in
1053                  * using a datagram service
1054                  */
1055                 SSL3_BUFFER_set_left(&wb[currbuf], 0);
1056             }
1057             return (i);
1058         }
1059         SSL3_BUFFER_add_offset(&wb[currbuf], tmpwrit);
1060         SSL3_BUFFER_sub_left(&wb[currbuf], tmpwrit);
1061     }
1062 }
1063
1064 /*-
1065  * Return up to 'len' payload bytes received in 'type' records.
1066  * 'type' is one of the following:
1067  *
1068  *   -  SSL3_RT_HANDSHAKE (when ssl3_get_message calls us)
1069  *   -  SSL3_RT_APPLICATION_DATA (when ssl3_read calls us)
1070  *   -  0 (during a shutdown, no data has to be returned)
1071  *
1072  * If we don't have stored data to work from, read a SSL/TLS record first
1073  * (possibly multiple records if we still don't have anything to return).
1074  *
1075  * This function must handle any surprises the peer may have for us, such as
1076  * Alert records (e.g. close_notify) or renegotiation requests. ChangeCipherSpec
1077  * messages are treated as if they were handshake messages *if* the |recd_type|
1078  * argument is non NULL.
1079  * Also if record payloads contain fragments too small to process, we store
1080  * them until there is enough for the respective protocol (the record protocol
1081  * may use arbitrary fragmentation and even interleaving):
1082  *     Change cipher spec protocol
1083  *             just 1 byte needed, no need for keeping anything stored
1084  *     Alert protocol
1085  *             2 bytes needed (AlertLevel, AlertDescription)
1086  *     Handshake protocol
1087  *             4 bytes needed (HandshakeType, uint24 length) -- we just have
1088  *             to detect unexpected Client Hello and Hello Request messages
1089  *             here, anything else is handled by higher layers
1090  *     Application data protocol
1091  *             none of our business
1092  */
1093 int ssl3_read_bytes(SSL *s, int type, int *recvd_type, unsigned char *buf,
1094                     size_t len, int peek, size_t *readbytes)
1095 {
1096     int al, i, j, ret;
1097     size_t n, curr_rec, num_recs, totalbytes;
1098     SSL3_RECORD *rr;
1099     SSL3_BUFFER *rbuf;
1100     void (*cb) (const SSL *ssl, int type2, int val) = NULL;
1101
1102     rbuf = &s->rlayer.rbuf;
1103
1104     if (!SSL3_BUFFER_is_initialised(rbuf)) {
1105         /* Not initialized yet */
1106         if (!ssl3_setup_read_buffer(s))
1107             return -1;
1108     }
1109
1110     if ((type && (type != SSL3_RT_APPLICATION_DATA)
1111          && (type != SSL3_RT_HANDSHAKE)) || (peek
1112                                              && (type !=
1113                                                  SSL3_RT_APPLICATION_DATA))) {
1114         SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
1115         return -1;
1116     }
1117
1118     if ((type == SSL3_RT_HANDSHAKE) && (s->rlayer.handshake_fragment_len > 0))
1119         /* (partially) satisfy request from storage */
1120     {
1121         unsigned char *src = s->rlayer.handshake_fragment;
1122         unsigned char *dst = buf;
1123         unsigned int k;
1124
1125         /* peek == 0 */
1126         n = 0;
1127         while ((len > 0) && (s->rlayer.handshake_fragment_len > 0)) {
1128             *dst++ = *src++;
1129             len--;
1130             s->rlayer.handshake_fragment_len--;
1131             n++;
1132         }
1133         /* move any remaining fragment bytes: */
1134         for (k = 0; k < s->rlayer.handshake_fragment_len; k++)
1135             s->rlayer.handshake_fragment[k] = *src++;
1136
1137         if (recvd_type != NULL)
1138             *recvd_type = SSL3_RT_HANDSHAKE;
1139
1140         *readbytes = n;
1141         return 1;
1142     }
1143
1144     /*
1145      * Now s->rlayer.handshake_fragment_len == 0 if type == SSL3_RT_HANDSHAKE.
1146      */
1147
1148     if (!ossl_statem_get_in_handshake(s) && SSL_in_init(s)) {
1149         /* type == SSL3_RT_APPLICATION_DATA */
1150         i = s->handshake_func(s);
1151         if (i < 0)
1152             return i;
1153         if (i == 0) {
1154             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
1155             return -1;
1156         }
1157     }
1158  start:
1159     s->rwstate = SSL_NOTHING;
1160
1161     /*-
1162      * For each record 'i' up to |num_recs]
1163      * rr[i].type     - is the type of record
1164      * rr[i].data,    - data
1165      * rr[i].off,     - offset into 'data' for next read
1166      * rr[i].length,  - number of bytes.
1167      */
1168     rr = s->rlayer.rrec;
1169     num_recs = RECORD_LAYER_get_numrpipes(&s->rlayer);
1170
1171     do {
1172         /* get new records if necessary */
1173         if (num_recs == 0) {
1174             ret = ssl3_get_record(s);
1175             if (ret <= 0)
1176                 return ret;
1177             num_recs = RECORD_LAYER_get_numrpipes(&s->rlayer);
1178             if (num_recs == 0) {
1179                 /* Shouldn't happen */
1180                 al = SSL_AD_INTERNAL_ERROR;
1181                 SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
1182                 goto f_err;
1183             }
1184         }
1185         /* Skip over any records we have already read */
1186         for (curr_rec = 0;
1187              curr_rec < num_recs && SSL3_RECORD_is_read(&rr[curr_rec]);
1188              curr_rec++) ;
1189         if (curr_rec == num_recs) {
1190             RECORD_LAYER_set_numrpipes(&s->rlayer, 0);
1191             num_recs = 0;
1192             curr_rec = 0;
1193         }
1194     } while (num_recs == 0);
1195     rr = &rr[curr_rec];
1196
1197     /*
1198      * Reset the count of consecutive warning alerts if we've got a non-empty
1199      * record that isn't an alert.
1200      */
1201     if (SSL3_RECORD_get_type(rr) != SSL3_RT_ALERT
1202             && SSL3_RECORD_get_length(rr) != 0)
1203         s->rlayer.alert_count = 0;
1204
1205     /* we now have a packet which can be read and processed */
1206
1207     if (s->s3->change_cipher_spec /* set when we receive ChangeCipherSpec,
1208                                    * reset by ssl3_get_finished */
1209         && (SSL3_RECORD_get_type(rr) != SSL3_RT_HANDSHAKE)) {
1210         al = SSL_AD_UNEXPECTED_MESSAGE;
1211         SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_DATA_BETWEEN_CCS_AND_FINISHED);
1212         goto f_err;
1213     }
1214
1215     /*
1216      * If the other end has shut down, throw anything we read away (even in
1217      * 'peek' mode)
1218      */
1219     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1220         SSL3_RECORD_set_length(rr, 0);
1221         s->rwstate = SSL_NOTHING;
1222         return 0;
1223     }
1224
1225     if (type == SSL3_RECORD_get_type(rr)
1226         || (SSL3_RECORD_get_type(rr) == SSL3_RT_CHANGE_CIPHER_SPEC
1227             && type == SSL3_RT_HANDSHAKE && recvd_type != NULL
1228             && !SSL_IS_TLS13(s))) {
1229         /*
1230          * SSL3_RT_APPLICATION_DATA or
1231          * SSL3_RT_HANDSHAKE or
1232          * SSL3_RT_CHANGE_CIPHER_SPEC
1233          */
1234         /*
1235          * make sure that we are not getting application data when we are
1236          * doing a handshake for the first time
1237          */
1238         if (SSL_in_init(s) && (type == SSL3_RT_APPLICATION_DATA) &&
1239             (s->enc_read_ctx == NULL)) {
1240             al = SSL_AD_UNEXPECTED_MESSAGE;
1241             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_APP_DATA_IN_HANDSHAKE);
1242             goto f_err;
1243         }
1244
1245         if (type == SSL3_RT_HANDSHAKE
1246             && SSL3_RECORD_get_type(rr) == SSL3_RT_CHANGE_CIPHER_SPEC
1247             && s->rlayer.handshake_fragment_len > 0) {
1248             al = SSL_AD_UNEXPECTED_MESSAGE;
1249             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_CCS_RECEIVED_EARLY);
1250             goto f_err;
1251         }
1252
1253         if (recvd_type != NULL)
1254             *recvd_type = SSL3_RECORD_get_type(rr);
1255
1256         if (len == 0)
1257             return 0;
1258
1259         totalbytes = 0;
1260         do {
1261             if (len - totalbytes > SSL3_RECORD_get_length(rr))
1262                 n = SSL3_RECORD_get_length(rr);
1263             else
1264                 n = len - totalbytes;
1265
1266             memcpy(buf, &(rr->data[rr->off]), n);
1267             buf += n;
1268             if (peek) {
1269                 /* Mark any zero length record as consumed CVE-2016-6305 */
1270                 if (SSL3_RECORD_get_length(rr) == 0)
1271                     SSL3_RECORD_set_read(rr);
1272             } else {
1273                 SSL3_RECORD_sub_length(rr, n);
1274                 SSL3_RECORD_add_off(rr, n);
1275                 if (SSL3_RECORD_get_length(rr) == 0) {
1276                     s->rlayer.rstate = SSL_ST_READ_HEADER;
1277                     SSL3_RECORD_set_off(rr, 0);
1278                     SSL3_RECORD_set_read(rr);
1279                 }
1280             }
1281             if (SSL3_RECORD_get_length(rr) == 0
1282                 || (peek && n == SSL3_RECORD_get_length(rr))) {
1283                 curr_rec++;
1284                 rr++;
1285             }
1286             totalbytes += n;
1287         } while (type == SSL3_RT_APPLICATION_DATA && curr_rec < num_recs
1288                  && totalbytes < len);
1289         if (totalbytes == 0) {
1290             /* We must have read empty records. Get more data */
1291             goto start;
1292         }
1293         if (!peek && curr_rec == num_recs
1294             && (s->mode & SSL_MODE_RELEASE_BUFFERS)
1295             && SSL3_BUFFER_get_left(rbuf) == 0)
1296             ssl3_release_read_buffer(s);
1297         *readbytes = totalbytes;
1298         return 1;
1299     }
1300
1301     /*
1302      * If we get here, then type != rr->type; if we have a handshake message,
1303      * then it was unexpected (Hello Request or Client Hello) or invalid (we
1304      * were actually expecting a CCS).
1305      */
1306
1307     /*
1308      * Lets just double check that we've not got an SSLv2 record
1309      */
1310     if (rr->rec_version == SSL2_VERSION) {
1311         /*
1312          * Should never happen. ssl3_get_record() should only give us an SSLv2
1313          * record back if this is the first packet and we are looking for an
1314          * initial ClientHello. Therefore |type| should always be equal to
1315          * |rr->type|. If not then something has gone horribly wrong
1316          */
1317         al = SSL_AD_INTERNAL_ERROR;
1318         SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
1319         goto f_err;
1320     }
1321
1322     if (s->method->version == TLS_ANY_VERSION
1323         && (s->server || rr->type != SSL3_RT_ALERT)) {
1324         /*
1325          * If we've got this far and still haven't decided on what version
1326          * we're using then this must be a client side alert we're dealing with
1327          * (we don't allow heartbeats yet). We shouldn't be receiving anything
1328          * other than a ClientHello if we are a server.
1329          */
1330         s->version = rr->rec_version;
1331         al = SSL_AD_UNEXPECTED_MESSAGE;
1332         SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_MESSAGE);
1333         goto f_err;
1334     }
1335
1336     /*
1337      * In case of record types for which we have 'fragment' storage, fill
1338      * that so that we can process the data at a fixed place.
1339      */
1340     {
1341         size_t dest_maxlen = 0;
1342         unsigned char *dest = NULL;
1343         size_t *dest_len = NULL;
1344
1345         if (SSL3_RECORD_get_type(rr) == SSL3_RT_HANDSHAKE) {
1346             dest_maxlen = sizeof s->rlayer.handshake_fragment;
1347             dest = s->rlayer.handshake_fragment;
1348             dest_len = &s->rlayer.handshake_fragment_len;
1349         } else if (SSL3_RECORD_get_type(rr) == SSL3_RT_ALERT) {
1350             dest_maxlen = sizeof s->rlayer.alert_fragment;
1351             dest = s->rlayer.alert_fragment;
1352             dest_len = &s->rlayer.alert_fragment_len;
1353         }
1354
1355         if (dest_maxlen > 0) {
1356             n = dest_maxlen - *dest_len; /* available space in 'dest' */
1357             if (SSL3_RECORD_get_length(rr) < n)
1358                 n = SSL3_RECORD_get_length(rr); /* available bytes */
1359
1360             /* now move 'n' bytes: */
1361             while (n-- > 0) {
1362                 dest[(*dest_len)++] =
1363                     SSL3_RECORD_get_data(rr)[SSL3_RECORD_get_off(rr)];
1364                 SSL3_RECORD_add_off(rr, 1);
1365                 SSL3_RECORD_add_length(rr, -1);
1366             }
1367
1368             if (*dest_len < dest_maxlen) {
1369                 SSL3_RECORD_set_read(rr);
1370                 goto start;     /* fragment was too small */
1371             }
1372         }
1373     }
1374
1375     /*
1376      * TODO(TLS1.3): Temporarily we will just ignore NewSessionTicket messages.
1377      * Later we will want to process them.
1378      */
1379     if (!s->server && SSL_IS_TLS13(s) && s->rlayer.handshake_fragment_len >= 4
1380             && s->rlayer.handshake_fragment[0] == SSL3_MT_NEWSESSION_TICKET) {
1381         SSL3_RECORD_set_read(rr);
1382         goto start;
1383     }
1384
1385     /*-
1386      * s->rlayer.handshake_fragment_len == 4  iff  rr->type == SSL3_RT_HANDSHAKE;
1387      * s->rlayer.alert_fragment_len == 2      iff  rr->type == SSL3_RT_ALERT.
1388      * (Possibly rr is 'empty' now, i.e. rr->length may be 0.)
1389      */
1390
1391     /*
1392      * If we are a server and get a client hello when renegotiation isn't
1393      * allowed send back a no renegotiation alert and carry on. WARNING:
1394      * experimental code, needs reviewing (steve)
1395      */
1396     if (s->server &&
1397         SSL_is_init_finished(s) &&
1398         !s->s3->send_connection_binding &&
1399         (s->version > SSL3_VERSION) &&
1400         !SSL_IS_TLS13(s) &&
1401         (s->rlayer.handshake_fragment_len >= 4) &&
1402         (s->rlayer.handshake_fragment[0] == SSL3_MT_CLIENT_HELLO) &&
1403         (s->session != NULL) && (s->session->cipher != NULL) &&
1404         !(s->ctx->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
1405         SSL3_RECORD_set_length(rr, 0);
1406         SSL3_RECORD_set_read(rr);
1407         ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
1408         goto start;
1409     }
1410     if (s->rlayer.alert_fragment_len >= 2) {
1411         int alert_level = s->rlayer.alert_fragment[0];
1412         int alert_descr = s->rlayer.alert_fragment[1];
1413
1414         s->rlayer.alert_fragment_len = 0;
1415
1416         if (s->msg_callback)
1417             s->msg_callback(0, s->version, SSL3_RT_ALERT,
1418                             s->rlayer.alert_fragment, 2, s,
1419                             s->msg_callback_arg);
1420
1421         if (s->info_callback != NULL)
1422             cb = s->info_callback;
1423         else if (s->ctx->info_callback != NULL)
1424             cb = s->ctx->info_callback;
1425
1426         if (cb != NULL) {
1427             j = (alert_level << 8) | alert_descr;
1428             cb(s, SSL_CB_READ_ALERT, j);
1429         }
1430
1431         if (alert_level == SSL3_AL_WARNING) {
1432             s->s3->warn_alert = alert_descr;
1433             SSL3_RECORD_set_read(rr);
1434
1435             s->rlayer.alert_count++;
1436             if (s->rlayer.alert_count == MAX_WARN_ALERT_COUNT) {
1437                 al = SSL_AD_UNEXPECTED_MESSAGE;
1438                 SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_TOO_MANY_WARN_ALERTS);
1439                 goto f_err;
1440             }
1441
1442             if (alert_descr == SSL_AD_CLOSE_NOTIFY) {
1443                 s->shutdown |= SSL_RECEIVED_SHUTDOWN;
1444                 return 0;
1445             }
1446             /*
1447              * This is a warning but we receive it if we requested
1448              * renegotiation and the peer denied it. Terminate with a fatal
1449              * alert because if application tried to renegotiate it
1450              * presumably had a good reason and expects it to succeed. In
1451              * future we might have a renegotiation where we don't care if
1452              * the peer refused it where we carry on.
1453              */
1454             else if (alert_descr == SSL_AD_NO_RENEGOTIATION) {
1455                 al = SSL_AD_HANDSHAKE_FAILURE;
1456                 SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_NO_RENEGOTIATION);
1457                 goto f_err;
1458             }
1459 #ifdef SSL_AD_MISSING_SRP_USERNAME
1460             else if (alert_descr == SSL_AD_MISSING_SRP_USERNAME)
1461                 return (0);
1462 #endif
1463         } else if (alert_level == SSL3_AL_FATAL) {
1464             char tmp[16];
1465
1466             s->rwstate = SSL_NOTHING;
1467             s->s3->fatal_alert = alert_descr;
1468             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_AD_REASON_OFFSET + alert_descr);
1469             BIO_snprintf(tmp, sizeof tmp, "%d", alert_descr);
1470             ERR_add_error_data(2, "SSL alert number ", tmp);
1471             s->shutdown |= SSL_RECEIVED_SHUTDOWN;
1472             SSL3_RECORD_set_read(rr);
1473             SSL_CTX_remove_session(s->session_ctx, s->session);
1474             return 0;
1475         } else {
1476             al = SSL_AD_ILLEGAL_PARAMETER;
1477             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNKNOWN_ALERT_TYPE);
1478             goto f_err;
1479         }
1480
1481         goto start;
1482     }
1483
1484     if (s->shutdown & SSL_SENT_SHUTDOWN) { /* but we have not received a
1485                                             * shutdown */
1486         s->rwstate = SSL_NOTHING;
1487         SSL3_RECORD_set_length(rr, 0);
1488         SSL3_RECORD_set_read(rr);
1489         return 0;
1490     }
1491
1492     if (SSL3_RECORD_get_type(rr) == SSL3_RT_CHANGE_CIPHER_SPEC) {
1493         al = SSL_AD_UNEXPECTED_MESSAGE;
1494         SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_CCS_RECEIVED_EARLY);
1495         goto f_err;
1496     }
1497
1498     /*
1499      * Unexpected handshake message (ClientHello, NewSessionTicket (TLS1.3) or
1500      * protocol violation)
1501      */
1502     if ((s->rlayer.handshake_fragment_len >= 4)
1503             && !ossl_statem_get_in_handshake(s)) {
1504         /*
1505          * To get here we must be trying to read app data but found handshake
1506          * data. But if we're trying to read app data, and we're not in init
1507          * (which is tested for at the top of this function) then init must be
1508          * finished
1509          */
1510         assert(SSL_is_init_finished(s));
1511         if (!SSL_is_init_finished(s)) {
1512             al = SSL_AD_INTERNAL_ERROR;
1513             SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
1514             goto f_err;
1515         }
1516
1517         /* We found handshake data, so we're going back into init */
1518         ossl_statem_set_in_init(s, 1);
1519
1520         i = s->handshake_func(s);
1521         if (i < 0)
1522             return i;
1523         if (i == 0) {
1524             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
1525             return -1;
1526         }
1527
1528         if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
1529             if (SSL3_BUFFER_get_left(rbuf) == 0) {
1530                 /* no read-ahead left? */
1531                 BIO *bio;
1532                 /*
1533                  * In the case where we try to read application data, but we
1534                  * trigger an SSL handshake, we return -1 with the retry
1535                  * option set.  Otherwise renegotiation may cause nasty
1536                  * problems in the blocking world
1537                  */
1538                 s->rwstate = SSL_READING;
1539                 bio = SSL_get_rbio(s);
1540                 BIO_clear_retry_flags(bio);
1541                 BIO_set_retry_read(bio);
1542                 return -1;
1543             }
1544         }
1545         goto start;
1546     }
1547
1548     switch (SSL3_RECORD_get_type(rr)) {
1549     default:
1550         /*
1551          * TLS 1.0 and 1.1 say you SHOULD ignore unrecognised record types, but
1552          * TLS 1.2 says you MUST send an unexpected message alert. We use the
1553          * TLS 1.2 behaviour for all protocol versions to prevent issues where
1554          * no progress is being made and the peer continually sends unrecognised
1555          * record types, using up resources processing them.
1556          */
1557         al = SSL_AD_UNEXPECTED_MESSAGE;
1558         SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
1559         goto f_err;
1560     case SSL3_RT_CHANGE_CIPHER_SPEC:
1561     case SSL3_RT_ALERT:
1562     case SSL3_RT_HANDSHAKE:
1563         /*
1564          * we already handled all of these, with the possible exception of
1565          * SSL3_RT_HANDSHAKE when ossl_statem_get_in_handshake(s) is true, but
1566          * that should not happen when type != rr->type
1567          */
1568         al = SSL_AD_UNEXPECTED_MESSAGE;
1569         SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
1570         goto f_err;
1571     case SSL3_RT_APPLICATION_DATA:
1572         /*
1573          * At this point, we were expecting handshake data, but have
1574          * application data.  If the library was running inside ssl3_read()
1575          * (i.e. in_read_app_data is set) and it makes sense to read
1576          * application data at this point (session renegotiation not yet
1577          * started), we will indulge it.
1578          */
1579         if (ossl_statem_app_data_allowed(s)) {
1580             s->s3->in_read_app_data = 2;
1581             return -1;
1582         } else {
1583             al = SSL_AD_UNEXPECTED_MESSAGE;
1584             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
1585             goto f_err;
1586         }
1587     }
1588     /* not reached */
1589
1590  f_err:
1591     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1592     return -1;
1593 }
1594
1595 void ssl3_record_sequence_update(unsigned char *seq)
1596 {
1597     int i;
1598
1599     for (i = 7; i >= 0; i--) {
1600         ++seq[i];
1601         if (seq[i] != 0)
1602             break;
1603     }
1604 }
1605
1606 /*
1607  * Returns true if the current rrec was sent in SSLv2 backwards compatible
1608  * format and false otherwise.
1609  */
1610 int RECORD_LAYER_is_sslv2_record(RECORD_LAYER *rl)
1611 {
1612     return SSL3_RECORD_is_sslv2_record(&rl->rrec[0]);
1613 }
1614
1615 /*
1616  * Returns the length in bytes of the current rrec
1617  */
1618 size_t RECORD_LAYER_get_rrec_length(RECORD_LAYER *rl)
1619 {
1620     return SSL3_RECORD_get_length(&rl->rrec[0]);
1621 }