1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
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:
127:
128: static unsigned int g_probable_mtu[] = {1500 - 28, 512 - 28, 256 - 28};
129:
130: static unsigned int dtls1_min_mtu(void);
131: static unsigned int dtls1_guess_mtu(unsigned int curr_mtu);
132: static void dtls1_fix_message_header(SSL *s, unsigned long frag_off,
133: unsigned long frag_len);
134: static unsigned char *dtls1_write_message_header(SSL *s,
135: unsigned char *p);
136: static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
137: unsigned long len, unsigned short seq_num, unsigned long frag_off,
138: unsigned long frag_len);
139: static int dtls1_retransmit_buffered_messages(SSL *s);
140: static long dtls1_get_message_fragment(SSL *s, int st1, int stn,
141: long max, int *ok);
142:
143: static hm_fragment *
144: dtls1_hm_fragment_new(unsigned long frag_len)
145: {
146: hm_fragment *frag = NULL;
147: unsigned char *buf = NULL;
148:
149: frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
150: if ( frag == NULL)
151: return NULL;
152:
153: if (frag_len)
154: {
155: buf = (unsigned char *)OPENSSL_malloc(frag_len);
156: if ( buf == NULL)
157: {
158: OPENSSL_free(frag);
159: return NULL;
160: }
161: }
162:
163:
164: frag->fragment = buf;
165:
166: return frag;
167: }
168:
169: static void
170: dtls1_hm_fragment_free(hm_fragment *frag)
171: {
172: if (frag->fragment) OPENSSL_free(frag->fragment);
173: OPENSSL_free(frag);
174: }
175:
176:
177: int dtls1_do_write(SSL *s, int type)
178: {
179: int ret;
180: int curr_mtu;
181: unsigned int len, frag_off;
182:
183:
184: if ( ! (SSL_get_options(s) & SSL_OP_NO_QUERY_MTU))
185: {
186: s->d1->mtu =
187: BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
188:
189:
190:
191: if ( s->d1->mtu < dtls1_min_mtu())
192: {
193: s->d1->mtu = 0;
194: s->d1->mtu = dtls1_guess_mtu(s->d1->mtu);
195: BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU,
196: s->d1->mtu, NULL);
197: }
198: }
199: #if 0
200: mtu = s->d1->mtu;
201:
202: fprintf(stderr, "using MTU = %d\n", mtu);
203:
204: mtu -= (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
205:
206: curr_mtu = mtu - BIO_wpending(SSL_get_wbio(s));
207:
208: if ( curr_mtu > 0)
209: mtu = curr_mtu;
210: else if ( ( ret = BIO_flush(SSL_get_wbio(s))) <= 0)
211: return ret;
212:
213: if ( BIO_wpending(SSL_get_wbio(s)) + s->init_num >= mtu)
214: {
215: ret = BIO_flush(SSL_get_wbio(s));
216: if ( ret <= 0)
217: return ret;
218: mtu = s->d1->mtu - (DTLS1_HM_HEADER_LENGTH + DTLS1_RT_HEADER_LENGTH);
219: }
220:
221: OPENSSL_assert(mtu > 0);
222:
223: #endif
224:
225: if ( s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
226: OPENSSL_assert(s->init_num ==
227: (int)s->d1->w_msg_hdr.msg_len + DTLS1_HM_HEADER_LENGTH);
228:
229: frag_off = 0;
230: while( s->init_num)
231: {
232: curr_mtu = s->d1->mtu - BIO_wpending(SSL_get_wbio(s)) -
233: DTLS1_RT_HEADER_LENGTH;
234:
235: if ( curr_mtu <= DTLS1_HM_HEADER_LENGTH)
236: {
237:
238: ret = BIO_flush(SSL_get_wbio(s));
239: if ( ret <= 0)
240: return ret;
241: curr_mtu = s->d1->mtu - DTLS1_RT_HEADER_LENGTH;
242: }
243:
244: if ( s->init_num > curr_mtu)
245: len = curr_mtu;
246: else
247: len = s->init_num;
248:
249:
250:
251: if ( type == SSL3_RT_HANDSHAKE)
252: {
253: if ( s->init_off != 0)
254: {
255: OPENSSL_assert(s->init_off > DTLS1_HM_HEADER_LENGTH);
256: s->init_off -= DTLS1_HM_HEADER_LENGTH;
257: s->init_num += DTLS1_HM_HEADER_LENGTH;
258:
259:
260: if ( len <= DTLS1_HM_HEADER_LENGTH)
261: len += DTLS1_HM_HEADER_LENGTH;
262: }
263:
264: dtls1_fix_message_header(s, frag_off,
265: len - DTLS1_HM_HEADER_LENGTH);
266:
267: dtls1_write_message_header(s, (unsigned char *)&s->init_buf->data[s->init_off]);
268:
269: OPENSSL_assert(len >= DTLS1_HM_HEADER_LENGTH);
270: }
271:
272: ret=dtls1_write_bytes(s,type,&s->init_buf->data[s->init_off],
273: len);
274: if (ret < 0)
275: {
276:
277:
278:
279:
280:
281:
282: if ( BIO_ctrl(SSL_get_wbio(s),
283: BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL))
284: s->d1->mtu = BIO_ctrl(SSL_get_wbio(s),
285: BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
286: else
287: return(-1);
288: }
289: else
290: {
291:
292:
293:
294: OPENSSL_assert(len == (unsigned int)ret);
295:
296: if (type == SSL3_RT_HANDSHAKE && ! s->d1->retransmitting)
297: {
298:
299:
300: unsigned char *p = (unsigned char *)&s->init_buf->data[s->init_off];
301: const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
302: int xlen;
303:
304: if (frag_off == 0 && s->client_version != DTLS1_BAD_VER)
305: {
306:
307:
308: *p++ = msg_hdr->type;
309: l2n3(msg_hdr->msg_len,p);
310: s2n (msg_hdr->seq,p);
311: l2n3(0,p);
312: l2n3(msg_hdr->msg_len,p);
313: p -= DTLS1_HM_HEADER_LENGTH;
314: xlen = ret;
315: }
316: else
317: {
318: p += DTLS1_HM_HEADER_LENGTH;
319: xlen = ret - DTLS1_HM_HEADER_LENGTH;
320: }
321:
322: ssl3_finish_mac(s, p, xlen);
323: }
324:
325: if (ret == s->init_num)
326: {
327: if (s->msg_callback)
328: s->msg_callback(1, s->version, type, s->init_buf->data,
329: (size_t)(s->init_off + s->init_num), s,
330: s->msg_callback_arg);
331:
332: s->init_off = 0;
333: s->init_num = 0;
334:
335: return(1);
336: }
337: s->init_off+=ret;
338: s->init_num-=ret;
339: frag_off += (ret -= DTLS1_HM_HEADER_LENGTH);
340: }
341: }
342: return(0);
343: }
344:
345:
346:
347:
348:
349:
350:
351: long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
352: {
353: int i, al;
354: struct hm_header_st *msg_hdr;
355:
356:
357:
358: if (s->s3->tmp.reuse_message)
359: {
360: s->s3->tmp.reuse_message=0;
361: if ((mt >= 0) && (s->s3->tmp.message_type != mt))
362: {
363: al=SSL_AD_UNEXPECTED_MESSAGE;
364: SSLerr(SSL_F_DTLS1_GET_MESSAGE,SSL_R_UNEXPECTED_MESSAGE);
365: goto f_err;
366: }
367: *ok=1;
368: s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
369: s->init_num = (int)s->s3->tmp.message_size;
370: return s->init_num;
371: }
372:
373: msg_hdr = &s->d1->r_msg_hdr;
374: do
375: {
376: if ( msg_hdr->frag_off == 0)
377: {
378:
379: memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
380: }
381:
382: i = dtls1_get_message_fragment(s, st1, stn, max, ok);
383: if ( i == DTLS1_HM_BAD_FRAGMENT ||
384: i == DTLS1_HM_FRAGMENT_RETRY)
385: continue;
386: else if ( i <= 0 && !*ok)
387: return i;
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399: if ((unsigned int)s->init_num >= msg_hdr->msg_len)
400: {
401: unsigned char *p = (unsigned char *)s->init_buf->data;
402: unsigned long msg_len = msg_hdr->msg_len;
403:
404:
405:
406: *(p++) = msg_hdr->type;
407: l2n3(msg_len,p);
408: s2n (msg_hdr->seq,p);
409: l2n3(0,p);
410: l2n3(msg_len,p);
411: if (s->client_version != DTLS1_BAD_VER)
412: p -= DTLS1_HM_HEADER_LENGTH,
413: msg_len += DTLS1_HM_HEADER_LENGTH;
414:
415: ssl3_finish_mac(s, p, msg_len);
416: if (s->msg_callback)
417: s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
418: p, msg_len,
419: s, s->msg_callback_arg);
420:
421: memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
422:
423: s->d1->handshake_read_seq++;
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436: dtls1_clear_record_buffer(s);
437:
438: s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
439: return s->init_num;
440: }
441: else
442: msg_hdr->frag_off = i;
443: } while(1) ;
444:
445: f_err:
446: ssl3_send_alert(s,SSL3_AL_FATAL,al);
447: *ok = 0;
448: return -1;
449: }
450:
451:
452: static int dtls1_preprocess_fragment(SSL *s,struct hm_header_st *msg_hdr,int max)
453: {
454: size_t frag_off,frag_len,msg_len;
455:
456: msg_len = msg_hdr->msg_len;
457: frag_off = msg_hdr->frag_off;
458: frag_len = msg_hdr->frag_len;
459:
460:
461: if ( (frag_off+frag_len) > msg_len)
462: {
463: SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
464: return SSL_AD_ILLEGAL_PARAMETER;
465: }
466:
467: if ( (frag_off+frag_len) > (unsigned long)max)
468: {
469: SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
470: return SSL_AD_ILLEGAL_PARAMETER;
471: }
472:
473: if ( s->d1->r_msg_hdr.frag_off == 0)
474: {
475:
476:
477: if (!BUF_MEM_grow_clean(s->init_buf,(int)msg_len+DTLS1_HM_HEADER_LENGTH))
478: {
479: SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,ERR_R_BUF_LIB);
480: return SSL_AD_INTERNAL_ERROR;
481: }
482:
483: s->s3->tmp.message_size = msg_len;
484: s->d1->r_msg_hdr.msg_len = msg_len;
485: s->s3->tmp.message_type = msg_hdr->type;
486: s->d1->r_msg_hdr.type = msg_hdr->type;
487: s->d1->r_msg_hdr.seq = msg_hdr->seq;
488: }
489: else if (msg_len != s->d1->r_msg_hdr.msg_len)
490: {
491:
492:
493: SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT,SSL_R_EXCESSIVE_MESSAGE_SIZE);
494: return SSL_AD_ILLEGAL_PARAMETER;
495: }
496:
497: return 0;
498: }
499:
500:
501: static int
502: dtls1_retrieve_buffered_fragment(SSL *s, long max, int *ok)
503: {
504:
505:
506:
507:
508:
509: pitem *item;
510: hm_fragment *frag;
511: int al;
512:
513: *ok = 0;
514: item = pqueue_peek(s->d1->buffered_messages);
515: if ( item == NULL)
516: return 0;
517:
518: frag = (hm_fragment *)item->data;
519:
520: if ( s->d1->handshake_read_seq == frag->msg_header.seq)
521: {
522: pqueue_pop(s->d1->buffered_messages);
523:
524: al=dtls1_preprocess_fragment(s,&frag->msg_header,max);
525:
526: if (al==0)
527: {
528: unsigned char *p = (unsigned char *)s->init_buf->data+DTLS1_HM_HEADER_LENGTH;
529: memcpy(&p[frag->msg_header.frag_off],
530: frag->fragment,frag->msg_header.frag_len);
531: }
532:
533: dtls1_hm_fragment_free(frag);
534: pitem_free(item);
535:
536: if (al==0)
537: {
538: *ok = 1;
539: return frag->msg_header.frag_len;
540: }
541:
542: ssl3_send_alert(s,SSL3_AL_FATAL,al);
543: s->init_num = 0;
544: *ok = 0;
545: return -1;
546: }
547: else
548: return 0;
549: }
550:
551:
552: static int
553: dtls1_process_out_of_seq_message(SSL *s, struct hm_header_st* msg_hdr, int *ok)
554: {
555: