275eb52f13ea8ffd87f2aae6757f567d95df5d6f
[openssl.git] / ssl / s2_lib.c
1 /* ssl/s2_lib.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 "rsa.h"
61 #include "objects.h"
62 #include "ssl_locl.h"
63
64 #ifndef NOPROTO
65 static int ssl2_ok(SSL *s);
66 static long ssl2_default_timeout(void );
67 #else
68 static int ssl2_ok();
69 static long ssl2_default_timeout();
70 #endif
71
72 char *ssl2_version_str="SSLv2 part of SSLeay 0.9.0b 29-Jun-1998";
73
74 #define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))
75
76 SSL_CIPHER ssl2_ciphers[]={
77 /* NULL_WITH_MD5 v3 */
78 #if 0
79         {
80         1,
81         SSL2_TXT_NULL_WITH_MD5,
82         SSL2_CK_NULL_WITH_MD5,
83         SSL_kRSA|SSL_aRSA|SSL_eNULL|SSL_MD5|SSL_EXP|SSL_SSLV2,
84         0,
85         SSL_ALL_CIPHERS,
86         },
87 #endif
88 /* RC4_128_EXPORT40_WITH_MD5 */
89         {
90         1,
91         SSL2_TXT_RC4_128_EXPORT40_WITH_MD5,
92         SSL2_CK_RC4_128_EXPORT40_WITH_MD5,
93         SSL_kRSA|SSL_aRSA|SSL_RC4|SSL_MD5|SSL_EXP|SSL_SSLV2,
94         SSL2_CF_5_BYTE_ENC,
95         SSL_ALL_CIPHERS,
96         },
97 /* RC4_128_WITH_MD5 */
98         {
99         1,
100         SSL2_TXT_RC4_128_WITH_MD5,
101         SSL2_CK_RC4_128_WITH_MD5,
102         SSL_kRSA|SSL_aRSA|SSL_RC4|SSL_MD5|SSL_NOT_EXP|SSL_SSLV2|SSL_MEDIUM,
103         0,
104         SSL_ALL_CIPHERS,
105         },
106 /* RC2_128_CBC_EXPORT40_WITH_MD5 */
107         {
108         1,
109         SSL2_TXT_RC2_128_CBC_EXPORT40_WITH_MD5,
110         SSL2_CK_RC2_128_CBC_EXPORT40_WITH_MD5,
111         SSL_kRSA|SSL_aRSA|SSL_RC2|SSL_MD5|SSL_EXP|SSL_SSLV2,
112         SSL2_CF_5_BYTE_ENC,
113         SSL_ALL_CIPHERS,
114         },
115 /* RC2_128_CBC_WITH_MD5 */
116         {
117         1,
118         SSL2_TXT_RC2_128_CBC_WITH_MD5,
119         SSL2_CK_RC2_128_CBC_WITH_MD5,
120         SSL_kRSA|SSL_aRSA|SSL_RC2|SSL_MD5|SSL_NOT_EXP|SSL_SSLV2|SSL_MEDIUM,
121         0,
122         SSL_ALL_CIPHERS,
123         },
124 /* IDEA_128_CBC_WITH_MD5 */
125         {
126         1,
127         SSL2_TXT_IDEA_128_CBC_WITH_MD5,
128         SSL2_CK_IDEA_128_CBC_WITH_MD5,
129         SSL_kRSA|SSL_aRSA|SSL_IDEA|SSL_MD5|SSL_NOT_EXP|SSL_SSLV2|SSL_MEDIUM,
130         0,
131         SSL_ALL_CIPHERS,
132         },
133 /* DES_64_CBC_WITH_MD5 */
134         {
135         1,
136         SSL2_TXT_DES_64_CBC_WITH_MD5,
137         SSL2_CK_DES_64_CBC_WITH_MD5,
138         SSL_kRSA|SSL_aRSA|SSL_DES|SSL_MD5|SSL_NOT_EXP|SSL_SSLV2|SSL_LOW,
139         0,
140         SSL_ALL_CIPHERS,
141         },
142 /* DES_192_EDE3_CBC_WITH_MD5 */
143         {
144         1,
145         SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5,
146         SSL2_CK_DES_192_EDE3_CBC_WITH_MD5,
147         SSL_kRSA|SSL_aRSA|SSL_3DES|SSL_MD5|SSL_NOT_EXP|SSL_SSLV2|SSL_HIGH,
148         0,
149         SSL_ALL_CIPHERS,
150         },
151 /* RC4_64_WITH_MD5 */
152 #if 1
153         {
154         1,
155         SSL2_TXT_RC4_64_WITH_MD5,
156         SSL2_CK_RC4_64_WITH_MD5,
157         SSL_kRSA|SSL_aRSA|SSL_RC4|SSL_MD5|SSL_SSLV2|SSL_LOW,
158         SSL2_CF_8_BYTE_ENC,
159         SSL_ALL_CIPHERS,
160         },
161 #endif
162 /* NULL SSLeay (testing) */
163 #if 0
164         {       
165         0,
166         SSL2_TXT_NULL,
167         SSL2_CK_NULL,
168         0,
169         SSL_ALL_CIPHERS,
170         },
171 #endif
172
173 /* end of list :-) */
174         };
175
176 static SSL_METHOD SSLv2_data= {
177         SSL2_VERSION,
178         ssl2_new,       /* local */
179         ssl2_clear,     /* local */
180         ssl2_free,      /* local */
181         ssl_undefined_function,
182         ssl_undefined_function,
183         ssl2_read,
184         ssl2_peek,
185         ssl2_write,
186         ssl2_shutdown,
187         ssl2_ok,
188         ssl2_ctrl,      /* local */
189         ssl2_ctx_ctrl,  /* local */
190         ssl2_get_cipher_by_char,
191         ssl2_put_cipher_by_char,
192         ssl2_pending,
193         ssl2_num_ciphers,
194         ssl2_get_cipher,
195         ssl_bad_method,
196         ssl2_default_timeout,
197         &ssl3_undef_enc_method,
198         };
199
200 static long ssl2_default_timeout()
201         {
202         return(300);
203         }
204
205 SSL_METHOD *sslv2_base_method()
206         {
207         return(&SSLv2_data);
208         }
209
210 int ssl2_num_ciphers()
211         {
212         return(SSL2_NUM_CIPHERS);
213         }
214
215 SSL_CIPHER *ssl2_get_cipher(u)
216 unsigned int u;
217         {
218         if (u < SSL2_NUM_CIPHERS)
219                 return(&(ssl2_ciphers[SSL2_NUM_CIPHERS-1-u]));
220         else
221                 return(NULL);
222         }
223
224 int ssl2_pending(s)
225 SSL *s;
226         {
227         return(s->s2->ract_data_length);
228         }
229
230 int ssl2_new(s)
231 SSL *s;
232         {
233         SSL2_CTX *s2;
234
235         if ((s2=(SSL2_CTX *)Malloc(sizeof(SSL2_CTX))) == NULL) goto err;
236         memset(s2,0,sizeof(SSL2_CTX));
237
238         if ((s2->rbuf=(unsigned char *)Malloc(
239                 SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2)) == NULL) goto err;
240         if ((s2->wbuf=(unsigned char *)Malloc(
241                 SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2)) == NULL) goto err;
242         s->s2=s2;
243
244         ssl2_clear(s);
245         return(1);
246 err:
247         if (s2 != NULL)
248                 {
249                 if (s2->wbuf != NULL) Free(s2->wbuf);
250                 if (s2->rbuf != NULL) Free(s2->rbuf);
251                 Free(s2);
252                 }
253         return(0);
254         }
255
256 void ssl2_free(s)
257 SSL *s;
258         {
259         SSL2_CTX *s2;
260
261         s2=s->s2;
262         if (s2->rbuf != NULL) Free(s2->rbuf);
263         if (s2->wbuf != NULL) Free(s2->wbuf);
264         memset(s2,0,sizeof(SSL2_CTX));
265         Free(s2);
266         s->s2=NULL;
267         }
268
269 void ssl2_clear(s)
270 SSL *s;
271         {
272         SSL2_CTX *s2;
273         unsigned char *rbuf,*wbuf;
274
275         s2=s->s2;
276
277         rbuf=s2->rbuf;
278         wbuf=s2->wbuf;
279
280         memset(s2,0,sizeof(SSL2_CTX));
281
282         s2->rbuf=rbuf;
283         s2->wbuf=wbuf;
284         s2->clear_text=1;
285         s->packet=s2->rbuf;
286         s->version=SSL2_VERSION;
287         s->packet_length=0;
288         }
289
290 long ssl2_ctrl(s,cmd,larg,parg)
291 SSL *s;
292 int cmd;
293 long larg;
294 char *parg;
295         {
296         int ret=0;
297
298         switch(cmd)
299                 {
300         case SSL_CTRL_GET_SESSION_REUSED:
301                 ret=s->hit;
302                 break;
303         default:
304                 break;
305                 }
306         return(ret);
307         }
308
309 long ssl2_ctx_ctrl(ctx,cmd,larg,parg)
310 SSL_CTX *ctx;
311 int cmd;
312 long larg;
313 char *parg;
314         {
315         return(0);
316         }
317
318 /* This function needs to check if the ciphers required are actually
319  * available */
320 SSL_CIPHER *ssl2_get_cipher_by_char(p)
321 unsigned char *p;
322         {
323         static int init=1;
324         static SSL_CIPHER *sorted[SSL2_NUM_CIPHERS];
325         SSL_CIPHER c,*cp= &c,**cpp;
326         unsigned long id;
327         int i;
328
329         if (init)
330                 {
331                 init=0;
332
333                 for (i=0; i<SSL2_NUM_CIPHERS; i++)
334                         sorted[i]= &(ssl2_ciphers[i]);
335
336                 qsort(  (char *)sorted,
337                         SSL2_NUM_CIPHERS,sizeof(SSL_CIPHER *),
338                         FP_ICC ssl_cipher_ptr_id_cmp);
339                 }
340
341         id=0x02000000L|((unsigned long)p[0]<<16L)|
342                 ((unsigned long)p[1]<<8L)|(unsigned long)p[2];
343         c.id=id;
344         cpp=(SSL_CIPHER **)OBJ_bsearch((char *)&cp,
345                 (char *)sorted,
346                 SSL2_NUM_CIPHERS,sizeof(SSL_CIPHER *),
347                 (int (*)())ssl_cipher_ptr_id_cmp);
348         if ((cpp == NULL) || !(*cpp)->valid)
349                 return(NULL);
350         else
351                 return(*cpp);
352         }
353
354 int ssl2_put_cipher_by_char(c,p)
355 SSL_CIPHER *c;
356 unsigned char *p;
357         {
358         long l;
359
360         if (p != NULL)
361                 {
362                 l=c->id;
363                 if ((l & 0xff000000) != 0x02000000) return(0);
364                 p[0]=((unsigned char)(l>>16L))&0xFF;
365                 p[1]=((unsigned char)(l>> 8L))&0xFF;
366                 p[2]=((unsigned char)(l     ))&0xFF;
367                 }
368         return(3);
369         }
370
371 void ssl2_generate_key_material(s)
372 SSL *s;
373         {
374         unsigned int i;
375         MD5_CTX ctx;
376         unsigned char *km;
377         unsigned char c='0';
378
379         km=s->s2->key_material;
380         for (i=0; i<s->s2->key_material_length; i+=MD5_DIGEST_LENGTH)
381                 {
382                 MD5_Init(&ctx);
383
384                 MD5_Update(&ctx,s->session->master_key,s->session->master_key_length);
385                 MD5_Update(&ctx,(unsigned char *)&c,1);
386                 c++;
387                 MD5_Update(&ctx,s->s2->challenge,s->s2->challenge_length);
388                 MD5_Update(&ctx,s->s2->conn_id,s->s2->conn_id_length);
389                 MD5_Final(km,&ctx);
390                 km+=MD5_DIGEST_LENGTH;
391                 }
392         }
393
394 void ssl2_return_error(s,err)
395 SSL *s;
396 int err;
397         {
398         if (!s->error)
399                 {
400                 s->error=3;
401                 s->error_code=err;
402
403                 ssl2_write_error(s);
404                 }
405         }
406
407
408 void ssl2_write_error(s)
409 SSL *s;
410         {
411         char buf[3];
412         int i,error;
413
414         buf[0]=SSL2_MT_ERROR;
415         buf[1]=(s->error_code>>8)&0xff;
416         buf[2]=(s->error_code)&0xff;
417
418 /*      state=s->rwstate;*/
419         error=s->error;
420         s->error=0;
421         i=ssl2_write(s,&(buf[3-error]),error);
422 /*      if (i == error) s->rwstate=state; */
423
424         if (i < 0)
425                 s->error=error;
426         else if (i != s->error)
427                 s->error=error-i;
428         /* else
429                 s->error=0; */
430         }
431
432 static int ssl2_ok(s)
433 SSL *s;
434         {
435         return(1);
436         }
437
438 int ssl2_shutdown(s)
439 SSL *s;
440         {
441         s->shutdown=(SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
442         return(1);
443         }
444