Codebase list openssl / 1b0d86c
Add upstream versions from 0.9.8k Kurt Roeckx 14 years ago
3 changed file(s) with 2123 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 /* crypto/pqueue/pqueue.c */
1 /*
2 * DTLS implementation written by Nagendra Modadugu
3 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
4 */
5 /* ====================================================================
6 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59 #include "cryptlib.h"
60 #include <openssl/bn.h>
61 #include "pqueue.h"
62
63 typedef struct _pqueue
64 {
65 pitem *items;
66 int count;
67 } pqueue_s;
68
69 pitem *
70 pitem_new(PQ_64BIT priority, void *data)
71 {
72 pitem *item = (pitem *) OPENSSL_malloc(sizeof(pitem));
73 if (item == NULL) return NULL;
74
75 pq_64bit_init(&(item->priority));
76 pq_64bit_assign(&item->priority, &priority);
77
78 item->data = data;
79 item->next = NULL;
80
81 return item;
82 }
83
84 void
85 pitem_free(pitem *item)
86 {
87 if (item == NULL) return;
88
89 pq_64bit_free(&(item->priority));
90 OPENSSL_free(item);
91 }
92
93 pqueue_s *
94 pqueue_new()
95 {
96 pqueue_s *pq = (pqueue_s *) OPENSSL_malloc(sizeof(pqueue_s));
97 if (pq == NULL) return NULL;
98
99 memset(pq, 0x00, sizeof(pqueue_s));
100 return pq;
101 }
102
103 void
104 pqueue_free(pqueue_s *pq)
105 {
106 if (pq == NULL) return;
107
108 OPENSSL_free(pq);
109 }
110
111 pitem *
112 pqueue_insert(pqueue_s *pq, pitem *item)
113 {
114 pitem *curr, *next;
115
116 if (pq->items == NULL)
117 {
118 pq->items = item;
119 return item;
120 }
121
122 for(curr = NULL, next = pq->items;
123 next != NULL;
124 curr = next, next = next->next)
125 {
126 if (pq_64bit_gt(&(next->priority), &(item->priority)))
127 {
128 item->next = next;
129
130 if (curr == NULL)
131 pq->items = item;
132 else
133 curr->next = item;
134
135 return item;
136 }
137 /* duplicates not allowed */
138 if (pq_64bit_eq(&(item->priority), &(next->priority)))
139 return NULL;
140 }
141
142 item->next = NULL;
143 curr->next = item;
144
145 return item;
146 }
147
148 pitem *
149 pqueue_peek(pqueue_s *pq)
150 {
151 return pq->items;
152 }
153
154 pitem *
155 pqueue_pop(pqueue_s *pq)
156 {
157 pitem *item = pq->items;
158
159 if (pq->items != NULL)
160 pq->items = pq->items->next;
161
162 return item;
163 }
164
165 pitem *
166 pqueue_find(pqueue_s *pq, PQ_64BIT priority)
167 {
168 pitem *next, *prev = NULL;
169 pitem *found = NULL;
170
171 if ( pq->items == NULL)
172 return NULL;
173
174 for ( next = pq->items; next->next != NULL;
175 prev = next, next = next->next)
176 {
177 if ( pq_64bit_eq(&(next->priority), &priority))
178 {
179 found = next;
180 break;
181 }
182 }
183
184 /* check the one last node */
185 if ( pq_64bit_eq(&(next->priority), &priority))
186 found = next;
187
188 if ( ! found)
189 return NULL;
190
191 #if 0 /* find works in peek mode */
192 if ( prev == NULL)
193 pq->items = next->next;
194 else
195 prev->next = next->next;
196 #endif
197
198 return found;
199 }
200
201 #if PQ_64BIT_IS_INTEGER
202 void
203 pqueue_print(pqueue_s *pq)
204 {
205 pitem *item = pq->items;
206
207 while(item != NULL)
208 {
209 printf("item\t" PQ_64BIT_PRINT "\n", item->priority);
210 item = item->next;
211 }
212 }
213 #endif
214
215 pitem *
216 pqueue_iterator(pqueue_s *pq)
217 {
218 return pqueue_peek(pq);
219 }
220
221 pitem *
222 pqueue_next(pitem **item)
223 {
224 pitem *ret;
225
226 if ( item == NULL || *item == NULL)
227 return NULL;
228
229
230 /* *item != NULL */
231 ret = *item;
232 *item = (*item)->next;
233
234 return ret;
235 }
0 /* crypto/pqueue/pqueue.h */
1 /*
2 * DTLS implementation written by Nagendra Modadugu
3 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
4 */
5 /* ====================================================================
6 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59 #ifndef HEADER_PQUEUE_H
60 #define HEADER_PQUEUE_H
61
62 #include <stdio.h>
63 #include <stdlib.h>
64 #include <string.h>
65
66 #include <openssl/pq_compat.h>
67
68 typedef struct _pqueue *pqueue;
69
70 typedef struct _pitem
71 {
72 PQ_64BIT priority;
73 void *data;
74 struct _pitem *next;
75 } pitem;
76
77 typedef struct _pitem *piterator;
78
79 pitem *pitem_new(PQ_64BIT priority, void *data);
80 void pitem_free(pitem *item);
81
82 pqueue pqueue_new(void);
83 void pqueue_free(pqueue pq);
84
85 pitem *pqueue_insert(pqueue pq, pitem *item);
86 pitem *pqueue_peek(pqueue pq);
87 pitem *pqueue_pop(pqueue pq);
88 pitem *pqueue_find(pqueue pq, PQ_64BIT priority);
89 pitem *pqueue_iterator(pqueue pq);
90 pitem *pqueue_next(piterator *iter);
91
92 void pqueue_print(pqueue pq);
93
94 #endif /* ! HEADER_PQUEUE_H */
0 /* ssl/d1_pkt.c */
1 /*
2 * DTLS implementation written by Nagendra Modadugu
3 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
4 */
5 /* ====================================================================
6 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@openssl.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
59 * All rights reserved.
60 *
61 * This package is an SSL implementation written
62 * by Eric Young (eay@cryptsoft.com).
63 * The implementation was written so as to conform with Netscapes SSL.
64 *
65 * This library is free for commercial and non-commercial use as long as
66 * the following conditions are aheared to. The following conditions
67 * apply to all code found in this distribution, be it the RC4, RSA,
68 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
69 * included with this distribution is covered by the same copyright terms
70 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
71 *
72 * Copyright remains Eric Young's, and as such any Copyright notices in
73 * the code are not to be removed.
74 * If this package is used in a product, Eric Young should be given attribution
75 * as the author of the parts of the library used.
76 * This can be in the form of a textual message at program startup or
77 * in documentation (online or textual) provided with the package.
78 *
79 * Redistribution and use in source and binary forms, with or without
80 * modification, are permitted provided that the following conditions
81 * are met:
82 * 1. Redistributions of source code must retain the copyright
83 * notice, this list of conditions and the following disclaimer.
84 * 2. Redistributions in binary form must reproduce the above copyright
85 * notice, this list of conditions and the following disclaimer in the
86 * documentation and/or other materials provided with the distribution.
87 * 3. All advertising materials mentioning features or use of this software
88 * must display the following acknowledgement:
89 * "This product includes cryptographic software written by
90 * Eric Young (eay@cryptsoft.com)"
91 * The word 'cryptographic' can be left out if the rouines from the library
92 * being used are not cryptographic related :-).
93 * 4. If you include any Windows specific code (or a derivative thereof) from
94 * the apps directory (application code) you must include an acknowledgement:
95 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
96 *
97 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
98 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
99 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
100 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
101 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
102 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
103 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
104 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
105 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
106 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
107 * SUCH DAMAGE.
108 *
109 * The licence and distribution terms for any publically available version or
110 * derivative of this code cannot be changed. i.e. this code cannot simply be
111 * copied and put under another distribution licence
112 * [including the GNU Public Licence.]
113 */
114
115 #include <stdio.h>
116 #include <errno.h>
117 #define USE_SOCKETS
118 #include "ssl_locl.h"
119 #include <openssl/evp.h>
120 #include <openssl/buffer.h>
121 #include <openssl/pqueue.h>
122 #include <openssl/rand.h>
123
124 static int have_handshake_fragment(SSL *s, int type, unsigned char *buf,
125 int len, int peek);
126 static int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap,
127 PQ_64BIT *seq_num);
128 static void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap);
129 static DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr,
130 unsigned int *is_next_epoch);
131 #if 0
132 static int dtls1_record_needs_buffering(SSL *s, SSL3_RECORD *rr,
133 unsigned short *priority, unsigned long *offset);
134 #endif
135 static int dtls1_buffer_record(SSL *s, record_pqueue *q,
136 PQ_64BIT priority);
137 static int dtls1_process_record(SSL *s);
138 #if PQ_64BIT_IS_INTEGER
139 static PQ_64BIT bytes_to_long_long(unsigned char *bytes, PQ_64BIT *num);
140 #endif
141 static void dtls1_clear_timeouts(SSL *s);
142
143 /* copy buffered record into SSL structure */
144 static int
145 dtls1_copy_record(SSL *s, pitem *item)
146 {
147 DTLS1_RECORD_DATA *rdata;
148
149 rdata = (DTLS1_RECORD_DATA *)item->data;
150
151 if (s->s3->rbuf.buf != NULL)
152 OPENSSL_free(s->s3->rbuf.buf);
153
154 s->packet = rdata->packet;
155 s->packet_length = rdata->packet_length;
156 memcpy(&(s->s3->rbuf), &(rdata->rbuf), sizeof(SSL3_BUFFER));
157 memcpy(&(s->s3->rrec), &(rdata->rrec), sizeof(SSL3_RECORD));
158
159 return(1);
160 }
161
162
163 static int
164 dtls1_buffer_record(SSL *s, record_pqueue *queue, PQ_64BIT priority)
165 {
166 DTLS1_RECORD_DATA *rdata;
167 pitem *item;
168
169 rdata = OPENSSL_malloc(sizeof(DTLS1_RECORD_DATA));
170 item = pitem_new(priority, rdata);
171 if (rdata == NULL || item == NULL)
172 {
173 if (rdata != NULL) OPENSSL_free(rdata);
174 if (item != NULL) pitem_free(item);
175
176 SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
177 return(0);
178 }
179
180 rdata->packet = s->packet;
181 rdata->packet_length = s->packet_length;
182 memcpy(&(rdata->rbuf), &(s->s3->rbuf), sizeof(SSL3_BUFFER));
183 memcpy(&(rdata->rrec), &(s->s3->rrec), sizeof(SSL3_RECORD));
184
185 item->data = rdata;
186
187 /* insert should not fail, since duplicates are dropped */
188 if (pqueue_insert(queue->q, item) == NULL)
189 {
190 OPENSSL_free(rdata);
191 pitem_free(item);
192 return(0);
193 }
194
195 s->packet = NULL;
196 s->packet_length = 0;
197 memset(&(s->s3->rbuf), 0, sizeof(SSL3_BUFFER));
198 memset(&(s->s3->rrec), 0, sizeof(SSL3_RECORD));
199
200 if (!ssl3_setup_buffers(s))
201 {
202 SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
203 OPENSSL_free(rdata);
204 pitem_free(item);
205 return(0);
206 }
207
208 return(1);
209 }
210
211
212 static int
213 dtls1_retrieve_buffered_record(SSL *s, record_pqueue *queue)
214 {
215 pitem *item;
216
217 item = pqueue_pop(queue->q);
218 if (item)
219 {
220 dtls1_copy_record(s, item);
221
222 OPENSSL_free(item->data);
223 pitem_free(item);
224
225 return(1);
226 }
227
228 return(0);
229 }
230
231
232 /* retrieve a buffered record that belongs to the new epoch, i.e., not processed
233 * yet */
234 #define dtls1_get_unprocessed_record(s) \
235 dtls1_retrieve_buffered_record((s), \
236 &((s)->d1->unprocessed_rcds))
237
238 /* retrieve a buffered record that belongs to the current epoch, ie, processed */
239 #define dtls1_get_processed_record(s) \
240 dtls1_retrieve_buffered_record((s), \
241 &((s)->d1->processed_rcds))
242
243 static int
244 dtls1_process_buffered_records(SSL *s)
245 {
246 pitem *item;
247
248 item = pqueue_peek(s->d1->unprocessed_rcds.q);
249 if (item)
250 {
251 DTLS1_RECORD_DATA *rdata;
252 rdata = (DTLS1_RECORD_DATA *)item->data;
253
254 /* Check if epoch is current. */
255 if (s->d1->unprocessed_rcds.epoch != s->d1->r_epoch)
256 return(1); /* Nothing to do. */
257
258 /* Process all the records. */
259 while (pqueue_peek(s->d1->unprocessed_rcds.q))
260 {
261 dtls1_get_unprocessed_record(s);
262 if ( ! dtls1_process_record(s))
263 return(0);
264 dtls1_buffer_record(s, &(s->d1->processed_rcds),
265 s->s3->rrec.seq_num);
266 }
267 }
268
269 /* sync epoch numbers once all the unprocessed records
270 * have been processed */
271 s->d1->processed_rcds.epoch = s->d1->r_epoch;
272 s->d1->unprocessed_rcds.epoch = s->d1->r_epoch + 1;
273
274 return(1);
275 }
276
277
278 #if 0
279
280 static int
281 dtls1_get_buffered_record(SSL *s)
282 {
283 pitem *item;
284 PQ_64BIT priority =
285 (((PQ_64BIT)s->d1->handshake_read_seq) << 32) |
286 ((PQ_64BIT)s->d1->r_msg_hdr.frag_off);
287
288 if ( ! SSL_in_init(s)) /* if we're not (re)negotiating,
289 nothing buffered */
290 return 0;
291
292
293 item = pqueue_peek(s->d1->rcvd_records);
294 if (item && item->priority == priority)
295 {
296 /* Check if we've received the record of interest. It must be
297 * a handshake record, since data records as passed up without
298 * buffering */
299 DTLS1_RECORD_DATA *rdata;
300 item = pqueue_pop(s->d1->rcvd_records);
301 rdata = (DTLS1_RECORD_DATA *)item->data;
302
303 if (s->s3->rbuf.buf != NULL)
304 OPENSSL_free(s->s3->rbuf.buf);
305
306 s->packet = rdata->packet;
307 s->packet_length = rdata->packet_length;
308 memcpy(&(s->s3->rbuf), &(rdata->rbuf), sizeof(SSL3_BUFFER));
309 memcpy(&(s->s3->rrec), &(rdata->rrec), sizeof(SSL3_RECORD));
310
311 OPENSSL_free(item->data);
312 pitem_free(item);
313
314 /* s->d1->next_expected_seq_num++; */
315 return(1);
316 }
317
318 return 0;
319 }
320
321 #endif
322
323 static int
324 dtls1_process_record(SSL *s)
325 {
326 int i,al;
327 int clear=0;
328 int enc_err;
329 SSL_SESSION *sess;
330 SSL3_RECORD *rr;
331 unsigned int mac_size;
332 unsigned char md[EVP_MAX_MD_SIZE];
333
334
335 rr= &(s->s3->rrec);
336 sess = s->session;
337
338 /* At this point, s->packet_length == SSL3_RT_HEADER_LNGTH + rr->length,
339 * and we have that many bytes in s->packet
340 */
341 rr->input= &(s->packet[DTLS1_RT_HEADER_LENGTH]);
342
343 /* ok, we can now read from 's->packet' data into 'rr'
344 * rr->input points at rr->length bytes, which
345 * need to be copied into rr->data by either
346 * the decryption or by the decompression
347 * When the data is 'copied' into the rr->data buffer,
348 * rr->input will be pointed at the new buffer */
349
350 /* We now have - encrypted [ MAC [ compressed [ plain ] ] ]
351 * rr->length bytes of encrypted compressed stuff. */
352
353 /* check is not needed I believe */
354 if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH)
355 {
356 al=SSL_AD_RECORD_OVERFLOW;
357 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
358 goto f_err;
359 }
360
361 /* decrypt in place in 'rr->input' */
362 rr->data=rr->input;
363
364 enc_err = s->method->ssl3_enc->enc(s,0);
365 if (enc_err <= 0)
366 {
367 if (enc_err == 0)
368 /* SSLerr() and ssl3_send_alert() have been called */
369 goto err;
370
371 /* otherwise enc_err == -1 */
372 goto decryption_failed_or_bad_record_mac;
373 }
374
375 #ifdef TLS_DEBUG
376 printf("dec %d\n",rr->length);
377 { unsigned int z; for (z=0; z<rr->length; z++) printf("%02X%c",rr->data[z],((z+1)%16)?' ':'\n'); }
378 printf("\n");
379 #endif
380
381 /* r->length is now the compressed data plus mac */
382 if ( (sess == NULL) ||
383 (s->enc_read_ctx == NULL) ||
384 (s->read_hash == NULL))
385 clear=1;
386
387 if (!clear)
388 {
389 mac_size=EVP_MD_size(s->read_hash);
390
391 if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH+mac_size)
392 {
393 #if 0 /* OK only for stream ciphers (then rr->length is visible from ciphertext anyway) */
394 al=SSL_AD_RECORD_OVERFLOW;
395 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_PRE_MAC_LENGTH_TOO_LONG);
396 goto f_err;
397 #else
398 goto decryption_failed_or_bad_record_mac;
399 #endif
400 }
401 /* check the MAC for rr->input (it's in mac_size bytes at the tail) */
402 if (rr->length < mac_size)
403 {
404 #if 0 /* OK only for stream ciphers */
405 al=SSL_AD_DECODE_ERROR;
406 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_LENGTH_TOO_SHORT);
407 goto f_err;
408 #else
409 goto decryption_failed_or_bad_record_mac;
410 #endif
411 }
412 rr->length-=mac_size;
413 i=s->method->ssl3_enc->mac(s,md,0);
414 if (memcmp(md,&(rr->data[rr->length]),mac_size) != 0)
415 {
416 goto decryption_failed_or_bad_record_mac;
417 }
418 }
419
420 /* r->length is now just compressed */
421 if (s->expand != NULL)
422 {
423 if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH)
424 {
425 al=SSL_AD_RECORD_OVERFLOW;
426 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_COMPRESSED_LENGTH_TOO_LONG);
427 goto f_err;
428 }
429 if (!ssl3_do_uncompress(s))
430 {
431 al=SSL_AD_DECOMPRESSION_FAILURE;
432 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_BAD_DECOMPRESSION);
433 goto f_err;
434 }
435 }
436
437 if (rr->length > SSL3_RT_MAX_PLAIN_LENGTH)
438 {
439 al=SSL_AD_RECORD_OVERFLOW;
440 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_DATA_LENGTH_TOO_LONG);
441 goto f_err;
442 }
443
444 rr->off=0;
445 /* So at this point the following is true
446 * ssl->s3->rrec.type is the type of record
447 * ssl->s3->rrec.length == number of bytes in record
448 * ssl->s3->rrec.off == offset to first valid byte
449 * ssl->s3->rrec.data == where to take bytes from, increment
450 * after use :-).
451 */
452
453 /* we have pulled in a full packet so zero things */
454 s->packet_length=0;
455 dtls1_record_bitmap_update(s, &(s->d1->bitmap));/* Mark receipt of record. */
456 return(1);
457
458 decryption_failed_or_bad_record_mac:
459 /* Separate 'decryption_failed' alert was introduced with TLS 1.0,
460 * SSL 3.0 only has 'bad_record_mac'. But unless a decryption
461 * failure is directly visible from the ciphertext anyway,
462 * we should not reveal which kind of error occured -- this
463 * might become visible to an attacker (e.g. via logfile) */
464 al=SSL_AD_BAD_RECORD_MAC;
465 SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
466 f_err:
467 ssl3_send_alert(s,SSL3_AL_FATAL,al);
468 err:
469 return(0);
470 }
471
472
473 /* Call this to get a new input record.
474 * It will return <= 0 if more data is needed, normally due to an error
475 * or non-blocking IO.
476 * When it finishes, one packet has been decoded and can be found in
477 * ssl->s3->rrec.type - is the type of record
478 * ssl->s3->rrec.data, - data
479 * ssl->s3->rrec.length, - number of bytes
480 */
481 /* used only by dtls1_read_bytes */
482 int dtls1_get_record(SSL *s)
483 {
484 int ssl_major,ssl_minor,al;
485 int i,n;
486 SSL3_RECORD *rr;
487 SSL_SESSION *sess;
488 unsigned char *p;
489 unsigned short version;
490 DTLS1_BITMAP *bitmap;
491 unsigned int is_next_epoch;
492
493 rr= &(s->s3->rrec);
494 sess=s->session;
495
496 /* The epoch may have changed. If so, process all the
497 * pending records. This is a non-blocking operation. */
498 if ( ! dtls1_process_buffered_records(s))
499 return 0;
500
501 /* if we're renegotiating, then there may be buffered records */
502 if (dtls1_get_processed_record(s))
503 return 1;
504
505 /* get something from the wire */
506 again:
507 /* check if we have the header */
508 if ( (s->rstate != SSL_ST_READ_BODY) ||
509 (s->packet_length < DTLS1_RT_HEADER_LENGTH))
510 {
511 n=ssl3_read_n(s, DTLS1_RT_HEADER_LENGTH, s->s3->rbuf.len, 0);
512 /* read timeout is handled by dtls1_read_bytes */
513 if (n <= 0) return(n); /* error or non-blocking */
514
515 OPENSSL_assert(s->packet_length == DTLS1_RT_HEADER_LENGTH);
516
517 s->rstate=SSL_ST_READ_BODY;
518
519 p=s->packet;
520
521 /* Pull apart the header into the DTLS1_RECORD */
522 rr->type= *(p++);
523 ssl_major= *(p++);
524 ssl_minor= *(p++);
525 version=(ssl_major<<8)|ssl_minor;
526
527 /* sequence number is 64 bits, with top 2 bytes = epoch */
528 n2s(p,rr->epoch);
529
530 memcpy(&(s->s3->read_sequence[2]), p, 6);
531 p+=6;
532
533 n2s(p,rr->length);
534
535 /* Lets check version */
536 if (!s->first_packet)
537 {
538 if (version != s->version && version != DTLS1_BAD_VER)
539 {
540 SSLerr(SSL_F_DTLS1_GET_RECORD,SSL_R_WRONG_VERSION_NUMBER);
541 /* Send back error using their
542 * version number :-) */
543 s->version=version;
544 al=SSL_AD_PROTOCOL_VERSION;
545 goto f_err;
546 }
547 }
548
549 if ((version & 0xff00) != (DTLS1_VERSION & 0xff00) &&
550 (version & 0xff00) != (DTLS1_BAD_VER & 0xff00))
551 {
552 SSLerr(SSL_F_DTLS1_GET_RECORD,SSL_R_WRONG_VERSION_NUMBER);
553 goto err;
554 }
555
556 if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH)
557 {
558 al=SSL_AD_RECORD_OVERFLOW;
559 SSLerr(SSL_F_DTLS1_GET_RECORD,SSL_R_PACKET_LENGTH_TOO_LONG);
560 goto f_err;
561 }
562
563 s->client_version = version;
564 /* now s->rstate == SSL_ST_READ_BODY */
565 }
566
567 /* s->rstate == SSL_ST_READ_BODY, get and decode the data */
568
569 if (rr->length > s->packet_length-DTLS1_RT_HEADER_LENGTH)
570 {
571 /* now s->packet_length == DTLS1_RT_HEADER_LENGTH */
572 i=rr->length;
573 n=ssl3_read_n(s,i,i,1);
574 if (n <= 0) return(n); /* error or non-blocking io */
575
576 /* this packet contained a partial record, dump it */
577 if ( n != i)
578 {
579 s->packet_length = 0;
580 goto again;
581 }
582
583 /* now n == rr->length,
584 * and s->packet_length == DTLS1_RT_HEADER_LENGTH + rr->length */
585 }
586 s->rstate=SSL_ST_READ_HEADER; /* set state for later operations */
587
588 /* match epochs. NULL means the packet is dropped on the floor */
589 bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch);
590 if ( bitmap == NULL)
591 {
592 s->packet_length = 0; /* dump this record */
593 goto again; /* get another record */
594 }
595
596 /* check whether this is a repeat, or aged record */
597 if ( ! dtls1_record_replay_check(s, bitmap, &(rr->seq_num)))
598 {
599 rr->length = 0;
600 s->packet_length=0; /* dump this record */
601 goto again; /* get another record */
602 }
603
604 /* just read a 0 length packet */
605 if (rr->length == 0) goto again;
606
607 /* If this record is from the next epoch (either HM or ALERT), buffer it
608 * since it cannot be processed at this time.
609 * Records from the next epoch are marked as received even though they are
610 * not processed, so as to prevent any potential resource DoS attack */
611 if (is_next_epoch)
612 {
613 dtls1_record_bitmap_update(s, bitmap);
614 dtls1_buffer_record(s, &(s->d1->unprocessed_rcds), rr->seq_num);
615 s->packet_length = 0;
616 goto again;
617 }
618
619 if ( ! dtls1_process_record(s))
620 return(0);
621
622 dtls1_clear_timeouts(s); /* done waiting */
623 return(1);
624
625 f_err:
626 ssl3_send_alert(s,SSL3_AL_FATAL,al);
627 err:
628 return(0);
629 }
630
631 /* Return up to 'len' payload bytes received in 'type' records.
632 * 'type' is one of the following:
633 *
634 * - SSL3_RT_HANDSHAKE (when ssl3_get_message calls us)
635 * - SSL3_RT_APPLICATION_DATA (when ssl3_read calls us)
636 * - 0 (during a shutdown, no data has to be returned)
637 *
638 * If we don't have stored data to work from, read a SSL/TLS record first
639 * (possibly multiple records if we still don't have anything to return).
640 *
641 * This function must handle any surprises the peer may have for us, such as
642 * Alert records (e.g. close_notify), ChangeCipherSpec records (not really
643 * a surprise, but handled as if it were), or renegotiation requests.
644 * Also if record payloads contain fragments too small to process, we store
645 * them until there is enough for the respective protocol (the record protocol
646 * may use arbitrary fragmentation and even interleaving):
647 * Change cipher spec protocol
648 * just 1 byte needed, no need for keeping anything stored
649 * Alert protocol
650 * 2 bytes needed (AlertLevel, AlertDescription)
651 * Handshake protocol
652 * 4 bytes needed (HandshakeType, uint24 length) -- we just have
653 * to detect unexpected Client Hello and Hello Request messages
654 * here, anything else is handled by higher layers
655 * Application data protocol
656 * none of our business
657 */
658 int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
659 {
660 int al,i,j,ret;
661 unsigned int n;
662 SSL3_RECORD *rr;
663 void (*cb)(const SSL *ssl,int type2,int val)=NULL;
664
665 if (s->s3->rbuf.buf == NULL) /* Not initialized yet */
666 if (!ssl3_setup_buffers(s))
667 return(-1);
668
669 /* XXX: check what the second '&& type' is about */
670 if ((type && (type != SSL3_RT_APPLICATION_DATA) &&
671 (type != SSL3_RT_HANDSHAKE) && type) ||
672 (peek && (type != SSL3_RT_APPLICATION_DATA)))
673 {
674 SSLerr(SSL_F_DTLS1_READ_BYTES, ERR_R_INTERNAL_ERROR);
675 return -1;
676 }
677
678 /* check whether there's a handshake message (client hello?) waiting */
679 if ( (ret = have_handshake_fragment(s, type, buf, len, peek)))
680 return ret;
681
682 /* Now s->d1->handshake_fragment_len == 0 if type == SSL3_RT_HANDSHAKE. */
683
684 if (!s->in_handshake && SSL_in_init(s))
685 {
686 /* type == SSL3_RT_APPLICATION_DATA */
687 i=s->handshake_func(s);
688 if (i < 0) return(i);
689 if (i == 0)
690 {
691 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
692 return(-1);
693 }
694 }
695
696 start:
697 s->rwstate=SSL_NOTHING;
698
699 /* s->s3->rrec.type - is the type of record
700 * s->s3->rrec.data, - data
701 * s->s3->rrec.off, - offset into 'data' for next read
702 * s->s3->rrec.length, - number of bytes. */
703 rr = &(s->s3->rrec);
704
705 /* get new packet if necessary */
706 if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY))
707 {
708 ret=dtls1_get_record(s);
709 if (ret <= 0)
710 {
711 ret = dtls1_read_failed(s, ret);
712 /* anything other than a timeout is an error */
713 if (ret <= 0)
714 return(ret);
715 else
716 goto start;
717 }
718 }
719
720 /* we now have a packet which can be read and processed */
721
722 if (s->s3->change_cipher_spec /* set when we receive ChangeCipherSpec,
723 * reset by ssl3_get_finished */
724 && (rr->type != SSL3_RT_HANDSHAKE))
725 {
726 al=SSL_AD_UNEXPECTED_MESSAGE;
727 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_DATA_BETWEEN_CCS_AND_FINISHED);
728 goto err;
729 }
730
731 /* If the other end has shut down, throw anything we read away
732 * (even in 'peek' mode) */
733 if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
734 {
735 rr->length=0;
736 s->rwstate=SSL_NOTHING;
737 return(0);
738 }
739
740
741 if (type == rr->type) /* SSL3_RT_APPLICATION_DATA or SSL3_RT_HANDSHAKE */
742 {
743 /* make sure that we are not getting application data when we
744 * are doing a handshake for the first time */
745 if (SSL_in_init(s) && (type == SSL3_RT_APPLICATION_DATA) &&
746 (s->enc_read_ctx == NULL))
747 {
748 al=SSL_AD_UNEXPECTED_MESSAGE;
749 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_APP_DATA_IN_HANDSHAKE);
750 goto f_err;
751 }
752
753 if (len <= 0) return(len);
754
755 if ((unsigned int)len > rr->length)
756 n = rr->length;
757 else
758 n = (unsigned int)len;
759
760 memcpy(buf,&(rr->data[rr->off]),n);
761 if (!peek)
762 {
763 rr->length-=n;
764 rr->off+=n;
765 if (rr->length == 0)
766 {
767 s->rstate=SSL_ST_READ_HEADER;
768 rr->off=0;
769 }
770 }
771 return(n);
772 }
773
774
775 /* If we get here, then type != rr->type; if we have a handshake
776 * message, then it was unexpected (Hello Request or Client Hello). */
777
778 /* In case of record types for which we have 'fragment' storage,
779 * fill that so that we can process the data at a fixed place.
780 */
781 {
782 unsigned int k, dest_maxlen = 0;
783 unsigned char *dest = NULL;
784 unsigned int *dest_len = NULL;
785
786 if (rr->type == SSL3_RT_HANDSHAKE)
787 {
788 dest_maxlen = sizeof s->d1->handshake_fragment;
789 dest = s->d1->handshake_fragment;
790 dest_len = &s->d1->handshake_fragment_len;
791 }
792 else if (rr->type == SSL3_RT_ALERT)
793 {
794 dest_maxlen = sizeof(s->d1->alert_fragment);
795 dest = s->d1->alert_fragment;
796 dest_len = &s->d1->alert_fragment_len;
797 }
798 /* else it's a CCS message, or it's wrong */
799 else if (rr->type != SSL3_RT_CHANGE_CIPHER_SPEC)
800 {
801 /* Not certain if this is the right error handling */
802 al=SSL_AD_UNEXPECTED_MESSAGE;
803 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_UNEXPECTED_RECORD);
804 goto f_err;
805 }
806
807
808 if (dest_maxlen > 0)
809 {
810 /* XDTLS: In a pathalogical case, the Client Hello
811 * may be fragmented--don't always expect dest_maxlen bytes */
812 if ( rr->length < dest_maxlen)
813 {
814 #ifdef DTLS1_AD_MISSING_HANDSHAKE_MESSAGE
815 /*
816 * for normal alerts rr->length is 2, while
817 * dest_maxlen is 7 if we were to handle this
818 * non-existing alert...
819 */
820 FIX ME
821 #endif
822 s->rstate=SSL_ST_READ_HEADER;
823 rr->length = 0;
824 goto start;
825 }
826
827 /* now move 'n' bytes: */
828 for ( k = 0; k < dest_maxlen; k++)
829 {
830 dest[k] = rr->data[rr->off++];
831 rr->length--;
832 }
833 *dest_len = dest_maxlen;
834 }
835 }
836
837 /* s->d1->handshake_fragment_len == 12 iff rr->type == SSL3_RT_HANDSHAKE;
838 * s->d1->alert_fragment_len == 7 iff rr->type == SSL3_RT_ALERT.
839 * (Possibly rr is 'empty' now, i.e. rr->length may be 0.) */
840
841 /* If we are a client, check for an incoming 'Hello Request': */
842 if ((!s->server) &&
843 (s->d1->handshake_fragment_len >= DTLS1_HM_HEADER_LENGTH) &&
844 (s->d1->handshake_fragment[0] == SSL3_MT_HELLO_REQUEST) &&
845 (s->session != NULL) && (s->session->cipher != NULL))
846 {
847 s->d1->handshake_fragment_len = 0;
848
849 if ((s->d1->handshake_fragment[1] != 0) ||
850 (s->d1->handshake_fragment[2] != 0) ||
851 (s->d1->handshake_fragment[3] != 0))
852 {
853 al=SSL_AD_DECODE_ERROR;
854 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_BAD_HELLO_REQUEST);
855 goto err;
856 }
857
858 /* no need to check sequence number on HELLO REQUEST messages */
859
860 if (s->msg_callback)
861 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
862 s->d1->handshake_fragment, 4, s, s->msg_callback_arg);
863
864 if (SSL_is_init_finished(s) &&
865 !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS) &&
866 !s->s3->renegotiate)
867 {
868 ssl3_renegotiate(s);
869 if (ssl3_renegotiate_check(s))
870 {
871 i=s->handshake_func(s);
872 if (i < 0) return(i);
873 if (i == 0)
874 {
875 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
876 return(-1);
877 }
878
879 if (!(s->mode & SSL_MODE_AUTO_RETRY))
880 {
881 if (s->s3->rbuf.left == 0) /* no read-ahead left? */
882 {
883 BIO *bio;
884 /* In the case where we try to read application data,
885 * but we trigger an SSL handshake, we return -1 with
886 * the retry option set. Otherwise renegotiation may
887 * cause nasty problems in the blocking world */
888 s->rwstate=SSL_READING;
889 bio=SSL_get_rbio(s);
890 BIO_clear_retry_flags(bio);
891 BIO_set_retry_read(bio);
892 return(-1);
893 }
894 }
895 }
896 }
897 /* we either finished a handshake or ignored the request,
898 * now try again to obtain the (application) data we were asked for */
899 goto start;
900 }
901
902 if (s->d1->alert_fragment_len >= DTLS1_AL_HEADER_LENGTH)
903 {
904 int alert_level = s->d1->alert_fragment[0];
905 int alert_descr = s->d1->alert_fragment[1];
906
907 s->d1->alert_fragment_len = 0;
908
909 if (s->msg_callback)
910 s->msg_callback(0, s->version, SSL3_RT_ALERT,
911 s->d1->alert_fragment, 2, s, s->msg_callback_arg);
912
913 if (s->info_callback != NULL)
914 cb=s->info_callback;
915 else if (s->ctx->info_callback != NULL)
916 cb=s->ctx->info_callback;
917
918 if (cb != NULL)
919 {
920 j = (alert_level << 8) | alert_descr;
921 cb(s, SSL_CB_READ_ALERT, j);
922 }
923
924 if (alert_level == 1) /* warning */
925 {
926 s->s3->warn_alert = alert_descr;
927 if (alert_descr == SSL_AD_CLOSE_NOTIFY)
928 {
929 s->shutdown |= SSL_RECEIVED_SHUTDOWN;
930 return(0);
931 }
932 #if 0
933 /* XXX: this is a possible improvement in the future */
934 /* now check if it's a missing record */
935 if (alert_descr == DTLS1_AD_MISSING_HANDSHAKE_MESSAGE)
936 {
937 unsigned short seq;
938 unsigned int frag_off;
939 unsigned char *p = &(s->d1->alert_fragment[2]);
940
941 n2s(p, seq);
942 n2l3(p, frag_off);
943
944 dtls1_retransmit_message(s, seq, frag_off, &found);
945 if ( ! found && SSL_in_init(s))
946 {
947 /* fprintf( stderr,"in init = %d\n", SSL_in_init(s)); */
948 /* requested a message not yet sent,
949 send an alert ourselves */
950 ssl3_send_alert(s,SSL3_AL_WARNING,
951 DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);
952 }
953 }
954 #endif
955 }
956 else if (alert_level == 2) /* fatal */
957 {
958 char tmp[16];
959
960 s->rwstate=SSL_NOTHING;
961 s->s3->fatal_alert = alert_descr;
962 SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_AD_REASON_OFFSET + alert_descr);
963 BIO_snprintf(tmp,sizeof tmp,"%d",alert_descr);
964 ERR_add_error_data(2,"SSL alert number ",tmp);
965 s->shutdown|=SSL_RECEIVED_SHUTDOWN;
966 SSL_CTX_remove_session(s->ctx,s->session);
967 return(0);
968 }
969 else
970 {
971 al=SSL_AD_ILLEGAL_PARAMETER;
972 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_UNKNOWN_ALERT_TYPE);
973 goto f_err;
974 }
975
976 goto start;
977 }
978
979 if (s->shutdown & SSL_SENT_SHUTDOWN) /* but we have not received a shutdown */
980 {
981 s->rwstate=SSL_NOTHING;
982 rr->length=0;
983 return(0);
984 }
985
986 if (rr->type == SSL3_RT_CHANGE_CIPHER_SPEC)
987 {
988 struct ccs_header_st ccs_hdr;
989
990 dtls1_get_ccs_header(rr->data, &ccs_hdr);
991
992 /* 'Change Cipher Spec' is just a single byte, so we know
993 * exactly what the record payload has to look like */
994 /* XDTLS: check that epoch is consistent */
995 if ( (s->client_version == DTLS1_BAD_VER && rr->length != 3) ||
996 (s->client_version != DTLS1_BAD_VER && rr->length != DTLS1_CCS_HEADER_LENGTH) ||
997 (rr->off != 0) || (rr->data[0] != SSL3_MT_CCS))
998 {
999 i=SSL_AD_ILLEGAL_PARAMETER;
1000 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_BAD_CHANGE_CIPHER_SPEC);
1001 goto err;
1002 }
1003
1004 rr->length=0;
1005
1006 if (s->msg_callback)
1007 s->msg_callback(0, s->version, SSL3_RT_CHANGE_CIPHER_SPEC,
1008 rr->data, 1, s, s->msg_callback_arg);
1009
1010 s->s3->change_cipher_spec=1;
1011 if (!ssl3_do_change_cipher_spec(s))
1012 goto err;
1013
1014 /* do this whenever CCS is processed */
1015 dtls1_reset_seq_numbers(s, SSL3_CC_READ);
1016
1017 if (s->client_version == DTLS1_BAD_VER)
1018 s->d1->handshake_read_seq++;
1019
1020 goto start;
1021 }
1022
1023 /* Unexpected handshake message (Client Hello, or protocol violation) */
1024 if ((s->d1->handshake_fragment_len >= DTLS1_HM_HEADER_LENGTH) &&
1025 !s->in_handshake)
1026 {
1027 struct hm_header_st msg_hdr;
1028
1029 /* this may just be a stale retransmit */
1030 dtls1_get_message_header(rr->data, &msg_hdr);
1031 if( rr->epoch != s->d1->r_epoch)
1032 {
1033 rr->length = 0;
1034 goto start;
1035 }
1036
1037 if (((s->state&SSL_ST_MASK) == SSL_ST_OK) &&
1038 !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS))
1039 {
1040 #if 0 /* worked only because C operator preferences are not as expected (and
1041 * because this is not really needed for clients except for detecting
1042 * protocol violations): */
1043 s->state=SSL_ST_BEFORE|(s->server)
1044 ?SSL_ST_ACCEPT
1045 :SSL_ST_CONNECT;
1046 #else
1047 s->state = s->server ? SSL_ST_ACCEPT : SSL_ST_CONNECT;
1048 #endif
1049 s->new_session=1;
1050 }
1051 i=s->handshake_func(s);
1052 if (i < 0) return(i);
1053 if (i == 0)
1054 {
1055 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
1056 return(-1);
1057 }
1058
1059 if (!(s->mode & SSL_MODE_AUTO_RETRY))
1060 {
1061 if (s->s3->rbuf.left == 0) /* no read-ahead left? */
1062 {
1063 BIO *bio;
1064 /* In the case where we try to read application data,
1065 * but we trigger an SSL handshake, we return -1 with
1066 * the retry option set. Otherwise renegotiation may
1067 * cause nasty problems in the blocking world */
1068 s->rwstate=SSL_READING;
1069 bio=SSL_get_rbio(s);
1070 BIO_clear_retry_flags(bio);
1071 BIO_set_retry_read(bio);
1072 return(-1);
1073 }
1074 }
1075 goto start;
1076 }
1077
1078 switch (rr->type)
1079 {
1080 default:
1081 #ifndef OPENSSL_NO_TLS
1082 /* TLS just ignores unknown message types */
1083 if (s->version == TLS1_VERSION)
1084 {
1085 rr->length = 0;
1086 goto start;
1087 }
1088 #endif
1089 al=SSL_AD_UNEXPECTED_MESSAGE;
1090 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_UNEXPECTED_RECORD);
1091 goto f_err;
1092 case SSL3_RT_CHANGE_CIPHER_SPEC:
1093 case SSL3_RT_ALERT:
1094 case SSL3_RT_HANDSHAKE:
1095 /* we already handled all of these, with the possible exception
1096 * of SSL3_RT_HANDSHAKE when s->in_handshake is set, but that
1097 * should not happen when type != rr->type */
1098 al=SSL_AD_UNEXPECTED_MESSAGE;
1099 SSLerr(SSL_F_DTLS1_READ_BYTES,ERR_R_INTERNAL_ERROR);
1100 goto f_err;
1101 case SSL3_RT_APPLICATION_DATA:
1102 /* At this point, we were expecting handshake data,
1103 * but have application data. If the library was
1104 * running inside ssl3_read() (i.e. in_read_app_data
1105 * is set) and it makes sense to read application data
1106 * at this point (session renegotiation not yet started),
1107 * we will indulge it.
1108 */
1109 if (s->s3->in_read_app_data &&
1110 (s->s3->total_renegotiations != 0) &&
1111 ((
1112 (s->state & SSL_ST_CONNECT) &&
1113 (s->state >= SSL3_ST_CW_CLNT_HELLO_A) &&
1114 (s->state <= SSL3_ST_CR_SRVR_HELLO_A)
1115 ) || (
1116 (s->state & SSL_ST_ACCEPT) &&
1117 (s->state <= SSL3_ST_SW_HELLO_REQ_A) &&
1118 (s->state >= SSL3_ST_SR_CLNT_HELLO_A)
1119 )
1120 ))
1121 {
1122 s->s3->in_read_app_data=2;
1123 return(-1);
1124 }
1125 else
1126 {
1127 al=SSL_AD_UNEXPECTED_MESSAGE;
1128 SSLerr(SSL_F_DTLS1_READ_BYTES,SSL_R_UNEXPECTED_RECORD);
1129 goto f_err;
1130 }
1131 }
1132 /* not reached */
1133
1134 f_err:
1135 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1136 err:
1137 return(-1);
1138 }
1139
1140 int
1141 dtls1_write_app_data_bytes(SSL *s, int type, const void *buf_, int len)
1142 {
1143 unsigned int n,tot;
1144 int i;
1145
1146 if (SSL_in_init(s) && !s->in_handshake)
1147 {
1148 i=s->handshake_func(s);
1149 if (i < 0) return(i);
1150 if (i == 0)
1151 {
1152 SSLerr(SSL_F_DTLS1_WRITE_APP_DATA_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
1153 return -1;
1154 }
1155 }
1156
1157 tot = s->s3->wnum;
1158 n = len - tot;
1159
1160 while( n)
1161 {
1162 /* dtls1_write_bytes sends one record at a time, sized according to
1163 * the currently known MTU */
1164 i = dtls1_write_bytes(s, type, buf_, len);
1165 if (i <= 0) return i;
1166
1167 if ((i == (int)n) ||
1168 (type == SSL3_RT_APPLICATION_DATA &&
1169 (s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE)))
1170 {
1171 /* next chunk of data should get another prepended empty fragment
1172 * in ciphersuites with known-IV weakness: */
1173 s->s3->empty_fragment_done = 0;
1174 return tot+i;
1175 }
1176
1177 tot += i;
1178 n-=i;
1179 }
1180
1181 return tot;
1182 }
1183
1184
1185 /* this only happens when a client hello is received and a handshake
1186 * is started. */
1187 static int
1188 have_handshake_fragment(SSL *s, int type, unsigned char *buf,
1189 int len, int peek)
1190 {
1191
1192 if ((type == SSL3_RT_HANDSHAKE) && (s->d1->handshake_fragment_len > 0))
1193 /* (partially) satisfy request from storage */
1194 {
1195 unsigned char *src = s->d1->handshake_fragment;
1196 unsigned char *dst = buf;
1197 unsigned int k,n;
1198
1199 /* peek == 0 */
1200 n = 0;
1201 while ((len > 0) && (s->d1->handshake_fragment_len > 0))
1202 {
1203 *dst++ = *src++;
1204 len--; s->d1->handshake_fragment_len--;
1205 n++;
1206 }
1207 /* move any remaining fragment bytes: */
1208 for (k = 0; k < s->d1->handshake_fragment_len; k++)
1209 s->d1->handshake_fragment[k] = *src++;
1210 return n;
1211 }
1212
1213 return 0;
1214 }
1215
1216
1217
1218
1219 /* Call this to write data in records of type 'type'
1220 * It will return <= 0 if not all data has been sent or non-blocking IO.
1221 */
1222 int dtls1_write_bytes(SSL *s, int type, const void *buf_, int len)
1223 {
1224 const unsigned char *buf=buf_;
1225 unsigned int tot,n,nw;
1226 int i;
1227 unsigned int mtu;
1228
1229 s->rwstate=SSL_NOTHING;
1230 tot=s->s3->wnum;
1231
1232 n=(len-tot);
1233
1234 /* handshake layer figures out MTU for itself, but data records
1235 * are also sent through this interface, so need to figure out MTU */
1236 #if 0
1237 mtu = BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_GET_MTU, 0, NULL);
1238 mtu += DTLS1_HM_HEADER_LENGTH; /* HM already inserted */
1239 #endif
1240 mtu = s->d1->mtu;
1241
1242 if (mtu > SSL3_RT_MAX_PLAIN_LENGTH)
1243 mtu = SSL3_RT_MAX_PLAIN_LENGTH;
1244
1245 if (n > mtu)
1246 nw=mtu;
1247 else
1248 nw=n;
1249
1250 i=do_dtls1_write(s, type, &(buf[tot]), nw, 0);
1251 if (i <= 0)
1252 {
1253 s->s3->wnum=tot;
1254 return i;
1255 }
1256
1257 if ( (int)s->s3->wnum + i == len)
1258 s->s3->wnum = 0;
1259 else
1260 s->s3->wnum += i;
1261
1262 return i;
1263 }
1264
1265 int do_dtls1_write(SSL *s, int type, const unsigned char *buf, unsigned int len, int create_empty_fragment)
1266 {
1267 unsigned char *p,*pseq;
1268 int i,mac_size,clear=0;
1269 int prefix_len = 0;
1270 SSL3_RECORD *wr;
1271 SSL3_BUFFER *wb;
1272 SSL_SESSION *sess;
1273 int bs;
1274
1275 /* first check if there is a SSL3_BUFFER still being written
1276 * out. This will happen with non blocking IO */
1277 if (s->s3->wbuf.left != 0)
1278 {
1279 OPENSSL_assert(0); /* XDTLS: want to see if we ever get here */
1280 return(ssl3_write_pending(s,type,buf,len));
1281 }
1282
1283 /* If we have an alert to send, lets send it */
1284 if (s->s3->alert_dispatch)
1285 {
1286 i=s->method->ssl_dispatch_alert(s);
1287 if (i <= 0)
1288 return(i);
1289 /* if it went, fall through and send more stuff */
1290 }
1291
1292 if (len == 0 && !create_empty_fragment)
1293 return 0;
1294
1295 wr= &(s->s3->wrec);
1296 wb= &(s->s3->wbuf);
1297 sess=s->session;
1298
1299 if ( (sess == NULL) ||
1300 (s->enc_write_ctx == NULL) ||
1301 (s->write_hash == NULL))
1302 clear=1;
1303
1304 if (clear)
1305 mac_size=0;
1306 else
1307 mac_size=EVP_MD_size(s->write_hash);
1308
1309 /* DTLS implements explicit IV, so no need for empty fragments */
1310 #if 0
1311 /* 'create_empty_fragment' is true only when this function calls itself */
1312 if (!clear && !create_empty_fragment && !s->s3->empty_fragment_done
1313 && SSL_version(s) != DTLS1_VERSION)
1314 {
1315 /* countermeasure against known-IV weakness in CBC ciphersuites
1316 * (see http://www.openssl.org/~bodo/tls-cbc.txt)
1317 */
1318
1319 if (s->s3->need_empty_fragments && type == SSL3_RT_APPLICATION_DATA)
1320 {
1321 /* recursive function call with 'create_empty_fragment' set;
1322 * this prepares and buffers the data for an empty fragment
1323 * (these 'prefix_len' bytes are sent out later
1324 * together with the actual payload) */
1325 prefix_len = s->method->do_ssl_write(s, type, buf, 0, 1);
1326 if (prefix_len <= 0)
1327 goto err;
1328
1329 if (s->s3->wbuf.len < (size_t)prefix_len + SSL3_RT_MAX_PACKET_SIZE)
1330 {
1331 /* insufficient space */
1332 SSLerr(SSL_F_DO_DTLS1_WRITE, ERR_R_INTERNAL_ERROR);
1333 goto err;
1334 }
1335 }
1336
1337 s->s3->empty_fragment_done = 1;
1338 }
1339 #endif
1340
1341 p = wb->buf + prefix_len;
1342
1343 /* write the header */
1344
1345 *(p++)=type&0xff;
1346 wr->type=type;
1347
1348 if (s->client_version == DTLS1_BAD_VER)
1349 *(p++) = DTLS1_BAD_VER>>8,
1350 *(p++) = DTLS1_BAD_VER&0xff;
1351 else
1352 *(p++)=(s->version>>8),
1353 *(p++)=s->version&0xff;
1354
1355 /* field where we are to write out packet epoch, seq num and len */
1356 pseq=p;
1357 p+=10;
1358
1359 /* lets setup the record stuff. */
1360
1361 /* Make space for the explicit IV in case of CBC.
1362 * (this is a bit of a boundary violation, but what the heck).
1363 */
1364 if ( s->enc_write_ctx &&
1365 (EVP_CIPHER_mode( s->enc_write_ctx->cipher ) & EVP_CIPH_CBC_MODE))
1366 bs = EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
1367 else
1368 bs = 0;
1369
1370 wr->data=p + bs; /* make room for IV in case of CBC */
1371 wr->length=(int)len;
1372 wr->input=(unsigned char *)buf;
1373
1374 /* we now 'read' from wr->input, wr->length bytes into
1375 * wr->data */
1376
1377 /* first we compress */
1378 if (s->compress != NULL)
1379 {
1380 if (!ssl3_do_compress(s))
1381 {
1382 SSLerr(SSL_F_DO_DTLS1_WRITE,SSL_R_COMPRESSION_FAILURE);
1383 goto err;
1384 }
1385 }
1386 else
1387 {
1388 memcpy(wr->data,wr->input,wr->length);
1389 wr->input=wr->data;
1390 }
1391
1392 /* we should still have the output to wr->data and the input
1393 * from wr->input. Length should be wr->length.
1394 * wr->data still points in the wb->buf */
1395
1396 if (mac_size != 0)
1397 {
1398 s->method->ssl3_enc->mac(s,&(p[wr->length + bs]),1);
1399 wr->length+=mac_size;
1400 }
1401
1402 /* this is true regardless of mac size */
1403 wr->input=p;
1404 wr->data=p;
1405
1406
1407 /* ssl3_enc can only have an error on read */
1408 if (bs) /* bs != 0 in case of CBC */
1409 {
1410 RAND_pseudo_bytes(p,bs);
1411 /* master IV and last CBC residue stand for
1412 * the rest of randomness */
1413 wr->length += bs;
1414 }
1415
1416 s->method->ssl3_enc->enc(s,1);
1417
1418 /* record length after mac and block padding */
1419 /* if (type == SSL3_RT_APPLICATION_DATA ||
1420 (type == SSL3_RT_ALERT && ! SSL_in_init(s))) */
1421
1422 /* there's only one epoch between handshake and app data */
1423
1424 s2n(s->d1->w_epoch, pseq);
1425
1426 /* XDTLS: ?? */
1427 /* else
1428 s2n(s->d1->handshake_epoch, pseq); */
1429
1430 memcpy(pseq, &(s->s3->write_sequence[2]), 6);
1431 pseq+=6;
1432 s2n(wr->length,pseq);
1433
1434 /* we should now have
1435 * wr->data pointing to the encrypted data, which is
1436 * wr->length long */
1437 wr->type=type; /* not needed but helps for debugging */
1438 wr->length+=DTLS1_RT_HEADER_LENGTH;
1439
1440 #if 0 /* this is now done at the message layer */
1441 /* buffer the record, making it easy to handle retransmits */
1442 if ( type == SSL3_RT_HANDSHAKE || type == SSL3_RT_CHANGE_CIPHER_SPEC)
1443 dtls1_buffer_record(s, wr->data, wr->length,
1444 *((PQ_64BIT *)&(s->s3->write_sequence[0])));
1445 #endif
1446
1447 ssl3_record_sequence_update(&(s->s3->write_sequence[0]));
1448
1449 if (create_empty_fragment)
1450 {
1451 /* we are in a recursive call;
1452 * just return the length, don't write out anything here
1453 */
1454 return wr->length;
1455 }
1456
1457 /* now let's set up wb */
1458 wb->left = prefix_len + wr->length;
1459 wb->offset = 0;
1460
1461 /* memorize arguments so that ssl3_write_pending can detect bad write retries later */
1462 s->s3->wpend_tot=len;
1463 s->s3->wpend_buf=buf;
1464 s->s3->wpend_type=type;
1465 s->s3->wpend_ret=len;
1466
1467 /* we now just need to write the buffer */
1468 return ssl3_write_pending(s,type,buf,len);
1469 err:
1470 return -1;
1471 }
1472
1473
1474
1475 static int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap,
1476 PQ_64BIT *seq_num)
1477 {
1478 #if PQ_64BIT_IS_INTEGER
1479 PQ_64BIT mask = 0x0000000000000001L;
1480 #endif
1481 PQ_64BIT rcd_num, tmp;
1482
1483 pq_64bit_init(&rcd_num);
1484 pq_64bit_init(&tmp);
1485
1486 /* this is the sequence number for the record just read */
1487 pq_64bit_bin2num(&rcd_num, s->s3->read_sequence, 8);
1488
1489
1490 if (pq_64bit_gt(&rcd_num, &(bitmap->max_seq_num)) ||
1491 pq_64bit_eq(&rcd_num, &(bitmap->max_seq_num)))
1492 {
1493 pq_64bit_assign(seq_num, &rcd_num);
1494 pq_64bit_free(&rcd_num);
1495 pq_64bit_free(&tmp);
1496 return 1; /* this record is new */
1497 }
1498
1499 pq_64bit_sub(&tmp, &(bitmap->max_seq_num), &rcd_num);
1500
1501 if ( pq_64bit_get_word(&tmp) > bitmap->length)
1502 {
1503 pq_64bit_free(&rcd_num);
1504 pq_64bit_free(&tmp);
1505 return 0; /* stale, outside the window */
1506 }
1507
1508 #if PQ_64BIT_IS_BIGNUM
1509 {
1510 int offset;
1511 pq_64bit_sub(&tmp, &(bitmap->max_seq_num), &rcd_num);
1512 pq_64bit_sub_word(&tmp, 1);
1513 offset = pq_64bit_get_word(&tmp);
1514 if ( pq_64bit_is_bit_set(&(bitmap->map), offset))
1515 {
1516 pq_64bit_free(&rcd_num);
1517 pq_64bit_free(&tmp);
1518 return 0;
1519 }
1520 }
1521 #else
1522 mask <<= (bitmap->max_seq_num - rcd_num - 1);
1523 if (bitmap->map & mask)
1524 return 0; /* record previously received */
1525 #endif
1526
1527 pq_64bit_assign(seq_num, &rcd_num);
1528 pq_64bit_free(&rcd_num);
1529 pq_64bit_free(&tmp);
1530 return 1;
1531 }
1532
1533
1534 static void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap)
1535 {
1536 unsigned int shift;
1537 PQ_64BIT rcd_num;
1538 PQ_64BIT tmp;
1539 PQ_64BIT_CTX *ctx;
1540
1541 pq_64bit_init(&rcd_num);
1542 pq_64bit_init(&tmp);
1543
1544 pq_64bit_bin2num(&rcd_num, s->s3->read_sequence, 8);
1545
1546 /* unfortunate code complexity due to 64-bit manipulation support
1547 * on 32-bit machines */
1548 if ( pq_64bit_gt(&rcd_num, &(bitmap->max_seq_num)) ||
1549 pq_64bit_eq(&rcd_num, &(bitmap->max_seq_num)))
1550 {
1551 pq_64bit_sub(&tmp, &rcd_num, &(bitmap->max_seq_num));
1552 pq_64bit_add_word(&tmp, 1);
1553
1554 shift = (unsigned int)pq_64bit_get_word(&tmp);
1555
1556 pq_64bit_lshift(&(tmp), &(bitmap->map), shift);
1557 pq_64bit_assign(&(bitmap->map), &tmp);
1558
1559 pq_64bit_set_bit(&(bitmap->map), 0);
1560 pq_64bit_add_word(&rcd_num, 1);
1561 pq_64bit_assign(&(bitmap->max_seq_num), &rcd_num);
1562
1563 pq_64bit_assign_word(&tmp, 1);
1564 pq_64bit_lshift(&tmp, &tmp, bitmap->length);
1565 ctx = pq_64bit_ctx_new(&ctx);
1566 pq_64bit_mod(&(bitmap->map), &(bitmap->map), &tmp, ctx);
1567 pq_64bit_ctx_free(ctx);
1568 }
1569 else
1570 {
1571 pq_64bit_sub(&tmp, &(bitmap->max_seq_num), &rcd_num);
1572 pq_64bit_sub_word(&tmp, 1);
1573 shift = (unsigned int)pq_64bit_get_word(&tmp);
1574
1575 pq_64bit_set_bit(&(bitmap->map), shift);
1576 }
1577
1578 pq_64bit_free(&rcd_num);
1579 pq_64bit_free(&tmp);
1580 }
1581
1582
1583 int dtls1_dispatch_alert(SSL *s)
1584 {
1585 int i,j;
1586 void (*cb)(const SSL *ssl,int type,int val)=NULL;
1587 unsigned char buf[DTLS1_AL_HEADER_LENGTH];
1588 unsigned char *ptr = &buf[0];
1589
1590 s->s3->alert_dispatch=0;
1591
1592 memset(buf, 0x00, sizeof(buf));
1593 *ptr++ = s->s3->send_alert[0];
1594 *ptr++ = s->s3->send_alert[1];
1595
1596 #ifdef DTLS1_AD_MISSING_HANDSHAKE_MESSAGE
1597 if (s->s3->send_alert[1] == DTLS1_AD_MISSING_HANDSHAKE_MESSAGE)
1598 {
1599 s2n(s->d1->handshake_read_seq, ptr);
1600 #if 0
1601 if ( s->d1->r_msg_hdr.frag_off == 0) /* waiting for a new msg */
1602
1603 else
1604 s2n(s->d1->r_msg_hdr.seq, ptr); /* partial msg read */
1605 #endif
1606
1607 #if 0
1608 fprintf(stderr, "s->d1->handshake_read_seq = %d, s->d1->r_msg_hdr.seq = %d\n",s->d1->handshake_read_seq,s->d1->r_msg_hdr.seq);
1609 #endif
1610 l2n3(s->d1->r_msg_hdr.frag_off, ptr);
1611 }
1612 #endif
1613
1614 i = do_dtls1_write(s, SSL3_RT_ALERT, &buf[0], sizeof(buf), 0);
1615 if (i <= 0)
1616 {
1617 s->s3->alert_dispatch=1;
1618 /* fprintf( stderr, "not done with alert\n" ); */
1619 }
1620 else
1621 {
1622 if (s->s3->send_alert[0] == SSL3_AL_FATAL
1623 #ifdef DTLS1_AD_MISSING_HANDSHAKE_MESSAGE
1624 || s->s3->send_alert[1] == DTLS1_AD_MISSING_HANDSHAKE_MESSAGE
1625 #endif
1626 )
1627 (void)BIO_flush(s->wbio);
1628
1629 if (s->msg_callback)
1630 s->msg_callback(1, s->version, SSL3_RT_ALERT, s->s3->send_alert,
1631 2, s, s->msg_callback_arg);
1632
1633 if (s->info_callback != NULL)
1634 cb=s->info_callback;
1635 else if (s->ctx->info_callback != NULL)
1636 cb=s->ctx->info_callback;
1637
1638 if (cb != NULL)
1639 {
1640 j=(s->s3->send_alert[0]<<8)|s->s3->send_alert[1];
1641 cb(s,SSL_CB_WRITE_ALERT,j);
1642 }
1643 }
1644 return(i);
1645 }
1646
1647
1648 static DTLS1_BITMAP *
1649 dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr, unsigned int *is_next_epoch)
1650 {
1651
1652 *is_next_epoch = 0;
1653
1654 /* In current epoch, accept HM, CCS, DATA, & ALERT */
1655 if (rr->epoch == s->d1->r_epoch)
1656 return &s->d1->bitmap;
1657
1658 /* Only HM and ALERT messages can be from the next epoch */
1659 else if (rr->epoch == (unsigned long)(s->d1->r_epoch + 1) &&
1660 (rr->type == SSL3_RT_HANDSHAKE ||
1661 rr->type == SSL3_RT_ALERT))
1662 {
1663 *is_next_epoch = 1;
1664 return &s->d1->next_bitmap;
1665 }
1666
1667 return NULL;
1668 }
1669
1670 #if 0
1671 static int
1672 dtls1_record_needs_buffering(SSL *s, SSL3_RECORD *rr, unsigned short *priority,
1673 unsigned long *offset)
1674 {
1675
1676 /* alerts are passed up immediately */
1677 if ( rr->type == SSL3_RT_APPLICATION_DATA ||
1678 rr->type == SSL3_RT_ALERT)
1679 return 0;
1680
1681 /* Only need to buffer if a handshake is underway.
1682 * (this implies that Hello Request and Client Hello are passed up
1683 * immediately) */
1684 if ( SSL_in_init(s))
1685 {
1686 unsigned char *data = rr->data;
1687 /* need to extract the HM/CCS sequence number here */
1688 if ( rr->type == SSL3_RT_HANDSHAKE ||
1689 rr->type == SSL3_RT_CHANGE_CIPHER_SPEC)
1690 {
1691 unsigned short seq_num;
1692 struct hm_header_st msg_hdr;
1693 struct ccs_header_st ccs_hdr;
1694
1695 if ( rr->type == SSL3_RT_HANDSHAKE)
1696 {
1697 dtls1_get_message_header(data, &msg_hdr);
1698 seq_num = msg_hdr.seq;
1699 *offset = msg_hdr.frag_off;
1700 }
1701 else
1702 {
1703 dtls1_get_ccs_header(data, &ccs_hdr);
1704 seq_num = ccs_hdr.seq;
1705 *offset = 0;
1706 }
1707
1708 /* this is either a record we're waiting for, or a
1709 * retransmit of something we happened to previously
1710 * receive (higher layers will drop the repeat silently */
1711 if ( seq_num < s->d1->handshake_read_seq)
1712 return 0;
1713 if (rr->type == SSL3_RT_HANDSHAKE &&
1714 seq_num == s->d1->handshake_read_seq &&
1715 msg_hdr.frag_off < s->d1->r_msg_hdr.frag_off)
1716 return 0;
1717 else if ( seq_num == s->d1->handshake_read_seq &&
1718 (rr->type == SSL3_RT_CHANGE_CIPHER_SPEC ||
1719 msg_hdr.frag_off == s->d1->r_msg_hdr.frag_off))
1720 return 0;
1721 else
1722 {
1723 *priority = seq_num;
1724 return 1;
1725 }
1726 }
1727 else /* unknown record type */
1728 return 0;
1729 }
1730
1731 return 0;
1732 }
1733 #endif
1734
1735 void
1736 dtls1_reset_seq_numbers(SSL *s, int rw)
1737 {
1738 unsigned char *seq;
1739 unsigned int seq_bytes = sizeof(s->s3->read_sequence);
1740
1741 if ( rw & SSL3_CC_READ)
1742 {
1743 seq = s->s3->read_sequence;
1744 s->d1->r_epoch++;
1745
1746 pq_64bit_assign(&(s->d1->bitmap.map), &(s->d1->next_bitmap.map));
1747 s->d1->bitmap.length = s->d1->next_bitmap.length;
1748 pq_64bit_assign(&(s->d1->bitmap.max_seq_num),
1749 &(s->d1->next_bitmap.max_seq_num));
1750
1751 pq_64bit_free(&(s->d1->next_bitmap.map));
1752 pq_64bit_free(&(s->d1->next_bitmap.max_seq_num));
1753 memset(&(s->d1->next_bitmap), 0x00, sizeof(DTLS1_BITMAP));
1754 pq_64bit_init(&(s->d1->next_bitmap.map));
1755 pq_64bit_init(&(s->d1->next_bitmap.max_seq_num));
1756 }
1757 else
1758 {
1759 seq = s->s3->write_sequence;
1760 s->d1->w_epoch++;
1761 }
1762
1763 memset(seq, 0x00, seq_bytes);
1764 }
1765
1766 #if PQ_64BIT_IS_INTEGER
1767 static PQ_64BIT
1768 bytes_to_long_long(unsigned char *bytes, PQ_64BIT *num)
1769 {
1770 PQ_64BIT _num;
1771
1772 _num = (((PQ_64BIT)bytes[0]) << 56) |
1773 (((PQ_64BIT)bytes[1]) << 48) |
1774 (((PQ_64BIT)bytes[2]) << 40) |
1775 (((PQ_64BIT)bytes[3]) << 32) |
1776 (((PQ_64BIT)bytes[4]) << 24) |
1777 (((PQ_64BIT)bytes[5]) << 16) |
1778 (((PQ_64BIT)bytes[6]) << 8) |
1779 (((PQ_64BIT)bytes[7]) );
1780
1781 *num = _num ;
1782 return _num;
1783 }
1784 #endif
1785
1786
1787 static void
1788 dtls1_clear_timeouts(SSL *s)
1789 {
1790 memset(&(s->d1->timeout), 0x00, sizeof(struct dtls1_timeout_st));
1791 }