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