Fix memory leak from zero-length DTLS fragments.
[platform/upstream/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 #if 0
148 #define RSMBLY_BITMASK_PRINT(bitmask, msg_len) { \
149                         long ii; \
150                         printf("bitmask: "); for (ii = 0; ii < (msg_len); ii++) \
151                         printf("%d ", (bitmask[ii >> 3] & (1 << (ii & 7))) >> (ii & 7)); \
152                         printf("\n"); }
153 #endif
154
155 static unsigned char bitmask_start_values[] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80};
156 static unsigned char bitmask_end_values[]   = {0xff, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f};
157
158 /* XDTLS:  figure out the right values */
159 static unsigned int g_probable_mtu[] = {1500 - 28, 512 - 28, 256 - 28};
160
161 static unsigned int dtls1_guess_mtu(unsigned int curr_mtu);
162 static void dtls1_fix_message_header(SSL *s, unsigned long frag_off, 
163         unsigned long frag_len);
164 static unsigned char *dtls1_write_message_header(SSL *s,
165         unsigned char *p);
166 static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
167         unsigned long len, unsigned short seq_num, unsigned long frag_off, 
168         unsigned long frag_len);
169 static long dtls1_get_message_fragment(SSL *s, int st1, int stn, 
170         long max, int *ok);
171
172 static hm_fragment *
173 dtls1_hm_fragment_new(unsigned long frag_len, int reassembly)
174         {
175         hm_fragment *frag = NULL;
176         unsigned char *buf = NULL;
177         unsigned char *bitmask = NULL;
178
179         frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
180         if ( frag == NULL)
181                 return NULL;
182
183         if (frag_len)
184                 {
185                 buf = (unsigned char *)OPENSSL_malloc(frag_len);
186                 if ( buf == NULL)
187                         {
188                         OPENSSL_free(frag);
189                         return NULL;
190                         }
191                 }
192
193         /* zero length fragment gets zero frag->fragment */
194         frag->fragment = buf;
195
196         /* Initialize reassembly bitmask if necessary */
197         if (reassembly)
198                 {
199                 bitmask = (unsigned char *)OPENSSL_malloc(RSMBLY_BITMASK_SIZE(frag_len));
200                 if (bitmask == NULL)
201                         {
202                         if (buf != NULL) OPENSSL_free(buf);
203                         OPENSSL_free(frag);
204                         return NULL;
205                         }
206                 memset(bitmask, 0, RSMBLY_BITMASK_SIZE(frag_len));
207                 }
208
209         frag->reassembly = bitmask;
210
211         return frag;
212         }
213
214 static void
215 dtls1_hm_fragment_free(hm_fragment *frag)
216         {
217
218         if (frag->msg_header.is_ccs)
219                 {
220                 EVP_CIPHER_CTX_free(frag->msg_header.saved_retransmit_state.enc_write_ctx);
221                 EVP_MD_CTX_destroy(frag->msg_header.saved_retransmit_state.write_hash);
222                 }
223         if (frag->fragment) OPENSSL_free(frag->fragment);
224         if (frag->reassembly) OPENSSL_free(frag->reassembly);
225         OPENSSL_free(frag);
226         }
227
228 /* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */
229 int dtls1_do_write(SSL *s, int type)
230         {
231         int ret;
232         int curr_mtu;
233         unsigned int len, frag_off, mac_size, blocksize;
234
235         /* AHA!  Figure out the MTU, and stick to the right size */
236         if (s->d1->mtu < dtls1_min_mtu() && !(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU))
237                 {
238                 s->d1->mtu = 
239                         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
240
241                 /* I've seen the kernel return bogus numbers when it doesn't know
242                  * (initial write), so just make sure we have a reasonable number */
243                 if (s->d1->mtu < dtls1_min_mtu())
244                         {
245                         s->d1->mtu = 0;
246                         s->d1->mtu = dtls1_guess_mtu(s->d1->mtu);
247                         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU, 
248                                 s->d1->mtu, NULL);
249                         }
250                 }
251 #if 0 
252         mtu = s->d1->mtu;
253
254         fprintf(stderr, "using MTU = %d\n", mtu);
255
256         mtu -= (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
257
258         curr_mtu = mtu - BIO_wpending(SSL_get_wbio(s));
259
260         if ( curr_mtu > 0)
261                 mtu = curr_mtu;
262         else if ( ( ret = BIO_flush(SSL_get_wbio(s))) <= 0)
263                 return ret;
264
265         if ( BIO_wpending(SSL_get_wbio(s)) + s->init_num >= mtu)
266                 {
267                 ret = BIO_flush(SSL_get_wbio(s));
268                 if ( ret <= 0)
269                         return ret;
270                 mtu = s->d1->mtu - (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
271                 }
272 #endif
273
274         OPENSSL_assert(s->d1->mtu >= dtls1_min_mtu());  /* should have something reasonable now */
275
276         if ( s->init_off == 0  && type == SSL3_RT_HANDSHAKE)
277                 OPENSSL_assert(s->init_num == 
278                         (int)s->d1->w_msg_hdr.msg_len + DTLS1_HM_HEADER_LENGTH);
279
280         if (s->write_hash)
281                 mac_size = EVP_MD_CTX_size(s->write_hash);
282         else
283                 mac_size = 0;
284
285         if (s->enc_write_ctx && 
286                 (EVP_CIPHER_mode( s->enc_write_ctx->cipher) & EVP_CIPH_CBC_MODE))
287                 blocksize = 2 * EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
288         else
289                 blocksize = 0;
290
291         frag_off = 0;
292         while( s->init_num)
293                 {
294                 curr_mtu = s->d1->mtu - BIO_wpending(SSL_get_wbio(s)) - 
295                         DTLS1_RT_HEADER_LENGTH - mac_size - blocksize;
296
297                 if ( curr_mtu <= DTLS1_HM_HEADER_LENGTH)
298                         {
299                         /* grr.. we could get an error if MTU picked was wrong */
300                         ret = BIO_flush(SSL_get_wbio(s));
301                         if ( ret <= 0)
302                                 return ret;
303                         curr_mtu = s->d1->mtu - DTLS1_RT_HEADER_LENGTH -
304                                 mac_size - blocksize;
305                         }
306
307                 if ( s->init_num > curr_mtu)
308                         len = curr_mtu;
309                 else
310                         len = s->init_num;
311
312
313                 /* XDTLS: this function is too long.  split out the CCS part */
314                 if ( type == SSL3_RT_HANDSHAKE)
315                         {
316                         if ( s->init_off != 0)
317                                 {
318                                 OPENSSL_assert(s->init_off > DTLS1_HM_HEADER_LENGTH);
319                                 s->init_off -= DTLS1_HM_HEADER_LENGTH;
320                                 s->init_num += DTLS1_HM_HEADER_LENGTH;
321
322                                 if ( s->init_num > curr_mtu)
323                                         len = curr_mtu;
324                                 else
325                                         len = s->init_num;
326                                 }
327
328                         dtls1_fix_message_header(s, frag_off, 
329                                 len - DTLS1_HM_HEADER_LENGTH);
330
331                         dtls1_write_message_header(s, (unsigned char *)&s->init_buf->data[s->init_off]);
332
333                         OPENSSL_assert(len >= DTLS1_HM_HEADER_LENGTH);
334                         }
335
336                 ret=dtls1_write_bytes(s,type,&s->init_buf->data[s->init_off],
337                         len);
338                 if (ret < 0)
339                         {
340                         /* might need to update MTU here, but we don't know
341                          * which previous packet caused the failure -- so can't
342                          * really retransmit anything.  continue as if everything
343                          * is fine and wait for an alert to handle the
344                          * retransmit 
345                          */
346                         if ( BIO_ctrl(SSL_get_wbio(s),
347                                 BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL) > 0 )
348                                 s->d1->mtu = BIO_ctrl(SSL_get_wbio(s),
349                                         BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
350                         else
351                                 return(-1);
352                         }
353                 else
354                         {
355
356                         /* bad if this assert fails, only part of the handshake
357                          * message got sent.  but why would this happen? */
358                         OPENSSL_assert(len == (unsigned int)ret);
359
360                         if (type == SSL3_RT_HANDSHAKE && ! s->d1->retransmitting)
361                                 {
362                                 /* should not be done for 'Hello Request's, but in that case
363                                  * we'll ignore the result anyway */
364                                 unsigned char *p = (unsigned char *)&s->init_buf->data[s->init_off];
365                                 const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
366                                 int xlen;
367
368                                 if (frag_off == 0 && s->version != DTLS1_BAD_VER)
369                                         {
370                                         /* reconstruct message header is if it
371                                          * is being sent in single fragment */
372                                         *p++ = msg_hdr->type;
373                                         l2n3(msg_hdr->msg_len,p);
374                                         s2n (msg_hdr->seq,p);
375                                         l2n3(0,p);
376                                         l2n3(msg_hdr->msg_len,p);
377                                         p  -= DTLS1_HM_HEADER_LENGTH;
378                                         xlen = ret;
379                                         }
380                                 else
381                                         {
382                                         p  += DTLS1_HM_HEADER_LENGTH;
383                                         xlen = ret - DTLS1_HM_HEADER_LENGTH;
384                                         }
385
386                                 ssl3_finish_mac(s, p, xlen);
387                                 }
388
389                         if (ret == s->init_num)
390                                 {
391                                 if (s->msg_callback)
392                                         s->msg_callback(1, s->version, type, s->init_buf->data, 
393                                                 (size_t)(s->init_off + s->init_num), s, 
394                                                 s->msg_callback_arg);
395
396                                 s->init_off = 0;  /* done writing this message */
397                                 s->init_num = 0;
398
399                                 return(1);
400                                 }
401                         s->init_off+=ret;
402                         s->init_num-=ret;
403                         frag_off += (ret -= DTLS1_HM_HEADER_LENGTH);
404                         }
405                 }
406         return(0);
407         }
408
409
410 /* Obtain handshake message of message type 'mt' (any if mt == -1),
411  * maximum acceptable body length 'max'.
412  * Read an entire handshake message.  Handshake messages arrive in
413  * fragments.
414  */
415 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
416         {
417         int i, al;
418         struct hm_header_st *msg_hdr;
419         unsigned char *p;
420         unsigned long msg_len;
421
422         /* s3->tmp is used to store messages that are unexpected, caused
423          * by the absence of an optional handshake message */
424         if (s->s3->tmp.reuse_message)
425                 {
426                 s->s3->tmp.reuse_message=0;
427                 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
428                         {
429                         al=SSL_AD_UNEXPECTED_MESSAGE;
430                         SSLerr(SSL_F_DTLS1_GET_MESSAGE,SSL_R_UNEXPECTED_MESSAGE);
431                         goto f_err;
432                         }
433                 *ok=1;
434                 s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
435                 s->init_num = (int)s->s3->tmp.message_size;
436                 return s->init_num;
437                 }
438
439         msg_hdr = &s->d1->r_msg_hdr;
440         memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
441
442 again:
443         i = dtls1_get_message_fragment(s, st1, stn, max, ok);
444         if ( i == DTLS1_HM_BAD_FRAGMENT ||
445                 i == DTLS1_HM_FRAGMENT_RETRY)  /* bad fragment received */
446                 goto again;
447         else if ( i <= 0 && !*ok)
448                 return i;
449
450         p = (unsigned char *)s->init_buf->data;
451         msg_len = msg_hdr->msg_len;
452
453         /* reconstruct message header */
454         *(p++) = msg_hdr->type;
455         l2n3(msg_len,p);
456         s2n (msg_hdr->seq,p);
457         l2n3(0,p);
458         l2n3(msg_len,p);
459         if (s->version != DTLS1_BAD_VER) {
460                 p       -= DTLS1_HM_HEADER_LENGTH;
461                 msg_len += DTLS1_HM_HEADER_LENGTH;
462         }
463
464         ssl3_finish_mac(s, p, msg_len);
465         if (s->msg_callback)
466                 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
467                         p, msg_len,
468                         s, s->msg_callback_arg);
469
470         memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
471
472         /* Don't change sequence numbers while listening */
473         if (!s->d1->listen)
474                 s->d1->handshake_read_seq++;
475
476         s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
477         return s->init_num;
478
479 f_err:
480         ssl3_send_alert(s,SSL3_AL_FATAL,al);
481         *ok = 0;
482         return -1;
483         }
484
485
486 static int dtls1_preprocess_fragment(SSL *s,struct hm_header_st *msg_hdr,int max)
487         {
488         size_t frag_off,frag_len,msg_len;
489
490         msg_len  = msg_hdr->msg_len;
491         frag_off = msg_hdr->frag_off;
492         frag_len = msg_hdr->frag_len;
493
494         /* sanity checking */
495         if ( (frag_off+frag_len) > msg_len)
496                 {
497                 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
498                 return SSL_AD_ILLEGAL_PARAMETER;
499                 }
500
501         if ( (frag_off+frag_len) > (unsigned long)max)
502                 {
503                 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
504                 return SSL_AD_ILLEGAL_PARAMETER;
505                 }
506
507         if ( s->d1->r_msg_hdr.frag_off == 0) /* first fragment */
508                 {
509                 /* msg_len is limited to 2^24, but is effectively checked
510                  * against max above */
511                 if (!BUF_MEM_grow_clean(s->init_buf,msg_len+DTLS1_HM_HEADER_LENGTH))
512                         {
513                         SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,ERR_R_BUF_LIB);
514                         return SSL_AD_INTERNAL_ERROR;
515                         }
516
517                 s->s3->tmp.message_size  = msg_len;
518                 s->d1->r_msg_hdr.msg_len = msg_len;
519                 s->s3->tmp.message_type  = msg_hdr->type;
520                 s->d1->r_msg_hdr.type    = msg_hdr->type;
521                 s->d1->r_msg_hdr.seq     = msg_hdr->seq;
522                 }
523         else if (msg_len != s->d1->r_msg_hdr.msg_len)
524                 {
525                 /* They must be playing with us! BTW, failure to enforce
526                  * upper limit would open possibility for buffer overrun. */
527                 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
528                 return SSL_AD_ILLEGAL_PARAMETER;
529                 }
530
531         return 0; /* no error */
532         }
533
534
535 static int
536 dtls1_retrieve_buffered_fragment(SSL *s, long max, int *ok)
537         {
538         /* (0) check whether the desired fragment is available
539          * if so:
540          * (1) copy over the fragment to s->init_buf->data[]
541          * (2) update s->init_num
542          */
543         pitem *item;
544         hm_fragment *frag;
545         int al;
546
547         *ok = 0;
548         item = pqueue_peek(s->d1->buffered_messages);
549         if ( item == NULL)
550                 return 0;
551
552         frag = (hm_fragment *)item->data;
553         
554         /* Don't return if reassembly still in progress */
555         if (frag->reassembly != NULL)
556                 return 0;
557
558         if ( s->d1->handshake_read_seq == frag->msg_header.seq)
559                 {
560                 unsigned long frag_len = frag->msg_header.frag_len;
561                 pqueue_pop(s->d1->buffered_messages);
562
563                 al=dtls1_preprocess_fragment(s,&frag->msg_header,max);
564
565                 if (al==0) /* no alert */
566                         {
567                         unsigned char *p = (unsigned char *)s->init_buf->data+DTLS1_HM_HEADER_LENGTH;
568                         memcpy(&p[frag->msg_header.frag_off],
569                                 frag->fragment,frag->msg_header.frag_len);
570                         }
571
572                 dtls1_hm_fragment_free(frag);
573                 pitem_free(item);
574
575                 if (al==0)
576                         {
577                         *ok = 1;
578                         return frag_len;
579                         }
580
581                 ssl3_send_alert(s,SSL3_AL_FATAL,al);
582                 s->init_num = 0;
583                 *ok = 0;
584                 return -1;
585                 }
586         else
587                 return 0;
588         }
589
590 /* dtls1_max_handshake_message_len returns the maximum number of bytes
591  * permitted in a DTLS handshake message for |s|. The minimum is 16KB, but may
592  * be greater if the maximum certificate list size requires it. */
593 static unsigned long dtls1_max_handshake_message_len(const SSL *s)
594         {
595         unsigned long max_len = DTLS1_HM_HEADER_LENGTH + SSL3_RT_MAX_ENCRYPTED_LENGTH;
596         if (max_len < (unsigned long)s->max_cert_list)
597                 return s->max_cert_list;
598         return max_len;
599         }
600
601 static int
602 dtls1_reassemble_fragment(SSL *s, struct hm_header_st* msg_hdr, int *ok)
603         {
604         hm_fragment *frag = NULL;
605         pitem *item = NULL;
606         int i = -1, is_complete;
607         unsigned char seq64be[8];
608         unsigned long frag_len = msg_hdr->frag_len;
609
610         if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len ||
611             msg_hdr->msg_len > dtls1_max_handshake_message_len(s))
612                 goto err;
613
614         if (frag_len == 0)
615                 return DTLS1_HM_FRAGMENT_RETRY;
616
617         /* Try to find item in queue */
618         memset(seq64be,0,sizeof(seq64be));
619         seq64be[6] = (unsigned char) (msg_hdr->seq>>8);
620         seq64be[7] = (unsigned char) msg_hdr->seq;
621         item = pqueue_find(s->d1->buffered_messages, seq64be);
622
623         if (item == NULL)
624                 {
625                 frag = dtls1_hm_fragment_new(msg_hdr->msg_len, 1);
626                 if ( frag == NULL)
627                         goto err;
628                 memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
629                 frag->msg_header.frag_len = frag->msg_header.msg_len;
630                 frag->msg_header.frag_off = 0;
631                 }
632         else
633                 {
634                 frag = (hm_fragment*) item->data;
635                 if (frag->msg_header.msg_len != msg_hdr->msg_len)
636                         {
637                         item = NULL;
638                         frag = NULL;
639                         goto err;
640                         }
641                 }
642
643
644         /* If message is already reassembled, this must be a
645          * retransmit and can be dropped. In this case item != NULL and so frag
646          * does not need to be freed.
647          */
648         if (frag->reassembly == NULL)
649                 {
650                 unsigned char devnull [256];
651
652                 while (frag_len)
653                         {
654                         i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
655                                 devnull,
656                                 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
657                         if (i<=0) 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,
665                 frag->fragment + msg_hdr->frag_off,frag_len,0);
666         if (i<=0 || (unsigned long)i!=frag_len)
667                 goto err;
668
669         RSMBLY_BITMASK_MARK(frag->reassembly, (long)msg_hdr->frag_off,
670                             (long)(msg_hdr->frag_off + frag_len));
671
672         RSMBLY_BITMASK_IS_COMPLETE(frag->reassembly, (long)msg_hdr->msg_len,
673                                    is_complete);
674
675         if (is_complete)
676                 {
677                 OPENSSL_free(frag->reassembly);
678                 frag->reassembly = NULL;
679                 }
680
681         if (item == NULL)
682                 {
683                 memset(seq64be,0,sizeof(seq64be));
684                 seq64be[6] = (unsigned char)(msg_hdr->seq>>8);
685                 seq64be[7] = (unsigned char)(msg_hdr->seq);
686
687                 item = pitem_new(seq64be, frag);
688                 if (item == NULL)
689                         {
690                         i = -1;
691                         goto err;
692                         }
693
694                 item = pqueue_insert(s->d1->buffered_messages, item);
695                 /* pqueue_insert fails iff a duplicate item is inserted.
696                  * However, |item| cannot be a duplicate. If it were,
697                  * |pqueue_find|, above, would have returned it and control
698                  * would never have reached this branch. */
699                 OPENSSL_assert(item != NULL);
700                 }
701
702         return DTLS1_HM_FRAGMENT_RETRY;
703
704 err:
705         if (frag != NULL && item == NULL) dtls1_hm_fragment_free(frag);
706         *ok = 0;
707         return i;
708         }
709
710
711 static int
712 dtls1_process_out_of_seq_message(SSL *s, struct hm_header_st* msg_hdr, int *ok)
713 {
714         int i=-1;
715         hm_fragment *frag = NULL;
716         pitem *item = NULL;
717         unsigned char seq64be[8];
718         unsigned long frag_len = msg_hdr->frag_len;
719
720         if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len)
721                 goto err;
722
723         /* Try to find item in queue, to prevent duplicate entries */
724         memset(seq64be,0,sizeof(seq64be));
725         seq64be[6] = (unsigned char) (msg_hdr->seq>>8);
726         seq64be[7] = (unsigned char) msg_hdr->seq;
727         item = pqueue_find(s->d1->buffered_messages, seq64be);
728
729         /* If we already have an entry and this one is a fragment,
730          * don't discard it and rather try to reassemble it.
731          */
732         if (item != NULL && frag_len < msg_hdr->msg_len)
733                 item = NULL;
734
735         /* Discard the message if sequence number was already there, is
736          * too far in the future, already in the queue or if we received
737          * a FINISHED before the SERVER_HELLO, which then must be a stale
738          * 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                         {
748                         i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
749                                 devnull,
750                                 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
751                         if (i<=0) goto err;
752                         frag_len -= i;
753                         }
754                 }
755         else
756                 {
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                         i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
773                                 frag->fragment,frag_len,0);
774                         if (i<=0 || (unsigned long)i!=frag_len)
775                                 goto err;
776                         }
777
778                 memset(seq64be,0,sizeof(seq64be));
779                 seq64be[6] = (unsigned char)(msg_hdr->seq>>8);
780                 seq64be[7] = (unsigned char)(msg_hdr->seq);
781
782                 item = pitem_new(seq64be, frag);
783                 if ( item == NULL)
784                         goto err;
785
786                 item = pqueue_insert(s->d1->buffered_messages, item);
787                 /* pqueue_insert fails iff a duplicate item is inserted.
788                  * However, |item| cannot be a duplicate. If it were,
789                  * |pqueue_find|, above, would have returned it. Then, either
790                  * |frag_len| != |msg_hdr->msg_len| in which case |item| is set
791                  * to NULL and it will have been processed with
792                  * |dtls1_reassemble_fragment|, above, or the record will have
793                  * been discarded. */
794                 OPENSSL_assert(item != NULL);
795                 }
796
797         return DTLS1_HM_FRAGMENT_RETRY;
798
799 err:
800         if (frag != NULL && item == NULL) dtls1_hm_fragment_free(frag);
801         *ok = 0;
802         return i;
803         }
804
805
806 static long
807 dtls1_get_message_fragment(SSL *s, int st1, int stn, long max, int *ok)
808         {
809         unsigned char wire[DTLS1_HM_HEADER_LENGTH];
810         unsigned long len, frag_off, frag_len;
811         int i,al;
812         struct hm_header_st msg_hdr;
813
814         redo:
815         /* see if we have the required fragment already */
816         if ((frag_len = dtls1_retrieve_buffered_fragment(s,max,ok)) || *ok)
817                 {
818                 if (*ok)        s->init_num = frag_len;
819                 return frag_len;
820                 }
821
822         /* read handshake message header */
823         i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,wire,
824                 DTLS1_HM_HEADER_LENGTH, 0);
825         if (i <= 0)     /* nbio, or an error */
826                 {
827                 s->rwstate=SSL_READING;
828                 *ok = 0;
829                 return i;
830                 }
831         /* Handshake fails if message header is incomplete */
832         if (i != DTLS1_HM_HEADER_LENGTH)
833                 {
834                 al=SSL_AD_UNEXPECTED_MESSAGE;
835                 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL_R_UNEXPECTED_MESSAGE);
836                 goto f_err;
837                 }
838
839         /* parse the message fragment header */
840         dtls1_get_message_header(wire, &msg_hdr);
841
842         /* 
843          * if this is a future (or stale) message it gets buffered
844          * (or dropped)--no further processing at this time
845          * While listening, we accept seq 1 (ClientHello with cookie)
846          * although we're still expecting seq 0 (ClientHello)
847          */
848         if (msg_hdr.seq != s->d1->handshake_read_seq && !(s->d1->listen && msg_hdr.seq == 1))
849                 return dtls1_process_out_of_seq_message(s, &msg_hdr, ok);
850
851         len = msg_hdr.msg_len;
852         frag_off = msg_hdr.frag_off;
853         frag_len = msg_hdr.frag_len;
854
855         if (frag_len && frag_len < len)
856                 return dtls1_reassemble_fragment(s, &msg_hdr, ok);
857
858         if (!s->server && s->d1->r_msg_hdr.frag_off == 0 &&
859                 wire[0] == SSL3_MT_HELLO_REQUEST)
860                 {
861                 /* The server may always send 'Hello Request' messages --
862                  * we are doing a handshake anyway now, so ignore them
863                  * if their format is correct. Does not count for
864                  * 'Finished' MAC. */
865                 if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0)
866                         {
867                         if (s->msg_callback)
868                                 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, 
869                                         wire, DTLS1_HM_HEADER_LENGTH, s, 
870                                         s->msg_callback_arg);
871                         
872                         s->init_num = 0;
873                         goto redo;
874                         }
875                 else /* Incorrectly formated Hello request */
876                         {
877                         al=SSL_AD_UNEXPECTED_MESSAGE;
878                         SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL_R_UNEXPECTED_MESSAGE);
879                         goto f_err;
880                         }
881                 }
882
883         if ((al=dtls1_preprocess_fragment(s,&msg_hdr,max)))
884                 goto f_err;
885
886         /* XDTLS:  ressurect this when restart is in place */
887         s->state=stn;
888
889         if ( frag_len > 0)
890                 {
891                 unsigned char *p=(unsigned char *)s->init_buf->data+DTLS1_HM_HEADER_LENGTH;
892
893                 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
894                         &p[frag_off],frag_len,0);
895                 /* XDTLS:  fix this--message fragments cannot span multiple packets */
896                 if (i <= 0)
897                         {
898                         s->rwstate=SSL_READING;
899                         *ok = 0;
900                         return i;
901                         }
902                 }
903         else
904                 i = 0;
905
906         /* XDTLS:  an incorrectly formatted fragment should cause the 
907          * handshake to fail */
908         if (i != (int)frag_len)
909                 {
910                 al=SSL3_AD_ILLEGAL_PARAMETER;
911                 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL3_AD_ILLEGAL_PARAMETER);
912                 goto f_err;
913                 }
914
915         *ok = 1;
916
917         /* Note that s->init_num is *not* used as current offset in
918          * s->init_buf->data, but as a counter summing up fragments'
919          * lengths: as soon as they sum up to handshake packet
920          * length, we assume we have got all the fragments. */
921         s->init_num = frag_len;
922         return frag_len;
923
924 f_err:
925         ssl3_send_alert(s,SSL3_AL_FATAL,al);
926         s->init_num = 0;
927
928         *ok=0;
929         return(-1);
930         }
931
932 int dtls1_send_finished(SSL *s, int a, int b, const char *sender, int slen)
933         {
934         unsigned char *p,*d;
935         int i;
936         unsigned long l;
937
938         if (s->state == a)
939                 {
940                 d=(unsigned char *)s->init_buf->data;
941                 p= &(d[DTLS1_HM_HEADER_LENGTH]);
942
943                 i=s->method->ssl3_enc->final_finish_mac(s,
944                         sender,slen,s->s3->tmp.finish_md);
945                 s->s3->tmp.finish_md_len = i;
946                 memcpy(p, s->s3->tmp.finish_md, i);
947                 p+=i;
948                 l=i;
949
950         /* Copy the finished so we can use it for
951          * renegotiation checks
952          */
953         if(s->type == SSL_ST_CONNECT)
954                 {
955                 OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
956                 memcpy(s->s3->previous_client_finished, 
957                        s->s3->tmp.finish_md, i);
958                 s->s3->previous_client_finished_len=i;
959                 }
960         else
961                 {
962                 OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
963                 memcpy(s->s3->previous_server_finished, 
964                        s->s3->tmp.finish_md, i);
965                 s->s3->previous_server_finished_len=i;
966                 }
967
968 #ifdef OPENSSL_SYS_WIN16
969                 /* MSVC 1.5 does not clear the top bytes of the word unless
970                  * I do this.
971                  */
972                 l&=0xffff;
973 #endif
974
975                 d = dtls1_set_message_header(s, d, SSL3_MT_FINISHED, l, 0, l);
976                 s->init_num=(int)l+DTLS1_HM_HEADER_LENGTH;
977                 s->init_off=0;
978
979                 /* buffer the message to handle re-xmits */
980                 dtls1_buffer_message(s, 0);
981
982                 s->state=b;
983                 }
984
985         /* SSL3_ST_SEND_xxxxxx_HELLO_B */
986         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
987         }
988
989 /* for these 2 messages, we need to
990  * ssl->enc_read_ctx                    re-init
991  * ssl->s3->read_sequence               zero
992  * ssl->s3->read_mac_secret             re-init
993  * ssl->session->read_sym_enc           assign
994  * ssl->session->read_compression       assign
995  * ssl->session->read_hash              assign
996  */
997 int dtls1_send_change_cipher_spec(SSL *s, int a, int b)
998         { 
999         unsigned char *p;
1000
1001         if (s->state == a)
1002                 {
1003                 p=(unsigned char *)s->init_buf->data;
1004                 *p++=SSL3_MT_CCS;
1005                 s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1006                 s->init_num=DTLS1_CCS_HEADER_LENGTH;
1007
1008                 if (s->version == DTLS1_BAD_VER) {
1009                         s->d1->next_handshake_write_seq++;
1010                         s2n(s->d1->handshake_write_seq,p);
1011                         s->init_num+=2;
1012                 }
1013
1014                 s->init_off=0;
1015
1016                 dtls1_set_message_header_int(s, SSL3_MT_CCS, 0, 
1017                         s->d1->handshake_write_seq, 0, 0);
1018
1019                 /* buffer the message to handle re-xmits */
1020                 dtls1_buffer_message(s, 1);
1021
1022                 s->state=b;
1023                 }
1024
1025         /* SSL3_ST_CW_CHANGE_B */
1026         return(dtls1_do_write(s,SSL3_RT_CHANGE_CIPHER_SPEC));
1027         }
1028
1029 static int dtls1_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x)
1030         {
1031         int n;
1032         unsigned char *p;
1033
1034         n=i2d_X509(x,NULL);
1035         if (!BUF_MEM_grow_clean(buf,(int)(n+(*l)+3)))
1036                 {
1037                 SSLerr(SSL_F_DTLS1_ADD_CERT_TO_BUF,ERR_R_BUF_LIB);
1038                 return 0;
1039                 }
1040         p=(unsigned char *)&(buf->data[*l]);
1041         l2n3(n,p);
1042         i2d_X509(x,&p);
1043         *l+=n+3;
1044
1045         return 1;
1046         }
1047 unsigned long dtls1_output_cert_chain(SSL *s, X509 *x)
1048         {
1049         unsigned char *p;
1050         int i;
1051         unsigned long l= 3 + DTLS1_HM_HEADER_LENGTH;
1052         BUF_MEM *buf;
1053
1054         /* TLSv1 sends a chain with nothing in it, instead of an alert */
1055         buf=s->init_buf;
1056         if (!BUF_MEM_grow_clean(buf,10))
1057                 {
1058                 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_BUF_LIB);
1059                 return(0);
1060                 }
1061         if (x != NULL)
1062                 {
1063                 X509_STORE_CTX xs_ctx;
1064
1065                 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL))
1066                         {
1067                         SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_X509_LIB);
1068                         return(0);
1069                         }
1070   
1071                 X509_verify_cert(&xs_ctx);
1072                 /* Don't leave errors in the queue */
1073                 ERR_clear_error();
1074                 for (i=0; i < sk_X509_num(xs_ctx.chain); i++)
1075                         {
1076                         x = sk_X509_value(xs_ctx.chain, i);
1077
1078                         if (!dtls1_add_cert_to_buf(buf, &l, x))
1079                                 {
1080                                 X509_STORE_CTX_cleanup(&xs_ctx);
1081                                 return 0;
1082                                 }
1083                         }
1084                 X509_STORE_CTX_cleanup(&xs_ctx);
1085                 }
1086         /* Thawte special :-) */
1087         for (i=0; i<sk_X509_num(s->ctx->extra_certs); i++)
1088                 {
1089                 x=sk_X509_value(s->ctx->extra_certs,i);
1090                 if (!dtls1_add_cert_to_buf(buf, &l, x))
1091                         return 0;
1092                 }
1093
1094         l-= (3 + DTLS1_HM_HEADER_LENGTH);
1095
1096         p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH]);
1097         l2n3(l,p);
1098         l+=3;
1099         p=(unsigned char *)&(buf->data[0]);
1100         p = dtls1_set_message_header(s, p, SSL3_MT_CERTIFICATE, l, 0, l);
1101
1102         l+=DTLS1_HM_HEADER_LENGTH;
1103         return(l);
1104         }
1105
1106 int dtls1_read_failed(SSL *s, int code)
1107         {
1108         if ( code > 0)
1109                 {
1110                 fprintf( stderr, "invalid state reached %s:%d", __FILE__, __LINE__);
1111                 return 1;
1112                 }
1113
1114         if (!dtls1_is_timer_expired(s))
1115                 {
1116                 /* not a timeout, none of our business, 
1117                    let higher layers handle this.  in fact it's probably an error */
1118                 return code;
1119                 }
1120
1121 #ifndef OPENSSL_NO_HEARTBEATS
1122         if (!SSL_in_init(s) && !s->tlsext_hb_pending)  /* done, no need to send a retransmit */
1123 #else
1124         if (!SSL_in_init(s))  /* done, no need to send a retransmit */
1125 #endif
1126                 {
1127                 BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
1128                 return code;
1129                 }
1130
1131 #if 0 /* for now, each alert contains only one record number */
1132         item = pqueue_peek(state->rcvd_records);
1133         if ( item )
1134                 {
1135                 /* send an alert immediately for all the missing records */
1136                 }
1137         else
1138 #endif
1139
1140 #if 0  /* no more alert sending, just retransmit the last set of messages */
1141         if ( state->timeout.read_timeouts >= DTLS1_TMO_READ_COUNT)
1142                 ssl3_send_alert(s,SSL3_AL_WARNING,
1143                         DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);
1144 #endif
1145
1146         return dtls1_handle_timeout(s);
1147         }
1148
1149 int
1150 dtls1_get_queue_priority(unsigned short seq, int is_ccs)
1151         {
1152         /* The index of the retransmission queue actually is the message sequence number,
1153          * since the queue only contains messages of a single handshake. However, the
1154          * ChangeCipherSpec has no message sequence number and so using only the sequence
1155          * will result in the CCS and Finished having the same index. To prevent this,
1156          * the sequence number is multiplied by 2. In case of a CCS 1 is subtracted.
1157          * This does not only differ CSS and Finished, it also maintains the order of the
1158          * index (important for priority queues) and fits in the unsigned short variable.
1159          */     
1160         return seq * 2 - is_ccs;
1161         }
1162
1163 int
1164 dtls1_retransmit_buffered_messages(SSL *s)
1165         {
1166         pqueue sent = s->d1->sent_messages;
1167         piterator iter;
1168         pitem *item;
1169         hm_fragment *frag;
1170         int found = 0;
1171
1172         iter = pqueue_iterator(sent);
1173
1174         for ( item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter))
1175                 {
1176                 frag = (hm_fragment *)item->data;
1177                         if ( dtls1_retransmit_message(s,
1178                                 (unsigned short)dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs),
1179                                 0, &found) <= 0 && found)
1180                         {
1181                         fprintf(stderr, "dtls1_retransmit_message() failed\n");
1182                         return -1;
1183                         }
1184                 }
1185
1186         return 1;
1187         }
1188
1189 int
1190 dtls1_buffer_message(SSL *s, int is_ccs)
1191         {
1192         pitem *item;
1193         hm_fragment *frag;
1194         unsigned char seq64be[8];
1195
1196         /* this function is called immediately after a message has 
1197          * been serialized */
1198         OPENSSL_assert(s->init_off == 0);
1199
1200         frag = dtls1_hm_fragment_new(s->init_num, 0);
1201         if (!frag)
1202                 return 0;
1203
1204         memcpy(frag->fragment, s->init_buf->data, s->init_num);
1205
1206         if ( is_ccs)
1207                 {
1208                 OPENSSL_assert(s->d1->w_msg_hdr.msg_len + 
1209                                ((s->version==DTLS1_VERSION)?DTLS1_CCS_HEADER_LENGTH:3) == (unsigned int)s->init_num);
1210                 }
1211         else
1212                 {
1213                 OPENSSL_assert(s->d1->w_msg_hdr.msg_len + 
1214                         DTLS1_HM_HEADER_LENGTH == (unsigned int)s->init_num);
1215                 }
1216
1217         frag->msg_header.msg_len = s->d1->w_msg_hdr.msg_len;
1218         frag->msg_header.seq = s->d1->w_msg_hdr.seq;
1219         frag->msg_header.type = s->d1->w_msg_hdr.type;
1220         frag->msg_header.frag_off = 0;
1221         frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
1222         frag->msg_header.is_ccs = is_ccs;
1223
1224         /* save current state*/
1225         frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
1226         frag->msg_header.saved_retransmit_state.write_hash = s->write_hash;
1227         frag->msg_header.saved_retransmit_state.compress = s->compress;
1228         frag->msg_header.saved_retransmit_state.session = s->session;
1229         frag->msg_header.saved_retransmit_state.epoch = s->d1->w_epoch;
1230         
1231         memset(seq64be,0,sizeof(seq64be));
1232         seq64be[6] = (unsigned char)(dtls1_get_queue_priority(frag->msg_header.seq,
1233                                                                                                                   frag->msg_header.is_ccs)>>8);
1234         seq64be[7] = (unsigned char)(dtls1_get_queue_priority(frag->msg_header.seq,
1235                                                                                                                   frag->msg_header.is_ccs));
1236
1237         item = pitem_new(seq64be, frag);
1238         if ( item == NULL)
1239                 {
1240                 dtls1_hm_fragment_free(frag);
1241                 return 0;
1242                 }
1243
1244 #if 0
1245         fprintf( stderr, "buffered messge: \ttype = %xx\n", msg_buf->type);
1246         fprintf( stderr, "\t\t\t\t\tlen = %d\n", msg_buf->len);
1247         fprintf( stderr, "\t\t\t\t\tseq_num = %d\n", msg_buf->seq_num);
1248 #endif
1249
1250         pqueue_insert(s->d1->sent_messages, item);
1251         return 1;
1252         }
1253
1254 int
1255 dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
1256         int *found)
1257         {
1258         int ret;
1259         /* XDTLS: for now assuming that read/writes are blocking */
1260         pitem *item;
1261         hm_fragment *frag ;
1262         unsigned long header_length;
1263         unsigned char seq64be[8];
1264         struct dtls1_retransmit_state saved_state;
1265         unsigned char save_write_sequence[8];
1266
1267         /*
1268           OPENSSL_assert(s->init_num == 0);
1269           OPENSSL_assert(s->init_off == 0);
1270          */
1271
1272         /* XDTLS:  the requested message ought to be found, otherwise error */
1273         memset(seq64be,0,sizeof(seq64be));
1274         seq64be[6] = (unsigned char)(seq>>8);
1275         seq64be[7] = (unsigned char)seq;
1276
1277         item = pqueue_find(s->d1->sent_messages, seq64be);
1278         if ( item == NULL)
1279                 {
1280                 fprintf(stderr, "retransmit:  message %d non-existant\n", seq);
1281                 *found = 0;
1282                 return 0;
1283                 }
1284
1285         *found = 1;
1286         frag = (hm_fragment *)item->data;
1287
1288         if ( frag->msg_header.is_ccs)
1289                 header_length = DTLS1_CCS_HEADER_LENGTH;
1290         else
1291                 header_length = DTLS1_HM_HEADER_LENGTH;
1292
1293         memcpy(s->init_buf->data, frag->fragment, 
1294                 frag->msg_header.msg_len + header_length);
1295                 s->init_num = frag->msg_header.msg_len + header_length;
1296
1297         dtls1_set_message_header_int(s, frag->msg_header.type, 
1298                 frag->msg_header.msg_len, frag->msg_header.seq, 0, 
1299                 frag->msg_header.frag_len);
1300
1301         /* save current state */
1302         saved_state.enc_write_ctx = s->enc_write_ctx;
1303         saved_state.write_hash = s->write_hash;
1304         saved_state.compress = s->compress;
1305         saved_state.session = s->session;
1306         saved_state.epoch = s->d1->w_epoch;
1307         saved_state.epoch = s->d1->w_epoch;
1308         
1309         s->d1->retransmitting = 1;
1310         
1311         /* restore state in which the message was originally sent */
1312         s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
1313         s->write_hash = frag->msg_header.saved_retransmit_state.write_hash;
1314         s->compress = frag->msg_header.saved_retransmit_state.compress;
1315         s->session = frag->msg_header.saved_retransmit_state.session;
1316         s->d1->w_epoch = frag->msg_header.saved_retransmit_state.epoch;
1317         
1318         if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
1319         {
1320                 memcpy(save_write_sequence, s->s3->write_sequence, sizeof(s->s3->write_sequence));
1321                 memcpy(s->s3->write_sequence, s->d1->last_write_sequence, sizeof(s->s3->write_sequence));
1322         }
1323         
1324         ret = dtls1_do_write(s, frag->msg_header.is_ccs ? 
1325                                                  SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
1326         
1327         /* restore current state */
1328         s->enc_write_ctx = saved_state.enc_write_ctx;
1329         s->write_hash = saved_state.write_hash;
1330         s->compress = saved_state.compress;
1331         s->session = saved_state.session;
1332         s->d1->w_epoch = saved_state.epoch;
1333         
1334         if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
1335         {
1336                 memcpy(s->d1->last_write_sequence, s->s3->write_sequence, sizeof(s->s3->write_sequence));
1337                 memcpy(s->s3->write_sequence, save_write_sequence, sizeof(s->s3->write_sequence));
1338         }
1339
1340         s->d1->retransmitting = 0;
1341
1342         (void)BIO_flush(SSL_get_wbio(s));
1343         return ret;
1344         }
1345
1346 /* call this function when the buffered messages are no longer needed */
1347 void
1348 dtls1_clear_record_buffer(SSL *s)
1349         {
1350         pitem *item;
1351
1352         for(item = pqueue_pop(s->d1->sent_messages);
1353                 item != NULL; item = pqueue_pop(s->d1->sent_messages))
1354                 {
1355                 dtls1_hm_fragment_free((hm_fragment *)item->data);
1356                 pitem_free(item);
1357                 }
1358         }
1359
1360
1361 unsigned char *
1362 dtls1_set_message_header(SSL *s, unsigned char *p, unsigned char mt,
1363                         unsigned long len, unsigned long frag_off, unsigned long frag_len)
1364         {
1365         /* Don't change sequence numbers while listening */
1366         if (frag_off == 0 && !s->d1->listen)
1367                 {
1368                 s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1369                 s->d1->next_handshake_write_seq++;
1370                 }
1371
1372         dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
1373                 frag_off, frag_len);
1374
1375         return p += DTLS1_HM_HEADER_LENGTH;
1376         }
1377
1378
1379 /* don't actually do the writing, wait till the MTU has been retrieved */
1380 static void
1381 dtls1_set_message_header_int(SSL *s, unsigned char mt,
1382                             unsigned long len, unsigned short seq_num, unsigned long frag_off,
1383                             unsigned long frag_len)
1384         {
1385         struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1386
1387         msg_hdr->type = mt;
1388         msg_hdr->msg_len = len;
1389         msg_hdr->seq = seq_num;
1390         msg_hdr->frag_off = frag_off;
1391         msg_hdr->frag_len = frag_len;
1392         }
1393
1394 static void
1395 dtls1_fix_message_header(SSL *s, unsigned long frag_off,
1396                         unsigned long frag_len)
1397         {
1398         struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1399
1400         msg_hdr->frag_off = frag_off;
1401         msg_hdr->frag_len = frag_len;
1402         }
1403
1404 static unsigned char *
1405 dtls1_write_message_header(SSL *s, unsigned char *p)
1406         {
1407         struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1408
1409         *p++ = msg_hdr->type;
1410         l2n3(msg_hdr->msg_len, p);
1411
1412         s2n(msg_hdr->seq, p);
1413         l2n3(msg_hdr->frag_off, p);
1414         l2n3(msg_hdr->frag_len, p);
1415
1416         return p;
1417         }
1418
1419 unsigned int 
1420 dtls1_min_mtu(void)
1421         {
1422         return (g_probable_mtu[(sizeof(g_probable_mtu) / 
1423                 sizeof(g_probable_mtu[0])) - 1]);
1424         }
1425
1426 static unsigned int 
1427 dtls1_guess_mtu(unsigned int curr_mtu)
1428         {
1429         unsigned int i;
1430
1431         if ( curr_mtu == 0 )
1432                 return g_probable_mtu[0] ;
1433
1434         for ( i = 0; i < sizeof(g_probable_mtu)/sizeof(g_probable_mtu[0]); i++)
1435                 if ( curr_mtu > g_probable_mtu[i])
1436                         return g_probable_mtu[i];
1437
1438         return curr_mtu;
1439         }
1440
1441 void
1442 dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr)
1443         {
1444         memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
1445         msg_hdr->type = *(data++);
1446         n2l3(data, msg_hdr->msg_len);
1447
1448         n2s(data, msg_hdr->seq);
1449         n2l3(data, msg_hdr->frag_off);
1450         n2l3(data, msg_hdr->frag_len);
1451         }
1452
1453 void
1454 dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr)
1455         {
1456         memset(ccs_hdr, 0x00, sizeof(struct ccs_header_st));
1457
1458         ccs_hdr->type = *(data++);
1459         }
1460
1461 int dtls1_shutdown(SSL *s)
1462         {
1463         int ret;
1464 #ifndef OPENSSL_NO_SCTP
1465         if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
1466             !(s->shutdown & SSL_SENT_SHUTDOWN))
1467                 {
1468                 ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
1469                 if (ret < 0) return -1;
1470
1471                 if (ret == 0)
1472                         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1, NULL);
1473                 }
1474 #endif
1475         ret = ssl3_shutdown(s);
1476 #ifndef OPENSSL_NO_SCTP
1477         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL);
1478 #endif
1479         return ret;
1480         }
1481
1482 #ifndef OPENSSL_NO_HEARTBEATS
1483 int
1484 dtls1_process_heartbeat(SSL *s)
1485         {
1486         unsigned char *p = &s->s3->rrec.data[0], *pl;
1487         unsigned short hbtype;
1488         unsigned int payload;
1489         unsigned int padding = 16; /* Use minimum padding */
1490
1491         if (s->msg_callback)
1492                 s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT,
1493                         &s->s3->rrec.data[0], s->s3->rrec.length,
1494                         s, s->msg_callback_arg);
1495
1496         /* Read type and payload length first */
1497         if (1 + 2 + 16 > s->s3->rrec.length)
1498                 return 0; /* silently discard */
1499         hbtype = *p++;
1500         n2s(p, payload);
1501         if (1 + 2 + payload + 16 > s->s3->rrec.length)
1502                 return 0; /* silently discard per RFC 6520 sec. 4 */
1503         pl = p;
1504
1505         if (hbtype == TLS1_HB_REQUEST)
1506                 {
1507                 unsigned char *buffer, *bp;
1508                 unsigned int write_length = 1 /* heartbeat type */ +
1509                                             2 /* heartbeat length */ +
1510                                             payload + padding;
1511                 int r;
1512
1513                 if (write_length > SSL3_RT_MAX_PLAIN_LENGTH)
1514                         return 0;
1515
1516                 /* Allocate memory for the response, size is 1 byte
1517                  * message type, plus 2 bytes payload length, plus
1518                  * payload, plus padding
1519                  */
1520                 buffer = OPENSSL_malloc(write_length);
1521                 bp = buffer;
1522
1523                 /* Enter response type, length and copy payload */
1524                 *bp++ = TLS1_HB_RESPONSE;
1525                 s2n(payload, bp);
1526                 memcpy(bp, pl, payload);
1527                 bp += payload;
1528                 /* Random padding */
1529                 RAND_pseudo_bytes(bp, padding);
1530
1531                 r = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buffer, write_length);
1532
1533                 if (r >= 0 && s->msg_callback)
1534                         s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
1535                                 buffer, write_length,
1536                                 s, s->msg_callback_arg);
1537
1538                 OPENSSL_free(buffer);
1539
1540                 if (r < 0)
1541                         return r;
1542                 }
1543         else if (hbtype == TLS1_HB_RESPONSE)
1544                 {
1545                 unsigned int seq;
1546
1547                 /* We only send sequence numbers (2 bytes unsigned int),
1548                  * and 16 random bytes, so we just try to read the
1549                  * sequence number */
1550                 n2s(pl, seq);
1551
1552                 if (payload == 18 && seq == s->tlsext_hb_seq)
1553                         {
1554                         dtls1_stop_timer(s);
1555                         s->tlsext_hb_seq++;
1556                         s->tlsext_hb_pending = 0;
1557                         }
1558                 }
1559
1560         return 0;
1561         }
1562
1563 int
1564 dtls1_heartbeat(SSL *s)
1565         {
1566         unsigned char *buf, *p;
1567         int ret;
1568         unsigned int payload = 18; /* Sequence number + random bytes */
1569         unsigned int padding = 16; /* Use minimum padding */
1570
1571         /* Only send if peer supports and accepts HB requests... */
1572         if (!(s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) ||
1573             s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_SEND_REQUESTS)
1574                 {
1575                 SSLerr(SSL_F_DTLS1_HEARTBEAT,SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT);
1576                 return -1;
1577                 }
1578
1579         /* ...and there is none in flight yet... */
1580         if (s->tlsext_hb_pending)
1581                 {
1582                 SSLerr(SSL_F_DTLS1_HEARTBEAT,SSL_R_TLS_HEARTBEAT_PENDING);
1583                 return -1;
1584                 }
1585
1586         /* ...and no handshake in progress. */
1587         if (SSL_in_init(s) || s->in_handshake)
1588                 {
1589                 SSLerr(SSL_F_DTLS1_HEARTBEAT,SSL_R_UNEXPECTED_MESSAGE);
1590                 return -1;
1591                 }
1592
1593         /* Check if padding is too long, payload and padding
1594          * must not exceed 2^14 - 3 = 16381 bytes in total.
1595          */
1596         OPENSSL_assert(payload + padding <= 16381);
1597
1598         /* Create HeartBeat message, we just use a sequence number
1599          * as payload to distuingish different messages and add
1600          * some random stuff.
1601          *  - Message Type, 1 byte
1602          *  - Payload Length, 2 bytes (unsigned int)
1603          *  - Payload, the sequence number (2 bytes uint)
1604          *  - Payload, random bytes (16 bytes uint)
1605          *  - Padding
1606          */
1607         buf = OPENSSL_malloc(1 + 2 + payload + padding);
1608         p = buf;
1609         /* Message Type */
1610         *p++ = TLS1_HB_REQUEST;
1611         /* Payload length (18 bytes here) */
1612         s2n(payload, p);
1613         /* Sequence number */
1614         s2n(s->tlsext_hb_seq, p);
1615         /* 16 random bytes */
1616         RAND_pseudo_bytes(p, 16);
1617         p += 16;
1618         /* Random padding */
1619         RAND_pseudo_bytes(p, padding);
1620
1621         ret = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buf, 3 + payload + padding);
1622         if (ret >= 0)
1623                 {
1624                 if (s->msg_callback)
1625                         s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
1626                                 buf, 3 + payload + padding,
1627                                 s, s->msg_callback_arg);
1628
1629                 dtls1_start_timer(s);
1630                 s->tlsext_hb_pending = 1;
1631                 }
1632
1633         OPENSSL_free(buf);
1634
1635         return ret;
1636         }
1637 #endif