8b360d63825f284c2b0b7c0cd07feb346fa000f1
[openssl.git] / ssl / record / s3_pkt.c
1 /* ssl/s3_pkt.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer.
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112 #include <stdio.h>
113 #include <limits.h>
114 #include <errno.h>
115 #define USE_SOCKETS
116 #include "../ssl_locl.h"
117 #include <openssl/evp.h>
118 #include <openssl/buffer.h>
119 #include <openssl/rand.h>
120
121 #ifndef  EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
122 # define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0
123 #endif
124
125 #if     defined(OPENSSL_SMALL_FOOTPRINT) || \
126         !(      defined(AES_ASM) &&     ( \
127                 defined(__x86_64)       || defined(__x86_64__)  || \
128                 defined(_M_AMD64)       || defined(_M_X64)      || \
129                 defined(__INTEL__)      ) \
130         )
131 # undef EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
132 # define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0
133 #endif
134
135 void RECORD_LAYER_init(RECORD_LAYER *rl, SSL *s)
136 {
137     rl->s = s;
138     SSL3_RECORD_clear(&rl->rrec);
139     SSL3_RECORD_clear(&rl->wrec);
140 }
141
142 void RECORD_LAYER_clear(RECORD_LAYER *rl)
143 {
144     unsigned char *rp, *wp;
145     size_t rlen, wlen;
146     int read_ahead;
147     SSL *s;
148
149     s = rl->s;
150     read_ahead = rl->read_ahead;
151     rp = SSL3_BUFFER_get_buf(&rl->rbuf);
152     rlen = SSL3_BUFFER_get_len(&rl->rbuf);
153     wp = SSL3_BUFFER_get_buf(&rl->wbuf);
154     wlen = SSL3_BUFFER_get_len(&rl->wbuf);
155     memset(rl, 0, sizeof (RECORD_LAYER));
156     SSL3_BUFFER_set_buf(&rl->rbuf, rp);
157     SSL3_BUFFER_set_len(&rl->rbuf, rlen);
158     SSL3_BUFFER_set_buf(&rl->wbuf, wp);
159     SSL3_BUFFER_set_len(&rl->wbuf, wlen);
160
161     /* Do I need to do this? As far as I can tell read_ahead did not
162      * previously get reset by SSL_clear...so I'll keep it that way..but is
163      * that right?
164      */
165     rl->read_ahead = read_ahead;
166     rl->s = s;
167 }
168
169 void RECORD_LAYER_release(RECORD_LAYER *rl)
170 {
171     if (SSL3_BUFFER_is_initialised(&rl->rbuf))
172         ssl3_release_read_buffer(rl->s);
173     if (SSL3_BUFFER_is_initialised(&rl->wbuf))
174         ssl3_release_write_buffer(rl->s);
175     SSL3_RECORD_release(&rl->rrec);
176 }
177
178 int RECORD_LAYER_read_pending(RECORD_LAYER *rl)
179 {
180     return SSL3_BUFFER_get_left(&rl->rbuf) != 0;
181 }
182
183 int RECORD_LAYER_write_pending(RECORD_LAYER *rl)
184 {
185     return SSL3_BUFFER_get_left(&rl->wbuf) != 0;
186 }
187
188 int RECORD_LAYER_set_data(RECORD_LAYER *rl, const unsigned char *buf, int len)
189 {
190     rl->s->packet_length = len;
191     if(len != 0) {
192         rl->s->rstate = SSL_ST_READ_HEADER;
193         if (!SSL3_BUFFER_is_initialised(&rl->rbuf))
194             if (!ssl3_setup_read_buffer(rl->s))
195                 return 0;
196     }
197
198     rl->s->packet = SSL3_BUFFER_get_buf(&rl->rbuf);
199     SSL3_BUFFER_set_data(&rl->rbuf, buf, len);
200
201     return 1;
202 }
203
204 int ssl3_pending(const SSL *s)
205 {
206     if (s->rstate == SSL_ST_READ_BODY)
207         return 0;
208
209     return (SSL3_RECORD_get_type(&s->rlayer.rrec) == SSL3_RT_APPLICATION_DATA)
210            ? SSL3_RECORD_get_length(&s->rlayer.rrec) : 0;
211 }
212
213 int ssl3_read_n(SSL *s, int n, int max, int extend)
214 {
215     /*
216      * If extend == 0, obtain new n-byte packet; if extend == 1, increase
217      * packet by another n bytes. The packet will be in the sub-array of
218      * s->s3->rbuf.buf specified by s->packet and s->packet_length. (If
219      * s->rlayer.read_ahead is set, 'max' bytes may be stored in rbuf [plus
220      * s->packet_length bytes if extend == 1].)
221      */
222     int i, len, left;
223     long align = 0;
224     unsigned char *pkt;
225     SSL3_BUFFER *rb;
226
227     if (n <= 0)
228         return n;
229
230     rb = &s->rlayer.rbuf;
231     if (rb->buf == NULL)
232         if (!ssl3_setup_read_buffer(s))
233             return -1;
234
235     left = rb->left;
236 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
237     align = (long)rb->buf + SSL3_RT_HEADER_LENGTH;
238     align = (-align) & (SSL3_ALIGN_PAYLOAD - 1);
239 #endif
240
241     if (!extend) {
242         /* start with empty packet ... */
243         if (left == 0)
244             rb->offset = align;
245         else if (align != 0 && left >= SSL3_RT_HEADER_LENGTH) {
246             /*
247              * check if next packet length is large enough to justify payload
248              * alignment...
249              */
250             pkt = rb->buf + rb->offset;
251             if (pkt[0] == SSL3_RT_APPLICATION_DATA
252                 && (pkt[3] << 8 | pkt[4]) >= 128) {
253                 /*
254                  * Note that even if packet is corrupted and its length field
255                  * is insane, we can only be led to wrong decision about
256                  * whether memmove will occur or not. Header values has no
257                  * effect on memmove arguments and therefore no buffer
258                  * overrun can be triggered.
259                  */
260                 memmove(rb->buf + align, pkt, left);
261                 rb->offset = align;
262             }
263         }
264         s->packet = rb->buf + rb->offset;
265         s->packet_length = 0;
266         /* ... now we can act as if 'extend' was set */
267     }
268
269     /*
270      * For DTLS/UDP reads should not span multiple packets because the read
271      * operation returns the whole packet at once (as long as it fits into
272      * the buffer).
273      */
274     if (SSL_IS_DTLS(s)) {
275         if (left == 0 && extend)
276             return 0;
277         if (left > 0 && n > left)
278             n = left;
279     }
280
281     /* if there is enough in the buffer from a previous read, take some */
282     if (left >= n) {
283         s->packet_length += n;
284         rb->left = left - n;
285         rb->offset += n;
286         return (n);
287     }
288
289     /* else we need to read more data */
290
291     len = s->packet_length;
292     pkt = rb->buf + align;
293     /*
294      * Move any available bytes to front of buffer: 'len' bytes already
295      * pointed to by 'packet', 'left' extra ones at the end
296      */
297     if (s->packet != pkt) {     /* len > 0 */
298         memmove(pkt, s->packet, len + left);
299         s->packet = pkt;
300         rb->offset = len + align;
301     }
302
303     if (n > (int)(rb->len - rb->offset)) { /* does not happen */
304         SSLerr(SSL_F_SSL3_READ_N, ERR_R_INTERNAL_ERROR);
305         return -1;
306     }
307
308     /* We always act like read_ahead is set for DTLS */
309     if (!RECORD_LAYER_get_read_ahead(&s->rlayer) && !SSL_IS_DTLS(s))
310         /* ignore max parameter */
311         max = n;
312     else {
313         if (max < n)
314             max = n;
315         if (max > (int)(rb->len - rb->offset))
316             max = rb->len - rb->offset;
317     }
318
319     while (left < n) {
320         /*
321          * Now we have len+left bytes at the front of s->s3->rbuf.buf and
322          * need to read in more until we have len+n (up to len+max if
323          * possible)
324          */
325
326         clear_sys_error();
327         if (s->rbio != NULL) {
328             s->rwstate = SSL_READING;
329             i = BIO_read(s->rbio, pkt + len + left, max - left);
330         } else {
331             SSLerr(SSL_F_SSL3_READ_N, SSL_R_READ_BIO_NOT_SET);
332             i = -1;
333         }
334
335         if (i <= 0) {
336             rb->left = left;
337             if (s->mode & SSL_MODE_RELEASE_BUFFERS && !SSL_IS_DTLS(s))
338                 if (len + left == 0)
339                     ssl3_release_read_buffer(s);
340             return (i);
341         }
342         left += i;
343         /*
344          * reads should *never* span multiple packets for DTLS because the
345          * underlying transport protocol is message oriented as opposed to
346          * byte oriented as in the TLS case.
347          */
348         if (SSL_IS_DTLS(s)) {
349             if (n > left)
350                 n = left;       /* makes the while condition false */
351         }
352     }
353
354     /* done reading, now the book-keeping */
355     rb->offset += n;
356     rb->left = left - n;
357     s->packet_length += n;
358     s->rwstate = SSL_NOTHING;
359     return (n);
360 }
361
362
363 /*
364  * Call this to write data in records of type 'type' It will return <= 0 if
365  * not all data has been sent or non-blocking IO.
366  */
367 int ssl3_write_bytes(SSL *s, int type, const void *buf_, int len)
368 {
369     const unsigned char *buf = buf_;
370     int tot;
371     unsigned int n, nw;
372 #if !defined(OPENSSL_NO_MULTIBLOCK) && EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
373     unsigned int max_send_fragment;
374 #endif
375     SSL3_BUFFER *wb = &s->rlayer.wbuf;
376     int i;
377     unsigned int u_len = (unsigned int)len;
378
379     if (len < 0) {
380         SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_SSL_NEGATIVE_LENGTH);
381         return -1;
382     }
383
384     s->rwstate = SSL_NOTHING;
385     OPENSSL_assert(s->s3->wnum <= INT_MAX);
386     tot = s->s3->wnum;
387     s->s3->wnum = 0;
388
389     if (SSL_in_init(s) && !s->in_handshake) {
390         i = s->handshake_func(s);
391         if (i < 0)
392             return (i);
393         if (i == 0) {
394             SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
395             return -1;
396         }
397     }
398
399     /*
400      * ensure that if we end up with a smaller value of data to write out
401      * than the the original len from a write which didn't complete for
402      * non-blocking I/O and also somehow ended up avoiding the check for
403      * this in ssl3_write_pending/SSL_R_BAD_WRITE_RETRY as it must never be
404      * possible to end up with (len-tot) as a large number that will then
405      * promptly send beyond the end of the users buffer ... so we trap and
406      * report the error in a way the user will notice
407      */
408     if (len < tot) {
409         SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_BAD_LENGTH);
410         return (-1);
411     }
412
413     /*
414      * first check if there is a SSL3_BUFFER still being written out.  This
415      * will happen with non blocking IO
416      */
417     if (wb->left != 0) {
418         i = ssl3_write_pending(s, type, &buf[tot], s->s3->wpend_tot);
419         if (i <= 0) {
420             /* XXX should we ssl3_release_write_buffer if i<0? */
421             s->s3->wnum = tot;
422             return i;
423         }
424         tot += i;               /* this might be last fragment */
425     }
426 #if !defined(OPENSSL_NO_MULTIBLOCK) && EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
427     /*
428      * Depending on platform multi-block can deliver several *times*
429      * better performance. Downside is that it has to allocate
430      * jumbo buffer to accomodate up to 8 records, but the
431      * compromise is considered worthy.
432      */
433     if (type == SSL3_RT_APPLICATION_DATA &&
434         u_len >= 4 * (max_send_fragment = s->max_send_fragment) &&
435         s->compress == NULL && s->msg_callback == NULL &&
436         !SSL_USE_ETM(s) && SSL_USE_EXPLICIT_IV(s) &&
437         EVP_CIPHER_flags(s->enc_write_ctx->cipher) &
438         EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK) {
439         unsigned char aad[13];
440         EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM mb_param;
441         int packlen;
442
443         /* minimize address aliasing conflicts */
444         if ((max_send_fragment & 0xfff) == 0)
445             max_send_fragment -= 512;
446
447         if (tot == 0 || wb->buf == NULL) { /* allocate jumbo buffer */
448             ssl3_release_write_buffer(s);
449
450             packlen = EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
451                                           EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE,
452                                           max_send_fragment, NULL);
453
454             if (u_len >= 8 * max_send_fragment)
455                 packlen *= 8;
456             else
457                 packlen *= 4;
458
459             wb->buf = OPENSSL_malloc(packlen);
460             if(!wb->buf) {
461                 SSLerr(SSL_F_SSL3_WRITE_BYTES, ERR_R_MALLOC_FAILURE);
462                 return -1;
463             }
464             wb->len = packlen;
465         } else if (tot == len) { /* done? */
466             OPENSSL_free(wb->buf); /* free jumbo buffer */
467             wb->buf = NULL;
468             return tot;
469         }
470
471         n = (len - tot);
472         for (;;) {
473             if (n < 4 * max_send_fragment) {
474                 OPENSSL_free(wb->buf); /* free jumbo buffer */
475                 wb->buf = NULL;
476                 break;
477             }
478
479             if (s->s3->alert_dispatch) {
480                 i = s->method->ssl_dispatch_alert(s);
481                 if (i <= 0) {
482                     s->s3->wnum = tot;
483                     return i;
484                 }
485             }
486
487             if (n >= 8 * max_send_fragment)
488                 nw = max_send_fragment * (mb_param.interleave = 8);
489             else
490                 nw = max_send_fragment * (mb_param.interleave = 4);
491
492             memcpy(aad, s->s3->write_sequence, 8);
493             aad[8] = type;
494             aad[9] = (unsigned char)(s->version >> 8);
495             aad[10] = (unsigned char)(s->version);
496             aad[11] = 0;
497             aad[12] = 0;
498             mb_param.out = NULL;
499             mb_param.inp = aad;
500             mb_param.len = nw;
501
502             packlen = EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
503                                           EVP_CTRL_TLS1_1_MULTIBLOCK_AAD,
504                                           sizeof(mb_param), &mb_param);
505
506             if (packlen <= 0 || packlen > (int)wb->len) { /* never happens */
507                 OPENSSL_free(wb->buf); /* free jumbo buffer */
508                 wb->buf = NULL;
509                 break;
510             }
511
512             mb_param.out = wb->buf;
513             mb_param.inp = &buf[tot];
514             mb_param.len = nw;
515
516             if (EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
517                                     EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT,
518                                     sizeof(mb_param), &mb_param) <= 0)
519                 return -1;
520
521             s->s3->write_sequence[7] += mb_param.interleave;
522             if (s->s3->write_sequence[7] < mb_param.interleave) {
523                 int j = 6;
524                 while (j >= 0 && (++s->s3->write_sequence[j--]) == 0) ;
525             }
526
527             wb->offset = 0;
528             wb->left = packlen;
529
530             s->s3->wpend_tot = nw;
531             s->s3->wpend_buf = &buf[tot];
532             s->s3->wpend_type = type;
533             s->s3->wpend_ret = nw;
534
535             i = ssl3_write_pending(s, type, &buf[tot], nw);
536             if (i <= 0) {
537                 if (i < 0 && (!s->wbio || !BIO_should_retry(s->wbio))) {
538                     OPENSSL_free(wb->buf);
539                     wb->buf = NULL;
540                 }
541                 s->s3->wnum = tot;
542                 return i;
543             }
544             if (i == (int)n) {
545                 OPENSSL_free(wb->buf); /* free jumbo buffer */
546                 wb->buf = NULL;
547                 return tot + i;
548             }
549             n -= i;
550             tot += i;
551         }
552     } else
553 #endif
554     if (tot == len) {           /* done? */
555         if (s->mode & SSL_MODE_RELEASE_BUFFERS && !SSL_IS_DTLS(s))
556             ssl3_release_write_buffer(s);
557
558         return tot;
559     }
560
561     n = (len - tot);
562     for (;;) {
563         if (n > s->max_send_fragment)
564             nw = s->max_send_fragment;
565         else
566             nw = n;
567
568         i = do_ssl3_write(s, type, &(buf[tot]), nw, 0);
569         if (i <= 0) {
570             /* XXX should we ssl3_release_write_buffer if i<0? */
571             s->s3->wnum = tot;
572             return i;
573         }
574
575         if ((i == (int)n) ||
576             (type == SSL3_RT_APPLICATION_DATA &&
577              (s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE))) {
578             /*
579              * next chunk of data should get another prepended empty fragment
580              * in ciphersuites with known-IV weakness:
581              */
582             s->s3->empty_fragment_done = 0;
583
584             if ((i == (int)n) && s->mode & SSL_MODE_RELEASE_BUFFERS &&
585                 !SSL_IS_DTLS(s))
586                 ssl3_release_write_buffer(s);
587
588             return tot + i;
589         }
590
591         n -= i;
592         tot += i;
593     }
594 }
595
596 int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
597                   unsigned int len, int create_empty_fragment)
598 {
599     unsigned char *p, *plen;
600     int i, mac_size, clear = 0;
601     int prefix_len = 0;
602     int eivlen;
603     long align = 0;
604     SSL3_RECORD *wr;
605     SSL3_BUFFER *wb = &s->rlayer.wbuf;
606     SSL_SESSION *sess;
607
608     /*
609      * first check if there is a SSL3_BUFFER still being written out.  This
610      * will happen with non blocking IO
611      */
612     if (wb->left != 0)
613         return (ssl3_write_pending(s, type, buf, len));
614
615     /* If we have an alert to send, lets send it */
616     if (s->s3->alert_dispatch) {
617         i = s->method->ssl_dispatch_alert(s);
618         if (i <= 0)
619             return (i);
620         /* if it went, fall through and send more stuff */
621     }
622
623     if (wb->buf == NULL)
624         if (!ssl3_setup_write_buffer(s))
625             return -1;
626
627     if (len == 0 && !create_empty_fragment)
628         return 0;
629
630     wr = &s->rlayer.wrec;
631     sess = s->session;
632
633     if ((sess == NULL) ||
634         (s->enc_write_ctx == NULL) ||
635         (EVP_MD_CTX_md(s->write_hash) == NULL)) {
636         clear = s->enc_write_ctx ? 0 : 1; /* must be AEAD cipher */
637         mac_size = 0;
638     } else {
639         mac_size = EVP_MD_CTX_size(s->write_hash);
640         if (mac_size < 0)
641             goto err;
642     }
643
644     /*
645      * 'create_empty_fragment' is true only when this function calls itself
646      */
647     if (!clear && !create_empty_fragment && !s->s3->empty_fragment_done) {
648         /*
649          * countermeasure against known-IV weakness in CBC ciphersuites (see
650          * http://www.openssl.org/~bodo/tls-cbc.txt)
651          */
652
653         if (s->s3->need_empty_fragments && type == SSL3_RT_APPLICATION_DATA) {
654             /*
655              * recursive function call with 'create_empty_fragment' set; this
656              * prepares and buffers the data for an empty fragment (these
657              * 'prefix_len' bytes are sent out later together with the actual
658              * payload)
659              */
660             prefix_len = do_ssl3_write(s, type, buf, 0, 1);
661             if (prefix_len <= 0)
662                 goto err;
663
664             if (prefix_len >
665                 (SSL3_RT_HEADER_LENGTH + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD))
666             {
667                 /* insufficient space */
668                 SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
669                 goto err;
670             }
671         }
672
673         s->s3->empty_fragment_done = 1;
674     }
675
676     if (create_empty_fragment) {
677 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
678         /*
679          * extra fragment would be couple of cipher blocks, which would be
680          * multiple of SSL3_ALIGN_PAYLOAD, so if we want to align the real
681          * payload, then we can just pretent we simply have two headers.
682          */
683         align = (long)wb->buf + 2 * SSL3_RT_HEADER_LENGTH;
684         align = (-align) & (SSL3_ALIGN_PAYLOAD - 1);
685 #endif
686         p = wb->buf + align;
687         wb->offset = align;
688     } else if (prefix_len) {
689         p = wb->buf + wb->offset + prefix_len;
690     } else {
691 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
692         align = (long)wb->buf + SSL3_RT_HEADER_LENGTH;
693         align = (-align) & (SSL3_ALIGN_PAYLOAD - 1);
694 #endif
695         p = wb->buf + align;
696         wb->offset = align;
697     }
698
699     /* write the header */
700
701     *(p++) = type & 0xff;
702     wr->type = type;
703
704     *(p++) = (s->version >> 8);
705     /*
706      * Some servers hang if iniatial client hello is larger than 256 bytes
707      * and record version number > TLS 1.0
708      */
709     if (s->state == SSL3_ST_CW_CLNT_HELLO_B
710         && !s->renegotiate && TLS1_get_version(s) > TLS1_VERSION)
711         *(p++) = 0x1;
712     else
713         *(p++) = s->version & 0xff;
714
715     /* field where we are to write out packet length */
716     plen = p;
717     p += 2;
718     /* Explicit IV length, block ciphers appropriate version flag */
719     if (s->enc_write_ctx && SSL_USE_EXPLICIT_IV(s)) {
720         int mode = EVP_CIPHER_CTX_mode(s->enc_write_ctx);
721         if (mode == EVP_CIPH_CBC_MODE) {
722             eivlen = EVP_CIPHER_CTX_iv_length(s->enc_write_ctx);
723             if (eivlen <= 1)
724                 eivlen = 0;
725         }
726         /* Need explicit part of IV for GCM mode */
727         else if (mode == EVP_CIPH_GCM_MODE)
728             eivlen = EVP_GCM_TLS_EXPLICIT_IV_LEN;
729         else
730             eivlen = 0;
731     } else
732         eivlen = 0;
733
734     /* lets setup the record stuff. */
735     wr->data = p + eivlen;
736     wr->length = (int)len;
737     wr->input = (unsigned char *)buf;
738
739     /*
740      * we now 'read' from wr->input, wr->length bytes into wr->data
741      */
742
743     /* first we compress */
744     if (s->compress != NULL) {
745         if (!ssl3_do_compress(s)) {
746             SSLerr(SSL_F_DO_SSL3_WRITE, SSL_R_COMPRESSION_FAILURE);
747             goto err;
748         }
749     } else {
750         memcpy(wr->data, wr->input, wr->length);
751         wr->input = wr->data;
752     }
753
754     /*
755      * we should still have the output to wr->data and the input from
756      * wr->input.  Length should be wr->length. wr->data still points in the
757      * wb->buf
758      */
759
760     if (!SSL_USE_ETM(s) && mac_size != 0) {
761         if (s->method->ssl3_enc->mac(s, &(p[wr->length + eivlen]), 1) < 0)
762             goto err;
763         wr->length += mac_size;
764     }
765
766     wr->input = p;
767     wr->data = p;
768
769     if (eivlen) {
770         /*
771          * if (RAND_pseudo_bytes(p, eivlen) <= 0) goto err;
772          */
773         wr->length += eivlen;
774     }
775
776     if (s->method->ssl3_enc->enc(s, 1) < 1)
777         goto err;
778
779     if (SSL_USE_ETM(s) && mac_size != 0) {
780         if (s->method->ssl3_enc->mac(s, p + wr->length, 1) < 0)
781             goto err;
782         wr->length += mac_size;
783     }
784
785     /* record length after mac and block padding */
786     s2n(wr->length, plen);
787
788     if (s->msg_callback)
789         s->msg_callback(1, 0, SSL3_RT_HEADER, plen - 5, 5, s,
790                         s->msg_callback_arg);
791
792     /*
793      * we should now have wr->data pointing to the encrypted data, which is
794      * wr->length long
795      */
796     wr->type = type;            /* not needed but helps for debugging */
797     wr->length += SSL3_RT_HEADER_LENGTH;
798
799     if (create_empty_fragment) {
800         /*
801          * we are in a recursive call; just return the length, don't write
802          * out anything here
803          */
804         return wr->length;
805     }
806
807     /* now let's set up wb */
808     wb->left = prefix_len + wr->length;
809
810     /*
811      * memorize arguments so that ssl3_write_pending can detect bad write
812      * retries later
813      */
814     s->s3->wpend_tot = len;
815     s->s3->wpend_buf = buf;
816     s->s3->wpend_type = type;
817     s->s3->wpend_ret = len;
818
819     /* we now just need to write the buffer */
820     return ssl3_write_pending(s, type, buf, len);
821  err:
822     return -1;
823 }
824
825 /* if s->s3->wbuf.left != 0, we need to call this */
826 int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
827                        unsigned int len)
828 {
829     int i;
830     SSL3_BUFFER *wb = &s->rlayer.wbuf;
831
832 /* XXXX */
833     if ((s->s3->wpend_tot > (int)len)
834         || ((s->s3->wpend_buf != buf) &&
835             !(s->mode & SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER))
836         || (s->s3->wpend_type != type)) {
837         SSLerr(SSL_F_SSL3_WRITE_PENDING, SSL_R_BAD_WRITE_RETRY);
838         return (-1);
839     }
840
841     for (;;) {
842         clear_sys_error();
843         if (s->wbio != NULL) {
844             s->rwstate = SSL_WRITING;
845             i = BIO_write(s->wbio,
846                           (char *)&(wb->buf[wb->offset]),
847                           (unsigned int)wb->left);
848         } else {
849             SSLerr(SSL_F_SSL3_WRITE_PENDING, SSL_R_BIO_NOT_SET);
850             i = -1;
851         }
852         if (i == wb->left) {
853             wb->left = 0;
854             wb->offset += i;
855             s->rwstate = SSL_NOTHING;
856             return (s->s3->wpend_ret);
857         } else if (i <= 0) {
858             if (s->version == DTLS1_VERSION || s->version == DTLS1_BAD_VER) {
859                 /*
860                  * For DTLS, just drop it. That's kind of the whole point in
861                  * using a datagram service
862                  */
863                 wb->left = 0;
864             }
865             return (i);
866         }
867         wb->offset += i;
868         wb->left -= i;
869     }
870 }
871
872 /*-
873  * Return up to 'len' payload bytes received in 'type' records.
874  * 'type' is one of the following:
875  *
876  *   -  SSL3_RT_HANDSHAKE (when ssl3_get_message calls us)
877  *   -  SSL3_RT_APPLICATION_DATA (when ssl3_read calls us)
878  *   -  0 (during a shutdown, no data has to be returned)
879  *
880  * If we don't have stored data to work from, read a SSL/TLS record first
881  * (possibly multiple records if we still don't have anything to return).
882  *
883  * This function must handle any surprises the peer may have for us, such as
884  * Alert records (e.g. close_notify), ChangeCipherSpec records (not really
885  * a surprise, but handled as if it were), or renegotiation requests.
886  * Also if record payloads contain fragments too small to process, we store
887  * them until there is enough for the respective protocol (the record protocol
888  * may use arbitrary fragmentation and even interleaving):
889  *     Change cipher spec protocol
890  *             just 1 byte needed, no need for keeping anything stored
891  *     Alert protocol
892  *             2 bytes needed (AlertLevel, AlertDescription)
893  *     Handshake protocol
894  *             4 bytes needed (HandshakeType, uint24 length) -- we just have
895  *             to detect unexpected Client Hello and Hello Request messages
896  *             here, anything else is handled by higher layers
897  *     Application data protocol
898  *             none of our business
899  */
900 int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
901 {
902     int al, i, j, ret;
903     unsigned int n;
904     SSL3_RECORD *rr;
905     void (*cb) (const SSL *ssl, int type2, int val) = NULL;
906
907     if (!SSL3_BUFFER_is_initialised(&s->rlayer.rbuf)) {
908         /* Not initialized yet */
909         if (!ssl3_setup_read_buffer(s))
910             return (-1);
911     }
912
913     if ((type && (type != SSL3_RT_APPLICATION_DATA)
914          && (type != SSL3_RT_HANDSHAKE)) || (peek
915                                              && (type !=
916                                                  SSL3_RT_APPLICATION_DATA))) {
917         SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
918         return -1;
919     }
920
921     if ((type == SSL3_RT_HANDSHAKE) && (s->s3->handshake_fragment_len > 0))
922         /* (partially) satisfy request from storage */
923     {
924         unsigned char *src = s->s3->handshake_fragment;
925         unsigned char *dst = buf;
926         unsigned int k;
927
928         /* peek == 0 */
929         n = 0;
930         while ((len > 0) && (s->s3->handshake_fragment_len > 0)) {
931             *dst++ = *src++;
932             len--;
933             s->s3->handshake_fragment_len--;
934             n++;
935         }
936         /* move any remaining fragment bytes: */
937         for (k = 0; k < s->s3->handshake_fragment_len; k++)
938             s->s3->handshake_fragment[k] = *src++;
939         return n;
940     }
941
942     /*
943      * Now s->s3->handshake_fragment_len == 0 if type == SSL3_RT_HANDSHAKE.
944      */
945
946     if (!s->in_handshake && SSL_in_init(s)) {
947         /* type == SSL3_RT_APPLICATION_DATA */
948         i = s->handshake_func(s);
949         if (i < 0)
950             return (i);
951         if (i == 0) {
952             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
953             return (-1);
954         }
955     }
956  start:
957     s->rwstate = SSL_NOTHING;
958
959     /*-
960      * s->s3->rrec.type         - is the type of record
961      * s->s3->rrec.data,    - data
962      * s->s3->rrec.off,     - offset into 'data' for next read
963      * s->s3->rrec.length,  - number of bytes.
964      */
965     rr = &s->rlayer.rrec;
966
967     /* get new packet if necessary */
968     if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY)) {
969         ret = ssl3_get_record(s);
970         if (ret <= 0)
971             return (ret);
972     }
973
974     /* we now have a packet which can be read and processed */
975
976     if (s->s3->change_cipher_spec /* set when we receive ChangeCipherSpec,
977                                    * reset by ssl3_get_finished */
978         && (rr->type != SSL3_RT_HANDSHAKE)) {
979         al = SSL_AD_UNEXPECTED_MESSAGE;
980         SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_DATA_BETWEEN_CCS_AND_FINISHED);
981         goto f_err;
982     }
983
984     /*
985      * If the other end has shut down, throw anything we read away (even in
986      * 'peek' mode)
987      */
988     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
989         rr->length = 0;
990         s->rwstate = SSL_NOTHING;
991         return (0);
992     }
993
994     if (type == rr->type) {     /* SSL3_RT_APPLICATION_DATA or
995                                  * SSL3_RT_HANDSHAKE */
996         /*
997          * make sure that we are not getting application data when we are
998          * doing a handshake for the first time
999          */
1000         if (SSL_in_init(s) && (type == SSL3_RT_APPLICATION_DATA) &&
1001             (s->enc_read_ctx == NULL)) {
1002             al = SSL_AD_UNEXPECTED_MESSAGE;
1003             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_APP_DATA_IN_HANDSHAKE);
1004             goto f_err;
1005         }
1006
1007         if (len <= 0)
1008             return (len);
1009
1010         if ((unsigned int)len > rr->length)
1011             n = rr->length;
1012         else
1013             n = (unsigned int)len;
1014
1015         memcpy(buf, &(rr->data[rr->off]), n);
1016         if (!peek) {
1017             rr->length -= n;
1018             rr->off += n;
1019             if (rr->length == 0) {
1020                 s->rstate = SSL_ST_READ_HEADER;
1021                 rr->off = 0;
1022                 if (s->mode & SSL_MODE_RELEASE_BUFFERS
1023                     && SSL3_BUFFER_get_left(&s->rlayer.rbuf) == 0)
1024                     ssl3_release_read_buffer(s);
1025             }
1026         }
1027         return (n);
1028     }
1029
1030     /*
1031      * If we get here, then type != rr->type; if we have a handshake message,
1032      * then it was unexpected (Hello Request or Client Hello).
1033      */
1034
1035     /*
1036      * In case of record types for which we have 'fragment' storage, fill
1037      * that so that we can process the data at a fixed place.
1038      */
1039     {
1040         unsigned int dest_maxlen = 0;
1041         unsigned char *dest = NULL;
1042         unsigned int *dest_len = NULL;
1043
1044         if (rr->type == SSL3_RT_HANDSHAKE) {
1045             dest_maxlen = sizeof s->s3->handshake_fragment;
1046             dest = s->s3->handshake_fragment;
1047             dest_len = &s->s3->handshake_fragment_len;
1048         } else if (rr->type == SSL3_RT_ALERT) {
1049             dest_maxlen = sizeof s->s3->alert_fragment;
1050             dest = s->s3->alert_fragment;
1051             dest_len = &s->s3->alert_fragment_len;
1052         }
1053 #ifndef OPENSSL_NO_HEARTBEATS
1054         else if (rr->type == TLS1_RT_HEARTBEAT) {
1055             /* We can ignore 0 return values */
1056             if(tls1_process_heartbeat(s, SSL3_RECORD_get_data(&s->rlayer.rrec),
1057                     SSL3_RECORD_get_length(&s->rlayer.rrec)) < 0) {
1058                 return -1;
1059             }
1060
1061             /* Exit and notify application to read again */
1062             rr->length = 0;
1063             s->rwstate = SSL_READING;
1064             BIO_clear_retry_flags(SSL_get_rbio(s));
1065             BIO_set_retry_read(SSL_get_rbio(s));
1066             return (-1);
1067         }
1068 #endif
1069
1070         if (dest_maxlen > 0) {
1071             n = dest_maxlen - *dest_len; /* available space in 'dest' */
1072             if (rr->length < n)
1073                 n = rr->length; /* available bytes */
1074
1075             /* now move 'n' bytes: */
1076             while (n-- > 0) {
1077                 dest[(*dest_len)++] = rr->data[rr->off++];
1078                 rr->length--;
1079             }
1080
1081             if (*dest_len < dest_maxlen)
1082                 goto start;     /* fragment was too small */
1083         }
1084     }
1085
1086     /*-
1087      * s->s3->handshake_fragment_len == 4  iff  rr->type == SSL3_RT_HANDSHAKE;
1088      * s->s3->alert_fragment_len == 2      iff  rr->type == SSL3_RT_ALERT.
1089      * (Possibly rr is 'empty' now, i.e. rr->length may be 0.)
1090      */
1091
1092     /* If we are a client, check for an incoming 'Hello Request': */
1093     if ((!s->server) &&
1094         (s->s3->handshake_fragment_len >= 4) &&
1095         (s->s3->handshake_fragment[0] == SSL3_MT_HELLO_REQUEST) &&
1096         (s->session != NULL) && (s->session->cipher != NULL)) {
1097         s->s3->handshake_fragment_len = 0;
1098
1099         if ((s->s3->handshake_fragment[1] != 0) ||
1100             (s->s3->handshake_fragment[2] != 0) ||
1101             (s->s3->handshake_fragment[3] != 0)) {
1102             al = SSL_AD_DECODE_ERROR;
1103             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_BAD_HELLO_REQUEST);
1104             goto f_err;
1105         }
1106
1107         if (s->msg_callback)
1108             s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
1109                             s->s3->handshake_fragment, 4, s,
1110                             s->msg_callback_arg);
1111
1112         if (SSL_is_init_finished(s) &&
1113             !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS) &&
1114             !s->s3->renegotiate) {
1115             ssl3_renegotiate(s);
1116             if (ssl3_renegotiate_check(s)) {
1117                 i = s->handshake_func(s);
1118                 if (i < 0)
1119                     return (i);
1120                 if (i == 0) {
1121                     SSLerr(SSL_F_SSL3_READ_BYTES,
1122                            SSL_R_SSL_HANDSHAKE_FAILURE);
1123                     return (-1);
1124                 }
1125
1126                 if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
1127                     if (SSL3_BUFFER_get_left(&s->rlayer.rbuf) == 0) {
1128                         /* no read-ahead left? */
1129                         BIO *bio;
1130                         /*
1131                          * In the case where we try to read application data,
1132                          * but we trigger an SSL handshake, we return -1 with
1133                          * the retry option set.  Otherwise renegotiation may
1134                          * cause nasty problems in the blocking world
1135                          */
1136                         s->rwstate = SSL_READING;
1137                         bio = SSL_get_rbio(s);
1138                         BIO_clear_retry_flags(bio);
1139                         BIO_set_retry_read(bio);
1140                         return (-1);
1141                     }
1142                 }
1143             }
1144         }
1145         /*
1146          * we either finished a handshake or ignored the request, now try
1147          * again to obtain the (application) data we were asked for
1148          */
1149         goto start;
1150     }
1151     /*
1152      * If we are a server and get a client hello when renegotiation isn't
1153      * allowed send back a no renegotiation alert and carry on. WARNING:
1154      * experimental code, needs reviewing (steve)
1155      */
1156     if (s->server &&
1157         SSL_is_init_finished(s) &&
1158         !s->s3->send_connection_binding &&
1159         (s->version > SSL3_VERSION) &&
1160         (s->s3->handshake_fragment_len >= 4) &&
1161         (s->s3->handshake_fragment[0] == SSL3_MT_CLIENT_HELLO) &&
1162         (s->session != NULL) && (s->session->cipher != NULL) &&
1163         !(s->ctx->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
1164         /*
1165          * s->s3->handshake_fragment_len = 0;
1166          */
1167         rr->length = 0;
1168         ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
1169         goto start;
1170     }
1171     if (s->s3->alert_fragment_len >= 2) {
1172         int alert_level = s->s3->alert_fragment[0];
1173         int alert_descr = s->s3->alert_fragment[1];
1174
1175         s->s3->alert_fragment_len = 0;
1176
1177         if (s->msg_callback)
1178             s->msg_callback(0, s->version, SSL3_RT_ALERT,
1179                             s->s3->alert_fragment, 2, s, s->msg_callback_arg);
1180
1181         if (s->info_callback != NULL)
1182             cb = s->info_callback;
1183         else if (s->ctx->info_callback != NULL)
1184             cb = s->ctx->info_callback;
1185
1186         if (cb != NULL) {
1187             j = (alert_level << 8) | alert_descr;
1188             cb(s, SSL_CB_READ_ALERT, j);
1189         }
1190
1191         if (alert_level == SSL3_AL_WARNING) {
1192             s->s3->warn_alert = alert_descr;
1193             if (alert_descr == SSL_AD_CLOSE_NOTIFY) {
1194                 s->shutdown |= SSL_RECEIVED_SHUTDOWN;
1195                 return (0);
1196             }
1197             /*
1198              * This is a warning but we receive it if we requested
1199              * renegotiation and the peer denied it. Terminate with a fatal
1200              * alert because if application tried to renegotiatie it
1201              * presumably had a good reason and expects it to succeed. In
1202              * future we might have a renegotiation where we don't care if
1203              * the peer refused it where we carry on.
1204              */
1205             else if (alert_descr == SSL_AD_NO_RENEGOTIATION) {
1206                 al = SSL_AD_HANDSHAKE_FAILURE;
1207                 SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_NO_RENEGOTIATION);
1208                 goto f_err;
1209             }
1210 #ifdef SSL_AD_MISSING_SRP_USERNAME
1211             else if (alert_descr == SSL_AD_MISSING_SRP_USERNAME)
1212                 return (0);
1213 #endif
1214         } else if (alert_level == SSL3_AL_FATAL) {
1215             char tmp[16];
1216
1217             s->rwstate = SSL_NOTHING;
1218             s->s3->fatal_alert = alert_descr;
1219             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_AD_REASON_OFFSET + alert_descr);
1220             BIO_snprintf(tmp, sizeof tmp, "%d", alert_descr);
1221             ERR_add_error_data(2, "SSL alert number ", tmp);
1222             s->shutdown |= SSL_RECEIVED_SHUTDOWN;
1223             SSL_CTX_remove_session(s->ctx, s->session);
1224             return (0);
1225         } else {
1226             al = SSL_AD_ILLEGAL_PARAMETER;
1227             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNKNOWN_ALERT_TYPE);
1228             goto f_err;
1229         }
1230
1231         goto start;
1232     }
1233
1234     if (s->shutdown & SSL_SENT_SHUTDOWN) { /* but we have not received a
1235                                             * shutdown */
1236         s->rwstate = SSL_NOTHING;
1237         rr->length = 0;
1238         return (0);
1239     }
1240
1241     if (rr->type == SSL3_RT_CHANGE_CIPHER_SPEC) {
1242         /*
1243          * 'Change Cipher Spec' is just a single byte, so we know exactly
1244          * what the record payload has to look like
1245          */
1246         if ((rr->length != 1) || (rr->off != 0) ||
1247             (rr->data[0] != SSL3_MT_CCS)) {
1248             al = SSL_AD_ILLEGAL_PARAMETER;
1249             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_BAD_CHANGE_CIPHER_SPEC);
1250             goto f_err;
1251         }
1252
1253         /* Check we have a cipher to change to */
1254         if (s->s3->tmp.new_cipher == NULL) {
1255             al = SSL_AD_UNEXPECTED_MESSAGE;
1256             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_CCS_RECEIVED_EARLY);
1257             goto f_err;
1258         }
1259
1260         if (!(s->s3->flags & SSL3_FLAGS_CCS_OK)) {
1261             al = SSL_AD_UNEXPECTED_MESSAGE;
1262             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_CCS_RECEIVED_EARLY);
1263             goto f_err;
1264         }
1265
1266         s->s3->flags &= ~SSL3_FLAGS_CCS_OK;
1267
1268         rr->length = 0;
1269
1270         if (s->msg_callback)
1271             s->msg_callback(0, s->version, SSL3_RT_CHANGE_CIPHER_SPEC,
1272                             rr->data, 1, s, s->msg_callback_arg);
1273
1274         s->s3->change_cipher_spec = 1;
1275         if (!ssl3_do_change_cipher_spec(s))
1276             goto err;
1277         else
1278             goto start;
1279     }
1280
1281     /*
1282      * Unexpected handshake message (Client Hello, or protocol violation)
1283      */
1284     if ((s->s3->handshake_fragment_len >= 4) && !s->in_handshake) {
1285         if (((s->state & SSL_ST_MASK) == SSL_ST_OK) &&
1286             !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS)) {
1287             s->state = s->server ? SSL_ST_ACCEPT : SSL_ST_CONNECT;
1288             s->renegotiate = 1;
1289             s->new_session = 1;
1290         }
1291         i = s->handshake_func(s);
1292         if (i < 0)
1293             return (i);
1294         if (i == 0) {
1295             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
1296             return (-1);
1297         }
1298
1299         if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
1300             if (SSL3_BUFFER_get_left(&s->rlayer.rbuf) == 0) {
1301                 /* no read-ahead left? */
1302                 BIO *bio;
1303                 /*
1304                  * In the case where we try to read application data, but we
1305                  * trigger an SSL handshake, we return -1 with the retry
1306                  * option set.  Otherwise renegotiation may cause nasty
1307                  * problems in the blocking world
1308                  */
1309                 s->rwstate = SSL_READING;
1310                 bio = SSL_get_rbio(s);
1311                 BIO_clear_retry_flags(bio);
1312                 BIO_set_retry_read(bio);
1313                 return (-1);
1314             }
1315         }
1316         goto start;
1317     }
1318
1319     switch (rr->type) {
1320     default:
1321         /*
1322          * TLS up to v1.1 just ignores unknown message types: TLS v1.2 give
1323          * an unexpected message alert.
1324          */
1325         if (s->version >= TLS1_VERSION && s->version <= TLS1_1_VERSION) {
1326             rr->length = 0;
1327             goto start;
1328         }
1329         al = SSL_AD_UNEXPECTED_MESSAGE;
1330         SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
1331         goto f_err;
1332     case SSL3_RT_CHANGE_CIPHER_SPEC:
1333     case SSL3_RT_ALERT:
1334     case SSL3_RT_HANDSHAKE:
1335         /*
1336          * we already handled all of these, with the possible exception of
1337          * SSL3_RT_HANDSHAKE when s->in_handshake is set, but that should not
1338          * happen when type != rr->type
1339          */
1340         al = SSL_AD_UNEXPECTED_MESSAGE;
1341         SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
1342         goto f_err;
1343     case SSL3_RT_APPLICATION_DATA:
1344         /*
1345          * At this point, we were expecting handshake data, but have
1346          * application data.  If the library was running inside ssl3_read()
1347          * (i.e. in_read_app_data is set) and it makes sense to read
1348          * application data at this point (session renegotiation not yet
1349          * started), we will indulge it.
1350          */
1351         if (s->s3->in_read_app_data &&
1352             (s->s3->total_renegotiations != 0) &&
1353             (((s->state & SSL_ST_CONNECT) &&
1354               (s->state >= SSL3_ST_CW_CLNT_HELLO_A) &&
1355               (s->state <= SSL3_ST_CR_SRVR_HELLO_A)
1356              ) || ((s->state & SSL_ST_ACCEPT) &&
1357                    (s->state <= SSL3_ST_SW_HELLO_REQ_A) &&
1358                    (s->state >= SSL3_ST_SR_CLNT_HELLO_A)
1359              )
1360             )) {
1361             s->s3->in_read_app_data = 2;
1362             return (-1);
1363         } else {
1364             al = SSL_AD_UNEXPECTED_MESSAGE;
1365             SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
1366             goto f_err;
1367         }
1368     }
1369     /* not reached */
1370
1371  f_err:
1372     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1373  err:
1374     return (-1);
1375 }
1376
1377