Change #include filenames from <foo.h> to <openssl.h>.
[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 #include <stdio.h>
60 #include <openssl/buffer.h>
61 #include <openssl/rand.h>
62 #include <openssl/objects.h>
63 #include <openssl/evp.h>
64 #include "ssl_locl.h"
65
66 #define BREAK break
67
68 #ifndef NOPROTO
69 static SSL_METHOD *ssl23_get_client_method(int ver);
70 static int ssl23_client_hello(SSL *s);
71 static int ssl23_get_server_hello(SSL *s);
72 #else
73 static SSL_METHOD *ssl23_get_client_method();
74 static int ssl23_client_hello();
75 static int ssl23_get_server_hello();
76 #endif
77
78 static SSL_METHOD *ssl23_get_client_method(int ver)
79         {
80         if (ver == SSL2_VERSION)
81                 return(SSLv2_client_method());
82         else if (ver == SSL3_VERSION)
83                 return(SSLv3_client_method());
84         else if (ver == TLS1_VERSION)
85                 return(TLSv1_client_method());
86         else
87                 return(NULL);
88         }
89
90 SSL_METHOD *SSLv23_client_method(void)
91         {
92         static int init=1;
93         static SSL_METHOD SSLv23_client_data;
94
95         if (init)
96                 {
97                 memcpy((char *)&SSLv23_client_data,
98                         (char *)sslv23_base_method(),sizeof(SSL_METHOD));
99                 SSLv23_client_data.ssl_connect=ssl23_connect;
100                 SSLv23_client_data.get_ssl_method=ssl23_get_client_method;
101                 init=0;
102                 }
103         return(&SSLv23_client_data);
104         }
105
106 int ssl23_connect(SSL *s)
107         {
108         BUF_MEM *buf;
109         unsigned long Time=time(NULL);
110         void (*cb)()=NULL;
111         int ret= -1;
112         int new_state,state;
113
114         RAND_seed(&Time,sizeof(Time));
115         ERR_clear_error();
116         clear_sys_error();
117
118         if (s->info_callback != NULL)
119                 cb=s->info_callback;
120         else if (s->ctx->info_callback != NULL)
121                 cb=s->ctx->info_callback;
122         
123         if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s); 
124         s->in_handshake++;
125
126         for (;;)
127                 {
128                 state=s->state;
129
130                 switch(s->state)
131                         {
132                 case SSL_ST_BEFORE:
133                 case SSL_ST_CONNECT:
134                 case SSL_ST_BEFORE|SSL_ST_CONNECT:
135                 case SSL_ST_OK|SSL_ST_CONNECT:
136
137                         if (s->session != NULL)
138                                 {
139                                 SSLerr(SSL_F_SSL23_CONNECT,SSL_R_SSL23_DOING_SESSION_ID_REUSE);
140                                 ret= -1;
141                                 goto end;
142                                 }
143                         s->server=0;
144                         if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
145
146                         /* s->version=TLS1_VERSION; */
147                         s->type=SSL_ST_CONNECT;
148
149                         if (s->init_buf == NULL)
150                                 {
151                                 if ((buf=BUF_MEM_new()) == NULL)
152                                         {
153                                         ret= -1;
154                                         goto end;
155                                         }
156                                 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
157                                         {
158                                         ret= -1;
159                                         goto end;
160                                         }
161                                 s->init_buf=buf;
162                                 }
163
164                         if (!ssl3_setup_buffers(s)) { ret= -1; goto end; }
165
166                         ssl3_init_finished_mac(s);
167
168                         s->state=SSL23_ST_CW_CLNT_HELLO_A;
169                         s->ctx->stats.sess_connect++;
170                         s->init_num=0;
171                         break;
172
173                 case SSL23_ST_CW_CLNT_HELLO_A:
174                 case SSL23_ST_CW_CLNT_HELLO_B:
175
176                         s->shutdown=0;
177                         ret=ssl23_client_hello(s);
178                         if (ret <= 0) goto end;
179                         s->state=SSL23_ST_CR_SRVR_HELLO_A;
180                         s->init_num=0;
181
182                         break;
183
184                 case SSL23_ST_CR_SRVR_HELLO_A:
185                 case SSL23_ST_CR_SRVR_HELLO_B:
186                         ret=ssl23_get_server_hello(s);
187                         if (ret >= 0) cb=NULL;
188                         goto end;
189                         /* break; */
190
191                 default:
192                         SSLerr(SSL_F_SSL23_CONNECT,SSL_R_UNKNOWN_STATE);
193                         ret= -1;
194                         goto end;
195                         /* break; */
196                         }
197
198                 if (s->debug) BIO_flush(s->wbio);
199
200                 if ((cb != NULL) && (s->state != state))
201                         {
202                         new_state=s->state;
203                         s->state=state;
204                         cb(s,SSL_CB_CONNECT_LOOP,1);
205                         s->state=new_state;
206                         }
207                 }
208 end:
209         s->in_handshake--;
210         if (cb != NULL)
211                 cb(s,SSL_CB_CONNECT_EXIT,ret);
212         return(ret);
213         }
214
215
216 static int ssl23_client_hello(SSL *s)
217         {
218         unsigned char *buf;
219         unsigned char *p,*d;
220         int i,ch_len;
221
222         buf=(unsigned char *)s->init_buf->data;
223         if (s->state == SSL23_ST_CW_CLNT_HELLO_A)
224                 {
225 #if 0
226                 /* don't reuse session-id's */
227                 if (!ssl_get_new_session(s,0))
228                         {
229                         return(-1);
230                         }
231 #endif
232
233                 p=s->s3->client_random;
234                 RAND_bytes(p,SSL3_RANDOM_SIZE);
235
236                 /* Do the message type and length last */
237                 d= &(buf[2]);
238                 p=d+9;
239
240                 *(d++)=SSL2_MT_CLIENT_HELLO;
241                 if (!(s->options & SSL_OP_NO_TLSv1))
242                         {
243                         *(d++)=TLS1_VERSION_MAJOR;
244                         *(d++)=TLS1_VERSION_MINOR;
245                         s->client_version=TLS1_VERSION;
246                         }
247                 else if (!(s->options & SSL_OP_NO_SSLv3))
248                         {
249                         *(d++)=SSL3_VERSION_MAJOR;
250                         *(d++)=SSL3_VERSION_MINOR;
251                         s->client_version=SSL3_VERSION;
252                         }
253                 else if (!(s->options & SSL_OP_NO_SSLv2))
254                         {
255                         *(d++)=SSL2_VERSION_MAJOR;
256                         *(d++)=SSL2_VERSION_MINOR;
257                         s->client_version=SSL2_VERSION;
258                         }
259                 else
260                         {
261                         SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_PROTOCOLS_AVAILABLE);
262                         return(-1);
263                         }
264
265                 /* Ciphers supported */
266                 i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),p);
267                 if (i == 0)
268                         {
269                         /* no ciphers */
270                         SSLerr(SSL_F_SSL23_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
271                         return(-1);
272                         }
273                 s2n(i,d);
274                 p+=i;
275
276                 /* put in the session-id, zero since there is no
277                  * reuse. */
278 #if 0
279                 s->session->session_id_length=0;
280 #endif
281                 s2n(0,d);
282
283                 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
284                         ch_len=SSL2_CHALLENGE_LENGTH;
285                 else
286                         ch_len=SSL2_MAX_CHALLENGE_LENGTH;
287
288                 /* write out sslv2 challenge */
289                 if (SSL3_RANDOM_SIZE < ch_len)
290                         i=SSL3_RANDOM_SIZE;
291                 else
292                         i=ch_len;
293                 s2n(i,d);
294                 memset(&(s->s3->client_random[0]),0,SSL3_RANDOM_SIZE);
295                 RAND_bytes(&(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
296                 memcpy(p,&(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
297                 p+=i;
298
299                 i= p- &(buf[2]);
300                 buf[0]=((i>>8)&0xff)|0x80;
301                 buf[1]=(i&0xff);
302
303                 s->state=SSL23_ST_CW_CLNT_HELLO_B;
304                 /* number of bytes to write */
305                 s->init_num=i+2;
306                 s->init_off=0;
307
308                 ssl3_finish_mac(s,&(buf[2]),i);
309                 }
310
311         /* SSL3_ST_CW_CLNT_HELLO_B */
312         return(ssl23_write_bytes(s));
313         }
314
315 static int ssl23_get_server_hello(SSL *s)
316         {
317         char buf[8];
318         unsigned char *p;
319         int i,ch_len;
320         int n;
321
322         n=ssl23_read_bytes(s,7);
323
324         if (n != 7) return(n);
325         p=s->packet;
326
327         memcpy(buf,p,n);
328
329         if ((p[0] & 0x80) && (p[2] == SSL2_MT_SERVER_HELLO) &&
330                 (p[5] == 0x00) && (p[6] == 0x02))
331                 {
332                 /* we are talking sslv2 */
333                 /* we need to clean up the SSLv3 setup and put in the
334                  * sslv2 stuff. */
335
336                 if (s->options & SSL_OP_NO_SSLv2)
337                         {
338                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
339                         goto err;
340                         }
341                 if (s->s2 == NULL)
342                         {
343                         if (!ssl2_new(s))
344                                 goto err;
345                         }
346                 else
347                         ssl2_clear(s);
348
349                 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
350                         ch_len=SSL2_CHALLENGE_LENGTH;
351                 else
352                         ch_len=SSL2_MAX_CHALLENGE_LENGTH;
353
354                 /* write out sslv2 challenge */
355                 i=(SSL3_RANDOM_SIZE < ch_len)
356                         ?SSL3_RANDOM_SIZE:ch_len;
357                 s->s2->challenge_length=i;
358                 memcpy(s->s2->challenge,
359                         &(s->s3->client_random[SSL3_RANDOM_SIZE-i]),i);
360
361                 if (s->s3 != NULL) ssl3_free(s);
362
363                 if (!BUF_MEM_grow(s->init_buf,
364                         SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER))
365                         {
366                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,ERR_R_BUF_LIB);
367                         goto err;
368                         }
369
370                 s->state=SSL2_ST_GET_SERVER_HELLO_A;
371                 s->s2->ssl2_rollback=1;
372
373                 /* setup the 5 bytes we have read so we get them from
374                  * the sslv2 buffer */
375                 s->rstate=SSL_ST_READ_HEADER;
376                 s->packet_length=n;
377                 s->packet= &(s->s2->rbuf[0]);
378                 memcpy(s->packet,buf,n);
379                 s->s2->rbuf_left=n;
380                 s->s2->rbuf_offs=0;
381
382                 /* we have already written one */
383                 s->s2->write_sequence=1;
384
385                 s->method=SSLv2_client_method();
386                 s->handshake_func=s->method->ssl_connect;
387                 }
388         else if ((p[0] == SSL3_RT_HANDSHAKE) &&
389                  (p[1] == SSL3_VERSION_MAJOR) &&
390                  ((p[2] == SSL3_VERSION_MINOR) ||
391                   (p[2] == TLS1_VERSION_MINOR)) &&
392                  (p[5] == SSL3_MT_SERVER_HELLO))
393                 {
394                 /* we have sslv3 or tls1 */
395
396                 if (!ssl_init_wbio_buffer(s,1)) goto err;
397
398                 /* we are in this state */
399                 s->state=SSL3_ST_CR_SRVR_HELLO_A;
400
401                 /* put the 5 bytes we have read into the input buffer
402                  * for SSLv3 */
403                 s->rstate=SSL_ST_READ_HEADER;
404                 s->packet_length=n;
405                 s->packet= &(s->s3->rbuf.buf[0]);
406                 memcpy(s->packet,buf,n);
407                 s->s3->rbuf.left=n;
408                 s->s3->rbuf.offset=0;
409
410                 if ((p[2] == SSL3_VERSION_MINOR) &&
411                         !(s->options & SSL_OP_NO_SSLv3))
412                         {
413                         s->version=SSL3_VERSION;
414                         s->method=SSLv3_client_method();
415                         }
416                 else if ((p[2] == TLS1_VERSION_MINOR) &&
417                         !(s->options & SSL_OP_NO_TLSv1))
418                         {
419                         s->version=TLS1_VERSION;
420                         s->method=TLSv1_client_method();
421                         }
422                 else
423                         {
424                         SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
425                         goto err;
426                         }
427                         
428                 s->handshake_func=s->method->ssl_connect;
429                 }
430         else if ((p[0] == SSL3_RT_ALERT) &&
431                  (p[1] == SSL3_VERSION_MAJOR) &&
432                  ((p[2] == SSL3_VERSION_MINOR) ||
433                   (p[2] == TLS1_VERSION_MINOR)) &&
434                  (p[3] == 0) &&
435                  (p[4] == 2))
436                 {
437                 void (*cb)()=NULL;
438                 int j;
439
440                 /* An alert */
441                 if (s->info_callback != NULL)
442                         cb=s->info_callback;
443                 else if (s->ctx->info_callback != NULL)
444                         cb=s->ctx->info_callback;
445  
446                 i=p[5];
447                 if (cb != NULL)
448                         {
449                         j=(i<<8)|p[6];
450                         cb(s,SSL_CB_READ_ALERT,j);
451                         }
452
453                 s->rwstate=SSL_NOTHING;
454                 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_AD_REASON_OFFSET+p[6]);
455                 goto err;
456                 }
457         else
458                 {
459                 SSLerr(SSL_F_SSL23_GET_SERVER_HELLO,SSL_R_UNKNOWN_PROTOCOL);
460                 goto err;
461                 }
462         s->init_num=0;
463
464         /* Since, if we are sending a ssl23 client hello, we are not
465          * reusing a session-id */
466         if (!ssl_get_new_session(s,0))
467                 goto err;
468
469         s->first_packet=1;
470         return(SSL_connect(s));
471 err:
472         return(-1);
473         }
474