ec47b94c7594ee9473c25ded224453860c9f7ebd
[openssl.git] / ssl / d1_both.c
1 /* ssl/d1_both.c */
2 /*
3  * DTLS implementation written by Nagendra Modadugu
4  * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
5  */
6 /* ====================================================================
7  * Copyright (c) 1998-2005 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    openssl-core@openssl.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
60  * All rights reserved.
61  *
62  * This package is an SSL implementation written
63  * by Eric Young (eay@cryptsoft.com).
64  * The implementation was written so as to conform with Netscapes SSL.
65  *
66  * This library is free for commercial and non-commercial use as long as
67  * the following conditions are aheared to.  The following conditions
68  * apply to all code found in this distribution, be it the RC4, RSA,
69  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
70  * included with this distribution is covered by the same copyright terms
71  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
72  *
73  * Copyright remains Eric Young's, and as such any Copyright notices in
74  * the code are not to be removed.
75  * If this package is used in a product, Eric Young should be given attribution
76  * as the author of the parts of the library used.
77  * This can be in the form of a textual message at program startup or
78  * in documentation (online or textual) provided with the package.
79  *
80  * Redistribution and use in source and binary forms, with or without
81  * modification, are permitted provided that the following conditions
82  * are met:
83  * 1. Redistributions of source code must retain the copyright
84  *    notice, this list of conditions and the following disclaimer.
85  * 2. Redistributions in binary form must reproduce the above copyright
86  *    notice, this list of conditions and the following disclaimer in the
87  *    documentation and/or other materials provided with the distribution.
88  * 3. All advertising materials mentioning features or use of this software
89  *    must display the following acknowledgement:
90  *    "This product includes cryptographic software written by
91  *     Eric Young (eay@cryptsoft.com)"
92  *    The word 'cryptographic' can be left out if the rouines from the library
93  *    being used are not cryptographic related :-).
94  * 4. If you include any Windows specific code (or a derivative thereof) from
95  *    the apps directory (application code) you must include an acknowledgement:
96  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
97  *
98  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
99  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
100  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
101  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
102  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
103  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
104  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
105  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
106  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
107  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
108  * SUCH DAMAGE.
109  *
110  * The licence and distribution terms for any publically available version or
111  * derivative of this code cannot be changed.  i.e. this code cannot simply be
112  * copied and put under another distribution licence
113  * [including the GNU Public Licence.]
114  */
115
116 #include <limits.h>
117 #include <string.h>
118 #include <stdio.h>
119 #include "ssl_locl.h"
120 #include <openssl/buffer.h>
121 #include <openssl/rand.h>
122 #include <openssl/objects.h>
123 #include <openssl/evp.h>
124 #include <openssl/x509.h>
125
126 #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8)
127
128 #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \
129                         if ((end) - (start) <= 8) { \
130                                 long ii; \
131                                 for (ii = (start); ii < (end); ii++) bitmask[((ii) >> 3)] |= (1 << ((ii) & 7)); \
132                         } else { \
133                                 long ii; \
134                                 bitmask[((start) >> 3)] |= bitmask_start_values[((start) & 7)]; \
135                                 for (ii = (((start) >> 3) + 1); ii < ((((end) - 1)) >> 3); ii++) bitmask[ii] = 0xff; \
136                                 bitmask[(((end) - 1) >> 3)] |= bitmask_end_values[((end) & 7)]; \
137                         } }
138
139 #define RSMBLY_BITMASK_IS_COMPLETE(bitmask, msg_len, is_complete) { \
140                         long ii; \
141                         OPENSSL_assert((msg_len) > 0); \
142                         is_complete = 1; \
143                         if (bitmask[(((msg_len) - 1) >> 3)] != bitmask_end_values[((msg_len) & 7)]) is_complete = 0; \
144                         if (is_complete) for (ii = (((msg_len) - 1) >> 3) - 1; ii >= 0 ; ii--) \
145                                 if (bitmask[ii] != 0xff) { is_complete = 0; break; } }
146
147 static unsigned char bitmask_start_values[] =
148     { 0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80 };
149 static unsigned char bitmask_end_values[] =
150     { 0xff, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f };
151
152 /* XDTLS:  figure out the right values */
153 static const unsigned int g_probable_mtu[] = { 1500, 512, 256 };
154
155 static void dtls1_fix_message_header(SSL *s, unsigned long frag_off,
156                                      unsigned long frag_len);
157 static unsigned char *dtls1_write_message_header(SSL *s, unsigned char *p);
158 static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
159                                          unsigned long len,
160                                          unsigned short seq_num,
161                                          unsigned long frag_off,
162                                          unsigned long frag_len);
163 static long dtls1_get_message_fragment(SSL *s, int st1, int stn, int mt,
164                                        long max, int *ok);
165
166 static hm_fragment *dtls1_hm_fragment_new(unsigned long frag_len,
167                                           int reassembly)
168 {
169     hm_fragment *frag = NULL;
170     unsigned char *buf = NULL;
171     unsigned char *bitmask = NULL;
172
173     frag = OPENSSL_malloc(sizeof(*frag));
174     if (frag == NULL)
175         return NULL;
176
177     if (frag_len) {
178         buf = OPENSSL_malloc(frag_len);
179         if (buf == NULL) {
180             OPENSSL_free(frag);
181             return NULL;
182         }
183     }
184
185     /* zero length fragment gets zero frag->fragment */
186     frag->fragment = buf;
187
188     /* Initialize reassembly bitmask if necessary */
189     if (reassembly) {
190         bitmask = OPENSSL_malloc(RSMBLY_BITMASK_SIZE(frag_len));
191         if (bitmask == NULL) {
192             OPENSSL_free(buf);
193             OPENSSL_free(frag);
194             return NULL;
195         }
196         memset(bitmask, 0, RSMBLY_BITMASK_SIZE(frag_len));
197     }
198
199     frag->reassembly = bitmask;
200
201     return frag;
202 }
203
204 void dtls1_hm_fragment_free(hm_fragment *frag)
205 {
206     if (!frag)
207         return;
208     if (frag->msg_header.is_ccs) {
209         EVP_CIPHER_CTX_free(frag->msg_header.
210                             saved_retransmit_state.enc_write_ctx);
211         EVP_MD_CTX_destroy(frag->msg_header.
212                            saved_retransmit_state.write_hash);
213     }
214     OPENSSL_free(frag->fragment);
215     OPENSSL_free(frag->reassembly);
216     OPENSSL_free(frag);
217 }
218
219 static int dtls1_query_mtu(SSL *s)
220 {
221     if (s->d1->link_mtu) {
222         s->d1->mtu =
223             s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
224         s->d1->link_mtu = 0;
225     }
226
227     /* AHA!  Figure out the MTU, and stick to the right size */
228     if (s->d1->mtu < dtls1_min_mtu(s)) {
229         if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
230             s->d1->mtu =
231                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
232
233             /*
234              * I've seen the kernel return bogus numbers when it doesn't know
235              * (initial write), so just make sure we have a reasonable number
236              */
237             if (s->d1->mtu < dtls1_min_mtu(s)) {
238                 /* Set to min mtu */
239                 s->d1->mtu = dtls1_min_mtu(s);
240                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU,
241                          s->d1->mtu, NULL);
242             }
243         } else
244             return 0;
245     }
246     return 1;
247 }
248
249 /*
250  * send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or
251  * SSL3_RT_CHANGE_CIPHER_SPEC)
252  */
253 int dtls1_do_write(SSL *s, int type)
254 {
255     int ret;
256     unsigned int curr_mtu;
257     int retry = 1;
258     unsigned int len, frag_off, mac_size, blocksize, used_len;
259
260     if (!dtls1_query_mtu(s))
261         return -1;
262
263     OPENSSL_assert(s->d1->mtu >= dtls1_min_mtu(s)); /* should have something
264                                                      * reasonable now */
265
266     if (s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
267         OPENSSL_assert(s->init_num ==
268                        (int)s->d1->w_msg_hdr.msg_len +
269                        DTLS1_HM_HEADER_LENGTH);
270
271     if (s->write_hash) {
272         if (s->enc_write_ctx
273             && EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_GCM_MODE)
274             mac_size = 0;
275         else
276             mac_size = EVP_MD_CTX_size(s->write_hash);
277     } else
278         mac_size = 0;
279
280     if (s->enc_write_ctx &&
281         (EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_CBC_MODE))
282         blocksize = 2 * EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
283     else
284         blocksize = 0;
285
286     frag_off = 0;
287     /* s->init_num shouldn't ever be < 0...but just in case */
288     while (s->init_num > 0) {
289         used_len = BIO_wpending(SSL_get_wbio(s)) + DTLS1_RT_HEADER_LENGTH
290             + mac_size + blocksize;
291         if (s->d1->mtu > used_len)
292             curr_mtu = s->d1->mtu - used_len;
293         else
294             curr_mtu = 0;
295
296         if (curr_mtu <= DTLS1_HM_HEADER_LENGTH) {
297             /*
298              * grr.. we could get an error if MTU picked was wrong
299              */
300             ret = BIO_flush(SSL_get_wbio(s));
301             if (ret <= 0)
302                 return ret;
303             used_len = DTLS1_RT_HEADER_LENGTH + mac_size + blocksize;
304             if (s->d1->mtu > used_len + DTLS1_HM_HEADER_LENGTH) {
305                 curr_mtu = s->d1->mtu - used_len;
306             } else {
307                 /* Shouldn't happen */
308                 return -1;
309             }
310         }
311
312         /*
313          * We just checked that s->init_num > 0 so this cast should be safe
314          */
315         if (((unsigned int)s->init_num) > curr_mtu)
316             len = curr_mtu;
317         else
318             len = s->init_num;
319
320         /* Shouldn't ever happen */
321         if (len > INT_MAX)
322             len = INT_MAX;
323
324         /*
325          * XDTLS: this function is too long.  split out the CCS part
326          */
327         if (type == SSL3_RT_HANDSHAKE) {
328             if (s->init_off != 0) {
329                 OPENSSL_assert(s->init_off > DTLS1_HM_HEADER_LENGTH);
330                 s->init_off -= DTLS1_HM_HEADER_LENGTH;
331                 s->init_num += DTLS1_HM_HEADER_LENGTH;
332
333                 /*
334                  * We just checked that s->init_num > 0 so this cast should
335                  * be safe
336                  */
337                 if (((unsigned int)s->init_num) > curr_mtu)
338                     len = curr_mtu;
339                 else
340                     len = s->init_num;
341             }
342
343             /* Shouldn't ever happen */
344             if (len > INT_MAX)
345                 len = INT_MAX;
346
347             if (len < DTLS1_HM_HEADER_LENGTH) {
348                 /*
349                  * len is so small that we really can't do anything sensible
350                  * so fail
351                  */
352                 return -1;
353             }
354             dtls1_fix_message_header(s, frag_off,
355                                      len - DTLS1_HM_HEADER_LENGTH);
356
357             dtls1_write_message_header(s,
358                                        (unsigned char *)&s->init_buf->
359                                        data[s->init_off]);
360         }
361
362         ret = dtls1_write_bytes(s, type, &s->init_buf->data[s->init_off],
363                                 len);
364         if (ret < 0) {
365             /*
366              * might need to update MTU here, but we don't know which
367              * previous packet caused the failure -- so can't really
368              * retransmit anything.  continue as if everything is fine and
369              * wait for an alert to handle the retransmit
370              */
371             if (retry && BIO_ctrl(SSL_get_wbio(s),
372                                   BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL) > 0) {
373                 if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
374                     if (!dtls1_query_mtu(s))
375                         return -1;
376                     /* Have one more go */
377                     retry = 0;
378                 } else
379                     return -1;
380             } else {
381                 return (-1);
382             }
383         } else {
384
385             /*
386              * bad if this assert fails, only part of the handshake message
387              * got sent.  but why would this happen?
388              */
389             OPENSSL_assert(len == (unsigned int)ret);
390
391             if (type == SSL3_RT_HANDSHAKE && !s->d1->retransmitting) {
392                 /*
393                  * should not be done for 'Hello Request's, but in that case
394                  * we'll ignore the result anyway
395                  */
396                 unsigned char *p =
397                     (unsigned char *)&s->init_buf->data[s->init_off];
398                 const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
399                 int xlen;
400
401                 if (frag_off == 0 && s->version != DTLS1_BAD_VER) {
402                     /*
403                      * reconstruct message header is if it is being sent in
404                      * single fragment
405                      */
406                     *p++ = msg_hdr->type;
407                     l2n3(msg_hdr->msg_len, p);
408                     s2n(msg_hdr->seq, p);
409                     l2n3(0, p);
410                     l2n3(msg_hdr->msg_len, p);
411                     p -= DTLS1_HM_HEADER_LENGTH;
412                     xlen = ret;
413                 } else {
414                     p += DTLS1_HM_HEADER_LENGTH;
415                     xlen = ret - DTLS1_HM_HEADER_LENGTH;
416                 }
417
418                 ssl3_finish_mac(s, p, xlen);
419             }
420
421             if (ret == s->init_num) {
422                 if (s->msg_callback)
423                     s->msg_callback(1, s->version, type, s->init_buf->data,
424                                     (size_t)(s->init_off + s->init_num), s,
425                                     s->msg_callback_arg);
426
427                 s->init_off = 0; /* done writing this message */
428                 s->init_num = 0;
429
430                 return (1);
431             }
432             s->init_off += ret;
433             s->init_num -= ret;
434             frag_off += (ret -= DTLS1_HM_HEADER_LENGTH);
435         }
436     }
437     return (0);
438 }
439
440 /*
441  * Obtain handshake message of message type 'mt' (any if mt == -1), maximum
442  * acceptable body length 'max'. Read an entire handshake message.  Handshake
443  * messages arrive in fragments.
444  */
445 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
446 {
447     int i, al;
448     struct hm_header_st *msg_hdr;
449     unsigned char *p;
450     unsigned long msg_len;
451
452     /*
453      * s3->tmp is used to store messages that are unexpected, caused by the
454      * absence of an optional handshake message
455      */
456     if (s->s3->tmp.reuse_message) {
457         s->s3->tmp.reuse_message = 0;
458         if ((mt >= 0) && (s->s3->tmp.message_type != mt)) {
459             al = SSL_AD_UNEXPECTED_MESSAGE;
460             SSLerr(SSL_F_DTLS1_GET_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
461             goto f_err;
462         }
463         *ok = 1;
464         s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
465         s->init_num = (int)s->s3->tmp.message_size;
466         return s->init_num;
467     }
468
469     msg_hdr = &s->d1->r_msg_hdr;
470     memset(msg_hdr, 0, sizeof(*msg_hdr));
471
472  again:
473     i = dtls1_get_message_fragment(s, st1, stn, mt, max, ok);
474     if (i == DTLS1_HM_BAD_FRAGMENT || i == DTLS1_HM_FRAGMENT_RETRY) {
475         /* bad fragment received */
476         goto again;
477     } else if (i <= 0 && !*ok) {
478         return i;
479     }
480
481     if (mt >= 0 && s->s3->tmp.message_type != mt) {
482         al = SSL_AD_UNEXPECTED_MESSAGE;
483         SSLerr(SSL_F_DTLS1_GET_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
484         goto f_err;
485     }
486
487     p = (unsigned char *)s->init_buf->data;
488
489     if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
490         if (s->msg_callback) {
491             s->msg_callback(0, s->version, SSL3_RT_CHANGE_CIPHER_SPEC,
492                             p, 1, s, s->msg_callback_arg);
493         }
494         /*
495          * This isn't a real handshake message so skip the processing below.
496          * dtls1_get_message_fragment() will never return a CCS if mt == -1,
497          * so we are ok to continue in that case.
498          */
499         return i;
500     }
501
502     msg_len = msg_hdr->msg_len;
503
504     /* reconstruct message header */
505     *(p++) = msg_hdr->type;
506     l2n3(msg_len, p);
507     s2n(msg_hdr->seq, p);
508     l2n3(0, p);
509     l2n3(msg_len, p);
510     if (s->version != DTLS1_BAD_VER) {
511         p -= DTLS1_HM_HEADER_LENGTH;
512         msg_len += DTLS1_HM_HEADER_LENGTH;
513     }
514
515     ssl3_finish_mac(s, p, msg_len);
516     if (s->msg_callback)
517         s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
518                         p, msg_len, s, s->msg_callback_arg);
519
520     memset(msg_hdr, 0, sizeof(*msg_hdr));
521
522     /* Don't change sequence numbers while listening */
523     if (!s->d1->listen)
524         s->d1->handshake_read_seq++;
525
526     s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
527     return s->init_num;
528
529  f_err:
530     ssl3_send_alert(s, SSL3_AL_FATAL, al);
531     *ok = 0;
532     return -1;
533 }
534
535 static int dtls1_preprocess_fragment(SSL *s, struct hm_header_st *msg_hdr,
536                                      int max)
537 {
538     size_t frag_off, frag_len, msg_len;
539
540     msg_len = msg_hdr->msg_len;
541     frag_off = msg_hdr->frag_off;
542     frag_len = msg_hdr->frag_len;
543
544     /* sanity checking */
545     if ((frag_off + frag_len) > msg_len) {
546         SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
547         return SSL_AD_ILLEGAL_PARAMETER;
548     }
549
550     if ((frag_off + frag_len) > (unsigned long)max) {
551         SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
552         return SSL_AD_ILLEGAL_PARAMETER;
553     }
554
555     if (s->d1->r_msg_hdr.frag_off == 0) { /* first fragment */
556         /*
557          * msg_len is limited to 2^24, but is effectively checked against max
558          * above
559          */
560         if (!BUF_MEM_grow_clean
561             (s->init_buf, msg_len + DTLS1_HM_HEADER_LENGTH)) {
562             SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, ERR_R_BUF_LIB);
563             return SSL_AD_INTERNAL_ERROR;
564         }
565
566         s->s3->tmp.message_size = msg_len;
567         s->d1->r_msg_hdr.msg_len = msg_len;
568         s->s3->tmp.message_type = msg_hdr->type;
569         s->d1->r_msg_hdr.type = msg_hdr->type;
570         s->d1->r_msg_hdr.seq = msg_hdr->seq;
571     } else if (msg_len != s->d1->r_msg_hdr.msg_len) {
572         /*
573          * They must be playing with us! BTW, failure to enforce upper limit
574          * would open possibility for buffer overrun.
575          */
576         SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
577         return SSL_AD_ILLEGAL_PARAMETER;
578     }
579
580     return 0;                   /* no error */
581 }
582
583 static int dtls1_retrieve_buffered_fragment(SSL *s, long max, int *ok)
584 {
585     /*-
586      * (0) check whether the desired fragment is available
587      * if so:
588      * (1) copy over the fragment to s->init_buf->data[]
589      * (2) update s->init_num
590      */
591     pitem *item;
592     hm_fragment *frag;
593     int al;
594
595     *ok = 0;
596     item = pqueue_peek(s->d1->buffered_messages);
597     if (item == NULL)
598         return 0;
599
600     frag = (hm_fragment *)item->data;
601
602     /* Don't return if reassembly still in progress */
603     if (frag->reassembly != NULL)
604         return 0;
605
606     if (s->d1->handshake_read_seq == frag->msg_header.seq) {
607         unsigned long frag_len = frag->msg_header.frag_len;
608         pqueue_pop(s->d1->buffered_messages);
609
610         al = dtls1_preprocess_fragment(s, &frag->msg_header, max);
611
612         if (al == 0) {          /* no alert */
613             unsigned char *p =
614                 (unsigned char *)s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
615             memcpy(&p[frag->msg_header.frag_off], frag->fragment,
616                    frag->msg_header.frag_len);
617         }
618
619         dtls1_hm_fragment_free(frag);
620         pitem_free(item);
621
622         if (al == 0) {
623             *ok = 1;
624             return frag_len;
625         }
626
627         ssl3_send_alert(s, SSL3_AL_FATAL, al);
628         s->init_num = 0;
629         *ok = 0;
630         return -1;
631     } else
632         return 0;
633 }
634
635 /*
636  * dtls1_max_handshake_message_len returns the maximum number of bytes
637  * permitted in a DTLS handshake message for |s|. The minimum is 16KB, but
638  * may be greater if the maximum certificate list size requires it.
639  */
640 static unsigned long dtls1_max_handshake_message_len(const SSL *s)
641 {
642     unsigned long max_len =
643         DTLS1_HM_HEADER_LENGTH + SSL3_RT_MAX_ENCRYPTED_LENGTH;
644     if (max_len < (unsigned long)s->max_cert_list)
645         return s->max_cert_list;
646     return max_len;
647 }
648
649 static int
650 dtls1_reassemble_fragment(SSL *s, const struct hm_header_st *msg_hdr, int *ok)
651 {
652     hm_fragment *frag = NULL;
653     pitem *item = NULL;
654     int i = -1, is_complete;
655     unsigned char seq64be[8];
656     unsigned long frag_len = msg_hdr->frag_len;
657
658     if ((msg_hdr->frag_off + frag_len) > msg_hdr->msg_len ||
659         msg_hdr->msg_len > dtls1_max_handshake_message_len(s))
660         goto err;
661
662     if (frag_len == 0)
663         return DTLS1_HM_FRAGMENT_RETRY;
664
665     /* Try to find item in queue */
666     memset(seq64be, 0, sizeof(seq64be));
667     seq64be[6] = (unsigned char)(msg_hdr->seq >> 8);
668     seq64be[7] = (unsigned char)msg_hdr->seq;
669     item = pqueue_find(s->d1->buffered_messages, seq64be);
670
671     if (item == NULL) {
672         frag = dtls1_hm_fragment_new(msg_hdr->msg_len, 1);
673         if (frag == NULL)
674             goto err;
675         memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
676         frag->msg_header.frag_len = frag->msg_header.msg_len;
677         frag->msg_header.frag_off = 0;
678     } else {
679         frag = (hm_fragment *)item->data;
680         if (frag->msg_header.msg_len != msg_hdr->msg_len) {
681             item = NULL;
682             frag = NULL;
683             goto err;
684         }
685     }
686
687     /*
688      * If message is already reassembled, this must be a retransmit and can
689      * be dropped. In this case item != NULL and so frag does not need to be
690      * freed.
691      */
692     if (frag->reassembly == NULL) {
693         unsigned char devnull[256];
694
695         while (frag_len) {
696             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
697                                           devnull,
698                                           frag_len >
699                                           sizeof(devnull) ? sizeof(devnull) :
700                                           frag_len, 0);
701             if (i <= 0)
702                 goto err;
703             frag_len -= i;
704         }
705         return DTLS1_HM_FRAGMENT_RETRY;
706     }
707
708     /* read the body of the fragment (header has already been read */
709     i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
710                                   frag->fragment + msg_hdr->frag_off,
711                                   frag_len, 0);
712     if ((unsigned long)i != frag_len)
713         i = -1;
714     if (i <= 0)
715         goto err;
716
717     RSMBLY_BITMASK_MARK(frag->reassembly, (long)msg_hdr->frag_off,
718                         (long)(msg_hdr->frag_off + frag_len));
719
720     RSMBLY_BITMASK_IS_COMPLETE(frag->reassembly, (long)msg_hdr->msg_len,
721                                is_complete);
722
723     if (is_complete) {
724         OPENSSL_free(frag->reassembly);
725         frag->reassembly = NULL;
726     }
727
728     if (item == NULL) {
729         item = pitem_new(seq64be, frag);
730         if (item == NULL) {
731             i = -1;
732             goto err;
733         }
734
735         item = pqueue_insert(s->d1->buffered_messages, item);
736         /*
737          * pqueue_insert fails iff a duplicate item is inserted. However,
738          * |item| cannot be a duplicate. If it were, |pqueue_find|, above,
739          * would have returned it and control would never have reached this
740          * branch.
741          */
742         OPENSSL_assert(item != NULL);
743     }
744
745     return DTLS1_HM_FRAGMENT_RETRY;
746
747  err:
748     if (item == NULL)
749         dtls1_hm_fragment_free(frag);
750     *ok = 0;
751     return i;
752 }
753
754 static int
755 dtls1_process_out_of_seq_message(SSL *s, const struct hm_header_st *msg_hdr,
756                                  int *ok)
757 {
758     int i = -1;
759     hm_fragment *frag = NULL;
760     pitem *item = NULL;
761     unsigned char seq64be[8];
762     unsigned long frag_len = msg_hdr->frag_len;
763
764     if ((msg_hdr->frag_off + frag_len) > msg_hdr->msg_len)
765         goto err;
766
767     /* Try to find item in queue, to prevent duplicate entries */
768     memset(seq64be, 0, sizeof(seq64be));
769     seq64be[6] = (unsigned char)(msg_hdr->seq >> 8);
770     seq64be[7] = (unsigned char)msg_hdr->seq;
771     item = pqueue_find(s->d1->buffered_messages, seq64be);
772
773     /*
774      * If we already have an entry and this one is a fragment, don't discard
775      * it and rather try to reassemble it.
776      */
777     if (item != NULL && frag_len != msg_hdr->msg_len)
778         item = NULL;
779
780     /*
781      * Discard the message if sequence number was already there, is too far
782      * in the future, already in the queue or if we received a FINISHED
783      * before the SERVER_HELLO, which then must be a stale retransmit.
784      */
785     if (msg_hdr->seq <= s->d1->handshake_read_seq ||
786         msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL ||
787         (s->d1->handshake_read_seq == 0 && msg_hdr->type == SSL3_MT_FINISHED))
788     {
789         unsigned char devnull[256];
790
791         while (frag_len) {
792             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
793                                           devnull,
794                                           frag_len >
795                                           sizeof(devnull) ? sizeof(devnull) :
796                                           frag_len, 0);
797             if (i <= 0)
798                 goto err;
799             frag_len -= i;
800         }
801     } else {
802         if (frag_len != msg_hdr->msg_len)
803             return dtls1_reassemble_fragment(s, msg_hdr, ok);
804
805         if (frag_len > dtls1_max_handshake_message_len(s))
806             goto err;
807
808         frag = dtls1_hm_fragment_new(frag_len, 0);
809         if (frag == NULL)
810             goto err;
811
812         memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
813
814         if (frag_len) {
815             /*
816              * read the body of the fragment (header has already been read
817              */
818             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
819                                           frag->fragment, frag_len, 0);
820             if ((unsigned long)i != frag_len)
821                 i = -1;
822             if (i <= 0)
823                 goto err;
824         }
825
826         item = pitem_new(seq64be, frag);
827         if (item == NULL)
828             goto err;
829
830         item = pqueue_insert(s->d1->buffered_messages, item);
831         /*
832          * pqueue_insert fails iff a duplicate item is inserted. However,
833          * |item| cannot be a duplicate. If it were, |pqueue_find|, above,
834          * would have returned it. Then, either |frag_len| !=
835          * |msg_hdr->msg_len| in which case |item| is set to NULL and it will
836          * have been processed with |dtls1_reassemble_fragment|, above, or
837          * the record will have been discarded.
838          */
839         OPENSSL_assert(item != NULL);
840     }
841
842     return DTLS1_HM_FRAGMENT_RETRY;
843
844  err:
845     if (item == NULL)
846         dtls1_hm_fragment_free(frag);
847     *ok = 0;
848     return i;
849 }
850
851 static long
852 dtls1_get_message_fragment(SSL *s, int st1, int stn, int mt, long max, int *ok)
853 {
854     unsigned char wire[DTLS1_HM_HEADER_LENGTH];
855     unsigned long len, frag_off, frag_len;
856     int i, al, recvd_type;
857     struct hm_header_st msg_hdr;
858
859  redo:
860     /* see if we have the required fragment already */
861     if ((frag_len = dtls1_retrieve_buffered_fragment(s, max, ok)) || *ok) {
862         if (*ok)
863             s->init_num = frag_len;
864         return frag_len;
865     }
866
867     /* read handshake message header */
868     i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type, wire,
869                                   DTLS1_HM_HEADER_LENGTH, 0);
870     if (i <= 0) {               /* nbio, or an error */
871         s->rwstate = SSL_READING;
872         *ok = 0;
873         return i;
874     }
875     if(recvd_type == SSL3_RT_CHANGE_CIPHER_SPEC) {
876         /* This isn't a real handshake message - its a CCS.
877          * There is no message sequence number in a CCS to give us confidence
878          * that this was really intended to be at this point in the handshake
879          * sequence. Therefore we only allow this if we were explicitly looking
880          * for it (i.e. if |mt| is -1 we still don't allow it).
881          */
882         if(mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
883             if (wire[0] != SSL3_MT_CCS) {
884                 al = SSL_AD_UNEXPECTED_MESSAGE;
885                 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL_R_BAD_CHANGE_CIPHER_SPEC);
886                 goto f_err;
887             }
888
889             memcpy(s->init_buf->data, wire, i);
890             s->init_num = i - 1;
891             s->init_msg = s->init_buf->data + 1;
892             s->s3->tmp.message_type = SSL3_MT_CHANGE_CIPHER_SPEC;
893             s->s3->tmp.message_size = i - 1;
894             s->state = stn;
895             *ok = 1;
896             return i-1;
897         } else {
898             /*
899              * We weren't expecting a CCS yet. Probably something got
900              * re-ordered or this is a retransmit. We should drop this and try
901              * again.
902              */
903             s->init_num = 0;
904             goto redo;
905         }
906     }
907
908     /* Handshake fails if message header is incomplete */
909     if (i != DTLS1_HM_HEADER_LENGTH) {
910         al = SSL_AD_UNEXPECTED_MESSAGE;
911         SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL_R_UNEXPECTED_MESSAGE);
912         goto f_err;
913     }
914
915     /* parse the message fragment header */
916     dtls1_get_message_header(wire, &msg_hdr);
917
918     len = msg_hdr.msg_len;
919     frag_off = msg_hdr.frag_off;
920     frag_len = msg_hdr.frag_len;
921
922     /*
923      * We must have at least frag_len bytes left in the record to be read.
924      * Fragments must not span records.
925      */
926     if (frag_len > RECORD_LAYER_get_rrec_length(&s->rlayer)) {
927         al = SSL3_AD_ILLEGAL_PARAMETER;
928         SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL_R_BAD_LENGTH);
929         goto f_err;
930     }
931
932     /*
933      * if this is a future (or stale) message it gets buffered
934      * (or dropped)--no further processing at this time
935      * While listening, we accept seq 1 (ClientHello with cookie)
936      * although we're still expecting seq 0 (ClientHello)
937      */
938     if (msg_hdr.seq != s->d1->handshake_read_seq
939         && !(s->d1->listen && msg_hdr.seq == 1))
940         return dtls1_process_out_of_seq_message(s, &msg_hdr, ok);
941
942     if (frag_len && frag_len < len)
943         return dtls1_reassemble_fragment(s, &msg_hdr, ok);
944
945     if (!s->server && s->d1->r_msg_hdr.frag_off == 0 &&
946         wire[0] == SSL3_MT_HELLO_REQUEST) {
947         /*
948          * The server may always send 'Hello Request' messages -- we are
949          * doing a handshake anyway now, so ignore them if their format is
950          * correct. Does not count for 'Finished' MAC.
951          */
952         if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0) {
953             if (s->msg_callback)
954                 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
955                                 wire, DTLS1_HM_HEADER_LENGTH, s,
956                                 s->msg_callback_arg);
957
958             s->init_num = 0;
959             goto redo;
960         } else {                /* Incorrectly formated Hello request */
961
962             al = SSL_AD_UNEXPECTED_MESSAGE;
963             SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,
964                    SSL_R_UNEXPECTED_MESSAGE);
965             goto f_err;
966         }
967     }
968
969     if ((al = dtls1_preprocess_fragment(s, &msg_hdr, max)))
970         goto f_err;
971
972     if (frag_len > 0) {
973         unsigned char *p =
974             (unsigned char *)s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
975
976         i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
977                                       &p[frag_off], frag_len, 0);
978
979         /*
980          * This shouldn't ever fail due to NBIO because we already checked
981          * that we have enough data in the record
982          */
983         if (i <= 0) {
984             s->rwstate = SSL_READING;
985             *ok = 0;
986             return i;
987         }
988     } else
989         i = 0;
990
991     /*
992      * XDTLS: an incorrectly formatted fragment should cause the handshake
993      * to fail
994      */
995     if (i != (int)frag_len) {
996         al = SSL3_AD_ILLEGAL_PARAMETER;
997         SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL3_AD_ILLEGAL_PARAMETER);
998         goto f_err;
999     }
1000
1001     *ok = 1;
1002     s->state = stn;
1003
1004     /*
1005      * Note that s->init_num is *not* used as current offset in
1006      * s->init_buf->data, but as a counter summing up fragments' lengths: as
1007      * soon as they sum up to handshake packet length, we assume we have got
1008      * all the fragments.
1009      */
1010     s->init_num = frag_len;
1011     return frag_len;
1012
1013  f_err:
1014     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1015     s->init_num = 0;
1016
1017     *ok = 0;
1018     return (-1);
1019 }
1020
1021 /*-
1022  * for these 2 messages, we need to
1023  * ssl->enc_read_ctx                    re-init
1024  * ssl->rlayer.read_sequence            zero
1025  * ssl->s3->read_mac_secret             re-init
1026  * ssl->session->read_sym_enc           assign
1027  * ssl->session->read_compression       assign
1028  * ssl->session->read_hash              assign
1029  */
1030 int dtls1_send_change_cipher_spec(SSL *s, int a, int b)
1031 {
1032     unsigned char *p;
1033
1034     if (s->state == a) {
1035         p = (unsigned char *)s->init_buf->data;
1036         *p++ = SSL3_MT_CCS;
1037         s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1038         s->init_num = DTLS1_CCS_HEADER_LENGTH;
1039
1040         if (s->version == DTLS1_BAD_VER) {
1041             s->d1->next_handshake_write_seq++;
1042             s2n(s->d1->handshake_write_seq, p);
1043             s->init_num += 2;
1044         }
1045
1046         s->init_off = 0;
1047
1048         dtls1_set_message_header_int(s, SSL3_MT_CCS, 0,
1049                                      s->d1->handshake_write_seq, 0, 0);
1050
1051         /* buffer the message to handle re-xmits */
1052         if (!dtls1_buffer_message(s, 1)) {
1053             SSLerr(SSL_F_DTLS1_SEND_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
1054             return -1;
1055         }
1056
1057         s->state = b;
1058     }
1059
1060     /* SSL3_ST_CW_CHANGE_B */
1061     return (dtls1_do_write(s, SSL3_RT_CHANGE_CIPHER_SPEC));
1062 }
1063
1064 int dtls1_read_failed(SSL *s, int code)
1065 {
1066     if (code > 0) {
1067         fprintf(stderr, "invalid state reached %s:%d", __FILE__, __LINE__);
1068         return 1;
1069     }
1070
1071     if (!dtls1_is_timer_expired(s)) {
1072         /*
1073          * not a timeout, none of our business, let higher layers handle
1074          * this.  in fact it's probably an error
1075          */
1076         return code;
1077     }
1078 #ifndef OPENSSL_NO_HEARTBEATS
1079     /* done, no need to send a retransmit */
1080     if (!SSL_in_init(s) && !s->tlsext_hb_pending)
1081 #else
1082     /* done, no need to send a retransmit */
1083     if (!SSL_in_init(s))
1084 #endif
1085     {
1086         BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
1087         return code;
1088     }
1089
1090     return dtls1_handle_timeout(s);
1091 }
1092
1093 int dtls1_get_queue_priority(unsigned short seq, int is_ccs)
1094 {
1095     /*
1096      * The index of the retransmission queue actually is the message sequence
1097      * number, since the queue only contains messages of a single handshake.
1098      * However, the ChangeCipherSpec has no message sequence number and so
1099      * using only the sequence will result in the CCS and Finished having the
1100      * same index. To prevent this, the sequence number is multiplied by 2.
1101      * In case of a CCS 1 is subtracted. This does not only differ CSS and
1102      * Finished, it also maintains the order of the index (important for
1103      * priority queues) and fits in the unsigned short variable.
1104      */
1105     return seq * 2 - is_ccs;
1106 }
1107
1108 int dtls1_retransmit_buffered_messages(SSL *s)
1109 {
1110     pqueue sent = s->d1->sent_messages;
1111     piterator iter;
1112     pitem *item;
1113     hm_fragment *frag;
1114     int found = 0;
1115
1116     iter = pqueue_iterator(sent);
1117
1118     for (item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter)) {
1119         frag = (hm_fragment *)item->data;
1120         if (dtls1_retransmit_message(s, (unsigned short)
1121                                      dtls1_get_queue_priority
1122                                      (frag->msg_header.seq,
1123                                       frag->msg_header.is_ccs), 0,
1124                                      &found) <= 0 && found) {
1125             fprintf(stderr, "dtls1_retransmit_message() failed\n");
1126             return -1;
1127         }
1128     }
1129
1130     return 1;
1131 }
1132
1133 int dtls1_buffer_message(SSL *s, int is_ccs)
1134 {
1135     pitem *item;
1136     hm_fragment *frag;
1137     unsigned char seq64be[8];
1138
1139     /*
1140      * this function is called immediately after a message has been
1141      * serialized
1142      */
1143     OPENSSL_assert(s->init_off == 0);
1144
1145     frag = dtls1_hm_fragment_new(s->init_num, 0);
1146     if (!frag)
1147         return 0;
1148
1149     memcpy(frag->fragment, s->init_buf->data, s->init_num);
1150
1151     if (is_ccs) {
1152         /* For DTLS1_BAD_VER the header length is non-standard */
1153         OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1154                        ((s->version==DTLS1_BAD_VER)?3:DTLS1_CCS_HEADER_LENGTH)
1155                        == (unsigned int)s->init_num);
1156     } else {
1157         OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1158                        DTLS1_HM_HEADER_LENGTH == (unsigned int)s->init_num);
1159     }
1160
1161     frag->msg_header.msg_len = s->d1->w_msg_hdr.msg_len;
1162     frag->msg_header.seq = s->d1->w_msg_hdr.seq;
1163     frag->msg_header.type = s->d1->w_msg_hdr.type;
1164     frag->msg_header.frag_off = 0;
1165     frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
1166     frag->msg_header.is_ccs = is_ccs;
1167
1168     /* save current state */
1169     frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
1170     frag->msg_header.saved_retransmit_state.write_hash = s->write_hash;
1171     frag->msg_header.saved_retransmit_state.compress = s->compress;
1172     frag->msg_header.saved_retransmit_state.session = s->session;
1173     frag->msg_header.saved_retransmit_state.epoch =
1174         DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer);
1175
1176     memset(seq64be, 0, sizeof(seq64be));
1177     seq64be[6] =
1178         (unsigned
1179          char)(dtls1_get_queue_priority(frag->msg_header.seq,
1180                                         frag->msg_header.is_ccs) >> 8);
1181     seq64be[7] =
1182         (unsigned
1183          char)(dtls1_get_queue_priority(frag->msg_header.seq,
1184                                         frag->msg_header.is_ccs));
1185
1186     item = pitem_new(seq64be, frag);
1187     if (item == NULL) {
1188         dtls1_hm_fragment_free(frag);
1189         return 0;
1190     }
1191
1192     pqueue_insert(s->d1->sent_messages, item);
1193     return 1;
1194 }
1195
1196 int
1197 dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
1198                          int *found)
1199 {
1200     int ret;
1201     /* XDTLS: for now assuming that read/writes are blocking */
1202     pitem *item;
1203     hm_fragment *frag;
1204     unsigned long header_length;
1205     unsigned char seq64be[8];
1206     struct dtls1_retransmit_state saved_state;
1207
1208     /*-
1209       OPENSSL_assert(s->init_num == 0);
1210       OPENSSL_assert(s->init_off == 0);
1211      */
1212
1213     /* XDTLS:  the requested message ought to be found, otherwise error */
1214     memset(seq64be, 0, sizeof(seq64be));
1215     seq64be[6] = (unsigned char)(seq >> 8);
1216     seq64be[7] = (unsigned char)seq;
1217
1218     item = pqueue_find(s->d1->sent_messages, seq64be);
1219     if (item == NULL) {
1220         fprintf(stderr, "retransmit:  message %d non-existant\n", seq);
1221         *found = 0;
1222         return 0;
1223     }
1224
1225     *found = 1;
1226     frag = (hm_fragment *)item->data;
1227
1228     if (frag->msg_header.is_ccs)
1229         header_length = DTLS1_CCS_HEADER_LENGTH;
1230     else
1231         header_length = DTLS1_HM_HEADER_LENGTH;
1232
1233     memcpy(s->init_buf->data, frag->fragment,
1234            frag->msg_header.msg_len + header_length);
1235     s->init_num = frag->msg_header.msg_len + header_length;
1236
1237     dtls1_set_message_header_int(s, frag->msg_header.type,
1238                                  frag->msg_header.msg_len,
1239                                  frag->msg_header.seq, 0,
1240                                  frag->msg_header.frag_len);
1241
1242     /* save current state */
1243     saved_state.enc_write_ctx = s->enc_write_ctx;
1244     saved_state.write_hash = s->write_hash;
1245     saved_state.compress = s->compress;
1246     saved_state.session = s->session;
1247     saved_state.epoch = DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer);
1248
1249     s->d1->retransmitting = 1;
1250
1251     /* restore state in which the message was originally sent */
1252     s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
1253     s->write_hash = frag->msg_header.saved_retransmit_state.write_hash;
1254     s->compress = frag->msg_header.saved_retransmit_state.compress;
1255     s->session = frag->msg_header.saved_retransmit_state.session;
1256     DTLS_RECORD_LAYER_set_saved_w_epoch(&s->rlayer,
1257         frag->msg_header.saved_retransmit_state.epoch);
1258
1259     ret = dtls1_do_write(s, frag->msg_header.is_ccs ?
1260                          SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
1261
1262     /* restore current state */
1263     s->enc_write_ctx = saved_state.enc_write_ctx;
1264     s->write_hash = saved_state.write_hash;
1265     s->compress = saved_state.compress;
1266     s->session = saved_state.session;
1267     DTLS_RECORD_LAYER_set_saved_w_epoch(&s->rlayer, saved_state.epoch);
1268
1269     s->d1->retransmitting = 0;
1270
1271     (void)BIO_flush(SSL_get_wbio(s));
1272     return ret;
1273 }
1274
1275 /* call this function when the buffered messages are no longer needed */
1276 void dtls1_clear_record_buffer(SSL *s)
1277 {
1278     pitem *item;
1279
1280     for (item = pqueue_pop(s->d1->sent_messages);
1281          item != NULL; item = pqueue_pop(s->d1->sent_messages)) {
1282         dtls1_hm_fragment_free((hm_fragment *)item->data);
1283         pitem_free(item);
1284     }
1285 }
1286
1287 void dtls1_set_message_header(SSL *s, unsigned char *p,
1288                                         unsigned char mt, unsigned long len,
1289                                         unsigned long frag_off,
1290                                         unsigned long frag_len)
1291 {
1292     /* Don't change sequence numbers while listening */
1293     if (frag_off == 0 && !s->d1->listen) {
1294         s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1295         s->d1->next_handshake_write_seq++;
1296     }
1297
1298     dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
1299                                  frag_off, frag_len);
1300 }
1301
1302 /* don't actually do the writing, wait till the MTU has been retrieved */
1303 static void
1304 dtls1_set_message_header_int(SSL *s, unsigned char mt,
1305                              unsigned long len, unsigned short seq_num,
1306                              unsigned long frag_off, unsigned long frag_len)
1307 {
1308     struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1309
1310     msg_hdr->type = mt;
1311     msg_hdr->msg_len = len;
1312     msg_hdr->seq = seq_num;
1313     msg_hdr->frag_off = frag_off;
1314     msg_hdr->frag_len = frag_len;
1315 }
1316
1317 static void
1318 dtls1_fix_message_header(SSL *s, unsigned long frag_off,
1319                          unsigned long frag_len)
1320 {
1321     struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1322
1323     msg_hdr->frag_off = frag_off;
1324     msg_hdr->frag_len = frag_len;
1325 }
1326
1327 static unsigned char *dtls1_write_message_header(SSL *s, unsigned char *p)
1328 {
1329     struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1330
1331     *p++ = msg_hdr->type;
1332     l2n3(msg_hdr->msg_len, p);
1333
1334     s2n(msg_hdr->seq, p);
1335     l2n3(msg_hdr->frag_off, p);
1336     l2n3(msg_hdr->frag_len, p);
1337
1338     return p;
1339 }
1340
1341 unsigned int dtls1_link_min_mtu(void)
1342 {
1343     return (g_probable_mtu[(sizeof(g_probable_mtu) /
1344                             sizeof(g_probable_mtu[0])) - 1]);
1345 }
1346
1347 unsigned int dtls1_min_mtu(SSL *s)
1348 {
1349     return dtls1_link_min_mtu() - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
1350 }
1351
1352 void
1353 dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr)
1354 {
1355     memset(msg_hdr, 0, sizeof(*msg_hdr));
1356     msg_hdr->type = *(data++);
1357     n2l3(data, msg_hdr->msg_len);
1358
1359     n2s(data, msg_hdr->seq);
1360     n2l3(data, msg_hdr->frag_off);
1361     n2l3(data, msg_hdr->frag_len);
1362 }
1363
1364 int dtls1_shutdown(SSL *s)
1365 {
1366     int ret;
1367 #ifndef OPENSSL_NO_SCTP
1368     if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
1369         !(s->shutdown & SSL_SENT_SHUTDOWN)) {
1370         ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
1371         if (ret < 0)
1372             return -1;
1373
1374         if (ret == 0)
1375             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1,
1376                      NULL);
1377     }
1378 #endif
1379     ret = ssl3_shutdown(s);
1380 #ifndef OPENSSL_NO_SCTP
1381     BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL);
1382 #endif
1383     return ret;
1384 }
1385
1386 #ifndef OPENSSL_NO_HEARTBEATS
1387 int dtls1_process_heartbeat(SSL *s, unsigned char *p, unsigned int length)
1388 {
1389     unsigned char *pl;
1390     unsigned short hbtype;
1391     unsigned int payload;
1392     unsigned int padding = 16;  /* Use minimum padding */
1393
1394     if (s->msg_callback)
1395         s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT,
1396                         p, length, s, s->msg_callback_arg);
1397
1398     /* Read type and payload length first */
1399     if (1 + 2 + 16 > length)
1400         return 0;               /* silently discard */
1401     if (length > SSL3_RT_MAX_PLAIN_LENGTH)
1402         return 0;               /* silently discard per RFC 6520 sec. 4 */
1403
1404     hbtype = *p++;
1405     n2s(p, payload);
1406     if (1 + 2 + payload + 16 > length)
1407         return 0;               /* silently discard per RFC 6520 sec. 4 */
1408     pl = p;
1409
1410     if (hbtype == TLS1_HB_REQUEST) {
1411         unsigned char *buffer, *bp;
1412         unsigned int write_length = 1 /* heartbeat type */  +
1413             2 /* heartbeat length */  +
1414             payload + padding;
1415         int r;
1416
1417         if (write_length > SSL3_RT_MAX_PLAIN_LENGTH)
1418             return 0;
1419
1420         /*
1421          * Allocate memory for the response, size is 1 byte message type,
1422          * plus 2 bytes payload length, plus payload, plus padding
1423          */
1424         buffer = OPENSSL_malloc(write_length);
1425         if (buffer == NULL)
1426             return -1;
1427         bp = buffer;
1428
1429         /* Enter response type, length and copy payload */
1430         *bp++ = TLS1_HB_RESPONSE;
1431         s2n(payload, bp);
1432         memcpy(bp, pl, payload);
1433         bp += payload;
1434         /* Random padding */
1435         if (RAND_bytes(bp, padding) <= 0) {
1436             OPENSSL_free(buffer);
1437             return -1;
1438         }
1439
1440         r = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buffer, write_length);
1441
1442         if (r >= 0 && s->msg_callback)
1443             s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
1444                             buffer, write_length, s, s->msg_callback_arg);
1445
1446         OPENSSL_free(buffer);
1447
1448         if (r < 0)
1449             return r;
1450     } else if (hbtype == TLS1_HB_RESPONSE) {
1451         unsigned int seq;
1452
1453         /*
1454          * We only send sequence numbers (2 bytes unsigned int), and 16
1455          * random bytes, so we just try to read the sequence number
1456          */
1457         n2s(pl, seq);
1458
1459         if (payload == 18 && seq == s->tlsext_hb_seq) {
1460             dtls1_stop_timer(s);
1461             s->tlsext_hb_seq++;
1462             s->tlsext_hb_pending = 0;
1463         }
1464     }
1465
1466     return 0;
1467 }
1468
1469 int dtls1_heartbeat(SSL *s)
1470 {
1471     unsigned char *buf, *p;
1472     int ret = -1;
1473     unsigned int payload = 18;  /* Sequence number + random bytes */
1474     unsigned int padding = 16;  /* Use minimum padding */
1475
1476     /* Only send if peer supports and accepts HB requests... */
1477     if (!(s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) ||
1478         s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_SEND_REQUESTS) {
1479         SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT);
1480         return -1;
1481     }
1482
1483     /* ...and there is none in flight yet... */
1484     if (s->tlsext_hb_pending) {
1485         SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PENDING);
1486         return -1;
1487     }
1488
1489     /* ...and no handshake in progress. */
1490     if (SSL_in_init(s) || s->in_handshake) {
1491         SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_UNEXPECTED_MESSAGE);
1492         return -1;
1493     }
1494
1495     /*
1496      * Check if padding is too long, payload and padding must not exceed 2^14
1497      * - 3 = 16381 bytes in total.
1498      */
1499     OPENSSL_assert(payload + padding <= 16381);
1500
1501     /*-
1502      * Create HeartBeat message, we just use a sequence number
1503      * as payload to distuingish different messages and add
1504      * some random stuff.
1505      *  - Message Type, 1 byte
1506      *  - Payload Length, 2 bytes (unsigned int)
1507      *  - Payload, the sequence number (2 bytes uint)
1508      *  - Payload, random bytes (16 bytes uint)
1509      *  - Padding
1510      */
1511     buf = OPENSSL_malloc(1 + 2 + payload + padding);
1512     if (buf == NULL) {
1513         SSLerr(SSL_F_DTLS1_HEARTBEAT, ERR_R_MALLOC_FAILURE);
1514         return -1;
1515     }
1516     p = buf;
1517     /* Message Type */
1518     *p++ = TLS1_HB_REQUEST;
1519     /* Payload length (18 bytes here) */
1520     s2n(payload, p);
1521     /* Sequence number */
1522     s2n(s->tlsext_hb_seq, p);
1523     /* 16 random bytes */
1524     if (RAND_bytes(p, 16) <= 0) {
1525         SSLerr(SSL_F_DTLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR);
1526         goto err;
1527     }
1528     p += 16;
1529     /* Random padding */
1530     if (RAND_bytes(p, padding) <= 0) {
1531         SSLerr(SSL_F_DTLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR);
1532         goto err;
1533     }
1534
1535     ret = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buf, 3 + payload + padding);
1536     if (ret >= 0) {
1537         if (s->msg_callback)
1538             s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
1539                             buf, 3 + payload + padding,
1540                             s, s->msg_callback_arg);
1541
1542         dtls1_start_timer(s);
1543         s->tlsext_hb_pending = 1;
1544     }
1545
1546  err:
1547     OPENSSL_free(buf);
1548
1549     return ret;
1550 }
1551 #endif