Document dead code.
[openssl.git] / ssl / s23_clnt.c
1 /* ssl/s23_clnt.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-2006 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 "ssl_locl.h"
114 #include <openssl/buffer.h>
115 #include <openssl/rand.h>
116 #include <openssl/objects.h>
117 #include <openssl/evp.h>
118
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)
123         {
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);
134         }
135
136 IMPLEMENT_ssl23_meth_func(SSLv23_client_method,
137                         ssl_undefined_function,
138                         ssl23_connect,
139                         ssl23_get_client_method)
140
141 int ssl23_connect(SSL *s)
142         {
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;
148
149         RAND_add(&Time,sizeof(Time),0);
150         ERR_clear_error();
151         clear_sys_error();
152
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;
157         
158         s->in_handshake++;
159         if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s); 
160
161         for (;;)
162                 {
163                 state=s->state;
164
165                 switch(s->state)
166                         {
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:
171
172                         if (s->session != NULL)
173                                 {
174                                 SSLerr(SSL_F_SSL23_CONNECT,SSL_R_SSL23_DOING_SESSION_ID_REUSE);
175                                 ret= -1;
176                                 goto end;
177                                 }
178                         s->server=0;
179                         if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
180
181                         /* s->version=TLS1_VERSION; */
182                         s->type=SSL_ST_CONNECT;
183
184                         if (s->init_buf == NULL)
185                                 {
186                                 if ((buf=BUF_MEM_new()) == NULL)
187                                         {
188                                         ret= -1;
189                                         goto end;
190                                         }
191                                 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
192                                         {
193                                         ret= -1;
194                                         goto end;
195                                         }
196                                 s->init_buf=buf;
197                                 buf=NULL;
198                                 }
199
200                         if (!ssl3_setup_buffers(s)) { ret= -1; goto end; }
201
202                         ssl3_init_finished_mac(s);
203
204                         s->state=SSL23_ST_CW_CLNT_HELLO_A;
205                         s->ctx->stats.sess_connect++;
206                         s->init_num=0;
207                         break;
208
209                 case SSL23_ST_CW_CLNT_HELLO_A:
210                 case SSL23_ST_CW_CLNT_HELLO_B:
211
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;
217
218                         break;
219
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; */
226
227                 default:
228                         SSLerr(SSL_F_SSL23_CONNECT,SSL_R_UNKNOWN_STATE);
229                         ret= -1;
230                         goto end;
231                         /* break; */
232                         }
233
234                 if (s->debug) { (void)BIO_flush(s->wbio); }
235
236                 if ((cb != NULL) && (s->state != state))
237                         {
238                         new_state=s->state;
239                         s->state=state;
240                         cb(s,SSL_CB_CONNECT_LOOP,1);
241                         s->state=new_state;
242                         }
243                 }
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);
251         }
252
253
254 static int ssl23_client_hello(SSL *s)
255         {
256         unsigned char *buf;
257         unsigned char *p,*d;
258         int i,j,ch_len;
259         unsigned long Time,l;
260         int ssl2_compat;
261         int version = 0, version_major, version_minor;
262         SSL_COMP *comp;
263         int ret;
264
265         ssl2_compat = (s->options & SSL_OP_NO_SSLv2) ? 0 : 1;
266
267         if (!(s->options & SSL_OP_NO_TLSv1))
268                 {
269                 version = TLS1_VERSION;
270                 }
271         else if (!(s->options & SSL_OP_NO_SSLv3))
272                 {
273                 version = SSL3_VERSION;
274                 }
275         else if (!(s->options & SSL_OP_NO_SSLv2))
276                 {
277                 version = SSL2_VERSION;
278                 }
279 #ifndef OPENSSL_NO_TLSEXT
280         if (version != SSL2_VERSION)
281                 {
282                 /* have to disable SSL 2.0 compatibility if we need TLS extensions */
283
284                 if (s->tlsext_hostname != NULL)
285                         ssl2_compat = 0;
286                 if (s->tlsext_status_type != -1)
287                         ssl2_compat = 0;
288                 
289 #ifdef TLSEXT_TYPE_opaque_prf_input
290                 if (s->ctx->tlsext_opaque_prf_input_callback != 0 || s->tlsext_opaque_prf_input != NULL)
291                         ssl2_compat = 0;
292 #endif
293                 }
294 #endif
295
296         buf=(unsigned char *)s->init_buf->data;
297         if (s->state == SSL23_ST_CW_CLNT_HELLO_A)
298                 {
299 #if 0
300                 /* don't reuse session-id's */
301                 if (!ssl_get_new_session(s,0))
302                         {
303                         return(-1);
304                         }
305 #endif
306
307                 p=s->s3->client_random;
308                 Time=(unsigned long)time(NULL);         /* Time */
309                 l2n(Time,p);
310                 if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
311                         return -1;
312
313                 if (version == TLS1_VERSION)
314                         {
315                         version_major = TLS1_VERSION_MAJOR;
316                         version_minor = TLS1_VERSION_MINOR;
317                         }
318                 else if (version == SSL3_VERSION)
319                         {
320                         version_major = SSL3_VERSION_MAJOR;
321                         version_minor = SSL3_VERSION_MINOR;
322                         }
323                 else if (version == SSL2_VERSION)
324                         {
325                         version_major = SSL2_VERSION_MAJOR;
326                         version_minor = SSL2_VERSION_MINOR;
327                         }
328                 else
329                         {
330                         SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_PROTOCOLS_AVAILABLE);
331                         return(-1);
332                         }
333
334                 s->client_version = version;
335
336                 if (ssl2_compat)
337                         {
338                         /* create SSL 2.0 compatible Client Hello */
339
340                         /* two byte record header will be written last */
341                         d = &(buf[2]);
342                         p = d + 9; /* leave space for message type, version, individual length fields */
343
344                         *(d++) = SSL2_MT_CLIENT_HELLO;
345                         *(d++) = version_major;
346                         *(d++) = version_minor;
347                         
348                         /* Ciphers supported */
349                         i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),p,0);
350                         if (i == 0)
351                                 {
352                                 /* no ciphers */
353                                 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
354                                 return -1;
355                                 }
356                         s2n(i,d);
357                         p+=i;
358                         
359                         /* put in the session-id length (zero since there is no reuse) */
360 #if 0
361                         s->session->session_id_length=0;
362 #endif
363                         s2n(0,d);
364
365                         if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
366                                 ch_len=SSL2_CHALLENGE_LENGTH;
367                         else
368                                 ch_len=SSL2_MAX_CHALLENGE_LENGTH;
369
370                         /* write out sslv2 challenge */
371                         /* Note that ch_len must be <= SSL3_RANDOM_SIZE (32),
372                            because it is one of SSL2_MAX_CHALLENGE_LENGTH (32)
373                            or SSL2_MAX_CHALLENGE_LENGTH (16), but leave the
374                            check in for futurproofing */
375                         if (SSL3_RANDOM_SIZE < ch_len)
376                                 i=SSL3_RANDOM_SIZE;
377                         else
378                                 i=ch_len;
379                         s2n(i,d);
380                         memset(&(s->s3->client_random[0]),0,SSL3_RANDOM_SIZE);
381                         if (RAND_pseudo_bytes(&(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i) <= 0)
382                                 return -1;
383
384                         memcpy(p,&(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
385                         p+=i;
386
387                         i= p- &(buf[2]);
388                         buf[0]=((i>>8)&0xff)|0x80;
389                         buf[1]=(i&0xff);
390
391                         /* number of bytes to write */
392                         s->init_num=i+2;
393                         s->init_off=0;
394
395                         ssl3_finish_mac(s,&(buf[2]),i);
396                         }
397                 else
398                         {
399                         /* create Client Hello in SSL 3.0/TLS 1.0 format */
400
401                         /* do the record header (5 bytes) and handshake message header (4 bytes) last */
402                         d = p = &(buf[9]);
403                         
404                         *(p++) = version_major;
405                         *(p++) = version_minor;
406
407                         /* Random stuff */
408                         memcpy(p, s->s3->client_random, SSL3_RANDOM_SIZE);
409                         p += SSL3_RANDOM_SIZE;
410
411                         /* Session ID (zero since there is no reuse) */
412                         *(p++) = 0;
413
414                         /* Ciphers supported (using SSL 3.0/TLS 1.0 format) */
415                         i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),&(p[2]),ssl3_put_cipher_by_char);
416                         if (i == 0)
417                                 {
418                                 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
419                                 return -1;
420                                 }
421                         s2n(i,p);
422                         p+=i;
423
424                         /* COMPRESSION */
425 #ifdef OPENSSL_NO_COMP
426                         *(p++)=1;
427 #else
428                         if ((s->options & SSL_OP_NO_COMPRESSION)
429                                                 || !s->ctx->comp_methods)
430                                 j=0;
431                         else
432                                 j=sk_SSL_COMP_num(s->ctx->comp_methods);
433                         *(p++)=1+j;
434                         for (i=0; i<j; i++)
435                                 {
436                                 comp=sk_SSL_COMP_value(s->ctx->comp_methods,i);
437                                 *(p++)=comp->id;
438                                 }
439 #endif
440                         *(p++)=0; /* Add the NULL method */
441
442 #ifndef OPENSSL_NO_TLSEXT
443                         /* TLS extensions*/
444                         if (ssl_prepare_clienthello_tlsext(s) <= 0)
445                                 {
446                                 SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_CLIENTHELLO_TLSEXT);
447                                 return -1;
448                                 }
449                         if ((p = ssl_add_clienthello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
450                                 {
451                                 SSLerr(SSL_F_SSL23_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
452                                 return -1;
453                                 }
454 #endif
455                         
456                         l = p-d;
457
458                         /* fill in 4-byte handshake header */
459                         d=&(buf[5]);
460                         *(d++)=SSL3_MT_CLIENT_HELLO;
461                         l2n3(l,d);
462
463                         l += 4;
464
465                         if (l > SSL3_RT_MAX_PLAIN_LENGTH)
466                                 {
467                                 SSLerr(SSL_F_SSL23_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
468                                 return -1;
469                                 }
470                         
471                         /* fill in 5-byte record header */
472                         d=buf;
473                         *(d++) = SSL3_RT_HANDSHAKE;
474                         *(d++) = version_major;
475                         *(d++) = version_minor; /* arguably we should send the *lowest* suported version here
476                                                  * (indicating, e.g., TLS 1.0 in "SSL 3.0 format") */
477                         s2n((int)l,d);
478
479                         /* number of bytes to write */
480                         s->init_num=p-buf;
481                         s->init_off=0;
482
483                         ssl3_finish_mac(s,&(buf[5]), s->init_num - 5);
484                         }
485
486                 s->state=SSL23_ST_CW_CLNT_HELLO_B;
487                 s->init_off=0;
488                 }
489
490         /* SSL3_ST_CW_CLNT_HELLO_B */
491         ret = ssl23_write_bytes(s);
492
493         if ((ret >= 2) && s->msg_callback)
494                 {
495                 /* Client Hello has been sent; tell msg_callback */
496
497                 if (ssl2_compat)
498                         s->msg_callback(1, SSL2_VERSION, 0, s->init_buf->data+2, ret-2, s, s->msg_callback_arg);
499                 else
500                         s->msg_callback(1, version, SSL3_RT_HANDSHAKE, s->init_buf->data+5, ret-5, s, s->msg_callback_arg);
501                 }
502
503         return ret;
504         }
505
506 static int ssl23_get_server_hello(SSL *s)
507         {
508         char buf[8];
509         unsigned char *p;
510         int i;
511         int n;
512
513         n=ssl23_read_bytes(s,7);
514
515         if (n != 7) return(n);
516         p=s->packet;
517
518         memcpy(buf,p,n);
519
520         if ((p[0] & 0x80) && (p[2] == SSL2_MT_SERVER_HELLO) &&
521                 (p[5] == 0x00) && (p[6] == 0x02))
522                 {
523 #ifdef OPENSSL_NO_SSL2
524                 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
525                 goto err;
526 #else
527                 /* we are talking sslv2 */
528                 /* we need to clean up the SSLv3 setup and put in the
529                  * sslv2 stuff. */
530                 int ch_len;
531
532                 if (s->options & SSL_OP_NO_SSLv2)
533                         {
534                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
535                         goto err;
536                         }
537                 if (s->s2 == NULL)
538                         {
539                         if (!ssl2_new(s))
540                                 goto err;
541                         }
542                 else
543                         ssl2_clear(s);
544
545                 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
546                         ch_len=SSL2_CHALLENGE_LENGTH;
547                 else
548                         ch_len=SSL2_MAX_CHALLENGE_LENGTH;
549
550                 /* write out sslv2 challenge */
551                 /* Note that ch_len must be <= SSL3_RANDOM_SIZE (32), because
552                    it is one of SSL2_MAX_CHALLENGE_LENGTH (32) or
553                    SSL2_MAX_CHALLENGE_LENGTH (16), but leave the check in for
554                    futurproofing */
555                 i=(SSL3_RANDOM_SIZE < ch_len)
556                         ?SSL3_RANDOM_SIZE:ch_len;
557                 s->s2->challenge_length=i;
558                 memcpy(s->s2->challenge,
559                         &(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
560
561                 if (s->s3 != NULL) ssl3_free(s);
562
563                 if (!BUF_MEM_grow_clean(s->init_buf,
564                         SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER))
565                         {
566                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,ERR_R_BUF_LIB);
567                         goto err;
568                         }
569
570                 s->state=SSL2_ST_GET_SERVER_HELLO_A;
571                 if (!(s->client_version == SSL2_VERSION))
572                         /* use special padding (SSL 3.0 draft/RFC 2246, App. E.2) */
573                         s->s2->ssl2_rollback=1;
574
575                 /* setup the 7 bytes we have read so we get them from
576                  * the sslv2 buffer */
577                 s->rstate=SSL_ST_READ_HEADER;
578                 s->packet_length=n;
579                 s->packet= &(s->s2->rbuf[0]);
580                 memcpy(s->packet,buf,n);
581                 s->s2->rbuf_left=n;
582                 s->s2->rbuf_offs=0;
583
584                 /* we have already written one */
585                 s->s2->write_sequence=1;
586
587                 s->method=SSLv2_client_method();
588                 s->handshake_func=s->method->ssl_connect;
589 #endif
590                 }
591         else if (p[1] == SSL3_VERSION_MAJOR &&
592                  (p[2] == SSL3_VERSION_MINOR || p[2] == TLS1_VERSION_MINOR) &&
593                  ((p[0] == SSL3_RT_HANDSHAKE && p[5] == SSL3_MT_SERVER_HELLO) ||
594                   (p[0] == SSL3_RT_ALERT && p[3] == 0 && p[4] == 2)))
595                 {
596                 /* we have sslv3 or tls1 (server hello or alert) */
597
598                 if ((p[2] == SSL3_VERSION_MINOR) &&
599                         !(s->options & SSL_OP_NO_SSLv3))
600                         {
601                         s->version=SSL3_VERSION;
602                         s->method=SSLv3_client_method();
603                         }
604                 else if ((p[2] == TLS1_VERSION_MINOR) &&
605                         !(s->options & SSL_OP_NO_TLSv1))
606                         {
607                         s->version=TLS1_VERSION;
608                         s->method=TLSv1_client_method();
609                         }
610                 else
611                         {
612                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
613                         goto err;
614                         }
615
616                 if (p[0] == SSL3_RT_ALERT && p[5] != SSL3_AL_WARNING)
617                         {
618                         /* fatal alert */
619
620                         void (*cb)(const SSL *ssl,int type,int val)=NULL;
621                         int j;
622
623                         if (s->info_callback != NULL)
624                                 cb=s->info_callback;
625                         else if (s->ctx->info_callback != NULL)
626                                 cb=s->ctx->info_callback;
627  
628                         i=p[5];
629                         if (cb != NULL)
630                                 {
631                                 j=(i<<8)|p[6];
632                                 cb(s,SSL_CB_READ_ALERT,j);
633                                 }
634                         
635                         if (s->msg_callback)
636                                 s->msg_callback(0, s->version, SSL3_RT_ALERT, p+5, 2, s, s->msg_callback_arg);
637
638                         s->rwstate=SSL_NOTHING;
639                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_AD_REASON_OFFSET+p[6]);
640                         goto err;
641                         }
642
643                 if (!ssl_init_wbio_buffer(s,1)) goto err;
644
645                 /* we are in this state */
646                 s->state=SSL3_ST_CR_SRVR_HELLO_A;
647
648                 /* put the 7 bytes we have read into the input buffer
649                  * for SSLv3 */
650                 s->rstate=SSL_ST_READ_HEADER;
651                 s->packet_length=n;
652                 if (s->s3->rbuf.buf == NULL)
653                         if (!ssl3_setup_read_buffer(s))
654                                 goto err;
655                 s->packet= &(s->s3->rbuf.buf[0]);
656                 memcpy(s->packet,buf,n);
657                 s->s3->rbuf.left=n;
658                 s->s3->rbuf.offset=0;
659
660                 s->handshake_func=s->method->ssl_connect;
661                 }
662         else
663                 {
664                 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNKNOWN_PROTOCOL);
665                 goto err;
666                 }
667         s->init_num=0;
668
669         /* Since, if we are sending a ssl23 client hello, we are not
670          * reusing a session-id */
671         if (!ssl_get_new_session(s,0))
672                 goto err;
673
674         return(SSL_connect(s));
675 err:
676         return(-1);
677         }