44c5c1322ff1ebdc7ca5d85b821eb89d03555f2e
[openssl.git] / ssl / statem / statem_dtls.c
1 /* ssl/statem/statem_dtls.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 "statem_locl.h"
121 #include <openssl/buffer.h>
122 #include <openssl/rand.h>
123 #include <openssl/objects.h>
124 #include <openssl/evp.h>
125 #include <openssl/x509.h>
126
127 #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8)
128
129 #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \
130                         if ((end) - (start) <= 8) { \
131                                 long ii; \
132                                 for (ii = (start); ii < (end); ii++) bitmask[((ii) >> 3)] |= (1 << ((ii) & 7)); \
133                         } else { \
134                                 long ii; \
135                                 bitmask[((start) >> 3)] |= bitmask_start_values[((start) & 7)]; \
136                                 for (ii = (((start) >> 3) + 1); ii < ((((end) - 1)) >> 3); ii++) bitmask[ii] = 0xff; \
137                                 bitmask[(((end) - 1) >> 3)] |= bitmask_end_values[((end) & 7)]; \
138                         } }
139
140 #define RSMBLY_BITMASK_IS_COMPLETE(bitmask, msg_len, is_complete) { \
141                         long ii; \
142                         OPENSSL_assert((msg_len) > 0); \
143                         is_complete = 1; \
144                         if (bitmask[(((msg_len) - 1) >> 3)] != bitmask_end_values[((msg_len) & 7)]) is_complete = 0; \
145                         if (is_complete) for (ii = (((msg_len) - 1) >> 3) - 1; ii >= 0 ; ii--) \
146                                 if (bitmask[ii] != 0xff) { is_complete = 0; break; } }
147
148 static unsigned char bitmask_start_values[] =
149     { 0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80 };
150 static unsigned char bitmask_end_values[] =
151     { 0xff, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f };
152
153 static void dtls1_fix_message_header(SSL *s, unsigned long frag_off,
154                                      unsigned long frag_len);
155 static unsigned char *dtls1_write_message_header(SSL *s, unsigned char *p);
156 static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
157                                          unsigned long len,
158                                          unsigned short seq_num,
159                                          unsigned long frag_off,
160                                          unsigned long frag_len);
161 static int dtls_get_reassembled_message(SSL *s, long *len);
162
163 static hm_fragment *dtls1_hm_fragment_new(unsigned long frag_len,
164                                           int reassembly)
165 {
166     hm_fragment *frag = NULL;
167     unsigned char *buf = NULL;
168     unsigned char *bitmask = NULL;
169
170     frag = OPENSSL_malloc(sizeof(*frag));
171     if (frag == NULL)
172         return NULL;
173
174     if (frag_len) {
175         buf = OPENSSL_malloc(frag_len);
176         if (buf == NULL) {
177             OPENSSL_free(frag);
178             return NULL;
179         }
180     }
181
182     /* zero length fragment gets zero frag->fragment */
183     frag->fragment = buf;
184
185     /* Initialize reassembly bitmask if necessary */
186     if (reassembly) {
187         bitmask = OPENSSL_zalloc(RSMBLY_BITMASK_SIZE(frag_len));
188         if (bitmask == NULL) {
189             OPENSSL_free(buf);
190             OPENSSL_free(frag);
191             return NULL;
192         }
193     }
194
195     frag->reassembly = bitmask;
196
197     return frag;
198 }
199
200 void dtls1_hm_fragment_free(hm_fragment *frag)
201 {
202     if (!frag)
203         return;
204     if (frag->msg_header.is_ccs) {
205         EVP_CIPHER_CTX_free(frag->msg_header.
206                             saved_retransmit_state.enc_write_ctx);
207         EVP_MD_CTX_free(frag->msg_header.saved_retransmit_state.write_hash);
208     }
209     OPENSSL_free(frag->fragment);
210     OPENSSL_free(frag->reassembly);
211     OPENSSL_free(frag);
212 }
213
214 /*
215  * send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or
216  * SSL3_RT_CHANGE_CIPHER_SPEC)
217  */
218 int dtls1_do_write(SSL *s, int type)
219 {
220     int ret;
221     unsigned int curr_mtu;
222     int retry = 1;
223     unsigned int len, frag_off, mac_size, blocksize, used_len;
224
225     if (!dtls1_query_mtu(s))
226         return -1;
227
228     OPENSSL_assert(s->d1->mtu >= dtls1_min_mtu(s)); /* should have something
229                                                      * reasonable now */
230
231     if (s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
232         OPENSSL_assert(s->init_num ==
233                        (int)s->d1->w_msg_hdr.msg_len +
234                        DTLS1_HM_HEADER_LENGTH);
235
236     if (s->write_hash) {
237         if (s->enc_write_ctx
238             && ((EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_GCM_MODE) ||
239                 (EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_CCM_MODE)))
240             mac_size = 0;
241         else
242             mac_size = EVP_MD_CTX_size(s->write_hash);
243     } else
244         mac_size = 0;
245
246     if (s->enc_write_ctx &&
247         (EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_CBC_MODE))
248         blocksize = 2 * EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
249     else
250         blocksize = 0;
251
252     frag_off = 0;
253     /* s->init_num shouldn't ever be < 0...but just in case */
254     while (s->init_num > 0) {
255         if (type == SSL3_RT_HANDSHAKE && s->init_off != 0) {
256             /* We must be writing a fragment other than the first one */
257
258             if (frag_off > 0) {
259                 /* This is the first attempt at writing out this fragment */
260
261                 if (s->init_off <= DTLS1_HM_HEADER_LENGTH) {
262                     /*
263                      * Each fragment that was already sent must at least have
264                      * contained the message header plus one other byte.
265                      * Therefore |init_off| must have progressed by at least
266                      * |DTLS1_HM_HEADER_LENGTH + 1| bytes. If not something went
267                      * wrong.
268                      */
269                     return -1;
270                 }
271
272                 /*
273                  * Adjust |init_off| and |init_num| to allow room for a new
274                  * message header for this fragment.
275                  */
276                 s->init_off -= DTLS1_HM_HEADER_LENGTH;
277                 s->init_num += DTLS1_HM_HEADER_LENGTH;
278             } else {
279                 /*
280                  * We must have been called again after a retry so use the
281                  * fragment offset from our last attempt. We do not need
282                  * to adjust |init_off| and |init_num| as above, because
283                  * that should already have been done before the retry.
284                  */
285                 frag_off = s->d1->w_msg_hdr.frag_off;
286             }
287         }
288
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 (len < DTLS1_HM_HEADER_LENGTH) {
329                 /*
330                  * len is so small that we really can't do anything sensible
331                  * so fail
332                  */
333                 return -1;
334             }
335             dtls1_fix_message_header(s, frag_off,
336                                      len - DTLS1_HM_HEADER_LENGTH);
337
338             dtls1_write_message_header(s,
339                                        (unsigned char *)&s->init_buf->
340                                        data[s->init_off]);
341         }
342
343         ret = dtls1_write_bytes(s, type, &s->init_buf->data[s->init_off],
344                                 len);
345         if (ret < 0) {
346             /*
347              * might need to update MTU here, but we don't know which
348              * previous packet caused the failure -- so can't really
349              * retransmit anything.  continue as if everything is fine and
350              * wait for an alert to handle the retransmit
351              */
352             if (retry && BIO_ctrl(SSL_get_wbio(s),
353                                   BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL) > 0) {
354                 if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
355                     if (!dtls1_query_mtu(s))
356                         return -1;
357                     /* Have one more go */
358                     retry = 0;
359                 } else
360                     return -1;
361             } else {
362                 return (-1);
363             }
364         } else {
365
366             /*
367              * bad if this assert fails, only part of the handshake message
368              * got sent.  but why would this happen?
369              */
370             OPENSSL_assert(len == (unsigned int)ret);
371
372             if (type == SSL3_RT_HANDSHAKE && !s->d1->retransmitting) {
373                 /*
374                  * should not be done for 'Hello Request's, but in that case
375                  * we'll ignore the result anyway
376                  */
377                 unsigned char *p =
378                     (unsigned char *)&s->init_buf->data[s->init_off];
379                 const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
380                 int xlen;
381
382                 if (frag_off == 0 && s->version != DTLS1_BAD_VER) {
383                     /*
384                      * reconstruct message header is if it is being sent in
385                      * single fragment
386                      */
387                     *p++ = msg_hdr->type;
388                     l2n3(msg_hdr->msg_len, p);
389                     s2n(msg_hdr->seq, p);
390                     l2n3(0, p);
391                     l2n3(msg_hdr->msg_len, p);
392                     p -= DTLS1_HM_HEADER_LENGTH;
393                     xlen = ret;
394                 } else {
395                     p += DTLS1_HM_HEADER_LENGTH;
396                     xlen = ret - DTLS1_HM_HEADER_LENGTH;
397                 }
398
399                 ssl3_finish_mac(s, p, xlen);
400             }
401
402             if (ret == s->init_num) {
403                 if (s->msg_callback)
404                     s->msg_callback(1, s->version, type, s->init_buf->data,
405                                     (size_t)(s->init_off + s->init_num), s,
406                                     s->msg_callback_arg);
407
408                 s->init_off = 0; /* done writing this message */
409                 s->init_num = 0;
410
411                 return (1);
412             }
413             s->init_off += ret;
414             s->init_num -= ret;
415             ret -= DTLS1_HM_HEADER_LENGTH;
416             frag_off += ret;
417
418             /*
419              * We save the fragment offset for the next fragment so we have it
420              * available in case of an IO retry. We don't know the length of the
421              * next fragment yet so just set that to 0 for now. It will be
422              * updated again later.
423              */
424             dtls1_fix_message_header(s, frag_off, 0);
425         }
426     }
427     return (0);
428 }
429
430 int dtls_get_message(SSL *s, int *mt, unsigned long *len)
431 {
432     struct hm_header_st *msg_hdr;
433     unsigned char *p;
434     unsigned long msg_len;
435     int ok;
436     long tmplen;
437
438     msg_hdr = &s->d1->r_msg_hdr;
439     memset(msg_hdr, 0, sizeof(*msg_hdr));
440
441  again:
442     ok = dtls_get_reassembled_message(s, &tmplen);
443     if (tmplen == DTLS1_HM_BAD_FRAGMENT
444         || tmplen == DTLS1_HM_FRAGMENT_RETRY) {
445         /* bad fragment received */
446         goto again;
447     } else if (tmplen <= 0 && !ok) {
448         return 0;
449     }
450
451     *mt = s->s3->tmp.message_type;
452
453     p = (unsigned char *)s->init_buf->data;
454
455     if (*mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
456         if (s->msg_callback) {
457             s->msg_callback(0, s->version, SSL3_RT_CHANGE_CIPHER_SPEC,
458                             p, 1, s, s->msg_callback_arg);
459         }
460         /*
461          * This isn't a real handshake message so skip the processing below.
462          */
463         *len = (unsigned long)tmplen;
464         return 1;
465     }
466
467     msg_len = msg_hdr->msg_len;
468
469     /* reconstruct message header */
470     *(p++) = msg_hdr->type;
471     l2n3(msg_len, p);
472     s2n(msg_hdr->seq, p);
473     l2n3(0, p);
474     l2n3(msg_len, p);
475     if (s->version != DTLS1_BAD_VER) {
476         p -= DTLS1_HM_HEADER_LENGTH;
477         msg_len += DTLS1_HM_HEADER_LENGTH;
478     }
479
480     ssl3_finish_mac(s, p, msg_len);
481     if (s->msg_callback)
482         s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
483                         p, msg_len, s, s->msg_callback_arg);
484
485     memset(msg_hdr, 0, sizeof(*msg_hdr));
486
487     s->d1->handshake_read_seq++;
488
489
490     s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
491     *len = s->init_num;
492
493     return 1;
494 }
495
496 static int dtls1_preprocess_fragment(SSL *s, struct hm_header_st *msg_hdr)
497 {
498     size_t frag_off, frag_len, msg_len;
499
500     msg_len = msg_hdr->msg_len;
501     frag_off = msg_hdr->frag_off;
502     frag_len = msg_hdr->frag_len;
503
504     /* sanity checking */
505     if ((frag_off + frag_len) > msg_len) {
506         SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
507         return SSL_AD_ILLEGAL_PARAMETER;
508     }
509
510     if (s->d1->r_msg_hdr.frag_off == 0) { /* first fragment */
511         /*
512          * msg_len is limited to 2^24, but is effectively checked against max
513          * above
514          */
515         if (!BUF_MEM_grow_clean
516             (s->init_buf, msg_len + DTLS1_HM_HEADER_LENGTH)) {
517             SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, ERR_R_BUF_LIB);
518             return SSL_AD_INTERNAL_ERROR;
519         }
520
521         s->s3->tmp.message_size = msg_len;
522         s->d1->r_msg_hdr.msg_len = msg_len;
523         s->s3->tmp.message_type = msg_hdr->type;
524         s->d1->r_msg_hdr.type = msg_hdr->type;
525         s->d1->r_msg_hdr.seq = msg_hdr->seq;
526     } else if (msg_len != s->d1->r_msg_hdr.msg_len) {
527         /*
528          * They must be playing with us! BTW, failure to enforce upper limit
529          * would open possibility for buffer overrun.
530          */
531         SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
532         return SSL_AD_ILLEGAL_PARAMETER;
533     }
534
535     return 0;                   /* no error */
536 }
537
538 static int dtls1_retrieve_buffered_fragment(SSL *s, int *ok)
539 {
540     /*-
541      * (0) check whether the desired fragment is available
542      * if so:
543      * (1) copy over the fragment to s->init_buf->data[]
544      * (2) update s->init_num
545      */
546     pitem *item;
547     hm_fragment *frag;
548     int al;
549
550     *ok = 0;
551     item = pqueue_peek(s->d1->buffered_messages);
552     if (item == NULL)
553         return 0;
554
555     frag = (hm_fragment *)item->data;
556
557     /* Don't return if reassembly still in progress */
558     if (frag->reassembly != NULL)
559         return 0;
560
561     if (s->d1->handshake_read_seq == frag->msg_header.seq) {
562         unsigned long frag_len = frag->msg_header.frag_len;
563         pqueue_pop(s->d1->buffered_messages);
564
565         al = dtls1_preprocess_fragment(s, &frag->msg_header);
566
567         if (al == 0) {          /* no alert */
568             unsigned char *p =
569                 (unsigned char *)s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
570             memcpy(&p[frag->msg_header.frag_off], frag->fragment,
571                    frag->msg_header.frag_len);
572         }
573
574         dtls1_hm_fragment_free(frag);
575         pitem_free(item);
576
577         if (al == 0) {
578             *ok = 1;
579             return frag_len;
580         }
581
582         ssl3_send_alert(s, SSL3_AL_FATAL, al);
583         s->init_num = 0;
584         *ok = 0;
585         return -1;
586     } else
587         return 0;
588 }
589
590 /*
591  * dtls1_max_handshake_message_len returns the maximum number of bytes
592  * permitted in a DTLS handshake message for |s|. The minimum is 16KB, but
593  * may be greater if the maximum certificate list size requires it.
594  */
595 static unsigned long dtls1_max_handshake_message_len(const SSL *s)
596 {
597     unsigned long max_len =
598         DTLS1_HM_HEADER_LENGTH + SSL3_RT_MAX_ENCRYPTED_LENGTH;
599     if (max_len < (unsigned long)s->max_cert_list)
600         return s->max_cert_list;
601     return max_len;
602 }
603
604 static int
605 dtls1_reassemble_fragment(SSL *s, const struct hm_header_st *msg_hdr, int *ok)
606 {
607     hm_fragment *frag = NULL;
608     pitem *item = NULL;
609     int i = -1, is_complete;
610     unsigned char seq64be[8];
611     unsigned long frag_len = msg_hdr->frag_len;
612
613     if ((msg_hdr->frag_off + frag_len) > msg_hdr->msg_len ||
614         msg_hdr->msg_len > dtls1_max_handshake_message_len(s))
615         goto err;
616
617     if (frag_len == 0)
618         return DTLS1_HM_FRAGMENT_RETRY;
619
620     /* Try to find item in queue */
621     memset(seq64be, 0, sizeof(seq64be));
622     seq64be[6] = (unsigned char)(msg_hdr->seq >> 8);
623     seq64be[7] = (unsigned char)msg_hdr->seq;
624     item = pqueue_find(s->d1->buffered_messages, seq64be);
625
626     if (item == NULL) {
627         frag = dtls1_hm_fragment_new(msg_hdr->msg_len, 1);
628         if (frag == NULL)
629             goto err;
630         memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
631         frag->msg_header.frag_len = frag->msg_header.msg_len;
632         frag->msg_header.frag_off = 0;
633     } else {
634         frag = (hm_fragment *)item->data;
635         if (frag->msg_header.msg_len != msg_hdr->msg_len) {
636             item = NULL;
637             frag = NULL;
638             goto err;
639         }
640     }
641
642     /*
643      * If message is already reassembled, this must be a retransmit and can
644      * be dropped. In this case item != NULL and so frag does not need to be
645      * freed.
646      */
647     if (frag->reassembly == NULL) {
648         unsigned char devnull[256];
649
650         while (frag_len) {
651             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
652                                           devnull,
653                                           frag_len >
654                                           sizeof(devnull) ? sizeof(devnull) :
655                                           frag_len, 0);
656             if (i <= 0)
657                 goto err;
658             frag_len -= i;
659         }
660         return DTLS1_HM_FRAGMENT_RETRY;
661     }
662
663     /* read the body of the fragment (header has already been read */
664     i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
665                                   frag->fragment + msg_hdr->frag_off,
666                                   frag_len, 0);
667     if ((unsigned long)i != frag_len)
668         i = -1;
669     if (i <= 0)
670         goto err;
671
672     RSMBLY_BITMASK_MARK(frag->reassembly, (long)msg_hdr->frag_off,
673                         (long)(msg_hdr->frag_off + frag_len));
674
675     RSMBLY_BITMASK_IS_COMPLETE(frag->reassembly, (long)msg_hdr->msg_len,
676                                is_complete);
677
678     if (is_complete) {
679         OPENSSL_free(frag->reassembly);
680         frag->reassembly = NULL;
681     }
682
683     if (item == NULL) {
684         item = pitem_new(seq64be, frag);
685         if (item == NULL) {
686             i = -1;
687             goto err;
688         }
689
690         item = pqueue_insert(s->d1->buffered_messages, item);
691         /*
692          * pqueue_insert fails iff a duplicate item is inserted. However,
693          * |item| cannot be a duplicate. If it were, |pqueue_find|, above,
694          * would have returned it and control would never have reached this
695          * branch.
696          */
697         OPENSSL_assert(item != NULL);
698     }
699
700     return DTLS1_HM_FRAGMENT_RETRY;
701
702  err:
703     if (item == NULL)
704         dtls1_hm_fragment_free(frag);
705     *ok = 0;
706     return i;
707 }
708
709 static int
710 dtls1_process_out_of_seq_message(SSL *s, const struct hm_header_st *msg_hdr,
711                                  int *ok)
712 {
713     int i = -1;
714     hm_fragment *frag = NULL;
715     pitem *item = NULL;
716     unsigned char seq64be[8];
717     unsigned long frag_len = msg_hdr->frag_len;
718
719     if ((msg_hdr->frag_off + frag_len) > msg_hdr->msg_len)
720         goto err;
721
722     /* Try to find item in queue, to prevent duplicate entries */
723     memset(seq64be, 0, sizeof(seq64be));
724     seq64be[6] = (unsigned char)(msg_hdr->seq >> 8);
725     seq64be[7] = (unsigned char)msg_hdr->seq;
726     item = pqueue_find(s->d1->buffered_messages, seq64be);
727
728     /*
729      * If we already have an entry and this one is a fragment, don't discard
730      * it and rather try to reassemble it.
731      */
732     if (item != NULL && frag_len != msg_hdr->msg_len)
733         item = NULL;
734
735     /*
736      * Discard the message if sequence number was already there, is too far
737      * in the future, already in the queue or if we received a FINISHED
738      * before the SERVER_HELLO, which then must be a stale retransmit.
739      */
740     if (msg_hdr->seq <= s->d1->handshake_read_seq ||
741         msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL ||
742         (s->d1->handshake_read_seq == 0 && msg_hdr->type == SSL3_MT_FINISHED))
743     {
744         unsigned char devnull[256];
745
746         while (frag_len) {
747             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
748                                           devnull,
749                                           frag_len >
750                                           sizeof(devnull) ? sizeof(devnull) :
751                                           frag_len, 0);
752             if (i <= 0)
753                 goto err;
754             frag_len -= i;
755         }
756     } else {
757         if (frag_len != msg_hdr->msg_len)
758             return dtls1_reassemble_fragment(s, msg_hdr, ok);
759
760         if (frag_len > dtls1_max_handshake_message_len(s))
761             goto err;
762
763         frag = dtls1_hm_fragment_new(frag_len, 0);
764         if (frag == NULL)
765             goto err;
766
767         memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
768
769         if (frag_len) {
770             /*
771              * read the body of the fragment (header has already been read
772              */
773             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
774                                           frag->fragment, frag_len, 0);
775             if ((unsigned long)i != frag_len)
776                 i = -1;
777             if (i <= 0)
778                 goto err;
779         }
780
781         item = pitem_new(seq64be, frag);
782         if (item == NULL)
783             goto err;
784
785         item = pqueue_insert(s->d1->buffered_messages, item);
786         /*
787          * pqueue_insert fails iff a duplicate item is inserted. However,
788          * |item| cannot be a duplicate. If it were, |pqueue_find|, above,
789          * would have returned it. Then, either |frag_len| !=
790          * |msg_hdr->msg_len| in which case |item| is set to NULL and it will
791          * have been processed with |dtls1_reassemble_fragment|, above, or
792          * the record will have been discarded.
793          */
794         OPENSSL_assert(item != NULL);
795     }
796
797     return DTLS1_HM_FRAGMENT_RETRY;
798
799  err:
800     if (item == NULL)
801         dtls1_hm_fragment_free(frag);
802     *ok = 0;
803     return i;
804 }
805
806 static int dtls_get_reassembled_message(SSL *s, long *len)
807 {
808     unsigned char wire[DTLS1_HM_HEADER_LENGTH];
809     unsigned long mlen, frag_off, frag_len;
810     int i, al, recvd_type;
811     struct hm_header_st msg_hdr;
812     int ok;
813
814  redo:
815     /* see if we have the required fragment already */
816     if ((frag_len = dtls1_retrieve_buffered_fragment(s, &ok)) || ok) {
817         if (ok)
818             s->init_num = frag_len;
819         *len = frag_len;
820         return ok;
821     }
822
823     /* read handshake message header */
824     i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type, wire,
825                                   DTLS1_HM_HEADER_LENGTH, 0);
826     if (i <= 0) {               /* nbio, or an error */
827         s->rwstate = SSL_READING;
828         *len = i;
829         return 0;
830     }
831     if(recvd_type == SSL3_RT_CHANGE_CIPHER_SPEC) {
832         if (wire[0] != SSL3_MT_CCS) {
833             al = SSL_AD_UNEXPECTED_MESSAGE;
834             SSLerr(SSL_F_DTLS_GET_REASSEMBLED_MESSAGE,
835                    SSL_R_BAD_CHANGE_CIPHER_SPEC);
836             goto f_err;
837         }
838
839         memcpy(s->init_buf->data, wire, i);
840         s->init_num = i - 1;
841         s->init_msg = s->init_buf->data + 1;
842         s->s3->tmp.message_type = SSL3_MT_CHANGE_CIPHER_SPEC;
843         s->s3->tmp.message_size = i - 1;
844         *len = i - 1;
845         return 1;
846     }
847
848     /* Handshake fails if message header is incomplete */
849     if (i != DTLS1_HM_HEADER_LENGTH) {
850         al = SSL_AD_UNEXPECTED_MESSAGE;
851         SSLerr(SSL_F_DTLS_GET_REASSEMBLED_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
852         goto f_err;
853     }
854
855     /* parse the message fragment header */
856     dtls1_get_message_header(wire, &msg_hdr);
857
858     mlen = msg_hdr.msg_len;
859     frag_off = msg_hdr.frag_off;
860     frag_len = msg_hdr.frag_len;
861
862     /*
863      * We must have at least frag_len bytes left in the record to be read.
864      * Fragments must not span records.
865      */
866     if (frag_len > RECORD_LAYER_get_rrec_length(&s->rlayer)) {
867         al = SSL3_AD_ILLEGAL_PARAMETER;
868         SSLerr(SSL_F_DTLS_GET_REASSEMBLED_MESSAGE, SSL_R_BAD_LENGTH);
869         goto f_err;
870     }
871
872     /*
873      * if this is a future (or stale) message it gets buffered
874      * (or dropped)--no further processing at this time
875      * While listening, we accept seq 1 (ClientHello with cookie)
876      * although we're still expecting seq 0 (ClientHello)
877      */
878     if (msg_hdr.seq != s->d1->handshake_read_seq) {
879         *len = dtls1_process_out_of_seq_message(s, &msg_hdr, &ok);
880         return ok;
881     }
882
883     if (frag_len && frag_len < mlen) {
884         *len = dtls1_reassemble_fragment(s, &msg_hdr, &ok);
885         return ok;
886     }
887
888     if (!s->server && s->d1->r_msg_hdr.frag_off == 0 &&
889         wire[0] == SSL3_MT_HELLO_REQUEST) {
890         /*
891          * The server may always send 'Hello Request' messages -- we are
892          * doing a handshake anyway now, so ignore them if their format is
893          * correct. Does not count for 'Finished' MAC.
894          */
895         if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0) {
896             if (s->msg_callback)
897                 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
898                                 wire, DTLS1_HM_HEADER_LENGTH, s,
899                                 s->msg_callback_arg);
900
901             s->init_num = 0;
902             goto redo;
903         } else {                /* Incorrectly formated Hello request */
904
905             al = SSL_AD_UNEXPECTED_MESSAGE;
906             SSLerr(SSL_F_DTLS_GET_REASSEMBLED_MESSAGE,
907                    SSL_R_UNEXPECTED_MESSAGE);
908             goto f_err;
909         }
910     }
911
912     if ((al = dtls1_preprocess_fragment(s, &msg_hdr)))
913         goto f_err;
914
915     if (frag_len > 0) {
916         unsigned char *p =
917             (unsigned char *)s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
918
919         i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
920                                       &p[frag_off], frag_len, 0);
921
922         /*
923          * This shouldn't ever fail due to NBIO because we already checked
924          * that we have enough data in the record
925          */
926         if (i <= 0) {
927             s->rwstate = SSL_READING;
928             *len = i;
929             return 0;
930         }
931     } else
932         i = 0;
933
934     /*
935      * XDTLS: an incorrectly formatted fragment should cause the handshake
936      * to fail
937      */
938     if (i != (int)frag_len) {
939         al = SSL3_AD_ILLEGAL_PARAMETER;
940         SSLerr(SSL_F_DTLS_GET_REASSEMBLED_MESSAGE, SSL3_AD_ILLEGAL_PARAMETER);
941         goto f_err;
942     }
943
944     /*
945      * Note that s->init_num is *not* used as current offset in
946      * s->init_buf->data, but as a counter summing up fragments' lengths: as
947      * soon as they sum up to handshake packet length, we assume we have got
948      * all the fragments.
949      */
950     *len = s->init_num = frag_len;
951     return 1;
952
953  f_err:
954     ssl3_send_alert(s, SSL3_AL_FATAL, al);
955     s->init_num = 0;
956     *len = -1;
957     return 0;
958 }
959
960 /*-
961  * for these 2 messages, we need to
962  * ssl->enc_read_ctx                    re-init
963  * ssl->rlayer.read_sequence            zero
964  * ssl->s3->read_mac_secret             re-init
965  * ssl->session->read_sym_enc           assign
966  * ssl->session->read_compression       assign
967  * ssl->session->read_hash              assign
968  */
969 int dtls_construct_change_cipher_spec(SSL *s)
970 {
971     unsigned char *p;
972
973     p = (unsigned char *)s->init_buf->data;
974     *p++ = SSL3_MT_CCS;
975     s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
976     s->init_num = DTLS1_CCS_HEADER_LENGTH;
977
978     if (s->version == DTLS1_BAD_VER) {
979         s->d1->next_handshake_write_seq++;
980         s2n(s->d1->handshake_write_seq, p);
981         s->init_num += 2;
982     }
983
984     s->init_off = 0;
985
986     dtls1_set_message_header_int(s, SSL3_MT_CCS, 0,
987                                  s->d1->handshake_write_seq, 0, 0);
988
989     /* buffer the message to handle re-xmits */
990     if (!dtls1_buffer_message(s, 1)) {
991         SSLerr(SSL_F_DTLS_CONSTRUCT_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
992         return 0;
993     }
994
995     return 1;
996 }
997
998 #ifndef OPENSSL_NO_SCTP
999 WORK_STATE dtls_wait_for_dry(SSL *s)
1000 {
1001     int ret;
1002
1003     /* read app data until dry event */
1004     ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
1005     if (ret < 0)
1006         return WORK_ERROR;
1007
1008     if (ret == 0) {
1009         s->s3->in_read_app_data = 2;
1010         s->rwstate = SSL_READING;
1011         BIO_clear_retry_flags(SSL_get_rbio(s));
1012         BIO_set_retry_read(SSL_get_rbio(s));
1013         return WORK_MORE_A;
1014     }
1015     return WORK_FINISHED_CONTINUE;
1016 }
1017 #endif
1018
1019 int dtls1_read_failed(SSL *s, int code)
1020 {
1021     if (code > 0) {
1022         fprintf(stderr, "invalid state reached %s:%d", __FILE__, __LINE__);
1023         return 1;
1024     }
1025
1026     if (!dtls1_is_timer_expired(s)) {
1027         /*
1028          * not a timeout, none of our business, let higher layers handle
1029          * this.  in fact it's probably an error
1030          */
1031         return code;
1032     }
1033 #ifndef OPENSSL_NO_HEARTBEATS
1034     /* done, no need to send a retransmit */
1035     if (!SSL_in_init(s) && !s->tlsext_hb_pending)
1036 #else
1037     /* done, no need to send a retransmit */
1038     if (!SSL_in_init(s))
1039 #endif
1040     {
1041         BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
1042         return code;
1043     }
1044
1045     return dtls1_handle_timeout(s);
1046 }
1047
1048 int dtls1_get_queue_priority(unsigned short seq, int is_ccs)
1049 {
1050     /*
1051      * The index of the retransmission queue actually is the message sequence
1052      * number, since the queue only contains messages of a single handshake.
1053      * However, the ChangeCipherSpec has no message sequence number and so
1054      * using only the sequence will result in the CCS and Finished having the
1055      * same index. To prevent this, the sequence number is multiplied by 2.
1056      * In case of a CCS 1 is subtracted. This does not only differ CSS and
1057      * Finished, it also maintains the order of the index (important for
1058      * priority queues) and fits in the unsigned short variable.
1059      */
1060     return seq * 2 - is_ccs;
1061 }
1062
1063 int dtls1_retransmit_buffered_messages(SSL *s)
1064 {
1065     pqueue sent = s->d1->sent_messages;
1066     piterator iter;
1067     pitem *item;
1068     hm_fragment *frag;
1069     int found = 0;
1070
1071     iter = pqueue_iterator(sent);
1072
1073     for (item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter)) {
1074         frag = (hm_fragment *)item->data;
1075         if (dtls1_retransmit_message(s, (unsigned short)
1076                                      dtls1_get_queue_priority
1077                                      (frag->msg_header.seq,
1078                                       frag->msg_header.is_ccs), 0,
1079                                      &found) <= 0 && found) {
1080             fprintf(stderr, "dtls1_retransmit_message() failed\n");
1081             return -1;
1082         }
1083     }
1084
1085     return 1;
1086 }
1087
1088 int dtls1_buffer_message(SSL *s, int is_ccs)
1089 {
1090     pitem *item;
1091     hm_fragment *frag;
1092     unsigned char seq64be[8];
1093
1094     /*
1095      * this function is called immediately after a message has been
1096      * serialized
1097      */
1098     OPENSSL_assert(s->init_off == 0);
1099
1100     frag = dtls1_hm_fragment_new(s->init_num, 0);
1101     if (frag == NULL)
1102         return 0;
1103
1104     memcpy(frag->fragment, s->init_buf->data, s->init_num);
1105
1106     if (is_ccs) {
1107         /* For DTLS1_BAD_VER the header length is non-standard */
1108         OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1109                        ((s->version==DTLS1_BAD_VER)?3:DTLS1_CCS_HEADER_LENGTH)
1110                        == (unsigned int)s->init_num);
1111     } else {
1112         OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1113                        DTLS1_HM_HEADER_LENGTH == (unsigned int)s->init_num);
1114     }
1115
1116     frag->msg_header.msg_len = s->d1->w_msg_hdr.msg_len;
1117     frag->msg_header.seq = s->d1->w_msg_hdr.seq;
1118     frag->msg_header.type = s->d1->w_msg_hdr.type;
1119     frag->msg_header.frag_off = 0;
1120     frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
1121     frag->msg_header.is_ccs = is_ccs;
1122
1123     /* save current state */
1124     frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
1125     frag->msg_header.saved_retransmit_state.write_hash = s->write_hash;
1126     frag->msg_header.saved_retransmit_state.compress = s->compress;
1127     frag->msg_header.saved_retransmit_state.session = s->session;
1128     frag->msg_header.saved_retransmit_state.epoch =
1129         DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer);
1130
1131     memset(seq64be, 0, sizeof(seq64be));
1132     seq64be[6] =
1133         (unsigned
1134          char)(dtls1_get_queue_priority(frag->msg_header.seq,
1135                                         frag->msg_header.is_ccs) >> 8);
1136     seq64be[7] =
1137         (unsigned
1138          char)(dtls1_get_queue_priority(frag->msg_header.seq,
1139                                         frag->msg_header.is_ccs));
1140
1141     item = pitem_new(seq64be, frag);
1142     if (item == NULL) {
1143         dtls1_hm_fragment_free(frag);
1144         return 0;
1145     }
1146
1147     pqueue_insert(s->d1->sent_messages, item);
1148     return 1;
1149 }
1150
1151 int
1152 dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
1153                          int *found)
1154 {
1155     int ret;
1156     /* XDTLS: for now assuming that read/writes are blocking */
1157     pitem *item;
1158     hm_fragment *frag;
1159     unsigned long header_length;
1160     unsigned char seq64be[8];
1161     struct dtls1_retransmit_state saved_state;
1162
1163     /*-
1164       OPENSSL_assert(s->init_num == 0);
1165       OPENSSL_assert(s->init_off == 0);
1166      */
1167
1168     /* XDTLS:  the requested message ought to be found, otherwise error */
1169     memset(seq64be, 0, sizeof(seq64be));
1170     seq64be[6] = (unsigned char)(seq >> 8);
1171     seq64be[7] = (unsigned char)seq;
1172
1173     item = pqueue_find(s->d1->sent_messages, seq64be);
1174     if (item == NULL) {
1175         fprintf(stderr, "retransmit:  message %d non-existant\n", seq);
1176         *found = 0;
1177         return 0;
1178     }
1179
1180     *found = 1;
1181     frag = (hm_fragment *)item->data;
1182
1183     if (frag->msg_header.is_ccs)
1184         header_length = DTLS1_CCS_HEADER_LENGTH;
1185     else
1186         header_length = DTLS1_HM_HEADER_LENGTH;
1187
1188     memcpy(s->init_buf->data, frag->fragment,
1189            frag->msg_header.msg_len + header_length);
1190     s->init_num = frag->msg_header.msg_len + header_length;
1191
1192     dtls1_set_message_header_int(s, frag->msg_header.type,
1193                                  frag->msg_header.msg_len,
1194                                  frag->msg_header.seq, 0,
1195                                  frag->msg_header.frag_len);
1196
1197     /* save current state */
1198     saved_state.enc_write_ctx = s->enc_write_ctx;
1199     saved_state.write_hash = s->write_hash;
1200     saved_state.compress = s->compress;
1201     saved_state.session = s->session;
1202     saved_state.epoch = DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer);
1203
1204     s->d1->retransmitting = 1;
1205
1206     /* restore state in which the message was originally sent */
1207     s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
1208     s->write_hash = frag->msg_header.saved_retransmit_state.write_hash;
1209     s->compress = frag->msg_header.saved_retransmit_state.compress;
1210     s->session = frag->msg_header.saved_retransmit_state.session;
1211     DTLS_RECORD_LAYER_set_saved_w_epoch(&s->rlayer,
1212         frag->msg_header.saved_retransmit_state.epoch);
1213
1214     ret = dtls1_do_write(s, frag->msg_header.is_ccs ?
1215                          SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
1216
1217     /* restore current state */
1218     s->enc_write_ctx = saved_state.enc_write_ctx;
1219     s->write_hash = saved_state.write_hash;
1220     s->compress = saved_state.compress;
1221     s->session = saved_state.session;
1222     DTLS_RECORD_LAYER_set_saved_w_epoch(&s->rlayer, saved_state.epoch);
1223
1224     s->d1->retransmitting = 0;
1225
1226     (void)BIO_flush(SSL_get_wbio(s));
1227     return ret;
1228 }
1229
1230 /* call this function when the buffered messages are no longer needed */
1231 void dtls1_clear_record_buffer(SSL *s)
1232 {
1233     pitem *item;
1234
1235     for (item = pqueue_pop(s->d1->sent_messages);
1236          item != NULL; item = pqueue_pop(s->d1->sent_messages)) {
1237         dtls1_hm_fragment_free((hm_fragment *)item->data);
1238         pitem_free(item);
1239     }
1240 }
1241
1242 void dtls1_set_message_header(SSL *s, unsigned char *p,
1243                                         unsigned char mt, unsigned long len,
1244                                         unsigned long frag_off,
1245                                         unsigned long frag_len)
1246 {
1247     if (frag_off == 0) {
1248         s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1249         s->d1->next_handshake_write_seq++;
1250     }
1251
1252     dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
1253                                  frag_off, frag_len);
1254 }
1255
1256 /* don't actually do the writing, wait till the MTU has been retrieved */
1257 static void
1258 dtls1_set_message_header_int(SSL *s, unsigned char mt,
1259                              unsigned long len, unsigned short seq_num,
1260                              unsigned long frag_off, unsigned long frag_len)
1261 {
1262     struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1263
1264     msg_hdr->type = mt;
1265     msg_hdr->msg_len = len;
1266     msg_hdr->seq = seq_num;
1267     msg_hdr->frag_off = frag_off;
1268     msg_hdr->frag_len = frag_len;
1269 }
1270
1271 static void
1272 dtls1_fix_message_header(SSL *s, unsigned long frag_off,
1273                          unsigned long frag_len)
1274 {
1275     struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1276
1277     msg_hdr->frag_off = frag_off;
1278     msg_hdr->frag_len = frag_len;
1279 }
1280
1281 static unsigned char *dtls1_write_message_header(SSL *s, unsigned char *p)
1282 {
1283     struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1284
1285     *p++ = msg_hdr->type;
1286     l2n3(msg_hdr->msg_len, p);
1287
1288     s2n(msg_hdr->seq, p);
1289     l2n3(msg_hdr->frag_off, p);
1290     l2n3(msg_hdr->frag_len, p);
1291
1292     return p;
1293 }
1294
1295 void
1296 dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr)
1297 {
1298     memset(msg_hdr, 0, sizeof(*msg_hdr));
1299     msg_hdr->type = *(data++);
1300     n2l3(data, msg_hdr->msg_len);
1301
1302     n2s(data, msg_hdr->seq);
1303     n2l3(data, msg_hdr->frag_off);
1304     n2l3(data, msg_hdr->frag_len);
1305 }
1306
1307