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