Run util/openssl-format-source -v -c .
[openssl.git] / ssl / s2_srvr.c
1 /* ssl/s2_srvr.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  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer.
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112 #include "ssl_locl.h"
113 #ifndef OPENSSL_NO_SSL2
114 # include <stdio.h>
115 # include <openssl/bio.h>
116 # include <openssl/rand.h>
117 # include <openssl/objects.h>
118 # include <openssl/evp.h>
119
120 static const SSL_METHOD *ssl2_get_server_method(int ver);
121 static int get_client_master_key(SSL *s);
122 static int get_client_hello(SSL *s);
123 static int server_hello(SSL *s);
124 static int get_client_finished(SSL *s);
125 static int server_verify(SSL *s);
126 static int server_finish(SSL *s);
127 static int request_certificate(SSL *s);
128 static int ssl_rsa_private_decrypt(CERT *c, int len, unsigned char *from,
129                                    unsigned char *to, int padding);
130 # define BREAK   break
131
132 static const SSL_METHOD *ssl2_get_server_method(int ver)
133 {
134     if (ver == SSL2_VERSION)
135         return (SSLv2_server_method());
136     else
137         return (NULL);
138 }
139
140 IMPLEMENT_ssl2_meth_func(SSLv2_server_method,
141                          ssl2_accept,
142                          ssl_undefined_function, ssl2_get_server_method)
143
144 int ssl2_accept(SSL *s)
145 {
146     unsigned long l = (unsigned long)time(NULL);
147     BUF_MEM *buf = NULL;
148     int ret = -1;
149     long num1;
150     void (*cb) (const SSL *ssl, int type, int val) = NULL;
151     int new_state, state;
152
153     RAND_add(&l, sizeof(l), 0);
154     ERR_clear_error();
155     clear_sys_error();
156
157     if (s->info_callback != NULL)
158         cb = s->info_callback;
159     else if (s->ctx->info_callback != NULL)
160         cb = s->ctx->info_callback;
161
162     /* init things to blank */
163     s->in_handshake++;
164     if (!SSL_in_init(s) || SSL_in_before(s))
165         SSL_clear(s);
166
167     if (s->cert == NULL) {
168         SSLerr(SSL_F_SSL2_ACCEPT, SSL_R_NO_CERTIFICATE_SET);
169         return (-1);
170     }
171
172     clear_sys_error();
173     for (;;) {
174         state = s->state;
175
176         switch (s->state) {
177         case SSL_ST_BEFORE:
178         case SSL_ST_ACCEPT:
179         case SSL_ST_BEFORE | SSL_ST_ACCEPT:
180         case SSL_ST_OK | SSL_ST_ACCEPT:
181
182             s->server = 1;
183             if (cb != NULL)
184                 cb(s, SSL_CB_HANDSHAKE_START, 1);
185
186             s->version = SSL2_VERSION;
187             s->type = SSL_ST_ACCEPT;
188
189             if (s->init_buf == NULL) {
190                 if ((buf = BUF_MEM_new()) == NULL) {
191                     ret = -1;
192                     goto end;
193                 }
194                 if (!BUF_MEM_grow
195                     (buf, (int)SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER)) {
196                     BUF_MEM_free(buf);
197                     ret = -1;
198                     goto end;
199                 }
200                 s->init_buf = buf;
201             }
202             s->init_num = 0;
203             s->ctx->stats.sess_accept++;
204             s->handshake_func = ssl2_accept;
205             s->state = SSL2_ST_GET_CLIENT_HELLO_A;
206             BREAK;
207
208         case SSL2_ST_GET_CLIENT_HELLO_A:
209         case SSL2_ST_GET_CLIENT_HELLO_B:
210         case SSL2_ST_GET_CLIENT_HELLO_C:
211             s->shutdown = 0;
212             ret = get_client_hello(s);
213             if (ret <= 0)
214                 goto end;
215             s->init_num = 0;
216             s->state = SSL2_ST_SEND_SERVER_HELLO_A;
217             BREAK;
218
219         case SSL2_ST_SEND_SERVER_HELLO_A:
220         case SSL2_ST_SEND_SERVER_HELLO_B:
221             ret = server_hello(s);
222             if (ret <= 0)
223                 goto end;
224             s->init_num = 0;
225             if (!s->hit) {
226                 s->state = SSL2_ST_GET_CLIENT_MASTER_KEY_A;
227                 BREAK;
228             } else {
229                 s->state = SSL2_ST_SERVER_START_ENCRYPTION;
230                 BREAK;
231             }
232         case SSL2_ST_GET_CLIENT_MASTER_KEY_A:
233         case SSL2_ST_GET_CLIENT_MASTER_KEY_B:
234             ret = get_client_master_key(s);
235             if (ret <= 0)
236                 goto end;
237             s->init_num = 0;
238             s->state = SSL2_ST_SERVER_START_ENCRYPTION;
239             BREAK;
240
241         case SSL2_ST_SERVER_START_ENCRYPTION:
242             /*
243              * Ok we how have sent all the stuff needed to start encrypting,
244              * the next packet back will be encrypted.
245              */
246             if (!ssl2_enc_init(s, 0)) {
247                 ret = -1;
248                 goto end;
249             }
250             s->s2->clear_text = 0;
251             s->state = SSL2_ST_SEND_SERVER_VERIFY_A;
252             BREAK;
253
254         case SSL2_ST_SEND_SERVER_VERIFY_A:
255         case SSL2_ST_SEND_SERVER_VERIFY_B:
256             ret = server_verify(s);
257             if (ret <= 0)
258                 goto end;
259             s->init_num = 0;
260             if (s->hit) {
261                 /*
262                  * If we are in here, we have been buffering the output, so
263                  * we need to flush it and remove buffering from future
264                  * traffic
265                  */
266                 s->state = SSL2_ST_SEND_SERVER_VERIFY_C;
267                 BREAK;
268             } else {
269                 s->state = SSL2_ST_GET_CLIENT_FINISHED_A;
270                 break;
271             }
272
273         case SSL2_ST_SEND_SERVER_VERIFY_C:
274             /* get the number of bytes to write */
275             num1 = BIO_ctrl(s->wbio, BIO_CTRL_INFO, 0, NULL);
276             if (num1 > 0) {
277                 s->rwstate = SSL_WRITING;
278                 num1 = BIO_flush(s->wbio);
279                 if (num1 <= 0) {
280                     ret = -1;
281                     goto end;
282                 }
283                 s->rwstate = SSL_NOTHING;
284             }
285
286             /* flushed and now remove buffering */
287             s->wbio = BIO_pop(s->wbio);
288
289             s->state = SSL2_ST_GET_CLIENT_FINISHED_A;
290             BREAK;
291
292         case SSL2_ST_GET_CLIENT_FINISHED_A:
293         case SSL2_ST_GET_CLIENT_FINISHED_B:
294             ret = get_client_finished(s);
295             if (ret <= 0)
296                 goto end;
297             s->init_num = 0;
298             s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_A;
299             BREAK;
300
301         case SSL2_ST_SEND_REQUEST_CERTIFICATE_A:
302         case SSL2_ST_SEND_REQUEST_CERTIFICATE_B:
303         case SSL2_ST_SEND_REQUEST_CERTIFICATE_C:
304         case SSL2_ST_SEND_REQUEST_CERTIFICATE_D:
305             /*
306              * don't do a 'request certificate' if we don't want to, or we
307              * already have one, and we only want to do it once.
308              */
309             if (!(s->verify_mode & SSL_VERIFY_PEER) ||
310                 ((s->session->peer != NULL) &&
311                  (s->verify_mode & SSL_VERIFY_CLIENT_ONCE))) {
312                 s->state = SSL2_ST_SEND_SERVER_FINISHED_A;
313                 break;
314             } else {
315                 ret = request_certificate(s);
316                 if (ret <= 0)
317                     goto end;
318                 s->init_num = 0;
319                 s->state = SSL2_ST_SEND_SERVER_FINISHED_A;
320             }
321             BREAK;
322
323         case SSL2_ST_SEND_SERVER_FINISHED_A:
324         case SSL2_ST_SEND_SERVER_FINISHED_B:
325             ret = server_finish(s);
326             if (ret <= 0)
327                 goto end;
328             s->init_num = 0;
329             s->state = SSL_ST_OK;
330             break;
331
332         case SSL_ST_OK:
333             BUF_MEM_free(s->init_buf);
334             ssl_free_wbio_buffer(s);
335             s->init_buf = NULL;
336             s->init_num = 0;
337             /*      ERR_clear_error(); */
338
339             ssl_update_cache(s, SSL_SESS_CACHE_SERVER);
340
341             s->ctx->stats.sess_accept_good++;
342             /* s->server=1; */
343             ret = 1;
344
345             if (cb != NULL)
346                 cb(s, SSL_CB_HANDSHAKE_DONE, 1);
347
348             goto end;
349             /* BREAK; */
350
351         default:
352             SSLerr(SSL_F_SSL2_ACCEPT, SSL_R_UNKNOWN_STATE);
353             ret = -1;
354             goto end;
355             /* BREAK; */
356         }
357
358         if ((cb != NULL) && (s->state != state)) {
359             new_state = s->state;
360             s->state = state;
361             cb(s, SSL_CB_ACCEPT_LOOP, 1);
362             s->state = new_state;
363         }
364     }
365  end:
366     s->in_handshake--;
367     if (cb != NULL)
368         cb(s, SSL_CB_ACCEPT_EXIT, ret);
369     return (ret);
370 }
371
372 static int get_client_master_key(SSL *s)
373 {
374     int is_export, i, n, keya, ek;
375     unsigned long len;
376     unsigned char *p;
377     const SSL_CIPHER *cp;
378     const EVP_CIPHER *c;
379     const EVP_MD *md;
380
381     p = (unsigned char *)s->init_buf->data;
382     if (s->state == SSL2_ST_GET_CLIENT_MASTER_KEY_A) {
383         i = ssl2_read(s, (char *)&(p[s->init_num]), 10 - s->init_num);
384
385         if (i < (10 - s->init_num))
386             return (ssl2_part_read(s, SSL_F_GET_CLIENT_MASTER_KEY, i));
387         s->init_num = 10;
388
389         if (*(p++) != SSL2_MT_CLIENT_MASTER_KEY) {
390             if (p[-1] != SSL2_MT_ERROR) {
391                 ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
392                 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
393                        SSL_R_READ_WRONG_PACKET_TYPE);
394             } else
395                 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_PEER_ERROR);
396             return (-1);
397         }
398
399         cp = ssl2_get_cipher_by_char(p);
400         if (cp == NULL) {
401             ssl2_return_error(s, SSL2_PE_NO_CIPHER);
402             SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_NO_CIPHER_MATCH);
403             return (-1);
404         }
405         s->session->cipher = cp;
406
407         p += 3;
408         n2s(p, i);
409         s->s2->tmp.clear = i;
410         n2s(p, i);
411         s->s2->tmp.enc = i;
412         n2s(p, i);
413         if (i > SSL_MAX_KEY_ARG_LENGTH) {
414             ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
415             SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_KEY_ARG_TOO_LONG);
416             return -1;
417         }
418         s->session->key_arg_length = i;
419         s->state = SSL2_ST_GET_CLIENT_MASTER_KEY_B;
420     }
421
422     /* SSL2_ST_GET_CLIENT_MASTER_KEY_B */
423     p = (unsigned char *)s->init_buf->data;
424     if (s->init_buf->length < SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
425         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
426         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, ERR_R_INTERNAL_ERROR);
427         return -1;
428     }
429     keya = s->session->key_arg_length;
430     len =
431         10 + (unsigned long)s->s2->tmp.clear + (unsigned long)s->s2->tmp.enc +
432         (unsigned long)keya;
433     if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
434         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
435         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_MESSAGE_TOO_LONG);
436         return -1;
437     }
438     n = (int)len - s->init_num;
439     i = ssl2_read(s, (char *)&(p[s->init_num]), n);
440     if (i != n)
441         return (ssl2_part_read(s, SSL_F_GET_CLIENT_MASTER_KEY, i));
442     if (s->msg_callback) {
443         /* CLIENT-MASTER-KEY */
444         s->msg_callback(0, s->version, 0, p, (size_t)len, s,
445                         s->msg_callback_arg);
446     }
447     p += 10;
448
449     memcpy(s->session->key_arg, &(p[s->s2->tmp.clear + s->s2->tmp.enc]),
450            (unsigned int)keya);
451
452     if (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL) {
453         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
454         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_NO_PRIVATEKEY);
455         return (-1);
456     }
457     i = ssl_rsa_private_decrypt(s->cert, s->s2->tmp.enc,
458                                 &(p[s->s2->tmp.clear]),
459                                 &(p[s->s2->tmp.clear]),
460                                 (s->s2->ssl2_rollback) ? RSA_SSLV23_PADDING :
461                                 RSA_PKCS1_PADDING);
462
463     is_export = SSL_C_IS_EXPORT(s->session->cipher);
464
465     if (!ssl_cipher_get_evp(s->session, &c, &md, NULL, NULL, NULL)) {
466         ssl2_return_error(s, SSL2_PE_NO_CIPHER);
467         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
468                SSL_R_PROBLEMS_MAPPING_CIPHER_FUNCTIONS);
469         return (0);
470     }
471
472     if (s->session->cipher->algorithm2 & SSL2_CF_8_BYTE_ENC) {
473         is_export = 1;
474         ek = 8;
475     } else
476         ek = 5;
477
478     /* bad decrypt */
479 # if 1
480     /*
481      * If a bad decrypt, continue with protocol but with a random master
482      * secret (Bleichenbacher attack)
483      */
484     if ((i < 0) || ((!is_export && (i != EVP_CIPHER_key_length(c)))
485                     || (is_export && ((i != ek)
486                                       || (s->s2->tmp.clear +
487                                           (unsigned int)i !=
488                                           (unsigned int)
489                                           EVP_CIPHER_key_length(c)))))) {
490         ERR_clear_error();
491         if (is_export)
492             i = ek;
493         else
494             i = EVP_CIPHER_key_length(c);
495         if (RAND_pseudo_bytes(p, i) <= 0)
496             return 0;
497     }
498 # else
499     if (i < 0) {
500         error = 1;
501         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_BAD_RSA_DECRYPT);
502     }
503     /* incorrect number of key bytes for non export cipher */
504     else if ((!is_export && (i != EVP_CIPHER_key_length(c)))
505              || (is_export && ((i != ek) || (s->s2->tmp.clear + i !=
506                                              EVP_CIPHER_key_length(c))))) {
507         error = 1;
508         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_WRONG_NUMBER_OF_KEY_BITS);
509     }
510     if (error) {
511         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
512         return (-1);
513     }
514 # endif
515
516     if (is_export)
517         i += s->s2->tmp.clear;
518
519     if (i > SSL_MAX_MASTER_KEY_LENGTH) {
520         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
521         SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, ERR_R_INTERNAL_ERROR);
522         return -1;
523     }
524     s->session->master_key_length = i;
525     memcpy(s->session->master_key, p, (unsigned int)i);
526     return (1);
527 }
528
529 static int get_client_hello(SSL *s)
530 {
531     int i, n;
532     unsigned long len;
533     unsigned char *p;
534     STACK_OF(SSL_CIPHER) *cs;   /* a stack of SSL_CIPHERS */
535     STACK_OF(SSL_CIPHER) *cl;   /* the ones we want to use */
536     STACK_OF(SSL_CIPHER) *prio, *allow;
537     int z;
538
539     /*
540      * This is a bit of a hack to check for the correct packet type the first
541      * time round.
542      */
543     if (s->state == SSL2_ST_GET_CLIENT_HELLO_A) {
544         s->first_packet = 1;
545         s->state = SSL2_ST_GET_CLIENT_HELLO_B;
546     }
547
548     p = (unsigned char *)s->init_buf->data;
549     if (s->state == SSL2_ST_GET_CLIENT_HELLO_B) {
550         i = ssl2_read(s, (char *)&(p[s->init_num]), 9 - s->init_num);
551         if (i < (9 - s->init_num))
552             return (ssl2_part_read(s, SSL_F_GET_CLIENT_HELLO, i));
553         s->init_num = 9;
554
555         if (*(p++) != SSL2_MT_CLIENT_HELLO) {
556             if (p[-1] != SSL2_MT_ERROR) {
557                 ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
558                 SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_READ_WRONG_PACKET_TYPE);
559             } else
560                 SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_PEER_ERROR);
561             return (-1);
562         }
563         n2s(p, i);
564         if (i < s->version)
565             s->version = i;
566         n2s(p, i);
567         s->s2->tmp.cipher_spec_length = i;
568         n2s(p, i);
569         s->s2->tmp.session_id_length = i;
570         n2s(p, i);
571         s->s2->challenge_length = i;
572         if ((i < SSL2_MIN_CHALLENGE_LENGTH) ||
573             (i > SSL2_MAX_CHALLENGE_LENGTH)) {
574             ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
575             SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_INVALID_CHALLENGE_LENGTH);
576             return (-1);
577         }
578         s->state = SSL2_ST_GET_CLIENT_HELLO_C;
579     }
580
581     /* SSL2_ST_GET_CLIENT_HELLO_C */
582     p = (unsigned char *)s->init_buf->data;
583     len =
584         9 + (unsigned long)s->s2->tmp.cipher_spec_length +
585         (unsigned long)s->s2->challenge_length +
586         (unsigned long)s->s2->tmp.session_id_length;
587     if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
588         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
589         SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_MESSAGE_TOO_LONG);
590         return -1;
591     }
592     n = (int)len - s->init_num;
593     i = ssl2_read(s, (char *)&(p[s->init_num]), n);
594     if (i != n)
595         return (ssl2_part_read(s, SSL_F_GET_CLIENT_HELLO, i));
596     if (s->msg_callback) {
597         /* CLIENT-HELLO */
598         s->msg_callback(0, s->version, 0, p, (size_t)len, s,
599                         s->msg_callback_arg);
600     }
601     p += 9;
602
603     /*
604      * get session-id before cipher stuff so we can get out session structure
605      * if it is cached
606      */
607     /* session-id */
608     if ((s->s2->tmp.session_id_length != 0) &&
609         (s->s2->tmp.session_id_length != SSL2_SSL_SESSION_ID_LENGTH)) {
610         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
611         SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_BAD_SSL_SESSION_ID_LENGTH);
612         return (-1);
613     }
614
615     if (s->s2->tmp.session_id_length == 0) {
616         if (!ssl_get_new_session(s, 1)) {
617             ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
618             return (-1);
619         }
620     } else {
621         i = ssl_get_prev_session(s, &(p[s->s2->tmp.cipher_spec_length]),
622                                  s->s2->tmp.session_id_length, NULL);
623         if (i == 1) {           /* previous session */
624             s->hit = 1;
625         } else if (i == -1) {
626             ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
627             return (-1);
628         } else {
629             if (s->cert == NULL) {
630                 ssl2_return_error(s, SSL2_PE_NO_CERTIFICATE);
631                 SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_NO_CERTIFICATE_SET);
632                 return (-1);
633             }
634
635             if (!ssl_get_new_session(s, 1)) {
636                 ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
637                 return (-1);
638             }
639         }
640     }
641
642     if (!s->hit) {
643         cs = ssl_bytes_to_cipher_list(s, p, s->s2->tmp.cipher_spec_length,
644                                       &s->session->ciphers);
645         if (cs == NULL)
646             goto mem_err;
647
648         cl = SSL_get_ciphers(s);
649
650         if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) {
651             prio = sk_SSL_CIPHER_dup(cl);
652             if (prio == NULL)
653                 goto mem_err;
654             allow = cs;
655         } else {
656             prio = cs;
657             allow = cl;
658         }
659         for (z = 0; z < sk_SSL_CIPHER_num(prio); z++) {
660             if (sk_SSL_CIPHER_find(allow, sk_SSL_CIPHER_value(prio, z)) < 0) {
661                 (void)sk_SSL_CIPHER_delete(prio, z);
662                 z--;
663             }
664         }
665         if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) {
666             sk_SSL_CIPHER_free(s->session->ciphers);
667             s->session->ciphers = prio;
668         }
669         /*
670          * s->session->ciphers should now have a list of ciphers that are on
671          * both the client and server. This list is ordered by the order the
672          * client sent the ciphers or in the order of the server's preference
673          * if SSL_OP_CIPHER_SERVER_PREFERENCE was set.
674          */
675     }
676     p += s->s2->tmp.cipher_spec_length;
677     /* done cipher selection */
678
679     /* session id extracted already */
680     p += s->s2->tmp.session_id_length;
681
682     /* challenge */
683     if (s->s2->challenge_length > sizeof s->s2->challenge) {
684         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
685         SSLerr(SSL_F_GET_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
686         return -1;
687     }
688     memcpy(s->s2->challenge, p, (unsigned int)s->s2->challenge_length);
689     return (1);
690  mem_err:
691     SSLerr(SSL_F_GET_CLIENT_HELLO, ERR_R_MALLOC_FAILURE);
692     return (0);
693 }
694
695 static int server_hello(SSL *s)
696 {
697     unsigned char *p, *d;
698     int n, hit;
699
700     p = (unsigned char *)s->init_buf->data;
701     if (s->state == SSL2_ST_SEND_SERVER_HELLO_A) {
702         d = p + 11;
703         *(p++) = SSL2_MT_SERVER_HELLO; /* type */
704         hit = s->hit;
705         *(p++) = (unsigned char)hit;
706 # if 1
707         if (!hit) {
708             if (s->session->sess_cert != NULL)
709                 /*
710                  * This can't really happen because get_client_hello has
711                  * called ssl_get_new_session, which does not set sess_cert.
712                  */
713                 ssl_sess_cert_free(s->session->sess_cert);
714             s->session->sess_cert = ssl_sess_cert_new();
715             if (s->session->sess_cert == NULL) {
716                 SSLerr(SSL_F_SERVER_HELLO, ERR_R_MALLOC_FAILURE);
717                 return (-1);
718             }
719         }
720         /*
721          * If 'hit' is set, then s->sess_cert may be non-NULL or NULL,
722          * depending on whether it survived in the internal cache or was
723          * retrieved from an external cache. If it is NULL, we cannot put any
724          * useful data in it anyway, so we don't touch it.
725          */
726
727 # else                          /* That's what used to be done when cert_st
728                                  * and sess_cert_st were * the same. */
729         if (!hit) {             /* else add cert to session */
730             CRYPTO_add(&s->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
731             if (s->session->sess_cert != NULL)
732                 ssl_cert_free(s->session->sess_cert);
733             s->session->sess_cert = s->cert;
734         } else {                /* We have a session id-cache hit, if the *
735                                  * session-id has no certificate listed
736                                  * against * the 'cert' structure, grab the
737                                  * 'old' one * listed against the SSL
738                                  * connection */
739             if (s->session->sess_cert == NULL) {
740                 CRYPTO_add(&s->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
741                 s->session->sess_cert = s->cert;
742             }
743         }
744 # endif
745
746         if (s->cert == NULL) {
747             ssl2_return_error(s, SSL2_PE_NO_CERTIFICATE);
748             SSLerr(SSL_F_SERVER_HELLO, SSL_R_NO_CERTIFICATE_SPECIFIED);
749             return (-1);
750         }
751
752         if (hit) {
753             *(p++) = 0;         /* no certificate type */
754             s2n(s->version, p); /* version */
755             s2n(0, p);          /* cert len */
756             s2n(0, p);          /* ciphers len */
757         } else {
758             /* EAY EAY */
759             /* put certificate type */
760             *(p++) = SSL2_CT_X509_CERTIFICATE;
761             s2n(s->version, p); /* version */
762             n = i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, NULL);
763             s2n(n, p);          /* certificate length */
764             i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, &d);
765             n = 0;
766
767             /*
768              * lets send out the ciphers we like in the prefered order
769              */
770             n = ssl_cipher_list_to_bytes(s, s->session->ciphers, d, 0);
771             d += n;
772             s2n(n, p);          /* add cipher length */
773         }
774
775         /* make and send conn_id */
776         s2n(SSL2_CONNECTION_ID_LENGTH, p); /* add conn_id length */
777         s->s2->conn_id_length = SSL2_CONNECTION_ID_LENGTH;
778         if (RAND_pseudo_bytes(s->s2->conn_id, (int)s->s2->conn_id_length) <=
779             0)
780             return -1;
781         memcpy(d, s->s2->conn_id, SSL2_CONNECTION_ID_LENGTH);
782         d += SSL2_CONNECTION_ID_LENGTH;
783
784         s->state = SSL2_ST_SEND_SERVER_HELLO_B;
785         s->init_num = d - (unsigned char *)s->init_buf->data;
786         s->init_off = 0;
787     }
788     /* SSL2_ST_SEND_SERVER_HELLO_B */
789     /*
790      * If we are using TCP/IP, the performance is bad if we do 2 writes
791      * without a read between them.  This occurs when Session-id reuse is
792      * used, so I will put in a buffering module
793      */
794     if (s->hit) {
795         if (!ssl_init_wbio_buffer(s, 1))
796             return (-1);
797     }
798
799     return (ssl2_do_write(s));
800 }
801
802 static int get_client_finished(SSL *s)
803 {
804     unsigned char *p;
805     int i, n;
806     unsigned long len;
807
808     p = (unsigned char *)s->init_buf->data;
809     if (s->state == SSL2_ST_GET_CLIENT_FINISHED_A) {
810         i = ssl2_read(s, (char *)&(p[s->init_num]), 1 - s->init_num);
811         if (i < 1 - s->init_num)
812             return (ssl2_part_read(s, SSL_F_GET_CLIENT_FINISHED, i));
813         s->init_num += i;
814
815         if (*p != SSL2_MT_CLIENT_FINISHED) {
816             if (*p != SSL2_MT_ERROR) {
817                 ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
818                 SSLerr(SSL_F_GET_CLIENT_FINISHED,
819                        SSL_R_READ_WRONG_PACKET_TYPE);
820             } else {
821                 SSLerr(SSL_F_GET_CLIENT_FINISHED, SSL_R_PEER_ERROR);
822                 /* try to read the error message */
823                 i = ssl2_read(s, (char *)&(p[s->init_num]), 3 - s->init_num);
824                 return ssl2_part_read(s, SSL_F_GET_SERVER_VERIFY, i);
825             }
826             return (-1);
827         }
828         s->state = SSL2_ST_GET_CLIENT_FINISHED_B;
829     }
830
831     /* SSL2_ST_GET_CLIENT_FINISHED_B */
832     if (s->s2->conn_id_length > sizeof s->s2->conn_id) {
833         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
834         SSLerr(SSL_F_GET_CLIENT_FINISHED, ERR_R_INTERNAL_ERROR);
835         return -1;
836     }
837     len = 1 + (unsigned long)s->s2->conn_id_length;
838     n = (int)len - s->init_num;
839     i = ssl2_read(s, (char *)&(p[s->init_num]), n);
840     if (i < n) {
841         return (ssl2_part_read(s, SSL_F_GET_CLIENT_FINISHED, i));
842     }
843     if (s->msg_callback) {
844         /* CLIENT-FINISHED */
845         s->msg_callback(0, s->version, 0, p, len, s, s->msg_callback_arg);
846     }
847     p += 1;
848     if (memcmp(p, s->s2->conn_id, s->s2->conn_id_length) != 0) {
849         ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
850         SSLerr(SSL_F_GET_CLIENT_FINISHED, SSL_R_CONNECTION_ID_IS_DIFFERENT);
851         return (-1);
852     }
853     return (1);
854 }
855
856 static int server_verify(SSL *s)
857 {
858     unsigned char *p;
859
860     if (s->state == SSL2_ST_SEND_SERVER_VERIFY_A) {
861         p = (unsigned char *)s->init_buf->data;
862         *(p++) = SSL2_MT_SERVER_VERIFY;
863         if (s->s2->challenge_length > sizeof s->s2->challenge) {
864             SSLerr(SSL_F_SERVER_VERIFY, ERR_R_INTERNAL_ERROR);
865             return -1;
866         }
867         memcpy(p, s->s2->challenge, (unsigned int)s->s2->challenge_length);
868         /* p+=s->s2->challenge_length; */
869
870         s->state = SSL2_ST_SEND_SERVER_VERIFY_B;
871         s->init_num = s->s2->challenge_length + 1;
872         s->init_off = 0;
873     }
874     return (ssl2_do_write(s));
875 }
876
877 static int server_finish(SSL *s)
878 {
879     unsigned char *p;
880
881     if (s->state == SSL2_ST_SEND_SERVER_FINISHED_A) {
882         p = (unsigned char *)s->init_buf->data;
883         *(p++) = SSL2_MT_SERVER_FINISHED;
884
885         if (s->session->session_id_length > sizeof s->session->session_id) {
886             SSLerr(SSL_F_SERVER_FINISH, ERR_R_INTERNAL_ERROR);
887             return -1;
888         }
889         memcpy(p, s->session->session_id,
890                (unsigned int)s->session->session_id_length);
891         /* p+=s->session->session_id_length; */
892
893         s->state = SSL2_ST_SEND_SERVER_FINISHED_B;
894         s->init_num = s->session->session_id_length + 1;
895         s->init_off = 0;
896     }
897
898     /* SSL2_ST_SEND_SERVER_FINISHED_B */
899     return (ssl2_do_write(s));
900 }
901
902 /* send the request and check the response */
903 static int request_certificate(SSL *s)
904 {
905     const unsigned char *cp;
906     unsigned char *p, *p2, *buf2;
907     unsigned char *ccd;
908     int i, j, ctype, ret = -1;
909     unsigned long len;
910     X509 *x509 = NULL;
911     STACK_OF(X509) *sk = NULL;
912
913     ccd = s->s2->tmp.ccl;
914     if (s->state == SSL2_ST_SEND_REQUEST_CERTIFICATE_A) {
915         p = (unsigned char *)s->init_buf->data;
916         *(p++) = SSL2_MT_REQUEST_CERTIFICATE;
917         *(p++) = SSL2_AT_MD5_WITH_RSA_ENCRYPTION;
918         if (RAND_pseudo_bytes(ccd, SSL2_MIN_CERT_CHALLENGE_LENGTH) <= 0)
919             return -1;
920         memcpy(p, ccd, SSL2_MIN_CERT_CHALLENGE_LENGTH);
921
922         s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_B;
923         s->init_num = SSL2_MIN_CERT_CHALLENGE_LENGTH + 2;
924         s->init_off = 0;
925     }
926
927     if (s->state == SSL2_ST_SEND_REQUEST_CERTIFICATE_B) {
928         i = ssl2_do_write(s);
929         if (i <= 0) {
930             ret = i;
931             goto end;
932         }
933
934         s->init_num = 0;
935         s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_C;
936     }
937
938     if (s->state == SSL2_ST_SEND_REQUEST_CERTIFICATE_C) {
939         p = (unsigned char *)s->init_buf->data;
940         /* try to read 6 octets ... */
941         i = ssl2_read(s, (char *)&(p[s->init_num]), 6 - s->init_num);
942         /*
943          * ... but don't call ssl2_part_read now if we got at least 3
944          * (probably NO-CERTIFICATE-ERROR)
945          */
946         if (i < 3 - s->init_num) {
947             ret = ssl2_part_read(s, SSL_F_REQUEST_CERTIFICATE, i);
948             goto end;
949         }
950         s->init_num += i;
951
952         if ((s->init_num >= 3) && (p[0] == SSL2_MT_ERROR)) {
953             n2s(p, i);
954             if (i != SSL2_PE_NO_CERTIFICATE) {
955                 /*
956                  * not the error message we expected -- let ssl2_part_read
957                  * handle it
958                  */
959                 s->init_num -= 3;
960                 ret = ssl2_part_read(s, SSL_F_REQUEST_CERTIFICATE, 3);
961                 goto end;
962             }
963
964             if (s->msg_callback) {
965                 /* ERROR */
966                 s->msg_callback(0, s->version, 0, p, 3, s,
967                                 s->msg_callback_arg);
968             }
969
970             /*
971              * this is the one place where we can recover from an SSL 2.0
972              * error
973              */
974
975             if (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT) {
976                 ssl2_return_error(s, SSL2_PE_BAD_CERTIFICATE);
977                 SSLerr(SSL_F_REQUEST_CERTIFICATE,
978                        SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
979                 goto end;
980             }
981             ret = 1;
982             goto end;
983         }
984         if ((*(p++) != SSL2_MT_CLIENT_CERTIFICATE) || (s->init_num < 6)) {
985             ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
986             SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_SHORT_READ);
987             goto end;
988         }
989         if (s->init_num != 6) {
990             SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_INTERNAL_ERROR);
991             goto end;
992         }
993
994         /* ok we have a response */
995         /* certificate type, there is only one right now. */
996         ctype = *(p++);
997         if (ctype != SSL2_AT_MD5_WITH_RSA_ENCRYPTION) {
998             ssl2_return_error(s, SSL2_PE_UNSUPPORTED_CERTIFICATE_TYPE);
999             SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_BAD_RESPONSE_ARGUMENT);
1000             goto end;
1001         }
1002         n2s(p, i);
1003         s->s2->tmp.clen = i;
1004         n2s(p, i);
1005         s->s2->tmp.rlen = i;
1006         s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_D;
1007     }
1008
1009     /* SSL2_ST_SEND_REQUEST_CERTIFICATE_D */
1010     p = (unsigned char *)s->init_buf->data;
1011     len = 6 + (unsigned long)s->s2->tmp.clen + (unsigned long)s->s2->tmp.rlen;
1012     if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
1013         SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_MESSAGE_TOO_LONG);
1014         goto end;
1015     }
1016     j = (int)len - s->init_num;
1017     i = ssl2_read(s, (char *)&(p[s->init_num]), j);
1018     if (i < j) {
1019         ret = ssl2_part_read(s, SSL_F_REQUEST_CERTIFICATE, i);
1020         goto end;
1021     }
1022     if (s->msg_callback) {
1023         /* CLIENT-CERTIFICATE */
1024         s->msg_callback(0, s->version, 0, p, len, s, s->msg_callback_arg);
1025     }
1026     p += 6;
1027
1028     cp = p;
1029     x509 = (X509 *)d2i_X509(NULL, &cp, (long)s->s2->tmp.clen);
1030     if (x509 == NULL) {
1031         SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_X509_LIB);
1032         goto msg_end;
1033     }
1034
1035     if (((sk = sk_X509_new_null()) == NULL) || (!sk_X509_push(sk, x509))) {
1036         SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1037         goto msg_end;
1038     }
1039
1040     i = ssl_verify_cert_chain(s, sk);
1041
1042     if (i > 0) {                /* we like the packet, now check the chksum */
1043         EVP_MD_CTX ctx;
1044         EVP_PKEY *pkey = NULL;
1045
1046         EVP_MD_CTX_init(&ctx);
1047         if (!EVP_VerifyInit_ex(&ctx, s->ctx->rsa_md5, NULL)
1048             || !EVP_VerifyUpdate(&ctx, s->s2->key_material,
1049                                  s->s2->key_material_length)
1050             || !EVP_VerifyUpdate(&ctx, ccd, SSL2_MIN_CERT_CHALLENGE_LENGTH))
1051             goto msg_end;
1052
1053         i = i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, NULL);
1054         buf2 = OPENSSL_malloc((unsigned int)i);
1055         if (buf2 == NULL) {
1056             SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1057             goto msg_end;
1058         }
1059         p2 = buf2;
1060         i = i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, &p2);
1061         if (!EVP_VerifyUpdate(&ctx, buf2, (unsigned int)i)) {
1062             OPENSSL_free(buf2);
1063             goto msg_end;
1064         }
1065         OPENSSL_free(buf2);
1066
1067         pkey = X509_get_pubkey(x509);
1068         if (pkey == NULL)
1069             goto end;
1070         i = EVP_VerifyFinal(&ctx, cp, s->s2->tmp.rlen, pkey);
1071         EVP_PKEY_free(pkey);
1072         EVP_MD_CTX_cleanup(&ctx);
1073
1074         if (i > 0) {
1075             if (s->session->peer != NULL)
1076                 X509_free(s->session->peer);
1077             s->session->peer = x509;
1078             CRYPTO_add(&x509->references, 1, CRYPTO_LOCK_X509);
1079             s->session->verify_result = s->verify_result;
1080             ret = 1;
1081             goto end;
1082         } else {
1083             SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_BAD_CHECKSUM);
1084             goto msg_end;
1085         }
1086     } else {
1087  msg_end:
1088         ssl2_return_error(s, SSL2_PE_BAD_CERTIFICATE);
1089     }
1090  end:
1091     sk_X509_free(sk);
1092     X509_free(x509);
1093     return (ret);
1094 }
1095
1096 static int ssl_rsa_private_decrypt(CERT *c, int len, unsigned char *from,
1097                                    unsigned char *to, int padding)
1098 {
1099     RSA *rsa;
1100     int i;
1101
1102     if ((c == NULL) || (c->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL)) {
1103         SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT, SSL_R_NO_PRIVATEKEY);
1104         return (-1);
1105     }
1106     if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey->type != EVP_PKEY_RSA) {
1107         SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT, SSL_R_PUBLIC_KEY_IS_NOT_RSA);
1108         return (-1);
1109     }
1110     rsa = c->pkeys[SSL_PKEY_RSA_ENC].privatekey->pkey.rsa;
1111
1112     /* we have the public key */
1113     i = RSA_private_decrypt(len, from, to, rsa, padding);
1114     if (i < 0)
1115         SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT, ERR_R_RSA_LIB);
1116     return (i);
1117 }
1118 #else                           /* !OPENSSL_NO_SSL2 */
1119
1120 # if PEDANTIC
1121 static void *dummy = &dummy;
1122 # endif
1123
1124 #endif