2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
62 #include <openssl/evp.h>
63 #include <openssl/buffer.h>
66 static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
68 static int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
70 static int ssl3_get_record(SSL *s);
71 static int do_compress(SSL *ssl);
72 static int do_uncompress(SSL *ssl);
73 static int do_change_cipher_spec(SSL *ssl);
74 static int ssl3_read_n(SSL *s, int n, int max, int extend)
78 /* if there is stuff still in the buffer from a previous read,
79 * and there is more than we want, take some. */
80 if (s->s3->rbuf.left >= (int)n)
86 s->packet= &(s->s3->rbuf.buf[s->s3->rbuf.offset]);
90 s->s3->rbuf.offset+=n;
94 /* else we need to read more data */
95 if (!s->read_ahead) max=n;
96 if (max > SSL3_RT_MAX_PACKET_SIZE)
97 max=SSL3_RT_MAX_PACKET_SIZE;
99 /* First check if there is some left or we want to extend */
101 if ( (s->s3->rbuf.left != 0) ||
102 ((s->packet_length != 0) && extend))
104 newb=s->s3->rbuf.left;
107 /* Copy bytes back to the front of the buffer
108 * Take the bytes already pointed to by 'packet'
109 * and take the extra ones on the end. */
110 off=s->packet_length;
111 if (s->packet != s->s3->rbuf.buf)
112 memcpy(s->s3->rbuf.buf,s->packet,newb+off);
114 else if (s->s3->rbuf.offset != 0)
115 { /* so the data is not at the start of the buffer */
116 memcpy(s->s3->rbuf.buf,
117 &(s->s3->rbuf.buf[s->s3->rbuf.offset]),newb);
118 s->s3->rbuf.offset=0;
126 /* So we now have 'newb' bytes at the front of
127 * s->s3->rbuf.buf and need to read some more in on the end
128 * We start reading into the buffer at 's->s3->rbuf.offset'
130 s->packet=s->s3->rbuf.buf;
137 s->rwstate=SSL_READING;
139 (char *)&(s->s3->rbuf.buf[off+newb]),
144 SSLerr(SSL_F_SSL3_READ_N,SSL_R_READ_BIO_NOT_SET);
150 s->s3->rbuf.left+=newb;
156 /* record used data read */
159 s->s3->rbuf.offset=n+off;
160 s->s3->rbuf.left=newb-n;
164 s->s3->rbuf.offset=0;
175 /* Call this to get a new input record.
176 * It will return <= 0 if more data is needed, normally due to an error
177 * or non-blocking IO.
178 * When it finishes, one packet has been decoded and can be found in
179 * ssl->s3->rrec.type - is the type of record
180 * ssl->s3->rrec.data, - data
181 * ssl->s3->rrec.length, - number of bytes
183 static int ssl3_get_record(SSL *s)
185 int ssl_major,ssl_minor,al;
191 unsigned char md[EVP_MAX_MD_SIZE];
193 unsigned int mac_size;
200 if (s->options & SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER)
201 extra=SSL3_RT_MAX_EXTRA;
206 /* check if we have the header */
207 if ( (s->rstate != SSL_ST_READ_BODY) ||
208 (s->packet_length < SSL3_RT_HEADER_LENGTH))
210 n=ssl3_read_n(s,SSL3_RT_HEADER_LENGTH,
211 SSL3_RT_MAX_PACKET_SIZE,0);
212 if (n <= 0) return(n); /* error or non-blocking */
213 s->rstate=SSL_ST_READ_BODY;
217 /* Pull apart the header into the SSL3_RECORD */
221 version=(ssl_major<<8)|ssl_minor;
224 /* Lets check version */
231 if (version != s->version)
233 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_WRONG_VERSION_NUMBER);
234 /* Send back error using their
235 * version number :-) */
237 al=SSL_AD_PROTOCOL_VERSION;
242 if ((version>>8) != SSL3_VERSION_MAJOR)
244 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_WRONG_VERSION_NUMBER);
249 (unsigned int)SSL3_RT_MAX_ENCRYPTED_LENGTH+extra)
251 al=SSL_AD_RECORD_OVERFLOW;
252 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_PACKET_LENGTH_TOO_LONG);
256 s->rstate=SSL_ST_READ_BODY;
259 /* get and decode the data */
260 if (s->rstate == SSL_ST_READ_BODY)
262 if (rr->length > (s->packet_length-SSL3_RT_HEADER_LENGTH))
265 /*-(s->packet_length-SSL3_RT_HEADER_LENGTH); */
266 n=ssl3_read_n(s,i,i,1);
267 if (n <= 0) return(n); /* error or non-blocking io */
269 s->rstate=SSL_ST_READ_HEADER;
272 /* At this point, we have the data in s->packet and there should be
273 * s->packet_length bytes, we must not 'overrun' this buffer :-)
274 * One of the following functions will copy the data from the
275 * s->packet buffer */
277 rr->input= &(s->packet[SSL3_RT_HEADER_LENGTH]);
279 /* ok, we can now read from 's->packet' data into 'rr'
280 * rr->input points at rr->length bytes, which
281 * need to be copied into rr->data by either
282 * the decryption or by the decompression
283 * When the data is 'copied' into the rr->data buffer,
284 * rr->input will be pointed at the new buffer */
286 /* Set the state for the following operations */
287 s->rstate=SSL_ST_READ_HEADER;
289 /* We now have - encrypted [ MAC [ compressed [ plain ] ] ]
290 * rr->length bytes of encrypted compressed stuff. */
292 /* check is not needed I belive */
293 if (rr->length > (unsigned int)SSL3_RT_MAX_ENCRYPTED_LENGTH+extra)
295 al=SSL_AD_RECORD_OVERFLOW;
296 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
300 /* decrypt in place in 'rr->input' */
303 if (!s->method->ssl3_enc->enc(s,0))
305 al=SSL_AD_DECRYPT_ERROR;
309 printf("dec %d\n",rr->length);
310 { unsigned int z; for (z=0; z<rr->length; z++) printf("%02X%c",rr->data[z],((z+1)%16)?' ':'\n'); }
313 /* r->length is now the compressed data plus mac */
314 if ( (sess == NULL) ||
315 (s->enc_read_ctx == NULL) ||
316 (s->read_hash == NULL))
321 mac_size=EVP_MD_size(s->read_hash);
323 if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH+extra+mac_size)
325 al=SSL_AD_RECORD_OVERFLOW;
326 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_PRE_MAC_LENGTH_TOO_LONG);
329 /* check MAC for rr->input' */
330 if (rr->length < mac_size)
332 al=SSL_AD_DECODE_ERROR;
333 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_LENGTH_TOO_SHORT);
336 rr->length-=mac_size;
337 i=s->method->ssl3_enc->mac(s,md,0);
338 if (memcmp(md,&(rr->data[rr->length]),mac_size) != 0)
340 al=SSL_AD_BAD_RECORD_MAC;
341 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_BAD_MAC_DECODE);
347 /* r->length is now just compressed */
348 if (s->expand != NULL)
351 (unsigned int)SSL3_RT_MAX_COMPRESSED_LENGTH+extra)
353 al=SSL_AD_RECORD_OVERFLOW;
354 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_COMPRESSED_LENGTH_TOO_LONG);
357 if (!do_uncompress(s))
359 al=SSL_AD_DECOMPRESSION_FAILURE;
360 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_BAD_DECOMPRESSION);
365 if (rr->length > (unsigned int)SSL3_RT_MAX_PLAIN_LENGTH+extra)
367 al=SSL_AD_RECORD_OVERFLOW;
368 SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_DATA_LENGTH_TOO_LONG);
373 /* So at this point the following is true
374 * ssl->s3->rrec.type is the type of record
375 * ssl->s3->rrec.length == number of bytes in record
376 * ssl->s3->rrec.off == offset to first valid byte
377 * ssl->s3->rrec.data == where to take bytes from, increment
381 /* we have pulled in a full packet so zero things */
384 /* just read a 0 length packet */
385 if (rr->length == 0) goto again;
389 ssl3_send_alert(s,SSL3_AL_FATAL,al);
394 static int do_uncompress(SSL *ssl)
399 rr= &(ssl->s3->rrec);
400 i=COMP_expand_block(ssl->expand,rr->comp,
401 SSL3_RT_MAX_PLAIN_LENGTH,rr->data,(int)rr->length);
411 static int do_compress(SSL *ssl)
416 wr= &(ssl->s3->wrec);
417 i=COMP_compress_block(ssl->compress,wr->data,
418 SSL3_RT_MAX_COMPRESSED_LENGTH,
419 wr->input,(int)wr->length);
429 /* Call this to write data
430 * It will return <= 0 if not all data has been sent or non-blocking IO.
432 int ssl3_write_bytes(SSL *s, int type, const void *_buf, int len)
434 const unsigned char *buf=_buf;
435 unsigned int tot,n,nw;
438 s->rwstate=SSL_NOTHING;
442 if (SSL_in_init(s) && !s->in_handshake)
444 i=s->handshake_func(s);
445 if (i < 0) return(i);
448 SSLerr(SSL_F_SSL3_WRITE_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
456 if (n > SSL3_RT_MAX_PLAIN_LENGTH)
457 nw=SSL3_RT_MAX_PLAIN_LENGTH;
461 i=do_ssl3_write(s,type,&(buf[tot]),nw);
468 if (type == SSL3_RT_HANDSHAKE)
469 ssl3_finish_mac(s,&(buf[tot]),i);
472 (type == SSL3_RT_APPLICATION_DATA &&
473 (s->mode | SSL_MODE_ENABLE_PARTIAL_WRITE)))
483 static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
486 unsigned char *p,*plen;
487 int i,mac_size,clear=0;
492 /* first check is there is a SSL3_RECORD still being written
493 * out. This will happen with non blocking IO */
494 if (s->s3->wbuf.left != 0)
495 return(ssl3_write_pending(s,type,buf,len));
497 /* If we have an alert to send, lets send it */
498 if (s->s3->alert_dispatch)
500 i=ssl3_dispatch_alert(s);
503 /* if it went, fall through and send more stuff */
506 if (len <= 0) return(len);
512 if ( (sess == NULL) ||
513 (s->enc_write_ctx == NULL) ||
514 (s->write_hash == NULL))
520 mac_size=EVP_MD_size(s->write_hash);
524 /* write the header */
528 *(p++)=(s->version>>8);
529 *(p++)=s->version&0xff;
531 /* record where we are to write out packet length */
535 /* lets setup the record stuff. */
538 wr->input=(unsigned char *)buf;
540 /* we now 'read' from wr->input, wr->length bytes into
543 /* first we compress */
544 if (s->compress != NULL)
548 SSLerr(SSL_F_DO_SSL3_WRITE,SSL_R_COMPRESSION_FAILURE);
554 memcpy(wr->data,wr->input,wr->length);
558 /* we should still have the output to wr->data and the input
559 * from wr->input. Length should be wr->length.
560 * wr->data still points in the wb->buf */
564 s->method->ssl3_enc->mac(s,&(p[wr->length]),1);
565 wr->length+=mac_size;
570 /* ssl3_enc can only have an error on read */
571 s->method->ssl3_enc->enc(s,1);
573 /* record length after mac and block padding */
574 s2n(wr->length,plen);
576 /* we should now have
577 * wr->data pointing to the encrypted data, which is
579 wr->type=type; /* not needed but helps for debugging */
580 wr->length+=SSL3_RT_HEADER_LENGTH;
582 /* Now lets setup wb */
586 s->s3->wpend_tot=len;
587 s->s3->wpend_buf=buf;
588 s->s3->wpend_type=type;
589 s->s3->wpend_ret=len;
591 /* we now just need to write the buffer */
592 return(ssl3_write_pending(s,type,buf,len));
597 /* if s->s3->wbuf.left != 0, we need to call this */
598 static int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
604 if ((s->s3->wpend_tot > (int)len)
605 || ((s->s3->wpend_buf != buf) &&
606 (!s->mode & SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER))
607 || (s->s3->wpend_type != type))
609 SSLerr(SSL_F_SSL3_WRITE_PENDING,SSL_R_BAD_WRITE_RETRY);
618 s->rwstate=SSL_WRITING;
620 (char *)&(s->s3->wbuf.buf[s->s3->wbuf.offset]),
621 (unsigned int)s->s3->wbuf.left);
625 SSLerr(SSL_F_SSL3_WRITE_PENDING,SSL_R_BIO_NOT_SET);
628 if (i == s->s3->wbuf.left)
631 s->rwstate=SSL_NOTHING;
632 return(s->s3->wpend_ret);
636 s->s3->wbuf.offset+=i;
641 int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len)
648 if (s->s3->rbuf.buf == NULL) /* Not initialize yet */
649 if (!ssl3_setup_buffers(s))
652 if (!s->in_handshake && SSL_in_init(s))
654 i=s->handshake_func(s);
655 if (i < 0) return(i);
658 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
663 s->rwstate=SSL_NOTHING;
665 /* s->s3->rrec.type - is the type of record
666 * s->s3->rrec.data, - data
667 * s->s3->rrec.off, - ofset into 'data' for next read
668 * s->s3->rrec.length, - number of bytes. */
672 if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY))
674 ret=ssl3_get_record(s);
675 if (ret <= 0) return(ret);
678 /* we now have a packet which can be read and processed */
680 if (s->s3->change_cipher_spec && (rr->type != SSL3_RT_HANDSHAKE))
682 al=SSL_AD_UNEXPECTED_MESSAGE;
683 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_DATA_BETWEEN_CCS_AND_FINISHED);
687 /* If the other end has shutdown, throw anything we read away */
688 if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
691 s->rwstate=SSL_NOTHING;
695 /* Check for an incoming 'Client Request' message */
696 if ((rr->type == SSL3_RT_HANDSHAKE) && (rr->length == 4) &&
697 (rr->data[0] == SSL3_MT_CLIENT_REQUEST) &&
698 (s->session != NULL) && (s->session->cipher != NULL))
700 if ((rr->data[1] != 0) || (rr->data[2] != 0) ||
703 al=SSL_AD_DECODE_ERROR;
704 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_BAD_CLIENT_REQUEST);
708 if (SSL_is_init_finished(s) &&
709 !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS) &&
713 if (ssl3_renegotiate_check(s))
715 n=s->handshake_func(s);
716 if (n < 0) return(n);
719 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
725 /* ZZZ */ goto start;
728 /* if it is not the type we want, or we have shutdown and want
729 * the peer shutdown */
730 if ((rr->type != type) || (s->shutdown & SSL_SENT_SHUTDOWN))
732 if (rr->type == SSL3_RT_ALERT)
734 if ((rr->length != 2) || (rr->off != 0))
736 al=SSL_AD_DECODE_ERROR;
737 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_BAD_ALERT_RECORD);
744 /* clear from buffer */
747 if (s->info_callback != NULL)
749 else if (s->ctx->info_callback != NULL)
750 cb=s->ctx->info_callback;
755 cb(s,SSL_CB_READ_ALERT,j);
761 if (n == SSL_AD_CLOSE_NOTIFY)
763 s->shutdown|=SSL_RECEIVED_SHUTDOWN;
771 s->rwstate=SSL_NOTHING;
772 s->s3->fatal_alert=n;
773 SSLerr(SSL_F_SSL3_READ_BYTES,
774 SSL_AD_REASON_OFFSET+n);
776 ERR_add_error_data(2,"SSL alert number ",tmp);
777 s->shutdown|=SSL_RECEIVED_SHUTDOWN;
778 SSL_CTX_remove_session(s->ctx,s->session);
783 al=SSL_AD_ILLEGAL_PARAMETER;
784 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_UNKNOWN_ALERT_TYPE);
792 if (s->shutdown & SSL_SENT_SHUTDOWN)
794 s->rwstate=SSL_NOTHING;
799 if (rr->type == SSL3_RT_CHANGE_CIPHER_SPEC)
801 if ( (rr->length != 1) || (rr->off != 0) ||
802 (rr->data[0] != SSL3_MT_CCS))
804 i=SSL_AD_ILLEGAL_PARAMETER;
805 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_BAD_CHANGE_CIPHER_SPEC);
810 s->s3->change_cipher_spec=1;
811 if (!do_change_cipher_spec(s))
817 /* else we have a handshake */
818 if ((rr->type == SSL3_RT_HANDSHAKE) &&
821 if (((s->state&SSL_ST_MASK) == SSL_ST_OK) &&
822 !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS))
824 s->state=SSL_ST_BEFORE|(s->server)
829 n=s->handshake_func(s);
830 if (n < 0) return(n);
833 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_SSL_HANDSHAKE_FAILURE);
837 /* In the case where we try to read application data
838 * the first time, but we trigger an SSL handshake, we
839 * return -1 with the retry option set. I do this
840 * otherwise renegotiation can cause nasty problems
841 * in the non-blocking world */
843 s->rwstate=SSL_READING;
845 BIO_clear_retry_flags(bio);
846 BIO_set_retry_read(bio);
854 /* TLS just ignores unknown message types */
855 if (s->version == TLS1_VERSION)
860 case SSL3_RT_CHANGE_CIPHER_SPEC:
862 case SSL3_RT_HANDSHAKE:
863 al=SSL_AD_UNEXPECTED_MESSAGE;
864 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_UNEXPECTED_RECORD);
866 case SSL3_RT_APPLICATION_DATA:
867 /* At this point, we were expecting something else,
868 * but have application data. What we do is set the
869 * error, and return -1. On the way out, if the
870 * library was running inside ssl3_read() and it makes
871 * sense to read application data at this point, we
872 * will indulge it. This will mostly happen during
873 * session renegotiation.
875 if (s->s3->in_read_app_data &&
876 (s->s3->total_renegotiations != 0) &&
878 (s->state & SSL_ST_CONNECT) &&
879 (s->state >= SSL3_ST_CW_CLNT_HELLO_A) &&
880 (s->state <= SSL3_ST_CR_SRVR_HELLO_A)
882 (s->state & SSL_ST_ACCEPT) &&
883 (s->state <= SSL3_ST_SW_HELLO_REQ_A) &&
884 (s->state >= SSL3_ST_SR_CLNT_HELLO_A)
888 s->s3->in_read_app_data=0;
893 al=SSL_AD_UNEXPECTED_MESSAGE;
894 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_UNEXPECTED_RECORD);
900 /* make sure that we are not getting application data when we
901 * are doing a handshake for the first time */
902 if (SSL_in_init(s) && (type == SSL3_RT_APPLICATION_DATA) &&
903 (s->enc_read_ctx == NULL))
905 al=SSL_AD_UNEXPECTED_MESSAGE;
906 SSLerr(SSL_F_SSL3_READ_BYTES,SSL_R_APP_DATA_IN_HANDSHAKE);
910 if (len <= 0) return(len);
912 if ((unsigned int)len > rr->length)
917 memcpy(buf,&(rr->data[rr->off]),(unsigned int)n);
922 s->rstate=SSL_ST_READ_HEADER;
926 if (type == SSL3_RT_HANDSHAKE)
927 ssl3_finish_mac(s,buf,n);
930 ssl3_send_alert(s,SSL3_AL_FATAL,al);
935 static int do_change_cipher_spec(SSL *s)
938 unsigned char *sender;
941 if (s->state & SSL_ST_ACCEPT)
942 i=SSL3_CHANGE_CIPHER_SERVER_READ;
944 i=SSL3_CHANGE_CIPHER_CLIENT_READ;
946 if (s->s3->tmp.key_block == NULL)
948 s->session->cipher=s->s3->tmp.new_cipher;
949 if (!s->method->ssl3_enc->setup_key_block(s)) return(0);
952 if (!s->method->ssl3_enc->change_cipher_state(s,i))
955 /* we have to record the message digest at
956 * this point so we can get it before we read
957 * the finished message */
958 if (s->state & SSL_ST_CONNECT)
960 sender=s->method->ssl3_enc->server_finished;
961 slen=s->method->ssl3_enc->server_finished_len;
965 sender=s->method->ssl3_enc->client_finished;
966 slen=s->method->ssl3_enc->client_finished_len;
969 s->method->ssl3_enc->final_finish_mac(s,
970 &(s->s3->finish_dgst1),
971 &(s->s3->finish_dgst2),
972 sender,slen,&(s->s3->tmp.finish_md[0]));
977 int ssl3_do_write(SSL *s, int type)
981 ret=ssl3_write_bytes(s,type,&s->init_buf->data[s->init_off],
983 if (ret == s->init_num)
985 if (ret < 0) return(-1);
991 void ssl3_send_alert(SSL *s, int level, int desc)
993 /* Map tls/ssl alert value to correct one */
994 desc=s->method->ssl3_enc->alert_value(desc);
995 if (desc < 0) return;
996 /* If a fatal one, remove from cache */
997 if ((level == 2) && (s->session != NULL))
998 SSL_CTX_remove_session(s->ctx,s->session);
1000 s->s3->alert_dispatch=1;
1001 s->s3->send_alert[0]=level;
1002 s->s3->send_alert[1]=desc;
1003 if (s->s3->wbuf.left == 0) /* data still being written out */
1004 ssl3_dispatch_alert(s);
1005 /* else data is still being written out, we will get written
1006 * some time in the future */
1009 int ssl3_dispatch_alert(SSL *s)
1014 s->s3->alert_dispatch=0;
1015 i=do_ssl3_write(s,SSL3_RT_ALERT,&s->s3->send_alert[0],2);
1018 s->s3->alert_dispatch=1;
1022 /* If it is important, send it now. If the message
1023 * does not get sent due to non-blocking IO, we will
1024 * not worry too much. */
1025 if (s->s3->send_alert[0] == SSL3_AL_FATAL)
1026 (void)BIO_flush(s->wbio);
1028 if (s->info_callback != NULL)
1029 cb=s->info_callback;
1030 else if (s->ctx->info_callback != NULL)
1031 cb=s->ctx->info_callback;
1035 j=(s->s3->send_alert[0]<<8)|s->s3->send_alert[1];
1036 cb(s,SSL_CB_WRITE_ALERT,j);