Fix error handling in i2d* functions.
[openssl.git] / ssl / record / ssl3_record.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include "../ssl_locl.h"
11 #include "internal/constant_time_locl.h"
12 #include <openssl/rand.h>
13 #include "record_locl.h"
14 #include "internal/cryptlib.h"
15
16 static const unsigned char ssl3_pad_1[48] = {
17     0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
18     0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
19     0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
20     0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
21     0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
22     0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36
23 };
24
25 static const unsigned char ssl3_pad_2[48] = {
26     0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
27     0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
28     0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
29     0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
30     0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
31     0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c
32 };
33
34 /*
35  * Clear the contents of an SSL3_RECORD but retain any memory allocated
36  */
37 void SSL3_RECORD_clear(SSL3_RECORD *r, size_t num_recs)
38 {
39     unsigned char *comp;
40     size_t i;
41
42     for (i = 0; i < num_recs; i++) {
43         comp = r[i].comp;
44
45         memset(&r[i], 0, sizeof(*r));
46         r[i].comp = comp;
47     }
48 }
49
50 void SSL3_RECORD_release(SSL3_RECORD *r, size_t num_recs)
51 {
52     size_t i;
53
54     for (i = 0; i < num_recs; i++) {
55         OPENSSL_free(r[i].comp);
56         r[i].comp = NULL;
57     }
58 }
59
60 void SSL3_RECORD_set_seq_num(SSL3_RECORD *r, const unsigned char *seq_num)
61 {
62     memcpy(r->seq_num, seq_num, SEQ_NUM_SIZE);
63 }
64
65 /*
66  * Peeks ahead into "read_ahead" data to see if we have a whole record waiting
67  * for us in the buffer.
68  */
69 static int ssl3_record_app_data_waiting(SSL *s)
70 {
71     SSL3_BUFFER *rbuf;
72     size_t left, len;
73     unsigned char *p;
74
75     rbuf = RECORD_LAYER_get_rbuf(&s->rlayer);
76
77     p = SSL3_BUFFER_get_buf(rbuf);
78     if (p == NULL)
79         return 0;
80
81     left = SSL3_BUFFER_get_left(rbuf);
82
83     if (left < SSL3_RT_HEADER_LENGTH)
84         return 0;
85
86     p += SSL3_BUFFER_get_offset(rbuf);
87
88     /*
89      * We only check the type and record length, we will sanity check version
90      * etc later
91      */
92     if (*p != SSL3_RT_APPLICATION_DATA)
93         return 0;
94
95     p += 3;
96     n2s(p, len);
97
98     if (left < SSL3_RT_HEADER_LENGTH + len)
99         return 0;
100
101     return 1;
102 }
103
104 int early_data_count_ok(SSL *s, size_t length, size_t overhead, int *al)
105 {
106     uint32_t max_early_data = s->max_early_data;
107     SSL_SESSION *sess = s->session;
108
109     /*
110      * If we are a client then we always use the max_early_data from the
111      * session/psksession. Otherwise we go with the lowest out of the max early
112      * data set in the session and the configured max_early_data.
113      */
114     if (!s->server && sess->ext.max_early_data == 0) {
115         if (!ossl_assert(s->psksession != NULL
116                          && s->psksession->ext.max_early_data > 0)) {
117             SSLerr(SSL_F_EARLY_DATA_COUNT_OK, ERR_R_INTERNAL_ERROR);
118             return 0;
119         }
120         sess = s->psksession;
121     }
122     if (!s->server
123             || (s->hit && sess->ext.max_early_data < s->max_early_data))
124         max_early_data = sess->ext.max_early_data;
125
126     if (max_early_data == 0) {
127         if (al != NULL)
128             *al = SSL_AD_UNEXPECTED_MESSAGE;
129         SSLerr(SSL_F_EARLY_DATA_COUNT_OK, SSL_R_TOO_MUCH_EARLY_DATA);
130         return 0;
131     }
132
133     /* If we are dealing with ciphertext we need to allow for the overhead */
134     max_early_data += overhead;
135
136     if (s->early_data_count + length > max_early_data) {
137         if (al != NULL)
138             *al = SSL_AD_UNEXPECTED_MESSAGE;
139         SSLerr(SSL_F_EARLY_DATA_COUNT_OK, SSL_R_TOO_MUCH_EARLY_DATA);
140         return 0;
141     }
142     s->early_data_count += length;
143
144     return 1;
145 }
146
147 /*
148  * MAX_EMPTY_RECORDS defines the number of consecutive, empty records that
149  * will be processed per call to ssl3_get_record. Without this limit an
150  * attacker could send empty records at a faster rate than we can process and
151  * cause ssl3_get_record to loop forever.
152  */
153 #define MAX_EMPTY_RECORDS 32
154
155 #define SSL2_RT_HEADER_LENGTH   2
156 /*-
157  * Call this to get new input records.
158  * It will return <= 0 if more data is needed, normally due to an error
159  * or non-blocking IO.
160  * When it finishes, |numrpipes| records have been decoded. For each record 'i':
161  * rr[i].type    - is the type of record
162  * rr[i].data,   - data
163  * rr[i].length, - number of bytes
164  * Multiple records will only be returned if the record types are all
165  * SSL3_RT_APPLICATION_DATA. The number of records returned will always be <=
166  * |max_pipelines|
167  */
168 /* used only by ssl3_read_bytes */
169 int ssl3_get_record(SSL *s)
170 {
171     int al;
172     int enc_err, rret, ret = -1;
173     int i;
174     size_t more, n;
175     SSL3_RECORD *rr, *thisrr;
176     SSL3_BUFFER *rbuf;
177     SSL_SESSION *sess;
178     unsigned char *p;
179     unsigned char md[EVP_MAX_MD_SIZE];
180     unsigned int version;
181     size_t mac_size;
182     int imac_size;
183     size_t num_recs = 0, max_recs, j;
184     PACKET pkt, sslv2pkt;
185     size_t first_rec_len;
186
187     rr = RECORD_LAYER_get_rrec(&s->rlayer);
188     rbuf = RECORD_LAYER_get_rbuf(&s->rlayer);
189     max_recs = s->max_pipelines;
190     if (max_recs == 0)
191         max_recs = 1;
192     sess = s->session;
193
194     do {
195         thisrr = &rr[num_recs];
196
197         /* check if we have the header */
198         if ((RECORD_LAYER_get_rstate(&s->rlayer) != SSL_ST_READ_BODY) ||
199             (RECORD_LAYER_get_packet_length(&s->rlayer)
200              < SSL3_RT_HEADER_LENGTH)) {
201             size_t sslv2len;
202             unsigned int type;
203
204             rret = ssl3_read_n(s, SSL3_RT_HEADER_LENGTH,
205                                SSL3_BUFFER_get_len(rbuf), 0,
206                                num_recs == 0 ? 1 : 0, &n);
207             if (rret <= 0)
208                 return rret;     /* error or non-blocking */
209             RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_BODY);
210
211             p = RECORD_LAYER_get_packet(&s->rlayer);
212             if (!PACKET_buf_init(&pkt, RECORD_LAYER_get_packet(&s->rlayer),
213                                  RECORD_LAYER_get_packet_length(&s->rlayer))) {
214                 al = SSL_AD_INTERNAL_ERROR;
215                 SSLerr(SSL_F_SSL3_GET_RECORD, ERR_R_INTERNAL_ERROR);
216                 goto f_err;
217             }
218             sslv2pkt = pkt;
219             if (!PACKET_get_net_2_len(&sslv2pkt, &sslv2len)
220                     || !PACKET_get_1(&sslv2pkt, &type)) {
221                 al = SSL_AD_DECODE_ERROR;
222                 SSLerr(SSL_F_SSL3_GET_RECORD, ERR_R_INTERNAL_ERROR);
223                 goto f_err;
224             }
225             /*
226              * The first record received by the server may be a V2ClientHello.
227              */
228             if (s->server && RECORD_LAYER_is_first_record(&s->rlayer)
229                     && (sslv2len & 0x8000) != 0
230                     && (type == SSL2_MT_CLIENT_HELLO)) {
231                 /*
232                  *  SSLv2 style record
233                  *
234                  * |num_recs| here will actually always be 0 because
235                  * |num_recs > 0| only ever occurs when we are processing
236                  * multiple app data records - which we know isn't the case here
237                  * because it is an SSLv2ClientHello. We keep it using
238                  * |num_recs| for the sake of consistency
239                  */
240                 thisrr->type = SSL3_RT_HANDSHAKE;
241                 thisrr->rec_version = SSL2_VERSION;
242
243                 thisrr->length = sslv2len & 0x7fff;
244
245                 if (thisrr->length > SSL3_BUFFER_get_len(rbuf)
246                     - SSL2_RT_HEADER_LENGTH) {
247                     al = SSL_AD_RECORD_OVERFLOW;
248                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_PACKET_LENGTH_TOO_LONG);
249                     goto f_err;
250                 }
251
252                 if (thisrr->length < MIN_SSL2_RECORD_LEN) {
253                     al = SSL_AD_DECODE_ERROR;
254                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_LENGTH_TOO_SHORT);
255                     goto f_err;
256                 }
257             } else {
258                 /* SSLv3+ style record */
259                 if (s->msg_callback)
260                     s->msg_callback(0, 0, SSL3_RT_HEADER, p, 5, s,
261                                     s->msg_callback_arg);
262
263                 /* Pull apart the header into the SSL3_RECORD */
264                 if (!PACKET_get_1(&pkt, &type)
265                         || !PACKET_get_net_2(&pkt, &version)
266                         || !PACKET_get_net_2_len(&pkt, &thisrr->length)) {
267                     al = SSL_AD_DECODE_ERROR;
268                     SSLerr(SSL_F_SSL3_GET_RECORD, ERR_R_INTERNAL_ERROR);
269                     goto f_err;
270                 }
271                 thisrr->type = type;
272                 thisrr->rec_version = version;
273
274                 /*
275                  * Lets check version. In TLSv1.3 we ignore this field. For the
276                  * ServerHello after an HRR we haven't actually selected TLSv1.3
277                  * yet, but we still treat it as TLSv1.3, so we must check for
278                  * that explicitly
279                  */
280                 if (!s->first_packet && !SSL_IS_TLS13(s)
281                         && !s->hello_retry_request
282                         && version != (unsigned int)s->version) {
283                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_WRONG_VERSION_NUMBER);
284                     if ((s->version & 0xFF00) == (version & 0xFF00)
285                         && !s->enc_write_ctx && !s->write_hash) {
286                         if (thisrr->type == SSL3_RT_ALERT) {
287                             /*
288                              * The record is using an incorrect version number,
289                              * but what we've got appears to be an alert. We
290                              * haven't read the body yet to check whether its a
291                              * fatal or not - but chances are it is. We probably
292                              * shouldn't send a fatal alert back. We'll just
293                              * end.
294                              */
295                             goto err;
296                         }
297                         /*
298                          * Send back error using their minor version number :-)
299                          */
300                         s->version = (unsigned short)version;
301                     }
302                     al = SSL_AD_PROTOCOL_VERSION;
303                     goto f_err;
304                 }
305
306                 if ((version >> 8) != SSL3_VERSION_MAJOR) {
307                     if (RECORD_LAYER_is_first_record(&s->rlayer)) {
308                         /* Go back to start of packet, look at the five bytes
309                          * that we have. */
310                         p = RECORD_LAYER_get_packet(&s->rlayer);
311                         if (strncmp((char *)p, "GET ", 4) == 0 ||
312                             strncmp((char *)p, "POST ", 5) == 0 ||
313                             strncmp((char *)p, "HEAD ", 5) == 0 ||
314                             strncmp((char *)p, "PUT ", 4) == 0) {
315                             SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_HTTP_REQUEST);
316                             goto err;
317                         } else if (strncmp((char *)p, "CONNE", 5) == 0) {
318                             SSLerr(SSL_F_SSL3_GET_RECORD,
319                                    SSL_R_HTTPS_PROXY_REQUEST);
320                             goto err;
321                         }
322
323                         /* Doesn't look like TLS - don't send an alert */
324                         SSLerr(SSL_F_SSL3_GET_RECORD,
325                                SSL_R_WRONG_VERSION_NUMBER);
326                         goto err;
327                     } else {
328                         SSLerr(SSL_F_SSL3_GET_RECORD,
329                                SSL_R_WRONG_VERSION_NUMBER);
330                         al = SSL_AD_PROTOCOL_VERSION;
331                         goto f_err;
332                     }
333                 }
334
335                 if (SSL_IS_TLS13(s) && s->enc_read_ctx != NULL
336                         && thisrr->type != SSL3_RT_APPLICATION_DATA) {
337                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_RECORD_TYPE);
338                     al = SSL_AD_UNEXPECTED_MESSAGE;
339                     goto f_err;
340                 }
341
342                 if (thisrr->length >
343                     SSL3_BUFFER_get_len(rbuf) - SSL3_RT_HEADER_LENGTH) {
344                     al = SSL_AD_RECORD_OVERFLOW;
345                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_PACKET_LENGTH_TOO_LONG);
346                     goto f_err;
347                 }
348             }
349
350             /* now s->rlayer.rstate == SSL_ST_READ_BODY */
351         }
352
353         if (SSL_IS_TLS13(s)) {
354             if (thisrr->length > SSL3_RT_MAX_TLS13_ENCRYPTED_LENGTH) {
355                 al = SSL_AD_RECORD_OVERFLOW;
356                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
357                 goto f_err;
358             }
359         } else {
360             size_t len = SSL3_RT_MAX_ENCRYPTED_LENGTH;
361
362 #ifndef OPENSSL_NO_COMP
363             /*
364              * If OPENSSL_NO_COMP is defined then SSL3_RT_MAX_ENCRYPTED_LENGTH
365              * does not include the compression overhead anyway.
366              */
367             if (s->expand == NULL)
368                 len -= SSL3_RT_MAX_COMPRESSED_OVERHEAD;
369 #endif
370
371             if (thisrr->length > len) {
372                 al = SSL_AD_RECORD_OVERFLOW;
373                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
374                 goto f_err;
375             }
376         }
377
378         /*
379          * s->rlayer.rstate == SSL_ST_READ_BODY, get and decode the data.
380          * Calculate how much more data we need to read for the rest of the
381          * record
382          */
383         if (thisrr->rec_version == SSL2_VERSION) {
384             more = thisrr->length + SSL2_RT_HEADER_LENGTH
385                 - SSL3_RT_HEADER_LENGTH;
386         } else {
387             more = thisrr->length;
388         }
389         if (more > 0) {
390             /* now s->packet_length == SSL3_RT_HEADER_LENGTH */
391
392             rret = ssl3_read_n(s, more, more, 1, 0, &n);
393             if (rret <= 0)
394                 return rret;     /* error or non-blocking io */
395         }
396
397         /* set state for later operations */
398         RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_HEADER);
399
400         /*
401          * At this point, s->packet_length == SSL3_RT_HEADER_LENGTH
402          * + thisrr->length, or s->packet_length == SSL2_RT_HEADER_LENGTH
403          * + thisrr->length and we have that many bytes in s->packet
404          */
405         if (thisrr->rec_version == SSL2_VERSION) {
406             thisrr->input =
407                 &(RECORD_LAYER_get_packet(&s->rlayer)[SSL2_RT_HEADER_LENGTH]);
408         } else {
409             thisrr->input =
410                 &(RECORD_LAYER_get_packet(&s->rlayer)[SSL3_RT_HEADER_LENGTH]);
411         }
412
413         /*
414          * ok, we can now read from 's->packet' data into 'thisrr' thisrr->input
415          * points at thisrr->length bytes, which need to be copied into
416          * thisrr->data by either the decryption or by the decompression When
417          * the data is 'copied' into the thisrr->data buffer, thisrr->input will
418          * be pointed at the new buffer
419          */
420
421         /*
422          * We now have - encrypted [ MAC [ compressed [ plain ] ] ]
423          * thisrr->length bytes of encrypted compressed stuff.
424          */
425
426         /* decrypt in place in 'thisrr->input' */
427         thisrr->data = thisrr->input;
428         thisrr->orig_len = thisrr->length;
429
430         /* Mark this record as not read by upper layers yet */
431         thisrr->read = 0;
432
433         num_recs++;
434
435         /* we have pulled in a full packet so zero things */
436         RECORD_LAYER_reset_packet_length(&s->rlayer);
437         RECORD_LAYER_clear_first_record(&s->rlayer);
438     } while (num_recs < max_recs
439              && thisrr->type == SSL3_RT_APPLICATION_DATA
440              && SSL_USE_EXPLICIT_IV(s)
441              && s->enc_read_ctx != NULL
442              && (EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(s->enc_read_ctx))
443                  & EVP_CIPH_FLAG_PIPELINE)
444              && ssl3_record_app_data_waiting(s));
445
446     /*
447      * If in encrypt-then-mac mode calculate mac from encrypted record. All
448      * the details below are public so no timing details can leak.
449      */
450     if (SSL_READ_ETM(s) && s->read_hash) {
451         unsigned char *mac;
452         /* TODO(size_t): convert this to do size_t properly */
453         imac_size = EVP_MD_CTX_size(s->read_hash);
454         if (!ossl_assert(imac_size >= 0 && imac_size <= EVP_MAX_MD_SIZE)) {
455                 al = SSL_AD_INTERNAL_ERROR;
456                 SSLerr(SSL_F_SSL3_GET_RECORD, ERR_LIB_EVP);
457                 goto f_err;
458         }
459         mac_size = (size_t)imac_size;
460         for (j = 0; j < num_recs; j++) {
461             thisrr = &rr[j];
462
463             if (thisrr->length < mac_size) {
464                 al = SSL_AD_DECODE_ERROR;
465                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_LENGTH_TOO_SHORT);
466                 goto f_err;
467             }
468             thisrr->length -= mac_size;
469             mac = thisrr->data + thisrr->length;
470             i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ );
471             if (i == 0 || CRYPTO_memcmp(md, mac, mac_size) != 0) {
472                 al = SSL_AD_BAD_RECORD_MAC;
473                 SSLerr(SSL_F_SSL3_GET_RECORD,
474                        SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
475                 goto f_err;
476             }
477         }
478     }
479
480     first_rec_len = rr[0].length;
481
482     enc_err = s->method->ssl3_enc->enc(s, rr, num_recs, 0);
483
484     /*-
485      * enc_err is:
486      *    0: (in non-constant time) if the record is publicly invalid.
487      *    1: if the padding is valid
488      *    -1: if the padding is invalid
489      */
490     if (enc_err == 0) {
491         if (num_recs == 1 && ossl_statem_skip_early_data(s)) {
492             /*
493              * Valid early_data that we cannot decrypt might fail here as
494              * publicly invalid. We treat it like an empty record.
495              */
496
497             thisrr = &rr[0];
498
499             if (!early_data_count_ok(s, thisrr->length,
500                                      EARLY_DATA_CIPHERTEXT_OVERHEAD, &al))
501                 goto f_err;
502
503             thisrr->length = 0;
504             thisrr->read = 1;
505             RECORD_LAYER_set_numrpipes(&s->rlayer, 1);
506             RECORD_LAYER_reset_read_sequence(&s->rlayer);
507             return 1;
508         }
509         al = SSL_AD_DECRYPTION_FAILED;
510         SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
511         goto f_err;
512     }
513 #ifdef SSL_DEBUG
514     printf("dec %"OSSLzu"\n", rr[0].length);
515     {
516         size_t z;
517         for (z = 0; z < rr[0].length; z++)
518             printf("%02X%c", rr[0].data[z], ((z + 1) % 16) ? ' ' : '\n');
519     }
520     printf("\n");
521 #endif
522
523     /* r->length is now the compressed data plus mac */
524     if ((sess != NULL) &&
525         (s->enc_read_ctx != NULL) &&
526         (!SSL_READ_ETM(s) && EVP_MD_CTX_md(s->read_hash) != NULL)) {
527         /* s->read_hash != NULL => mac_size != -1 */
528         unsigned char *mac = NULL;
529         unsigned char mac_tmp[EVP_MAX_MD_SIZE];
530
531         mac_size = EVP_MD_CTX_size(s->read_hash);
532         if (!ossl_assert(mac_size <= EVP_MAX_MD_SIZE)) {
533             al = SSL_AD_INTERNAL_ERROR;
534             SSLerr(SSL_F_SSL3_GET_RECORD, ERR_R_INTERNAL_ERROR);
535             goto f_err;
536         }
537
538         for (j = 0; j < num_recs; j++) {
539             thisrr = &rr[j];
540             /*
541              * orig_len is the length of the record before any padding was
542              * removed. This is public information, as is the MAC in use,
543              * therefore we can safely process the record in a different amount
544              * of time if it's too short to possibly contain a MAC.
545              */
546             if (thisrr->orig_len < mac_size ||
547                 /* CBC records must have a padding length byte too. */
548                 (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
549                  thisrr->orig_len < mac_size + 1)) {
550                 al = SSL_AD_DECODE_ERROR;
551                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_LENGTH_TOO_SHORT);
552                 goto f_err;
553             }
554
555             if (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE) {
556                 /*
557                  * We update the length so that the TLS header bytes can be
558                  * constructed correctly but we need to extract the MAC in
559                  * constant time from within the record, without leaking the
560                  * contents of the padding bytes.
561                  */
562                 mac = mac_tmp;
563                 if (!ssl3_cbc_copy_mac(mac_tmp, thisrr, mac_size)) {
564                     al = SSL_AD_INTERNAL_ERROR;
565                     SSLerr(SSL_F_SSL3_GET_RECORD, ERR_R_INTERNAL_ERROR);
566                     goto f_err;
567                 }
568                 thisrr->length -= mac_size;
569             } else {
570                 /*
571                  * In this case there's no padding, so |rec->orig_len| equals
572                  * |rec->length| and we checked that there's enough bytes for
573                  * |mac_size| above.
574                  */
575                 thisrr->length -= mac_size;
576                 mac = &thisrr->data[thisrr->length];
577             }
578
579             i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ );
580             if (i == 0 || mac == NULL
581                 || CRYPTO_memcmp(md, mac, (size_t)mac_size) != 0)
582                 enc_err = -1;
583             if (thisrr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + mac_size)
584                 enc_err = -1;
585         }
586     }
587
588     if (enc_err < 0) {
589         if (num_recs == 1 && ossl_statem_skip_early_data(s)) {
590             /*
591              * We assume this is unreadable early_data - we treat it like an
592              * empty record
593              */
594
595             /*
596              * The record length may have been modified by the mac check above
597              * so we use the previously saved value
598              */
599             if (!early_data_count_ok(s, first_rec_len,
600                                      EARLY_DATA_CIPHERTEXT_OVERHEAD, &al))
601                 goto f_err;
602
603             thisrr = &rr[0];
604             thisrr->length = 0;
605             thisrr->read = 1;
606             RECORD_LAYER_set_numrpipes(&s->rlayer, 1);
607             RECORD_LAYER_reset_read_sequence(&s->rlayer);
608             return 1;
609         }
610         /*
611          * A separate 'decryption_failed' alert was introduced with TLS 1.0,
612          * SSL 3.0 only has 'bad_record_mac'.  But unless a decryption
613          * failure is directly visible from the ciphertext anyway, we should
614          * not reveal which kind of error occurred -- this might become
615          * visible to an attacker (e.g. via a logfile)
616          */
617         al = SSL_AD_BAD_RECORD_MAC;
618         SSLerr(SSL_F_SSL3_GET_RECORD,
619                SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
620         goto f_err;
621     }
622
623     for (j = 0; j < num_recs; j++) {
624         thisrr = &rr[j];
625
626         /* thisrr->length is now just compressed */
627         if (s->expand != NULL) {
628             if (thisrr->length > SSL3_RT_MAX_COMPRESSED_LENGTH) {
629                 al = SSL_AD_RECORD_OVERFLOW;
630                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_COMPRESSED_LENGTH_TOO_LONG);
631                 goto f_err;
632             }
633             if (!ssl3_do_uncompress(s, thisrr)) {
634                 al = SSL_AD_DECOMPRESSION_FAILURE;
635                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_DECOMPRESSION);
636                 goto f_err;
637             }
638         }
639
640         if (SSL_IS_TLS13(s) && s->enc_read_ctx != NULL) {
641             size_t end;
642
643             if (thisrr->length == 0
644                     || thisrr->type != SSL3_RT_APPLICATION_DATA) {
645                 al = SSL_AD_UNEXPECTED_MESSAGE;
646                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_RECORD_TYPE);
647                 goto f_err;
648             }
649
650             /* Strip trailing padding */
651             for (end = thisrr->length - 1; end > 0 && thisrr->data[end] == 0;
652                  end--)
653                 continue;
654
655             thisrr->length = end;
656             thisrr->type = thisrr->data[end];
657             if (thisrr->type != SSL3_RT_APPLICATION_DATA
658                     && thisrr->type != SSL3_RT_ALERT
659                     && thisrr->type != SSL3_RT_HANDSHAKE) {
660                 al = SSL_AD_UNEXPECTED_MESSAGE;
661                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_RECORD_TYPE);
662                 goto f_err;
663             }
664             if (s->msg_callback)
665                 s->msg_callback(0, s->version, SSL3_RT_INNER_CONTENT_TYPE,
666                                 &thisrr->data[end], 1, s, s->msg_callback_arg);
667         }
668
669         /*
670          * TLSv1.3 alert and handshake records are required to be non-zero in
671          * length.
672          */
673         if (SSL_IS_TLS13(s)
674                 && (thisrr->type == SSL3_RT_HANDSHAKE
675                     || thisrr->type == SSL3_RT_ALERT)
676                 && thisrr->length == 0) {
677             al = SSL_AD_UNEXPECTED_MESSAGE;
678             SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_LENGTH);
679             goto f_err;
680         }
681
682         if (thisrr->length > SSL3_RT_MAX_PLAIN_LENGTH) {
683             al = SSL_AD_RECORD_OVERFLOW;
684             SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_DATA_LENGTH_TOO_LONG);
685             goto f_err;
686         }
687
688         thisrr->off = 0;
689         /*-
690          * So at this point the following is true
691          * thisrr->type   is the type of record
692          * thisrr->length == number of bytes in record
693          * thisrr->off    == offset to first valid byte
694          * thisrr->data   == where to take bytes from, increment after use :-).
695          */
696
697         /* just read a 0 length packet */
698         if (thisrr->length == 0) {
699             RECORD_LAYER_inc_empty_record_count(&s->rlayer);
700             if (RECORD_LAYER_get_empty_record_count(&s->rlayer)
701                 > MAX_EMPTY_RECORDS) {
702                 al = SSL_AD_UNEXPECTED_MESSAGE;
703                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_RECORD_TOO_SMALL);
704                 goto f_err;
705             }
706         } else {
707             RECORD_LAYER_reset_empty_record_count(&s->rlayer);
708         }
709     }
710
711     if (s->early_data_state == SSL_EARLY_DATA_READING) {
712         thisrr = &rr[0];
713         if (thisrr->type == SSL3_RT_APPLICATION_DATA
714                 && !early_data_count_ok(s, thisrr->length, 0, &al))
715             goto f_err;
716     }
717
718     RECORD_LAYER_set_numrpipes(&s->rlayer, num_recs);
719     return 1;
720
721  f_err:
722     ssl3_send_alert(s, SSL3_AL_FATAL, al);
723  err:
724     return ret;
725 }
726
727 int ssl3_do_uncompress(SSL *ssl, SSL3_RECORD *rr)
728 {
729 #ifndef OPENSSL_NO_COMP
730     int i;
731
732     if (rr->comp == NULL) {
733         rr->comp = (unsigned char *)
734             OPENSSL_malloc(SSL3_RT_MAX_ENCRYPTED_LENGTH);
735     }
736     if (rr->comp == NULL)
737         return 0;
738
739     /* TODO(size_t): Convert this call */
740     i = COMP_expand_block(ssl->expand, rr->comp,
741                           SSL3_RT_MAX_PLAIN_LENGTH, rr->data, (int)rr->length);
742     if (i < 0)
743         return 0;
744     else
745         rr->length = i;
746     rr->data = rr->comp;
747 #endif
748     return 1;
749 }
750
751 int ssl3_do_compress(SSL *ssl, SSL3_RECORD *wr)
752 {
753 #ifndef OPENSSL_NO_COMP
754     int i;
755
756     /* TODO(size_t): Convert this call */
757     i = COMP_compress_block(ssl->compress, wr->data,
758                             (int)(wr->length + SSL3_RT_MAX_COMPRESSED_OVERHEAD),
759                             wr->input, (int)wr->length);
760     if (i < 0)
761         return 0;
762     else
763         wr->length = i;
764
765     wr->input = wr->data;
766 #endif
767     return 1;
768 }
769
770 /*-
771  * ssl3_enc encrypts/decrypts |n_recs| records in |inrecs|
772  *
773  * Returns:
774  *   0: (in non-constant time) if the record is publically invalid (i.e. too
775  *       short etc).
776  *   1: if the record's padding is valid / the encryption was successful.
777  *   -1: if the record's padding is invalid or, if sending, an internal error
778  *       occurred.
779  */
780 int ssl3_enc(SSL *s, SSL3_RECORD *inrecs, size_t n_recs, int sending)
781 {
782     SSL3_RECORD *rec;
783     EVP_CIPHER_CTX *ds;
784     size_t l, i;
785     size_t bs, mac_size = 0;
786     int imac_size;
787     const EVP_CIPHER *enc;
788
789     rec = inrecs;
790     /*
791      * We shouldn't ever be called with more than one record in the SSLv3 case
792      */
793     if (n_recs != 1)
794         return 0;
795     if (sending) {
796         ds = s->enc_write_ctx;
797         if (s->enc_write_ctx == NULL)
798             enc = NULL;
799         else
800             enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
801     } else {
802         ds = s->enc_read_ctx;
803         if (s->enc_read_ctx == NULL)
804             enc = NULL;
805         else
806             enc = EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
807     }
808
809     if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
810         memmove(rec->data, rec->input, rec->length);
811         rec->input = rec->data;
812     } else {
813         l = rec->length;
814         /* TODO(size_t): Convert this call */
815         bs = EVP_CIPHER_CTX_block_size(ds);
816
817         /* COMPRESS */
818
819         if ((bs != 1) && sending) {
820             i = bs - (l % bs);
821
822             /* we need to add 'i-1' padding bytes */
823             l += i;
824             /*
825              * the last of these zero bytes will be overwritten with the
826              * padding length.
827              */
828             memset(&rec->input[rec->length], 0, i);
829             rec->length += i;
830             rec->input[l - 1] = (unsigned char)(i - 1);
831         }
832
833         if (!sending) {
834             if (l == 0 || l % bs != 0)
835                 return 0;
836             /* otherwise, rec->length >= bs */
837         }
838
839         /* TODO(size_t): Convert this call */
840         if (EVP_Cipher(ds, rec->data, rec->input, (unsigned int)l) < 1)
841             return -1;
842
843         if (EVP_MD_CTX_md(s->read_hash) != NULL) {
844             /* TODO(size_t): convert me */
845             imac_size = EVP_MD_CTX_size(s->read_hash);
846             if (imac_size < 0)
847                 return -1;
848             mac_size = (size_t)imac_size;
849         }
850         if ((bs != 1) && !sending)
851             return ssl3_cbc_remove_padding(rec, bs, mac_size);
852     }
853     return 1;
854 }
855
856 #define MAX_PADDING 256
857 /*-
858  * tls1_enc encrypts/decrypts |n_recs| in |recs|.
859  *
860  * Returns:
861  *   0: (in non-constant time) if the record is publically invalid (i.e. too
862  *       short etc).
863  *   1: if the record's padding is valid / the encryption was successful.
864  *   -1: if the record's padding/AEAD-authenticator is invalid or, if sending,
865  *       an internal error occurred.
866  */
867 int tls1_enc(SSL *s, SSL3_RECORD *recs, size_t n_recs, int sending)
868 {
869     EVP_CIPHER_CTX *ds;
870     size_t reclen[SSL_MAX_PIPELINES];
871     unsigned char buf[SSL_MAX_PIPELINES][EVP_AEAD_TLS1_AAD_LEN];
872     int i, pad = 0, ret, tmpr;
873     size_t bs, mac_size = 0, ctr, padnum, loop;
874     unsigned char padval;
875     int imac_size;
876     const EVP_CIPHER *enc;
877
878     if (n_recs == 0)
879         return 0;
880
881     if (sending) {
882         if (EVP_MD_CTX_md(s->write_hash)) {
883             int n = EVP_MD_CTX_size(s->write_hash);
884             if (!ossl_assert(n >= 0)) {
885                 SSLerr(SSL_F_TLS1_ENC, ERR_R_INTERNAL_ERROR);
886                 return -1;
887             }
888         }
889         ds = s->enc_write_ctx;
890         if (s->enc_write_ctx == NULL)
891             enc = NULL;
892         else {
893             int ivlen;
894             enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
895             /* For TLSv1.1 and later explicit IV */
896             if (SSL_USE_EXPLICIT_IV(s)
897                 && EVP_CIPHER_mode(enc) == EVP_CIPH_CBC_MODE)
898                 ivlen = EVP_CIPHER_iv_length(enc);
899             else
900                 ivlen = 0;
901             if (ivlen > 1) {
902                 for (ctr = 0; ctr < n_recs; ctr++) {
903                     if (recs[ctr].data != recs[ctr].input) {
904                         /*
905                          * we can't write into the input stream: Can this ever
906                          * happen?? (steve)
907                          */
908                         SSLerr(SSL_F_TLS1_ENC, ERR_R_INTERNAL_ERROR);
909                         return -1;
910                     } else if (ssl_randbytes(s, recs[ctr].input, ivlen) <= 0) {
911                         SSLerr(SSL_F_TLS1_ENC, ERR_R_INTERNAL_ERROR);
912                         return -1;
913                     }
914                 }
915             }
916         }
917     } else {
918         if (EVP_MD_CTX_md(s->read_hash)) {
919             int n = EVP_MD_CTX_size(s->read_hash);
920             if (!ossl_assert(n >= 0)) {
921                 SSLerr(SSL_F_TLS1_ENC, ERR_R_INTERNAL_ERROR);
922                 return -1;
923             }
924         }
925         ds = s->enc_read_ctx;
926         if (s->enc_read_ctx == NULL)
927             enc = NULL;
928         else
929             enc = EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
930     }
931
932     if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
933         for (ctr = 0; ctr < n_recs; ctr++) {
934             memmove(recs[ctr].data, recs[ctr].input, recs[ctr].length);
935             recs[ctr].input = recs[ctr].data;
936         }
937         ret = 1;
938     } else {
939         bs = EVP_CIPHER_block_size(EVP_CIPHER_CTX_cipher(ds));
940
941         if (n_recs > 1) {
942             if (!(EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(ds))
943                   & EVP_CIPH_FLAG_PIPELINE)) {
944                 /*
945                  * We shouldn't have been called with pipeline data if the
946                  * cipher doesn't support pipelining
947                  */
948                 SSLerr(SSL_F_TLS1_ENC, SSL_R_PIPELINE_FAILURE);
949                 return -1;
950             }
951         }
952         for (ctr = 0; ctr < n_recs; ctr++) {
953             reclen[ctr] = recs[ctr].length;
954
955             if (EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(ds))
956                 & EVP_CIPH_FLAG_AEAD_CIPHER) {
957                 unsigned char *seq;
958
959                 seq = sending ? RECORD_LAYER_get_write_sequence(&s->rlayer)
960                     : RECORD_LAYER_get_read_sequence(&s->rlayer);
961
962                 if (SSL_IS_DTLS(s)) {
963                     /* DTLS does not support pipelining */
964                     unsigned char dtlsseq[9], *p = dtlsseq;
965
966                     s2n(sending ? DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer) :
967                         DTLS_RECORD_LAYER_get_r_epoch(&s->rlayer), p);
968                     memcpy(p, &seq[2], 6);
969                     memcpy(buf[ctr], dtlsseq, 8);
970                 } else {
971                     memcpy(buf[ctr], seq, 8);
972                     for (i = 7; i >= 0; i--) { /* increment */
973                         ++seq[i];
974                         if (seq[i] != 0)
975                             break;
976                     }
977                 }
978
979                 buf[ctr][8] = recs[ctr].type;
980                 buf[ctr][9] = (unsigned char)(s->version >> 8);
981                 buf[ctr][10] = (unsigned char)(s->version);
982                 buf[ctr][11] = (unsigned char)(recs[ctr].length >> 8);
983                 buf[ctr][12] = (unsigned char)(recs[ctr].length & 0xff);
984                 pad = EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_AEAD_TLS1_AAD,
985                                           EVP_AEAD_TLS1_AAD_LEN, buf[ctr]);
986                 if (pad <= 0)
987                     return -1;
988
989                 if (sending) {
990                     reclen[ctr] += pad;
991                     recs[ctr].length += pad;
992                 }
993
994             } else if ((bs != 1) && sending) {
995                 padnum = bs - (reclen[ctr] % bs);
996
997                 /* Add weird padding of upto 256 bytes */
998
999                 if (padnum > MAX_PADDING)
1000                     return -1;
1001                 /* we need to add 'padnum' padding bytes of value padval */
1002                 padval = (unsigned char)(padnum - 1);
1003                 for (loop = reclen[ctr]; loop < reclen[ctr] + padnum; loop++)
1004                     recs[ctr].input[loop] = padval;
1005                 reclen[ctr] += padnum;
1006                 recs[ctr].length += padnum;
1007             }
1008
1009             if (!sending) {
1010                 if (reclen[ctr] == 0 || reclen[ctr] % bs != 0)
1011                     return 0;
1012             }
1013         }
1014         if (n_recs > 1) {
1015             unsigned char *data[SSL_MAX_PIPELINES];
1016
1017             /* Set the output buffers */
1018             for (ctr = 0; ctr < n_recs; ctr++) {
1019                 data[ctr] = recs[ctr].data;
1020             }
1021             if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS,
1022                                     (int)n_recs, data) <= 0) {
1023                 SSLerr(SSL_F_TLS1_ENC, SSL_R_PIPELINE_FAILURE);
1024             }
1025             /* Set the input buffers */
1026             for (ctr = 0; ctr < n_recs; ctr++) {
1027                 data[ctr] = recs[ctr].input;
1028             }
1029             if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_INPUT_BUFS,
1030                                     (int)n_recs, data) <= 0
1031                 || EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_INPUT_LENS,
1032                                        (int)n_recs, reclen) <= 0) {
1033                 SSLerr(SSL_F_TLS1_ENC, SSL_R_PIPELINE_FAILURE);
1034                 return -1;
1035             }
1036         }
1037
1038         /* TODO(size_t): Convert this call */
1039         tmpr = EVP_Cipher(ds, recs[0].data, recs[0].input,
1040                           (unsigned int)reclen[0]);
1041         if ((EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(ds))
1042              & EVP_CIPH_FLAG_CUSTOM_CIPHER)
1043             ? (tmpr < 0)
1044             : (tmpr == 0))
1045             return -1;          /* AEAD can fail to verify MAC */
1046         if (sending == 0) {
1047             if (EVP_CIPHER_mode(enc) == EVP_CIPH_GCM_MODE) {
1048                 for (ctr = 0; ctr < n_recs; ctr++) {
1049                     recs[ctr].data += EVP_GCM_TLS_EXPLICIT_IV_LEN;
1050                     recs[ctr].input += EVP_GCM_TLS_EXPLICIT_IV_LEN;
1051                     recs[ctr].length -= EVP_GCM_TLS_EXPLICIT_IV_LEN;
1052                 }
1053             } else if (EVP_CIPHER_mode(enc) == EVP_CIPH_CCM_MODE) {
1054                 for (ctr = 0; ctr < n_recs; ctr++) {
1055                     recs[ctr].data += EVP_CCM_TLS_EXPLICIT_IV_LEN;
1056                     recs[ctr].input += EVP_CCM_TLS_EXPLICIT_IV_LEN;
1057                     recs[ctr].length -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
1058                 }
1059             }
1060         }
1061
1062         ret = 1;
1063         if (!SSL_READ_ETM(s) && EVP_MD_CTX_md(s->read_hash) != NULL) {
1064             imac_size = EVP_MD_CTX_size(s->read_hash);
1065             if (imac_size < 0)
1066                 return -1;
1067             mac_size = (size_t)imac_size;
1068         }
1069         if ((bs != 1) && !sending) {
1070             int tmpret;
1071             for (ctr = 0; ctr < n_recs; ctr++) {
1072                 tmpret = tls1_cbc_remove_padding(s, &recs[ctr], bs, mac_size);
1073                 /*
1074                  * If tmpret == 0 then this means publicly invalid so we can
1075                  * short circuit things here. Otherwise we must respect constant
1076                  * time behaviour.
1077                  */
1078                 if (tmpret == 0)
1079                     return 0;
1080                 ret = constant_time_select_int(constant_time_eq_int(tmpret, 1),
1081                                                ret, -1);
1082             }
1083         }
1084         if (pad && !sending) {
1085             for (ctr = 0; ctr < n_recs; ctr++) {
1086                 recs[ctr].length -= pad;
1087             }
1088         }
1089     }
1090     return ret;
1091 }
1092
1093 int n_ssl3_mac(SSL *ssl, SSL3_RECORD *rec, unsigned char *md, int sending)
1094 {
1095     unsigned char *mac_sec, *seq;
1096     const EVP_MD_CTX *hash;
1097     unsigned char *p, rec_char;
1098     size_t md_size;
1099     size_t npad;
1100     int t;
1101
1102     if (sending) {
1103         mac_sec = &(ssl->s3->write_mac_secret[0]);
1104         seq = RECORD_LAYER_get_write_sequence(&ssl->rlayer);
1105         hash = ssl->write_hash;
1106     } else {
1107         mac_sec = &(ssl->s3->read_mac_secret[0]);
1108         seq = RECORD_LAYER_get_read_sequence(&ssl->rlayer);
1109         hash = ssl->read_hash;
1110     }
1111
1112     t = EVP_MD_CTX_size(hash);
1113     if (t < 0)
1114         return 0;
1115     md_size = t;
1116     npad = (48 / md_size) * md_size;
1117
1118     if (!sending &&
1119         EVP_CIPHER_CTX_mode(ssl->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
1120         ssl3_cbc_record_digest_supported(hash)) {
1121         /*
1122          * This is a CBC-encrypted record. We must avoid leaking any
1123          * timing-side channel information about how many blocks of data we
1124          * are hashing because that gives an attacker a timing-oracle.
1125          */
1126
1127         /*-
1128          * npad is, at most, 48 bytes and that's with MD5:
1129          *   16 + 48 + 8 (sequence bytes) + 1 + 2 = 75.
1130          *
1131          * With SHA-1 (the largest hash speced for SSLv3) the hash size
1132          * goes up 4, but npad goes down by 8, resulting in a smaller
1133          * total size.
1134          */
1135         unsigned char header[75];
1136         size_t j = 0;
1137         memcpy(header + j, mac_sec, md_size);
1138         j += md_size;
1139         memcpy(header + j, ssl3_pad_1, npad);
1140         j += npad;
1141         memcpy(header + j, seq, 8);
1142         j += 8;
1143         header[j++] = rec->type;
1144         header[j++] = (unsigned char)(rec->length >> 8);
1145         header[j++] = (unsigned char)(rec->length & 0xff);
1146
1147         /* Final param == is SSLv3 */
1148         if (ssl3_cbc_digest_record(hash,
1149                                    md, &md_size,
1150                                    header, rec->input,
1151                                    rec->length + md_size, rec->orig_len,
1152                                    mac_sec, md_size, 1) <= 0)
1153             return 0;
1154     } else {
1155         unsigned int md_size_u;
1156         /* Chop the digest off the end :-) */
1157         EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
1158
1159         if (md_ctx == NULL)
1160             return 0;
1161
1162         rec_char = rec->type;
1163         p = md;
1164         s2n(rec->length, p);
1165         if (EVP_MD_CTX_copy_ex(md_ctx, hash) <= 0
1166             || EVP_DigestUpdate(md_ctx, mac_sec, md_size) <= 0
1167             || EVP_DigestUpdate(md_ctx, ssl3_pad_1, npad) <= 0
1168             || EVP_DigestUpdate(md_ctx, seq, 8) <= 0
1169             || EVP_DigestUpdate(md_ctx, &rec_char, 1) <= 0
1170             || EVP_DigestUpdate(md_ctx, md, 2) <= 0
1171             || EVP_DigestUpdate(md_ctx, rec->input, rec->length) <= 0
1172             || EVP_DigestFinal_ex(md_ctx, md, NULL) <= 0
1173             || EVP_MD_CTX_copy_ex(md_ctx, hash) <= 0
1174             || EVP_DigestUpdate(md_ctx, mac_sec, md_size) <= 0
1175             || EVP_DigestUpdate(md_ctx, ssl3_pad_2, npad) <= 0
1176             || EVP_DigestUpdate(md_ctx, md, md_size) <= 0
1177             || EVP_DigestFinal_ex(md_ctx, md, &md_size_u) <= 0) {
1178             EVP_MD_CTX_reset(md_ctx);
1179             return 0;
1180         }
1181
1182         EVP_MD_CTX_free(md_ctx);
1183     }
1184
1185     ssl3_record_sequence_update(seq);
1186     return 1;
1187 }
1188
1189 int tls1_mac(SSL *ssl, SSL3_RECORD *rec, unsigned char *md, int sending)
1190 {
1191     unsigned char *seq;
1192     EVP_MD_CTX *hash;
1193     size_t md_size;
1194     int i;
1195     EVP_MD_CTX *hmac = NULL, *mac_ctx;
1196     unsigned char header[13];
1197     int stream_mac = (sending ? (ssl->mac_flags & SSL_MAC_FLAG_WRITE_MAC_STREAM)
1198                       : (ssl->mac_flags & SSL_MAC_FLAG_READ_MAC_STREAM));
1199     int t;
1200
1201     if (sending) {
1202         seq = RECORD_LAYER_get_write_sequence(&ssl->rlayer);
1203         hash = ssl->write_hash;
1204     } else {
1205         seq = RECORD_LAYER_get_read_sequence(&ssl->rlayer);
1206         hash = ssl->read_hash;
1207     }
1208
1209     t = EVP_MD_CTX_size(hash);
1210     if (!ossl_assert(t >= 0))
1211         return 0;
1212     md_size = t;
1213
1214     /* I should fix this up TLS TLS TLS TLS TLS XXXXXXXX */
1215     if (stream_mac) {
1216         mac_ctx = hash;
1217     } else {
1218         hmac = EVP_MD_CTX_new();
1219         if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash))
1220             return 0;
1221         mac_ctx = hmac;
1222     }
1223
1224     if (SSL_IS_DTLS(ssl)) {
1225         unsigned char dtlsseq[8], *p = dtlsseq;
1226
1227         s2n(sending ? DTLS_RECORD_LAYER_get_w_epoch(&ssl->rlayer) :
1228             DTLS_RECORD_LAYER_get_r_epoch(&ssl->rlayer), p);
1229         memcpy(p, &seq[2], 6);
1230
1231         memcpy(header, dtlsseq, 8);
1232     } else
1233         memcpy(header, seq, 8);
1234
1235     header[8] = rec->type;
1236     header[9] = (unsigned char)(ssl->version >> 8);
1237     header[10] = (unsigned char)(ssl->version);
1238     header[11] = (unsigned char)(rec->length >> 8);
1239     header[12] = (unsigned char)(rec->length & 0xff);
1240
1241     if (!sending && !SSL_READ_ETM(ssl) &&
1242         EVP_CIPHER_CTX_mode(ssl->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
1243         ssl3_cbc_record_digest_supported(mac_ctx)) {
1244         /*
1245          * This is a CBC-encrypted record. We must avoid leaking any
1246          * timing-side channel information about how many blocks of data we
1247          * are hashing because that gives an attacker a timing-oracle.
1248          */
1249         /* Final param == not SSLv3 */
1250         if (ssl3_cbc_digest_record(mac_ctx,
1251                                    md, &md_size,
1252                                    header, rec->input,
1253                                    rec->length + md_size, rec->orig_len,
1254                                    ssl->s3->read_mac_secret,
1255                                    ssl->s3->read_mac_secret_size, 0) <= 0) {
1256             EVP_MD_CTX_free(hmac);
1257             return 0;
1258         }
1259     } else {
1260         /* TODO(size_t): Convert these calls */
1261         if (EVP_DigestSignUpdate(mac_ctx, header, sizeof(header)) <= 0
1262             || EVP_DigestSignUpdate(mac_ctx, rec->input, rec->length) <= 0
1263             || EVP_DigestSignFinal(mac_ctx, md, &md_size) <= 0) {
1264             EVP_MD_CTX_free(hmac);
1265             return 0;
1266         }
1267     }
1268
1269     EVP_MD_CTX_free(hmac);
1270
1271 #ifdef SSL_DEBUG
1272     fprintf(stderr, "seq=");
1273     {
1274         int z;
1275         for (z = 0; z < 8; z++)
1276             fprintf(stderr, "%02X ", seq[z]);
1277         fprintf(stderr, "\n");
1278     }
1279     fprintf(stderr, "rec=");
1280     {
1281         size_t z;
1282         for (z = 0; z < rec->length; z++)
1283             fprintf(stderr, "%02X ", rec->data[z]);
1284         fprintf(stderr, "\n");
1285     }
1286 #endif
1287
1288     if (!SSL_IS_DTLS(ssl)) {
1289         for (i = 7; i >= 0; i--) {
1290             ++seq[i];
1291             if (seq[i] != 0)
1292                 break;
1293         }
1294     }
1295 #ifdef SSL_DEBUG
1296     {
1297         unsigned int z;
1298         for (z = 0; z < md_size; z++)
1299             fprintf(stderr, "%02X ", md[z]);
1300         fprintf(stderr, "\n");
1301     }
1302 #endif
1303     return 1;
1304 }
1305
1306 /*-
1307  * ssl3_cbc_remove_padding removes padding from the decrypted, SSLv3, CBC
1308  * record in |rec| by updating |rec->length| in constant time.
1309  *
1310  * block_size: the block size of the cipher used to encrypt the record.
1311  * returns:
1312  *   0: (in non-constant time) if the record is publicly invalid.
1313  *   1: if the padding was valid
1314  *  -1: otherwise.
1315  */
1316 int ssl3_cbc_remove_padding(SSL3_RECORD *rec,
1317                             size_t block_size, size_t mac_size)
1318 {
1319     size_t padding_length;
1320     size_t good;
1321     const size_t overhead = 1 /* padding length byte */  + mac_size;
1322
1323     /*
1324      * These lengths are all public so we can test them in non-constant time.
1325      */
1326     if (overhead > rec->length)
1327         return 0;
1328
1329     padding_length = rec->data[rec->length - 1];
1330     good = constant_time_ge_s(rec->length, padding_length + overhead);
1331     /* SSLv3 requires that the padding is minimal. */
1332     good &= constant_time_ge_s(block_size, padding_length + 1);
1333     rec->length -= good & (padding_length + 1);
1334     return constant_time_select_int_s(good, 1, -1);
1335 }
1336
1337 /*-
1338  * tls1_cbc_remove_padding removes the CBC padding from the decrypted, TLS, CBC
1339  * record in |rec| in constant time and returns 1 if the padding is valid and
1340  * -1 otherwise. It also removes any explicit IV from the start of the record
1341  * without leaking any timing about whether there was enough space after the
1342  * padding was removed.
1343  *
1344  * block_size: the block size of the cipher used to encrypt the record.
1345  * returns:
1346  *   0: (in non-constant time) if the record is publicly invalid.
1347  *   1: if the padding was valid
1348  *  -1: otherwise.
1349  */
1350 int tls1_cbc_remove_padding(const SSL *s,
1351                             SSL3_RECORD *rec,
1352                             size_t block_size, size_t mac_size)
1353 {
1354     size_t good;
1355     size_t padding_length, to_check, i;
1356     const size_t overhead = 1 /* padding length byte */  + mac_size;
1357     /* Check if version requires explicit IV */
1358     if (SSL_USE_EXPLICIT_IV(s)) {
1359         /*
1360          * These lengths are all public so we can test them in non-constant
1361          * time.
1362          */
1363         if (overhead + block_size > rec->length)
1364             return 0;
1365         /* We can now safely skip explicit IV */
1366         rec->data += block_size;
1367         rec->input += block_size;
1368         rec->length -= block_size;
1369         rec->orig_len -= block_size;
1370     } else if (overhead > rec->length)
1371         return 0;
1372
1373     padding_length = rec->data[rec->length - 1];
1374
1375     if (EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(s->enc_read_ctx)) &
1376         EVP_CIPH_FLAG_AEAD_CIPHER) {
1377         /* padding is already verified */
1378         rec->length -= padding_length + 1;
1379         return 1;
1380     }
1381
1382     good = constant_time_ge_s(rec->length, overhead + padding_length);
1383     /*
1384      * The padding consists of a length byte at the end of the record and
1385      * then that many bytes of padding, all with the same value as the length
1386      * byte. Thus, with the length byte included, there are i+1 bytes of
1387      * padding. We can't check just |padding_length+1| bytes because that
1388      * leaks decrypted information. Therefore we always have to check the
1389      * maximum amount of padding possible. (Again, the length of the record
1390      * is public information so we can use it.)
1391      */
1392     to_check = 256;            /* maximum amount of padding, inc length byte. */
1393     if (to_check > rec->length)
1394         to_check = rec->length;
1395
1396     for (i = 0; i < to_check; i++) {
1397         unsigned char mask = constant_time_ge_8_s(padding_length, i);
1398         unsigned char b = rec->data[rec->length - 1 - i];
1399         /*
1400          * The final |padding_length+1| bytes should all have the value
1401          * |padding_length|. Therefore the XOR should be zero.
1402          */
1403         good &= ~(mask & (padding_length ^ b));
1404     }
1405
1406     /*
1407      * If any of the final |padding_length+1| bytes had the wrong value, one
1408      * or more of the lower eight bits of |good| will be cleared.
1409      */
1410     good = constant_time_eq_s(0xff, good & 0xff);
1411     rec->length -= good & (padding_length + 1);
1412
1413     return constant_time_select_int_s(good, 1, -1);
1414 }
1415
1416 /*-
1417  * ssl3_cbc_copy_mac copies |md_size| bytes from the end of |rec| to |out| in
1418  * constant time (independent of the concrete value of rec->length, which may
1419  * vary within a 256-byte window).
1420  *
1421  * ssl3_cbc_remove_padding or tls1_cbc_remove_padding must be called prior to
1422  * this function.
1423  *
1424  * On entry:
1425  *   rec->orig_len >= md_size
1426  *   md_size <= EVP_MAX_MD_SIZE
1427  *
1428  * If CBC_MAC_ROTATE_IN_PLACE is defined then the rotation is performed with
1429  * variable accesses in a 64-byte-aligned buffer. Assuming that this fits into
1430  * a single or pair of cache-lines, then the variable memory accesses don't
1431  * actually affect the timing. CPUs with smaller cache-lines [if any] are
1432  * not multi-core and are not considered vulnerable to cache-timing attacks.
1433  */
1434 #define CBC_MAC_ROTATE_IN_PLACE
1435
1436 int ssl3_cbc_copy_mac(unsigned char *out,
1437                        const SSL3_RECORD *rec, size_t md_size)
1438 {
1439 #if defined(CBC_MAC_ROTATE_IN_PLACE)
1440     unsigned char rotated_mac_buf[64 + EVP_MAX_MD_SIZE];
1441     unsigned char *rotated_mac;
1442 #else
1443     unsigned char rotated_mac[EVP_MAX_MD_SIZE];
1444 #endif
1445
1446     /*
1447      * mac_end is the index of |rec->data| just after the end of the MAC.
1448      */
1449     size_t mac_end = rec->length;
1450     size_t mac_start = mac_end - md_size;
1451     size_t in_mac;
1452     /*
1453      * scan_start contains the number of bytes that we can ignore because the
1454      * MAC's position can only vary by 255 bytes.
1455      */
1456     size_t scan_start = 0;
1457     size_t i, j;
1458     size_t rotate_offset;
1459
1460     if (!ossl_assert(rec->orig_len >= md_size
1461                      && md_size <= EVP_MAX_MD_SIZE))
1462         return 0;
1463
1464 #if defined(CBC_MAC_ROTATE_IN_PLACE)
1465     rotated_mac = rotated_mac_buf + ((0 - (size_t)rotated_mac_buf) & 63);
1466 #endif
1467
1468     /* This information is public so it's safe to branch based on it. */
1469     if (rec->orig_len > md_size + 255 + 1)
1470         scan_start = rec->orig_len - (md_size + 255 + 1);
1471
1472     in_mac = 0;
1473     rotate_offset = 0;
1474     memset(rotated_mac, 0, md_size);
1475     for (i = scan_start, j = 0; i < rec->orig_len; i++) {
1476         size_t mac_started = constant_time_eq_s(i, mac_start);
1477         size_t mac_ended = constant_time_lt_s(i, mac_end);
1478         unsigned char b = rec->data[i];
1479
1480         in_mac |= mac_started;
1481         in_mac &= mac_ended;
1482         rotate_offset |= j & mac_started;
1483         rotated_mac[j++] |= b & in_mac;
1484         j &= constant_time_lt_s(j, md_size);
1485     }
1486
1487     /* Now rotate the MAC */
1488 #if defined(CBC_MAC_ROTATE_IN_PLACE)
1489     j = 0;
1490     for (i = 0; i < md_size; i++) {
1491         /* in case cache-line is 32 bytes, touch second line */
1492         ((volatile unsigned char *)rotated_mac)[rotate_offset ^ 32];
1493         out[j++] = rotated_mac[rotate_offset++];
1494         rotate_offset &= constant_time_lt_s(rotate_offset, md_size);
1495     }
1496 #else
1497     memset(out, 0, md_size);
1498     rotate_offset = md_size - rotate_offset;
1499     rotate_offset &= constant_time_lt_s(rotate_offset, md_size);
1500     for (i = 0; i < md_size; i++) {
1501         for (j = 0; j < md_size; j++)
1502             out[j] |= rotated_mac[i] & constant_time_eq_8_s(j, rotate_offset);
1503         rotate_offset++;
1504         rotate_offset &= constant_time_lt_s(rotate_offset, md_size);
1505     }
1506 #endif
1507
1508     return 1;
1509 }
1510
1511 int dtls1_process_record(SSL *s, DTLS1_BITMAP *bitmap)
1512 {
1513     int i, al;
1514     int enc_err;
1515     SSL_SESSION *sess;
1516     SSL3_RECORD *rr;
1517     int imac_size;
1518     size_t mac_size;
1519     unsigned char md[EVP_MAX_MD_SIZE];
1520
1521     rr = RECORD_LAYER_get_rrec(&s->rlayer);
1522     sess = s->session;
1523
1524     /*
1525      * At this point, s->packet_length == SSL3_RT_HEADER_LNGTH + rr->length,
1526      * and we have that many bytes in s->packet
1527      */
1528     rr->input = &(RECORD_LAYER_get_packet(&s->rlayer)[DTLS1_RT_HEADER_LENGTH]);
1529
1530     /*
1531      * ok, we can now read from 's->packet' data into 'rr' rr->input points
1532      * at rr->length bytes, which need to be copied into rr->data by either
1533      * the decryption or by the decompression When the data is 'copied' into
1534      * the rr->data buffer, rr->input will be pointed at the new buffer
1535      */
1536
1537     /*
1538      * We now have - encrypted [ MAC [ compressed [ plain ] ] ] rr->length
1539      * bytes of encrypted compressed stuff.
1540      */
1541
1542     /* check is not needed I believe */
1543     if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
1544         al = SSL_AD_RECORD_OVERFLOW;
1545         SSLerr(SSL_F_DTLS1_PROCESS_RECORD, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
1546         goto f_err;
1547     }
1548
1549     /* decrypt in place in 'rr->input' */
1550     rr->data = rr->input;
1551     rr->orig_len = rr->length;
1552
1553     if (SSL_READ_ETM(s) && s->read_hash) {
1554         unsigned char *mac;
1555         mac_size = EVP_MD_CTX_size(s->read_hash);
1556         if (!ossl_assert(mac_size <= EVP_MAX_MD_SIZE)) {
1557             al = SSL_AD_INTERNAL_ERROR;
1558             SSLerr(SSL_F_DTLS1_PROCESS_RECORD, ERR_R_INTERNAL_ERROR);
1559             goto f_err;
1560         }
1561         if (rr->orig_len < mac_size) {
1562             al = SSL_AD_DECODE_ERROR;
1563             SSLerr(SSL_F_DTLS1_PROCESS_RECORD, SSL_R_LENGTH_TOO_SHORT);
1564             goto f_err;
1565         }
1566         rr->length -= mac_size;
1567         mac = rr->data + rr->length;
1568         i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ );
1569         if (i == 0 || CRYPTO_memcmp(md, mac, (size_t)mac_size) != 0) {
1570             al = SSL_AD_BAD_RECORD_MAC;
1571             SSLerr(SSL_F_DTLS1_PROCESS_RECORD,
1572                    SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
1573             goto f_err;
1574         }
1575     }
1576
1577     enc_err = s->method->ssl3_enc->enc(s, rr, 1, 0);
1578     /*-
1579      * enc_err is:
1580      *    0: (in non-constant time) if the record is publically invalid.
1581      *    1: if the padding is valid
1582      *   -1: if the padding is invalid
1583      */
1584     if (enc_err == 0) {
1585         /* For DTLS we simply ignore bad packets. */
1586         rr->length = 0;
1587         RECORD_LAYER_reset_packet_length(&s->rlayer);
1588         goto err;
1589     }
1590 #ifdef SSL_DEBUG
1591     printf("dec %ld\n", rr->length);
1592     {
1593         size_t z;
1594         for (z = 0; z < rr->length; z++)
1595             printf("%02X%c", rr->data[z], ((z + 1) % 16) ? ' ' : '\n');
1596     }
1597     printf("\n");
1598 #endif
1599
1600     /* r->length is now the compressed data plus mac */
1601     if ((sess != NULL) && !SSL_READ_ETM(s) &&
1602         (s->enc_read_ctx != NULL) && (EVP_MD_CTX_md(s->read_hash) != NULL)) {
1603         /* s->read_hash != NULL => mac_size != -1 */
1604         unsigned char *mac = NULL;
1605         unsigned char mac_tmp[EVP_MAX_MD_SIZE];
1606
1607         /* TODO(size_t): Convert this to do size_t properly */
1608         imac_size = EVP_MD_CTX_size(s->read_hash);
1609         if (imac_size < 0) {
1610             al = SSL_AD_INTERNAL_ERROR;
1611             SSLerr(SSL_F_DTLS1_PROCESS_RECORD, ERR_LIB_EVP);
1612             goto f_err;
1613         }
1614         mac_size = (size_t)imac_size;
1615         if (!ossl_assert(mac_size <= EVP_MAX_MD_SIZE)) {
1616             al = SSL_AD_INTERNAL_ERROR;
1617             SSLerr(SSL_F_DTLS1_PROCESS_RECORD, ERR_R_INTERNAL_ERROR);
1618             goto f_err;
1619         }
1620
1621         /*
1622          * orig_len is the length of the record before any padding was
1623          * removed. This is public information, as is the MAC in use,
1624          * therefore we can safely process the record in a different amount
1625          * of time if it's too short to possibly contain a MAC.
1626          */
1627         if (rr->orig_len < mac_size ||
1628             /* CBC records must have a padding length byte too. */
1629             (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
1630              rr->orig_len < mac_size + 1)) {
1631             al = SSL_AD_DECODE_ERROR;
1632             SSLerr(SSL_F_DTLS1_PROCESS_RECORD, SSL_R_LENGTH_TOO_SHORT);
1633             goto f_err;
1634         }
1635
1636         if (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE) {
1637             /*
1638              * We update the length so that the TLS header bytes can be
1639              * constructed correctly but we need to extract the MAC in
1640              * constant time from within the record, without leaking the
1641              * contents of the padding bytes.
1642              */
1643             mac = mac_tmp;
1644             if (!ssl3_cbc_copy_mac(mac_tmp, rr, mac_size)) {
1645                 al = SSL_AD_INTERNAL_ERROR;
1646                 SSLerr(SSL_F_DTLS1_PROCESS_RECORD, ERR_R_INTERNAL_ERROR);
1647                 goto f_err;
1648             }
1649             rr->length -= mac_size;
1650         } else {
1651             /*
1652              * In this case there's no padding, so |rec->orig_len| equals
1653              * |rec->length| and we checked that there's enough bytes for
1654              * |mac_size| above.
1655              */
1656             rr->length -= mac_size;
1657             mac = &rr->data[rr->length];
1658         }
1659
1660         i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ );
1661         if (i == 0 || mac == NULL
1662             || CRYPTO_memcmp(md, mac, mac_size) != 0)
1663             enc_err = -1;
1664         if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + mac_size)
1665             enc_err = -1;
1666     }
1667
1668     if (enc_err < 0) {
1669         /* decryption failed, silently discard message */
1670         rr->length = 0;
1671         RECORD_LAYER_reset_packet_length(&s->rlayer);
1672         goto err;
1673     }
1674
1675     /* r->length is now just compressed */
1676     if (s->expand != NULL) {
1677         if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH) {
1678             al = SSL_AD_RECORD_OVERFLOW;
1679             SSLerr(SSL_F_DTLS1_PROCESS_RECORD,
1680                    SSL_R_COMPRESSED_LENGTH_TOO_LONG);
1681             goto f_err;
1682         }
1683         if (!ssl3_do_uncompress(s, rr)) {
1684             al = SSL_AD_DECOMPRESSION_FAILURE;
1685             SSLerr(SSL_F_DTLS1_PROCESS_RECORD, SSL_R_BAD_DECOMPRESSION);
1686             goto f_err;
1687         }
1688     }
1689
1690     if (rr->length > SSL3_RT_MAX_PLAIN_LENGTH) {
1691         al = SSL_AD_RECORD_OVERFLOW;
1692         SSLerr(SSL_F_DTLS1_PROCESS_RECORD, SSL_R_DATA_LENGTH_TOO_LONG);
1693         goto f_err;
1694     }
1695
1696     rr->off = 0;
1697     /*-
1698      * So at this point the following is true
1699      * ssl->s3->rrec.type   is the type of record
1700      * ssl->s3->rrec.length == number of bytes in record
1701      * ssl->s3->rrec.off    == offset to first valid byte
1702      * ssl->s3->rrec.data   == where to take bytes from, increment
1703      *                         after use :-).
1704      */
1705
1706     /* we have pulled in a full packet so zero things */
1707     RECORD_LAYER_reset_packet_length(&s->rlayer);
1708
1709     /* Mark receipt of record. */
1710     dtls1_record_bitmap_update(s, bitmap);
1711
1712     return 1;
1713
1714  f_err:
1715     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1716  err:
1717     return 0;
1718 }
1719
1720 /*
1721  * Retrieve a buffered record that belongs to the current epoch, i.e. processed
1722  */
1723 #define dtls1_get_processed_record(s) \
1724                    dtls1_retrieve_buffered_record((s), \
1725                    &(DTLS_RECORD_LAYER_get_processed_rcds(&s->rlayer)))
1726
1727 /*-
1728  * Call this to get a new input record.
1729  * It will return <= 0 if more data is needed, normally due to an error
1730  * or non-blocking IO.
1731  * When it finishes, one packet has been decoded and can be found in
1732  * ssl->s3->rrec.type    - is the type of record
1733  * ssl->s3->rrec.data,   - data
1734  * ssl->s3->rrec.length, - number of bytes
1735  */
1736 /* used only by dtls1_read_bytes */
1737 int dtls1_get_record(SSL *s)
1738 {
1739     int ssl_major, ssl_minor;
1740     int rret;
1741     size_t more, n;
1742     SSL3_RECORD *rr;
1743     unsigned char *p = NULL;
1744     unsigned short version;
1745     DTLS1_BITMAP *bitmap;
1746     unsigned int is_next_epoch;
1747
1748     rr = RECORD_LAYER_get_rrec(&s->rlayer);
1749
1750  again:
1751     /*
1752      * The epoch may have changed.  If so, process all the pending records.
1753      * This is a non-blocking operation.
1754      */
1755     if (!dtls1_process_buffered_records(s))
1756         return -1;
1757
1758     /* if we're renegotiating, then there may be buffered records */
1759     if (dtls1_get_processed_record(s))
1760         return 1;
1761
1762     /* get something from the wire */
1763
1764     /* check if we have the header */
1765     if ((RECORD_LAYER_get_rstate(&s->rlayer) != SSL_ST_READ_BODY) ||
1766         (RECORD_LAYER_get_packet_length(&s->rlayer) < DTLS1_RT_HEADER_LENGTH)) {
1767         rret = ssl3_read_n(s, DTLS1_RT_HEADER_LENGTH,
1768                            SSL3_BUFFER_get_len(&s->rlayer.rbuf), 0, 1, &n);
1769         /* read timeout is handled by dtls1_read_bytes */
1770         if (rret <= 0)
1771             return rret;         /* error or non-blocking */
1772
1773         /* this packet contained a partial record, dump it */
1774         if (RECORD_LAYER_get_packet_length(&s->rlayer) !=
1775             DTLS1_RT_HEADER_LENGTH) {
1776             RECORD_LAYER_reset_packet_length(&s->rlayer);
1777             goto again;
1778         }
1779
1780         RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_BODY);
1781
1782         p = RECORD_LAYER_get_packet(&s->rlayer);
1783
1784         if (s->msg_callback)
1785             s->msg_callback(0, 0, SSL3_RT_HEADER, p, DTLS1_RT_HEADER_LENGTH,
1786                             s, s->msg_callback_arg);
1787
1788         /* Pull apart the header into the DTLS1_RECORD */
1789         rr->type = *(p++);
1790         ssl_major = *(p++);
1791         ssl_minor = *(p++);
1792         version = (ssl_major << 8) | ssl_minor;
1793
1794         /* sequence number is 64 bits, with top 2 bytes = epoch */
1795         n2s(p, rr->epoch);
1796
1797         memcpy(&(RECORD_LAYER_get_read_sequence(&s->rlayer)[2]), p, 6);
1798         p += 6;
1799
1800         n2s(p, rr->length);
1801
1802         /* Lets check version */
1803         if (!s->first_packet) {
1804             if (version != s->version) {
1805                 /* unexpected version, silently discard */
1806                 rr->length = 0;
1807                 RECORD_LAYER_reset_packet_length(&s->rlayer);
1808                 goto again;
1809             }
1810         }
1811
1812         if ((version & 0xff00) != (s->version & 0xff00)) {
1813             /* wrong version, silently discard record */
1814             rr->length = 0;
1815             RECORD_LAYER_reset_packet_length(&s->rlayer);
1816             goto again;
1817         }
1818
1819         if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
1820             /* record too long, silently discard it */
1821             rr->length = 0;
1822             RECORD_LAYER_reset_packet_length(&s->rlayer);
1823             goto again;
1824         }
1825
1826         /* now s->rlayer.rstate == SSL_ST_READ_BODY */
1827     }
1828
1829     /* s->rlayer.rstate == SSL_ST_READ_BODY, get and decode the data */
1830
1831     if (rr->length >
1832         RECORD_LAYER_get_packet_length(&s->rlayer) - DTLS1_RT_HEADER_LENGTH) {
1833         /* now s->packet_length == DTLS1_RT_HEADER_LENGTH */
1834         more = rr->length;
1835         rret = ssl3_read_n(s, more, more, 1, 1, &n);
1836         /* this packet contained a partial record, dump it */
1837         if (rret <= 0 || n != more) {
1838             rr->length = 0;
1839             RECORD_LAYER_reset_packet_length(&s->rlayer);
1840             goto again;
1841         }
1842
1843         /*
1844          * now n == rr->length, and s->packet_length ==
1845          * DTLS1_RT_HEADER_LENGTH + rr->length
1846          */
1847     }
1848     /* set state for later operations */
1849     RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_HEADER);
1850
1851     /* match epochs.  NULL means the packet is dropped on the floor */
1852     bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch);
1853     if (bitmap == NULL) {
1854         rr->length = 0;
1855         RECORD_LAYER_reset_packet_length(&s->rlayer); /* dump this record */
1856         goto again;             /* get another record */
1857     }
1858 #ifndef OPENSSL_NO_SCTP
1859     /* Only do replay check if no SCTP bio */
1860     if (!BIO_dgram_is_sctp(SSL_get_rbio(s))) {
1861 #endif
1862         /* Check whether this is a repeat, or aged record. */
1863         /*
1864          * TODO: Does it make sense to have replay protection in epoch 0 where
1865          * we have no integrity negotiated yet?
1866          */
1867         if (!dtls1_record_replay_check(s, bitmap)) {
1868             rr->length = 0;
1869             RECORD_LAYER_reset_packet_length(&s->rlayer); /* dump this record */
1870             goto again;         /* get another record */
1871         }
1872 #ifndef OPENSSL_NO_SCTP
1873     }
1874 #endif
1875
1876     /* just read a 0 length packet */
1877     if (rr->length == 0)
1878         goto again;
1879
1880     /*
1881      * If this record is from the next epoch (either HM or ALERT), and a
1882      * handshake is currently in progress, buffer it since it cannot be
1883      * processed at this time.
1884      */
1885     if (is_next_epoch) {
1886         if ((SSL_in_init(s) || ossl_statem_get_in_handshake(s))) {
1887             if (dtls1_buffer_record
1888                 (s, &(DTLS_RECORD_LAYER_get_unprocessed_rcds(&s->rlayer)),
1889                  rr->seq_num) < 0)
1890                 return -1;
1891         }
1892         rr->length = 0;
1893         RECORD_LAYER_reset_packet_length(&s->rlayer);
1894         goto again;
1895     }
1896
1897     if (!dtls1_process_record(s, bitmap)) {
1898         rr->length = 0;
1899         RECORD_LAYER_reset_packet_length(&s->rlayer); /* dump this record */
1900         goto again;             /* get another record */
1901     }
1902
1903     return 1;
1904
1905 }