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