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