2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
58 /* ====================================================================
59 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
87 * 6. Redistributions of any form whatsoever must retain the following
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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 * ====================================================================
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).
112 #include "ssl_locl.h"
113 #ifndef OPENSSL_NO_SSL2
115 #include <openssl/bio.h>
116 #include <openssl/rand.h>
117 #include <openssl/objects.h>
118 #include <openssl/evp.h>
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
);
132 static const SSL_METHOD
*ssl2_get_server_method(int ver
)
134 if (ver
== SSL2_VERSION
)
135 return(SSLv2_server_method());
140 IMPLEMENT_ssl2_meth_func(SSLv2_server_method
,
142 ssl_undefined_function
,
143 ssl2_get_server_method
)
145 int ssl2_accept(SSL
*s
)
147 unsigned long l
=(unsigned long)time(NULL
);
151 void (*cb
)(const SSL
*ssl
,int type
,int val
)=NULL
;
154 RAND_add(&l
,sizeof(l
),0);
158 if (s
->info_callback
!= NULL
)
160 else if (s
->ctx
->info_callback
!= NULL
)
161 cb
=s
->ctx
->info_callback
;
163 /* init things to blank */
165 if (!SSL_in_init(s
) || SSL_in_before(s
)) SSL_clear(s
);
169 SSLerr(SSL_F_SSL2_ACCEPT
,SSL_R_NO_CERTIFICATE_SET
);
182 case SSL_ST_BEFORE
|SSL_ST_ACCEPT
:
183 case SSL_ST_OK
|SSL_ST_ACCEPT
:
186 if (cb
!= NULL
) cb(s
,SSL_CB_HANDSHAKE_START
,1);
188 s
->version
=SSL2_VERSION
;
189 s
->type
=SSL_ST_ACCEPT
;
192 if ((buf
== NULL
) && ((buf
=BUF_MEM_new()) == NULL
))
193 { ret
= -1; goto end
; }
194 if (!BUF_MEM_grow(buf
,(int)
195 SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER
))
196 { ret
= -1; goto end
; }
199 s
->ctx
->stats
.sess_accept
++;
200 s
->handshake_func
=ssl2_accept
;
201 s
->state
=SSL2_ST_GET_CLIENT_HELLO_A
;
204 case SSL2_ST_GET_CLIENT_HELLO_A
:
205 case SSL2_ST_GET_CLIENT_HELLO_B
:
206 case SSL2_ST_GET_CLIENT_HELLO_C
:
208 ret
=get_client_hello(s
);
209 if (ret
<= 0) goto end
;
211 s
->state
=SSL2_ST_SEND_SERVER_HELLO_A
;
214 case SSL2_ST_SEND_SERVER_HELLO_A
:
215 case SSL2_ST_SEND_SERVER_HELLO_B
:
217 if (ret
<= 0) goto end
;
221 s
->state
=SSL2_ST_GET_CLIENT_MASTER_KEY_A
;
226 s
->state
=SSL2_ST_SERVER_START_ENCRYPTION
;
229 case SSL2_ST_GET_CLIENT_MASTER_KEY_A
:
230 case SSL2_ST_GET_CLIENT_MASTER_KEY_B
:
231 ret
=get_client_master_key(s
);
232 if (ret
<= 0) goto end
;
234 s
->state
=SSL2_ST_SERVER_START_ENCRYPTION
;
237 case SSL2_ST_SERVER_START_ENCRYPTION
:
238 /* Ok we how have sent all the stuff needed to
239 * start encrypting, the next packet back will
241 if (!ssl2_enc_init(s
,0))
242 { ret
= -1; goto end
; }
244 s
->state
=SSL2_ST_SEND_SERVER_VERIFY_A
;
247 case SSL2_ST_SEND_SERVER_VERIFY_A
:
248 case SSL2_ST_SEND_SERVER_VERIFY_B
:
249 ret
=server_verify(s
);
250 if (ret
<= 0) goto end
;
254 /* If we are in here, we have been
255 * buffering the output, so we need to
256 * flush it and remove buffering from
258 s
->state
=SSL2_ST_SEND_SERVER_VERIFY_C
;
263 s
->state
=SSL2_ST_GET_CLIENT_FINISHED_A
;
267 case SSL2_ST_SEND_SERVER_VERIFY_C
:
268 /* get the number of bytes to write */
269 num1
=BIO_ctrl(s
->wbio
,BIO_CTRL_INFO
,0,NULL
);
272 s
->rwstate
=SSL_WRITING
;
273 num1
=BIO_flush(s
->wbio
);
274 if (num1
<= 0) { ret
= -1; goto end
; }
275 s
->rwstate
=SSL_NOTHING
;
278 /* flushed and now remove buffering */
279 s
->wbio
=BIO_pop(s
->wbio
);
281 s
->state
=SSL2_ST_GET_CLIENT_FINISHED_A
;
284 case SSL2_ST_GET_CLIENT_FINISHED_A
:
285 case SSL2_ST_GET_CLIENT_FINISHED_B
:
286 ret
=get_client_finished(s
);
290 s
->state
=SSL2_ST_SEND_REQUEST_CERTIFICATE_A
;
293 case SSL2_ST_SEND_REQUEST_CERTIFICATE_A
:
294 case SSL2_ST_SEND_REQUEST_CERTIFICATE_B
:
295 case SSL2_ST_SEND_REQUEST_CERTIFICATE_C
:
296 case SSL2_ST_SEND_REQUEST_CERTIFICATE_D
:
297 /* don't do a 'request certificate' if we
298 * don't want to, or we already have one, and
299 * we only want to do it once. */
300 if (!(s
->verify_mode
& SSL_VERIFY_PEER
) ||
301 ((s
->session
->peer
!= NULL
) &&
302 (s
->verify_mode
& SSL_VERIFY_CLIENT_ONCE
)))
304 s
->state
=SSL2_ST_SEND_SERVER_FINISHED_A
;
309 ret
=request_certificate(s
);
310 if (ret
<= 0) goto end
;
312 s
->state
=SSL2_ST_SEND_SERVER_FINISHED_A
;
316 case SSL2_ST_SEND_SERVER_FINISHED_A
:
317 case SSL2_ST_SEND_SERVER_FINISHED_B
:
318 ret
=server_finish(s
);
319 if (ret
<= 0) goto end
;
325 BUF_MEM_free(s
->init_buf
);
326 ssl_free_wbio_buffer(s
);
329 /* ERR_clear_error();*/
331 ssl_update_cache(s
,SSL_SESS_CACHE_SERVER
);
333 s
->ctx
->stats
.sess_accept_good
++;
337 if (cb
!= NULL
) cb(s
,SSL_CB_HANDSHAKE_DONE
,1);
343 SSLerr(SSL_F_SSL2_ACCEPT
,SSL_R_UNKNOWN_STATE
);
349 if ((cb
!= NULL
) && (s
->state
!= state
))
353 cb(s
,SSL_CB_ACCEPT_LOOP
,1);
360 cb(s
,SSL_CB_ACCEPT_EXIT
,ret
);
364 static int get_client_master_key(SSL
*s
)
366 int is_export
,i
,n
,keya
,ek
;
369 const SSL_CIPHER
*cp
;
373 p
=(unsigned char *)s
->init_buf
->data
;
374 if (s
->state
== SSL2_ST_GET_CLIENT_MASTER_KEY_A
)
376 i
=ssl2_read(s
,(char *)&(p
[s
->init_num
]),10-s
->init_num
);
378 if (i
< (10-s
->init_num
))
379 return(ssl2_part_read(s
,SSL_F_GET_CLIENT_MASTER_KEY
,i
));
382 if (*(p
++) != SSL2_MT_CLIENT_MASTER_KEY
)
384 if (p
[-1] != SSL2_MT_ERROR
)
386 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
387 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
,SSL_R_READ_WRONG_PACKET_TYPE
);
390 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
, SSL_R_PEER_ERROR
);
394 cp
=ssl2_get_cipher_by_char(p
);
397 ssl2_return_error(s
,SSL2_PE_NO_CIPHER
);
398 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
, SSL_R_NO_CIPHER_MATCH
);
401 s
->session
->cipher
= cp
;
404 n2s(p
,i
); s
->s2
->tmp
.clear
=i
;
405 n2s(p
,i
); s
->s2
->tmp
.enc
=i
;
406 n2s(p
,i
); s
->session
->key_arg_length
=i
;
407 if(s
->session
->key_arg_length
> SSL_MAX_KEY_ARG_LENGTH
)
409 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
410 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
, SSL_R_KEY_ARG_TOO_LONG
);
413 s
->state
=SSL2_ST_GET_CLIENT_MASTER_KEY_B
;
416 /* SSL2_ST_GET_CLIENT_MASTER_KEY_B */
417 p
=(unsigned char *)s
->init_buf
->data
;
418 if (s
->init_buf
->length
< SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER
)
420 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
421 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
, ERR_R_INTERNAL_ERROR
);
424 keya
=s
->session
->key_arg_length
;
425 len
= 10 + (unsigned long)s
->s2
->tmp
.clear
+ (unsigned long)s
->s2
->tmp
.enc
+ (unsigned long)keya
;
426 if (len
> SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER
)
428 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
429 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
,SSL_R_MESSAGE_TOO_LONG
);
432 n
= (int)len
- s
->init_num
;
433 i
= ssl2_read(s
,(char *)&(p
[s
->init_num
]),n
);
434 if (i
!= n
) return(ssl2_part_read(s
,SSL_F_GET_CLIENT_MASTER_KEY
,i
));
436 s
->msg_callback(0, s
->version
, 0, p
, (size_t)len
, s
, s
->msg_callback_arg
); /* CLIENT-MASTER-KEY */
439 memcpy(s
->session
->key_arg
,&(p
[s
->s2
->tmp
.clear
+s
->s2
->tmp
.enc
]),
442 if (s
->cert
->pkeys
[SSL_PKEY_RSA_ENC
].privatekey
== NULL
)
444 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
445 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
,SSL_R_NO_PRIVATEKEY
);
448 i
=ssl_rsa_private_decrypt(s
->cert
,s
->s2
->tmp
.enc
,
449 &(p
[s
->s2
->tmp
.clear
]),&(p
[s
->s2
->tmp
.clear
]),
450 (s
->s2
->ssl2_rollback
)?RSA_SSLV23_PADDING
:RSA_PKCS1_PADDING
);
452 is_export
=SSL_C_IS_EXPORT(s
->session
->cipher
);
454 if (!ssl_cipher_get_evp(s
->session
,&c
,&md
,NULL
,NULL
,NULL
))
456 ssl2_return_error(s
,SSL2_PE_NO_CIPHER
);
457 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
,SSL_R_PROBLEMS_MAPPING_CIPHER_FUNCTIONS
);
461 if (s
->session
->cipher
->algorithm2
& SSL2_CF_8_BYTE_ENC
)
471 /* If a bad decrypt, continue with protocol but with a
472 * random master secret (Bleichenbacher attack) */
474 ((!is_export
&& (i
!= EVP_CIPHER_key_length(c
)))
475 || (is_export
&& ((i
!= ek
) || (s
->s2
->tmp
.clear
+(unsigned int)i
!=
476 (unsigned int)EVP_CIPHER_key_length(c
))))))
482 i
=EVP_CIPHER_key_length(c
);
483 if (RAND_pseudo_bytes(p
,i
) <= 0)
490 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
,SSL_R_BAD_RSA_DECRYPT
);
492 /* incorrect number of key bytes for non export cipher */
493 else if ((!is_export
&& (i
!= EVP_CIPHER_key_length(c
)))
494 || (is_export
&& ((i
!= ek
) || (s
->s2
->tmp
.clear
+i
!=
495 EVP_CIPHER_key_length(c
)))))
498 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
,SSL_R_WRONG_NUMBER_OF_KEY_BITS
);
502 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
507 if (is_export
) i
+=s
->s2
->tmp
.clear
;
509 if (i
> SSL_MAX_MASTER_KEY_LENGTH
)
511 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
512 SSLerr(SSL_F_GET_CLIENT_MASTER_KEY
, ERR_R_INTERNAL_ERROR
);
515 s
->session
->master_key_length
=i
;
516 memcpy(s
->session
->master_key
,p
,(unsigned int)i
);
520 static int get_client_hello(SSL
*s
)
525 STACK_OF(SSL_CIPHER
) *cs
; /* a stack of SSL_CIPHERS */
526 STACK_OF(SSL_CIPHER
) *cl
; /* the ones we want to use */
527 STACK_OF(SSL_CIPHER
) *prio
, *allow
;
530 /* This is a bit of a hack to check for the correct packet
531 * type the first time round. */
532 if (s
->state
== SSL2_ST_GET_CLIENT_HELLO_A
)
535 s
->state
=SSL2_ST_GET_CLIENT_HELLO_B
;
538 p
=(unsigned char *)s
->init_buf
->data
;
539 if (s
->state
== SSL2_ST_GET_CLIENT_HELLO_B
)
541 i
=ssl2_read(s
,(char *)&(p
[s
->init_num
]),9-s
->init_num
);
542 if (i
< (9-s
->init_num
))
543 return(ssl2_part_read(s
,SSL_F_GET_CLIENT_HELLO
,i
));
546 if (*(p
++) != SSL2_MT_CLIENT_HELLO
)
548 if (p
[-1] != SSL2_MT_ERROR
)
550 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
551 SSLerr(SSL_F_GET_CLIENT_HELLO
,SSL_R_READ_WRONG_PACKET_TYPE
);
554 SSLerr(SSL_F_GET_CLIENT_HELLO
,SSL_R_PEER_ERROR
);
558 if (i
< s
->version
) s
->version
=i
;
559 n2s(p
,i
); s
->s2
->tmp
.cipher_spec_length
=i
;
560 n2s(p
,i
); s
->s2
->tmp
.session_id_length
=i
;
561 n2s(p
,i
); s
->s2
->challenge_length
=i
;
562 if ( (i
< SSL2_MIN_CHALLENGE_LENGTH
) ||
563 (i
> SSL2_MAX_CHALLENGE_LENGTH
))
565 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
566 SSLerr(SSL_F_GET_CLIENT_HELLO
,SSL_R_INVALID_CHALLENGE_LENGTH
);
569 s
->state
=SSL2_ST_GET_CLIENT_HELLO_C
;
572 /* SSL2_ST_GET_CLIENT_HELLO_C */
573 p
=(unsigned char *)s
->init_buf
->data
;
574 len
= 9 + (unsigned long)s
->s2
->tmp
.cipher_spec_length
+ (unsigned long)s
->s2
->challenge_length
+ (unsigned long)s
->s2
->tmp
.session_id_length
;
575 if (len
> SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER
)
577 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
578 SSLerr(SSL_F_GET_CLIENT_HELLO
,SSL_R_MESSAGE_TOO_LONG
);
581 n
= (int)len
- s
->init_num
;
582 i
= ssl2_read(s
,(char *)&(p
[s
->init_num
]),n
);
583 if (i
!= n
) return(ssl2_part_read(s
,SSL_F_GET_CLIENT_HELLO
,i
));
585 s
->msg_callback(0, s
->version
, 0, p
, (size_t)len
, s
, s
->msg_callback_arg
); /* CLIENT-HELLO */
588 /* get session-id before cipher stuff so we can get out session
589 * structure if it is cached */
591 if ((s
->s2
->tmp
.session_id_length
!= 0) &&
592 (s
->s2
->tmp
.session_id_length
!= SSL2_SSL_SESSION_ID_LENGTH
))
594 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
595 SSLerr(SSL_F_GET_CLIENT_HELLO
,SSL_R_BAD_SSL_SESSION_ID_LENGTH
);
599 if (s
->s2
->tmp
.session_id_length
== 0)
601 if (!ssl_get_new_session(s
,1))
603 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
609 i
=ssl_get_prev_session(s
,&(p
[s
->s2
->tmp
.cipher_spec_length
]),
610 s
->s2
->tmp
.session_id_length
, NULL
);
612 { /* previous session */
617 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
624 ssl2_return_error(s
,SSL2_PE_NO_CERTIFICATE
);
625 SSLerr(SSL_F_GET_CLIENT_HELLO
,SSL_R_NO_CERTIFICATE_SET
);
629 if (!ssl_get_new_session(s
,1))
631 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
639 cs
=ssl_bytes_to_cipher_list(s
,p
,s
->s2
->tmp
.cipher_spec_length
,
640 &s
->session
->ciphers
);
641 if (cs
== NULL
) goto mem_err
;
643 cl
=SSL_get_ciphers(s
);
645 if (s
->options
& SSL_OP_CIPHER_SERVER_PREFERENCE
)
647 prio
=sk_SSL_CIPHER_dup(cl
);
648 if (prio
== NULL
) goto mem_err
;
656 for (z
=0; z
<sk_SSL_CIPHER_num(prio
); z
++)
658 if (sk_SSL_CIPHER_find(allow
,sk_SSL_CIPHER_value(prio
,z
)) < 0)
660 (void)sk_SSL_CIPHER_delete(prio
,z
);
664 if (s
->options
& SSL_OP_CIPHER_SERVER_PREFERENCE
)
666 sk_SSL_CIPHER_free(s
->session
->ciphers
);
667 s
->session
->ciphers
= prio
;
669 /* s->session->ciphers should now have a list of
670 * ciphers that are on both the client and server.
671 * This list is ordered by the order the client sent
672 * the ciphers or in the order of the server's preference
673 * if SSL_OP_CIPHER_SERVER_PREFERENCE was set.
676 p
+=s
->s2
->tmp
.cipher_spec_length
;
677 /* done cipher selection */
679 /* session id extracted already */
680 p
+=s
->s2
->tmp
.session_id_length
;
683 if (s
->s2
->challenge_length
> sizeof s
->s2
->challenge
)
685 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
686 SSLerr(SSL_F_GET_CLIENT_HELLO
, ERR_R_INTERNAL_ERROR
);
689 memcpy(s
->s2
->challenge
,p
,(unsigned int)s
->s2
->challenge_length
);
692 SSLerr(SSL_F_GET_CLIENT_HELLO
,ERR_R_MALLOC_FAILURE
);
696 static int server_hello(SSL
*s
)
700 STACK_OF(SSL_CIPHER
) *sk
;
702 p
=(unsigned char *)s
->init_buf
->data
;
703 if (s
->state
== SSL2_ST_SEND_SERVER_HELLO_A
)
706 *(p
++)=SSL2_MT_SERVER_HELLO
; /* type */
708 *(p
++)=(unsigned char)hit
;
712 if (s
->session
->sess_cert
!= NULL
)
713 /* This can't really happen because get_client_hello
714 * has called ssl_get_new_session, which does not set
716 ssl_sess_cert_free(s
->session
->sess_cert
);
717 s
->session
->sess_cert
= ssl_sess_cert_new();
718 if (s
->session
->sess_cert
== NULL
)
720 SSLerr(SSL_F_SERVER_HELLO
, ERR_R_MALLOC_FAILURE
);
724 /* If 'hit' is set, then s->sess_cert may be non-NULL or NULL,
725 * depending on whether it survived in the internal cache
726 * or was retrieved from an external cache.
727 * If it is NULL, we cannot put any useful data in it anyway,
728 * so we don't touch it.
731 #else /* That's what used to be done when cert_st and sess_cert_st were
734 { /* else add cert to session */
735 CRYPTO_add(&s
->cert
->references
,1,CRYPTO_LOCK_SSL_CERT
);
736 if (s
->session
->sess_cert
!= NULL
)
737 ssl_cert_free(s
->session
->sess_cert
);
738 s
->session
->sess_cert
=s
->cert
;
740 else /* We have a session id-cache hit, if the
741 * session-id has no certificate listed against
742 * the 'cert' structure, grab the 'old' one
743 * listed against the SSL connection */
745 if (s
->session
->sess_cert
== NULL
)
747 CRYPTO_add(&s
->cert
->references
,1,
748 CRYPTO_LOCK_SSL_CERT
);
749 s
->session
->sess_cert
=s
->cert
;
756 ssl2_return_error(s
,SSL2_PE_NO_CERTIFICATE
);
757 SSLerr(SSL_F_SERVER_HELLO
,SSL_R_NO_CERTIFICATE_SPECIFIED
);
763 *(p
++)=0; /* no certificate type */
764 s2n(s
->version
,p
); /* version */
765 s2n(0,p
); /* cert len */
766 s2n(0,p
); /* ciphers len */
771 /* put certificate type */
772 *(p
++)=SSL2_CT_X509_CERTIFICATE
;
773 s2n(s
->version
,p
); /* version */
774 n
=i2d_X509(s
->cert
->pkeys
[SSL_PKEY_RSA_ENC
].x509
,NULL
);
775 s2n(n
,p
); /* certificate length */
776 i2d_X509(s
->cert
->pkeys
[SSL_PKEY_RSA_ENC
].x509
,&d
);
779 /* lets send out the ciphers we like in the
781 sk
= s
->session
->ciphers
;
782 n
=ssl_cipher_list_to_bytes(s
,s
->session
->ciphers
,d
,0);
784 s2n(n
,p
); /* add cipher length */
787 /* make and send conn_id */
788 s2n(SSL2_CONNECTION_ID_LENGTH
,p
); /* add conn_id length */
789 s
->s2
->conn_id_length
=SSL2_CONNECTION_ID_LENGTH
;
790 if (RAND_pseudo_bytes(s
->s2
->conn_id
,(int)s
->s2
->conn_id_length
) <= 0)
792 memcpy(d
,s
->s2
->conn_id
,SSL2_CONNECTION_ID_LENGTH
);
793 d
+=SSL2_CONNECTION_ID_LENGTH
;
795 s
->state
=SSL2_ST_SEND_SERVER_HELLO_B
;
796 s
->init_num
=d
-(unsigned char *)s
->init_buf
->data
;
799 /* SSL2_ST_SEND_SERVER_HELLO_B */
800 /* If we are using TCP/IP, the performance is bad if we do 2
801 * writes without a read between them. This occurs when
802 * Session-id reuse is used, so I will put in a buffering module
806 if (!ssl_init_wbio_buffer(s
,1)) return(-1);
809 return(ssl2_do_write(s
));
812 static int get_client_finished(SSL
*s
)
818 p
=(unsigned char *)s
->init_buf
->data
;
819 if (s
->state
== SSL2_ST_GET_CLIENT_FINISHED_A
)
821 i
=ssl2_read(s
,(char *)&(p
[s
->init_num
]),1-s
->init_num
);
822 if (i
< 1-s
->init_num
)
823 return(ssl2_part_read(s
,SSL_F_GET_CLIENT_FINISHED
,i
));
826 if (*p
!= SSL2_MT_CLIENT_FINISHED
)
828 if (*p
!= SSL2_MT_ERROR
)
830 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
831 SSLerr(SSL_F_GET_CLIENT_FINISHED
,SSL_R_READ_WRONG_PACKET_TYPE
);
835 SSLerr(SSL_F_GET_CLIENT_FINISHED
,SSL_R_PEER_ERROR
);
836 /* try to read the error message */
837 i
=ssl2_read(s
,(char *)&(p
[s
->init_num
]),3-s
->init_num
);
838 return ssl2_part_read(s
,SSL_F_GET_SERVER_VERIFY
,i
);
842 s
->state
=SSL2_ST_GET_CLIENT_FINISHED_B
;
845 /* SSL2_ST_GET_CLIENT_FINISHED_B */
846 if (s
->s2
->conn_id_length
> sizeof s
->s2
->conn_id
)
848 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
849 SSLerr(SSL_F_GET_CLIENT_FINISHED
, ERR_R_INTERNAL_ERROR
);
852 len
= 1 + (unsigned long)s
->s2
->conn_id_length
;
853 n
= (int)len
- s
->init_num
;
854 i
= ssl2_read(s
,(char *)&(p
[s
->init_num
]),n
);
857 return(ssl2_part_read(s
,SSL_F_GET_CLIENT_FINISHED
,i
));
860 s
->msg_callback(0, s
->version
, 0, p
, len
, s
, s
->msg_callback_arg
); /* CLIENT-FINISHED */
862 if (memcmp(p
,s
->s2
->conn_id
,s
->s2
->conn_id_length
) != 0)
864 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
865 SSLerr(SSL_F_GET_CLIENT_FINISHED
,SSL_R_CONNECTION_ID_IS_DIFFERENT
);
871 static int server_verify(SSL
*s
)
875 if (s
->state
== SSL2_ST_SEND_SERVER_VERIFY_A
)
877 p
=(unsigned char *)s
->init_buf
->data
;
878 *(p
++)=SSL2_MT_SERVER_VERIFY
;
879 if (s
->s2
->challenge_length
> sizeof s
->s2
->challenge
)
881 SSLerr(SSL_F_SERVER_VERIFY
, ERR_R_INTERNAL_ERROR
);
884 memcpy(p
,s
->s2
->challenge
,(unsigned int)s
->s2
->challenge_length
);
885 /* p+=s->s2->challenge_length; */
887 s
->state
=SSL2_ST_SEND_SERVER_VERIFY_B
;
888 s
->init_num
=s
->s2
->challenge_length
+1;
891 return(ssl2_do_write(s
));
894 static int server_finish(SSL
*s
)
898 if (s
->state
== SSL2_ST_SEND_SERVER_FINISHED_A
)
900 p
=(unsigned char *)s
->init_buf
->data
;
901 *(p
++)=SSL2_MT_SERVER_FINISHED
;
903 if (s
->session
->session_id_length
> sizeof s
->session
->session_id
)
905 SSLerr(SSL_F_SERVER_FINISH
, ERR_R_INTERNAL_ERROR
);
908 memcpy(p
,s
->session
->session_id
, (unsigned int)s
->session
->session_id_length
);
909 /* p+=s->session->session_id_length; */
911 s
->state
=SSL2_ST_SEND_SERVER_FINISHED_B
;
912 s
->init_num
=s
->session
->session_id_length
+1;
916 /* SSL2_ST_SEND_SERVER_FINISHED_B */
917 return(ssl2_do_write(s
));
920 /* send the request and check the response */
921 static int request_certificate(SSL
*s
)
923 const unsigned char *cp
;
924 unsigned char *p
,*p2
,*buf2
;
926 int i
,j
,ctype
,ret
= -1;
929 STACK_OF(X509
) *sk
=NULL
;
932 if (s
->state
== SSL2_ST_SEND_REQUEST_CERTIFICATE_A
)
934 p
=(unsigned char *)s
->init_buf
->data
;
935 *(p
++)=SSL2_MT_REQUEST_CERTIFICATE
;
936 *(p
++)=SSL2_AT_MD5_WITH_RSA_ENCRYPTION
;
937 if (RAND_pseudo_bytes(ccd
,SSL2_MIN_CERT_CHALLENGE_LENGTH
) <= 0)
939 memcpy(p
,ccd
,SSL2_MIN_CERT_CHALLENGE_LENGTH
);
941 s
->state
=SSL2_ST_SEND_REQUEST_CERTIFICATE_B
;
942 s
->init_num
=SSL2_MIN_CERT_CHALLENGE_LENGTH
+2;
946 if (s
->state
== SSL2_ST_SEND_REQUEST_CERTIFICATE_B
)
956 s
->state
=SSL2_ST_SEND_REQUEST_CERTIFICATE_C
;
959 if (s
->state
== SSL2_ST_SEND_REQUEST_CERTIFICATE_C
)
961 p
=(unsigned char *)s
->init_buf
->data
;
962 i
=ssl2_read(s
,(char *)&(p
[s
->init_num
]),6-s
->init_num
); /* try to read 6 octets ... */
963 if (i
< 3-s
->init_num
) /* ... but don't call ssl2_part_read now if we got at least 3
964 * (probably NO-CERTIFICATE-ERROR) */
966 ret
=ssl2_part_read(s
,SSL_F_REQUEST_CERTIFICATE
,i
);
971 if ((s
->init_num
>= 3) && (p
[0] == SSL2_MT_ERROR
))
974 if (i
!= SSL2_PE_NO_CERTIFICATE
)
976 /* not the error message we expected -- let ssl2_part_read handle it */
978 ret
= ssl2_part_read(s
,SSL_F_REQUEST_CERTIFICATE
, 3);
983 s
->msg_callback(0, s
->version
, 0, p
, 3, s
, s
->msg_callback_arg
); /* ERROR */
985 /* this is the one place where we can recover from an SSL 2.0 error */
987 if (s
->verify_mode
& SSL_VERIFY_FAIL_IF_NO_PEER_CERT
)
989 ssl2_return_error(s
,SSL2_PE_BAD_CERTIFICATE
);
990 SSLerr(SSL_F_REQUEST_CERTIFICATE
,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE
);
996 if ((*(p
++) != SSL2_MT_CLIENT_CERTIFICATE
) || (s
->init_num
< 6))
998 ssl2_return_error(s
,SSL2_PE_UNDEFINED_ERROR
);
999 SSLerr(SSL_F_REQUEST_CERTIFICATE
,SSL_R_SHORT_READ
);
1002 if (s
->init_num
!= 6)
1004 SSLerr(SSL_F_REQUEST_CERTIFICATE
, ERR_R_INTERNAL_ERROR
);
1008 /* ok we have a response */
1009 /* certificate type, there is only one right now. */
1011 if (ctype
!= SSL2_AT_MD5_WITH_RSA_ENCRYPTION
)
1013 ssl2_return_error(s
,SSL2_PE_UNSUPPORTED_CERTIFICATE_TYPE
);
1014 SSLerr(SSL_F_REQUEST_CERTIFICATE
,SSL_R_BAD_RESPONSE_ARGUMENT
);
1017 n2s(p
,i
); s
->s2
->tmp
.clen
=i
;
1018 n2s(p
,i
); s
->s2
->tmp
.rlen
=i
;
1019 s
->state
=SSL2_ST_SEND_REQUEST_CERTIFICATE_D
;
1022 /* SSL2_ST_SEND_REQUEST_CERTIFICATE_D */
1023 p
=(unsigned char *)s
->init_buf
->data
;
1024 len
= 6 + (unsigned long)s
->s2
->tmp
.clen
+ (unsigned long)s
->s2
->tmp
.rlen
;
1025 if (len
> SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER
)
1027 SSLerr(SSL_F_REQUEST_CERTIFICATE
,SSL_R_MESSAGE_TOO_LONG
);
1030 j
= (int)len
- s
->init_num
;
1031 i
= ssl2_read(s
,(char *)&(p
[s
->init_num
]),j
);
1034 ret
=ssl2_part_read(s
,SSL_F_REQUEST_CERTIFICATE
,i
);
1037 if (s
->msg_callback
)
1038 s
->msg_callback(0, s
->version
, 0, p
, len
, s
, s
->msg_callback_arg
); /* CLIENT-CERTIFICATE */
1042 x509
=(X509
*)d2i_X509(NULL
,&cp
,(long)s
->s2
->tmp
.clen
);
1045 SSLerr(SSL_F_REQUEST_CERTIFICATE
,ERR_R_X509_LIB
);
1049 if (((sk
=sk_X509_new_null()) == NULL
) || (!sk_X509_push(sk
,x509
)))
1051 SSLerr(SSL_F_REQUEST_CERTIFICATE
,ERR_R_MALLOC_FAILURE
);
1055 i
=ssl_verify_cert_chain(s
,sk
);
1057 if (i
> 0) /* we like the packet, now check the chksum */
1060 EVP_PKEY
*pkey
=NULL
;
1062 EVP_MD_CTX_init(&ctx
);
1063 EVP_VerifyInit_ex(&ctx
,s
->ctx
->rsa_md5
, NULL
);
1064 EVP_VerifyUpdate(&ctx
,s
->s2
->key_material
,
1065 s
->s2
->key_material_length
);
1066 EVP_VerifyUpdate(&ctx
,ccd
,SSL2_MIN_CERT_CHALLENGE_LENGTH
);
1068 i
=i2d_X509(s
->cert
->pkeys
[SSL_PKEY_RSA_ENC
].x509
,NULL
);
1069 buf2
=OPENSSL_malloc((unsigned int)i
);
1072 SSLerr(SSL_F_REQUEST_CERTIFICATE
,ERR_R_MALLOC_FAILURE
);
1076 i
=i2d_X509(s
->cert
->pkeys
[SSL_PKEY_RSA_ENC
].x509
,&p2
);
1077 EVP_VerifyUpdate(&ctx
,buf2
,(unsigned int)i
);
1080 pkey
=X509_get_pubkey(x509
);
1081 if (pkey
== NULL
) goto end
;
1082 i
=EVP_VerifyFinal(&ctx
,cp
,s
->s2
->tmp
.rlen
,pkey
);
1083 EVP_PKEY_free(pkey
);
1084 EVP_MD_CTX_cleanup(&ctx
);
1088 if (s
->session
->peer
!= NULL
)
1089 X509_free(s
->session
->peer
);
1090 s
->session
->peer
=x509
;
1091 CRYPTO_add(&x509
->references
,1,CRYPTO_LOCK_X509
);
1092 s
->session
->verify_result
= s
->verify_result
;
1098 SSLerr(SSL_F_REQUEST_CERTIFICATE
,SSL_R_BAD_CHECKSUM
);
1105 ssl2_return_error(s
,SSL2_PE_BAD_CERTIFICATE
);
1113 static int ssl_rsa_private_decrypt(CERT
*c
, int len
, unsigned char *from
,
1114 unsigned char *to
, int padding
)
1119 if ((c
== NULL
) || (c
->pkeys
[SSL_PKEY_RSA_ENC
].privatekey
== NULL
))
1121 SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT
,SSL_R_NO_PRIVATEKEY
);
1124 if (c
->pkeys
[SSL_PKEY_RSA_ENC
].privatekey
->type
!= EVP_PKEY_RSA
)
1126 SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT
,SSL_R_PUBLIC_KEY_IS_NOT_RSA
);
1129 rsa
=c
->pkeys
[SSL_PKEY_RSA_ENC
].privatekey
->pkey
.rsa
;
1131 /* we have the public key */
1132 i
=RSA_private_decrypt(len
,from
,to
,rsa
,padding
);
1134 SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT
,ERR_R_RSA_LIB
);
1137 #else /* !OPENSSL_NO_SSL2 */
1140 static void *dummy
=&dummy
;