This commit was generated by cvs2svn to track changes on a CVS vendor
[openssl.git] / ssl / s2_lib.c
1 /* ssl/s2_lib.c */
2 /* Copyright (C) 1995-1997 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.8.1b 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_64_CBC_WITH_SHA */
143 #if 0
144         {
145         1,
146         SSL2_TXT_DES_64_CBC_WITH_SHA,
147         SSL2_CK_DES_64_CBC_WITH_SHA,
148         SSL_kRSA|SSL_aRSA|SSL_DES|SSL_SHA0|SSL_NOT_EXP|SSL_SSLV2|SSL_LOW,
149         0,
150         SSL_ALL_CIPHERS,
151         },
152 #endif
153 /* DES_192_EDE3_CBC_WITH_MD5 */
154         {
155         1,
156         SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5,
157         SSL2_CK_DES_192_EDE3_CBC_WITH_MD5,
158         SSL_kRSA|SSL_aRSA|SSL_3DES|SSL_MD5|SSL_NOT_EXP|SSL_SSLV2|SSL_HIGH,
159         0,
160         SSL_ALL_CIPHERS,
161         },
162 /* DES_192_EDE3_CBC_WITH_SHA */
163 #if 0
164         {
165         1,
166         SSL2_TXT_DES_192_EDE3_CBC_WITH_SHA,
167         SSL2_CK_DES_192_EDE3_CBC_WITH_SHA,
168         SSL_kRSA|SSL_aRSA|SSL_3DES|SSL_SHA0|SSL_NOT_EXP|SSL_SSLV2|SSL_HIGH,
169         0,
170         SSL_ALL_CIPHERS,
171         },
172 #endif
173 /* RC4_64_WITH_MD5 */
174 #if 1
175         {
176         1,
177         SSL2_TXT_RC4_64_WITH_MD5,
178         SSL2_CK_RC4_64_WITH_MD5,
179         SSL_kRSA|SSL_aRSA|SSL_RC4|SSL_MD5|SSL_SSLV2|SSL_LOW,
180         SSL2_CF_8_BYTE_ENC,
181         SSL_ALL_CIPHERS,
182         },
183 #endif
184 /* NULL SSLeay (testing) */
185 #if 0
186         {       
187         0,
188         SSL2_TXT_NULL,
189         SSL2_CK_NULL,
190         0,
191         SSL_ALL_CIPHERS,
192         },
193 #endif
194
195 /* end of list :-) */
196         };
197
198 static SSL_METHOD SSLv2_data= {
199         2,
200         ssl2_new,       /* local */
201         ssl2_clear,     /* local */
202         ssl2_free,      /* local */
203         ssl_undefined_function,
204         ssl_undefined_function,
205         ssl2_read,
206         ssl2_peek,
207         ssl2_write,
208         ssl2_shutdown,
209         ssl2_ok,
210         ssl2_ctrl,      /* local */
211         ssl2_ctx_ctrl,  /* local */
212         ssl2_get_cipher_by_char,
213         ssl2_put_cipher_by_char,
214         ssl2_pending,
215         ssl2_num_ciphers,
216         ssl2_get_cipher,
217         ssl_bad_method,
218         ssl2_default_timeout,
219         };
220
221 static long ssl2_default_timeout()
222         {
223         return(300);
224         }
225
226 SSL_METHOD *sslv2_base_method()
227         {
228         return(&SSLv2_data);
229         }
230
231 int ssl2_num_ciphers()
232         {
233         return(SSL2_NUM_CIPHERS);
234         }
235
236 SSL_CIPHER *ssl2_get_cipher(u)
237 unsigned int u;
238         {
239         if (u < SSL2_NUM_CIPHERS)
240                 return(&(ssl2_ciphers[SSL2_NUM_CIPHERS-1-u]));
241         else
242                 return(NULL);
243         }
244
245 int ssl2_pending(s)
246 SSL *s;
247         {
248         return(s->s2->ract_data_length);
249         }
250
251 int ssl2_new(s)
252 SSL *s;
253         {
254         SSL2_CTX *s2;
255
256         if ((s2=(SSL2_CTX *)Malloc(sizeof(SSL2_CTX))) == NULL) goto err;
257
258         if ((s2->rbuf=(unsigned char *)Malloc(
259                 SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2)) == NULL) goto err;
260         if ((s2->wbuf=(unsigned char *)Malloc(
261                 SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2)) == NULL) goto err;
262         s->s2=s2;
263
264         ssl2_clear(s);
265         return(1);
266 err:
267         if (s2 != NULL)
268                 {
269                 if (s2->wbuf != NULL) Free(s2->wbuf);
270                 if (s2->rbuf != NULL) Free(s2->rbuf);
271                 Free(s2);
272                 }
273         return(0);
274         }
275
276 void ssl2_free(s)
277 SSL *s;
278         {
279         SSL2_CTX *s2;
280
281         s2=s->s2;
282         if (s2->rbuf != NULL) Free(s2->rbuf);
283         if (s2->wbuf != NULL) Free(s2->wbuf);
284         memset(s2,0,sizeof(SSL2_CTX));
285         Free(s2);
286         s->s2=NULL;
287         }
288
289 void ssl2_clear(s)
290 SSL *s;
291         {
292         SSL2_CTX *s2;
293         unsigned char *rbuf,*wbuf;
294
295         s2=s->s2;
296
297         rbuf=s2->rbuf;
298         wbuf=s2->wbuf;
299
300         memset(s2,0,sizeof(SSL2_CTX));
301
302         s2->rbuf=rbuf;
303         s2->wbuf=wbuf;
304         s2->clear_text=1;
305         s2->first_packet=0;
306         s->packet=s2->rbuf;
307         s->version=2;
308         s->packet_length=0;
309         }
310
311 long ssl2_ctrl(s,cmd,larg,parg)
312 SSL *s;
313 int cmd;
314 long larg;
315 char *parg;
316         {
317         return(0);
318         }
319
320 long ssl2_ctx_ctrl(ctx,cmd,larg,parg)
321 SSL_CTX *ctx;
322 int cmd;
323 long larg;
324 char *parg;
325         {
326         return(0);
327         }
328
329 /* This function needs to check if the ciphers required are actually
330  * available */
331 SSL_CIPHER *ssl2_get_cipher_by_char(p)
332 unsigned char *p;
333         {
334         static int init=1;
335         static SSL_CIPHER *sorted[SSL2_NUM_CIPHERS];
336         SSL_CIPHER c,*cp= &c,**cpp;
337         unsigned long id;
338         int i;
339
340         if (init)
341                 {
342                 init=0;
343
344                 for (i=0; i<SSL2_NUM_CIPHERS; i++)
345                         sorted[i]= &(ssl2_ciphers[i]);
346
347                 qsort(  (char *)sorted,
348                         SSL2_NUM_CIPHERS,sizeof(SSL_CIPHER *),
349                         FP_ICC ssl_cipher_ptr_id_cmp);
350                 }
351
352         id=0x02000000L|((unsigned long)p[0]<<16L)|
353                 ((unsigned long)p[1]<<8L)|(unsigned long)p[2];
354         c.id=id;
355         cpp=(SSL_CIPHER **)OBJ_bsearch((char *)&cp,
356                 (char *)sorted,
357                 SSL2_NUM_CIPHERS,sizeof(SSL_CIPHER *),
358                 (int (*)())ssl_cipher_ptr_id_cmp);
359         if ((cpp == NULL) || !(*cpp)->valid)
360                 return(NULL);
361         else
362                 return(*cpp);
363         }
364
365 int ssl2_put_cipher_by_char(c,p)
366 SSL_CIPHER *c;
367 unsigned char *p;
368         {
369         long l;
370
371         if (p != NULL)
372                 {
373                 l=c->id;
374                 if ((l & 0xff000000) != 0x02000000) return(0);
375                 p[0]=((unsigned char)(l>>16L))&0xFF;
376                 p[1]=((unsigned char)(l>> 8L))&0xFF;
377                 p[2]=((unsigned char)(l     ))&0xFF;
378                 }
379         return(3);
380         }
381
382 void ssl2_generate_key_material(s)
383 SSL *s;
384         {
385         unsigned int i;
386         MD5_CTX ctx;
387         unsigned char *km;
388         unsigned char c='0';
389
390         km=s->s2->key_material;
391         for (i=0; i<s->s2->key_material_length; i+=MD5_DIGEST_LENGTH)
392                 {
393                 MD5_Init(&ctx);
394
395                 MD5_Update(&ctx,s->session->master_key,s->session->master_key_length);
396                 MD5_Update(&ctx,(unsigned char *)&c,1);
397                 c++;
398                 MD5_Update(&ctx,s->s2->challenge,s->s2->challenge_length);
399                 MD5_Update(&ctx,s->s2->conn_id,s->s2->conn_id_length);
400                 MD5_Final(km,&ctx);
401                 km+=MD5_DIGEST_LENGTH;
402                 }
403         }
404
405 void ssl2_return_error(s,err)
406 SSL *s;
407 int err;
408         {
409         if (!s->error)
410                 {
411                 s->error=3;
412                 s->error_code=err;
413
414                 ssl2_write_error(s);
415                 }
416         }
417
418
419 void ssl2_write_error(s)
420 SSL *s;
421         {
422         char buf[3];
423         int i,error;
424
425         buf[0]=SSL2_MT_ERROR;
426         buf[1]=(s->error_code>>8)&0xff;
427         buf[2]=(s->error_code)&0xff;
428
429 /*      state=s->rwstate;*/
430         error=s->error;
431         s->error=0;
432         i=ssl2_write(s,&(buf[3-error]),error);
433 /*      if (i == error) s->rwstate=state; */
434
435         if (i < 0)
436                 s->error=error;
437         else if (i != s->error)
438                 s->error=error-i;
439         /* else
440                 s->error=0; */
441         }
442
443 static int ssl2_ok(s)
444 SSL *s;
445         {
446         return(1);
447         }
448
449 int ssl2_shutdown(s)
450 SSL *s;
451         {
452         s->shutdown=(SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
453         return(1);
454         }
455