Sync usage with man page.
[netbsd-mini2440.git] / crypto / external / bsd / openssl / dist / ssl / s23_clnt.c
blob2d467b9a884f9b0b0ead3372c3bfcbb7bc7946ca
1 /* ssl/s23_clnt.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
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).
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
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)"
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.
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.]
58 /* ====================================================================
59 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
63 * are met:
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
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.
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/)"
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.
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.
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/)"
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 * ====================================================================
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).
112 #include <stdio.h>
113 #include "ssl_locl.h"
114 #include <openssl/buffer.h>
115 #include <openssl/rand.h>
116 #include <openssl/objects.h>
117 #include <openssl/evp.h>
119 static const SSL_METHOD *ssl23_get_client_method(int ver);
120 static int ssl23_client_hello(SSL *s);
121 static int ssl23_get_server_hello(SSL *s);
122 static const SSL_METHOD *ssl23_get_client_method(int ver)
124 #ifndef OPENSSL_NO_SSL2
125 if (ver == SSL2_VERSION)
126 return(SSLv2_client_method());
127 #endif
128 if (ver == SSL3_VERSION)
129 return(SSLv3_client_method());
130 else if (ver == TLS1_VERSION)
131 return(TLSv1_client_method());
132 else
133 return(NULL);
136 IMPLEMENT_ssl23_meth_func(SSLv23_client_method,
137 ssl_undefined_function,
138 ssl23_connect,
139 ssl23_get_client_method)
141 int ssl23_connect(SSL *s)
143 BUF_MEM *buf=NULL;
144 unsigned long Time=(unsigned long)time(NULL);
145 void (*cb)(const SSL *ssl,int type,int val)=NULL;
146 int ret= -1;
147 int new_state,state;
149 RAND_add(&Time,sizeof(Time),0);
150 ERR_clear_error();
151 clear_sys_error();
153 if (s->info_callback != NULL)
154 cb=s->info_callback;
155 else if (s->ctx->info_callback != NULL)
156 cb=s->ctx->info_callback;
158 s->in_handshake++;
159 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
161 for (;;)
163 state=s->state;
165 switch(s->state)
167 case SSL_ST_BEFORE:
168 case SSL_ST_CONNECT:
169 case SSL_ST_BEFORE|SSL_ST_CONNECT:
170 case SSL_ST_OK|SSL_ST_CONNECT:
172 if (s->session != NULL)
174 SSLerr(SSL_F_SSL23_CONNECT,SSL_R_SSL23_DOING_SESSION_ID_REUSE);
175 ret= -1;
176 goto end;
178 s->server=0;
179 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
181 /* s->version=TLS1_VERSION; */
182 s->type=SSL_ST_CONNECT;
184 if (s->init_buf == NULL)
186 if ((buf=BUF_MEM_new()) == NULL)
188 ret= -1;
189 goto end;
191 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
193 ret= -1;
194 goto end;
196 s->init_buf=buf;
197 buf=NULL;
200 if (!ssl3_setup_buffers(s)) { ret= -1; goto end; }
202 ssl3_init_finished_mac(s);
204 s->state=SSL23_ST_CW_CLNT_HELLO_A;
205 s->ctx->stats.sess_connect++;
206 s->init_num=0;
207 break;
209 case SSL23_ST_CW_CLNT_HELLO_A:
210 case SSL23_ST_CW_CLNT_HELLO_B:
212 s->shutdown=0;
213 ret=ssl23_client_hello(s);
214 if (ret <= 0) goto end;
215 s->state=SSL23_ST_CR_SRVR_HELLO_A;
216 s->init_num=0;
218 break;
220 case SSL23_ST_CR_SRVR_HELLO_A:
221 case SSL23_ST_CR_SRVR_HELLO_B:
222 ret=ssl23_get_server_hello(s);
223 if (ret >= 0) cb=NULL;
224 goto end;
225 /* break; */
227 default:
228 SSLerr(SSL_F_SSL23_CONNECT,SSL_R_UNKNOWN_STATE);
229 ret= -1;
230 goto end;
231 /* break; */
234 if (s->debug) { (void)BIO_flush(s->wbio); }
236 if ((cb != NULL) && (s->state != state))
238 new_state=s->state;
239 s->state=state;
240 cb(s,SSL_CB_CONNECT_LOOP,1);
241 s->state=new_state;
244 end:
245 s->in_handshake--;
246 if (buf != NULL)
247 BUF_MEM_free(buf);
248 if (cb != NULL)
249 cb(s,SSL_CB_CONNECT_EXIT,ret);
250 return(ret);
253 static int ssl23_no_ssl2_ciphers(SSL *s)
255 SSL_CIPHER *cipher;
256 STACK_OF(SSL_CIPHER) *ciphers;
257 int i;
258 ciphers = SSL_get_ciphers(s);
259 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++)
261 cipher = sk_SSL_CIPHER_value(ciphers, i);
262 if (cipher->algorithm_ssl == SSL_SSLV2)
263 return 0;
265 return 1;
268 static int ssl23_client_hello(SSL *s)
270 unsigned char *buf;
271 unsigned char *p,*d;
272 int i,ch_len;
273 unsigned long Time,l;
274 int ssl2_compat;
275 int version = 0, version_major, version_minor;
276 #ifndef OPENSSL_NO_COMP
277 int j;
278 SSL_COMP *comp;
279 #endif
280 int ret;
282 ssl2_compat = (s->options & SSL_OP_NO_SSLv2) ? 0 : 1;
284 if (ssl2_compat && ssl23_no_ssl2_ciphers(s))
285 ssl2_compat = 0;
287 if (!(s->options & SSL_OP_NO_TLSv1_1))
289 version = TLS1_1_VERSION;
291 else if (!(s->options & SSL_OP_NO_TLSv1))
293 version = TLS1_VERSION;
295 else if (!(s->options & SSL_OP_NO_SSLv3))
297 version = SSL3_VERSION;
299 else if (!(s->options & SSL_OP_NO_SSLv2))
301 version = SSL2_VERSION;
303 #ifndef OPENSSL_NO_TLSEXT
304 if (version != SSL2_VERSION)
306 /* have to disable SSL 2.0 compatibility if we need TLS extensions */
308 if (s->tlsext_hostname != NULL)
309 ssl2_compat = 0;
310 if (s->tlsext_status_type != -1)
311 ssl2_compat = 0;
312 if (!(s->ctx->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION))
313 ssl2_compat = 0;
315 #ifdef TLSEXT_TYPE_opaque_prf_input
316 if (s->ctx->tlsext_opaque_prf_input_callback != 0 || s->tlsext_opaque_prf_input != NULL)
317 ssl2_compat = 0;
318 #endif
320 #endif
322 buf=(unsigned char *)s->init_buf->data;
323 if (s->state == SSL23_ST_CW_CLNT_HELLO_A)
325 #if 0
326 /* don't reuse session-id's */
327 if (!ssl_get_new_session(s,0))
329 return(-1);
331 #endif
333 p=s->s3->client_random;
334 Time=(unsigned long)time(NULL); /* Time */
335 l2n(Time,p);
336 if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
337 return -1;
339 if (version == TLS1_1_VERSION)
341 version_major = TLS1_1_VERSION_MAJOR;
342 version_minor = TLS1_1_VERSION_MINOR;
344 else if (version == TLS1_VERSION)
346 version_major = TLS1_VERSION_MAJOR;
347 version_minor = TLS1_VERSION_MINOR;
349 else if (version == SSL3_VERSION)
351 version_major = SSL3_VERSION_MAJOR;
352 version_minor = SSL3_VERSION_MINOR;
354 else if (version == SSL2_VERSION)
356 version_major = SSL2_VERSION_MAJOR;
357 version_minor = SSL2_VERSION_MINOR;
359 else
361 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_PROTOCOLS_AVAILABLE);
362 return(-1);
365 s->client_version = version;
367 if (ssl2_compat)
369 /* create SSL 2.0 compatible Client Hello */
371 /* two byte record header will be written last */
372 d = &(buf[2]);
373 p = d + 9; /* leave space for message type, version, individual length fields */
375 *(d++) = SSL2_MT_CLIENT_HELLO;
376 *(d++) = version_major;
377 *(d++) = version_minor;
379 /* Ciphers supported */
380 i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),p,0);
381 if (i == 0)
383 /* no ciphers */
384 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
385 return -1;
387 s2n(i,d);
388 p+=i;
390 /* put in the session-id length (zero since there is no reuse) */
391 #if 0
392 s->session->session_id_length=0;
393 #endif
394 s2n(0,d);
396 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
397 ch_len=SSL2_CHALLENGE_LENGTH;
398 else
399 ch_len=SSL2_MAX_CHALLENGE_LENGTH;
401 /* write out sslv2 challenge */
402 /* Note that ch_len must be <= SSL3_RANDOM_SIZE (32),
403 because it is one of SSL2_MAX_CHALLENGE_LENGTH (32)
404 or SSL2_MAX_CHALLENGE_LENGTH (16), but leave the
405 check in for futurproofing */
406 if (SSL3_RANDOM_SIZE < ch_len)
407 i=SSL3_RANDOM_SIZE;
408 else
409 i=ch_len;
410 s2n(i,d);
411 memset(&(s->s3->client_random[0]),0,SSL3_RANDOM_SIZE);
412 if (RAND_pseudo_bytes(&(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i) <= 0)
413 return -1;
415 memcpy(p,&(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
416 p+=i;
418 i= p- &(buf[2]);
419 buf[0]=((i>>8)&0xff)|0x80;
420 buf[1]=(i&0xff);
422 /* number of bytes to write */
423 s->init_num=i+2;
424 s->init_off=0;
426 ssl3_finish_mac(s,&(buf[2]),i);
428 else
430 /* create Client Hello in SSL 3.0/TLS 1.0 format */
432 /* do the record header (5 bytes) and handshake message header (4 bytes) last */
433 d = p = &(buf[9]);
435 *(p++) = version_major;
436 *(p++) = version_minor;
438 /* Random stuff */
439 memcpy(p, s->s3->client_random, SSL3_RANDOM_SIZE);
440 p += SSL3_RANDOM_SIZE;
442 /* Session ID (zero since there is no reuse) */
443 *(p++) = 0;
445 /* Ciphers supported (using SSL 3.0/TLS 1.0 format) */
446 i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),&(p[2]),ssl3_put_cipher_by_char);
447 if (i == 0)
449 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
450 return -1;
452 s2n(i,p);
453 p+=i;
455 /* COMPRESSION */
456 #ifdef OPENSSL_NO_COMP
457 *(p++)=1;
458 #else
459 if ((s->options & SSL_OP_NO_COMPRESSION)
460 || !s->ctx->comp_methods)
461 j=0;
462 else
463 j=sk_SSL_COMP_num(s->ctx->comp_methods);
464 *(p++)=1+j;
465 for (i=0; i<j; i++)
467 comp=sk_SSL_COMP_value(s->ctx->comp_methods,i);
468 *(p++)=comp->id;
470 #endif
471 *(p++)=0; /* Add the NULL method */
473 #ifndef OPENSSL_NO_TLSEXT
474 /* TLS extensions*/
475 if (ssl_prepare_clienthello_tlsext(s) <= 0)
477 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_CLIENTHELLO_TLSEXT);
478 return -1;
480 if ((p = ssl_add_clienthello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
482 SSLerr(SSL_F_SSL23_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
483 return -1;
485 #endif
487 l = p-d;
489 /* fill in 4-byte handshake header */
490 d=&(buf[5]);
491 *(d++)=SSL3_MT_CLIENT_HELLO;
492 l2n3(l,d);
494 l += 4;
496 if (l > SSL3_RT_MAX_PLAIN_LENGTH)
498 SSLerr(SSL_F_SSL23_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
499 return -1;
502 /* fill in 5-byte record header */
503 d=buf;
504 *(d++) = SSL3_RT_HANDSHAKE;
505 *(d++) = version_major;
506 *(d++) = version_minor; /* arguably we should send the *lowest* suported version here
507 * (indicating, e.g., TLS 1.0 in "SSL 3.0 format") */
508 s2n((int)l,d);
510 /* number of bytes to write */
511 s->init_num=p-buf;
512 s->init_off=0;
514 ssl3_finish_mac(s,&(buf[5]), s->init_num - 5);
517 s->state=SSL23_ST_CW_CLNT_HELLO_B;
518 s->init_off=0;
521 /* SSL3_ST_CW_CLNT_HELLO_B */
522 ret = ssl23_write_bytes(s);
524 if ((ret >= 2) && s->msg_callback)
526 /* Client Hello has been sent; tell msg_callback */
528 if (ssl2_compat)
529 s->msg_callback(1, SSL2_VERSION, 0, s->init_buf->data+2, ret-2, s, s->msg_callback_arg);
530 else
531 s->msg_callback(1, version, SSL3_RT_HANDSHAKE, s->init_buf->data+5, ret-5, s, s->msg_callback_arg);
534 return ret;
537 static int ssl23_get_server_hello(SSL *s)
539 char buf[8];
540 unsigned char *p;
541 int i;
542 int n;
544 n=ssl23_read_bytes(s,7);
546 if (n != 7) return(n);
547 p=s->packet;
549 memcpy(buf,p,n);
551 if ((p[0] & 0x80) && (p[2] == SSL2_MT_SERVER_HELLO) &&
552 (p[5] == 0x00) && (p[6] == 0x02))
554 #ifdef OPENSSL_NO_SSL2
555 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
556 goto err;
557 #else
558 /* we are talking sslv2 */
559 /* we need to clean up the SSLv3 setup and put in the
560 * sslv2 stuff. */
561 int ch_len;
563 if (s->options & SSL_OP_NO_SSLv2)
565 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
566 goto err;
568 if (s->s2 == NULL)
570 if (!ssl2_new(s))
571 goto err;
573 else
574 ssl2_clear(s);
576 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
577 ch_len=SSL2_CHALLENGE_LENGTH;
578 else
579 ch_len=SSL2_MAX_CHALLENGE_LENGTH;
581 /* write out sslv2 challenge */
582 /* Note that ch_len must be <= SSL3_RANDOM_SIZE (32), because
583 it is one of SSL2_MAX_CHALLENGE_LENGTH (32) or
584 SSL2_MAX_CHALLENGE_LENGTH (16), but leave the check in for
585 futurproofing */
586 i=(SSL3_RANDOM_SIZE < ch_len)
587 ?SSL3_RANDOM_SIZE:ch_len;
588 s->s2->challenge_length=i;
589 memcpy(s->s2->challenge,
590 &(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
592 if (s->s3 != NULL) ssl3_free(s);
594 if (!BUF_MEM_grow_clean(s->init_buf,
595 SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER))
597 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,ERR_R_BUF_LIB);
598 goto err;
601 s->state=SSL2_ST_GET_SERVER_HELLO_A;
602 if (!(s->client_version == SSL2_VERSION))
603 /* use special padding (SSL 3.0 draft/RFC 2246, App. E.2) */
604 s->s2->ssl2_rollback=1;
606 /* setup the 7 bytes we have read so we get them from
607 * the sslv2 buffer */
608 s->rstate=SSL_ST_READ_HEADER;
609 s->packet_length=n;
610 s->packet= &(s->s2->rbuf[0]);
611 memcpy(s->packet,buf,n);
612 s->s2->rbuf_left=n;
613 s->s2->rbuf_offs=0;
615 /* we have already written one */
616 s->s2->write_sequence=1;
618 s->method=SSLv2_client_method();
619 s->handshake_func=s->method->ssl_connect;
620 #endif
622 else if (p[1] == SSL3_VERSION_MAJOR &&
624 #if SSL3_VERSION_MINOR > 0
625 p[2] >= SSL3_VERSION_MINOR &&
626 #endif
627 p[2] <= TLS1_1_VERSION_MINOR) &&
628 ((p[0] == SSL3_RT_HANDSHAKE && p[5] == SSL3_MT_SERVER_HELLO) ||
629 (p[0] == SSL3_RT_ALERT && p[3] == 0 && p[4] == 2)))
631 /* we have sslv3 or tls1 (server hello or alert) */
633 if ((p[2] == SSL3_VERSION_MINOR) &&
634 !(s->options & SSL_OP_NO_SSLv3))
636 s->version=SSL3_VERSION;
637 s->method=SSLv3_client_method();
639 else if ((p[2] == TLS1_VERSION_MINOR) &&
640 !(s->options & SSL_OP_NO_TLSv1))
642 s->version=TLS1_VERSION;
643 s->method=TLSv1_client_method();
645 else if ((p[2] == TLS1_1_VERSION_MINOR) &&
646 !(s->options & SSL_OP_NO_TLSv1_1))
648 s->version=TLS1_1_VERSION;
649 s->method=TLSv1_1_client_method();
651 else
653 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
654 goto err;
657 if (p[0] == SSL3_RT_ALERT && p[5] != SSL3_AL_WARNING)
659 /* fatal alert */
661 void (*cb)(const SSL *ssl,int type,int val)=NULL;
662 int j;
664 if (s->info_callback != NULL)
665 cb=s->info_callback;
666 else if (s->ctx->info_callback != NULL)
667 cb=s->ctx->info_callback;
669 i=p[5];
670 if (cb != NULL)
672 j=(i<<8)|p[6];
673 cb(s,SSL_CB_READ_ALERT,j);
676 if (s->msg_callback)
677 s->msg_callback(0, s->version, SSL3_RT_ALERT, p+5, 2, s, s->msg_callback_arg);
679 s->rwstate=SSL_NOTHING;
680 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_AD_REASON_OFFSET+p[6]);
681 goto err;
684 if (!ssl_init_wbio_buffer(s,1)) goto err;
686 /* we are in this state */
687 s->state=SSL3_ST_CR_SRVR_HELLO_A;
689 /* put the 7 bytes we have read into the input buffer
690 * for SSLv3 */
691 s->rstate=SSL_ST_READ_HEADER;
692 s->packet_length=n;
693 if (s->s3->rbuf.buf == NULL)
694 if (!ssl3_setup_read_buffer(s))
695 goto err;
696 s->packet= &(s->s3->rbuf.buf[0]);
697 memcpy(s->packet,buf,n);
698 s->s3->rbuf.left=n;
699 s->s3->rbuf.offset=0;
701 s->handshake_func=s->method->ssl_connect;
703 else
705 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNKNOWN_PROTOCOL);
706 goto err;
708 s->init_num=0;
710 /* Since, if we are sending a ssl23 client hello, we are not
711 * reusing a session-id */
712 if (!ssl_get_new_session(s,0))
713 goto err;
715 return(SSL_connect(s));
716 err:
717 return(-1);