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