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