summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_srvr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/s3_srvr.c')
-rw-r--r--src/lib/libssl/s3_srvr.c2049
1 files changed, 0 insertions, 2049 deletions
diff --git a/src/lib/libssl/s3_srvr.c b/src/lib/libssl/s3_srvr.c
deleted file mode 100644
index a2c17f2950..0000000000
--- a/src/lib/libssl/s3_srvr.c
+++ /dev/null
@@ -1,2049 +0,0 @@
1/* ssl/s3_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-2002 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#define REUSE_CIPHER_BUG
113#define NETSCAPE_HANG_BUG
114
115
116#include <stdio.h>
117#include "ssl_locl.h"
118#include "kssl_lcl.h"
119#include <openssl/buffer.h>
120#include <openssl/rand.h>
121#include <openssl/objects.h>
122#include <openssl/evp.h>
123#include <openssl/x509.h>
124#ifndef OPENSSL_NO_KRB5
125#include <openssl/krb5_asn.h>
126#endif
127#include <openssl/md5.h>
128
129static SSL_METHOD *ssl3_get_server_method(int ver);
130static int ssl3_get_client_hello(SSL *s);
131static int ssl3_check_client_hello(SSL *s);
132static int ssl3_send_server_hello(SSL *s);
133static int ssl3_send_server_key_exchange(SSL *s);
134static int ssl3_send_certificate_request(SSL *s);
135static int ssl3_send_server_done(SSL *s);
136static int ssl3_get_client_key_exchange(SSL *s);
137static int ssl3_get_client_certificate(SSL *s);
138static int ssl3_get_cert_verify(SSL *s);
139static int ssl3_send_hello_request(SSL *s);
140
141static SSL_METHOD *ssl3_get_server_method(int ver)
142 {
143 if (ver == SSL3_VERSION)
144 return(SSLv3_server_method());
145 else
146 return(NULL);
147 }
148
149SSL_METHOD *SSLv3_server_method(void)
150 {
151 static int init=1;
152 static SSL_METHOD SSLv3_server_data;
153
154 if (init)
155 {
156 memcpy((char *)&SSLv3_server_data,(char *)sslv3_base_method(),
157 sizeof(SSL_METHOD));
158 SSLv3_server_data.ssl_accept=ssl3_accept;
159 SSLv3_server_data.get_ssl_method=ssl3_get_server_method;
160 init=0;
161 }
162 return(&SSLv3_server_data);
163 }
164
165int ssl3_accept(SSL *s)
166 {
167 BUF_MEM *buf;
168 unsigned long l,Time=time(NULL);
169 void (*cb)(const SSL *ssl,int type,int val)=NULL;
170 long num1;
171 int ret= -1;
172 int new_state,state,skip=0;
173
174 RAND_add(&Time,sizeof(Time),0);
175 ERR_clear_error();
176 clear_sys_error();
177
178 if (s->info_callback != NULL)
179 cb=s->info_callback;
180 else if (s->ctx->info_callback != NULL)
181 cb=s->ctx->info_callback;
182
183 /* init things to blank */
184 s->in_handshake++;
185 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
186
187 if (s->cert == NULL)
188 {
189 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
190 return(-1);
191 }
192
193 for (;;)
194 {
195 state=s->state;
196
197 switch (s->state)
198 {
199 case SSL_ST_RENEGOTIATE:
200 s->new_session=1;
201 /* s->state=SSL_ST_ACCEPT; */
202
203 case SSL_ST_BEFORE:
204 case SSL_ST_ACCEPT:
205 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
206 case SSL_ST_OK|SSL_ST_ACCEPT:
207
208 s->server=1;
209 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
210
211 if ((s->version>>8) != 3)
212 {
213 SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
214 return -1;
215 }
216 s->type=SSL_ST_ACCEPT;
217
218 if (s->init_buf == NULL)
219 {
220 if ((buf=BUF_MEM_new()) == NULL)
221 {
222 ret= -1;
223 goto end;
224 }
225 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
226 {
227 ret= -1;
228 goto end;
229 }
230 s->init_buf=buf;
231 }
232
233 if (!ssl3_setup_buffers(s))
234 {
235 ret= -1;
236 goto end;
237 }
238
239 s->init_num=0;
240
241 if (s->state != SSL_ST_RENEGOTIATE)
242 {
243 /* Ok, we now need to push on a buffering BIO so that
244 * the output is sent in a way that TCP likes :-)
245 */
246 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
247
248 ssl3_init_finished_mac(s);
249 s->state=SSL3_ST_SR_CLNT_HELLO_A;
250 s->ctx->stats.sess_accept++;
251 }
252 else
253 {
254 /* s->state == SSL_ST_RENEGOTIATE,
255 * we will just send a HelloRequest */
256 s->ctx->stats.sess_accept_renegotiate++;
257 s->state=SSL3_ST_SW_HELLO_REQ_A;
258 }
259 break;
260
261 case SSL3_ST_SW_HELLO_REQ_A:
262 case SSL3_ST_SW_HELLO_REQ_B:
263
264 s->shutdown=0;
265 ret=ssl3_send_hello_request(s);
266 if (ret <= 0) goto end;
267 s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
268 s->state=SSL3_ST_SW_FLUSH;
269 s->init_num=0;
270
271 ssl3_init_finished_mac(s);
272 break;
273
274 case SSL3_ST_SW_HELLO_REQ_C:
275 s->state=SSL_ST_OK;
276 break;
277
278 case SSL3_ST_SR_CLNT_HELLO_A:
279 case SSL3_ST_SR_CLNT_HELLO_B:
280 case SSL3_ST_SR_CLNT_HELLO_C:
281
282 s->shutdown=0;
283 ret=ssl3_get_client_hello(s);
284 if (ret <= 0) goto end;
285 s->new_session = 2;
286 s->state=SSL3_ST_SW_SRVR_HELLO_A;
287 s->init_num=0;
288 break;
289
290 case SSL3_ST_SW_SRVR_HELLO_A:
291 case SSL3_ST_SW_SRVR_HELLO_B:
292 ret=ssl3_send_server_hello(s);
293 if (ret <= 0) goto end;
294
295 if (s->hit)
296 s->state=SSL3_ST_SW_CHANGE_A;
297 else
298 s->state=SSL3_ST_SW_CERT_A;
299 s->init_num=0;
300 break;
301
302 case SSL3_ST_SW_CERT_A:
303 case SSL3_ST_SW_CERT_B:
304 /* Check if it is anon DH */
305 if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
306 {
307 ret=ssl3_send_server_certificate(s);
308 if (ret <= 0) goto end;
309 }
310 else
311 skip=1;
312 s->state=SSL3_ST_SW_KEY_EXCH_A;
313 s->init_num=0;
314 break;
315
316 case SSL3_ST_SW_KEY_EXCH_A:
317 case SSL3_ST_SW_KEY_EXCH_B:
318 l=s->s3->tmp.new_cipher->algorithms;
319
320 /* clear this, it may get reset by
321 * send_server_key_exchange */
322 if ((s->options & SSL_OP_EPHEMERAL_RSA)
323#ifndef OPENSSL_NO_KRB5
324 && !(l & SSL_KRB5)
325#endif /* OPENSSL_NO_KRB5 */
326 )
327 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
328 * even when forbidden by protocol specs
329 * (handshake may fail as clients are not required to
330 * be able to handle this) */
331 s->s3->tmp.use_rsa_tmp=1;
332 else
333 s->s3->tmp.use_rsa_tmp=0;
334
335 /* only send if a DH key exchange, fortezza or
336 * RSA but we have a sign only certificate */
337 if (s->s3->tmp.use_rsa_tmp
338 || (l & (SSL_DH|SSL_kFZA))
339 || ((l & SSL_kRSA)
340 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
341 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
342 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
343 )
344 )
345 )
346 )
347 {
348 ret=ssl3_send_server_key_exchange(s);
349 if (ret <= 0) goto end;
350 }
351 else
352 skip=1;
353
354 s->state=SSL3_ST_SW_CERT_REQ_A;
355 s->init_num=0;
356 break;
357
358 case SSL3_ST_SW_CERT_REQ_A:
359 case SSL3_ST_SW_CERT_REQ_B:
360 if (/* don't request cert unless asked for it: */
361 !(s->verify_mode & SSL_VERIFY_PEER) ||
362 /* if SSL_VERIFY_CLIENT_ONCE is set,
363 * don't request cert during re-negotiation: */
364 ((s->session->peer != NULL) &&
365 (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
366 /* never request cert in anonymous ciphersuites
367 * (see section "Certificate request" in SSL 3 drafts
368 * and in RFC 2246): */
369 ((s->s3->tmp.new_cipher->algorithms & SSL_aNULL) &&
370 /* ... except when the application insists on verification
371 * (against the specs, but s3_clnt.c accepts this for SSL 3) */
372 !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
373 /* never request cert in Kerberos ciphersuites */
374 (s->s3->tmp.new_cipher->algorithms & SSL_aKRB5))
375 {
376 /* no cert request */
377 skip=1;
378 s->s3->tmp.cert_request=0;
379 s->state=SSL3_ST_SW_SRVR_DONE_A;
380 }
381 else
382 {
383 s->s3->tmp.cert_request=1;
384 ret=ssl3_send_certificate_request(s);
385 if (ret <= 0) goto end;
386#ifndef NETSCAPE_HANG_BUG
387 s->state=SSL3_ST_SW_SRVR_DONE_A;
388#else
389 s->state=SSL3_ST_SW_FLUSH;
390 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
391#endif
392 s->init_num=0;
393 }
394 break;
395
396 case SSL3_ST_SW_SRVR_DONE_A:
397 case SSL3_ST_SW_SRVR_DONE_B:
398 ret=ssl3_send_server_done(s);
399 if (ret <= 0) goto end;
400 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
401 s->state=SSL3_ST_SW_FLUSH;
402 s->init_num=0;
403 break;
404
405 case SSL3_ST_SW_FLUSH:
406 /* number of bytes to be flushed */
407 num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL);
408 if (num1 > 0)
409 {
410 s->rwstate=SSL_WRITING;
411 num1=BIO_flush(s->wbio);
412 if (num1 <= 0) { ret= -1; goto end; }
413 s->rwstate=SSL_NOTHING;
414 }
415
416 s->state=s->s3->tmp.next_state;
417 break;
418
419 case SSL3_ST_SR_CERT_A:
420 case SSL3_ST_SR_CERT_B:
421 /* Check for second client hello (MS SGC) */
422 ret = ssl3_check_client_hello(s);
423 if (ret <= 0)
424 goto end;
425 if (ret == 2)
426 s->state = SSL3_ST_SR_CLNT_HELLO_C;
427 else {
428 /* could be sent for a DH cert, even if we
429 * have not asked for it :-) */
430 ret=ssl3_get_client_certificate(s);
431 if (ret <= 0) goto end;
432 s->init_num=0;
433 s->state=SSL3_ST_SR_KEY_EXCH_A;
434 }
435 break;
436
437 case SSL3_ST_SR_KEY_EXCH_A:
438 case SSL3_ST_SR_KEY_EXCH_B:
439 ret=ssl3_get_client_key_exchange(s);
440 if (ret <= 0) goto end;
441 s->state=SSL3_ST_SR_CERT_VRFY_A;
442 s->init_num=0;
443
444 /* We need to get hashes here so if there is
445 * a client cert, it can be verified */
446 s->method->ssl3_enc->cert_verify_mac(s,
447 &(s->s3->finish_dgst1),
448 &(s->s3->tmp.cert_verify_md[0]));
449 s->method->ssl3_enc->cert_verify_mac(s,
450 &(s->s3->finish_dgst2),
451 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]));
452
453 break;
454
455 case SSL3_ST_SR_CERT_VRFY_A:
456 case SSL3_ST_SR_CERT_VRFY_B:
457
458 /* we should decide if we expected this one */
459 ret=ssl3_get_cert_verify(s);
460 if (ret <= 0) goto end;
461
462 s->state=SSL3_ST_SR_FINISHED_A;
463 s->init_num=0;
464 break;
465
466 case SSL3_ST_SR_FINISHED_A:
467 case SSL3_ST_SR_FINISHED_B:
468 ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
469 SSL3_ST_SR_FINISHED_B);
470 if (ret <= 0) goto end;
471 if (s->hit)
472 s->state=SSL_ST_OK;
473 else
474 s->state=SSL3_ST_SW_CHANGE_A;
475 s->init_num=0;
476 break;
477
478 case SSL3_ST_SW_CHANGE_A:
479 case SSL3_ST_SW_CHANGE_B:
480
481 s->session->cipher=s->s3->tmp.new_cipher;
482 if (!s->method->ssl3_enc->setup_key_block(s))
483 { ret= -1; goto end; }
484
485 ret=ssl3_send_change_cipher_spec(s,
486 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
487
488 if (ret <= 0) goto end;
489 s->state=SSL3_ST_SW_FINISHED_A;
490 s->init_num=0;
491
492 if (!s->method->ssl3_enc->change_cipher_state(s,
493 SSL3_CHANGE_CIPHER_SERVER_WRITE))
494 {
495 ret= -1;
496 goto end;
497 }
498
499 break;
500
501 case SSL3_ST_SW_FINISHED_A:
502 case SSL3_ST_SW_FINISHED_B:
503 ret=ssl3_send_finished(s,
504 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
505 s->method->ssl3_enc->server_finished_label,
506 s->method->ssl3_enc->server_finished_label_len);
507 if (ret <= 0) goto end;
508 s->state=SSL3_ST_SW_FLUSH;
509 if (s->hit)
510 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
511 else
512 s->s3->tmp.next_state=SSL_ST_OK;
513 s->init_num=0;
514 break;
515
516 case SSL_ST_OK:
517 /* clean a few things up */
518 ssl3_cleanup_key_block(s);
519
520 BUF_MEM_free(s->init_buf);
521 s->init_buf=NULL;
522
523 /* remove buffering on output */
524 ssl_free_wbio_buffer(s);
525
526 s->init_num=0;
527
528 if (s->new_session == 2) /* skipped if we just sent a HelloRequest */
529 {
530 /* actually not necessarily a 'new' session unless
531 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */
532
533 s->new_session=0;
534
535 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
536
537 s->ctx->stats.sess_accept_good++;
538 /* s->server=1; */
539 s->handshake_func=ssl3_accept;
540
541 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
542 }
543
544 ret = 1;
545 goto end;
546 /* break; */
547
548 default:
549 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_UNKNOWN_STATE);
550 ret= -1;
551 goto end;
552 /* break; */
553 }
554
555 if (!s->s3->tmp.reuse_message && !skip)
556 {
557 if (s->debug)
558 {
559 if ((ret=BIO_flush(s->wbio)) <= 0)
560 goto end;
561 }
562
563
564 if ((cb != NULL) && (s->state != state))
565 {
566 new_state=s->state;
567 s->state=state;
568 cb(s,SSL_CB_ACCEPT_LOOP,1);
569 s->state=new_state;
570 }
571 }
572 skip=0;
573 }
574end:
575 /* BIO_flush(s->wbio); */
576
577 s->in_handshake--;
578 if (cb != NULL)
579 cb(s,SSL_CB_ACCEPT_EXIT,ret);
580 return(ret);
581 }
582
583static int ssl3_send_hello_request(SSL *s)
584 {
585 unsigned char *p;
586
587 if (s->state == SSL3_ST_SW_HELLO_REQ_A)
588 {
589 p=(unsigned char *)s->init_buf->data;
590 *(p++)=SSL3_MT_HELLO_REQUEST;
591 *(p++)=0;
592 *(p++)=0;
593 *(p++)=0;
594
595 s->state=SSL3_ST_SW_HELLO_REQ_B;
596 /* number of bytes to write */
597 s->init_num=4;
598 s->init_off=0;
599 }
600
601 /* SSL3_ST_SW_HELLO_REQ_B */
602 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
603 }
604
605static int ssl3_check_client_hello(SSL *s)
606 {
607 int ok;
608 long n;
609
610 /* this function is called when we really expect a Certificate message,
611 * so permit appropriate message length */
612 n=ssl3_get_message(s,
613 SSL3_ST_SR_CERT_A,
614 SSL3_ST_SR_CERT_B,
615 -1,
616 s->max_cert_list,
617 &ok);
618 if (!ok) return((int)n);
619 s->s3->tmp.reuse_message = 1;
620 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_HELLO)
621 {
622 /* Throw away what we have done so far in the current handshake,
623 * which will now be aborted. (A full SSL_clear would be too much.)
624 * I hope that tmp.dh is the only thing that may need to be cleared
625 * when a handshake is not completed ... */
626#ifndef OPENSSL_NO_DH
627 if (s->s3->tmp.dh != NULL)
628 {
629 DH_free(s->s3->tmp.dh);
630 s->s3->tmp.dh = NULL;
631 }
632#endif
633 return 2;
634 }
635 return 1;
636}
637
638static int ssl3_get_client_hello(SSL *s)
639 {
640 int i,j,ok,al,ret= -1;
641 long n;
642 unsigned long id;
643 unsigned char *p,*d,*q;
644 SSL_CIPHER *c;
645 SSL_COMP *comp=NULL;
646 STACK_OF(SSL_CIPHER) *ciphers=NULL;
647
648 /* We do this so that we will respond with our native type.
649 * If we are TLSv1 and we get SSLv3, we will respond with TLSv1,
650 * This down switching should be handled by a different method.
651 * If we are SSLv3, we will respond with SSLv3, even if prompted with
652 * TLSv1.
653 */
654 if (s->state == SSL3_ST_SR_CLNT_HELLO_A)
655 {
656 s->first_packet=1;
657 s->state=SSL3_ST_SR_CLNT_HELLO_B;
658 }
659 n=ssl3_get_message(s,
660 SSL3_ST_SR_CLNT_HELLO_B,
661 SSL3_ST_SR_CLNT_HELLO_C,
662 SSL3_MT_CLIENT_HELLO,
663 SSL3_RT_MAX_PLAIN_LENGTH,
664 &ok);
665
666 if (!ok) return((int)n);
667 d=p=(unsigned char *)s->init_msg;
668
669 /* use version from inside client hello, not from record header
670 * (may differ: see RFC 2246, Appendix E, second paragraph) */
671 s->client_version=(((int)p[0])<<8)|(int)p[1];
672 p+=2;
673
674 if (s->client_version < s->version)
675 {
676 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
677 if ((s->client_version>>8) == SSL3_VERSION_MAJOR)
678 {
679 /* similar to ssl3_get_record, send alert using remote version number */
680 s->version = s->client_version;
681 }
682 al = SSL_AD_PROTOCOL_VERSION;
683 goto f_err;
684 }
685
686 /* load the client random */
687 memcpy(s->s3->client_random,p,SSL3_RANDOM_SIZE);
688 p+=SSL3_RANDOM_SIZE;
689
690 /* get the session-id */
691 j= *(p++);
692
693 s->hit=0;
694 /* Versions before 0.9.7 always allow session reuse during renegotiation
695 * (i.e. when s->new_session is true), option
696 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is new with 0.9.7.
697 * Maybe this optional behaviour should always have been the default,
698 * but we cannot safely change the default behaviour (or new applications
699 * might be written that become totally unsecure when compiled with
700 * an earlier library version)
701 */
702 if (j == 0 || (s->new_session && (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)))
703 {
704 if (!ssl_get_new_session(s,1))
705 goto err;
706 }
707 else
708 {
709 i=ssl_get_prev_session(s,p,j);
710 if (i == 1)
711 { /* previous session */
712 s->hit=1;
713 }
714 else if (i == -1)
715 goto err;
716 else /* i == 0 */
717 {
718 if (!ssl_get_new_session(s,1))
719 goto err;
720 }
721 }
722
723 p+=j;
724 n2s(p,i);
725 if ((i == 0) && (j != 0))
726 {
727 /* we need a cipher if we are not resuming a session */
728 al=SSL_AD_ILLEGAL_PARAMETER;
729 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_SPECIFIED);
730 goto f_err;
731 }
732 if ((p+i) >= (d+n))
733 {
734 /* not enough data */
735 al=SSL_AD_DECODE_ERROR;
736 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
737 goto f_err;
738 }
739 if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers))
740 == NULL))
741 {
742 goto err;
743 }
744 p+=i;
745
746 /* If it is a hit, check that the cipher is in the list */
747 if ((s->hit) && (i > 0))
748 {
749 j=0;
750 id=s->session->cipher->id;
751
752#ifdef CIPHER_DEBUG
753 printf("client sent %d ciphers\n",sk_num(ciphers));
754#endif
755 for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++)
756 {
757 c=sk_SSL_CIPHER_value(ciphers,i);
758#ifdef CIPHER_DEBUG
759 printf("client [%2d of %2d]:%s\n",
760 i,sk_num(ciphers),SSL_CIPHER_get_name(c));
761#endif
762 if (c->id == id)
763 {
764 j=1;
765 break;
766 }
767 }
768 if (j == 0)
769 {
770 if ((s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1))
771 {
772 /* Very bad for multi-threading.... */
773 s->session->cipher=sk_SSL_CIPHER_value(ciphers,
774 0);
775 }
776 else
777 {
778 /* we need to have the cipher in the cipher
779 * list if we are asked to reuse it */
780 al=SSL_AD_ILLEGAL_PARAMETER;
781 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_CIPHER_MISSING);
782 goto f_err;
783 }
784 }
785 }
786
787 /* compression */
788 i= *(p++);
789 if ((p+i) > (d+n))
790 {
791 /* not enough data */
792 al=SSL_AD_DECODE_ERROR;
793 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
794 goto f_err;
795 }
796 q=p;
797 for (j=0; j<i; j++)
798 {
799 if (p[j] == 0) break;
800 }
801
802 p+=i;
803 if (j >= i)
804 {
805 /* no compress */
806 al=SSL_AD_DECODE_ERROR;
807 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_COMPRESSION_SPECIFIED);
808 goto f_err;
809 }
810
811 /* Worst case, we will use the NULL compression, but if we have other
812 * options, we will now look for them. We have i-1 compression
813 * algorithms from the client, starting at q. */
814 s->s3->tmp.new_compression=NULL;
815 if (s->ctx->comp_methods != NULL)
816 { /* See if we have a match */
817 int m,nn,o,v,done=0;
818
819 nn=sk_SSL_COMP_num(s->ctx->comp_methods);
820 for (m=0; m<nn; m++)
821 {
822 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
823 v=comp->id;
824 for (o=0; o<i; o++)
825 {
826 if (v == q[o])
827 {
828 done=1;
829 break;
830 }
831 }
832 if (done) break;
833 }
834 if (done)
835 s->s3->tmp.new_compression=comp;
836 else
837 comp=NULL;
838 }
839
840 /* TLS does not mind if there is extra stuff */
841 if (s->version == SSL3_VERSION)
842 {
843 if (p < (d+n))
844 {
845 /* wrong number of bytes,
846 * there could be more to follow */
847 al=SSL_AD_DECODE_ERROR;
848 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
849 goto f_err;
850 }
851 }
852
853 /* Given s->session->ciphers and SSL_get_ciphers, we must
854 * pick a cipher */
855
856 if (!s->hit)
857 {
858 s->session->compress_meth=(comp == NULL)?0:comp->id;
859 if (s->session->ciphers != NULL)
860 sk_SSL_CIPHER_free(s->session->ciphers);
861 s->session->ciphers=ciphers;
862 if (ciphers == NULL)
863 {
864 al=SSL_AD_ILLEGAL_PARAMETER;
865 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_PASSED);
866 goto f_err;
867 }
868 ciphers=NULL;
869 c=ssl3_choose_cipher(s,s->session->ciphers,
870 SSL_get_ciphers(s));
871
872 if (c == NULL)
873 {
874 al=SSL_AD_HANDSHAKE_FAILURE;
875 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
876 goto f_err;
877 }
878 s->s3->tmp.new_cipher=c;
879 }
880 else
881 {
882 /* Session-id reuse */
883#ifdef REUSE_CIPHER_BUG
884 STACK_OF(SSL_CIPHER) *sk;
885 SSL_CIPHER *nc=NULL;
886 SSL_CIPHER *ec=NULL;
887
888 if (s->options & SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG)
889 {
890 sk=s->session->ciphers;
891 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
892 {
893 c=sk_SSL_CIPHER_value(sk,i);
894 if (c->algorithms & SSL_eNULL)
895 nc=c;
896 if (SSL_C_IS_EXPORT(c))
897 ec=c;
898 }
899 if (nc != NULL)
900 s->s3->tmp.new_cipher=nc;
901 else if (ec != NULL)
902 s->s3->tmp.new_cipher=ec;
903 else
904 s->s3->tmp.new_cipher=s->session->cipher;
905 }
906 else
907#endif
908 s->s3->tmp.new_cipher=s->session->cipher;
909 }
910
911 /* we now have the following setup.
912 * client_random
913 * cipher_list - our prefered list of ciphers
914 * ciphers - the clients prefered list of ciphers
915 * compression - basically ignored right now
916 * ssl version is set - sslv3
917 * s->session - The ssl session has been setup.
918 * s->hit - session reuse flag
919 * s->tmp.new_cipher - the new cipher to use.
920 */
921
922 ret=1;
923 if (0)
924 {
925f_err:
926 ssl3_send_alert(s,SSL3_AL_FATAL,al);
927 }
928err:
929 if (ciphers != NULL) sk_SSL_CIPHER_free(ciphers);
930 return(ret);
931 }
932
933static int ssl3_send_server_hello(SSL *s)
934 {
935 unsigned char *buf;
936 unsigned char *p,*d;
937 int i,sl;
938 unsigned long l,Time;
939
940 if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
941 {
942 buf=(unsigned char *)s->init_buf->data;
943 p=s->s3->server_random;
944 Time=time(NULL); /* Time */
945 l2n(Time,p);
946 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
947 /* Do the message type and length last */
948 d=p= &(buf[4]);
949
950 *(p++)=s->version>>8;
951 *(p++)=s->version&0xff;
952
953 /* Random stuff */
954 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
955 p+=SSL3_RANDOM_SIZE;
956
957 /* now in theory we have 3 options to sending back the
958 * session id. If it is a re-use, we send back the
959 * old session-id, if it is a new session, we send
960 * back the new session-id or we send back a 0 length
961 * session-id if we want it to be single use.
962 * Currently I will not implement the '0' length session-id
963 * 12-Jan-98 - I'll now support the '0' length stuff.
964 */
965 if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER))
966 s->session->session_id_length=0;
967
968 sl=s->session->session_id_length;
969 if (sl > sizeof s->session->session_id)
970 {
971 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
972 return -1;
973 }
974 *(p++)=sl;
975 memcpy(p,s->session->session_id,sl);
976 p+=sl;
977
978 /* put the cipher */
979 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
980 p+=i;
981
982 /* put the compression method */
983 if (s->s3->tmp.new_compression == NULL)
984 *(p++)=0;
985 else
986 *(p++)=s->s3->tmp.new_compression->id;
987
988 /* do the header */
989 l=(p-d);
990 d=buf;
991 *(d++)=SSL3_MT_SERVER_HELLO;
992 l2n3(l,d);
993
994 s->state=SSL3_ST_CW_CLNT_HELLO_B;
995 /* number of bytes to write */
996 s->init_num=p-buf;
997 s->init_off=0;
998 }
999
1000 /* SSL3_ST_CW_CLNT_HELLO_B */
1001 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1002 }
1003
1004static int ssl3_send_server_done(SSL *s)
1005 {
1006 unsigned char *p;
1007
1008 if (s->state == SSL3_ST_SW_SRVR_DONE_A)
1009 {
1010 p=(unsigned char *)s->init_buf->data;
1011
1012 /* do the header */
1013 *(p++)=SSL3_MT_SERVER_DONE;
1014 *(p++)=0;
1015 *(p++)=0;
1016 *(p++)=0;
1017
1018 s->state=SSL3_ST_SW_SRVR_DONE_B;
1019 /* number of bytes to write */
1020 s->init_num=4;
1021 s->init_off=0;
1022 }
1023
1024 /* SSL3_ST_CW_CLNT_HELLO_B */
1025 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1026 }
1027
1028static int ssl3_send_server_key_exchange(SSL *s)
1029 {
1030#ifndef OPENSSL_NO_RSA
1031 unsigned char *q;
1032 int j,num;
1033 RSA *rsa;
1034 unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
1035 unsigned int u;
1036#endif
1037#ifndef OPENSSL_NO_DH
1038 DH *dh=NULL,*dhp;
1039#endif
1040 EVP_PKEY *pkey;
1041 unsigned char *p,*d;
1042 int al,i;
1043 unsigned long type;
1044 int n;
1045 CERT *cert;
1046 BIGNUM *r[4];
1047 int nr[4],kn;
1048 BUF_MEM *buf;
1049 EVP_MD_CTX md_ctx;
1050
1051 EVP_MD_CTX_init(&md_ctx);
1052 if (s->state == SSL3_ST_SW_KEY_EXCH_A)
1053 {
1054 type=s->s3->tmp.new_cipher->algorithms & SSL_MKEY_MASK;
1055 cert=s->cert;
1056
1057 buf=s->init_buf;
1058
1059 r[0]=r[1]=r[2]=r[3]=NULL;
1060 n=0;
1061#ifndef OPENSSL_NO_RSA
1062 if (type & SSL_kRSA)
1063 {
1064 rsa=cert->rsa_tmp;
1065 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
1066 {
1067 rsa=s->cert->rsa_tmp_cb(s,
1068 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1069 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1070 if(rsa == NULL)
1071 {
1072 al=SSL_AD_HANDSHAKE_FAILURE;
1073 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1074 goto f_err;
1075 }
1076 RSA_up_ref(rsa);
1077 cert->rsa_tmp=rsa;
1078 }
1079 if (rsa == NULL)
1080 {
1081 al=SSL_AD_HANDSHAKE_FAILURE;
1082 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
1083 goto f_err;
1084 }
1085 r[0]=rsa->n;
1086 r[1]=rsa->e;
1087 s->s3->tmp.use_rsa_tmp=1;
1088 }
1089 else
1090#endif
1091#ifndef OPENSSL_NO_DH
1092 if (type & SSL_kEDH)
1093 {
1094 dhp=cert->dh_tmp;
1095 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1096 dhp=s->cert->dh_tmp_cb(s,
1097 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1098 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1099 if (dhp == NULL)
1100 {
1101 al=SSL_AD_HANDSHAKE_FAILURE;
1102 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
1103 goto f_err;
1104 }
1105
1106 if (s->s3->tmp.dh != NULL)
1107 {
1108 DH_free(dh);
1109 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1110 goto err;
1111 }
1112
1113 if ((dh=DHparams_dup(dhp)) == NULL)
1114 {
1115 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1116 goto err;
1117 }
1118
1119 s->s3->tmp.dh=dh;
1120 if ((dhp->pub_key == NULL ||
1121 dhp->priv_key == NULL ||
1122 (s->options & SSL_OP_SINGLE_DH_USE)))
1123 {
1124 if(!DH_generate_key(dh))
1125 {
1126 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1127 ERR_R_DH_LIB);
1128 goto err;
1129 }
1130 }
1131 else
1132 {
1133 dh->pub_key=BN_dup(dhp->pub_key);
1134 dh->priv_key=BN_dup(dhp->priv_key);
1135 if ((dh->pub_key == NULL) ||
1136 (dh->priv_key == NULL))
1137 {
1138 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1139 goto err;
1140 }
1141 }
1142 r[0]=dh->p;
1143 r[1]=dh->g;
1144 r[2]=dh->pub_key;
1145 }
1146 else
1147#endif
1148 {
1149 al=SSL_AD_HANDSHAKE_FAILURE;
1150 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1151 goto f_err;
1152 }
1153 for (i=0; r[i] != NULL; i++)
1154 {
1155 nr[i]=BN_num_bytes(r[i]);
1156 n+=2+nr[i];
1157 }
1158
1159 if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
1160 {
1161 if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher))
1162 == NULL)
1163 {
1164 al=SSL_AD_DECODE_ERROR;
1165 goto f_err;
1166 }
1167 kn=EVP_PKEY_size(pkey);
1168 }
1169 else
1170 {
1171 pkey=NULL;
1172 kn=0;
1173 }
1174
1175 if (!BUF_MEM_grow(buf,n+4+kn))
1176 {
1177 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
1178 goto err;
1179 }
1180 d=(unsigned char *)s->init_buf->data;
1181 p= &(d[4]);
1182
1183 for (i=0; r[i] != NULL; i++)
1184 {
1185 s2n(nr[i],p);
1186 BN_bn2bin(r[i],p);
1187 p+=nr[i];
1188 }
1189
1190 /* not anonymous */
1191 if (pkey != NULL)
1192 {
1193 /* n is the length of the params, they start at &(d[4])
1194 * and p points to the space at the end. */
1195#ifndef OPENSSL_NO_RSA
1196 if (pkey->type == EVP_PKEY_RSA)
1197 {
1198 q=md_buf;
1199 j=0;
1200 for (num=2; num > 0; num--)
1201 {
1202 EVP_DigestInit_ex(&md_ctx,(num == 2)
1203 ?s->ctx->md5:s->ctx->sha1, NULL);
1204 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1205 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1206 EVP_DigestUpdate(&md_ctx,&(d[4]),n);
1207 EVP_DigestFinal_ex(&md_ctx,q,
1208 (unsigned int *)&i);
1209 q+=i;
1210 j+=i;
1211 }
1212 if (RSA_sign(NID_md5_sha1, md_buf, j,
1213 &(p[2]), &u, pkey->pkey.rsa) <= 0)
1214 {
1215 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
1216 goto err;
1217 }
1218 s2n(u,p);
1219 n+=u+2;
1220 }
1221 else
1222#endif
1223#if !defined(OPENSSL_NO_DSA)
1224 if (pkey->type == EVP_PKEY_DSA)
1225 {
1226 /* lets do DSS */
1227 EVP_SignInit_ex(&md_ctx,EVP_dss1(), NULL);
1228 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1229 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1230 EVP_SignUpdate(&md_ctx,&(d[4]),n);
1231 if (!EVP_SignFinal(&md_ctx,&(p[2]),
1232 (unsigned int *)&i,pkey))
1233 {
1234 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_DSA);
1235 goto err;
1236 }
1237 s2n(i,p);
1238 n+=i+2;
1239 }
1240 else
1241#endif
1242 {
1243 /* Is this error check actually needed? */
1244 al=SSL_AD_HANDSHAKE_FAILURE;
1245 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
1246 goto f_err;
1247 }
1248 }
1249
1250 *(d++)=SSL3_MT_SERVER_KEY_EXCHANGE;
1251 l2n3(n,d);
1252
1253 /* we should now have things packed up, so lets send
1254 * it off */
1255 s->init_num=n+4;
1256 s->init_off=0;
1257 }
1258
1259 s->state = SSL3_ST_SW_KEY_EXCH_B;
1260 EVP_MD_CTX_cleanup(&md_ctx);
1261 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1262f_err:
1263 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1264err:
1265 EVP_MD_CTX_cleanup(&md_ctx);
1266 return(-1);
1267 }
1268
1269static int ssl3_send_certificate_request(SSL *s)
1270 {
1271 unsigned char *p,*d;
1272 int i,j,nl,off,n;
1273 STACK_OF(X509_NAME) *sk=NULL;
1274 X509_NAME *name;
1275 BUF_MEM *buf;
1276
1277 if (s->state == SSL3_ST_SW_CERT_REQ_A)
1278 {
1279 buf=s->init_buf;
1280
1281 d=p=(unsigned char *)&(buf->data[4]);
1282
1283 /* get the list of acceptable cert types */
1284 p++;
1285 n=ssl3_get_req_cert_type(s,p);
1286 d[0]=n;
1287 p+=n;
1288 n++;
1289
1290 off=n;
1291 p+=2;
1292 n+=2;
1293
1294 sk=SSL_get_client_CA_list(s);
1295 nl=0;
1296 if (sk != NULL)
1297 {
1298 for (i=0; i<sk_X509_NAME_num(sk); i++)
1299 {
1300 name=sk_X509_NAME_value(sk,i);
1301 j=i2d_X509_NAME(name,NULL);
1302 if (!BUF_MEM_grow(buf,4+n+j+2))
1303 {
1304 SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
1305 goto err;
1306 }
1307 p=(unsigned char *)&(buf->data[4+n]);
1308 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
1309 {
1310 s2n(j,p);
1311 i2d_X509_NAME(name,&p);
1312 n+=2+j;
1313 nl+=2+j;
1314 }
1315 else
1316 {
1317 d=p;
1318 i2d_X509_NAME(name,&p);
1319 j-=2; s2n(j,d); j+=2;
1320 n+=j;
1321 nl+=j;
1322 }
1323 }
1324 }
1325 /* else no CA names */
1326 p=(unsigned char *)&(buf->data[4+off]);
1327 s2n(nl,p);
1328
1329 d=(unsigned char *)buf->data;
1330 *(d++)=SSL3_MT_CERTIFICATE_REQUEST;
1331 l2n3(n,d);
1332
1333 /* we should now have things packed up, so lets send
1334 * it off */
1335
1336 s->init_num=n+4;
1337 s->init_off=0;
1338#ifdef NETSCAPE_HANG_BUG
1339 p=(unsigned char *)s->init_buf->data + s->init_num;
1340
1341 /* do the header */
1342 *(p++)=SSL3_MT_SERVER_DONE;
1343 *(p++)=0;
1344 *(p++)=0;
1345 *(p++)=0;
1346 s->init_num += 4;
1347#endif
1348
1349 }
1350
1351 /* SSL3_ST_SW_CERT_REQ_B */
1352 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1353err:
1354 return(-1);
1355 }
1356
1357static int ssl3_get_client_key_exchange(SSL *s)
1358 {
1359 int i,al,ok;
1360 long n;
1361 unsigned long l;
1362 unsigned char *p;
1363#ifndef OPENSSL_NO_RSA
1364 RSA *rsa=NULL;
1365 EVP_PKEY *pkey=NULL;
1366#endif
1367#ifndef OPENSSL_NO_DH
1368 BIGNUM *pub=NULL;
1369 DH *dh_srvr;
1370#endif
1371#ifndef OPENSSL_NO_KRB5
1372 KSSL_ERR kssl_err;
1373#endif /* OPENSSL_NO_KRB5 */
1374
1375 n=ssl3_get_message(s,
1376 SSL3_ST_SR_KEY_EXCH_A,
1377 SSL3_ST_SR_KEY_EXCH_B,
1378 SSL3_MT_CLIENT_KEY_EXCHANGE,
1379 2048, /* ??? */
1380 &ok);
1381
1382 if (!ok) return((int)n);
1383 p=(unsigned char *)s->init_msg;
1384
1385 l=s->s3->tmp.new_cipher->algorithms;
1386
1387#ifndef OPENSSL_NO_RSA
1388 if (l & SSL_kRSA)
1389 {
1390 /* FIX THIS UP EAY EAY EAY EAY */
1391 if (s->s3->tmp.use_rsa_tmp)
1392 {
1393 if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
1394 rsa=s->cert->rsa_tmp;
1395 /* Don't do a callback because rsa_tmp should
1396 * be sent already */
1397 if (rsa == NULL)
1398 {
1399 al=SSL_AD_HANDSHAKE_FAILURE;
1400 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_PKEY);
1401 goto f_err;
1402
1403 }
1404 }
1405 else
1406 {
1407 pkey=s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
1408 if ( (pkey == NULL) ||
1409 (pkey->type != EVP_PKEY_RSA) ||
1410 (pkey->pkey.rsa == NULL))
1411 {
1412 al=SSL_AD_HANDSHAKE_FAILURE;
1413 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
1414 goto f_err;
1415 }
1416 rsa=pkey->pkey.rsa;
1417 }
1418
1419 /* TLS */
1420 if (s->version > SSL3_VERSION)
1421 {
1422 n2s(p,i);
1423 if (n != i+2)
1424 {
1425 if (!(s->options & SSL_OP_TLS_D5_BUG))
1426 {
1427 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
1428 goto err;
1429 }
1430 else
1431 p-=2;
1432 }
1433 else
1434 n=i;
1435 }
1436
1437 i=RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
1438
1439 al = -1;
1440
1441 if (i != SSL_MAX_MASTER_KEY_LENGTH)
1442 {
1443 al=SSL_AD_DECODE_ERROR;
1444 /* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT); */
1445 }
1446
1447 if ((al == -1) && !((p[0] == (s->client_version>>8)) && (p[1] == (s->client_version & 0xff))))
1448 {
1449 /* The premaster secret must contain the same version number as the
1450 * ClientHello to detect version rollback attacks (strangely, the
1451 * protocol does not offer such protection for DH ciphersuites).
1452 * However, buggy clients exist that send the negotiated protocol
1453 * version instead if the server does not support the requested
1454 * protocol version.
1455 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients. */
1456 if (!((s->options & SSL_OP_TLS_ROLLBACK_BUG) &&
1457 (p[0] == (s->version>>8)) && (p[1] == (s->version & 0xff))))
1458 {
1459 al=SSL_AD_DECODE_ERROR;
1460 /* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_PROTOCOL_VERSION_NUMBER); */
1461
1462 /* The Klima-Pokorny-Rosa extension of Bleichenbacher's attack
1463 * (http://eprint.iacr.org/2003/052/) exploits the version
1464 * number check as a "bad version oracle" -- an alert would
1465 * reveal that the plaintext corresponding to some ciphertext
1466 * made up by the adversary is properly formatted except
1467 * that the version number is wrong. To avoid such attacks,
1468 * we should treat this just like any other decryption error. */
1469 p[0] = (char)(int) "CAN-2003-0131 patch 2003-03-20";
1470 }
1471 }
1472
1473 if (al != -1)
1474 {
1475 /* Some decryption failure -- use random value instead as countermeasure
1476 * against Bleichenbacher's attack on PKCS #1 v1.5 RSA padding
1477 * (see RFC 2246, section 7.4.7.1). */
1478 ERR_clear_error();
1479 i = SSL_MAX_MASTER_KEY_LENGTH;
1480 p[0] = s->client_version >> 8;
1481 p[1] = s->client_version & 0xff;
1482 RAND_pseudo_bytes(p+2, i-2); /* should be RAND_bytes, but we cannot work around a failure */
1483 }
1484
1485 s->session->master_key_length=
1486 s->method->ssl3_enc->generate_master_secret(s,
1487 s->session->master_key,
1488 p,i);
1489 memset(p,0,i);
1490 }
1491 else
1492#endif
1493#ifndef OPENSSL_NO_DH
1494 if (l & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
1495 {
1496 n2s(p,i);
1497 if (n != i+2)
1498 {
1499 if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG))
1500 {
1501 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
1502 goto err;
1503 }
1504 else
1505 {
1506 p-=2;
1507 i=(int)n;
1508 }
1509 }
1510
1511 if (n == 0L) /* the parameters are in the cert */
1512 {
1513 al=SSL_AD_HANDSHAKE_FAILURE;
1514 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_UNABLE_TO_DECODE_DH_CERTS);
1515 goto f_err;
1516 }
1517 else
1518 {
1519 if (s->s3->tmp.dh == NULL)
1520 {
1521 al=SSL_AD_HANDSHAKE_FAILURE;
1522 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
1523 goto f_err;
1524 }
1525 else
1526 dh_srvr=s->s3->tmp.dh;
1527 }
1528
1529 pub=BN_bin2bn(p,i,NULL);
1530 if (pub == NULL)
1531 {
1532 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BN_LIB);
1533 goto err;
1534 }
1535
1536 i=DH_compute_key(p,pub,dh_srvr);
1537
1538 if (i <= 0)
1539 {
1540 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
1541 goto err;
1542 }
1543
1544 DH_free(s->s3->tmp.dh);
1545 s->s3->tmp.dh=NULL;
1546
1547 BN_clear_free(pub);
1548 pub=NULL;
1549 s->session->master_key_length=
1550 s->method->ssl3_enc->generate_master_secret(s,
1551 s->session->master_key,p,i);
1552 memset(p,0,i);
1553 }
1554 else
1555#endif
1556#ifndef OPENSSL_NO_KRB5
1557 if (l & SSL_kKRB5)
1558 {
1559 krb5_error_code krb5rc;
1560 krb5_data enc_ticket;
1561 krb5_data authenticator;
1562 krb5_data enc_pms;
1563 KSSL_CTX *kssl_ctx = s->kssl_ctx;
1564 EVP_CIPHER_CTX ciph_ctx;
1565 EVP_CIPHER *enc = NULL;
1566 unsigned char iv[EVP_MAX_IV_LENGTH];
1567 unsigned char pms[SSL_MAX_MASTER_KEY_LENGTH
1568 + EVP_MAX_BLOCK_LENGTH];
1569 int padl, outl;
1570 krb5_timestamp authtime = 0;
1571 krb5_ticket_times ttimes;
1572
1573 EVP_CIPHER_CTX_init(&ciph_ctx);
1574
1575 if (!kssl_ctx) kssl_ctx = kssl_ctx_new();
1576
1577 n2s(p,i);
1578 enc_ticket.length = i;
1579 enc_ticket.data = (char *)p;
1580 p+=enc_ticket.length;
1581
1582 n2s(p,i);
1583 authenticator.length = i;
1584 authenticator.data = (char *)p;
1585 p+=authenticator.length;
1586
1587 n2s(p,i);
1588 enc_pms.length = i;
1589 enc_pms.data = (char *)p;
1590 p+=enc_pms.length;
1591
1592 /* Note that the length is checked again below,
1593 ** after decryption
1594 */
1595 if(enc_pms.length > sizeof pms)
1596 {
1597 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1598 SSL_R_DATA_LENGTH_TOO_LONG);
1599 goto err;
1600 }
1601
1602 if (n != enc_ticket.length + authenticator.length +
1603 enc_pms.length + 6)
1604 {
1605 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1606 SSL_R_DATA_LENGTH_TOO_LONG);
1607 goto err;
1608 }
1609
1610 if ((krb5rc = kssl_sget_tkt(kssl_ctx, &enc_ticket, &ttimes,
1611 &kssl_err)) != 0)
1612 {
1613#ifdef KSSL_DEBUG
1614 printf("kssl_sget_tkt rtn %d [%d]\n",
1615 krb5rc, kssl_err.reason);
1616 if (kssl_err.text)
1617 printf("kssl_err text= %s\n", kssl_err.text);
1618#endif /* KSSL_DEBUG */
1619 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
1620 kssl_err.reason);
1621 goto err;
1622 }
1623
1624 /* Note: no authenticator is not considered an error,
1625 ** but will return authtime == 0.
1626 */
1627 if ((krb5rc = kssl_check_authent(kssl_ctx, &authenticator,
1628 &authtime, &kssl_err)) != 0)
1629 {
1630#ifdef KSSL_DEBUG
1631 printf("kssl_check_authent rtn %d [%d]\n",
1632 krb5rc, kssl_err.reason);
1633 if (kssl_err.text)
1634 printf("kssl_err text= %s\n", kssl_err.text);
1635#endif /* KSSL_DEBUG */
1636 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
1637 kssl_err.reason);
1638 goto err;
1639 }
1640
1641 if ((krb5rc = kssl_validate_times(authtime, &ttimes)) != 0)
1642 {
1643 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, krb5rc);
1644 goto err;
1645 }
1646
1647#ifdef KSSL_DEBUG
1648 kssl_ctx_show(kssl_ctx);
1649#endif /* KSSL_DEBUG */
1650
1651 enc = kssl_map_enc(kssl_ctx->enctype);
1652 if (enc == NULL)
1653 goto err;
1654
1655 memset(iv, 0, EVP_MAX_IV_LENGTH); /* per RFC 1510 */
1656
1657 if (!EVP_DecryptInit_ex(&ciph_ctx,enc,NULL,kssl_ctx->key,iv))
1658 {
1659 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1660 SSL_R_DECRYPTION_FAILED);
1661 goto err;
1662 }
1663 if (!EVP_DecryptUpdate(&ciph_ctx, pms,&outl,
1664 (unsigned char *)enc_pms.data, enc_pms.length))
1665 {
1666 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1667 SSL_R_DECRYPTION_FAILED);
1668 goto err;
1669 }
1670 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
1671 {
1672 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1673 SSL_R_DATA_LENGTH_TOO_LONG);
1674 goto err;
1675 }
1676 if (!EVP_DecryptFinal_ex(&ciph_ctx,&(pms[outl]),&padl))
1677 {
1678 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1679 SSL_R_DECRYPTION_FAILED);
1680 goto err;
1681 }
1682 outl += padl;
1683 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
1684 {
1685 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1686 SSL_R_DATA_LENGTH_TOO_LONG);
1687 goto err;
1688 }
1689 EVP_CIPHER_CTX_cleanup(&ciph_ctx);
1690
1691 s->session->master_key_length=
1692 s->method->ssl3_enc->generate_master_secret(s,
1693 s->session->master_key, pms, outl);
1694
1695 if (kssl_ctx->client_princ)
1696 {
1697 int len = strlen(kssl_ctx->client_princ);
1698 if ( len < SSL_MAX_KRB5_PRINCIPAL_LENGTH )
1699 {
1700 s->session->krb5_client_princ_len = len;
1701 memcpy(s->session->krb5_client_princ,kssl_ctx->client_princ,len);
1702 }
1703 }
1704
1705
1706 /* Was doing kssl_ctx_free() here,
1707 ** but it caused problems for apache.
1708 ** kssl_ctx = kssl_ctx_free(kssl_ctx);
1709 ** if (s->kssl_ctx) s->kssl_ctx = NULL;
1710 */
1711 }
1712 else
1713#endif /* OPENSSL_NO_KRB5 */
1714 {
1715 al=SSL_AD_HANDSHAKE_FAILURE;
1716 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1717 SSL_R_UNKNOWN_CIPHER_TYPE);
1718 goto f_err;
1719 }
1720
1721 return(1);
1722f_err:
1723 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1724#if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA)
1725err:
1726#endif
1727 return(-1);
1728 }
1729
1730static int ssl3_get_cert_verify(SSL *s)
1731 {
1732 EVP_PKEY *pkey=NULL;
1733 unsigned char *p;
1734 int al,ok,ret=0;
1735 long n;
1736 int type=0,i,j;
1737 X509 *peer;
1738
1739 n=ssl3_get_message(s,
1740 SSL3_ST_SR_CERT_VRFY_A,
1741 SSL3_ST_SR_CERT_VRFY_B,
1742 -1,
1743 512, /* 512? */
1744 &ok);
1745
1746 if (!ok) return((int)n);
1747
1748 if (s->session->peer != NULL)
1749 {
1750 peer=s->session->peer;
1751 pkey=X509_get_pubkey(peer);
1752 type=X509_certificate_type(peer,pkey);
1753 }
1754 else
1755 {
1756 peer=NULL;
1757 pkey=NULL;
1758 }
1759
1760 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY)
1761 {
1762 s->s3->tmp.reuse_message=1;
1763 if ((peer != NULL) && (type | EVP_PKT_SIGN))
1764 {
1765 al=SSL_AD_UNEXPECTED_MESSAGE;
1766 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_MISSING_VERIFY_MESSAGE);
1767 goto f_err;
1768 }
1769 ret=1;
1770 goto end;
1771 }
1772
1773 if (peer == NULL)
1774 {
1775 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_NO_CLIENT_CERT_RECEIVED);
1776 al=SSL_AD_UNEXPECTED_MESSAGE;
1777 goto f_err;
1778 }
1779
1780 if (!(type & EVP_PKT_SIGN))
1781 {
1782 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
1783 al=SSL_AD_ILLEGAL_PARAMETER;
1784 goto f_err;
1785 }
1786
1787 if (s->s3->change_cipher_spec)
1788 {
1789 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_CCS_RECEIVED_EARLY);
1790 al=SSL_AD_UNEXPECTED_MESSAGE;
1791 goto f_err;
1792 }
1793
1794 /* we now have a signature that we need to verify */
1795 p=(unsigned char *)s->init_msg;
1796 n2s(p,i);
1797 n-=2;
1798 if (i > n)
1799 {
1800 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_LENGTH_MISMATCH);
1801 al=SSL_AD_DECODE_ERROR;
1802 goto f_err;
1803 }
1804
1805 j=EVP_PKEY_size(pkey);
1806 if ((i > j) || (n > j) || (n <= 0))
1807 {
1808 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_WRONG_SIGNATURE_SIZE);
1809 al=SSL_AD_DECODE_ERROR;
1810 goto f_err;
1811 }
1812
1813#ifndef OPENSSL_NO_RSA
1814 if (pkey->type == EVP_PKEY_RSA)
1815 {
1816 i=RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
1817 MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH, p, i,
1818 pkey->pkey.rsa);
1819 if (i < 0)
1820 {
1821 al=SSL_AD_DECRYPT_ERROR;
1822 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_DECRYPT);
1823 goto f_err;
1824 }
1825 if (i == 0)
1826 {
1827 al=SSL_AD_DECRYPT_ERROR;
1828 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_SIGNATURE);
1829 goto f_err;
1830 }
1831 }
1832 else
1833#endif
1834#ifndef OPENSSL_NO_DSA
1835 if (pkey->type == EVP_PKEY_DSA)
1836 {
1837 j=DSA_verify(pkey->save_type,
1838 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
1839 SHA_DIGEST_LENGTH,p,i,pkey->pkey.dsa);
1840 if (j <= 0)
1841 {
1842 /* bad signature */
1843 al=SSL_AD_DECRYPT_ERROR;
1844 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_DSA_SIGNATURE);
1845 goto f_err;
1846 }
1847 }
1848 else
1849#endif
1850 {
1851 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,ERR_R_INTERNAL_ERROR);
1852 al=SSL_AD_UNSUPPORTED_CERTIFICATE;
1853 goto f_err;
1854 }
1855
1856
1857 ret=1;
1858 if (0)
1859 {
1860f_err:
1861 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1862 }
1863end:
1864 EVP_PKEY_free(pkey);
1865 return(ret);
1866 }
1867
1868static int ssl3_get_client_certificate(SSL *s)
1869 {
1870 int i,ok,al,ret= -1;
1871 X509 *x=NULL;
1872 unsigned long l,nc,llen,n;
1873 unsigned char *p,*d,*q;
1874 STACK_OF(X509) *sk=NULL;
1875
1876 n=ssl3_get_message(s,
1877 SSL3_ST_SR_CERT_A,
1878 SSL3_ST_SR_CERT_B,
1879 -1,
1880 s->max_cert_list,
1881 &ok);
1882
1883 if (!ok) return((int)n);
1884
1885 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_KEY_EXCHANGE)
1886 {
1887 if ( (s->verify_mode & SSL_VERIFY_PEER) &&
1888 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
1889 {
1890 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
1891 al=SSL_AD_HANDSHAKE_FAILURE;
1892 goto f_err;
1893 }
1894 /* If tls asked for a client cert, the client must return a 0 list */
1895 if ((s->version > SSL3_VERSION) && s->s3->tmp.cert_request)
1896 {
1897 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST);
1898 al=SSL_AD_UNEXPECTED_MESSAGE;
1899 goto f_err;
1900 }
1901 s->s3->tmp.reuse_message=1;
1902 return(1);
1903 }
1904
1905 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
1906 {
1907 al=SSL_AD_UNEXPECTED_MESSAGE;
1908 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_WRONG_MESSAGE_TYPE);
1909 goto f_err;
1910 }
1911 d=p=(unsigned char *)s->init_msg;
1912
1913 if ((sk=sk_X509_new_null()) == NULL)
1914 {
1915 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
1916 goto err;
1917 }
1918
1919 n2l3(p,llen);
1920 if (llen+3 != n)
1921 {
1922 al=SSL_AD_DECODE_ERROR;
1923 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
1924 goto f_err;
1925 }
1926 for (nc=0; nc<llen; )
1927 {
1928 n2l3(p,l);
1929 if ((l+nc+3) > llen)
1930 {
1931 al=SSL_AD_DECODE_ERROR;
1932 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
1933 goto f_err;
1934 }
1935
1936 q=p;
1937 x=d2i_X509(NULL,&p,l);
1938 if (x == NULL)
1939 {
1940 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_ASN1_LIB);
1941 goto err;
1942 }
1943 if (p != (q+l))
1944 {
1945 al=SSL_AD_DECODE_ERROR;
1946 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
1947 goto f_err;
1948 }
1949 if (!sk_X509_push(sk,x))
1950 {
1951 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
1952 goto err;
1953 }
1954 x=NULL;
1955 nc+=l+3;
1956 }
1957
1958 if (sk_X509_num(sk) <= 0)
1959 {
1960 /* TLS does not mind 0 certs returned */
1961 if (s->version == SSL3_VERSION)
1962 {
1963 al=SSL_AD_HANDSHAKE_FAILURE;
1964 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATES_RETURNED);
1965 goto f_err;
1966 }
1967 /* Fail for TLS only if we required a certificate */
1968 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
1969 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
1970 {
1971 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
1972 al=SSL_AD_HANDSHAKE_FAILURE;
1973 goto f_err;
1974 }
1975 }
1976 else
1977 {
1978 i=ssl_verify_cert_chain(s,sk);
1979 if (!i)
1980 {
1981 al=ssl_verify_alarm_type(s->verify_result);
1982 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATE_RETURNED);
1983 goto f_err;
1984 }
1985 }
1986
1987 if (s->session->peer != NULL) /* This should not be needed */
1988 X509_free(s->session->peer);
1989 s->session->peer=sk_X509_shift(sk);
1990 s->session->verify_result = s->verify_result;
1991
1992 /* With the current implementation, sess_cert will always be NULL
1993 * when we arrive here. */
1994 if (s->session->sess_cert == NULL)
1995 {
1996 s->session->sess_cert = ssl_sess_cert_new();
1997 if (s->session->sess_cert == NULL)
1998 {
1999 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
2000 goto err;
2001 }
2002 }
2003 if (s->session->sess_cert->cert_chain != NULL)
2004 sk_X509_pop_free(s->session->sess_cert->cert_chain, X509_free);
2005 s->session->sess_cert->cert_chain=sk;
2006 /* Inconsistency alert: cert_chain does *not* include the
2007 * peer's own certificate, while we do include it in s3_clnt.c */
2008
2009 sk=NULL;
2010
2011 ret=1;
2012 if (0)
2013 {
2014f_err:
2015 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2016 }
2017err:
2018 if (x != NULL) X509_free(x);
2019 if (sk != NULL) sk_X509_pop_free(sk,X509_free);
2020 return(ret);
2021 }
2022
2023int ssl3_send_server_certificate(SSL *s)
2024 {
2025 unsigned long l;
2026 X509 *x;
2027
2028 if (s->state == SSL3_ST_SW_CERT_A)
2029 {
2030 x=ssl_get_server_send_cert(s);
2031 if (x == NULL &&
2032 /* VRS: allow null cert if auth == KRB5 */
2033 (s->s3->tmp.new_cipher->algorithms
2034 & (SSL_MKEY_MASK|SSL_AUTH_MASK))
2035 != (SSL_aKRB5|SSL_kKRB5))
2036 {
2037 SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
2038 return(0);
2039 }
2040
2041 l=ssl3_output_cert_chain(s,x);
2042 s->state=SSL3_ST_SW_CERT_B;
2043 s->init_num=(int)l;
2044 s->init_off=0;
2045 }
2046
2047 /* SSL3_ST_SW_CERT_B */
2048 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
2049 }