First public contribution.
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.]
116 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
122 #include "ssl_locl.h"
123 #include <openssl/buffer.h>
124 #include <openssl/rand.h>
125 #include <openssl/objects.h>
126 #include <openssl/evp.h>
127 #include <openssl/x509.h>
130 /* XDTLS: figure out the right values */
132 static const unsigned int g_probable_mtu[] = {1500 - 28, 512 - 28, 256 - 28};
134 static unsigned int g_probable_mtu[] = {1500 - 28, 512 - 28, 256 - 28};
137 static unsigned int dtls1_min_mtu(void);
138 static unsigned int dtls1_guess_mtu(unsigned int curr_mtu);
139 static void dtls1_fix_message_header(SSL *s, unsigned long frag_off,
140 unsigned long frag_len);
141 static unsigned char *dtls1_write_message_header(SSL *s,
143 static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
144 unsigned long len, unsigned short seq_num, unsigned long frag_off,
145 unsigned long frag_len);
146 static int dtls1_retransmit_buffered_messages(SSL *s);
147 static long dtls1_get_message_fragment(SSL *s, int st1, int stn,
151 dtls1_hm_fragment_new(unsigned long frag_len)
153 hm_fragment *frag = NULL;
154 unsigned char *buf = NULL;
156 frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
162 buf = (unsigned char *)OPENSSL_malloc(frag_len);
170 /* zero length fragment gets zero frag->fragment */
171 frag->fragment = buf;
177 dtls1_hm_fragment_free(hm_fragment *frag)
179 if (frag->fragment) OPENSSL_free(frag->fragment);
183 /* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */
184 int dtls1_do_write(SSL *s, int type)
188 unsigned int len, frag_off;
190 /* AHA! Figure out the MTU, and stick to the right size */
191 if ( ! (SSL_get_options(s) & SSL_OP_NO_QUERY_MTU))
194 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
196 /* I've seen the kernel return bogus numbers when it doesn't know
197 * (initial write), so just make sure we have a reasonable number */
198 if ( s->d1->mtu < dtls1_min_mtu())
201 s->d1->mtu = dtls1_guess_mtu(s->d1->mtu);
202 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU,
209 fprintf(stderr, "using MTU = %d\n", mtu);
211 mtu -= (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
213 curr_mtu = mtu - BIO_wpending(SSL_get_wbio(s));
217 else if ( ( ret = BIO_flush(SSL_get_wbio(s))) <= 0)
220 if ( BIO_wpending(SSL_get_wbio(s)) + s->init_num >= mtu)
222 ret = BIO_flush(SSL_get_wbio(s));
225 mtu = s->d1->mtu - (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
228 OPENSSL_assert(mtu > 0); /* should have something reasonable now */
232 if ( s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
233 OPENSSL_assert(s->init_num ==
234 (int)s->d1->w_msg_hdr.msg_len + DTLS1_HM_HEADER_LENGTH);
239 curr_mtu = s->d1->mtu - BIO_wpending(SSL_get_wbio(s)) -
240 DTLS1_RT_HEADER_LENGTH;
242 if ( curr_mtu <= DTLS1_HM_HEADER_LENGTH)
244 /* grr.. we could get an error if MTU picked was wrong */
245 ret = BIO_flush(SSL_get_wbio(s));
248 curr_mtu = s->d1->mtu - DTLS1_RT_HEADER_LENGTH;
251 if ( s->init_num > curr_mtu)
257 /* XDTLS: this function is too long. split out the CCS part */
258 if ( type == SSL3_RT_HANDSHAKE)
260 if ( s->init_off != 0)
262 OPENSSL_assert(s->init_off > DTLS1_HM_HEADER_LENGTH);
263 s->init_off -= DTLS1_HM_HEADER_LENGTH;
264 s->init_num += DTLS1_HM_HEADER_LENGTH;
266 /* write atleast DTLS1_HM_HEADER_LENGTH bytes */
267 if ( len <= DTLS1_HM_HEADER_LENGTH)
268 len += DTLS1_HM_HEADER_LENGTH;
271 dtls1_fix_message_header(s, frag_off,
272 len - DTLS1_HM_HEADER_LENGTH);
274 dtls1_write_message_header(s, (unsigned char *)&s->init_buf->data[s->init_off]);
276 OPENSSL_assert(len >= DTLS1_HM_HEADER_LENGTH);
279 ret=dtls1_write_bytes(s,type,&s->init_buf->data[s->init_off],
283 /* might need to update MTU here, but we don't know
284 * which previous packet caused the failure -- so can't
285 * really retransmit anything. continue as if everything
286 * is fine and wait for an alert to handle the
289 if ( BIO_ctrl(SSL_get_wbio(s),
290 BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL))
291 s->d1->mtu = BIO_ctrl(SSL_get_wbio(s),
292 BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
299 /* bad if this assert fails, only part of the handshake
300 * message got sent. but why would this happen? */
301 OPENSSL_assert(len == (unsigned int)ret);
303 if (type == SSL3_RT_HANDSHAKE && ! s->d1->retransmitting)
305 /* should not be done for 'Hello Request's, but in that case
306 * we'll ignore the result anyway */
307 unsigned char *p = (unsigned char *)&s->init_buf->data[s->init_off];
308 const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
311 if (frag_off == 0 && s->client_version != DTLS1_BAD_VER)
313 /* reconstruct message header is if it
314 * is being sent in single fragment */
315 *p++ = msg_hdr->type;
316 l2n3(msg_hdr->msg_len,p);
317 s2n (msg_hdr->seq,p);
319 l2n3(msg_hdr->msg_len,p);
320 p -= DTLS1_HM_HEADER_LENGTH;
325 p += DTLS1_HM_HEADER_LENGTH;
326 xlen = ret - DTLS1_HM_HEADER_LENGTH;
329 ssl3_finish_mac(s, p, xlen);
332 if (ret == s->init_num)
335 s->msg_callback(1, s->version, type, s->init_buf->data,
336 (size_t)(s->init_off + s->init_num), s,
337 s->msg_callback_arg);
339 s->init_off = 0; /* done writing this message */
346 frag_off += (ret -= DTLS1_HM_HEADER_LENGTH);
353 /* Obtain handshake message of message type 'mt' (any if mt == -1),
354 * maximum acceptable body length 'max'.
355 * Read an entire handshake message. Handshake messages arrive in
358 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
361 struct hm_header_st *msg_hdr;
363 /* s3->tmp is used to store messages that are unexpected, caused
364 * by the absence of an optional handshake message */
365 if (s->s3->tmp.reuse_message)
367 s->s3->tmp.reuse_message=0;
368 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
370 al=SSL_AD_UNEXPECTED_MESSAGE;
371 SSLerr(SSL_F_DTLS1_GET_MESSAGE,SSL_R_UNEXPECTED_MESSAGE);
375 s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
376 s->init_num = (int)s->s3->tmp.message_size;
380 msg_hdr = &s->d1->r_msg_hdr;
383 if ( msg_hdr->frag_off == 0)
385 /* s->d1->r_message_header.msg_len = 0; */
386 memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
389 i = dtls1_get_message_fragment(s, st1, stn, max, ok);
390 if ( i == DTLS1_HM_BAD_FRAGMENT ||
391 i == DTLS1_HM_FRAGMENT_RETRY) /* bad fragment received */
393 else if ( i <= 0 && !*ok)
396 /* Note that s->init_sum is used as a counter summing
397 * up fragments' lengths: as soon as they sum up to
398 * handshake packet length, we assume we have got all
399 * the fragments. Overlapping fragments would cause
400 * premature termination, so we don't expect overlaps.
401 * Well, handling overlaps would require something more
402 * drastic. Indeed, as it is now there is no way to
403 * tell if out-of-order fragment from the middle was
404 * the last. '>=' is the best/least we can do to control
405 * the potential damage caused by malformed overlaps. */
406 if ((unsigned int)s->init_num >= msg_hdr->msg_len)
408 unsigned char *p = (unsigned char *)s->init_buf->data;
409 unsigned long msg_len = msg_hdr->msg_len;
411 /* reconstruct message header as if it was
412 * sent in single fragment */
413 *(p++) = msg_hdr->type;
415 s2n (msg_hdr->seq,p);
418 if (s->client_version != DTLS1_BAD_VER)
419 p -= DTLS1_HM_HEADER_LENGTH,
420 msg_len += DTLS1_HM_HEADER_LENGTH;
422 ssl3_finish_mac(s, p, msg_len);
424 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
426 s, s->msg_callback_arg);
428 memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
430 s->d1->handshake_read_seq++;
431 /* we just read a handshake message from the other side:
432 * this means that we don't need to retransmit of the
434 * XDTLS: may be able clear out this
435 * buffer a little sooner (i.e if an out-of-order
436 * handshake message/record is received at the record
438 * XDTLS: exception is that the server needs to
439 * know that change cipher spec and finished messages
440 * have been received by the client before clearing this
441 * buffer. this can simply be done by waiting for the
442 * first data segment, but is there a better way? */
443 dtls1_clear_record_buffer(s);
445 s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
449 msg_hdr->frag_off = i;
453 ssl3_send_alert(s,SSL3_AL_FATAL,al);
459 static int dtls1_preprocess_fragment(SSL *s,struct hm_header_st *msg_hdr,int max)
461 size_t frag_off,frag_len,msg_len;
463 msg_len = msg_hdr->msg_len;
464 frag_off = msg_hdr->frag_off;
465 frag_len = msg_hdr->frag_len;
467 /* sanity checking */
468 if ( (frag_off+frag_len) > msg_len)
470 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
471 return SSL_AD_ILLEGAL_PARAMETER;
474 if ( (frag_off+frag_len) > (unsigned long)max)
476 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
477 return SSL_AD_ILLEGAL_PARAMETER;
480 if ( s->d1->r_msg_hdr.frag_off == 0) /* first fragment */
482 /* msg_len is limited to 2^24, but is effectively checked
483 * against max above */
484 if (!BUF_MEM_grow_clean(s->init_buf,(int)msg_len+DTLS1_HM_HEADER_LENGTH))
486 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,ERR_R_BUF_LIB);
487 return SSL_AD_INTERNAL_ERROR;
490 s->s3->tmp.message_size = msg_len;
491 s->d1->r_msg_hdr.msg_len = msg_len;
492 s->s3->tmp.message_type = msg_hdr->type;
493 s->d1->r_msg_hdr.type = msg_hdr->type;
494 s->d1->r_msg_hdr.seq = msg_hdr->seq;
496 else if (msg_len != s->d1->r_msg_hdr.msg_len)
498 /* They must be playing with us! BTW, failure to enforce
499 * upper limit would open possibility for buffer overrun. */
500 SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
501 return SSL_AD_ILLEGAL_PARAMETER;
504 return 0; /* no error */
509 dtls1_retrieve_buffered_fragment(SSL *s, long max, int *ok)
511 /* (0) check whether the desired fragment is available
513 * (1) copy over the fragment to s->init_buf->data[]
514 * (2) update s->init_num
521 item = pqueue_peek(s->d1->buffered_messages);
525 frag = (hm_fragment *)item->data;
527 if ( s->d1->handshake_read_seq == frag->msg_header.seq)
529 pqueue_pop(s->d1->buffered_messages);
531 al=dtls1_preprocess_fragment(s,&frag->msg_header,max);
533 if (al==0) /* no alert */
535 unsigned char *p = (unsigned char *)s->init_buf->data+DTLS1_HM_HEADER_LENGTH;
536 memcpy(&p[frag->msg_header.frag_off],
537 frag->fragment,frag->msg_header.frag_len);
540 dtls1_hm_fragment_free(frag);
546 return frag->msg_header.frag_len;
549 ssl3_send_alert(s,SSL3_AL_FATAL,al);
560 dtls1_process_out_of_seq_message(SSL *s, struct hm_header_st* msg_hdr, int *ok)
563 hm_fragment *frag = NULL;
566 unsigned long frag_len = msg_hdr->frag_len;
568 if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len)
571 if (msg_hdr->seq <= s->d1->handshake_read_seq)
573 unsigned char devnull [256];
577 i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
579 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
584 frag = dtls1_hm_fragment_new(frag_len);
589 memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
593 /* read the body of the fragment (header has already been read */
594 i = s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
595 frag->fragment,frag_len,0);
596 if (i<=0 || (unsigned long)i!=frag_len)
599 pq_64bit_init(&seq64);
600 pq_64bit_assign_word(&seq64, msg_hdr->seq);
602 item = pitem_new(seq64, frag);
603 pq_64bit_free(&seq64);
607 pqueue_insert(s->d1->buffered_messages, item);
608 return DTLS1_HM_FRAGMENT_RETRY;
611 if ( frag != NULL) dtls1_hm_fragment_free(frag);
612 if ( item != NULL) OPENSSL_free(item);
619 dtls1_get_message_fragment(SSL *s, int st1, int stn, long max, int *ok)
621 unsigned char wire[DTLS1_HM_HEADER_LENGTH];
622 unsigned long l, frag_off, frag_len;
624 struct hm_header_st msg_hdr;
626 /* see if we have the required fragment already */
627 if ((frag_len = dtls1_retrieve_buffered_fragment(s,max,ok)) || *ok)
629 if (*ok) s->init_num += frag_len;
633 /* read handshake message header */
634 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,wire,
635 DTLS1_HM_HEADER_LENGTH, 0);
636 if (i <= 0) /* nbio, or an error */
638 s->rwstate=SSL_READING;
643 OPENSSL_assert(i == DTLS1_HM_HEADER_LENGTH);
645 /* parse the message fragment header */
647 dtls1_get_message_header(wire, &msg_hdr);
650 * if this is a future (or stale) message it gets buffered
651 * (or dropped)--no further processing at this time
653 if ( msg_hdr.seq != s->d1->handshake_read_seq)
654 return dtls1_process_out_of_seq_message(s, &msg_hdr, ok);
657 frag_off = msg_hdr.frag_off;
658 frag_len = msg_hdr.frag_len;
660 if (!s->server && s->d1->r_msg_hdr.frag_off == 0 &&
661 wire[0] == SSL3_MT_HELLO_REQUEST)
663 /* The server may always send 'Hello Request' messages --
664 * we are doing a handshake anyway now, so ignore them
665 * if their format is correct. Does not count for
667 if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0)
670 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
671 wire, DTLS1_HM_HEADER_LENGTH, s,
672 s->msg_callback_arg);
675 return dtls1_get_message_fragment(s, st1, stn,
678 else /* Incorrectly formated Hello request */
680 al=SSL_AD_UNEXPECTED_MESSAGE;
681 SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,SSL_R_UNEXPECTED_MESSAGE);
686 if ((al=dtls1_preprocess_fragment(s,&msg_hdr,max)))
689 /* XDTLS: ressurect this when restart is in place */
694 unsigned char *p=(unsigned char *)s->init_buf->data+DTLS1_HM_HEADER_LENGTH;
696 i=s->method->ssl_read_bytes(s,SSL3_RT_HANDSHAKE,
697 &p[frag_off],frag_len,0);
698 /* XDTLS: fix this--message fragments cannot span multiple packets */
701 s->rwstate=SSL_READING;
709 /* XDTLS: an incorrectly formatted fragment should cause the
710 * handshake to fail */
711 OPENSSL_assert(i == (int)frag_len);
715 /* Note that s->init_num is *not* used as current offset in
716 * s->init_buf->data, but as a counter summing up fragments'
717 * lengths: as soon as they sum up to handshake packet
718 * length, we assume we have got all the fragments. */
719 s->init_num += frag_len;
723 ssl3_send_alert(s,SSL3_AL_FATAL,al);
730 int dtls1_send_finished(SSL *s, int a, int b, const char *sender, int slen)
738 d=(unsigned char *)s->init_buf->data;
739 p= &(d[DTLS1_HM_HEADER_LENGTH]);
741 i=s->method->ssl3_enc->final_finish_mac(s,
742 &(s->s3->finish_dgst1),
743 &(s->s3->finish_dgst2),
744 sender,slen,s->s3->tmp.finish_md);
745 s->s3->tmp.finish_md_len = i;
746 memcpy(p, s->s3->tmp.finish_md, i);
750 #ifdef OPENSSL_SYS_WIN16
751 /* MSVC 1.5 does not clear the top bytes of the word unless
757 d = dtls1_set_message_header(s, d, SSL3_MT_FINISHED, l, 0, l);
758 s->init_num=(int)l+DTLS1_HM_HEADER_LENGTH;
761 /* buffer the message to handle re-xmits */
762 dtls1_buffer_message(s, 0);
767 /* SSL3_ST_SEND_xxxxxx_HELLO_B */
768 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
771 /* for these 2 messages, we need to
772 * ssl->enc_read_ctx re-init
773 * ssl->s3->read_sequence zero
774 * ssl->s3->read_mac_secret re-init
775 * ssl->session->read_sym_enc assign
776 * ssl->session->read_compression assign
777 * ssl->session->read_hash assign
779 int dtls1_send_change_cipher_spec(SSL *s, int a, int b)
785 p=(unsigned char *)s->init_buf->data;
787 s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
788 s->init_num=DTLS1_CCS_HEADER_LENGTH;
790 if (s->client_version == DTLS1_BAD_VER)
792 s->d1->next_handshake_write_seq++;
793 s2n(s->d1->handshake_write_seq,p);
799 dtls1_set_message_header_int(s, SSL3_MT_CCS, 0,
800 s->d1->handshake_write_seq, 0, 0);
802 /* buffer the message to handle re-xmits */
803 dtls1_buffer_message(s, 1);
808 /* SSL3_ST_CW_CHANGE_B */
809 return(dtls1_do_write(s,SSL3_RT_CHANGE_CIPHER_SPEC));
812 unsigned long dtls1_output_cert_chain(SSL *s, X509 *x)
816 unsigned long l= 3 + DTLS1_HM_HEADER_LENGTH;
818 X509_STORE_CTX xs_ctx;
821 /* TLSv1 sends a chain with nothing in it, instead of an alert */
823 if (!BUF_MEM_grow_clean(buf,10))
825 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_BUF_LIB);
830 if(!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,NULL,NULL))
832 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_X509_LIB);
839 if (!BUF_MEM_grow_clean(buf,(int)(n+l+3)))
841 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_BUF_LIB);
844 p=(unsigned char *)&(buf->data[l]);
848 if (X509_NAME_cmp(X509_get_subject_name(x),
849 X509_get_issuer_name(x)) == 0) break;
851 i=X509_STORE_get_by_subject(&xs_ctx,X509_LU_X509,
852 X509_get_issuer_name(x),&obj);
855 /* Count is one too high since the X509_STORE_get uped the
860 X509_STORE_CTX_cleanup(&xs_ctx);
863 /* Thawte special :-) */
864 if (s->ctx->extra_certs != NULL)
865 for (i=0; i<sk_X509_num(s->ctx->extra_certs); i++)
867 x=sk_X509_value(s->ctx->extra_certs,i);
869 if (!BUF_MEM_grow_clean(buf,(int)(n+l+3)))
871 SSLerr(SSL_F_DTLS1_OUTPUT_CERT_CHAIN,ERR_R_BUF_LIB);
874 p=(unsigned char *)&(buf->data[l]);
880 l-= (3 + DTLS1_HM_HEADER_LENGTH);
882 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH]);
885 p=(unsigned char *)&(buf->data[0]);
886 p = dtls1_set_message_header(s, p, SSL3_MT_CERTIFICATE, l, 0, l);
888 l+=DTLS1_HM_HEADER_LENGTH;
892 int dtls1_read_failed(SSL *s, int code)
900 fprintf( stderr, "invalid state reached %s:%d", __FILE__, __LINE__);
904 bio = SSL_get_rbio(s);
905 if ( ! BIO_dgram_recv_timedout(bio))
907 /* not a timeout, none of our business,
908 let higher layers handle this. in fact it's probably an error */
912 if ( ! SSL_in_init(s)) /* done, no need to send a retransmit */
914 BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
919 state->timeout.num_alerts++;
920 if ( state->timeout.num_alerts > DTLS1_TMO_ALERT_COUNT)
922 /* fail the connection, enough alerts have been sent */
923 SSLerr(SSL_F_DTLS1_READ_FAILED,SSL_R_READ_TIMEOUT_EXPIRED);
927 state->timeout.read_timeouts++;
928 if ( state->timeout.read_timeouts > DTLS1_TMO_READ_COUNT)
931 state->timeout.read_timeouts = 1;
935 #if 0 /* for now, each alert contains only one record number */
936 item = pqueue_peek(state->rcvd_records);
939 /* send an alert immediately for all the missing records */
944 #if 0 /* no more alert sending, just retransmit the last set of messages */
946 ssl3_send_alert(s,SSL3_AL_WARNING,
947 DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);
950 return dtls1_retransmit_buffered_messages(s) ;
955 dtls1_retransmit_buffered_messages(SSL *s)
957 pqueue sent = s->d1->sent_messages;
963 iter = pqueue_iterator(sent);
965 for ( item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter))
967 frag = (hm_fragment *)item->data;
968 if ( dtls1_retransmit_message(s, frag->msg_header.seq, 0, &found) <= 0 &&
971 fprintf(stderr, "dtls1_retransmit_message() failed\n");
981 dtls1_buffer_message(SSL *s, int is_ccs)
986 unsigned int epoch = s->d1->w_epoch;
988 /* this function is called immediately after a message has
990 OPENSSL_assert(s->init_off == 0);
992 frag = dtls1_hm_fragment_new(s->init_num);
994 memcpy(frag->fragment, s->init_buf->data, s->init_num);
998 OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
999 DTLS1_CCS_HEADER_LENGTH <= (unsigned int)s->init_num);
1004 OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
1005 DTLS1_HM_HEADER_LENGTH == (unsigned int)s->init_num);
1008 frag->msg_header.msg_len = s->d1->w_msg_hdr.msg_len;
1009 frag->msg_header.seq = s->d1->w_msg_hdr.seq;
1010 frag->msg_header.type = s->d1->w_msg_hdr.type;
1011 frag->msg_header.frag_off = 0;
1012 frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
1013 frag->msg_header.is_ccs = is_ccs;
1015 pq_64bit_init(&seq64);
1016 pq_64bit_assign_word(&seq64, epoch<<16 | frag->msg_header.seq);
1018 item = pitem_new(seq64, frag);
1019 pq_64bit_free(&seq64);
1022 dtls1_hm_fragment_free(frag);
1027 fprintf( stderr, "buffered messge: \ttype = %xx\n", msg_buf->type);
1028 fprintf( stderr, "\t\t\t\t\tlen = %d\n", msg_buf->len);
1029 fprintf( stderr, "\t\t\t\t\tseq_num = %d\n", msg_buf->seq_num);
1032 pqueue_insert(s->d1->sent_messages, item);
1037 dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
1041 /* XDTLS: for now assuming that read/writes are blocking */
1044 unsigned long header_length;
1048 OPENSSL_assert(s->init_num == 0);
1049 OPENSSL_assert(s->init_off == 0);
1052 /* XDTLS: the requested message ought to be found, otherwise error */
1053 pq_64bit_init(&seq64);
1054 pq_64bit_assign_word(&seq64, seq);
1056 item = pqueue_find(s->d1->sent_messages, seq64);
1057 pq_64bit_free(&seq64);
1060 fprintf(stderr, "retransmit: message %d non-existant\n", seq);
1066 frag = (hm_fragment *)item->data;
1068 if ( frag->msg_header.is_ccs)
1069 header_length = DTLS1_CCS_HEADER_LENGTH;
1071 header_length = DTLS1_HM_HEADER_LENGTH;
1073 memcpy(s->init_buf->data, frag->fragment,
1074 frag->msg_header.msg_len + header_length);
1075 s->init_num = frag->msg_header.msg_len + header_length;
1077 dtls1_set_message_header_int(s, frag->msg_header.type,
1078 frag->msg_header.msg_len, frag->msg_header.seq, 0,
1079 frag->msg_header.frag_len);
1081 s->d1->retransmitting = 1;
1082 ret = dtls1_do_write(s, frag->msg_header.is_ccs ?
1083 SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
1084 s->d1->retransmitting = 0;
1086 (void)BIO_flush(SSL_get_wbio(s));
1090 /* call this function when the buffered messages are no longer needed */
1092 dtls1_clear_record_buffer(SSL *s)
1096 for(item = pqueue_pop(s->d1->sent_messages);
1097 item != NULL; item = pqueue_pop(s->d1->sent_messages))
1099 dtls1_hm_fragment_free((hm_fragment *)item->data);
1106 dtls1_set_message_header(SSL *s, unsigned char *p, unsigned char mt,
1107 unsigned long len, unsigned long frag_off, unsigned long frag_len)
1111 s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
1112 s->d1->next_handshake_write_seq++;
1115 dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
1116 frag_off, frag_len);
1118 return p += DTLS1_HM_HEADER_LENGTH;
1122 /* don't actually do the writing, wait till the MTU has been retrieved */
1124 dtls1_set_message_header_int(SSL *s, unsigned char mt,
1125 unsigned long len, unsigned short seq_num, unsigned long frag_off,
1126 unsigned long frag_len)
1128 struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1131 msg_hdr->msg_len = len;
1132 msg_hdr->seq = seq_num;
1133 msg_hdr->frag_off = frag_off;
1134 msg_hdr->frag_len = frag_len;
1138 dtls1_fix_message_header(SSL *s, unsigned long frag_off,
1139 unsigned long frag_len)
1141 struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1143 msg_hdr->frag_off = frag_off;
1144 msg_hdr->frag_len = frag_len;
1147 static unsigned char *
1148 dtls1_write_message_header(SSL *s, unsigned char *p)
1150 struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
1152 *p++ = msg_hdr->type;
1153 l2n3(msg_hdr->msg_len, p);
1155 s2n(msg_hdr->seq, p);
1156 l2n3(msg_hdr->frag_off, p);
1157 l2n3(msg_hdr->frag_len, p);
1165 return (g_probable_mtu[(sizeof(g_probable_mtu) /
1166 sizeof(g_probable_mtu[0])) - 1]);
1170 dtls1_guess_mtu(unsigned int curr_mtu)
1174 if ( curr_mtu == 0 )
1175 return g_probable_mtu[0] ;
1177 for ( i = 0; i < sizeof(g_probable_mtu)/sizeof(g_probable_mtu[0]); i++)
1178 if ( curr_mtu > g_probable_mtu[i])
1179 return g_probable_mtu[i];
1185 dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr)
1187 memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
1188 msg_hdr->type = *(data++);
1189 n2l3(data, msg_hdr->msg_len);
1191 n2s(data, msg_hdr->seq);
1192 n2l3(data, msg_hdr->frag_off);
1193 n2l3(data, msg_hdr->frag_len);
1197 dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr)
1199 memset(ccs_hdr, 0x00, sizeof(struct ccs_header_st));
1201 ccs_hdr->type = *(data++);