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