Fix missing SSL_IS_TLS13(s) usage
[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. In TLSv1.3 we ignore this field */
208                 if (!s->first_packet && !SSL_IS_TLS13(s)
209                         && version != s->version) {
210                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_WRONG_VERSION_NUMBER);
211                     if ((s->version & 0xFF00) == (version & 0xFF00)
212                         && !s->enc_write_ctx && !s->write_hash) {
213                         if (rr->type == SSL3_RT_ALERT) {
214                             /*
215                              * The record is using an incorrect version number,
216                              * but what we've got appears to be an alert. We
217                              * haven't read the body yet to check whether its a
218                              * fatal or not - but chances are it is. We probably
219                              * shouldn't send a fatal alert back. We'll just
220                              * end.
221                              */
222                             goto err;
223                         }
224                         /*
225                          * Send back error using their minor version number :-)
226                          */
227                         s->version = (unsigned short)version;
228                     }
229                     al = SSL_AD_PROTOCOL_VERSION;
230                     goto f_err;
231                 }
232
233                 if ((version >> 8) != SSL3_VERSION_MAJOR) {
234                     if (RECORD_LAYER_is_first_record(&s->rlayer)) {
235                         /* Go back to start of packet, look at the five bytes
236                          * that we have. */
237                         p = RECORD_LAYER_get_packet(&s->rlayer);
238                         if (strncmp((char *)p, "GET ", 4) == 0 ||
239                             strncmp((char *)p, "POST ", 5) == 0 ||
240                             strncmp((char *)p, "HEAD ", 5) == 0 ||
241                             strncmp((char *)p, "PUT ", 4) == 0) {
242                             SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_HTTP_REQUEST);
243                             goto err;
244                         } else if (strncmp((char *)p, "CONNE", 5) == 0) {
245                             SSLerr(SSL_F_SSL3_GET_RECORD,
246                                    SSL_R_HTTPS_PROXY_REQUEST);
247                             goto err;
248                         }
249
250                         /* Doesn't look like TLS - don't send an alert */
251                         SSLerr(SSL_F_SSL3_GET_RECORD,
252                                SSL_R_WRONG_VERSION_NUMBER);
253                         goto err;
254                     } else {
255                         SSLerr(SSL_F_SSL3_GET_RECORD,
256                                SSL_R_WRONG_VERSION_NUMBER);
257                         al = SSL_AD_PROTOCOL_VERSION;
258                         goto f_err;
259                     }
260                 }
261
262                 if (rr[num_recs].length >
263                     SSL3_BUFFER_get_len(rbuf) - SSL3_RT_HEADER_LENGTH) {
264                     al = SSL_AD_RECORD_OVERFLOW;
265                     SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_PACKET_LENGTH_TOO_LONG);
266                     goto f_err;
267                 }
268             }
269
270             /* now s->rlayer.rstate == SSL_ST_READ_BODY */
271         }
272
273         /*
274          * s->rlayer.rstate == SSL_ST_READ_BODY, get and decode the data.
275          * Calculate how much more data we need to read for the rest of the
276          * record
277          */
278         if (rr[num_recs].rec_version == SSL2_VERSION) {
279             more = rr[num_recs].length + SSL2_RT_HEADER_LENGTH
280                 - SSL3_RT_HEADER_LENGTH;
281         } else {
282             more = rr[num_recs].length;
283         }
284         if (more > 0) {
285             /* now s->packet_length == SSL3_RT_HEADER_LENGTH */
286
287             rret = ssl3_read_n(s, more, more, 1, 0, &n);
288             if (rret <= 0)
289                 return rret;     /* error or non-blocking io */
290         }
291
292         /* set state for later operations */
293         RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_HEADER);
294
295         /*
296          * At this point, s->packet_length == SSL3_RT_HEADER_LENGTH + rr->length,
297          * or s->packet_length == SSL2_RT_HEADER_LENGTH + rr->length
298          * and we have that many bytes in s->packet
299          */
300         if (rr[num_recs].rec_version == SSL2_VERSION) {
301             rr[num_recs].input =
302                 &(RECORD_LAYER_get_packet(&s->rlayer)[SSL2_RT_HEADER_LENGTH]);
303         } else {
304             rr[num_recs].input =
305                 &(RECORD_LAYER_get_packet(&s->rlayer)[SSL3_RT_HEADER_LENGTH]);
306         }
307
308         /*
309          * ok, we can now read from 's->packet' data into 'rr' rr->input points
310          * at rr->length bytes, which need to be copied into rr->data by either
311          * the decryption or by the decompression When the data is 'copied' into
312          * the rr->data buffer, rr->input will be pointed at the new buffer
313          */
314
315         /*
316          * We now have - encrypted [ MAC [ compressed [ plain ] ] ] rr->length
317          * bytes of encrypted compressed stuff.
318          */
319
320         /* check is not needed I believe */
321         if (rr[num_recs].length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
322             al = SSL_AD_RECORD_OVERFLOW;
323             SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
324             goto f_err;
325         }
326
327         /* decrypt in place in 'rr->input' */
328         rr[num_recs].data = rr[num_recs].input;
329         rr[num_recs].orig_len = rr[num_recs].length;
330
331         /* Mark this record as not read by upper layers yet */
332         rr[num_recs].read = 0;
333
334         num_recs++;
335
336         /* we have pulled in a full packet so zero things */
337         RECORD_LAYER_reset_packet_length(&s->rlayer);
338         RECORD_LAYER_clear_first_record(&s->rlayer);
339     } while (num_recs < max_recs
340              && rr[num_recs - 1].type == SSL3_RT_APPLICATION_DATA
341              && SSL_USE_EXPLICIT_IV(s)
342              && s->enc_read_ctx != NULL
343              && (EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(s->enc_read_ctx))
344                  & EVP_CIPH_FLAG_PIPELINE)
345              && ssl3_record_app_data_waiting(s));
346
347     /*
348      * If in encrypt-then-mac mode calculate mac from encrypted record. All
349      * the details below are public so no timing details can leak.
350      */
351     if (SSL_USE_ETM(s) && s->read_hash) {
352         unsigned char *mac;
353         /* TODO(size_t): convert this to do size_t properly */
354         imac_size = EVP_MD_CTX_size(s->read_hash);
355         if (imac_size < 0) {
356                 al = SSL_AD_INTERNAL_ERROR;
357                 SSLerr(SSL_F_SSL3_GET_RECORD, ERR_LIB_EVP);
358                 goto f_err;
359         }
360         mac_size = (size_t)imac_size;
361         OPENSSL_assert(mac_size <= EVP_MAX_MD_SIZE);
362         for (j = 0; j < num_recs; j++) {
363             if (rr[j].length < mac_size) {
364                 al = SSL_AD_DECODE_ERROR;
365                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_LENGTH_TOO_SHORT);
366                 goto f_err;
367             }
368             rr[j].length -= mac_size;
369             mac = rr[j].data + rr[j].length;
370             i = s->method->ssl3_enc->mac(s, &rr[j], md, 0 /* not send */ );
371             if (i == 0 || CRYPTO_memcmp(md, mac, mac_size) != 0) {
372                 al = SSL_AD_BAD_RECORD_MAC;
373                 SSLerr(SSL_F_SSL3_GET_RECORD,
374                        SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
375                 goto f_err;
376             }
377         }
378     }
379
380     enc_err = s->method->ssl3_enc->enc(s, rr, num_recs, 0);
381     /*-
382      * enc_err is:
383      *    0: (in non-constant time) if the record is publically invalid.
384      *    1: if the padding is valid
385      *    -1: if the padding is invalid
386      */
387     if (enc_err == 0) {
388         al = SSL_AD_DECRYPTION_FAILED;
389         SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
390         goto f_err;
391     }
392 #ifdef SSL_DEBUG
393     printf("dec %"OSSLzu"\n", rr->length);
394     {
395         size_t z;
396         for (z = 0; z < rr->length; z++)
397             printf("%02X%c", rr->data[z], ((z + 1) % 16) ? ' ' : '\n');
398     }
399     printf("\n");
400 #endif
401
402     /* r->length is now the compressed data plus mac */
403     if ((sess != NULL) &&
404         (s->enc_read_ctx != NULL) &&
405         (EVP_MD_CTX_md(s->read_hash) != NULL) && !SSL_USE_ETM(s)) {
406         /* s->read_hash != NULL => mac_size != -1 */
407         unsigned char *mac = NULL;
408         unsigned char mac_tmp[EVP_MAX_MD_SIZE];
409
410         mac_size = EVP_MD_CTX_size(s->read_hash);
411         OPENSSL_assert(mac_size <= EVP_MAX_MD_SIZE);
412
413         for (j = 0; j < num_recs; j++) {
414             /*
415              * orig_len is the length of the record before any padding was
416              * removed. This is public information, as is the MAC in use,
417              * therefore we can safely process the record in a different amount
418              * of time if it's too short to possibly contain a MAC.
419              */
420             if (rr[j].orig_len < mac_size ||
421                 /* CBC records must have a padding length byte too. */
422                 (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
423                  rr[j].orig_len < mac_size + 1)) {
424                 al = SSL_AD_DECODE_ERROR;
425                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_LENGTH_TOO_SHORT);
426                 goto f_err;
427             }
428
429             if (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE) {
430                 /*
431                  * We update the length so that the TLS header bytes can be
432                  * constructed correctly but we need to extract the MAC in
433                  * constant time from within the record, without leaking the
434                  * contents of the padding bytes.
435                  */
436                 mac = mac_tmp;
437                 ssl3_cbc_copy_mac(mac_tmp, &rr[j], mac_size);
438                 rr[j].length -= mac_size;
439             } else {
440                 /*
441                  * In this case there's no padding, so |rec->orig_len| equals
442                  * |rec->length| and we checked that there's enough bytes for
443                  * |mac_size| above.
444                  */
445                 rr[j].length -= mac_size;
446                 mac = &rr[j].data[rr[j].length];
447             }
448
449             i = s->method->ssl3_enc->mac(s, &rr[j], md, 0 /* not send */ );
450             if (i == 0 || mac == NULL
451                 || CRYPTO_memcmp(md, mac, (size_t)mac_size) != 0)
452                 enc_err = -1;
453             if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + mac_size)
454                 enc_err = -1;
455         }
456     }
457
458     if (enc_err < 0) {
459         /*
460          * A separate 'decryption_failed' alert was introduced with TLS 1.0,
461          * SSL 3.0 only has 'bad_record_mac'.  But unless a decryption
462          * failure is directly visible from the ciphertext anyway, we should
463          * not reveal which kind of error occurred -- this might become
464          * visible to an attacker (e.g. via a logfile)
465          */
466         al = SSL_AD_BAD_RECORD_MAC;
467         SSLerr(SSL_F_SSL3_GET_RECORD,
468                SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
469         goto f_err;
470     }
471
472     for (j = 0; j < num_recs; j++) {
473         /* rr[j].length is now just compressed */
474         if (s->expand != NULL) {
475             if (rr[j].length > SSL3_RT_MAX_COMPRESSED_LENGTH) {
476                 al = SSL_AD_RECORD_OVERFLOW;
477                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_COMPRESSED_LENGTH_TOO_LONG);
478                 goto f_err;
479             }
480             if (!ssl3_do_uncompress(s, &rr[j])) {
481                 al = SSL_AD_DECOMPRESSION_FAILURE;
482                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_DECOMPRESSION);
483                 goto f_err;
484             }
485         }
486
487         if (rr[j].length > SSL3_RT_MAX_PLAIN_LENGTH) {
488             al = SSL_AD_RECORD_OVERFLOW;
489             SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_DATA_LENGTH_TOO_LONG);
490             goto f_err;
491         }
492
493         rr[j].off = 0;
494         /*-
495          * So at this point the following is true
496          * rr[j].type   is the type of record
497          * rr[j].length == number of bytes in record
498          * rr[j].off    == offset to first valid byte
499          * rr[j].data   == where to take bytes from, increment after use :-).
500          */
501
502         /* just read a 0 length packet */
503         if (rr[j].length == 0) {
504             RECORD_LAYER_inc_empty_record_count(&s->rlayer);
505             if (RECORD_LAYER_get_empty_record_count(&s->rlayer)
506                 > MAX_EMPTY_RECORDS) {
507                 al = SSL_AD_UNEXPECTED_MESSAGE;
508                 SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_RECORD_TOO_SMALL);
509                 goto f_err;
510             }
511         } else {
512             RECORD_LAYER_reset_empty_record_count(&s->rlayer);
513         }
514     }
515
516     RECORD_LAYER_set_numrpipes(&s->rlayer, num_recs);
517     return 1;
518
519  f_err:
520     ssl3_send_alert(s, SSL3_AL_FATAL, al);
521  err:
522     return ret;
523 }
524
525 int ssl3_do_uncompress(SSL *ssl, SSL3_RECORD *rr)
526 {
527 #ifndef OPENSSL_NO_COMP
528     int i;
529
530     if (rr->comp == NULL) {
531         rr->comp = (unsigned char *)
532             OPENSSL_malloc(SSL3_RT_MAX_ENCRYPTED_LENGTH);
533     }
534     if (rr->comp == NULL)
535         return 0;
536
537     /* TODO(size_t): Convert this call */
538     i = COMP_expand_block(ssl->expand, rr->comp,
539                           SSL3_RT_MAX_PLAIN_LENGTH, rr->data, (int)rr->length);
540     if (i < 0)
541         return 0;
542     else
543         rr->length = i;
544     rr->data = rr->comp;
545 #endif
546     return 1;
547 }
548
549 int ssl3_do_compress(SSL *ssl, SSL3_RECORD *wr)
550 {
551 #ifndef OPENSSL_NO_COMP
552     int i;
553
554     /* TODO(size_t): Convert this call */
555     i = COMP_compress_block(ssl->compress, wr->data,
556                             SSL3_RT_MAX_COMPRESSED_LENGTH,
557                             wr->input, (int)wr->length);
558     if (i < 0)
559         return (0);
560     else
561         wr->length = i;
562
563     wr->input = wr->data;
564 #endif
565     return (1);
566 }
567
568 /*-
569  * ssl3_enc encrypts/decrypts |n_recs| records in |inrecs|
570  *
571  * Returns:
572  *   0: (in non-constant time) if the record is publically invalid (i.e. too
573  *       short etc).
574  *   1: if the record's padding is valid / the encryption was successful.
575  *   -1: if the record's padding is invalid or, if sending, an internal error
576  *       occurred.
577  */
578 int ssl3_enc(SSL *s, SSL3_RECORD *inrecs, size_t n_recs, int send)
579 {
580     SSL3_RECORD *rec;
581     EVP_CIPHER_CTX *ds;
582     size_t l, i;
583     size_t bs, mac_size = 0;
584     int imac_size;
585     const EVP_CIPHER *enc;
586
587     rec = inrecs;
588     /*
589      * We shouldn't ever be called with more than one record in the SSLv3 case
590      */
591     if (n_recs != 1)
592         return 0;
593     if (send) {
594         ds = s->enc_write_ctx;
595         if (s->enc_write_ctx == NULL)
596             enc = NULL;
597         else
598             enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
599     } else {
600         ds = s->enc_read_ctx;
601         if (s->enc_read_ctx == NULL)
602             enc = NULL;
603         else
604             enc = EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
605     }
606
607     if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
608         memmove(rec->data, rec->input, rec->length);
609         rec->input = rec->data;
610     } else {
611         l = rec->length;
612         /* TODO(size_t): Convert this call */
613         bs = EVP_CIPHER_CTX_block_size(ds);
614
615         /* COMPRESS */
616
617         if ((bs != 1) && send) {
618             i = bs - (l % bs);
619
620             /* we need to add 'i-1' padding bytes */
621             l += i;
622             /*
623              * the last of these zero bytes will be overwritten with the
624              * padding length.
625              */
626             memset(&rec->input[rec->length], 0, i);
627             rec->length += i;
628             rec->input[l - 1] = (unsigned char)(i - 1);
629         }
630
631         if (!send) {
632             if (l == 0 || l % bs != 0)
633                 return 0;
634             /* otherwise, rec->length >= bs */
635         }
636
637         /* TODO(size_t): Convert this call */
638         if (EVP_Cipher(ds, rec->data, rec->input, (unsigned int)l) < 1)
639             return -1;
640
641         if (EVP_MD_CTX_md(s->read_hash) != NULL) {
642             /* TODO(size_t): convert me */
643             imac_size = EVP_MD_CTX_size(s->read_hash);
644             if (imac_size < 0)
645                 return -1;
646             mac_size = (size_t)imac_size;
647         }
648         if ((bs != 1) && !send)
649             return ssl3_cbc_remove_padding(rec, bs, mac_size);
650     }
651     return (1);
652 }
653
654 #define MAX_PADDING 256
655 /*-
656  * tls1_enc encrypts/decrypts |n_recs| in |recs|.
657  *
658  * Returns:
659  *   0: (in non-constant time) if the record is publically invalid (i.e. too
660  *       short etc).
661  *   1: if the record's padding is valid / the encryption was successful.
662  *   -1: if the record's padding/AEAD-authenticator is invalid or, if sending,
663  *       an internal error occurred.
664  */
665 int tls1_enc(SSL *s, SSL3_RECORD *recs, size_t n_recs, int send)
666 {
667     EVP_CIPHER_CTX *ds;
668     size_t reclen[SSL_MAX_PIPELINES];
669     unsigned char buf[SSL_MAX_PIPELINES][EVP_AEAD_TLS1_AAD_LEN];
670     int i, pad = 0, ret, tmpr;
671     size_t bs, mac_size = 0, ctr, padnum, loop;
672     unsigned char padval;
673     int imac_size;
674     const EVP_CIPHER *enc;
675
676     if (send) {
677         if (EVP_MD_CTX_md(s->write_hash)) {
678             int n = EVP_MD_CTX_size(s->write_hash);
679             OPENSSL_assert(n >= 0);
680         }
681         ds = s->enc_write_ctx;
682         if (s->enc_write_ctx == NULL)
683             enc = NULL;
684         else {
685             int ivlen;
686             enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
687             /* For TLSv1.1 and later explicit IV */
688             if (SSL_USE_EXPLICIT_IV(s)
689                 && EVP_CIPHER_mode(enc) == EVP_CIPH_CBC_MODE)
690                 ivlen = EVP_CIPHER_iv_length(enc);
691             else
692                 ivlen = 0;
693             if (ivlen > 1) {
694                 for (ctr = 0; ctr < n_recs; ctr++) {
695                     if (recs[ctr].data != recs[ctr].input) {
696                         /*
697                          * we can't write into the input stream: Can this ever
698                          * happen?? (steve)
699                          */
700                         SSLerr(SSL_F_TLS1_ENC, ERR_R_INTERNAL_ERROR);
701                         return -1;
702                     } else if (RAND_bytes(recs[ctr].input, ivlen) <= 0) {
703                         SSLerr(SSL_F_TLS1_ENC, ERR_R_INTERNAL_ERROR);
704                         return -1;
705                     }
706                 }
707             }
708         }
709     } else {
710         if (EVP_MD_CTX_md(s->read_hash)) {
711             int n = EVP_MD_CTX_size(s->read_hash);
712             OPENSSL_assert(n >= 0);
713         }
714         ds = s->enc_read_ctx;
715         if (s->enc_read_ctx == NULL)
716             enc = NULL;
717         else
718             enc = EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
719     }
720
721     if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
722         for (ctr = 0; ctr < n_recs; ctr++) {
723             memmove(recs[ctr].data, recs[ctr].input, recs[ctr].length);
724             recs[ctr].input = recs[ctr].data;
725         }
726         ret = 1;
727     } else {
728         bs = EVP_CIPHER_block_size(EVP_CIPHER_CTX_cipher(ds));
729
730         if (n_recs > 1) {
731             if (!(EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(ds))
732                   & EVP_CIPH_FLAG_PIPELINE)) {
733                 /*
734                  * We shouldn't have been called with pipeline data if the
735                  * cipher doesn't support pipelining
736                  */
737                 SSLerr(SSL_F_TLS1_ENC, SSL_R_PIPELINE_FAILURE);
738                 return -1;
739             }
740         }
741         for (ctr = 0; ctr < n_recs; ctr++) {
742             reclen[ctr] = recs[ctr].length;
743
744             if (EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(ds))
745                 & EVP_CIPH_FLAG_AEAD_CIPHER) {
746                 unsigned char *seq;
747
748                 seq = send ? RECORD_LAYER_get_write_sequence(&s->rlayer)
749                     : RECORD_LAYER_get_read_sequence(&s->rlayer);
750
751                 if (SSL_IS_DTLS(s)) {
752                     /* DTLS does not support pipelining */
753                     unsigned char dtlsseq[9], *p = dtlsseq;
754
755                     s2n(send ? DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer) :
756                         DTLS_RECORD_LAYER_get_r_epoch(&s->rlayer), p);
757                     memcpy(p, &seq[2], 6);
758                     memcpy(buf[ctr], dtlsseq, 8);
759                 } else {
760                     memcpy(buf[ctr], seq, 8);
761                     for (i = 7; i >= 0; i--) { /* increment */
762                         ++seq[i];
763                         if (seq[i] != 0)
764                             break;
765                     }
766                 }
767
768                 buf[ctr][8] = recs[ctr].type;
769                 buf[ctr][9] = (unsigned char)(s->version >> 8);
770                 buf[ctr][10] = (unsigned char)(s->version);
771                 buf[ctr][11] = (unsigned char)(recs[ctr].length >> 8);
772                 buf[ctr][12] = (unsigned char)(recs[ctr].length & 0xff);
773                 pad = EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_AEAD_TLS1_AAD,
774                                           EVP_AEAD_TLS1_AAD_LEN, buf[ctr]);
775                 if (pad <= 0)
776                     return -1;
777
778                 if (send) {
779                     reclen[ctr] += pad;
780                     recs[ctr].length += pad;
781                 }
782
783             } else if ((bs != 1) && send) {
784                 padnum = bs - (reclen[ctr] % bs);
785
786                 /* Add weird padding of upto 256 bytes */
787
788                 if (padnum > MAX_PADDING)
789                     return -1;
790                 /* we need to add 'padnum' padding bytes of value padval */
791                 padval = (unsigned char)(padnum - 1);
792                 for (loop = reclen[ctr]; loop < reclen[ctr] + padnum; loop++)
793                     recs[ctr].input[loop] = padval;
794                 reclen[ctr] += padnum;
795                 recs[ctr].length += padnum;
796             }
797
798             if (!send) {
799                 if (reclen[ctr] == 0 || reclen[ctr] % bs != 0)
800                     return 0;
801             }
802         }
803         if (n_recs > 1) {
804             unsigned char *data[SSL_MAX_PIPELINES];
805
806             /* Set the output buffers */
807             for (ctr = 0; ctr < n_recs; ctr++) {
808                 data[ctr] = recs[ctr].data;
809             }
810             if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS,
811                                     (int)n_recs, data) <= 0) {
812                 SSLerr(SSL_F_TLS1_ENC, SSL_R_PIPELINE_FAILURE);
813             }
814             /* Set the input buffers */
815             for (ctr = 0; ctr < n_recs; ctr++) {
816                 data[ctr] = recs[ctr].input;
817             }
818             if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_INPUT_BUFS,
819                                     (int)n_recs, data) <= 0
820                 || EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_INPUT_LENS,
821                                        (int)n_recs, reclen) <= 0) {
822                 SSLerr(SSL_F_TLS1_ENC, SSL_R_PIPELINE_FAILURE);
823                 return -1;
824             }
825         }
826
827         /* TODO(size_t): Convert this call */
828         tmpr = EVP_Cipher(ds, recs[0].data, recs[0].input,
829                           (unsigned int)reclen[0]);
830         if ((EVP_CIPHER_flags(EVP_CIPHER_CTX_cipher(ds))
831              & EVP_CIPH_FLAG_CUSTOM_CIPHER)
832             ? (tmpr < 0)
833             : (tmpr == 0))
834             return -1;          /* AEAD can fail to verify MAC */
835         if (send == 0) {
836             if (EVP_CIPHER_mode(enc) == EVP_CIPH_GCM_MODE) {
837                 for (ctr = 0; ctr < n_recs; ctr++) {
838                     recs[ctr].data += EVP_GCM_TLS_EXPLICIT_IV_LEN;
839                     recs[ctr].input += EVP_GCM_TLS_EXPLICIT_IV_LEN;
840                     recs[ctr].length -= EVP_GCM_TLS_EXPLICIT_IV_LEN;
841                 }
842             } else if (EVP_CIPHER_mode(enc) == EVP_CIPH_CCM_MODE) {
843                 for (ctr = 0; ctr < n_recs; ctr++) {
844                     recs[ctr].data += EVP_CCM_TLS_EXPLICIT_IV_LEN;
845                     recs[ctr].input += EVP_CCM_TLS_EXPLICIT_IV_LEN;
846                     recs[ctr].length -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
847                 }
848             }
849         }
850
851         ret = 1;
852         if (!SSL_USE_ETM(s) && EVP_MD_CTX_md(s->read_hash) != NULL) {
853             imac_size = EVP_MD_CTX_size(s->read_hash);
854             if (imac_size < 0)
855                 return -1;
856             mac_size = (size_t)imac_size;
857         }
858         if ((bs != 1) && !send) {
859             int tmpret;
860             for (ctr = 0; ctr < n_recs; ctr++) {
861                 tmpret = tls1_cbc_remove_padding(s, &recs[ctr], bs, mac_size);
862                 /*
863                  * If tmpret == 0 then this means publicly invalid so we can
864                  * short circuit things here. Otherwise we must respect constant
865                  * time behaviour.
866                  */
867                 if (tmpret == 0)
868                     return 0;
869                 ret = constant_time_select_int(constant_time_eq_int(tmpret, 1),
870                                                ret, -1);
871             }
872         }
873         if (pad && !send) {
874             for (ctr = 0; ctr < n_recs; ctr++) {
875                 recs[ctr].length -= pad;
876             }
877         }
878     }
879     return ret;
880 }
881
882 int n_ssl3_mac(SSL *ssl, SSL3_RECORD *rec, unsigned char *md, int send)
883 {
884     unsigned char *mac_sec, *seq;
885     const EVP_MD_CTX *hash;
886     unsigned char *p, rec_char;
887     size_t md_size;
888     size_t npad;
889     int t;
890
891     if (send) {
892         mac_sec = &(ssl->s3->write_mac_secret[0]);
893         seq = RECORD_LAYER_get_write_sequence(&ssl->rlayer);
894         hash = ssl->write_hash;
895     } else {
896         mac_sec = &(ssl->s3->read_mac_secret[0]);
897         seq = RECORD_LAYER_get_read_sequence(&ssl->rlayer);
898         hash = ssl->read_hash;
899     }
900
901     t = EVP_MD_CTX_size(hash);
902     if (t < 0)
903         return 0;
904     md_size = t;
905     npad = (48 / md_size) * md_size;
906
907     if (!send &&
908         EVP_CIPHER_CTX_mode(ssl->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
909         ssl3_cbc_record_digest_supported(hash)) {
910         /*
911          * This is a CBC-encrypted record. We must avoid leaking any
912          * timing-side channel information about how many blocks of data we
913          * are hashing because that gives an attacker a timing-oracle.
914          */
915
916         /*-
917          * npad is, at most, 48 bytes and that's with MD5:
918          *   16 + 48 + 8 (sequence bytes) + 1 + 2 = 75.
919          *
920          * With SHA-1 (the largest hash speced for SSLv3) the hash size
921          * goes up 4, but npad goes down by 8, resulting in a smaller
922          * total size.
923          */
924         unsigned char header[75];
925         size_t j = 0;
926         memcpy(header + j, mac_sec, md_size);
927         j += md_size;
928         memcpy(header + j, ssl3_pad_1, npad);
929         j += npad;
930         memcpy(header + j, seq, 8);
931         j += 8;
932         header[j++] = rec->type;
933         header[j++] = (unsigned char)(rec->length >> 8);
934         header[j++] = (unsigned char)(rec->length & 0xff);
935
936         /* Final param == is SSLv3 */
937         if (ssl3_cbc_digest_record(hash,
938                                    md, &md_size,
939                                    header, rec->input,
940                                    rec->length + md_size, rec->orig_len,
941                                    mac_sec, md_size, 1) <= 0)
942             return 0;
943     } else {
944         unsigned int md_size_u;
945         /* Chop the digest off the end :-) */
946         EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
947
948         if (md_ctx == NULL)
949             return 0;
950
951         rec_char = rec->type;
952         p = md;
953         s2n(rec->length, p);
954         if (EVP_MD_CTX_copy_ex(md_ctx, hash) <= 0
955             || EVP_DigestUpdate(md_ctx, mac_sec, md_size) <= 0
956             || EVP_DigestUpdate(md_ctx, ssl3_pad_1, npad) <= 0
957             || EVP_DigestUpdate(md_ctx, seq, 8) <= 0
958             || EVP_DigestUpdate(md_ctx, &rec_char, 1) <= 0
959             || EVP_DigestUpdate(md_ctx, md, 2) <= 0
960             || EVP_DigestUpdate(md_ctx, rec->input, rec->length) <= 0
961             || EVP_DigestFinal_ex(md_ctx, md, NULL) <= 0
962             || EVP_MD_CTX_copy_ex(md_ctx, hash) <= 0
963             || EVP_DigestUpdate(md_ctx, mac_sec, md_size) <= 0
964             || EVP_DigestUpdate(md_ctx, ssl3_pad_2, npad) <= 0
965             || EVP_DigestUpdate(md_ctx, md, md_size) <= 0
966             || EVP_DigestFinal_ex(md_ctx, md, &md_size_u) <= 0) {
967             EVP_MD_CTX_reset(md_ctx);
968             return 0;
969         }
970
971         EVP_MD_CTX_free(md_ctx);
972     }
973
974     ssl3_record_sequence_update(seq);
975     return 1;
976 }
977
978 int tls1_mac(SSL *ssl, SSL3_RECORD *rec, unsigned char *md, int send)
979 {
980     unsigned char *seq;
981     EVP_MD_CTX *hash;
982     size_t md_size;
983     int i;
984     EVP_MD_CTX *hmac = NULL, *mac_ctx;
985     unsigned char header[13];
986     int stream_mac = (send ? (ssl->mac_flags & SSL_MAC_FLAG_WRITE_MAC_STREAM)
987                       : (ssl->mac_flags & SSL_MAC_FLAG_READ_MAC_STREAM));
988     int t;
989
990     if (send) {
991         seq = RECORD_LAYER_get_write_sequence(&ssl->rlayer);
992         hash = ssl->write_hash;
993     } else {
994         seq = RECORD_LAYER_get_read_sequence(&ssl->rlayer);
995         hash = ssl->read_hash;
996     }
997
998     t = EVP_MD_CTX_size(hash);
999     OPENSSL_assert(t >= 0);
1000     md_size = t;
1001
1002     /* I should fix this up TLS TLS TLS TLS TLS XXXXXXXX */
1003     if (stream_mac) {
1004         mac_ctx = hash;
1005     } else {
1006         hmac = EVP_MD_CTX_new();
1007         if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash))
1008             return 0;
1009         mac_ctx = hmac;
1010     }
1011
1012     if (SSL_IS_DTLS(ssl)) {
1013         unsigned char dtlsseq[8], *p = dtlsseq;
1014
1015         s2n(send ? DTLS_RECORD_LAYER_get_w_epoch(&ssl->rlayer) :
1016             DTLS_RECORD_LAYER_get_r_epoch(&ssl->rlayer), p);
1017         memcpy(p, &seq[2], 6);
1018
1019         memcpy(header, dtlsseq, 8);
1020     } else
1021         memcpy(header, seq, 8);
1022
1023     header[8] = rec->type;
1024     header[9] = (unsigned char)(ssl->version >> 8);
1025     header[10] = (unsigned char)(ssl->version);
1026     header[11] = (unsigned char)(rec->length >> 8);
1027     header[12] = (unsigned char)(rec->length & 0xff);
1028
1029     if (!send && !SSL_USE_ETM(ssl) &&
1030         EVP_CIPHER_CTX_mode(ssl->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
1031         ssl3_cbc_record_digest_supported(mac_ctx)) {
1032         /*
1033          * This is a CBC-encrypted record. We must avoid leaking any
1034          * timing-side channel information about how many blocks of data we
1035          * are hashing because that gives an attacker a timing-oracle.
1036          */
1037         /* Final param == not SSLv3 */
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     size_t 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_s(rec->length, padding_length + overhead);
1126     /* SSLv3 requires that the padding is minimal. */
1127     good &= constant_time_ge_s(block_size, padding_length + 1);
1128     rec->length -= good & (padding_length + 1);
1129     return constant_time_select_int_s(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     size_t 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_s(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_s(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_s(0xff, good & 0xff);
1206     rec->length -= good & (padding_length + 1);
1207
1208     return constant_time_select_int_s(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     size_t i, j;
1252     size_t div_spoiler;
1253     size_t 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_s(i, mac_start);
1280         unsigned char mac_ended = constant_time_ge_8_s(i, mac_end);
1281         unsigned char b = rec->data[i];
1282         rotated_mac[j++] |= b & mac_started & ~mac_ended;
1283         j &= constant_time_lt_s(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_s(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_s(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_s(j, rotate_offset);
1302         rotate_offset++;
1303         rotate_offset &= constant_time_lt_s(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 }