1 /* ssl/s3_srvr.c -*- mode:C; c-file-style: "eay" -*- */
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-2007 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).
111 /* ====================================================================
112 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
114 * Portions of the attached software ("Contribution") are developed by
115 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
117 * The Contribution is licensed pursuant to the OpenSSL open source
118 * license provided above.
120 * ECC cipher suite support in OpenSSL originally written by
121 * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories.
124 /* ====================================================================
125 * Copyright 2005 Nokia. All rights reserved.
127 * The portions of the attached software ("Contribution") is developed by
128 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
131 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
132 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
133 * support (see RFC 4279) to OpenSSL.
135 * No patent licenses or other rights except those expressly stated in
136 * the OpenSSL open source license shall be deemed granted or received
137 * expressly, by implication, estoppel, or otherwise.
139 * No assurances are provided by Nokia that the Contribution does not
140 * infringe the patent or other intellectual property rights of any third
141 * party or that the license provides you with all the necessary rights
142 * to make use of the Contribution.
144 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
145 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
146 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
147 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
151 #define REUSE_CIPHER_BUG
152 #define NETSCAPE_HANG_BUG
155 #include "ssl_locl.h"
156 #include "kssl_lcl.h"
157 #include <openssl/buffer.h>
158 #include <openssl/rand.h>
159 #include <openssl/objects.h>
160 #include <openssl/evp.h>
161 #include <openssl/hmac.h>
162 #include <openssl/x509.h>
163 #ifndef OPENSSL_NO_DH
164 #include <openssl/dh.h>
166 #include <openssl/bn.h>
167 #ifndef OPENSSL_NO_KRB5
168 #include <openssl/krb5_asn.h>
170 #include <openssl/md5.h>
172 static const SSL_METHOD *ssl3_get_server_method(int ver);
174 static const SSL_METHOD *ssl3_get_server_method(int ver)
176 if (ver == SSL3_VERSION)
177 return(SSLv3_server_method());
182 IMPLEMENT_ssl3_meth_func(SSLv3_server_method,
184 ssl_undefined_function,
185 ssl3_get_server_method)
187 int ssl3_accept(SSL *s)
190 unsigned long alg_k,Time=(unsigned long)time(NULL);
191 void (*cb)(const SSL *ssl,int type,int val)=NULL;
193 int new_state,state,skip=0;
195 RAND_add(&Time,sizeof(Time),0);
199 if (s->info_callback != NULL)
201 else if (s->ctx->info_callback != NULL)
202 cb=s->ctx->info_callback;
204 /* init things to blank */
206 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
210 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
220 case SSL_ST_RENEGOTIATE:
222 /* s->state=SSL_ST_ACCEPT; */
226 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
227 case SSL_ST_OK|SSL_ST_ACCEPT:
230 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
232 if ((s->version>>8) != 3)
234 SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
237 s->type=SSL_ST_ACCEPT;
239 if (s->init_buf == NULL)
241 if ((buf=BUF_MEM_new()) == NULL)
246 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
254 if (!ssl3_setup_buffers(s))
262 if (s->state != SSL_ST_RENEGOTIATE)
264 /* Ok, we now need to push on a buffering BIO so that
265 * the output is sent in a way that TCP likes :-)
267 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
269 ssl3_init_finished_mac(s);
270 s->state=SSL3_ST_SR_CLNT_HELLO_A;
271 s->ctx->stats.sess_accept++;
273 else if (!s->s3->send_connection_binding &&
274 !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION))
276 /* Server attempting to renegotiate with
277 * client that doesn't support secure
280 SSLerr(SSL_F_SSL3_ACCEPT, SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
281 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_HANDSHAKE_FAILURE);
287 /* s->state == SSL_ST_RENEGOTIATE,
288 * we will just send a HelloRequest */
289 s->ctx->stats.sess_accept_renegotiate++;
290 s->state=SSL3_ST_SW_HELLO_REQ_A;
294 case SSL3_ST_SW_HELLO_REQ_A:
295 case SSL3_ST_SW_HELLO_REQ_B:
298 ret=ssl3_send_hello_request(s);
299 if (ret <= 0) goto end;
300 s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
301 s->state=SSL3_ST_SW_FLUSH;
304 ssl3_init_finished_mac(s);
307 case SSL3_ST_SW_HELLO_REQ_C:
311 case SSL3_ST_SR_CLNT_HELLO_A:
312 case SSL3_ST_SR_CLNT_HELLO_B:
313 case SSL3_ST_SR_CLNT_HELLO_C:
316 ret=ssl3_get_client_hello(s);
317 if (ret <= 0) goto end;
320 s->state=SSL3_ST_SW_SRVR_HELLO_A;
324 case SSL3_ST_SW_SRVR_HELLO_A:
325 case SSL3_ST_SW_SRVR_HELLO_B:
326 ret=ssl3_send_server_hello(s);
327 if (ret <= 0) goto end;
328 #ifndef OPENSSL_NO_TLSEXT
331 if (s->tlsext_ticket_expected)
332 s->state=SSL3_ST_SW_SESSION_TICKET_A;
334 s->state=SSL3_ST_SW_CHANGE_A;
338 s->state=SSL3_ST_SW_CHANGE_A;
341 s->state=SSL3_ST_SW_CERT_A;
345 case SSL3_ST_SW_CERT_A:
346 case SSL3_ST_SW_CERT_B:
347 /* Check if it is anon DH or anon ECDH, */
348 /* normal PSK or KRB5 */
349 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
350 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)
351 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
353 ret=ssl3_send_server_certificate(s);
354 if (ret <= 0) goto end;
355 #ifndef OPENSSL_NO_TLSEXT
356 if (s->tlsext_status_expected)
357 s->state=SSL3_ST_SW_CERT_STATUS_A;
359 s->state=SSL3_ST_SW_KEY_EXCH_A;
364 s->state=SSL3_ST_SW_KEY_EXCH_A;
371 s->state=SSL3_ST_SW_KEY_EXCH_A;
376 case SSL3_ST_SW_KEY_EXCH_A:
377 case SSL3_ST_SW_KEY_EXCH_B:
378 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
380 /* clear this, it may get reset by
381 * send_server_key_exchange */
382 if ((s->options & SSL_OP_EPHEMERAL_RSA)
383 #ifndef OPENSSL_NO_KRB5
384 && !(alg_k & SSL_kKRB5)
385 #endif /* OPENSSL_NO_KRB5 */
387 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
388 * even when forbidden by protocol specs
389 * (handshake may fail as clients are not required to
390 * be able to handle this) */
391 s->s3->tmp.use_rsa_tmp=1;
393 s->s3->tmp.use_rsa_tmp=0;
396 /* only send if a DH key exchange, fortezza or
397 * RSA but we have a sign only certificate
399 * PSK: may send PSK identity hints
401 * For ECC ciphersuites, we send a serverKeyExchange
402 * message only if the cipher suite is either
403 * ECDH-anon or ECDHE. In other cases, the
404 * server certificate contains the server's
405 * public key for key exchange.
407 if (s->s3->tmp.use_rsa_tmp
408 /* PSK: send ServerKeyExchange if PSK identity
409 * hint if provided */
410 #ifndef OPENSSL_NO_PSK
411 || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
413 || (alg_k & (SSL_kDHr|SSL_kDHd|SSL_kEDH))
414 || (alg_k & SSL_kEECDH)
415 || ((alg_k & SSL_kRSA)
416 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
417 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
418 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
424 ret=ssl3_send_server_key_exchange(s);
425 if (ret <= 0) goto end;
430 s->state=SSL3_ST_SW_CERT_REQ_A;
434 case SSL3_ST_SW_CERT_REQ_A:
435 case SSL3_ST_SW_CERT_REQ_B:
436 if (/* don't request cert unless asked for it: */
437 !(s->verify_mode & SSL_VERIFY_PEER) ||
438 /* if SSL_VERIFY_CLIENT_ONCE is set,
439 * don't request cert during re-negotiation: */
440 ((s->session->peer != NULL) &&
441 (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
442 /* never request cert in anonymous ciphersuites
443 * (see section "Certificate request" in SSL 3 drafts
444 * and in RFC 2246): */
445 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
446 /* ... except when the application insists on verification
447 * (against the specs, but s3_clnt.c accepts this for SSL 3) */
448 !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
449 /* never request cert in Kerberos ciphersuites */
450 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5)
451 /* With normal PSK Certificates and
452 * Certificate Requests are omitted */
453 || (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
455 /* no cert request */
457 s->s3->tmp.cert_request=0;
458 s->state=SSL3_ST_SW_SRVR_DONE_A;
462 s->s3->tmp.cert_request=1;
463 ret=ssl3_send_certificate_request(s);
464 if (ret <= 0) goto end;
465 #ifndef NETSCAPE_HANG_BUG
466 s->state=SSL3_ST_SW_SRVR_DONE_A;
468 s->state=SSL3_ST_SW_FLUSH;
469 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
475 case SSL3_ST_SW_SRVR_DONE_A:
476 case SSL3_ST_SW_SRVR_DONE_B:
477 ret=ssl3_send_server_done(s);
478 if (ret <= 0) goto end;
479 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
480 s->state=SSL3_ST_SW_FLUSH;
484 case SSL3_ST_SW_FLUSH:
486 /* This code originally checked to see if
487 * any data was pending using BIO_CTRL_INFO
488 * and then flushed. This caused problems
489 * as documented in PR#1939. The proposed
490 * fix doesn't completely resolve this issue
491 * as buggy implementations of BIO_CTRL_PENDING
492 * still exist. So instead we just flush
496 s->rwstate=SSL_WRITING;
497 if (BIO_flush(s->wbio) <= 0)
502 s->rwstate=SSL_NOTHING;
504 s->state=s->s3->tmp.next_state;
507 case SSL3_ST_SR_CERT_A:
508 case SSL3_ST_SR_CERT_B:
509 /* Check for second client hello (MS SGC) */
510 ret = ssl3_check_client_hello(s);
514 s->state = SSL3_ST_SR_CLNT_HELLO_C;
516 if (s->s3->tmp.cert_request)
518 ret=ssl3_get_client_certificate(s);
519 if (ret <= 0) goto end;
522 s->state=SSL3_ST_SR_KEY_EXCH_A;
526 case SSL3_ST_SR_KEY_EXCH_A:
527 case SSL3_ST_SR_KEY_EXCH_B:
528 ret=ssl3_get_client_key_exchange(s);
533 /* For the ECDH ciphersuites when
534 * the client sends its ECDH pub key in
535 * a certificate, the CertificateVerify
536 * message is not sent.
537 * Also for GOST ciphersuites when
538 * the client uses its key from the certificate
541 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
542 s->state=SSL3_ST_SR_FINISHED_A;
544 if (s->s3->next_proto_neg_seen)
545 s->state=SSL3_ST_SR_NEXT_PROTO_A;
547 s->state=SSL3_ST_SR_FINISHED_A;
556 s->state=SSL3_ST_SR_CERT_VRFY_A;
559 /* We need to get hashes here so if there is
560 * a client cert, it can be verified
561 * FIXME - digest processing for CertificateVerify
562 * should be generalized. But it is next step
564 if (s->s3->handshake_buffer)
565 if (!ssl3_digest_cached_records(s))
567 for (dgst_num=0; dgst_num<SSL_MAX_DIGEST;dgst_num++)
568 if (s->s3->handshake_dgst[dgst_num])
572 s->method->ssl3_enc->cert_verify_mac(s,EVP_MD_CTX_type(s->s3->handshake_dgst[dgst_num]),&(s->s3->tmp.cert_verify_md[offset]));
573 dgst_size=EVP_MD_CTX_size(s->s3->handshake_dgst[dgst_num]);
584 case SSL3_ST_SR_CERT_VRFY_A:
585 case SSL3_ST_SR_CERT_VRFY_B:
587 /* we should decide if we expected this one */
588 ret=ssl3_get_cert_verify(s);
589 if (ret <= 0) goto end;
591 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
592 s->state=SSL3_ST_SR_FINISHED_A;
594 if (s->s3->next_proto_neg_seen)
595 s->state=SSL3_ST_SR_NEXT_PROTO_A;
597 s->state=SSL3_ST_SR_FINISHED_A;
602 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
603 case SSL3_ST_SR_NEXT_PROTO_A:
604 case SSL3_ST_SR_NEXT_PROTO_B:
605 ret=ssl3_get_next_proto(s);
606 if (ret <= 0) goto end;
608 s->state=SSL3_ST_SR_FINISHED_A;
612 case SSL3_ST_SR_FINISHED_A:
613 case SSL3_ST_SR_FINISHED_B:
614 ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
615 SSL3_ST_SR_FINISHED_B);
616 if (ret <= 0) goto end;
617 #ifndef OPENSSL_NO_TLSEXT
618 if (s->tlsext_ticket_expected)
619 s->state=SSL3_ST_SW_SESSION_TICKET_A;
627 s->state=SSL3_ST_SW_CHANGE_A;
631 #ifndef OPENSSL_NO_TLSEXT
632 case SSL3_ST_SW_SESSION_TICKET_A:
633 case SSL3_ST_SW_SESSION_TICKET_B:
634 ret=ssl3_send_newsession_ticket(s);
635 if (ret <= 0) goto end;
636 s->state=SSL3_ST_SW_CHANGE_A;
640 case SSL3_ST_SW_CERT_STATUS_A:
641 case SSL3_ST_SW_CERT_STATUS_B:
642 ret=ssl3_send_cert_status(s);
643 if (ret <= 0) goto end;
644 s->state=SSL3_ST_SW_KEY_EXCH_A;
650 case SSL3_ST_SW_CHANGE_A:
651 case SSL3_ST_SW_CHANGE_B:
653 s->session->cipher=s->s3->tmp.new_cipher;
654 if (!s->method->ssl3_enc->setup_key_block(s))
655 { ret= -1; goto end; }
657 ret=ssl3_send_change_cipher_spec(s,
658 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
660 if (ret <= 0) goto end;
661 s->state=SSL3_ST_SW_FINISHED_A;
664 if (!s->method->ssl3_enc->change_cipher_state(s,
665 SSL3_CHANGE_CIPHER_SERVER_WRITE))
673 case SSL3_ST_SW_FINISHED_A:
674 case SSL3_ST_SW_FINISHED_B:
675 ret=ssl3_send_finished(s,
676 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
677 s->method->ssl3_enc->server_finished_label,
678 s->method->ssl3_enc->server_finished_label_len);
679 if (ret <= 0) goto end;
680 s->state=SSL3_ST_SW_FLUSH;
683 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
684 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
686 if (s->s3->next_proto_neg_seen)
687 s->s3->tmp.next_state=SSL3_ST_SR_NEXT_PROTO_A;
689 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
693 s->s3->tmp.next_state=SSL_ST_OK;
698 /* clean a few things up */
699 ssl3_cleanup_key_block(s);
701 BUF_MEM_free(s->init_buf);
704 /* remove buffering on output */
705 ssl_free_wbio_buffer(s);
709 if (s->renegotiate == 2) /* skipped if we just sent a HelloRequest */
711 /* actually not necessarily a 'new' session unless
712 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */
717 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
719 s->ctx->stats.sess_accept_good++;
721 s->handshake_func=ssl3_accept;
723 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
731 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_UNKNOWN_STATE);
737 if (!s->s3->tmp.reuse_message && !skip)
741 if ((ret=BIO_flush(s->wbio)) <= 0)
746 if ((cb != NULL) && (s->state != state))
750 cb(s,SSL_CB_ACCEPT_LOOP,1);
757 /* BIO_flush(s->wbio); */
761 cb(s,SSL_CB_ACCEPT_EXIT,ret);
765 int ssl3_send_hello_request(SSL *s)
769 if (s->state == SSL3_ST_SW_HELLO_REQ_A)
771 p=(unsigned char *)s->init_buf->data;
772 *(p++)=SSL3_MT_HELLO_REQUEST;
777 s->state=SSL3_ST_SW_HELLO_REQ_B;
778 /* number of bytes to write */
783 /* SSL3_ST_SW_HELLO_REQ_B */
784 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
787 int ssl3_check_client_hello(SSL *s)
792 /* this function is called when we really expect a Certificate message,
793 * so permit appropriate message length */
794 n=s->method->ssl_get_message(s,
800 if (!ok) return((int)n);
801 s->s3->tmp.reuse_message = 1;
802 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_HELLO)
804 /* Throw away what we have done so far in the current handshake,
805 * which will now be aborted. (A full SSL_clear would be too much.)
806 * I hope that tmp.dh is the only thing that may need to be cleared
807 * when a handshake is not completed ... */
808 #ifndef OPENSSL_NO_DH
809 if (s->s3->tmp.dh != NULL)
811 DH_free(s->s3->tmp.dh);
812 s->s3->tmp.dh = NULL;
820 int ssl3_get_client_hello(SSL *s)
822 int i,j,ok,al,ret= -1;
823 unsigned int cookie_len;
826 unsigned char *p,*d,*q;
828 #ifndef OPENSSL_NO_COMP
831 STACK_OF(SSL_CIPHER) *ciphers=NULL;
833 /* We do this so that we will respond with our native type.
834 * If we are TLSv1 and we get SSLv3, we will respond with TLSv1,
835 * This down switching should be handled by a different method.
836 * If we are SSLv3, we will respond with SSLv3, even if prompted with
839 if (s->state == SSL3_ST_SR_CLNT_HELLO_A)
841 s->state=SSL3_ST_SR_CLNT_HELLO_B;
844 n=s->method->ssl_get_message(s,
845 SSL3_ST_SR_CLNT_HELLO_B,
846 SSL3_ST_SR_CLNT_HELLO_C,
847 SSL3_MT_CLIENT_HELLO,
848 SSL3_RT_MAX_PLAIN_LENGTH,
851 if (!ok) return((int)n);
853 d=p=(unsigned char *)s->init_msg;
855 /* use version from inside client hello, not from record header
856 * (may differ: see RFC 2246, Appendix E, second paragraph) */
857 s->client_version=(((int)p[0])<<8)|(int)p[1];
860 if ((s->version == DTLS1_VERSION && s->client_version > s->version) ||
861 (s->version != DTLS1_VERSION && s->client_version < s->version))
863 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
864 if ((s->client_version>>8) == SSL3_VERSION_MAJOR)
866 /* similar to ssl3_get_record, send alert using remote version number */
867 s->version = s->client_version;
869 al = SSL_AD_PROTOCOL_VERSION;
873 /* If we require cookies and this ClientHello doesn't
874 * contain one, just return since we do not want to
875 * allocate any memory yet. So check cookie length...
877 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE)
879 unsigned int session_length, cookie_length;
881 session_length = *(p + SSL3_RANDOM_SIZE);
882 cookie_length = *(p + SSL3_RANDOM_SIZE + session_length + 1);
884 if (cookie_length == 0)
888 /* load the client random */
889 memcpy(s->s3->client_random,p,SSL3_RANDOM_SIZE);
892 /* get the session-id */
896 /* Versions before 0.9.7 always allow session reuse during renegotiation
897 * (i.e. when s->new_session is true), option
898 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is new with 0.9.7.
899 * Maybe this optional behaviour should always have been the default,
900 * but we cannot safely change the default behaviour (or new applications
901 * might be written that become totally unsecure when compiled with
902 * an earlier library version)
904 if ((s->new_session && (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)))
906 if (!ssl_get_new_session(s,1))
911 i=ssl_get_prev_session(s, p, j, d + n);
913 { /* previous session */
920 if (!ssl_get_new_session(s,1))
927 if (s->version == DTLS1_VERSION || s->version == DTLS1_BAD_VER)
933 * The ClientHello may contain a cookie even if the
934 * HelloVerify message has not been sent--make sure that it
935 * does not cause an overflow.
937 if ( cookie_len > sizeof(s->d1->rcvd_cookie))
940 al = SSL_AD_DECODE_ERROR;
941 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
945 /* verify the cookie if appropriate option is set. */
946 if ((SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) &&
949 memcpy(s->d1->rcvd_cookie, p, cookie_len);
951 if ( s->ctx->app_verify_cookie_cb != NULL)
953 if ( s->ctx->app_verify_cookie_cb(s, s->d1->rcvd_cookie,
956 al=SSL_AD_HANDSHAKE_FAILURE;
957 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
958 SSL_R_COOKIE_MISMATCH);
961 /* else cookie verification succeeded */
963 else if ( memcmp(s->d1->rcvd_cookie, s->d1->cookie,
964 s->d1->cookie_len) != 0) /* default verification */
966 al=SSL_AD_HANDSHAKE_FAILURE;
967 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
968 SSL_R_COOKIE_MISMATCH);
979 if ((i == 0) && (j != 0))
981 /* we need a cipher if we are not resuming a session */
982 al=SSL_AD_ILLEGAL_PARAMETER;
983 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_SPECIFIED);
988 /* not enough data */
989 al=SSL_AD_DECODE_ERROR;
990 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
993 if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers))
1000 /* If it is a hit, check that the cipher is in the list */
1001 if ((s->hit) && (i > 0))
1004 id=s->session->cipher->id;
1007 printf("client sent %d ciphers\n",sk_num(ciphers));
1009 for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++)
1011 c=sk_SSL_CIPHER_value(ciphers,i);
1013 printf("client [%2d of %2d]:%s\n",
1014 i,sk_num(ciphers),SSL_CIPHER_get_name(c));
1022 /* Disabled because it can be used in a ciphersuite downgrade
1023 * attack: CVE-2010-4180.
1026 if (j == 0 && (s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1))
1028 /* Special case as client bug workaround: the previously used cipher may
1029 * not be in the current list, the client instead might be trying to
1030 * continue using a cipher that before wasn't chosen due to server
1031 * preferences. We'll have to reject the connection if the cipher is not
1032 * enabled, though. */
1033 c = sk_SSL_CIPHER_value(ciphers, 0);
1034 if (sk_SSL_CIPHER_find(SSL_get_ciphers(s), c) >= 0)
1036 s->session->cipher = c;
1043 /* we need to have the cipher in the cipher
1044 * list if we are asked to reuse it */
1045 al=SSL_AD_ILLEGAL_PARAMETER;
1046 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_CIPHER_MISSING);
1055 /* not enough data */
1056 al=SSL_AD_DECODE_ERROR;
1057 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
1063 if (p[j] == 0) break;
1070 al=SSL_AD_DECODE_ERROR;
1071 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_COMPRESSION_SPECIFIED);
1075 #ifndef OPENSSL_NO_TLSEXT
1077 if (s->version >= SSL3_VERSION)
1079 if (!ssl_parse_clienthello_tlsext(s,&p,d,n, &al))
1081 /* 'al' set by ssl_parse_clienthello_tlsext */
1082 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_PARSE_TLSEXT);
1086 if (ssl_check_clienthello_tlsext(s) <= 0) {
1087 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_CLIENTHELLO_TLSEXT);
1091 /* Check if we want to use external pre-shared secret for this
1092 * handshake for not reused session only. We need to generate
1093 * server_random before calling tls_session_secret_cb in order to allow
1094 * SessionTicket processing to use it in key derivation. */
1098 Time=(unsigned long)time(NULL); /* Time */
1099 pos=s->s3->server_random;
1101 if (RAND_pseudo_bytes(pos,SSL3_RANDOM_SIZE-4) <= 0)
1103 al=SSL_AD_INTERNAL_ERROR;
1108 if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb)
1110 SSL_CIPHER *pref_cipher=NULL;
1112 s->session->master_key_length=sizeof(s->session->master_key);
1113 if(s->tls_session_secret_cb(s, s->session->master_key, &s->session->master_key_length,
1114 ciphers, &pref_cipher, s->tls_session_secret_cb_arg))
1117 s->session->ciphers=ciphers;
1118 s->session->verify_result=X509_V_OK;
1122 /* check if some cipher was preferred by call back */
1123 pref_cipher=pref_cipher ? pref_cipher : ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1124 if (pref_cipher == NULL)
1126 al=SSL_AD_HANDSHAKE_FAILURE;
1127 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
1131 s->session->cipher=pref_cipher;
1134 sk_SSL_CIPHER_free(s->cipher_list);
1136 if (s->cipher_list_by_id)
1137 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1139 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1140 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1145 /* Worst case, we will use the NULL compression, but if we have other
1146 * options, we will now look for them. We have i-1 compression
1147 * algorithms from the client, starting at q. */
1148 s->s3->tmp.new_compression=NULL;
1149 #ifndef OPENSSL_NO_COMP
1150 /* This only happens if we have a cache hit */
1151 if (s->session->compress_meth != 0)
1153 int m, comp_id = s->session->compress_meth;
1154 /* Perform sanity checks on resumed compression algorithm */
1155 /* Can't disable compression */
1156 if (s->options & SSL_OP_NO_COMPRESSION)
1158 al=SSL_AD_INTERNAL_ERROR;
1159 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1162 /* Look for resumed compression method */
1163 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++)
1165 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
1166 if (comp_id == comp->id)
1168 s->s3->tmp.new_compression=comp;
1172 if (s->s3->tmp.new_compression == NULL)
1174 al=SSL_AD_INTERNAL_ERROR;
1175 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INVALID_COMPRESSION_ALGORITHM);
1178 /* Look for resumed method in compression list */
1179 for (m = 0; m < i; m++)
1181 if (q[m] == comp_id)
1186 al=SSL_AD_ILLEGAL_PARAMETER;
1187 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING);
1193 else if (!(s->options & SSL_OP_NO_COMPRESSION) && s->ctx->comp_methods)
1194 { /* See if we have a match */
1195 int m,nn,o,v,done=0;
1197 nn=sk_SSL_COMP_num(s->ctx->comp_methods);
1198 for (m=0; m<nn; m++)
1200 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
1213 s->s3->tmp.new_compression=comp;
1218 /* If compression is disabled we'd better not try to resume a session
1219 * using compression.
1221 if (s->session->compress_meth != 0)
1223 al=SSL_AD_INTERNAL_ERROR;
1224 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1229 /* Given s->session->ciphers and SSL_get_ciphers, we must
1234 #ifdef OPENSSL_NO_COMP
1235 s->session->compress_meth=0;
1237 s->session->compress_meth=(comp == NULL)?0:comp->id;
1239 if (s->session->ciphers != NULL)
1240 sk_SSL_CIPHER_free(s->session->ciphers);
1241 s->session->ciphers=ciphers;
1242 if (ciphers == NULL)
1244 al=SSL_AD_ILLEGAL_PARAMETER;
1245 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_PASSED);
1249 c=ssl3_choose_cipher(s,s->session->ciphers,
1250 SSL_get_ciphers(s));
1254 al=SSL_AD_HANDSHAKE_FAILURE;
1255 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
1258 s->s3->tmp.new_cipher=c;
1259 /* check whether we should disable session resumption */
1260 if (s->not_resumable_session_cb != NULL)
1261 s->session->not_resumable=s->not_resumable_session_cb(s,
1262 ((c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)) != 0));
1263 if (s->session->not_resumable)
1264 /* do not send a session ticket */
1265 s->tlsext_ticket_expected = 0;
1269 /* Session-id reuse */
1270 #ifdef REUSE_CIPHER_BUG
1271 STACK_OF(SSL_CIPHER) *sk;
1272 SSL_CIPHER *nc=NULL;
1273 SSL_CIPHER *ec=NULL;
1275 if (s->options & SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG)
1277 sk=s->session->ciphers;
1278 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1280 c=sk_SSL_CIPHER_value(sk,i);
1281 if (c->algorithm_enc & SSL_eNULL)
1283 if (SSL_C_IS_EXPORT(c))
1287 s->s3->tmp.new_cipher=nc;
1288 else if (ec != NULL)
1289 s->s3->tmp.new_cipher=ec;
1291 s->s3->tmp.new_cipher=s->session->cipher;
1295 s->s3->tmp.new_cipher=s->session->cipher;
1298 if (!ssl3_digest_cached_records(s))
1301 /* we now have the following setup.
1303 * cipher_list - our prefered list of ciphers
1304 * ciphers - the clients prefered list of ciphers
1305 * compression - basically ignored right now
1306 * ssl version is set - sslv3
1307 * s->session - The ssl session has been setup.
1308 * s->hit - session reuse flag
1309 * s->tmp.new_cipher - the new cipher to use.
1316 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1319 if (ciphers != NULL) sk_SSL_CIPHER_free(ciphers);
1323 int ssl3_send_server_hello(SSL *s)
1326 unsigned char *p,*d;
1329 #ifdef OPENSSL_NO_TLSEXT
1333 if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
1335 buf=(unsigned char *)s->init_buf->data;
1336 #ifdef OPENSSL_NO_TLSEXT
1337 p=s->s3->server_random;
1338 /* Generate server_random if it was not needed previously */
1339 Time=(unsigned long)time(NULL); /* Time */
1341 if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
1344 /* Do the message type and length last */
1347 *(p++)=s->version>>8;
1348 *(p++)=s->version&0xff;
1351 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
1352 p+=SSL3_RANDOM_SIZE;
1354 /* now in theory we have 3 options to sending back the
1355 * session id. If it is a re-use, we send back the
1356 * old session-id, if it is a new session, we send
1357 * back the new session-id or we send back a 0 length
1358 * session-id if we want it to be single use.
1359 * Currently I will not implement the '0' length session-id
1360 * 12-Jan-98 - I'll now support the '0' length stuff.
1362 * We also have an additional case where stateless session
1363 * resumption is successful: we always send back the old
1364 * session id. In this case s->hit is non zero: this can
1365 * only happen if stateless session resumption is succesful
1366 * if session caching is disabled so existing functionality
1369 if (s->session->not_resumable ||
1370 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1372 s->session->session_id_length=0;
1374 sl=s->session->session_id_length;
1375 if (sl > (int)sizeof(s->session->session_id))
1377 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1381 memcpy(p,s->session->session_id,sl);
1384 /* put the cipher */
1385 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
1388 /* put the compression method */
1389 #ifdef OPENSSL_NO_COMP
1392 if (s->s3->tmp.new_compression == NULL)
1395 *(p++)=s->s3->tmp.new_compression->id;
1397 #ifndef OPENSSL_NO_TLSEXT
1398 if (ssl_prepare_serverhello_tlsext(s) <= 0)
1400 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,SSL_R_SERVERHELLO_TLSEXT);
1403 if ((p = ssl_add_serverhello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
1405 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,ERR_R_INTERNAL_ERROR);
1412 *(d++)=SSL3_MT_SERVER_HELLO;
1415 s->state=SSL3_ST_SW_SRVR_HELLO_B;
1416 /* number of bytes to write */
1421 /* SSL3_ST_SW_SRVR_HELLO_B */
1422 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1425 int ssl3_send_server_done(SSL *s)
1429 if (s->state == SSL3_ST_SW_SRVR_DONE_A)
1431 p=(unsigned char *)s->init_buf->data;
1434 *(p++)=SSL3_MT_SERVER_DONE;
1439 s->state=SSL3_ST_SW_SRVR_DONE_B;
1440 /* number of bytes to write */
1445 /* SSL3_ST_SW_SRVR_DONE_B */
1446 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1449 int ssl3_send_server_key_exchange(SSL *s)
1451 #ifndef OPENSSL_NO_RSA
1455 unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
1458 #ifndef OPENSSL_NO_DH
1461 #ifndef OPENSSL_NO_ECDH
1462 EC_KEY *ecdh=NULL, *ecdhp;
1463 unsigned char *encodedPoint = NULL;
1466 BN_CTX *bn_ctx = NULL;
1469 unsigned char *p,*d;
1479 EVP_MD_CTX_init(&md_ctx);
1480 if (s->state == SSL3_ST_SW_KEY_EXCH_A)
1482 type=s->s3->tmp.new_cipher->algorithm_mkey;
1487 r[0]=r[1]=r[2]=r[3]=NULL;
1489 #ifndef OPENSSL_NO_RSA
1490 if (type & SSL_kRSA)
1493 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
1495 rsa=s->cert->rsa_tmp_cb(s,
1496 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1497 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1500 al=SSL_AD_HANDSHAKE_FAILURE;
1501 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1509 al=SSL_AD_HANDSHAKE_FAILURE;
1510 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
1515 s->s3->tmp.use_rsa_tmp=1;
1519 #ifndef OPENSSL_NO_DH
1520 if (type & SSL_kEDH)
1523 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1524 dhp=s->cert->dh_tmp_cb(s,
1525 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1526 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1529 al=SSL_AD_HANDSHAKE_FAILURE;
1530 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
1534 if (s->s3->tmp.dh != NULL)
1537 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1541 if ((dh=DHparams_dup(dhp)) == NULL)
1543 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1548 if ((dhp->pub_key == NULL ||
1549 dhp->priv_key == NULL ||
1550 (s->options & SSL_OP_SINGLE_DH_USE)))
1552 if(!DH_generate_key(dh))
1554 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1561 dh->pub_key=BN_dup(dhp->pub_key);
1562 dh->priv_key=BN_dup(dhp->priv_key);
1563 if ((dh->pub_key == NULL) ||
1564 (dh->priv_key == NULL))
1566 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1576 #ifndef OPENSSL_NO_ECDH
1577 if (type & SSL_kEECDH)
1579 const EC_GROUP *group;
1581 ecdhp=cert->ecdh_tmp;
1582 if ((ecdhp == NULL) && (s->cert->ecdh_tmp_cb != NULL))
1584 ecdhp=s->cert->ecdh_tmp_cb(s,
1585 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1586 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1590 al=SSL_AD_HANDSHAKE_FAILURE;
1591 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
1595 if (s->s3->tmp.ecdh != NULL)
1597 EC_KEY_free(s->s3->tmp.ecdh);
1598 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1602 /* Duplicate the ECDH structure. */
1605 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1608 if (!EC_KEY_up_ref(ecdhp))
1610 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1615 s->s3->tmp.ecdh=ecdh;
1616 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1617 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1618 (s->options & SSL_OP_SINGLE_ECDH_USE))
1620 if(!EC_KEY_generate_key(ecdh))
1622 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1627 if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
1628 (EC_KEY_get0_public_key(ecdh) == NULL) ||
1629 (EC_KEY_get0_private_key(ecdh) == NULL))
1631 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1635 if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1636 (EC_GROUP_get_degree(group) > 163))
1638 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1642 /* XXX: For now, we only support ephemeral ECDH
1643 * keys over named (not generic) curves. For
1644 * supported named curves, curve_id is non-zero.
1647 tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1650 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1654 /* Encode the public key.
1655 * First check the size of encoding and
1656 * allocate memory accordingly.
1658 encodedlen = EC_POINT_point2oct(group,
1659 EC_KEY_get0_public_key(ecdh),
1660 POINT_CONVERSION_UNCOMPRESSED,
1663 encodedPoint = (unsigned char *)
1664 OPENSSL_malloc(encodedlen*sizeof(unsigned char));
1665 bn_ctx = BN_CTX_new();
1666 if ((encodedPoint == NULL) || (bn_ctx == NULL))
1668 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1673 encodedlen = EC_POINT_point2oct(group,
1674 EC_KEY_get0_public_key(ecdh),
1675 POINT_CONVERSION_UNCOMPRESSED,
1676 encodedPoint, encodedlen, bn_ctx);
1678 if (encodedlen == 0)
1680 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1684 BN_CTX_free(bn_ctx); bn_ctx=NULL;
1686 /* XXX: For now, we only support named (not
1687 * generic) curves in ECDH ephemeral key exchanges.
1688 * In this situation, we need four additional bytes
1689 * to encode the entire ServerECDHParams
1694 /* We'll generate the serverKeyExchange message
1695 * explicitly so we can set these to NULLs
1703 #endif /* !OPENSSL_NO_ECDH */
1704 #ifndef OPENSSL_NO_PSK
1705 if (type & SSL_kPSK)
1707 /* reserve size for record length and PSK identity hint*/
1708 n+=2+strlen(s->ctx->psk_identity_hint);
1711 #endif /* !OPENSSL_NO_PSK */
1713 al=SSL_AD_HANDSHAKE_FAILURE;
1714 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1717 for (i=0; r[i] != NULL; i++)
1719 nr[i]=BN_num_bytes(r[i]);
1723 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
1724 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
1726 if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher))
1729 al=SSL_AD_DECODE_ERROR;
1732 kn=EVP_PKEY_size(pkey);
1740 if (!BUF_MEM_grow_clean(buf,n+4+kn))
1742 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
1745 d=(unsigned char *)s->init_buf->data;
1748 for (i=0; r[i] != NULL; i++)
1755 #ifndef OPENSSL_NO_ECDH
1756 if (type & SSL_kEECDH)
1758 /* XXX: For now, we only support named (not generic) curves.
1759 * In this situation, the serverKeyExchange message has:
1760 * [1 byte CurveType], [2 byte CurveName]
1761 * [1 byte length of encoded point], followed by
1762 * the actual encoded point itself
1764 *p = NAMED_CURVE_TYPE;
1772 memcpy((unsigned char*)p,
1773 (unsigned char *)encodedPoint,
1775 OPENSSL_free(encodedPoint);
1780 #ifndef OPENSSL_NO_PSK
1781 if (type & SSL_kPSK)
1783 /* copy PSK identity hint */
1784 s2n(strlen(s->ctx->psk_identity_hint), p);
1785 strncpy((char *)p, s->ctx->psk_identity_hint, strlen(s->ctx->psk_identity_hint));
1786 p+=strlen(s->ctx->psk_identity_hint);
1793 /* n is the length of the params, they start at &(d[4])
1794 * and p points to the space at the end. */
1795 #ifndef OPENSSL_NO_RSA
1796 if (pkey->type == EVP_PKEY_RSA)
1800 for (num=2; num > 0; num--)
1802 EVP_DigestInit_ex(&md_ctx,(num == 2)
1803 ?s->ctx->md5:s->ctx->sha1, NULL);
1804 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1805 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1806 EVP_DigestUpdate(&md_ctx,&(d[4]),n);
1807 EVP_DigestFinal_ex(&md_ctx,q,
1808 (unsigned int *)&i);
1812 if (RSA_sign(NID_md5_sha1, md_buf, j,
1813 &(p[2]), &u, pkey->pkey.rsa) <= 0)
1815 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
1823 #if !defined(OPENSSL_NO_DSA)
1824 if (pkey->type == EVP_PKEY_DSA)
1827 EVP_SignInit_ex(&md_ctx,EVP_dss1(), NULL);
1828 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1829 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1830 EVP_SignUpdate(&md_ctx,&(d[4]),n);
1831 if (!EVP_SignFinal(&md_ctx,&(p[2]),
1832 (unsigned int *)&i,pkey))
1834 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_DSA);
1842 #if !defined(OPENSSL_NO_ECDSA)
1843 if (pkey->type == EVP_PKEY_EC)
1845 /* let's do ECDSA */
1846 EVP_SignInit_ex(&md_ctx,EVP_ecdsa(), NULL);
1847 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1848 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1849 EVP_SignUpdate(&md_ctx,&(d[4]),n);
1850 if (!EVP_SignFinal(&md_ctx,&(p[2]),
1851 (unsigned int *)&i,pkey))
1853 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_ECDSA);
1862 /* Is this error check actually needed? */
1863 al=SSL_AD_HANDSHAKE_FAILURE;
1864 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
1869 *(d++)=SSL3_MT_SERVER_KEY_EXCHANGE;
1872 /* we should now have things packed up, so lets send
1878 s->state = SSL3_ST_SW_KEY_EXCH_B;
1879 EVP_MD_CTX_cleanup(&md_ctx);
1880 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1882 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1884 #ifndef OPENSSL_NO_ECDH
1885 if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
1886 BN_CTX_free(bn_ctx);
1888 EVP_MD_CTX_cleanup(&md_ctx);
1892 int ssl3_send_certificate_request(SSL *s)
1894 unsigned char *p,*d;
1896 STACK_OF(X509_NAME) *sk=NULL;
1900 if (s->state == SSL3_ST_SW_CERT_REQ_A)
1904 d=p=(unsigned char *)&(buf->data[4]);
1906 /* get the list of acceptable cert types */
1908 n=ssl3_get_req_cert_type(s,p);
1917 sk=SSL_get_client_CA_list(s);
1921 for (i=0; i<sk_X509_NAME_num(sk); i++)
1923 name=sk_X509_NAME_value(sk,i);
1924 j=i2d_X509_NAME(name,NULL);
1925 if (!BUF_MEM_grow_clean(buf,4+n+j+2))
1927 SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
1930 p=(unsigned char *)&(buf->data[4+n]);
1931 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
1934 i2d_X509_NAME(name,&p);
1941 i2d_X509_NAME(name,&p);
1942 j-=2; s2n(j,d); j+=2;
1948 /* else no CA names */
1949 p=(unsigned char *)&(buf->data[4+off]);
1952 d=(unsigned char *)buf->data;
1953 *(d++)=SSL3_MT_CERTIFICATE_REQUEST;
1956 /* we should now have things packed up, so lets send
1961 #ifdef NETSCAPE_HANG_BUG
1962 p=(unsigned char *)s->init_buf->data + s->init_num;
1965 *(p++)=SSL3_MT_SERVER_DONE;
1972 s->state = SSL3_ST_SW_CERT_REQ_B;
1975 /* SSL3_ST_SW_CERT_REQ_B */
1976 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1981 int ssl3_get_client_key_exchange(SSL *s)
1985 unsigned long alg_k;
1987 #ifndef OPENSSL_NO_RSA
1989 EVP_PKEY *pkey=NULL;
1991 #ifndef OPENSSL_NO_DH
1995 #ifndef OPENSSL_NO_KRB5
1997 #endif /* OPENSSL_NO_KRB5 */
1999 #ifndef OPENSSL_NO_ECDH
2000 EC_KEY *srvr_ecdh = NULL;
2001 EVP_PKEY *clnt_pub_pkey = NULL;
2002 EC_POINT *clnt_ecpoint = NULL;
2003 BN_CTX *bn_ctx = NULL;
2006 n=s->method->ssl_get_message(s,
2007 SSL3_ST_SR_KEY_EXCH_A,
2008 SSL3_ST_SR_KEY_EXCH_B,
2009 SSL3_MT_CLIENT_KEY_EXCHANGE,
2013 if (!ok) return((int)n);
2014 p=(unsigned char *)s->init_msg;
2016 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
2018 #ifndef OPENSSL_NO_RSA
2019 if (alg_k & SSL_kRSA)
2021 /* FIX THIS UP EAY EAY EAY EAY */
2022 if (s->s3->tmp.use_rsa_tmp)
2024 if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
2025 rsa=s->cert->rsa_tmp;
2026 /* Don't do a callback because rsa_tmp should
2027 * be sent already */
2030 al=SSL_AD_HANDSHAKE_FAILURE;
2031 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_PKEY);
2038 pkey=s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
2039 if ( (pkey == NULL) ||
2040 (pkey->type != EVP_PKEY_RSA) ||
2041 (pkey->pkey.rsa == NULL))
2043 al=SSL_AD_HANDSHAKE_FAILURE;
2044 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
2050 /* TLS and [incidentally] DTLS{0xFEFF} */
2051 if (s->version > SSL3_VERSION && s->version != DTLS1_BAD_VER)
2056 if (!(s->options & SSL_OP_TLS_D5_BUG))
2058 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
2068 i=RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
2072 if (i != SSL_MAX_MASTER_KEY_LENGTH)
2074 al=SSL_AD_DECODE_ERROR;
2075 /* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT); */
2078 if ((al == -1) && !((p[0] == (s->client_version>>8)) && (p[1] == (s->client_version & 0xff))))
2080 /* The premaster secret must contain the same version number as the
2081 * ClientHello to detect version rollback attacks (strangely, the
2082 * protocol does not offer such protection for DH ciphersuites).
2083 * However, buggy clients exist that send the negotiated protocol
2084 * version instead if the server does not support the requested
2086 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients. */
2087 if (!((s->options & SSL_OP_TLS_ROLLBACK_BUG) &&
2088 (p[0] == (s->version>>8)) && (p[1] == (s->version & 0xff))))
2090 al=SSL_AD_DECODE_ERROR;
2091 /* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_PROTOCOL_VERSION_NUMBER); */
2093 /* The Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2094 * (http://eprint.iacr.org/2003/052/) exploits the version
2095 * number check as a "bad version oracle" -- an alert would
2096 * reveal that the plaintext corresponding to some ciphertext
2097 * made up by the adversary is properly formatted except
2098 * that the version number is wrong. To avoid such attacks,
2099 * we should treat this just like any other decryption error. */
2105 /* Some decryption failure -- use random value instead as countermeasure
2106 * against Bleichenbacher's attack on PKCS #1 v1.5 RSA padding
2107 * (see RFC 2246, section 7.4.7.1). */
2109 i = SSL_MAX_MASTER_KEY_LENGTH;
2110 p[0] = s->client_version >> 8;
2111 p[1] = s->client_version & 0xff;
2112 if (RAND_pseudo_bytes(p+2, i-2) <= 0) /* should be RAND_bytes, but we cannot work around a failure */
2116 s->session->master_key_length=
2117 s->method->ssl3_enc->generate_master_secret(s,
2118 s->session->master_key,
2120 OPENSSL_cleanse(p,i);
2124 #ifndef OPENSSL_NO_DH
2125 if (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
2130 if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG))
2132 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2142 if (n == 0L) /* the parameters are in the cert */
2144 al=SSL_AD_HANDSHAKE_FAILURE;
2145 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_UNABLE_TO_DECODE_DH_CERTS);
2150 if (s->s3->tmp.dh == NULL)
2152 al=SSL_AD_HANDSHAKE_FAILURE;
2153 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
2157 dh_srvr=s->s3->tmp.dh;
2160 pub=BN_bin2bn(p,i,NULL);
2163 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BN_LIB);
2167 i=DH_compute_key(p,pub,dh_srvr);
2171 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2175 DH_free(s->s3->tmp.dh);
2180 s->session->master_key_length=
2181 s->method->ssl3_enc->generate_master_secret(s,
2182 s->session->master_key,p,i);
2183 OPENSSL_cleanse(p,i);
2187 #ifndef OPENSSL_NO_KRB5
2188 if (alg_k & SSL_kKRB5)
2190 krb5_error_code krb5rc;
2191 krb5_data enc_ticket;
2192 krb5_data authenticator;
2194 KSSL_CTX *kssl_ctx = s->kssl_ctx;
2195 EVP_CIPHER_CTX ciph_ctx;
2196 const EVP_CIPHER *enc = NULL;
2197 unsigned char iv[EVP_MAX_IV_LENGTH];
2198 unsigned char pms[SSL_MAX_MASTER_KEY_LENGTH
2199 + EVP_MAX_BLOCK_LENGTH];
2201 krb5_timestamp authtime = 0;
2202 krb5_ticket_times ttimes;
2204 EVP_CIPHER_CTX_init(&ciph_ctx);
2206 if (!kssl_ctx) kssl_ctx = kssl_ctx_new();
2209 enc_ticket.length = i;
2211 if (n < (long)(enc_ticket.length + 6))
2213 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2214 SSL_R_DATA_LENGTH_TOO_LONG);
2218 enc_ticket.data = (char *)p;
2219 p+=enc_ticket.length;
2222 authenticator.length = i;
2224 if (n < (long)(enc_ticket.length + authenticator.length + 6))
2226 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2227 SSL_R_DATA_LENGTH_TOO_LONG);
2231 authenticator.data = (char *)p;
2232 p+=authenticator.length;
2236 enc_pms.data = (char *)p;
2239 /* Note that the length is checked again below,
2242 if(enc_pms.length > sizeof pms)
2244 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2245 SSL_R_DATA_LENGTH_TOO_LONG);
2249 if (n != (long)(enc_ticket.length + authenticator.length +
2250 enc_pms.length + 6))
2252 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2253 SSL_R_DATA_LENGTH_TOO_LONG);
2257 if ((krb5rc = kssl_sget_tkt(kssl_ctx, &enc_ticket, &ttimes,
2261 printf("kssl_sget_tkt rtn %d [%d]\n",
2262 krb5rc, kssl_err.reason);
2264 printf("kssl_err text= %s\n", kssl_err.text);
2265 #endif /* KSSL_DEBUG */
2266 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2271 /* Note: no authenticator is not considered an error,
2272 ** but will return authtime == 0.
2274 if ((krb5rc = kssl_check_authent(kssl_ctx, &authenticator,
2275 &authtime, &kssl_err)) != 0)
2278 printf("kssl_check_authent rtn %d [%d]\n",
2279 krb5rc, kssl_err.reason);
2281 printf("kssl_err text= %s\n", kssl_err.text);
2282 #endif /* KSSL_DEBUG */
2283 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2288 if ((krb5rc = kssl_validate_times(authtime, &ttimes)) != 0)
2290 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, krb5rc);
2295 kssl_ctx_show(kssl_ctx);
2296 #endif /* KSSL_DEBUG */
2298 enc = kssl_map_enc(kssl_ctx->enctype);
2302 memset(iv, 0, sizeof iv); /* per RFC 1510 */
2304 if (!EVP_DecryptInit_ex(&ciph_ctx,enc,NULL,kssl_ctx->key,iv))
2306 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2307 SSL_R_DECRYPTION_FAILED);
2310 if (!EVP_DecryptUpdate(&ciph_ctx, pms,&outl,
2311 (unsigned char *)enc_pms.data, enc_pms.length))
2313 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2314 SSL_R_DECRYPTION_FAILED);
2317 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
2319 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2320 SSL_R_DATA_LENGTH_TOO_LONG);
2323 if (!EVP_DecryptFinal_ex(&ciph_ctx,&(pms[outl]),&padl))
2325 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2326 SSL_R_DECRYPTION_FAILED);
2330 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
2332 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2333 SSL_R_DATA_LENGTH_TOO_LONG);
2336 if (!((pms[0] == (s->client_version>>8)) && (pms[1] == (s->client_version & 0xff))))
2338 /* The premaster secret must contain the same version number as the
2339 * ClientHello to detect version rollback attacks (strangely, the
2340 * protocol does not offer such protection for DH ciphersuites).
2341 * However, buggy clients exist that send random bytes instead of
2342 * the protocol version.
2343 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients.
2344 * (Perhaps we should have a separate BUG value for the Kerberos cipher)
2346 if (!(s->options & SSL_OP_TLS_ROLLBACK_BUG))
2348 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2349 SSL_AD_DECODE_ERROR);
2354 EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2356 s->session->master_key_length=
2357 s->method->ssl3_enc->generate_master_secret(s,
2358 s->session->master_key, pms, outl);
2360 if (kssl_ctx->client_princ)
2362 size_t len = strlen(kssl_ctx->client_princ);
2363 if ( len < SSL_MAX_KRB5_PRINCIPAL_LENGTH )
2365 s->session->krb5_client_princ_len = len;
2366 memcpy(s->session->krb5_client_princ,kssl_ctx->client_princ,len);
2371 /* Was doing kssl_ctx_free() here,
2372 ** but it caused problems for apache.
2373 ** kssl_ctx = kssl_ctx_free(kssl_ctx);
2374 ** if (s->kssl_ctx) s->kssl_ctx = NULL;
2378 #endif /* OPENSSL_NO_KRB5 */
2380 #ifndef OPENSSL_NO_ECDH
2381 if (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe))
2386 const EC_GROUP *group;
2387 const BIGNUM *priv_key;
2389 /* initialize structures for server's ECDH key pair */
2390 if ((srvr_ecdh = EC_KEY_new()) == NULL)
2392 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2393 ERR_R_MALLOC_FAILURE);
2397 /* Let's get server private key and group information */
2398 if (alg_k & (SSL_kECDHr|SSL_kECDHe))
2400 /* use the certificate */
2401 tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
2405 /* use the ephermeral values we saved when
2406 * generating the ServerKeyExchange msg.
2408 tkey = s->s3->tmp.ecdh;
2411 group = EC_KEY_get0_group(tkey);
2412 priv_key = EC_KEY_get0_private_key(tkey);
2414 if (!EC_KEY_set_group(srvr_ecdh, group) ||
2415 !EC_KEY_set_private_key(srvr_ecdh, priv_key))
2417 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2422 /* Let's get client's public key */
2423 if ((clnt_ecpoint = EC_POINT_new(group)) == NULL)
2425 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2426 ERR_R_MALLOC_FAILURE);
2432 /* Client Publickey was in Client Certificate */
2434 if (alg_k & SSL_kEECDH)
2436 al=SSL_AD_HANDSHAKE_FAILURE;
2437 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
2440 if (((clnt_pub_pkey=X509_get_pubkey(s->session->peer))
2442 (clnt_pub_pkey->type != EVP_PKEY_EC))
2444 /* XXX: For now, we do not support client
2445 * authentication using ECDH certificates
2446 * so this branch (n == 0L) of the code is
2447 * never executed. When that support is
2448 * added, we ought to ensure the key
2449 * received in the certificate is
2450 * authorized for key agreement.
2451 * ECDH_compute_key implicitly checks that
2452 * the two ECDH shares are for the same
2455 al=SSL_AD_HANDSHAKE_FAILURE;
2456 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2457 SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
2461 if (EC_POINT_copy(clnt_ecpoint,
2462 EC_KEY_get0_public_key(clnt_pub_pkey->pkey.ec)) == 0)
2464 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2468 ret = 2; /* Skip certificate verify processing */
2472 /* Get client's public key from encoded point
2473 * in the ClientKeyExchange message.
2475 if ((bn_ctx = BN_CTX_new()) == NULL)
2477 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2478 ERR_R_MALLOC_FAILURE);
2482 /* Get encoded point length */
2485 if (EC_POINT_oct2point(group,
2486 clnt_ecpoint, p, i, bn_ctx) == 0)
2488 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2492 /* p is pointing to somewhere in the buffer
2493 * currently, so set it to the start
2495 p=(unsigned char *)s->init_buf->data;
2498 /* Compute the shared pre-master secret */
2499 field_size = EC_GROUP_get_degree(group);
2500 if (field_size <= 0)
2502 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2506 i = ECDH_compute_key(p, (field_size+7)/8, clnt_ecpoint, srvr_ecdh, NULL);
2509 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2514 EVP_PKEY_free(clnt_pub_pkey);
2515 EC_POINT_free(clnt_ecpoint);
2516 EC_KEY_free(srvr_ecdh);
2517 BN_CTX_free(bn_ctx);
2518 EC_KEY_free(s->s3->tmp.ecdh);
2519 s->s3->tmp.ecdh = NULL;
2521 /* Compute the master secret */
2522 s->session->master_key_length = s->method->ssl3_enc-> \
2523 generate_master_secret(s, s->session->master_key, p, i);
2525 OPENSSL_cleanse(p, i);
2530 #ifndef OPENSSL_NO_PSK
2531 if (alg_k & SSL_kPSK)
2533 unsigned char *t = NULL;
2534 unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN*2+4];
2535 unsigned int pre_ms_len = 0, psk_len = 0;
2537 char tmp_id[PSK_MAX_IDENTITY_LEN+1];
2539 al=SSL_AD_HANDSHAKE_FAILURE;
2544 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2545 SSL_R_LENGTH_MISMATCH);
2548 if (i > PSK_MAX_IDENTITY_LEN)
2550 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2551 SSL_R_DATA_LENGTH_TOO_LONG);
2554 if (s->psk_server_callback == NULL)
2556 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2557 SSL_R_PSK_NO_SERVER_CB);
2561 /* Create guaranteed NULL-terminated identity
2562 * string for the callback */
2563 memcpy(tmp_id, p, i);
2564 memset(tmp_id+i, 0, PSK_MAX_IDENTITY_LEN+1-i);
2565 psk_len = s->psk_server_callback(s, tmp_id,
2566 psk_or_pre_ms, sizeof(psk_or_pre_ms));
2567 OPENSSL_cleanse(tmp_id, PSK_MAX_IDENTITY_LEN+1);
2569 if (psk_len > PSK_MAX_PSK_LEN)
2571 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2572 ERR_R_INTERNAL_ERROR);
2575 else if (psk_len == 0)
2577 /* PSK related to the given identity not found */
2578 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2579 SSL_R_PSK_IDENTITY_NOT_FOUND);
2580 al=SSL_AD_UNKNOWN_PSK_IDENTITY;
2584 /* create PSK pre_master_secret */
2585 pre_ms_len=2+psk_len+2+psk_len;
2587 memmove(psk_or_pre_ms+psk_len+4, psk_or_pre_ms, psk_len);
2589 memset(t, 0, psk_len);
2593 if (s->session->psk_identity != NULL)
2594 OPENSSL_free(s->session->psk_identity);
2595 s->session->psk_identity = BUF_strdup((char *)p);
2596 if (s->session->psk_identity == NULL)
2598 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2599 ERR_R_MALLOC_FAILURE);
2603 if (s->session->psk_identity_hint != NULL)
2604 OPENSSL_free(s->session->psk_identity_hint);
2605 s->session->psk_identity_hint = BUF_strdup(s->ctx->psk_identity_hint);
2606 if (s->ctx->psk_identity_hint != NULL &&
2607 s->session->psk_identity_hint == NULL)
2609 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2610 ERR_R_MALLOC_FAILURE);
2614 s->session->master_key_length=
2615 s->method->ssl3_enc->generate_master_secret(s,
2616 s->session->master_key, psk_or_pre_ms, pre_ms_len);
2619 OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
2625 if (alg_k & SSL_kGOST)
2628 EVP_PKEY_CTX *pkey_ctx;
2629 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2630 unsigned char premaster_secret[32], *start;
2631 size_t outlen=32, inlen;
2632 unsigned long alg_a;
2634 /* Get our certificate private key*/
2635 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2636 if (alg_a & SSL_aGOST94)
2637 pk = s->cert->pkeys[SSL_PKEY_GOST94].privatekey;
2638 else if (alg_a & SSL_aGOST01)
2639 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2641 pkey_ctx = EVP_PKEY_CTX_new(pk,NULL);
2642 EVP_PKEY_decrypt_init(pkey_ctx);
2643 /* If client certificate is present and is of the same type, maybe
2644 * use it for key exchange. Don't mind errors from
2645 * EVP_PKEY_derive_set_peer, because it is completely valid to use
2646 * a client certificate for authorization only. */
2647 client_pub_pkey = X509_get_pubkey(s->session->peer);
2648 if (client_pub_pkey)
2650 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2653 /* Decrypt session key */
2654 if ((*p!=( V_ASN1_SEQUENCE| V_ASN1_CONSTRUCTED)))
2656 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2664 else if (p[1] < 0x80)
2671 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2674 if (EVP_PKEY_decrypt(pkey_ctx,premaster_secret,&outlen,start,inlen) <=0)
2677 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2680 /* Generate master secret */
2681 s->session->master_key_length=
2682 s->method->ssl3_enc->generate_master_secret(s,
2683 s->session->master_key,premaster_secret,32);
2684 /* Check if pubkey from client certificate was used */
2685 if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2690 EVP_PKEY_free(client_pub_pkey);
2691 EVP_PKEY_CTX_free(pkey_ctx);
2699 al=SSL_AD_HANDSHAKE_FAILURE;
2700 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2701 SSL_R_UNKNOWN_CIPHER_TYPE);
2707 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2708 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_ECDH)
2711 #ifndef OPENSSL_NO_ECDH
2712 EVP_PKEY_free(clnt_pub_pkey);
2713 EC_POINT_free(clnt_ecpoint);
2714 if (srvr_ecdh != NULL)
2715 EC_KEY_free(srvr_ecdh);
2716 BN_CTX_free(bn_ctx);
2721 int ssl3_get_cert_verify(SSL *s)
2723 EVP_PKEY *pkey=NULL;
2730 n=s->method->ssl_get_message(s,
2731 SSL3_ST_SR_CERT_VRFY_A,
2732 SSL3_ST_SR_CERT_VRFY_B,
2737 if (!ok) return((int)n);
2739 if (s->session->peer != NULL)
2741 peer=s->session->peer;
2742 pkey=X509_get_pubkey(peer);
2743 type=X509_certificate_type(peer,pkey);
2751 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY)
2753 s->s3->tmp.reuse_message=1;
2754 if ((peer != NULL) && (type | EVP_PKT_SIGN))
2756 al=SSL_AD_UNEXPECTED_MESSAGE;
2757 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_MISSING_VERIFY_MESSAGE);
2766 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_NO_CLIENT_CERT_RECEIVED);
2767 al=SSL_AD_UNEXPECTED_MESSAGE;
2771 if (!(type & EVP_PKT_SIGN))
2773 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
2774 al=SSL_AD_ILLEGAL_PARAMETER;
2778 if (s->s3->change_cipher_spec)
2780 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_CCS_RECEIVED_EARLY);
2781 al=SSL_AD_UNEXPECTED_MESSAGE;
2785 /* we now have a signature that we need to verify */
2786 p=(unsigned char *)s->init_msg;
2787 /* Check for broken implementations of GOST ciphersuites */
2788 /* If key is GOST and n is exactly 64, it is bare
2789 * signature without length field */
2790 if (n==64 && (pkey->type==NID_id_GostR3410_94 ||
2791 pkey->type == NID_id_GostR3410_2001) )
2801 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_LENGTH_MISMATCH);
2802 al=SSL_AD_DECODE_ERROR;
2806 j=EVP_PKEY_size(pkey);
2807 if ((i > j) || (n > j) || (n <= 0))
2809 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_WRONG_SIGNATURE_SIZE);
2810 al=SSL_AD_DECODE_ERROR;
2814 #ifndef OPENSSL_NO_RSA
2815 if (pkey->type == EVP_PKEY_RSA)
2817 i=RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
2818 MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH, p, i,
2822 al=SSL_AD_DECRYPT_ERROR;
2823 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_DECRYPT);
2828 al=SSL_AD_DECRYPT_ERROR;
2829 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_SIGNATURE);
2835 #ifndef OPENSSL_NO_DSA
2836 if (pkey->type == EVP_PKEY_DSA)
2838 j=DSA_verify(pkey->save_type,
2839 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
2840 SHA_DIGEST_LENGTH,p,i,pkey->pkey.dsa);
2844 al=SSL_AD_DECRYPT_ERROR;
2845 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_DSA_SIGNATURE);
2851 #ifndef OPENSSL_NO_ECDSA
2852 if (pkey->type == EVP_PKEY_EC)
2854 j=ECDSA_verify(pkey->save_type,
2855 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
2856 SHA_DIGEST_LENGTH,p,i,pkey->pkey.ec);
2860 al=SSL_AD_DECRYPT_ERROR;
2861 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
2862 SSL_R_BAD_ECDSA_SIGNATURE);
2868 if (pkey->type == NID_id_GostR3410_94 || pkey->type == NID_id_GostR3410_2001)
2869 { unsigned char signature[64];
2871 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new(pkey,NULL);
2872 EVP_PKEY_verify_init(pctx);
2874 fprintf(stderr,"GOST signature length is %d",i);
2876 for (idx=0;idx<64;idx++) {
2877 signature[63-idx]=p[idx];
2879 j=EVP_PKEY_verify(pctx,signature,64,s->s3->tmp.cert_verify_md,32);
2880 EVP_PKEY_CTX_free(pctx);
2883 al=SSL_AD_DECRYPT_ERROR;
2884 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
2885 SSL_R_BAD_ECDSA_SIGNATURE);
2891 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,ERR_R_INTERNAL_ERROR);
2892 al=SSL_AD_UNSUPPORTED_CERTIFICATE;
2901 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2904 EVP_PKEY_free(pkey);
2908 int ssl3_get_client_certificate(SSL *s)
2910 int i,ok,al,ret= -1;
2912 unsigned long l,nc,llen,n;
2913 const unsigned char *p,*q;
2915 STACK_OF(X509) *sk=NULL;
2917 n=s->method->ssl_get_message(s,
2924 if (!ok) return((int)n);
2926 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_KEY_EXCHANGE)
2928 if ( (s->verify_mode & SSL_VERIFY_PEER) &&
2929 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
2931 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
2932 al=SSL_AD_HANDSHAKE_FAILURE;
2935 /* If tls asked for a client cert, the client must return a 0 list */
2936 if ((s->version > SSL3_VERSION) && s->s3->tmp.cert_request)
2938 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST);
2939 al=SSL_AD_UNEXPECTED_MESSAGE;
2942 s->s3->tmp.reuse_message=1;
2946 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
2948 al=SSL_AD_UNEXPECTED_MESSAGE;
2949 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_WRONG_MESSAGE_TYPE);
2952 p=d=(unsigned char *)s->init_msg;
2954 if ((sk=sk_X509_new_null()) == NULL)
2956 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
2963 al=SSL_AD_DECODE_ERROR;
2964 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
2967 for (nc=0; nc<llen; )
2970 if ((l+nc+3) > llen)
2972 al=SSL_AD_DECODE_ERROR;
2973 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
2978 x=d2i_X509(NULL,&p,l);
2981 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_ASN1_LIB);
2986 al=SSL_AD_DECODE_ERROR;
2987 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
2990 if (!sk_X509_push(sk,x))
2992 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
2999 if (sk_X509_num(sk) <= 0)
3001 /* TLS does not mind 0 certs returned */
3002 if (s->version == SSL3_VERSION)
3004 al=SSL_AD_HANDSHAKE_FAILURE;
3005 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATES_RETURNED);
3008 /* Fail for TLS only if we required a certificate */
3009 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3010 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
3012 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3013 al=SSL_AD_HANDSHAKE_FAILURE;
3019 i=ssl_verify_cert_chain(s,sk);
3022 al=ssl_verify_alarm_type(s->verify_result);
3023 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATE_RETURNED);
3028 if (s->session->peer != NULL) /* This should not be needed */
3029 X509_free(s->session->peer);
3030 s->session->peer=sk_X509_shift(sk);
3031 s->session->verify_result = s->verify_result;
3033 /* With the current implementation, sess_cert will always be NULL
3034 * when we arrive here. */
3035 if (s->session->sess_cert == NULL)
3037 s->session->sess_cert = ssl_sess_cert_new();
3038 if (s->session->sess_cert == NULL)
3040 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3044 if (s->session->sess_cert->cert_chain != NULL)
3045 sk_X509_pop_free(s->session->sess_cert->cert_chain, X509_free);
3046 s->session->sess_cert->cert_chain=sk;
3047 /* Inconsistency alert: cert_chain does *not* include the
3048 * peer's own certificate, while we do include it in s3_clnt.c */
3056 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3059 if (x != NULL) X509_free(x);
3060 if (sk != NULL) sk_X509_pop_free(sk,X509_free);
3064 int ssl3_send_server_certificate(SSL *s)
3069 if (s->state == SSL3_ST_SW_CERT_A)
3071 x=ssl_get_server_send_cert(s);
3074 /* VRS: allow null cert if auth == KRB5 */
3075 if ((s->s3->tmp.new_cipher->algorithm_auth != SSL_aKRB5) ||
3076 (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5))
3078 SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
3083 l=ssl3_output_cert_chain(s,x);
3084 s->state=SSL3_ST_SW_CERT_B;
3089 /* SSL3_ST_SW_CERT_B */
3090 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3092 #ifndef OPENSSL_NO_TLSEXT
3093 int ssl3_send_newsession_ticket(SSL *s)
3095 if (s->state == SSL3_ST_SW_SESSION_TICKET_A)
3097 unsigned char *p, *senc, *macstart;
3102 SSL_CTX *tctx = s->initial_ctx;
3103 unsigned char iv[EVP_MAX_IV_LENGTH];
3104 unsigned char key_name[16];
3106 /* get session encoding length */
3107 slen = i2d_SSL_SESSION(s->session, NULL);
3108 /* Some length values are 16 bits, so forget it if session is
3113 /* Grow buffer if need be: the length calculation is as
3114 * follows 1 (size of message name) + 3 (message length
3115 * bytes) + 4 (ticket lifetime hint) + 2 (ticket length) +
3116 * 16 (key name) + max_iv_len (iv length) +
3117 * session_length + max_enc_block_size (max encrypted session
3118 * length) + max_md_size (HMAC).
3120 if (!BUF_MEM_grow(s->init_buf,
3121 26 + EVP_MAX_IV_LENGTH + EVP_MAX_BLOCK_LENGTH +
3122 EVP_MAX_MD_SIZE + slen))
3124 senc = OPENSSL_malloc(slen);
3128 i2d_SSL_SESSION(s->session, &p);
3130 p=(unsigned char *)s->init_buf->data;
3132 *(p++)=SSL3_MT_NEWSESSION_TICKET;
3133 /* Skip message length for now */
3135 EVP_CIPHER_CTX_init(&ctx);
3136 HMAC_CTX_init(&hctx);
3137 /* Initialize HMAC and cipher contexts. If callback present
3138 * it does all the work otherwise use generated values
3141 if (tctx->tlsext_ticket_key_cb)
3143 if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3152 RAND_pseudo_bytes(iv, 16);
3153 EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
3154 tctx->tlsext_tick_aes_key, iv);
3155 HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3156 tlsext_tick_md(), NULL);
3157 memcpy(key_name, tctx->tlsext_tick_key_name, 16);
3159 l2n(s->session->tlsext_tick_lifetime_hint, p);
3160 /* Skip ticket length for now */
3162 /* Output key name */
3164 memcpy(p, key_name, 16);
3167 memcpy(p, iv, EVP_CIPHER_CTX_iv_length(&ctx));
3168 p += EVP_CIPHER_CTX_iv_length(&ctx);
3169 /* Encrypt session data */
3170 EVP_EncryptUpdate(&ctx, p, &len, senc, slen);
3172 EVP_EncryptFinal(&ctx, p, &len);
3174 EVP_CIPHER_CTX_cleanup(&ctx);
3176 HMAC_Update(&hctx, macstart, p - macstart);
3177 HMAC_Final(&hctx, p, &hlen);
3178 HMAC_CTX_cleanup(&hctx);
3181 /* Now write out lengths: p points to end of data written */
3183 len = p - (unsigned char *)s->init_buf->data;
3184 p=(unsigned char *)s->init_buf->data + 1;
3185 l2n3(len - 4, p); /* Message length */
3187 s2n(len - 10, p); /* Ticket length */
3189 /* number of bytes to write */
3191 s->state=SSL3_ST_SW_SESSION_TICKET_B;
3196 /* SSL3_ST_SW_SESSION_TICKET_B */
3197 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3200 int ssl3_send_cert_status(SSL *s)
3202 if (s->state == SSL3_ST_SW_CERT_STATUS_A)
3205 /* Grow buffer if need be: the length calculation is as
3206 * follows 1 (message type) + 3 (message length) +
3207 * 1 (ocsp response type) + 3 (ocsp response length)
3210 if (!BUF_MEM_grow(s->init_buf, 8 + s->tlsext_ocsp_resplen))
3213 p=(unsigned char *)s->init_buf->data;
3216 *(p++)=SSL3_MT_CERTIFICATE_STATUS;
3217 /* message length */
3218 l2n3(s->tlsext_ocsp_resplen + 4, p);
3220 *(p++)= s->tlsext_status_type;
3221 /* length of OCSP response */
3222 l2n3(s->tlsext_ocsp_resplen, p);
3223 /* actual response */
3224 memcpy(p, s->tlsext_ocsp_resp, s->tlsext_ocsp_resplen);
3225 /* number of bytes to write */
3226 s->init_num = 8 + s->tlsext_ocsp_resplen;
3227 s->state=SSL3_ST_SW_CERT_STATUS_B;
3231 /* SSL3_ST_SW_CERT_STATUS_B */
3232 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3235 # ifndef OPENSSL_NO_NPN
3236 /* ssl3_get_next_proto reads a Next Protocol Negotiation handshake message. It
3237 * sets the next_proto member in s if found */
3238 int ssl3_get_next_proto(SSL *s)
3241 int proto_len, padding_len;
3243 const unsigned char *p;
3245 /* Clients cannot send a NextProtocol message if we didn't see the
3246 * extension in their ClientHello */
3247 if (!s->s3->next_proto_neg_seen)
3249 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION);
3253 n=s->method->ssl_get_message(s,
3254 SSL3_ST_SR_NEXT_PROTO_A,
3255 SSL3_ST_SR_NEXT_PROTO_B,
3257 514, /* See the payload format below */
3263 /* s->state doesn't reflect whether ChangeCipherSpec has been received
3264 * in this handshake, but s->s3->change_cipher_spec does (will be reset
3265 * by ssl3_get_finished). */
3266 if (!s->s3->change_cipher_spec)
3268 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS);
3273 return 0; /* The body must be > 1 bytes long */
3275 p=(unsigned char *)s->init_msg;
3277 /* The payload looks like:
3279 * uint8 proto[proto_len];
3280 * uint8 padding_len;
3281 * uint8 padding[padding_len];
3284 if (proto_len + 2 > s->init_num)
3286 padding_len = p[proto_len + 1];
3287 if (proto_len + padding_len + 2 != s->init_num)
3290 s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3291 if (!s->next_proto_negotiated)
3293 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,ERR_R_MALLOC_FAILURE);
3296 memcpy(s->next_proto_negotiated, p + 1, proto_len);
3297 s->next_proto_negotiated_len = proto_len;