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