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