3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
6 /* ====================================================================
7 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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 * ====================================================================
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).
59 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
60 * All rights reserved.
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.
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).
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.
80 * Redistribution and use in source and binary forms, with or without
81 * modification, are permitted provided that the following conditions
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)"
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
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.]
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>
126 #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8)
128 #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \
129 if ((end) - (start) <= 8) { \
131 for (ii = (start); ii < (end); ii++) bitmask[((ii) >> 3)] |= (1 << ((ii) & 7)); \
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)]; \
139 #define RSMBLY_BITMASK_IS_COMPLETE(bitmask, msg_len, is_complete) { \
141 OPENSSL_assert((msg_len) > 0); \
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; } }
148 #define RSMBLY_BITMASK_PRINT(bitmask, msg_len) { \
150 printf("bitmask: "); for (ii = 0; ii < (msg_len); ii++) \
151 printf("%d ", (bitmask[ii >> 3] & (1 << (ii & 7))) >> (ii & 7)); \
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};
158 /* XDTLS: figure out the right values */
159 static unsigned int g_probable_mtu[] = {1500 - 28, 512 - 28, 256 - 28};
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,
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,
173 dtls1_hm_fragment_new(unsigned long frag_len, int reassembly)
175 hm_fragment *frag = NULL;
176 unsigned char *buf = NULL;
177 unsigned char *bitmask = NULL;
179 frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
185 buf = (unsigned char *)OPENSSL_malloc(frag_len);
193 /* zero length fragment gets zero frag->fragment */
194 frag->fragment = buf;
196 /* Initialize reassembly bitmask if necessary */
199 bitmask = (unsigned char *)OPENSSL_malloc(RSMBLY_BITMASK_SIZE(frag_len));
202 if (buf != NULL) OPENSSL_free(buf);
206 memset(bitmask, 0, RSMBLY_BITMASK_SIZE(frag_len));
209 frag->reassembly = bitmask;
215 dtls1_hm_fragment_free(hm_fragment *frag)
218 if (frag->msg_header.is_ccs)
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);
223 if (frag->fragment) OPENSSL_free(frag->fragment);
224 if (frag->reassembly) OPENSSL_free(frag->reassembly);
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)
233 unsigned int len, frag_off, mac_size, blocksize;
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))
239 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
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())
246 s->d1->mtu = dtls1_guess_mtu(s->d1->mtu);
247 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU,
254 fprintf(stderr, "using MTU = %d\n", mtu);
256 mtu -= (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
258 curr_mtu = mtu - BIO_wpending(SSL_get_wbio(s));
262 else if ( ( ret = BIO_flush(SSL_get_wbio(s))) <= 0)
265 if ( BIO_wpending(SSL_get_wbio(s)) + s->init_num >= mtu)
267 ret = BIO_flush(SSL_get_wbio(s));
270 mtu = s->d1->mtu - (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
274 OPENSSL_assert(s->d1->mtu >= dtls1_min_mtu()); /* should have something reasonable now */
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);
281 mac_size = EVP_MD_CTX_size(s->write_hash);
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);
294 curr_mtu = s->d1->mtu - BIO_wpending(SSL_get_wbio(s)) -
295 DTLS1_RT_HEADER_LENGTH - mac_size - blocksize;
297 if ( curr_mtu <= DTLS1_HM_HEADER_LENGTH)
299 /* grr.. we could get an error if MTU picked was wrong */
300 ret = BIO_flush(SSL_get_wbio(s));
303 curr_mtu = s->d1->mtu - DTLS1_RT_HEADER_LENGTH -
304 mac_size - blocksize;
307 if ( s->init_num > curr_mtu)
313 /* XDTLS: this function is too long. split out the CCS part */
314 if ( type == SSL3_RT_HANDSHAKE)
316 if ( s->init_off != 0)
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;
322 if ( s->init_num > curr_mtu)
328 dtls1_fix_message_header(s, frag_off,
329 len - DTLS1_HM_HEADER_LENGTH);
331 dtls1_write_message_header(s, (unsigned char *)&s->init_buf->data[s->init_off]);
333 OPENSSL_assert(len >= DTLS1_HM_HEADER_LENGTH);
336 ret=dtls1_write_bytes(s,type,&s->init_buf->data[s->init_off],
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
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);
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);
360 if (type == SSL3_RT_HANDSHAKE && ! s->d1->retransmitting)
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;
368 if (frag_off == 0 && s->version != DTLS1_BAD_VER)
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);
376 l2n3(msg_hdr->msg_len,p);
377 p -= DTLS1_HM_HEADER_LENGTH;
382 p += DTLS1_HM_HEADER_LENGTH;
383 xlen = ret - DTLS1_HM_HEADER_LENGTH;
386 ssl3_finish_mac(s, p, xlen);
389 if (ret == s->init_num)
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);
396 s->init_off = 0; /* done writing this message */
403 frag_off += (ret -= DTLS1_HM_HEADER_LENGTH);
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
415 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
418 struct hm_header_st *msg_hdr;
420 unsigned long msg_len;
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)
426 s->s3->tmp.reuse_message=0;
427 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
429 al=SSL_AD_UNEXPECTED_MESSAGE;
430 SSLerr(SSL_F_DTLS1_GET_MESSAGE,SSL_R_UNEXPECTED_MESSAGE);
434 s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
435 s->init_num = (int)s->s3->tmp.message_size;
439 msg_hdr = &s->d1->r_msg_hdr;
440 memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
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 */
447 else if ( i <= 0 && !*ok)
450 p = (unsigned char *)s->init_buf->data;
451 msg_len = msg_hdr->msg_len;
453 /* reconstruct message header */
454 *(p++) = msg_hdr->type;
456 s2n (msg_hdr->seq,p);
459 if (s->version != DTLS1_BAD_VER) {
460 p -= DTLS1_HM_HEADER_LENGTH;
461 msg_len += DTLS1_HM_HEADER_LENGTH;
464 ssl3_finish_mac(s, p, msg_len);
466 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
468 s, s->msg_callback_arg);
470 memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
472 /* Don't change sequence numbers while listening */
474 s->d1->handshake_read_seq++;
476 s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
480 ssl3_send_alert(s,SSL3_AL_FATAL,al);
486 static int dtls1_preprocess_fragment(SSL *s,struct hm_header_st *msg_hdr,int max)
488 size_t frag_off,frag_len,msg_len;
490 msg_len = msg_hdr->msg_len;
491 frag_off = msg_hdr->frag_off;
492 frag_len = msg_hdr->frag_len;
494 /* sanity checking */
495 if ( (frag_off+frag_len) > msg_len)
497 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
498 return SSL_AD_ILLEGAL_PARAMETER;
501 if ( (frag_off+frag_len) > (unsigned long)max)
503 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
504 return SSL_AD_ILLEGAL_PARAMETER;
507 if ( s->d1->r_msg_hdr.frag_off == 0) /* first fragment */
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))
513 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,ERR_R_BUF_LIB);
514 return SSL_AD_INTERNAL_ERROR;
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;
523 else if (msg_len != s->d1->r_msg_hdr.msg_len)
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;
531 return 0; /* no error */
536 dtls1_retrieve_buffered_fragment(SSL *s, long max, int *ok)
538 /* (0) check whether the desired fragment is available
540 * (1) copy over the fragment to s->init_buf->data[]
541 * (2) update s->init_num
548 item = pqueue_peek(s->d1->buffered_messages);
552 frag = (hm_fragment *)item->data;
554 /* Don't return if reassembly still in progress */
555 if (frag->reassembly != NULL)
558 if ( s->d1->handshake_read_seq == frag->msg_header.seq)
560 unsigned long frag_len = frag->msg_header.frag_len;
561 pqueue_pop(s->d1->buffered_messages);
563 al=dtls1_preprocess_fragment(s,&frag->msg_header,max);
565 if (al==0) /* no alert */
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);
572 dtls1_hm_fragment_free(frag);
581 ssl3_send_alert(s,SSL3_AL_FATAL,al);
592 dtls1_reassemble_fragment(SSL *s, struct hm_header_st* msg_hdr, int *ok)
594 hm_fragment *frag = NULL;
596 int i = -1, is_complete;
597 unsigned char seq64be[8];
598 unsigned long frag_len = msg_hdr->frag_len, max_len;
600 if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len)
603 /* Determine maximum allowed message size. Depends on (user set)
604 * maximum certificate length, but 16k is minimum.
606 if (DTLS1_HM_HEADER_LENGTH + SSL3_RT_MAX_ENCRYPTED_LENGTH < s->max_cert_list)
607 max_len = s->max_cert_list;
609 max_len = DTLS1_HM_HEADER_LENGTH + SSL3_RT_MAX_ENCRYPTED_LENGTH;
611 if ((msg_hdr->frag_off+frag_len) > max_len)
614 /* Try to find item in queue */
615 memset(seq64be,0,sizeof(seq64be));
616 seq64be[6] = (unsigned char) (msg_hdr->seq>>8);
617 seq64be[7] = (unsigned char) msg_hdr->seq;
618 item = pqueue_find(s->d1->buffered_messages, seq64be);
622 frag = dtls1_hm_fragment_new(msg_hdr->msg_len, 1);
625 memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
626 frag->msg_header.frag_len = frag->msg_header.msg_len;
627 frag->msg_header.frag_off = 0;
630 frag = (hm_fragment*) item->data;
632 /* If message is already reassembled, this must be a
633 * retransmit and can be dropped.
635 if (frag->reassembly == NULL)
637 unsigned char devnull [256];
641 i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
643 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
647 return DTLS1_HM_FRAGMENT_RETRY;
650 /* read the body of the fragment (header has already been read */
651 i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
652 frag->fragment + msg_hdr->frag_off,frag_len,0);
653 if (i<=0 || (unsigned long)i!=frag_len)
656 RSMBLY_BITMASK_MARK(frag->reassembly, (long)msg_hdr->frag_off,
657 (long)(msg_hdr->frag_off + frag_len));
659 RSMBLY_BITMASK_IS_COMPLETE(frag->reassembly, (long)msg_hdr->msg_len,
664 OPENSSL_free(frag->reassembly);
665 frag->reassembly = NULL;
670 memset(seq64be,0,sizeof(seq64be));
671 seq64be[6] = (unsigned char)(msg_hdr->seq>>8);
672 seq64be[7] = (unsigned char)(msg_hdr->seq);
674 item = pitem_new(seq64be, frag);
681 pqueue_insert(s->d1->buffered_messages, item);
684 return DTLS1_HM_FRAGMENT_RETRY;
687 if (frag != NULL) dtls1_hm_fragment_free(frag);
688 if (item != NULL) OPENSSL_free(item);
695 dtls1_process_out_of_seq_message(SSL *s, struct hm_header_st* msg_hdr, int *ok)
698 hm_fragment *frag = NULL;
700 unsigned char seq64be[8];
701 unsigned long frag_len = msg_hdr->frag_len;
703 if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len)
706 /* Try to find item in queue, to prevent duplicate entries */
707 memset(seq64be,0,sizeof(seq64be));
708 seq64be[6] = (unsigned char) (msg_hdr->seq>>8);
709 seq64be[7] = (unsigned char) msg_hdr->seq;
710 item = pqueue_find(s->d1->buffered_messages, seq64be);
712 /* If we already have an entry and this one is a fragment,
713 * don't discard it and rather try to reassemble it.
715 if (item != NULL && frag_len < msg_hdr->msg_len)
718 /* Discard the message if sequence number was already there, is
719 * too far in the future, already in the queue or if we received
720 * a FINISHED before the SERVER_HELLO, which then must be a stale
723 if (msg_hdr->seq <= s->d1->handshake_read_seq ||
724 msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL ||
725 (s->d1->handshake_read_seq == 0 && msg_hdr->type == SSL3_MT_FINISHED))
727 unsigned char devnull [256];
731 i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
733 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
740 if (frag_len && frag_len < msg_hdr->msg_len)
741 return dtls1_reassemble_fragment(s, msg_hdr, ok);
743 frag = dtls1_hm_fragment_new(frag_len, 0);
747 memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
751 /* read the body of the fragment (header has already been read */
752 i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
753 frag->fragment,frag_len,0);
754 if (i<=0 || (unsigned long)i!=frag_len)
758 memset(seq64be,0,sizeof(seq64be));
759 seq64be[6] = (unsigned char)(msg_hdr->seq>>8);
760 seq64be[7] = (unsigned char)(msg_hdr->seq);
762 item = pitem_new(seq64be, frag);
766 pqueue_insert(s->d1->buffered_messages, item);
769 return DTLS1_HM_FRAGMENT_RETRY;
772 if ( frag != NULL) dtls1_hm_fragment_free(frag);
773 if ( item != NULL) OPENSSL_free(item);
780 dtls1_get_message_fragment(SSL *s, int st1, int stn, long max, int *ok)
782 unsigned char wire[DTLS1_HM_HEADER_LENGTH];
783 unsigned long len, frag_off, frag_len;
785 struct hm_header_st msg_hdr;
787 /* see if we have the required fragment already */
788 if ((frag_len = dtls1_retrieve_buffered_fragment(s,max,ok)) || *ok)
790 if (*ok) s->init_num = frag_len;
794 /* read handshake message header */
795 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,wire,
796 DTLS1_HM_HEADER_LENGTH, 0);
797 if (i <= 0) /* nbio, or an error */
799 s->rwstate=SSL_READING;
803 /* Handshake fails if message header is incomplete */
804 if (i != DTLS1_HM_HEADER_LENGTH)
806 al=SSL_AD_UNEXPECTED_MESSAGE;
807 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL_R_UNEXPECTED_MESSAGE);
811 /* parse the message fragment header */
812 dtls1_get_message_header(wire, &msg_hdr);
815 * if this is a future (or stale) message it gets buffered
816 * (or dropped)--no further processing at this time
817 * While listening, we accept seq 1 (ClientHello with cookie)
818 * although we're still expecting seq 0 (ClientHello)
820 if (msg_hdr.seq != s->d1->handshake_read_seq && !(s->d1->listen && msg_hdr.seq == 1))
821 return dtls1_process_out_of_seq_message(s, &msg_hdr, ok);
823 len = msg_hdr.msg_len;
824 frag_off = msg_hdr.frag_off;
825 frag_len = msg_hdr.frag_len;
827 if (frag_len && frag_len < len)
828 return dtls1_reassemble_fragment(s, &msg_hdr, ok);
830 if (!s->server && s->d1->r_msg_hdr.frag_off == 0 &&
831 wire[0] == SSL3_MT_HELLO_REQUEST)
833 /* The server may always send 'Hello Request' messages --
834 * we are doing a handshake anyway now, so ignore them
835 * if their format is correct. Does not count for
837 if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0)
840 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
841 wire, DTLS1_HM_HEADER_LENGTH, s,
842 s->msg_callback_arg);
845 return dtls1_get_message_fragment(s, st1, stn,
848 else /* Incorrectly formated Hello request */
850 al=SSL_AD_UNEXPECTED_MESSAGE;
851 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL_R_UNEXPECTED_MESSAGE);
856 if ((al=dtls1_preprocess_fragment(s,&msg_hdr,max)))
859 /* XDTLS: ressurect this when restart is in place */
864 unsigned char *p=(unsigned char *)s->init_buf->data+DTLS1_HM_HEADER_LENGTH;
866 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
867 &p[frag_off],frag_len,0);
868 /* XDTLS: fix this--message fragments cannot span multiple packets */
871 s->rwstate=SSL_READING;
879 /* XDTLS: an incorrectly formatted fragment should cause the
880 * handshake to fail */
881 if (i != (int)frag_len)
883 al=SSL3_AD_ILLEGAL_PARAMETER;
884 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL3_AD_ILLEGAL_PARAMETER);
890 /* Note that s->init_num is *not* used as current offset in
891 * s->init_buf->data, but as a counter summing up fragments'
892 * lengths: as soon as they sum up to handshake packet
893 * length, we assume we have got all the fragments. */
894 s->init_num = frag_len;
898 ssl3_send_alert(s,SSL3_AL_FATAL,al);
905 int dtls1_send_finished(SSL *s, int a, int b, const char *sender, int slen)
913 d=(unsigned char *)s->init_buf->data;
914 p= &(d[DTLS1_HM_HEADER_LENGTH]);
916 i=s->method->ssl3_enc->final_finish_mac(s,
917 sender,slen,s->s3->tmp.finish_md);
918 s->s3->tmp.finish_md_len = i;
919 memcpy(p, s->s3->tmp.finish_md, i);
923 /* Copy the finished so we can use it for
924 * renegotiation checks
926 if(s->type == SSL_ST_CONNECT)
928 OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
929 memcpy(s->s3->previous_client_finished,
930 s->s3->tmp.finish_md, i);
931 s->s3->previous_client_finished_len=i;
935 OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
936 memcpy(s->s3->previous_server_finished,
937 s->s3->tmp.finish_md, i);
938 s->s3->previous_server_finished_len=i;
941 #ifdef OPENSSL_SYS_WIN16
942 /* MSVC 1.5 does not clear the top bytes of the word unless
948 d = dtls1_set_message_header(s, d, SSL3_MT_FINISHED, l, 0, l);
949 s->init_num=(int)l+DTLS1_HM_HEADER_LENGTH;
952 /* buffer the message to handle re-xmits */
953 dtls1_buffer_message(s, 0);
958 /* SSL3_ST_SEND_xxxxxx_HELLO_B */
959 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
962 /* for these 2 messages, we need to
963 * ssl->enc_read_ctx re-init
964 * ssl->s3->read_sequence zero
965 * ssl->s3->read_mac_secret re-init
966 * ssl->session->read_sym_enc assign
967 * ssl->session->read_compression assign
968 * ssl->session->read_hash assign
970 int dtls1_send_change_cipher_spec(SSL *s, int a, int b)
976 p=(unsigned char *)s->init_buf->data;
978 s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
979 s->init_num=DTLS1_CCS_HEADER_LENGTH;
981 if (s->version == DTLS1_BAD_VER) {
982 s->d1->next_handshake_write_seq++;
983 s2n(s->d1->handshake_write_seq,p);
989 dtls1_set_message_header_int(s, SSL3_MT_CCS, 0,
990 s->d1->handshake_write_seq, 0, 0);
992 /* buffer the message to handle re-xmits */
993 dtls1_buffer_message(s, 1);
998 /* SSL3_ST_CW_CHANGE_B */
999 return(dtls1_do_write(s,SSL3_RT_CHANGE_CIPHER_SPEC));
1002 static int dtls1_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x)
1008 if (!BUF_MEM_grow_clean(buf,(int)(n+(*l)+3)))
1010 SSLerr(SSL_F_DTLS1_ADD_CERT_TO_BUF,ERR_R_BUF_LIB);
1013 p=(unsigned char *)&(buf->data[*l]);
1020 unsigned long dtls1_output_cert_chain(SSL *s, X509 *x)
1024 unsigned long l= 3 + DTLS1_HM_HEADER_LENGTH;
1027 /* TLSv1 sends a chain with nothing in it, instead of an alert */
1029 if (!BUF_MEM_grow_clean(buf,10))
1031 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_BUF_LIB);
1036 X509_STORE_CTX xs_ctx;
1038 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL))
1040 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_X509_LIB);
1044 X509_verify_cert(&xs_ctx);
1045 /* Don't leave errors in the queue */
1047 for (i=0; i < sk_X509_num(xs_ctx.chain); i++)
1049 x = sk_X509_value(xs_ctx.chain, i);
1051 if (!dtls1_add_cert_to_buf(buf, &l, x))
1053 X509_STORE_CTX_cleanup(&xs_ctx);
1057 X509_STORE_CTX_cleanup(&xs_ctx);
1059 /* Thawte special :-) */
1060 for (i=0; i<sk_X509_num(s->ctx->extra_certs); i++)
1062 x=sk_X509_value(s->ctx->extra_certs,i);
1063 if (!dtls1_add_cert_to_buf(buf, &l, x))
1067 l-= (3 + DTLS1_HM_HEADER_LENGTH);
1069 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH]);
1072 p=(unsigned char *)&(buf->data[0]);
1073 p = dtls1_set_message_header(s, p, SSL3_MT_CERTIFICATE, l, 0, l);
1075 l+=DTLS1_HM_HEADER_LENGTH;
1079 int dtls1_read_failed(SSL *s, int code)
1083 fprintf( stderr, "invalid state reached %s:%d", __FILE__, __LINE__);
1087 if (!dtls1_is_timer_expired(s))
1089 /* not a timeout, none of our business,
1090 let higher layers handle this. in fact it's probably an error */
1094 #ifndef OPENSSL_NO_HEARTBEATS
1095 if (!SSL_in_init(s) && !s->tlsext_hb_pending) /* done, no need to send a retransmit */
1097 if (!SSL_in_init(s)) /* done, no need to send a retransmit */
1100 BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
1104 #if 0 /* for now, each alert contains only one record number */
1105 item = pqueue_peek(state->rcvd_records);
1108 /* send an alert immediately for all the missing records */
1113 #if 0 /* no more alert sending, just retransmit the last set of messages */
1114 if ( state->timeout.read_timeouts >= DTLS1_TMO_READ_COUNT)
1115 ssl3_send_alert(s,SSL3_AL_WARNING,
1116 DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);
1119 return dtls1_handle_timeout(s);
1123 dtls1_get_queue_priority(unsigned short seq, int is_ccs)
1125 /* The index of the retransmission queue actually is the message sequence number,
1126 * since the queue only contains messages of a single handshake. However, the
1127 * ChangeCipherSpec has no message sequence number and so using only the sequence
1128 * will result in the CCS and Finished having the same index. To prevent this,
1129 * the sequence number is multiplied by 2. In case of a CCS 1 is subtracted.
1130 * This does not only differ CSS and Finished, it also maintains the order of the
1131 * index (important for priority queues) and fits in the unsigned short variable.
1133 return seq * 2 - is_ccs;
1137 dtls1_retransmit_buffered_messages(SSL *s)
1139 pqueue sent = s->d1->sent_messages;
1145 iter = pqueue_iterator(sent);
1147 for ( item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter))
1149 frag = (hm_fragment *)item->data;
1150 if ( dtls1_retransmit_message(s,
1151 (unsigned short)dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs),
1152 0, &found) <= 0 && found)
1154 fprintf(stderr, "dtls1_retransmit_message() failed\n");
1163 dtls1_buffer_message(SSL *s, int is_ccs)
1167 unsigned char seq64be[8];
1169 /* this function is called immediately after a message has
1170 * been serialized */
1171 OPENSSL_assert(s->init_off == 0);
1173 frag = dtls1_hm_fragment_new(s->init_num, 0);
1175 memcpy(frag->fragment, s->init_buf->data, s->init_num);
1179 OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1180 ((s->version==DTLS1_VERSION)?DTLS1_CCS_HEADER_LENGTH:3) == (unsigned int)s->init_num);
1184 OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1185 DTLS1_HM_HEADER_LENGTH == (unsigned int)s->init_num);
1188 frag->msg_header.msg_len = s->d1->w_msg_hdr.msg_len;
1189 frag->msg_header.seq = s->d1->w_msg_hdr.seq;
1190 frag->msg_header.type = s->d1->w_msg_hdr.type;
1191 frag->msg_header.frag_off = 0;
1192 frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
1193 frag->msg_header.is_ccs = is_ccs;
1195 /* save current state*/
1196 frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
1197 frag->msg_header.saved_retransmit_state.write_hash = s->write_hash;
1198 frag->msg_header.saved_retransmit_state.compress = s->compress;
1199 frag->msg_header.saved_retransmit_state.session = s->session;
1200 frag->msg_header.saved_retransmit_state.epoch = s->d1->w_epoch;
1202 memset(seq64be,0,sizeof(seq64be));
1203 seq64be[6] = (unsigned char)(dtls1_get_queue_priority(frag->msg_header.seq,
1204 frag->msg_header.is_ccs)>>8);
1205 seq64be[7] = (unsigned char)(dtls1_get_queue_priority(frag->msg_header.seq,
1206 frag->msg_header.is_ccs));
1208 item = pitem_new(seq64be, frag);
1211 dtls1_hm_fragment_free(frag);
1216 fprintf( stderr, "buffered messge: \ttype = %xx\n", msg_buf->type);
1217 fprintf( stderr, "\t\t\t\t\tlen = %d\n", msg_buf->len);
1218 fprintf( stderr, "\t\t\t\t\tseq_num = %d\n", msg_buf->seq_num);
1221 pqueue_insert(s->d1->sent_messages, item);
1226 dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
1230 /* XDTLS: for now assuming that read/writes are blocking */
1233 unsigned long header_length;
1234 unsigned char seq64be[8];
1235 struct dtls1_retransmit_state saved_state;
1236 unsigned char save_write_sequence[8];
1239 OPENSSL_assert(s->init_num == 0);
1240 OPENSSL_assert(s->init_off == 0);
1243 /* XDTLS: the requested message ought to be found, otherwise error */
1244 memset(seq64be,0,sizeof(seq64be));
1245 seq64be[6] = (unsigned char)(seq>>8);
1246 seq64be[7] = (unsigned char)seq;
1248 item = pqueue_find(s->d1->sent_messages, seq64be);
1251 fprintf(stderr, "retransmit: message %d non-existant\n", seq);
1257 frag = (hm_fragment *)item->data;
1259 if ( frag->msg_header.is_ccs)
1260 header_length = DTLS1_CCS_HEADER_LENGTH;
1262 header_length = DTLS1_HM_HEADER_LENGTH;
1264 memcpy(s->init_buf->data, frag->fragment,
1265 frag->msg_header.msg_len + header_length);
1266 s->init_num = frag->msg_header.msg_len + header_length;
1268 dtls1_set_message_header_int(s, frag->msg_header.type,
1269 frag->msg_header.msg_len, frag->msg_header.seq, 0,
1270 frag->msg_header.frag_len);
1272 /* save current state */
1273 saved_state.enc_write_ctx = s->enc_write_ctx;
1274 saved_state.write_hash = s->write_hash;
1275 saved_state.compress = s->compress;
1276 saved_state.session = s->session;
1277 saved_state.epoch = s->d1->w_epoch;
1278 saved_state.epoch = s->d1->w_epoch;
1280 s->d1->retransmitting = 1;
1282 /* restore state in which the message was originally sent */
1283 s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
1284 s->write_hash = frag->msg_header.saved_retransmit_state.write_hash;
1285 s->compress = frag->msg_header.saved_retransmit_state.compress;
1286 s->session = frag->msg_header.saved_retransmit_state.session;
1287 s->d1->w_epoch = frag->msg_header.saved_retransmit_state.epoch;
1289 if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
1291 memcpy(save_write_sequence, s->s3->write_sequence, sizeof(s->s3->write_sequence));
1292 memcpy(s->s3->write_sequence, s->d1->last_write_sequence, sizeof(s->s3->write_sequence));
1295 ret = dtls1_do_write(s, frag->msg_header.is_ccs ?
1296 SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
1298 /* restore current state */
1299 s->enc_write_ctx = saved_state.enc_write_ctx;
1300 s->write_hash = saved_state.write_hash;
1301 s->compress = saved_state.compress;
1302 s->session = saved_state.session;
1303 s->d1->w_epoch = saved_state.epoch;
1305 if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
1307 memcpy(s->d1->last_write_sequence, s->s3->write_sequence, sizeof(s->s3->write_sequence));
1308 memcpy(s->s3->write_sequence, save_write_sequence, sizeof(s->s3->write_sequence));
1311 s->d1->retransmitting = 0;
1313 (void)BIO_flush(SSL_get_wbio(s));
1317 /* call this function when the buffered messages are no longer needed */
1319 dtls1_clear_record_buffer(SSL *s)
1323 for(item = pqueue_pop(s->d1->sent_messages);
1324 item != NULL; item = pqueue_pop(s->d1->sent_messages))
1326 dtls1_hm_fragment_free((hm_fragment *)item->data);
1333 dtls1_set_message_header(SSL *s, unsigned char *p, unsigned char mt,
1334 unsigned long len, unsigned long frag_off, unsigned long frag_len)
1336 /* Don't change sequence numbers while listening */
1337 if (frag_off == 0 && !s->d1->listen)
1339 s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1340 s->d1->next_handshake_write_seq++;
1343 dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
1344 frag_off, frag_len);
1346 return p += DTLS1_HM_HEADER_LENGTH;
1350 /* don't actually do the writing, wait till the MTU has been retrieved */
1352 dtls1_set_message_header_int(SSL *s, unsigned char mt,
1353 unsigned long len, unsigned short seq_num, unsigned long frag_off,
1354 unsigned long frag_len)
1356 struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1359 msg_hdr->msg_len = len;
1360 msg_hdr->seq = seq_num;
1361 msg_hdr->frag_off = frag_off;
1362 msg_hdr->frag_len = frag_len;
1366 dtls1_fix_message_header(SSL *s, unsigned long frag_off,
1367 unsigned long frag_len)
1369 struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1371 msg_hdr->frag_off = frag_off;
1372 msg_hdr->frag_len = frag_len;
1375 static unsigned char *
1376 dtls1_write_message_header(SSL *s, unsigned char *p)
1378 struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1380 *p++ = msg_hdr->type;
1381 l2n3(msg_hdr->msg_len, p);
1383 s2n(msg_hdr->seq, p);
1384 l2n3(msg_hdr->frag_off, p);
1385 l2n3(msg_hdr->frag_len, p);
1393 return (g_probable_mtu[(sizeof(g_probable_mtu) /
1394 sizeof(g_probable_mtu[0])) - 1]);
1398 dtls1_guess_mtu(unsigned int curr_mtu)
1402 if ( curr_mtu == 0 )
1403 return g_probable_mtu[0] ;
1405 for ( i = 0; i < sizeof(g_probable_mtu)/sizeof(g_probable_mtu[0]); i++)
1406 if ( curr_mtu > g_probable_mtu[i])
1407 return g_probable_mtu[i];
1413 dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr)
1415 memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
1416 msg_hdr->type = *(data++);
1417 n2l3(data, msg_hdr->msg_len);
1419 n2s(data, msg_hdr->seq);
1420 n2l3(data, msg_hdr->frag_off);
1421 n2l3(data, msg_hdr->frag_len);
1425 dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr)
1427 memset(ccs_hdr, 0x00, sizeof(struct ccs_header_st));
1429 ccs_hdr->type = *(data++);
1432 int dtls1_shutdown(SSL *s)
1435 #ifndef OPENSSL_NO_SCTP
1436 if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
1437 !(s->shutdown & SSL_SENT_SHUTDOWN))
1439 ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
1440 if (ret < 0) return -1;
1443 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1, NULL);
1446 ret = ssl3_shutdown(s);
1447 #ifndef OPENSSL_NO_SCTP
1448 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL);
1453 #ifndef OPENSSL_NO_HEARTBEATS
1455 dtls1_process_heartbeat(SSL *s)
1457 unsigned char *p = &s->s3->rrec.data[0], *pl;
1458 unsigned short hbtype;
1459 unsigned int payload;
1460 unsigned int padding = 16; /* Use minimum padding */
1462 if (s->msg_callback)
1463 s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT,
1464 &s->s3->rrec.data[0], s->s3->rrec.length,
1465 s, s->msg_callback_arg);
1467 /* Read type and payload length first */
1468 if (1 + 2 + 16 > s->s3->rrec.length)
1469 return 0; /* silently discard */
1472 if (1 + 2 + payload + 16 > s->s3->rrec.length)
1473 return 0; /* silently discard per RFC 6520 sec. 4 */
1476 if (hbtype == TLS1_HB_REQUEST)
1478 unsigned char *buffer, *bp;
1479 unsigned int write_length = 1 /* heartbeat type */ +
1480 2 /* heartbeat length */ +
1484 if (write_length > SSL3_RT_MAX_PLAIN_LENGTH)
1487 /* Allocate memory for the response, size is 1 byte
1488 * message type, plus 2 bytes payload length, plus
1489 * payload, plus padding
1491 buffer = OPENSSL_malloc(write_length);
1494 /* Enter response type, length and copy payload */
1495 *bp++ = TLS1_HB_RESPONSE;
1497 memcpy(bp, pl, payload);
1499 /* Random padding */
1500 RAND_pseudo_bytes(bp, padding);
1502 r = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buffer, write_length);
1504 if (r >= 0 && s->msg_callback)
1505 s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
1506 buffer, write_length,
1507 s, s->msg_callback_arg);
1509 OPENSSL_free(buffer);
1514 else if (hbtype == TLS1_HB_RESPONSE)
1518 /* We only send sequence numbers (2 bytes unsigned int),
1519 * and 16 random bytes, so we just try to read the
1520 * sequence number */
1523 if (payload == 18 && seq == s->tlsext_hb_seq)
1525 dtls1_stop_timer(s);
1527 s->tlsext_hb_pending = 0;
1535 dtls1_heartbeat(SSL *s)
1537 unsigned char *buf, *p;
1539 unsigned int payload = 18; /* Sequence number + random bytes */
1540 unsigned int padding = 16; /* Use minimum padding */
1542 /* Only send if peer supports and accepts HB requests... */
1543 if (!(s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) ||
1544 s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_SEND_REQUESTS)
1546 SSLerr(SSL_F_DTLS1_HEARTBEAT,SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT);
1550 /* ...and there is none in flight yet... */
1551 if (s->tlsext_hb_pending)
1553 SSLerr(SSL_F_DTLS1_HEARTBEAT,SSL_R_TLS_HEARTBEAT_PENDING);
1557 /* ...and no handshake in progress. */
1558 if (SSL_in_init(s) || s->in_handshake)
1560 SSLerr(SSL_F_DTLS1_HEARTBEAT,SSL_R_UNEXPECTED_MESSAGE);
1564 /* Check if padding is too long, payload and padding
1565 * must not exceed 2^14 - 3 = 16381 bytes in total.
1567 OPENSSL_assert(payload + padding <= 16381);
1569 /* Create HeartBeat message, we just use a sequence number
1570 * as payload to distuingish different messages and add
1571 * some random stuff.
1572 * - Message Type, 1 byte
1573 * - Payload Length, 2 bytes (unsigned int)
1574 * - Payload, the sequence number (2 bytes uint)
1575 * - Payload, random bytes (16 bytes uint)
1578 buf = OPENSSL_malloc(1 + 2 + payload + padding);
1581 *p++ = TLS1_HB_REQUEST;
1582 /* Payload length (18 bytes here) */
1584 /* Sequence number */
1585 s2n(s->tlsext_hb_seq, p);
1586 /* 16 random bytes */
1587 RAND_pseudo_bytes(p, 16);
1589 /* Random padding */
1590 RAND_pseudo_bytes(p, padding);
1592 ret = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buf, 3 + payload + padding);
1595 if (s->msg_callback)
1596 s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
1597 buf, 3 + payload + padding,
1598 s, s->msg_callback_arg);
1600 dtls1_start_timer(s);
1601 s->tlsext_hb_pending = 1;