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