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