Server side version negotiation rewrite
[openssl.git] / ssl / record / rec_layer_d1.c
1 /* ssl/record/rec_layer_d1.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 <stdio.h>
117 #include <errno.h>
118 #define USE_SOCKETS
119 #include "../ssl_locl.h"
120 #include <openssl/evp.h>
121 #include <openssl/buffer.h>
122 #include <openssl/pqueue.h>
123 #include <openssl/rand.h>
124 #include "record_locl.h"
125
126 int DTLS_RECORD_LAYER_new(RECORD_LAYER *rl)
127 {
128     DTLS_RECORD_LAYER *d;
129     
130     if ((d = OPENSSL_malloc(sizeof(*d))) == NULL)
131         return (0);
132
133
134     rl->d = d;
135
136     d->unprocessed_rcds.q = pqueue_new();
137     d->processed_rcds.q = pqueue_new();
138     d->buffered_app_data.q = pqueue_new();
139
140     if (!d->unprocessed_rcds.q || !d->processed_rcds.q
141         || !d->buffered_app_data.q) {
142         pqueue_free(d->unprocessed_rcds.q);
143         pqueue_free(d->processed_rcds.q);
144         pqueue_free(d->buffered_app_data.q);
145         OPENSSL_free(d);
146         rl->d = NULL;
147         return (0);
148     }
149
150     return 1;
151 }
152
153 void DTLS_RECORD_LAYER_free(RECORD_LAYER *rl)
154 {
155     DTLS_RECORD_LAYER_clear(rl);
156     pqueue_free(rl->d->unprocessed_rcds.q);
157     pqueue_free(rl->d->processed_rcds.q);
158     pqueue_free(rl->d->buffered_app_data.q);
159     OPENSSL_free(rl->d);
160     rl->d = NULL;
161 }
162
163 void DTLS_RECORD_LAYER_clear(RECORD_LAYER *rl)
164 {
165     DTLS_RECORD_LAYER *d;
166     pitem *item = NULL;
167     DTLS1_RECORD_DATA *rdata;
168     pqueue unprocessed_rcds;
169     pqueue processed_rcds;
170     pqueue buffered_app_data;
171
172     d = rl->d;
173     
174     while ((item = pqueue_pop(d->unprocessed_rcds.q)) != NULL) {
175         rdata = (DTLS1_RECORD_DATA *)item->data;
176         OPENSSL_free(rdata->rbuf.buf);
177         OPENSSL_free(item->data);
178         pitem_free(item);
179     }
180
181     while ((item = pqueue_pop(d->processed_rcds.q)) != NULL) {
182         rdata = (DTLS1_RECORD_DATA *)item->data;
183         OPENSSL_free(rdata->rbuf.buf);
184         OPENSSL_free(item->data);
185         pitem_free(item);
186     }
187
188     while ((item = pqueue_pop(d->buffered_app_data.q)) != NULL) {
189         rdata = (DTLS1_RECORD_DATA *)item->data;
190         OPENSSL_free(rdata->rbuf.buf);
191         OPENSSL_free(item->data);
192         pitem_free(item);
193     }
194
195     unprocessed_rcds = d->unprocessed_rcds.q;
196     processed_rcds = d->processed_rcds.q;
197     buffered_app_data = d->buffered_app_data.q;
198     memset(d, 0, sizeof(*d));
199     d->unprocessed_rcds.q = unprocessed_rcds;
200     d->processed_rcds.q = processed_rcds;
201     d->buffered_app_data.q = buffered_app_data;
202 }
203
204 void DTLS_RECORD_LAYER_set_saved_w_epoch(RECORD_LAYER *rl, unsigned short e)
205 {
206     if (e == rl->d->w_epoch - 1) {
207         memcpy(rl->d->curr_write_sequence,
208                rl->write_sequence,
209                sizeof(rl->write_sequence));
210         memcpy(rl->write_sequence,
211                rl->d->last_write_sequence,
212                sizeof(rl->write_sequence));
213     } else if (e == rl->d->w_epoch + 1) {
214         memcpy(rl->d->last_write_sequence,
215                rl->write_sequence,
216                sizeof(unsigned char[8]));
217         memcpy(rl->write_sequence,
218                rl->d->curr_write_sequence,
219                sizeof(rl->write_sequence));
220     }
221     rl->d->w_epoch = e;
222 }
223
224 void DTLS_RECORD_LAYER_resync_write(RECORD_LAYER *rl)
225 {
226     memcpy(rl->write_sequence, rl->read_sequence, sizeof(rl->write_sequence));
227 }
228
229 static int have_handshake_fragment(SSL *s, int type, unsigned char *buf,
230                                    int len, int peek);
231
232 /* copy buffered record into SSL structure */
233 static int dtls1_copy_record(SSL *s, pitem *item)
234 {
235     DTLS1_RECORD_DATA *rdata;
236
237     rdata = (DTLS1_RECORD_DATA *)item->data;
238
239     SSL3_BUFFER_release(&s->rlayer.rbuf);
240
241     s->rlayer.packet = rdata->packet;
242     s->rlayer.packet_length = rdata->packet_length;
243     memcpy(&s->rlayer.rbuf, &(rdata->rbuf), sizeof(SSL3_BUFFER));
244     memcpy(&s->rlayer.rrec, &(rdata->rrec), sizeof(SSL3_RECORD));
245
246     /* Set proper sequence number for mac calculation */
247     memcpy(&(s->rlayer.read_sequence[2]), &(rdata->packet[5]), 6);
248
249     return (1);
250 }
251
252 int dtls1_buffer_record(SSL *s, record_pqueue *queue, unsigned char *priority)
253 {
254     DTLS1_RECORD_DATA *rdata;
255     pitem *item;
256
257     /* Limit the size of the queue to prevent DOS attacks */
258     if (pqueue_size(queue->q) >= 100)
259         return 0;
260
261     rdata = OPENSSL_malloc(sizeof(*rdata));
262     item = pitem_new(priority, rdata);
263     if (rdata == NULL || item == NULL) {
264         OPENSSL_free(rdata);
265         pitem_free(item);
266         SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
267         return -1;
268     }
269
270     rdata->packet = s->rlayer.packet;
271     rdata->packet_length = s->rlayer.packet_length;
272     memcpy(&(rdata->rbuf), &s->rlayer.rbuf, sizeof(SSL3_BUFFER));
273     memcpy(&(rdata->rrec), &s->rlayer.rrec, sizeof(SSL3_RECORD));
274
275     item->data = rdata;
276
277 #ifndef OPENSSL_NO_SCTP
278     /* Store bio_dgram_sctp_rcvinfo struct */
279     if (BIO_dgram_is_sctp(SSL_get_rbio(s)) &&
280         (s->state == SSL3_ST_SR_FINISHED_A
281          || s->state == SSL3_ST_CR_FINISHED_A)) {
282         BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SCTP_GET_RCVINFO,
283                  sizeof(rdata->recordinfo), &rdata->recordinfo);
284     }
285 #endif
286
287     s->rlayer.packet = NULL;
288     s->rlayer.packet_length = 0;
289     memset(&s->rlayer.rbuf, 0, sizeof(s->rlayer.rbuf));
290     memset(&s->rlayer.rrec, 0, sizeof(s->rlayer.rrec));
291
292     if (!ssl3_setup_buffers(s)) {
293         SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
294         OPENSSL_free(rdata->rbuf.buf);
295         OPENSSL_free(rdata);
296         pitem_free(item);
297         return (-1);
298     }
299
300     /* insert should not fail, since duplicates are dropped */
301     if (pqueue_insert(queue->q, item) == NULL) {
302         SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
303         OPENSSL_free(rdata->rbuf.buf);
304         OPENSSL_free(rdata);
305         pitem_free(item);
306         return (-1);
307     }
308
309     return (1);
310 }
311
312 int dtls1_retrieve_buffered_record(SSL *s, record_pqueue *queue)
313 {
314     pitem *item;
315
316     item = pqueue_pop(queue->q);
317     if (item) {
318         dtls1_copy_record(s, item);
319
320         OPENSSL_free(item->data);
321         pitem_free(item);
322
323         return (1);
324     }
325
326     return (0);
327 }
328
329 /*
330  * retrieve a buffered record that belongs to the new epoch, i.e., not
331  * processed yet
332  */
333 #define dtls1_get_unprocessed_record(s) \
334                    dtls1_retrieve_buffered_record((s), \
335                    &((s)->rlayer.d->unprocessed_rcds))
336
337
338 int dtls1_process_buffered_records(SSL *s)
339 {
340     pitem *item;
341
342     item = pqueue_peek(s->rlayer.d->unprocessed_rcds.q);
343     if (item) {
344         /* Check if epoch is current. */
345         if (s->rlayer.d->unprocessed_rcds.epoch != s->rlayer.d->r_epoch)
346             return (1);         /* Nothing to do. */
347
348         /* Process all the records. */
349         while (pqueue_peek(s->rlayer.d->unprocessed_rcds.q)) {
350             dtls1_get_unprocessed_record(s);
351             if (!dtls1_process_record(s))
352                 return (0);
353             if (dtls1_buffer_record(s, &(s->rlayer.d->processed_rcds),
354                 SSL3_RECORD_get_seq_num(&s->rlayer.rrec)) < 0)
355                 return -1;
356         }
357     }
358
359     /*
360      * sync epoch numbers once all the unprocessed records have been
361      * processed
362      */
363     s->rlayer.d->processed_rcds.epoch = s->rlayer.d->r_epoch;
364     s->rlayer.d->unprocessed_rcds.epoch = s->rlayer.d->r_epoch + 1;
365
366     return (1);
367 }
368
369
370 /*-
371  * Return up to 'len' payload bytes received in 'type' records.
372  * 'type' is one of the following:
373  *
374  *   -  SSL3_RT_HANDSHAKE (when ssl3_get_message calls us)
375  *   -  SSL3_RT_APPLICATION_DATA (when ssl3_read calls us)
376  *   -  0 (during a shutdown, no data has to be returned)
377  *
378  * If we don't have stored data to work from, read a SSL/TLS record first
379  * (possibly multiple records if we still don't have anything to return).
380  *
381  * This function must handle any surprises the peer may have for us, such as
382  * Alert records (e.g. close_notify), ChangeCipherSpec records (not really
383  * a surprise, but handled as if it were), or renegotiation requests.
384  * Also if record payloads contain fragments too small to process, we store
385  * them until there is enough for the respective protocol (the record protocol
386  * may use arbitrary fragmentation and even interleaving):
387  *     Change cipher spec protocol
388  *             just 1 byte needed, no need for keeping anything stored
389  *     Alert protocol
390  *             2 bytes needed (AlertLevel, AlertDescription)
391  *     Handshake protocol
392  *             4 bytes needed (HandshakeType, uint24 length) -- we just have
393  *             to detect unexpected Client Hello and Hello Request messages
394  *             here, anything else is handled by higher layers
395  *     Application data protocol
396  *             none of our business
397  */
398 int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
399 {
400     int al, i, j, ret;
401     unsigned int n;
402     SSL3_RECORD *rr;
403     void (*cb) (const SSL *ssl, int type2, int val) = NULL;
404
405     if (!SSL3_BUFFER_is_initialised(&s->rlayer.rbuf)) {
406         /* Not initialized yet */
407         if (!ssl3_setup_buffers(s))
408             return (-1);
409     }
410
411     if ((type && (type != SSL3_RT_APPLICATION_DATA) &&
412          (type != SSL3_RT_HANDSHAKE)) ||
413         (peek && (type != SSL3_RT_APPLICATION_DATA))) {
414         SSLerr(SSL_F_DTLS1_READ_BYTES, ERR_R_INTERNAL_ERROR);
415         return -1;
416     }
417
418     /*
419      * check whether there's a handshake message (client hello?) waiting
420      */
421     if ((ret = have_handshake_fragment(s, type, buf, len, peek)))
422         return ret;
423
424     /*
425      * Now s->rlayer.d->handshake_fragment_len == 0 if
426      * type == SSL3_RT_HANDSHAKE.
427      */
428
429 #ifndef OPENSSL_NO_SCTP
430     /*
431      * Continue handshake if it had to be interrupted to read app data with
432      * SCTP.
433      */
434     if ((!s->in_handshake && SSL_in_init(s)) ||
435         (BIO_dgram_is_sctp(SSL_get_rbio(s)) &&
436          (s->state == DTLS1_SCTP_ST_SR_READ_SOCK
437           || s->state == DTLS1_SCTP_ST_CR_READ_SOCK)
438          && s->s3->in_read_app_data != 2))
439 #else
440     if (!s->in_handshake && SSL_in_init(s))
441 #endif
442     {
443         /* type == SSL3_RT_APPLICATION_DATA */
444         i = s->handshake_func(s);
445         if (i < 0)
446             return (i);
447         if (i == 0) {
448             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
449             return (-1);
450         }
451     }
452
453  start:
454     s->rwstate = SSL_NOTHING;
455
456     /*-
457      * s->s3->rrec.type         - is the type of record
458      * s->s3->rrec.data,    - data
459      * s->s3->rrec.off,     - offset into 'data' for next read
460      * s->s3->rrec.length,  - number of bytes.
461      */
462     rr = &s->rlayer.rrec;
463
464     /*
465      * We are not handshaking and have no data yet, so process data buffered
466      * during the last handshake in advance, if any.
467      */
468     if (s->state == SSL_ST_OK && SSL3_RECORD_get_length(rr) == 0) {
469         pitem *item;
470         item = pqueue_pop(s->rlayer.d->buffered_app_data.q);
471         if (item) {
472 #ifndef OPENSSL_NO_SCTP
473             /* Restore bio_dgram_sctp_rcvinfo struct */
474             if (BIO_dgram_is_sctp(SSL_get_rbio(s))) {
475                 DTLS1_RECORD_DATA *rdata = (DTLS1_RECORD_DATA *)item->data;
476                 BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SCTP_SET_RCVINFO,
477                          sizeof(rdata->recordinfo), &rdata->recordinfo);
478             }
479 #endif
480
481             dtls1_copy_record(s, item);
482
483             OPENSSL_free(item->data);
484             pitem_free(item);
485         }
486     }
487
488     /* Check for timeout */
489     if (dtls1_handle_timeout(s) > 0)
490         goto start;
491
492     /* get new packet if necessary */
493     if ((SSL3_RECORD_get_length(rr) == 0)
494             || (s->rlayer.rstate == SSL_ST_READ_BODY)) {
495         ret = dtls1_get_record(s);
496         if (ret <= 0) {
497             ret = dtls1_read_failed(s, ret);
498             /* anything other than a timeout is an error */
499             if (ret <= 0)
500                 return (ret);
501             else
502                 goto start;
503         }
504     }
505
506     if (s->d1->listen && rr->type != SSL3_RT_HANDSHAKE) {
507         SSL3_RECORD_set_length(rr, 0);
508         goto start;
509     }
510
511     /* we now have a packet which can be read and processed */
512
513     if (s->s3->change_cipher_spec /* set when we receive ChangeCipherSpec,
514                                    * reset by ssl3_get_finished */
515         && (SSL3_RECORD_get_type(rr) != SSL3_RT_HANDSHAKE)) {
516         /*
517          * We now have application data between CCS and Finished. Most likely
518          * the packets were reordered on their way, so buffer the application
519          * data for later processing rather than dropping the connection.
520          */
521         if (dtls1_buffer_record(s, &(s->rlayer.d->buffered_app_data),
522             SSL3_RECORD_get_seq_num(rr)) < 0) {
523             SSLerr(SSL_F_DTLS1_READ_BYTES, ERR_R_INTERNAL_ERROR);
524             return -1;
525         }
526         SSL3_RECORD_set_length(rr, 0);
527         goto start;
528     }
529
530     /*
531      * If the other end has shut down, throw anything we read away (even in
532      * 'peek' mode)
533      */
534     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
535         SSL3_RECORD_set_length(rr, 0);
536         s->rwstate = SSL_NOTHING;
537         return (0);
538     }
539
540     if (type == SSL3_RECORD_get_type(rr)) {
541         /* SSL3_RT_APPLICATION_DATA or
542          * SSL3_RT_HANDSHAKE */
543         /*
544          * make sure that we are not getting application data when we are
545          * doing a handshake for the first time
546          */
547         if (SSL_in_init(s) && (type == SSL3_RT_APPLICATION_DATA) &&
548             (s->enc_read_ctx == NULL)) {
549             al = SSL_AD_UNEXPECTED_MESSAGE;
550             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_APP_DATA_IN_HANDSHAKE);
551             goto f_err;
552         }
553
554         if (len <= 0)
555             return (len);
556
557         if ((unsigned int)len > SSL3_RECORD_get_length(rr))
558             n = SSL3_RECORD_get_length(rr);
559         else
560             n = (unsigned int)len;
561
562         memcpy(buf, &(SSL3_RECORD_get_data(rr)[SSL3_RECORD_get_off(rr)]), n);
563         if (!peek) {
564             SSL3_RECORD_add_length(rr, -n);
565             SSL3_RECORD_add_off(rr, n);
566             if (SSL3_RECORD_get_length(rr) == 0) {
567                 s->rlayer.rstate = SSL_ST_READ_HEADER;
568                 SSL3_RECORD_set_off(rr, 0);
569             }
570         }
571 #ifndef OPENSSL_NO_SCTP
572         /*
573          * We were about to renegotiate but had to read belated application
574          * data first, so retry.
575          */
576         if (BIO_dgram_is_sctp(SSL_get_rbio(s)) &&
577             SSL3_RECORD_get_type(rr) == SSL3_RT_APPLICATION_DATA &&
578             (s->state == DTLS1_SCTP_ST_SR_READ_SOCK
579              || s->state == DTLS1_SCTP_ST_CR_READ_SOCK)) {
580             s->rwstate = SSL_READING;
581             BIO_clear_retry_flags(SSL_get_rbio(s));
582             BIO_set_retry_read(SSL_get_rbio(s));
583         }
584
585         /*
586          * We might had to delay a close_notify alert because of reordered
587          * app data. If there was an alert and there is no message to read
588          * anymore, finally set shutdown.
589          */
590         if (BIO_dgram_is_sctp(SSL_get_rbio(s)) &&
591             s->d1->shutdown_received
592             && !BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
593             s->shutdown |= SSL_RECEIVED_SHUTDOWN;
594             return (0);
595         }
596 #endif
597         return (n);
598     }
599
600     /*
601      * If we get here, then type != rr->type; if we have a handshake message,
602      * then it was unexpected (Hello Request or Client Hello).
603      */
604
605     /*
606      * In case of record types for which we have 'fragment' storage, fill
607      * that so that we can process the data at a fixed place.
608      */
609     {
610         unsigned int k, dest_maxlen = 0;
611         unsigned char *dest = NULL;
612         unsigned int *dest_len = NULL;
613
614         if (SSL3_RECORD_get_type(rr) == SSL3_RT_HANDSHAKE) {
615             dest_maxlen = sizeof s->rlayer.d->handshake_fragment;
616             dest = s->rlayer.d->handshake_fragment;
617             dest_len = &s->rlayer.d->handshake_fragment_len;
618         } else if (SSL3_RECORD_get_type(rr) == SSL3_RT_ALERT) {
619             dest_maxlen = sizeof(s->rlayer.d->alert_fragment);
620             dest = s->rlayer.d->alert_fragment;
621             dest_len = &s->rlayer.d->alert_fragment_len;
622         }
623 #ifndef OPENSSL_NO_HEARTBEATS
624         else if (SSL3_RECORD_get_type(rr) == TLS1_RT_HEARTBEAT) {
625             /* We allow a 0 return */
626             if (dtls1_process_heartbeat(s, SSL3_RECORD_get_data(rr),
627                     SSL3_RECORD_get_length(rr)) < 0) {
628                 return -1;
629             }
630             /* Exit and notify application to read again */
631             SSL3_RECORD_set_length(rr, 0);
632             s->rwstate = SSL_READING;
633             BIO_clear_retry_flags(SSL_get_rbio(s));
634             BIO_set_retry_read(SSL_get_rbio(s));
635             return (-1);
636         }
637 #endif
638         /* else it's a CCS message, or application data or wrong */
639         else if (SSL3_RECORD_get_type(rr) != SSL3_RT_CHANGE_CIPHER_SPEC) {
640             /*
641              * Application data while renegotiating is allowed. Try again
642              * reading.
643              */
644             if (SSL3_RECORD_get_type(rr)  == SSL3_RT_APPLICATION_DATA) {
645                 BIO *bio;
646                 s->s3->in_read_app_data = 2;
647                 bio = SSL_get_rbio(s);
648                 s->rwstate = SSL_READING;
649                 BIO_clear_retry_flags(bio);
650                 BIO_set_retry_read(bio);
651                 return (-1);
652             }
653
654             /* Not certain if this is the right error handling */
655             al = SSL_AD_UNEXPECTED_MESSAGE;
656             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
657             goto f_err;
658         }
659
660         if (dest_maxlen > 0) {
661             /*
662              * XDTLS: In a pathalogical case, the Client Hello may be
663              * fragmented--don't always expect dest_maxlen bytes
664              */
665             if (SSL3_RECORD_get_length(rr)  < dest_maxlen) {
666 #ifdef DTLS1_AD_MISSING_HANDSHAKE_MESSAGE
667                 /*
668                  * for normal alerts rr->length is 2, while
669                  * dest_maxlen is 7 if we were to handle this
670                  * non-existing alert...
671                  */
672                 FIX ME
673 #endif
674                 s->rlayer.rstate = SSL_ST_READ_HEADER;
675                 SSL3_RECORD_set_length(rr, 0);
676                 goto start;
677             }
678
679             /* now move 'n' bytes: */
680             for (k = 0; k < dest_maxlen; k++) {
681                 dest[k] = SSL3_RECORD_get_data(rr)[SSL3_RECORD_get_off(rr)];
682                 SSL3_RECORD_add_off(rr, 1);
683                 SSL3_RECORD_add_length(rr, -1);
684             }
685             *dest_len = dest_maxlen;
686         }
687     }
688
689     /*-
690      * s->rlayer.d->handshake_fragment_len == 12  iff  rr->type == SSL3_RT_HANDSHAKE;
691      * s->rlayer.d->alert_fragment_len == 7      iff  rr->type == SSL3_RT_ALERT.
692      * (Possibly rr is 'empty' now, i.e. rr->length may be 0.)
693      */
694
695     /* If we are a client, check for an incoming 'Hello Request': */
696     if ((!s->server) &&
697         (s->rlayer.d->handshake_fragment_len >= DTLS1_HM_HEADER_LENGTH) &&
698         (s->rlayer.d->handshake_fragment[0] == SSL3_MT_HELLO_REQUEST) &&
699         (s->session != NULL) && (s->session->cipher != NULL)) {
700         s->rlayer.d->handshake_fragment_len = 0;
701
702         if ((s->rlayer.d->handshake_fragment[1] != 0) ||
703             (s->rlayer.d->handshake_fragment[2] != 0) ||
704             (s->rlayer.d->handshake_fragment[3] != 0)) {
705             al = SSL_AD_DECODE_ERROR;
706             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_BAD_HELLO_REQUEST);
707             goto err;
708         }
709
710         /*
711          * no need to check sequence number on HELLO REQUEST messages
712          */
713
714         if (s->msg_callback)
715             s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
716                             s->rlayer.d->handshake_fragment, 4, s,
717                             s->msg_callback_arg);
718
719         if (SSL_is_init_finished(s) &&
720             !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS) &&
721             !s->s3->renegotiate) {
722             s->d1->handshake_read_seq++;
723             s->new_session = 1;
724             ssl3_renegotiate(s);
725             if (ssl3_renegotiate_check(s)) {
726                 i = s->handshake_func(s);
727                 if (i < 0)
728                     return (i);
729                 if (i == 0) {
730                     SSLerr(SSL_F_DTLS1_READ_BYTES,
731                            SSL_R_SSL_HANDSHAKE_FAILURE);
732                     return (-1);
733                 }
734
735                 if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
736                     if (SSL3_BUFFER_get_left(&s->rlayer.rbuf) == 0) {
737                         /* no read-ahead left? */
738                         BIO *bio;
739                         /*
740                          * In the case where we try to read application data,
741                          * but we trigger an SSL handshake, we return -1 with
742                          * the retry option set.  Otherwise renegotiation may
743                          * cause nasty problems in the blocking world
744                          */
745                         s->rwstate = SSL_READING;
746                         bio = SSL_get_rbio(s);
747                         BIO_clear_retry_flags(bio);
748                         BIO_set_retry_read(bio);
749                         return (-1);
750                     }
751                 }
752             }
753         }
754         /*
755          * we either finished a handshake or ignored the request, now try
756          * again to obtain the (application) data we were asked for
757          */
758         goto start;
759     }
760
761     if (s->rlayer.d->alert_fragment_len >= DTLS1_AL_HEADER_LENGTH) {
762         int alert_level = s->rlayer.d->alert_fragment[0];
763         int alert_descr = s->rlayer.d->alert_fragment[1];
764
765         s->rlayer.d->alert_fragment_len = 0;
766
767         if (s->msg_callback)
768             s->msg_callback(0, s->version, SSL3_RT_ALERT,
769                             s->rlayer.d->alert_fragment, 2, s,
770                             s->msg_callback_arg);
771
772         if (s->info_callback != NULL)
773             cb = s->info_callback;
774         else if (s->ctx->info_callback != NULL)
775             cb = s->ctx->info_callback;
776
777         if (cb != NULL) {
778             j = (alert_level << 8) | alert_descr;
779             cb(s, SSL_CB_READ_ALERT, j);
780         }
781
782         if (alert_level == SSL3_AL_WARNING) {
783             s->s3->warn_alert = alert_descr;
784             if (alert_descr == SSL_AD_CLOSE_NOTIFY) {
785 #ifndef OPENSSL_NO_SCTP
786                 /*
787                  * With SCTP and streams the socket may deliver app data
788                  * after a close_notify alert. We have to check this first so
789                  * that nothing gets discarded.
790                  */
791                 if (BIO_dgram_is_sctp(SSL_get_rbio(s)) &&
792                     BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
793                     s->d1->shutdown_received = 1;
794                     s->rwstate = SSL_READING;
795                     BIO_clear_retry_flags(SSL_get_rbio(s));
796                     BIO_set_retry_read(SSL_get_rbio(s));
797                     return -1;
798                 }
799 #endif
800                 s->shutdown |= SSL_RECEIVED_SHUTDOWN;
801                 return (0);
802             }
803 #if 0
804             /* XXX: this is a possible improvement in the future */
805             /* now check if it's a missing record */
806             if (alert_descr == DTLS1_AD_MISSING_HANDSHAKE_MESSAGE) {
807                 unsigned short seq;
808                 unsigned int frag_off;
809                 unsigned char *p = &(s->rlayer.d->alert_fragment[2]);
810
811                 n2s(p, seq);
812                 n2l3(p, frag_off);
813
814                 dtls1_retransmit_message(s,
815                                          dtls1_get_queue_priority
816                                          (frag->msg_header.seq, 0), frag_off,
817                                          &found);
818                 if (!found && SSL_in_init(s)) {
819                     /*
820                      * fprintf( stderr,"in init = %d\n", SSL_in_init(s));
821                      */
822                     /*
823                      * requested a message not yet sent, send an alert
824                      * ourselves
825                      */
826                     ssl3_send_alert(s, SSL3_AL_WARNING,
827                                     DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);
828                 }
829             }
830 #endif
831         } else if (alert_level == SSL3_AL_FATAL) {
832             char tmp[16];
833
834             s->rwstate = SSL_NOTHING;
835             s->s3->fatal_alert = alert_descr;
836             SSLerr(SSL_F_DTLS1_READ_BYTES,
837                    SSL_AD_REASON_OFFSET + alert_descr);
838             BIO_snprintf(tmp, sizeof tmp, "%d", alert_descr);
839             ERR_add_error_data(2, "SSL alert number ", tmp);
840             s->shutdown |= SSL_RECEIVED_SHUTDOWN;
841             SSL_CTX_remove_session(s->ctx, s->session);
842             return (0);
843         } else {
844             al = SSL_AD_ILLEGAL_PARAMETER;
845             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_UNKNOWN_ALERT_TYPE);
846             goto f_err;
847         }
848
849         goto start;
850     }
851
852     if (s->shutdown & SSL_SENT_SHUTDOWN) { /* but we have not received a
853                                             * shutdown */
854         s->rwstate = SSL_NOTHING;
855         SSL3_RECORD_set_length(rr, 0);
856         return (0);
857     }
858
859     if (SSL3_RECORD_get_type(rr) == SSL3_RT_CHANGE_CIPHER_SPEC) {
860         struct ccs_header_st ccs_hdr;
861         unsigned int ccs_hdr_len = DTLS1_CCS_HEADER_LENGTH;
862
863         dtls1_get_ccs_header(SSL3_RECORD_get_data(rr), &ccs_hdr);
864
865         if (s->version == DTLS1_BAD_VER)
866             ccs_hdr_len = 3;
867
868         /*
869          * 'Change Cipher Spec' is just a single byte, so we know exactly
870          * what the record payload has to look like
871          */
872         /* XDTLS: check that epoch is consistent */
873         if ((SSL3_RECORD_get_length(rr) != ccs_hdr_len)
874                 || (SSL3_RECORD_get_off(rr) != 0)
875                 || (SSL3_RECORD_get_data(rr)[0] != SSL3_MT_CCS)) {
876             i = SSL_AD_ILLEGAL_PARAMETER;
877             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_BAD_CHANGE_CIPHER_SPEC);
878             goto err;
879         }
880
881         SSL3_RECORD_set_length(rr, 0);
882
883         if (s->msg_callback)
884             s->msg_callback(0, s->version, SSL3_RT_CHANGE_CIPHER_SPEC,
885                 SSL3_RECORD_get_data(rr), 1, s, s->msg_callback_arg);
886
887         /*
888          * We can't process a CCS now, because previous handshake messages
889          * are still missing, so just drop it.
890          */
891         if (!s->d1->change_cipher_spec_ok) {
892             goto start;
893         }
894
895         s->d1->change_cipher_spec_ok = 0;
896
897         s->s3->change_cipher_spec = 1;
898         if (!ssl3_do_change_cipher_spec(s))
899             goto err;
900
901         /* do this whenever CCS is processed */
902         dtls1_reset_seq_numbers(s, SSL3_CC_READ);
903
904         if (s->version == DTLS1_BAD_VER)
905             s->d1->handshake_read_seq++;
906
907 #ifndef OPENSSL_NO_SCTP
908         /*
909          * Remember that a CCS has been received, so that an old key of
910          * SCTP-Auth can be deleted when a CCS is sent. Will be ignored if no
911          * SCTP is used
912          */
913         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD, 1, NULL);
914 #endif
915
916         goto start;
917     }
918
919     /*
920      * Unexpected handshake message (Client Hello, or protocol violation)
921      */
922     if ((s->rlayer.d->handshake_fragment_len >= DTLS1_HM_HEADER_LENGTH) &&
923         !s->in_handshake) {
924         struct hm_header_st msg_hdr;
925
926         /* this may just be a stale retransmit */
927         dtls1_get_message_header(rr->data, &msg_hdr);
928         if (SSL3_RECORD_get_epoch(rr) != s->rlayer.d->r_epoch) {
929             SSL3_RECORD_set_length(rr, 0);
930             goto start;
931         }
932
933         /*
934          * If we are server, we may have a repeated FINISHED of the client
935          * here, then retransmit our CCS and FINISHED.
936          */
937         if (msg_hdr.type == SSL3_MT_FINISHED) {
938             if (dtls1_check_timeout_num(s) < 0)
939                 return -1;
940
941             dtls1_retransmit_buffered_messages(s);
942             SSL3_RECORD_set_length(rr, 0);
943             goto start;
944         }
945
946         if (((s->state & SSL_ST_MASK) == SSL_ST_OK) &&
947             !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS)) {
948             s->state = s->server ? SSL_ST_ACCEPT : SSL_ST_CONNECT;
949             s->renegotiate = 1;
950             s->new_session = 1;
951         }
952         i = s->handshake_func(s);
953         if (i < 0)
954             return (i);
955         if (i == 0) {
956             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
957             return (-1);
958         }
959
960         if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
961             if (SSL3_BUFFER_get_left(&s->rlayer.rbuf) == 0) {
962                 /* no read-ahead left? */
963                 BIO *bio;
964                 /*
965                  * In the case where we try to read application data, but we
966                  * trigger an SSL handshake, we return -1 with the retry
967                  * option set.  Otherwise renegotiation may cause nasty
968                  * problems in the blocking world
969                  */
970                 s->rwstate = SSL_READING;
971                 bio = SSL_get_rbio(s);
972                 BIO_clear_retry_flags(bio);
973                 BIO_set_retry_read(bio);
974                 return (-1);
975             }
976         }
977         goto start;
978     }
979
980     switch (SSL3_RECORD_get_type(rr)) {
981     default:
982         /* TLS just ignores unknown message types */
983         if (s->version == TLS1_VERSION) {
984             SSL3_RECORD_set_length(rr, 0);
985             goto start;
986         }
987         al = SSL_AD_UNEXPECTED_MESSAGE;
988         SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
989         goto f_err;
990     case SSL3_RT_CHANGE_CIPHER_SPEC:
991     case SSL3_RT_ALERT:
992     case SSL3_RT_HANDSHAKE:
993         /*
994          * we already handled all of these, with the possible exception of
995          * SSL3_RT_HANDSHAKE when s->in_handshake is set, but that should not
996          * happen when type != rr->type
997          */
998         al = SSL_AD_UNEXPECTED_MESSAGE;
999         SSLerr(SSL_F_DTLS1_READ_BYTES, ERR_R_INTERNAL_ERROR);
1000         goto f_err;
1001     case SSL3_RT_APPLICATION_DATA:
1002         /*
1003          * At this point, we were expecting handshake data, but have
1004          * application data.  If the library was running inside ssl3_read()
1005          * (i.e. in_read_app_data is set) and it makes sense to read
1006          * application data at this point (session renegotiation not yet
1007          * started), we will indulge it.
1008          */
1009         if (s->s3->in_read_app_data &&
1010             (s->s3->total_renegotiations != 0) &&
1011             (((s->state & SSL_ST_CONNECT) &&
1012               (s->state >= SSL3_ST_CW_CLNT_HELLO_A) &&
1013               (s->state <= SSL3_ST_CR_SRVR_HELLO_A)
1014              ) || ((s->state & SSL_ST_ACCEPT) &&
1015                    (s->state <= SSL3_ST_SW_HELLO_REQ_A) &&
1016                    (s->state >= SSL3_ST_SR_CLNT_HELLO_A)
1017              )
1018             )) {
1019             s->s3->in_read_app_data = 2;
1020             return (-1);
1021         } else {
1022             al = SSL_AD_UNEXPECTED_MESSAGE;
1023             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
1024             goto f_err;
1025         }
1026     }
1027     /* not reached */
1028
1029  f_err:
1030     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1031  err:
1032     return (-1);
1033 }
1034
1035
1036         /*
1037          * this only happens when a client hello is received and a handshake
1038          * is started.
1039          */
1040 static int have_handshake_fragment(SSL *s, int type, unsigned char *buf,
1041                                    int len, int peek)
1042 {
1043
1044     if ((type == SSL3_RT_HANDSHAKE)
1045             && (s->rlayer.d->handshake_fragment_len > 0))
1046         /* (partially) satisfy request from storage */
1047     {
1048         unsigned char *src = s->rlayer.d->handshake_fragment;
1049         unsigned char *dst = buf;
1050         unsigned int k, n;
1051
1052         /* peek == 0 */
1053         n = 0;
1054         while ((len > 0) && (s->rlayer.d->handshake_fragment_len > 0)) {
1055             *dst++ = *src++;
1056             len--;
1057             s->rlayer.d->handshake_fragment_len--;
1058             n++;
1059         }
1060         /* move any remaining fragment bytes: */
1061         for (k = 0; k < s->rlayer.d->handshake_fragment_len; k++)
1062             s->rlayer.d->handshake_fragment[k] = *src++;
1063         return n;
1064     }
1065
1066     return 0;
1067 }
1068
1069 /*
1070  * Call this to write data in records of type 'type' It will return <= 0 if
1071  * not all data has been sent or non-blocking IO.
1072  */
1073 int dtls1_write_bytes(SSL *s, int type, const void *buf, int len)
1074 {
1075     int i;
1076
1077     OPENSSL_assert(len <= SSL3_RT_MAX_PLAIN_LENGTH);
1078     s->rwstate = SSL_NOTHING;
1079     i = do_dtls1_write(s, type, buf, len, 0);
1080     return i;
1081 }
1082
1083 int do_dtls1_write(SSL *s, int type, const unsigned char *buf,
1084                    unsigned int len, int create_empty_fragment)
1085 {
1086     unsigned char *p, *pseq;
1087     int i, mac_size, clear = 0;
1088     int prefix_len = 0;
1089     int eivlen;
1090     SSL3_RECORD *wr;
1091     SSL3_BUFFER *wb;
1092     SSL_SESSION *sess;
1093
1094     wb = &s->rlayer.wbuf;
1095
1096     /*
1097      * first check if there is a SSL3_BUFFER still being written out.  This
1098      * will happen with non blocking IO
1099      */
1100     if (SSL3_BUFFER_get_left(wb) != 0) {
1101         OPENSSL_assert(0);      /* XDTLS: want to see if we ever get here */
1102         return (ssl3_write_pending(s, type, buf, len));
1103     }
1104
1105     /* If we have an alert to send, lets send it */
1106     if (s->s3->alert_dispatch) {
1107         i = s->method->ssl_dispatch_alert(s);
1108         if (i <= 0)
1109             return (i);
1110         /* if it went, fall through and send more stuff */
1111     }
1112
1113     if (len == 0 && !create_empty_fragment)
1114         return 0;
1115
1116     wr = &s->rlayer.wrec;
1117     sess = s->session;
1118
1119     if ((sess == NULL) ||
1120         (s->enc_write_ctx == NULL) || (EVP_MD_CTX_md(s->write_hash) == NULL))
1121         clear = 1;
1122
1123     if (clear)
1124         mac_size = 0;
1125     else {
1126         mac_size = EVP_MD_CTX_size(s->write_hash);
1127         if (mac_size < 0)
1128             goto err;
1129     }
1130
1131     p = SSL3_BUFFER_get_buf(wb) + prefix_len;
1132
1133     /* write the header */
1134
1135     *(p++) = type & 0xff;
1136     SSL3_RECORD_set_type(wr, type);
1137     /*
1138      * Special case: for hello verify request, client version 1.0 and we
1139      * haven't decided which version to use yet send back using version 1.0
1140      * header: otherwise some clients will ignore it.
1141      */
1142     if (s->method->version == DTLS_ANY_VERSION) {
1143         *(p++) = DTLS1_VERSION >> 8;
1144         *(p++) = DTLS1_VERSION & 0xff;
1145     } else {
1146         *(p++) = s->version >> 8;
1147         *(p++) = s->version & 0xff;
1148     }
1149
1150     /* field where we are to write out packet epoch, seq num and len */
1151     pseq = p;
1152     p += 10;
1153
1154     /* Explicit IV length, block ciphers appropriate version flag */
1155     if (s->enc_write_ctx) {
1156         int mode = EVP_CIPHER_CTX_mode(s->enc_write_ctx);
1157         if (mode == EVP_CIPH_CBC_MODE) {
1158             eivlen = EVP_CIPHER_CTX_iv_length(s->enc_write_ctx);
1159             if (eivlen <= 1)
1160                 eivlen = 0;
1161         }
1162         /* Need explicit part of IV for GCM mode */
1163         else if (mode == EVP_CIPH_GCM_MODE)
1164             eivlen = EVP_GCM_TLS_EXPLICIT_IV_LEN;
1165         else
1166             eivlen = 0;
1167     } else
1168         eivlen = 0;
1169
1170     /* lets setup the record stuff. */
1171     SSL3_RECORD_set_data(wr, p + eivlen); /* make room for IV in case of CBC */
1172     SSL3_RECORD_set_length(wr, (int)len);
1173     SSL3_RECORD_set_input(wr, (unsigned char *)buf);
1174
1175     /*
1176      * we now 'read' from wr->input, wr->length bytes into wr->data
1177      */
1178
1179     /* first we compress */
1180     if (s->compress != NULL) {
1181         if (!ssl3_do_compress(s)) {
1182             SSLerr(SSL_F_DO_DTLS1_WRITE, SSL_R_COMPRESSION_FAILURE);
1183             goto err;
1184         }
1185     } else {
1186         memcpy(SSL3_RECORD_get_data(wr), SSL3_RECORD_get_input(wr),
1187                SSL3_RECORD_get_length(wr));
1188         SSL3_RECORD_reset_input(wr);
1189     }
1190
1191     /*
1192      * we should still have the output to wr->data and the input from
1193      * wr->input.  Length should be wr->length. wr->data still points in the
1194      * wb->buf
1195      */
1196
1197     if (mac_size != 0) {
1198         if (s->method->ssl3_enc->mac(s,
1199                 &(p[SSL3_RECORD_get_length(wr) + eivlen]), 1) < 0)
1200             goto err;
1201         SSL3_RECORD_add_length(wr, mac_size);
1202     }
1203
1204     /* this is true regardless of mac size */
1205     SSL3_RECORD_set_data(wr, p);
1206     SSL3_RECORD_reset_input(wr);
1207
1208     if (eivlen)
1209         SSL3_RECORD_add_length(wr, eivlen);
1210
1211     if (s->method->ssl3_enc->enc(s, 1) < 1)
1212         goto err;
1213
1214     /* record length after mac and block padding */
1215     /*
1216      * if (type == SSL3_RT_APPLICATION_DATA || (type == SSL3_RT_ALERT && !
1217      * SSL_in_init(s)))
1218      */
1219
1220     /* there's only one epoch between handshake and app data */
1221
1222     s2n(s->rlayer.d->w_epoch, pseq);
1223
1224     /* XDTLS: ?? */
1225     /*
1226      * else s2n(s->d1->handshake_epoch, pseq);
1227      */
1228
1229     memcpy(pseq, &(s->rlayer.write_sequence[2]), 6);
1230     pseq += 6;
1231     s2n(SSL3_RECORD_get_length(wr), pseq);
1232
1233     if (s->msg_callback)
1234         s->msg_callback(1, 0, SSL3_RT_HEADER, pseq - DTLS1_RT_HEADER_LENGTH,
1235                         DTLS1_RT_HEADER_LENGTH, s, s->msg_callback_arg);
1236
1237     /*
1238      * we should now have wr->data pointing to the encrypted data, which is
1239      * wr->length long
1240      */
1241     SSL3_RECORD_set_type(wr, type); /* not needed but helps for debugging */
1242     SSL3_RECORD_add_length(wr, DTLS1_RT_HEADER_LENGTH);
1243
1244     ssl3_record_sequence_update(&(s->rlayer.write_sequence[0]));
1245
1246     if (create_empty_fragment) {
1247         /*
1248          * we are in a recursive call; just return the length, don't write
1249          * out anything here
1250          */
1251         return wr->length;
1252     }
1253
1254     /* now let's set up wb */
1255     SSL3_BUFFER_set_left(wb, prefix_len + SSL3_RECORD_get_length(wr));
1256     SSL3_BUFFER_set_offset(wb, 0);
1257
1258     /*
1259      * memorize arguments so that ssl3_write_pending can detect bad write
1260      * retries later
1261      */
1262     s->rlayer.wpend_tot = len;
1263     s->rlayer.wpend_buf = buf;
1264     s->rlayer.wpend_type = type;
1265     s->rlayer.wpend_ret = len;
1266
1267     /* we now just need to write the buffer */
1268     return ssl3_write_pending(s, type, buf, len);
1269  err:
1270     return -1;
1271 }
1272
1273 DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr,
1274                                       unsigned int *is_next_epoch)
1275 {
1276
1277     *is_next_epoch = 0;
1278
1279     /* In current epoch, accept HM, CCS, DATA, & ALERT */
1280     if (rr->epoch == s->rlayer.d->r_epoch)
1281         return &s->rlayer.d->bitmap;
1282
1283     /* Only HM and ALERT messages can be from the next epoch */
1284     else if (rr->epoch == (unsigned long)(s->rlayer.d->r_epoch + 1) &&
1285             (rr->type == SSL3_RT_HANDSHAKE || rr->type == SSL3_RT_ALERT)) {
1286         *is_next_epoch = 1;
1287         return &s->rlayer.d->next_bitmap;
1288     }
1289
1290     return NULL;
1291 }
1292
1293 void dtls1_reset_seq_numbers(SSL *s, int rw)
1294 {
1295     unsigned char *seq;
1296     unsigned int seq_bytes = sizeof(s->rlayer.read_sequence);
1297
1298     if (rw & SSL3_CC_READ) {
1299         seq = s->rlayer.read_sequence;
1300         s->rlayer.d->r_epoch++;
1301         memcpy(&s->rlayer.d->bitmap, &s->rlayer.d->next_bitmap,
1302                sizeof(s->rlayer.d->bitmap));
1303         memset(&s->rlayer.d->next_bitmap, 0,
1304                sizeof(s->rlayer.d->next_bitmap));
1305     } else {
1306         seq = s->rlayer.write_sequence;
1307         memcpy(s->rlayer.d->last_write_sequence, seq,
1308                sizeof(s->rlayer.write_sequence));
1309         s->rlayer.d->w_epoch++;
1310     }
1311
1312     memset(seq, 0, seq_bytes);
1313 }