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