21a32bce70613554e52b14c2876377e907762217
[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_SSL3
125     if (ver == SSL3_VERSION)
126         return (SSLv3_client_method());
127 #endif
128     if (ver == TLS1_VERSION)
129         return (TLSv1_client_method());
130     else if (ver == TLS1_1_VERSION)
131         return (TLSv1_1_client_method());
132     else if (ver == TLS1_2_VERSION)
133         return (TLSv1_2_client_method());
134     else
135         return (NULL);
136 }
137
138 IMPLEMENT_ssl23_meth_func(SSLv23_client_method,
139                           ssl_undefined_function,
140                           ssl23_connect, ssl23_get_client_method)
141
142 int ssl23_connect(SSL *s)
143 {
144     BUF_MEM *buf = NULL;
145     unsigned long Time = (unsigned long)time(NULL);
146     void (*cb) (const SSL *ssl, int type, int val) = NULL;
147     int ret = -1;
148     int new_state, state;
149
150     RAND_add(&Time, sizeof(Time), 0);
151     ERR_clear_error();
152     clear_sys_error();
153
154     if (s->info_callback != NULL)
155         cb = s->info_callback;
156     else if (s->ctx->info_callback != NULL)
157         cb = s->ctx->info_callback;
158
159     s->in_handshake++;
160     if (!SSL_in_init(s) || SSL_in_before(s)) {
161         if(!SSL_clear(s))
162             return -1;
163     }
164
165     for (;;) {
166         state = s->state;
167
168         switch (s->state) {
169         case SSL_ST_BEFORE:
170         case SSL_ST_CONNECT:
171         case SSL_ST_BEFORE | SSL_ST_CONNECT:
172         case SSL_ST_OK | SSL_ST_CONNECT:
173
174             if (s->session != NULL) {
175                 SSLerr(SSL_F_SSL23_CONNECT,
176                        SSL_R_SSL23_DOING_SESSION_ID_REUSE);
177                 ret = -1;
178                 goto end;
179             }
180             s->server = 0;
181             if (cb != NULL)
182                 cb(s, SSL_CB_HANDSHAKE_START, 1);
183
184             /* s->version=TLS1_VERSION; */
185             s->type = SSL_ST_CONNECT;
186
187             if (s->init_buf == NULL) {
188                 if ((buf = BUF_MEM_new()) == NULL) {
189                     ret = -1;
190                     goto end;
191                 }
192                 if (!BUF_MEM_grow(buf, SSL3_RT_MAX_PLAIN_LENGTH)) {
193                     ret = -1;
194                     goto end;
195                 }
196                 s->init_buf = buf;
197                 buf = NULL;
198             }
199
200             if (!ssl3_setup_buffers(s)) {
201                 ret = -1;
202                 goto end;
203             }
204
205             ssl3_init_finished_mac(s);
206
207             s->state = SSL23_ST_CW_CLNT_HELLO_A;
208             s->ctx->stats.sess_connect++;
209             s->init_num = 0;
210             break;
211
212         case SSL23_ST_CW_CLNT_HELLO_A:
213         case SSL23_ST_CW_CLNT_HELLO_B:
214
215             s->shutdown = 0;
216             ret = ssl23_client_hello(s);
217             if (ret <= 0)
218                 goto end;
219             s->state = SSL23_ST_CR_SRVR_HELLO_A;
220             s->init_num = 0;
221
222             break;
223
224         case SSL23_ST_CR_SRVR_HELLO_A:
225         case SSL23_ST_CR_SRVR_HELLO_B:
226             ret = ssl23_get_server_hello(s);
227             if (ret >= 0)
228                 cb = NULL;
229             goto end;
230             /* break; */
231
232         default:
233             SSLerr(SSL_F_SSL23_CONNECT, SSL_R_UNKNOWN_STATE);
234             ret = -1;
235             goto end;
236             /* break; */
237         }
238
239         if (s->debug) {
240             (void)BIO_flush(s->wbio);
241         }
242
243         if ((cb != NULL) && (s->state != state)) {
244             new_state = s->state;
245             s->state = state;
246             cb(s, SSL_CB_CONNECT_LOOP, 1);
247             s->state = new_state;
248         }
249     }
250  end:
251     s->in_handshake--;
252     if (buf != NULL)
253         BUF_MEM_free(buf);
254     if (cb != NULL)
255         cb(s, SSL_CB_CONNECT_EXIT, ret);
256     return (ret);
257 }
258
259 /*
260  * Fill a ClientRandom or ServerRandom field of length len. Returns <= 0 on
261  * failure, 1 on success.
262  */
263 int ssl_fill_hello_random(SSL *s, int server, unsigned char *result, int len)
264 {
265     int send_time = 0;
266     if (len < 4)
267         return 0;
268     if (server)
269         send_time = (s->mode & SSL_MODE_SEND_SERVERHELLO_TIME) != 0;
270     else
271         send_time = (s->mode & SSL_MODE_SEND_CLIENTHELLO_TIME) != 0;
272     if (send_time) {
273         unsigned long Time = (unsigned long)time(NULL);
274         unsigned char *p = result;
275         l2n(Time, p);
276         return RAND_pseudo_bytes(p, len - 4);
277     } else
278         return RAND_pseudo_bytes(result, len);
279 }
280
281 static int ssl23_client_hello(SSL *s)
282 {
283     unsigned char *buf;
284     unsigned char *p, *d;
285     int i;
286     unsigned long l;
287     int version = 0, version_major, version_minor;
288     int al = 0;
289 #ifndef OPENSSL_NO_COMP
290     int j;
291     SSL_COMP *comp;
292 #endif
293     int ret;
294     unsigned long mask, options = s->options;
295
296     /*
297      * SSL_OP_NO_X disables all protocols above X *if* there are
298      * some protocols below X enabled. This is required in order
299      * to maintain "version capability" vector contiguous. So
300      * that if application wants to disable TLS1.0 in favour of
301      * TLS1>=1, it would be insufficient to pass SSL_NO_TLSv1, the
302      * answer is SSL_OP_NO_TLSv1|SSL_OP_NO_SSLv3|SSL_OP_NO_SSLv2.
303      */
304     mask = SSL_OP_NO_TLSv1_1 | SSL_OP_NO_TLSv1
305 #if !defined(OPENSSL_NO_SSL3)
306         | SSL_OP_NO_SSLv3
307 #endif
308         ;
309 #if !defined(OPENSSL_NO_TLS1_2_CLIENT)
310     version = TLS1_2_VERSION;
311
312     if ((options & SSL_OP_NO_TLSv1_2) && (options & mask) != mask)
313         version = TLS1_1_VERSION;
314 #else
315     version = TLS1_1_VERSION;
316 #endif
317     mask &= ~SSL_OP_NO_TLSv1_1;
318     if ((options & SSL_OP_NO_TLSv1_1) && (options & mask) != mask)
319         version = TLS1_VERSION;
320     mask &= ~SSL_OP_NO_TLSv1;
321 #if !defined(OPENSSL_NO_SSL3)
322     if ((options & SSL_OP_NO_TLSv1) && (options & mask) != mask)
323         version = SSL3_VERSION;
324     mask &= ~SSL_OP_NO_SSLv3;
325 #endif
326
327     buf = (unsigned char *)s->init_buf->data;
328     if (s->state == SSL23_ST_CW_CLNT_HELLO_A) {
329         p = s->s3->client_random;
330         if (ssl_fill_hello_random(s, 0, p, SSL3_RANDOM_SIZE) <= 0)
331             return -1;
332
333         if (version == TLS1_2_VERSION) {
334             version_major = TLS1_2_VERSION_MAJOR;
335             version_minor = TLS1_2_VERSION_MINOR;
336         } else if (tls1_suiteb(s)) {
337             SSLerr(SSL_F_SSL23_CLIENT_HELLO,
338                    SSL_R_ONLY_TLS_1_2_ALLOWED_IN_SUITEB_MODE);
339             return -1;
340         } else if (version == TLS1_1_VERSION) {
341             version_major = TLS1_1_VERSION_MAJOR;
342             version_minor = TLS1_1_VERSION_MINOR;
343         } else if (version == TLS1_VERSION) {
344             version_major = TLS1_VERSION_MAJOR;
345             version_minor = TLS1_VERSION_MINOR;
346         } else if (FIPS_mode()) {
347             SSLerr(SSL_F_SSL23_CLIENT_HELLO,
348                    SSL_R_ONLY_TLS_ALLOWED_IN_FIPS_MODE);
349             return -1;
350         } else if (version == SSL3_VERSION) {
351             version_major = SSL3_VERSION_MAJOR;
352             version_minor = SSL3_VERSION_MINOR;
353         } else {
354             SSLerr(SSL_F_SSL23_CLIENT_HELLO, SSL_R_NO_PROTOCOLS_AVAILABLE);
355             return (-1);
356         }
357
358         s->client_version = version;
359
360         /* create Client Hello in SSL 3.0/TLS 1.0 format */
361
362         /*
363          * do the record header (5 bytes) and handshake message header (4
364          * bytes) last
365          */
366         d = p = &(buf[9]);
367
368         *(p++) = version_major;
369         *(p++) = version_minor;
370
371         /* Random stuff */
372         memcpy(p, s->s3->client_random, SSL3_RANDOM_SIZE);
373         p += SSL3_RANDOM_SIZE;
374
375         /* Session ID (zero since there is no reuse) */
376         *(p++) = 0;
377
378         /* Ciphers supported (using SSL 3.0/TLS 1.0 format) */
379         i = ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), &(p[2]),
380                                      ssl3_put_cipher_by_char);
381         if (i == 0) {
382             SSLerr(SSL_F_SSL23_CLIENT_HELLO, SSL_R_NO_CIPHERS_AVAILABLE);
383             return -1;
384         }
385 #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
386         /*
387          * Some servers hang if client hello > 256 bytes as hack workaround
388          * chop number of supported ciphers to keep it well below this if we
389          * use TLS v1.2
390          */
391         if (TLS1_get_version(s) >= TLS1_2_VERSION
392             && i > OPENSSL_MAX_TLS1_2_CIPHER_LENGTH)
393             i = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
394 #endif
395         s2n(i, p);
396         p += i;
397
398         /* COMPRESSION */
399 #ifdef OPENSSL_NO_COMP
400         *(p++) = 1;
401 #else
402         if (!ssl_allow_compression(s) || !s->ctx->comp_methods)
403             j = 0;
404         else
405             j = sk_SSL_COMP_num(s->ctx->comp_methods);
406         *(p++) = 1 + j;
407         for (i = 0; i < j; i++) {
408             comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
409             *(p++) = comp->id;
410         }
411 #endif
412         *(p++) = 0;             /* Add the NULL method */
413
414 #ifndef OPENSSL_NO_TLSEXT
415         /* TLS extensions */
416         if (ssl_prepare_clienthello_tlsext(s) <= 0) {
417             SSLerr(SSL_F_SSL23_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
418             return -1;
419         }
420         if ((p =
421              ssl_add_clienthello_tlsext(s, p, buf + SSL3_RT_MAX_PLAIN_LENGTH,
422                                         &al)) == NULL) {
423             ssl3_send_alert(s, SSL3_AL_FATAL, al);
424             SSLerr(SSL_F_SSL23_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
425             return -1;
426         }
427 #endif
428
429         l = p - d;
430
431         /* fill in 4-byte handshake header */
432         d = &(buf[5]);
433         *(d++) = SSL3_MT_CLIENT_HELLO;
434         l2n3(l, d);
435
436         l += 4;
437
438         if (l > SSL3_RT_MAX_PLAIN_LENGTH) {
439             SSLerr(SSL_F_SSL23_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
440             return -1;
441         }
442
443         /* fill in 5-byte record header */
444         d = buf;
445         *(d++) = SSL3_RT_HANDSHAKE;
446         *(d++) = version_major;
447         /*
448          * Some servers hang if we use long client hellos and a record number
449          * > TLS 1.0.
450          */
451         if (TLS1_get_client_version(s) > TLS1_VERSION)
452             *(d++) = 1;
453         else
454             *(d++) = version_minor;
455         s2n((int)l, d);
456
457         /* number of bytes to write */
458         s->init_num = p - buf;
459         s->init_off = 0;
460
461         ssl3_finish_mac(s, &(buf[5]), s->init_num - 5);
462
463         s->state = SSL23_ST_CW_CLNT_HELLO_B;
464         s->init_off = 0;
465     }
466
467     /* SSL3_ST_CW_CLNT_HELLO_B */
468     ret = ssl23_write_bytes(s);
469
470     if ((ret >= 2) && s->msg_callback) {
471         /* Client Hello has been sent; tell msg_callback */
472         s->msg_callback(1, version, SSL3_RT_HEADER, s->init_buf->data, 5, s,
473                         s->msg_callback_arg);
474         s->msg_callback(1, version, SSL3_RT_HANDSHAKE, s->init_buf->data + 5,
475                         ret - 5, s, s->msg_callback_arg);
476     }
477
478     return ret;
479 }
480
481 static int ssl23_get_server_hello(SSL *s)
482 {
483     char buf[8];
484     unsigned char *p;
485     int i;
486     int n;
487
488     n = ssl23_read_bytes(s, 7);
489
490     if (n != 7)
491         return (n);
492     p = s->packet;
493
494     memcpy(buf, p, n);
495
496     if (p[1] == SSL3_VERSION_MAJOR &&
497         p[2] <= TLS1_2_VERSION_MINOR &&
498         ((p[0] == SSL3_RT_HANDSHAKE && p[5] == SSL3_MT_SERVER_HELLO) ||
499          (p[0] == SSL3_RT_ALERT && p[3] == 0 && p[4] == 2))) {
500         /* we have sslv3 or tls1 (server hello or alert) */
501
502 #ifndef OPENSSL_NO_SSL3
503         if ((p[2] == SSL3_VERSION_MINOR) && !(s->options & SSL_OP_NO_SSLv3)) {
504             if (FIPS_mode()) {
505                 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,
506                        SSL_R_ONLY_TLS_ALLOWED_IN_FIPS_MODE);
507                 goto err;
508             }
509             s->version = SSL3_VERSION;
510             s->method = SSLv3_client_method();
511         } else
512 #endif
513         if ((p[2] == TLS1_VERSION_MINOR) && !(s->options & SSL_OP_NO_TLSv1)) {
514             s->version = TLS1_VERSION;
515             s->method = TLSv1_client_method();
516         } else if ((p[2] == TLS1_1_VERSION_MINOR) &&
517                    !(s->options & SSL_OP_NO_TLSv1_1)) {
518             s->version = TLS1_1_VERSION;
519             s->method = TLSv1_1_client_method();
520         } else if ((p[2] == TLS1_2_VERSION_MINOR) &&
521                    !(s->options & SSL_OP_NO_TLSv1_2)) {
522             s->version = TLS1_2_VERSION;
523             s->method = TLSv1_2_client_method();
524         } else {
525             SSLerr(SSL_F_SSL23_GET_SERVER_HELLO, SSL_R_UNSUPPORTED_PROTOCOL);
526             goto err;
527         }
528
529         /* ensure that TLS_MAX_VERSION is up-to-date */
530         OPENSSL_assert(s->version <= TLS_MAX_VERSION);
531
532         if (!ssl_security(s, SSL_SECOP_VERSION, 0, s->version, NULL)) {
533             SSLerr(SSL_F_SSL23_GET_SERVER_HELLO, SSL_R_VERSION_TOO_LOW);
534             goto err;
535         }
536
537         if (p[0] == SSL3_RT_ALERT && p[5] != SSL3_AL_WARNING) {
538             /* fatal alert */
539
540             void (*cb) (const SSL *ssl, int type, int val) = NULL;
541             int j;
542
543             if (s->info_callback != NULL)
544                 cb = s->info_callback;
545             else if (s->ctx->info_callback != NULL)
546                 cb = s->ctx->info_callback;
547
548             i = p[5];
549             if (cb != NULL) {
550                 j = (i << 8) | p[6];
551                 cb(s, SSL_CB_READ_ALERT, j);
552             }
553
554             if (s->msg_callback) {
555                 s->msg_callback(0, s->version, SSL3_RT_HEADER, p, 5, s,
556                                 s->msg_callback_arg);
557                 s->msg_callback(0, s->version, SSL3_RT_ALERT, p + 5, 2, s,
558                                 s->msg_callback_arg);
559             }
560
561             s->rwstate = SSL_NOTHING;
562             SSLerr(SSL_F_SSL23_GET_SERVER_HELLO, SSL_AD_REASON_OFFSET + p[6]);
563             goto err;
564         }
565
566         if (!ssl_init_wbio_buffer(s, 1))
567             goto err;
568
569         /* we are in this state */
570         s->state = SSL3_ST_CR_SRVR_HELLO_A;
571
572         /*
573          * put the 7 bytes we have read into the input buffer for SSLv3
574          */
575         s->rstate = SSL_ST_READ_HEADER;
576         s->packet_length = n;
577         if (s->s3->rbuf.buf == NULL)
578             if (!ssl3_setup_read_buffer(s))
579                 goto err;
580         s->packet = &(s->s3->rbuf.buf[0]);
581         memcpy(s->packet, buf, n);
582         s->s3->rbuf.left = n;
583         s->s3->rbuf.offset = 0;
584
585         s->handshake_func = s->method->ssl_connect;
586     } else {
587         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO, SSL_R_UNKNOWN_PROTOCOL);
588         goto err;
589     }
590     s->init_num = 0;
591
592     /*
593      * Since, if we are sending a ssl23 client hello, we are not reusing a
594      * session-id
595      */
596     if (!ssl_get_new_session(s, 0))
597         goto err;
598
599     return (SSL_connect(s));
600  err:
601     return (-1);
602 }