3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
6 /* ====================================================================
7 * Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * openssl-core@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
59 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
60 * All rights reserved.
62 * This package is an SSL implementation written
63 * by Eric Young (eay@cryptsoft.com).
64 * The implementation was written so as to conform with Netscapes SSL.
66 * This library is free for commercial and non-commercial use as long as
67 * the following conditions are aheared to. The following conditions
68 * apply to all code found in this distribution, be it the RC4, RSA,
69 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
70 * included with this distribution is covered by the same copyright terms
71 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
73 * Copyright remains Eric Young's, and as such any Copyright notices in
74 * the code are not to be removed.
75 * If this package is used in a product, Eric Young should be given attribution
76 * as the author of the parts of the library used.
77 * This can be in the form of a textual message at program startup or
78 * in documentation (online or textual) provided with the package.
80 * Redistribution and use in source and binary forms, with or without
81 * modification, are permitted provided that the following conditions
83 * 1. Redistributions of source code must retain the copyright
84 * notice, this list of conditions and the following disclaimer.
85 * 2. Redistributions in binary form must reproduce the above copyright
86 * notice, this list of conditions and the following disclaimer in the
87 * documentation and/or other materials provided with the distribution.
88 * 3. All advertising materials mentioning features or use of this software
89 * must display the following acknowledgement:
90 * "This product includes cryptographic software written by
91 * Eric Young (eay@cryptsoft.com)"
92 * The word 'cryptographic' can be left out if the rouines from the library
93 * being used are not cryptographic related :-).
94 * 4. If you include any Windows specific code (or a derivative thereof) from
95 * the apps directory (application code) you must include an acknowledgement:
96 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
98 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
99 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
100 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
101 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
102 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
103 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
104 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
105 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
106 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
107 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
110 * The licence and distribution terms for any publically available version or
111 * derivative of this code cannot be changed. i.e. this code cannot simply be
112 * copied and put under another distribution licence
113 * [including the GNU Public Licence.]
117 #include "ssl_locl.h"
118 #ifndef OPENSSL_NO_KRB5
119 #include "kssl_lcl.h"
121 #include <openssl/buffer.h>
122 #include <openssl/rand.h>
123 #include <openssl/objects.h>
124 #include <openssl/evp.h>
125 #include <openssl/md5.h>
126 #include <openssl/bn.h>
127 #ifndef OPENSSL_NO_DH
128 #include <openssl/dh.h>
131 static const SSL_METHOD
*dtls1_get_client_method(int ver
);
132 static int dtls1_get_hello_verify(SSL
*s
);
134 static const SSL_METHOD
*dtls1_get_client_method(int ver
)
136 if (ver
== DTLS1_VERSION
|| ver
== DTLS1_BAD_VER
)
137 return(DTLSv1_client_method());
142 IMPLEMENT_dtls1_meth_func(DTLSv1_client_method
,
143 ssl_undefined_function
,
145 dtls1_get_client_method
)
147 int dtls1_connect(SSL
*s
)
150 unsigned long Time
=(unsigned long)time(NULL
);
152 void (*cb
)(const SSL
*ssl
,int type
,int val
)=NULL
;
154 int new_state
,state
,skip
=0;;
156 RAND_add(&Time
,sizeof(Time
),0);
160 if (s
->info_callback
!= NULL
)
162 else if (s
->ctx
->info_callback
!= NULL
)
163 cb
=s
->ctx
->info_callback
;
166 if (!SSL_in_init(s
) || SSL_in_before(s
)) SSL_clear(s
);
174 case SSL_ST_RENEGOTIATE
:
176 s
->state
=SSL_ST_CONNECT
;
177 s
->ctx
->stats
.sess_connect_renegotiate
++;
181 case SSL_ST_BEFORE
|SSL_ST_CONNECT
:
182 case SSL_ST_OK
|SSL_ST_CONNECT
:
185 if (cb
!= NULL
) cb(s
,SSL_CB_HANDSHAKE_START
,1);
187 if ((s
->version
& 0xff00 ) != (DTLS1_VERSION
& 0xff00) &&
188 (s
->version
& 0xff00 ) != (DTLS1_BAD_VER
& 0xff00))
190 SSLerr(SSL_F_DTLS1_CONNECT
, ERR_R_INTERNAL_ERROR
);
195 /* s->version=SSL3_VERSION; */
196 s
->type
=SSL_ST_CONNECT
;
198 if (s
->init_buf
== NULL
)
200 if ((buf
=BUF_MEM_new()) == NULL
)
205 if (!BUF_MEM_grow(buf
,SSL3_RT_MAX_PLAIN_LENGTH
))
214 if (!ssl3_setup_buffers(s
)) { ret
= -1; goto end
; }
216 /* setup buffing BIO */
217 if (!ssl_init_wbio_buffer(s
,0)) { ret
= -1; goto end
; }
219 /* don't push the buffering BIO quite yet */
221 s
->state
=SSL3_ST_CW_CLNT_HELLO_A
;
222 s
->ctx
->stats
.sess_connect
++;
224 /* mark client_random uninitialized */
225 memset(s
->s3
->client_random
,0,sizeof(s
->s3
->client_random
));
226 s
->d1
->send_cookie
= 0;
230 case SSL3_ST_CW_CLNT_HELLO_A
:
231 case SSL3_ST_CW_CLNT_HELLO_B
:
235 /* every DTLS ClientHello resets Finished MAC */
236 ssl3_init_finished_mac(s
);
238 dtls1_start_timer(s
);
239 ret
=dtls1_client_hello(s
);
240 if (ret
<= 0) goto end
;
242 if ( s
->d1
->send_cookie
)
244 s
->state
=SSL3_ST_CW_FLUSH
;
245 s
->s3
->tmp
.next_state
=SSL3_ST_CR_SRVR_HELLO_A
;
248 s
->state
=SSL3_ST_CR_SRVR_HELLO_A
;
252 /* turn on buffering for the next lot of output */
253 if (s
->bbio
!= s
->wbio
)
254 s
->wbio
=BIO_push(s
->bbio
,s
->wbio
);
258 case SSL3_ST_CR_SRVR_HELLO_A
:
259 case SSL3_ST_CR_SRVR_HELLO_B
:
260 ret
=ssl3_get_server_hello(s
);
261 if (ret
<= 0) goto end
;
266 s
->state
=SSL3_ST_CR_FINISHED_A
;
268 s
->state
=DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A
;
273 case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A
:
274 case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B
:
276 ret
= dtls1_get_hello_verify(s
);
280 if ( s
->d1
->send_cookie
) /* start again, with a cookie */
281 s
->state
=SSL3_ST_CW_CLNT_HELLO_A
;
283 s
->state
= SSL3_ST_CR_CERT_A
;
287 case SSL3_ST_CR_CERT_A
:
288 case SSL3_ST_CR_CERT_B
:
289 #ifndef OPENSSL_NO_TLSEXT
290 ret
=ssl3_check_finished(s
);
291 if (ret
<= 0) goto end
;
295 if (s
->tlsext_ticket_expected
)
296 s
->state
=SSL3_ST_CR_SESSION_TICKET_A
;
298 s
->state
=SSL3_ST_CR_FINISHED_A
;
303 /* Check if it is anon DH or PSK */
304 if (!(s
->s3
->tmp
.new_cipher
->algorithm_auth
& SSL_aNULL
) &&
305 !(s
->s3
->tmp
.new_cipher
->algorithm_mkey
& SSL_kPSK
))
307 ret
=ssl3_get_server_certificate(s
);
308 if (ret
<= 0) goto end
;
309 #ifndef OPENSSL_NO_TLSEXT
310 if (s
->tlsext_status_expected
)
311 s
->state
=SSL3_ST_CR_CERT_STATUS_A
;
313 s
->state
=SSL3_ST_CR_KEY_EXCH_A
;
318 s
->state
=SSL3_ST_CR_KEY_EXCH_A
;
325 s
->state
=SSL3_ST_CR_KEY_EXCH_A
;
330 case SSL3_ST_CR_KEY_EXCH_A
:
331 case SSL3_ST_CR_KEY_EXCH_B
:
332 ret
=ssl3_get_key_exchange(s
);
333 if (ret
<= 0) goto end
;
334 s
->state
=SSL3_ST_CR_CERT_REQ_A
;
337 /* at this point we check that we have the
338 * required stuff from the server */
339 if (!ssl3_check_cert_and_algorithm(s
))
346 case SSL3_ST_CR_CERT_REQ_A
:
347 case SSL3_ST_CR_CERT_REQ_B
:
348 ret
=ssl3_get_certificate_request(s
);
349 if (ret
<= 0) goto end
;
350 s
->state
=SSL3_ST_CR_SRVR_DONE_A
;
354 case SSL3_ST_CR_SRVR_DONE_A
:
355 case SSL3_ST_CR_SRVR_DONE_B
:
356 ret
=ssl3_get_server_done(s
);
357 if (ret
<= 0) goto end
;
358 if (s
->s3
->tmp
.cert_req
)
359 s
->state
=SSL3_ST_CW_CERT_A
;
361 s
->state
=SSL3_ST_CW_KEY_EXCH_A
;
366 case SSL3_ST_CW_CERT_A
:
367 case SSL3_ST_CW_CERT_B
:
368 case SSL3_ST_CW_CERT_C
:
369 case SSL3_ST_CW_CERT_D
:
370 dtls1_start_timer(s
);
371 ret
=dtls1_send_client_certificate(s
);
372 if (ret
<= 0) goto end
;
373 s
->state
=SSL3_ST_CW_KEY_EXCH_A
;
377 case SSL3_ST_CW_KEY_EXCH_A
:
378 case SSL3_ST_CW_KEY_EXCH_B
:
379 dtls1_start_timer(s
);
380 ret
=dtls1_send_client_key_exchange(s
);
381 if (ret
<= 0) goto end
;
382 /* EAY EAY EAY need to check for DH fix cert
384 /* For TLS, cert_req is set to 2, so a cert chain
385 * of nothing is sent, but no verify packet is sent */
386 if (s
->s3
->tmp
.cert_req
== 1)
388 s
->state
=SSL3_ST_CW_CERT_VRFY_A
;
392 s
->state
=SSL3_ST_CW_CHANGE_A
;
393 s
->s3
->change_cipher_spec
=0;
399 case SSL3_ST_CW_CERT_VRFY_A
:
400 case SSL3_ST_CW_CERT_VRFY_B
:
401 dtls1_start_timer(s
);
402 ret
=dtls1_send_client_verify(s
);
403 if (ret
<= 0) goto end
;
404 s
->state
=SSL3_ST_CW_CHANGE_A
;
406 s
->s3
->change_cipher_spec
=0;
409 case SSL3_ST_CW_CHANGE_A
:
410 case SSL3_ST_CW_CHANGE_B
:
411 dtls1_start_timer(s
);
412 ret
=dtls1_send_change_cipher_spec(s
,
413 SSL3_ST_CW_CHANGE_A
,SSL3_ST_CW_CHANGE_B
);
414 if (ret
<= 0) goto end
;
415 s
->state
=SSL3_ST_CW_FINISHED_A
;
418 s
->session
->cipher
=s
->s3
->tmp
.new_cipher
;
419 #ifdef OPENSSL_NO_COMP
420 s
->session
->compress_meth
=0;
422 if (s
->s3
->tmp
.new_compression
== NULL
)
423 s
->session
->compress_meth
=0;
425 s
->session
->compress_meth
=
426 s
->s3
->tmp
.new_compression
->id
;
428 if (!s
->method
->ssl3_enc
->setup_key_block(s
))
434 if (!s
->method
->ssl3_enc
->change_cipher_state(s
,
435 SSL3_CHANGE_CIPHER_CLIENT_WRITE
))
441 dtls1_reset_seq_numbers(s
, SSL3_CC_WRITE
);
444 case SSL3_ST_CW_FINISHED_A
:
445 case SSL3_ST_CW_FINISHED_B
:
446 dtls1_start_timer(s
);
447 ret
=dtls1_send_finished(s
,
448 SSL3_ST_CW_FINISHED_A
,SSL3_ST_CW_FINISHED_B
,
449 s
->method
->ssl3_enc
->client_finished_label
,
450 s
->method
->ssl3_enc
->client_finished_label_len
);
451 if (ret
<= 0) goto end
;
452 s
->state
=SSL3_ST_CW_FLUSH
;
455 s
->s3
->flags
&= ~SSL3_FLAGS_POP_BUFFER
;
458 s
->s3
->tmp
.next_state
=SSL_ST_OK
;
459 if (s
->s3
->flags
& SSL3_FLAGS_DELAY_CLIENT_FINISHED
)
462 s
->s3
->flags
|=SSL3_FLAGS_POP_BUFFER
;
463 s
->s3
->delay_buf_pop_ret
=0;
468 #ifndef OPENSSL_NO_TLSEXT
469 /* Allow NewSessionTicket if ticket expected */
470 if (s
->tlsext_ticket_expected
)
471 s
->s3
->tmp
.next_state
=SSL3_ST_CR_SESSION_TICKET_A
;
475 s
->s3
->tmp
.next_state
=SSL3_ST_CR_FINISHED_A
;
480 #ifndef OPENSSL_NO_TLSEXT
481 case SSL3_ST_CR_SESSION_TICKET_A
:
482 case SSL3_ST_CR_SESSION_TICKET_B
:
483 ret
=ssl3_get_new_session_ticket(s
);
484 if (ret
<= 0) goto end
;
485 s
->state
=SSL3_ST_CR_FINISHED_A
;
489 case SSL3_ST_CR_CERT_STATUS_A
:
490 case SSL3_ST_CR_CERT_STATUS_B
:
491 ret
=ssl3_get_cert_status(s
);
492 if (ret
<= 0) goto end
;
493 s
->state
=SSL3_ST_CR_KEY_EXCH_A
;
498 case SSL3_ST_CR_FINISHED_A
:
499 case SSL3_ST_CR_FINISHED_B
:
500 s
->d1
->change_cipher_spec_ok
= 1;
501 ret
=ssl3_get_finished(s
,SSL3_ST_CR_FINISHED_A
,
502 SSL3_ST_CR_FINISHED_B
);
503 if (ret
<= 0) goto end
;
507 s
->state
=SSL3_ST_CW_CHANGE_A
;
513 case SSL3_ST_CW_FLUSH
:
514 /* number of bytes to be flushed */
515 num1
=BIO_ctrl(s
->wbio
,BIO_CTRL_INFO
,0,NULL
);
518 s
->rwstate
=SSL_WRITING
;
519 num1
=BIO_flush(s
->wbio
);
520 if (num1
<= 0) { ret
= -1; goto end
; }
521 s
->rwstate
=SSL_NOTHING
;
524 s
->state
=s
->s3
->tmp
.next_state
;
528 /* clean a few things up */
529 ssl3_cleanup_key_block(s
);
532 if (s
->init_buf
!= NULL
)
534 BUF_MEM_free(s
->init_buf
);
539 /* If we are not 'joining' the last two packets,
540 * remove the buffering now */
541 if (!(s
->s3
->flags
& SSL3_FLAGS_POP_BUFFER
))
542 ssl_free_wbio_buffer(s
);
543 /* else do it later in ssl3_write */
548 ssl_update_cache(s
,SSL_SESS_CACHE_CLIENT
);
549 if (s
->hit
) s
->ctx
->stats
.sess_hit
++;
553 s
->handshake_func
=dtls1_connect
;
554 s
->ctx
->stats
.sess_connect_good
++;
556 if (cb
!= NULL
) cb(s
,SSL_CB_HANDSHAKE_DONE
,1);
558 /* done with handshaking */
559 s
->d1
->handshake_read_seq
= 0;
560 s
->d1
->next_handshake_write_seq
= 0;
565 SSLerr(SSL_F_DTLS1_CONNECT
,SSL_R_UNKNOWN_STATE
);
571 /* did we do anything */
572 if (!s
->s3
->tmp
.reuse_message
&& !skip
)
576 if ((ret
=BIO_flush(s
->wbio
)) <= 0)
580 if ((cb
!= NULL
) && (s
->state
!= state
))
584 cb(s
,SSL_CB_CONNECT_LOOP
,1);
595 cb(s
,SSL_CB_CONNECT_EXIT
,ret
);
599 int dtls1_client_hello(SSL
*s
)
604 unsigned long Time
,l
;
607 buf
=(unsigned char *)s
->init_buf
->data
;
608 if (s
->state
== SSL3_ST_CW_CLNT_HELLO_A
)
610 SSL_SESSION
*sess
= s
->session
;
611 if ((s
->session
== NULL
) ||
612 (s
->session
->ssl_version
!= s
->version
) ||
613 #ifdef OPENSSL_NO_TLSEXT
614 !sess
->session_id_length
||
616 (!sess
->session_id_length
&& !sess
->tlsext_tick
) ||
618 (s
->session
->not_resumable
))
620 if (!ssl_get_new_session(s
,0))
623 /* else use the pre-loaded session */
625 p
=s
->s3
->client_random
;
627 /* if client_random is initialized, reuse it, we are
628 * required to use same upon reply to HelloVerify */
629 for (i
=0;p
[i
]=='\0' && i
<sizeof(s
->s3
->client_random
);i
++) ;
630 if (i
==sizeof(s
->s3
->client_random
))
632 Time
=(unsigned long)time(NULL
); /* Time */
634 RAND_pseudo_bytes(p
,sizeof(s
->s3
->client_random
)-4);
637 /* Do the message type and length last */
638 d
=p
= &(buf
[DTLS1_HM_HEADER_LENGTH
]);
640 *(p
++)=s
->version
>>8;
641 *(p
++)=s
->version
&0xff;
642 s
->client_version
=s
->version
;
645 memcpy(p
,s
->s3
->client_random
,SSL3_RANDOM_SIZE
);
652 i
=s
->session
->session_id_length
;
656 if (i
> sizeof s
->session
->session_id
)
658 SSLerr(SSL_F_DTLS1_CLIENT_HELLO
, ERR_R_INTERNAL_ERROR
);
661 memcpy(p
,s
->session
->session_id
,i
);
666 if ( s
->d1
->cookie_len
> sizeof(s
->d1
->cookie
))
668 SSLerr(SSL_F_DTLS1_CLIENT_HELLO
, ERR_R_INTERNAL_ERROR
);
671 *(p
++) = s
->d1
->cookie_len
;
672 memcpy(p
, s
->d1
->cookie
, s
->d1
->cookie_len
);
673 p
+= s
->d1
->cookie_len
;
675 /* Ciphers supported */
676 i
=ssl_cipher_list_to_bytes(s
,SSL_get_ciphers(s
),&(p
[2]),0);
679 SSLerr(SSL_F_DTLS1_CLIENT_HELLO
,SSL_R_NO_CIPHERS_AVAILABLE
);
686 if (s
->ctx
->comp_methods
== NULL
)
689 j
=sk_SSL_COMP_num(s
->ctx
->comp_methods
);
693 comp
=sk_SSL_COMP_value(s
->ctx
->comp_methods
,i
);
696 *(p
++)=0; /* Add the NULL method */
698 #ifndef OPENSSL_NO_TLSEXT
699 if ((p
= ssl_add_clienthello_tlsext(s
, p
, buf
+SSL3_RT_MAX_PLAIN_LENGTH
)) == NULL
)
701 SSLerr(SSL_F_DTLS1_CLIENT_HELLO
,ERR_R_INTERNAL_ERROR
);
709 d
= dtls1_set_message_header(s
, d
, SSL3_MT_CLIENT_HELLO
, l
, 0, l
);
711 s
->state
=SSL3_ST_CW_CLNT_HELLO_B
;
712 /* number of bytes to write */
716 /* buffer the message to handle re-xmits */
717 dtls1_buffer_message(s
, 0);
720 /* SSL3_ST_CW_CLNT_HELLO_B */
721 return(dtls1_do_write(s
,SSL3_RT_HANDSHAKE
));
726 static int dtls1_get_hello_verify(SSL
*s
)
730 unsigned int cookie_len
;
732 n
=s
->method
->ssl_get_message(s
,
733 DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A
,
734 DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B
,
739 if (!ok
) return((int)n
);
741 if (s
->s3
->tmp
.message_type
!= DTLS1_MT_HELLO_VERIFY_REQUEST
)
743 s
->d1
->send_cookie
= 0;
744 s
->s3
->tmp
.reuse_message
=1;
748 data
= (unsigned char *)s
->init_msg
;
750 if ((data
[0] != (s
->version
>>8)) || (data
[1] != (s
->version
&0xff)))
752 SSLerr(SSL_F_DTLS1_GET_HELLO_VERIFY
,SSL_R_WRONG_SSL_VERSION
);
753 s
->version
=(s
->version
&0xff00)|data
[1];
754 al
= SSL_AD_PROTOCOL_VERSION
;
759 cookie_len
= *(data
++);
760 if ( cookie_len
> sizeof(s
->d1
->cookie
))
762 al
=SSL_AD_ILLEGAL_PARAMETER
;
766 memcpy(s
->d1
->cookie
, data
, cookie_len
);
767 s
->d1
->cookie_len
= cookie_len
;
769 s
->d1
->send_cookie
= 1;
773 ssl3_send_alert(s
, SSL3_AL_FATAL
, al
);
777 int dtls1_send_client_key_exchange(SSL
*s
)
782 #ifndef OPENSSL_NO_RSA
786 #ifndef OPENSSL_NO_KRB5
788 #endif /* OPENSSL_NO_KRB5 */
789 #ifndef OPENSSL_NO_ECDH
790 EC_KEY
*clnt_ecdh
= NULL
;
791 const EC_POINT
*srvr_ecpoint
= NULL
;
792 EVP_PKEY
*srvr_pub_pkey
= NULL
;
793 unsigned char *encodedPoint
= NULL
;
794 int encoded_pt_len
= 0;
795 BN_CTX
* bn_ctx
= NULL
;
798 if (s
->state
== SSL3_ST_CW_KEY_EXCH_A
)
800 d
=(unsigned char *)s
->init_buf
->data
;
801 p
= &(d
[DTLS1_HM_HEADER_LENGTH
]);
803 alg_k
=s
->s3
->tmp
.new_cipher
->algorithm_mkey
;
805 /* Fool emacs indentation */
807 #ifndef OPENSSL_NO_RSA
808 else if (alg_k
& SSL_kRSA
)
811 unsigned char tmp_buf
[SSL_MAX_MASTER_KEY_LENGTH
];
813 if (s
->session
->sess_cert
->peer_rsa_tmp
!= NULL
)
814 rsa
=s
->session
->sess_cert
->peer_rsa_tmp
;
817 pkey
=X509_get_pubkey(s
->session
->sess_cert
->peer_pkeys
[SSL_PKEY_RSA_ENC
].x509
);
818 if ((pkey
== NULL
) ||
819 (pkey
->type
!= EVP_PKEY_RSA
) ||
820 (pkey
->pkey
.rsa
== NULL
))
822 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_INTERNAL_ERROR
);
829 tmp_buf
[0]=s
->client_version
>>8;
830 tmp_buf
[1]=s
->client_version
&0xff;
831 if (RAND_bytes(&(tmp_buf
[2]),sizeof tmp_buf
-2) <= 0)
834 s
->session
->master_key_length
=sizeof tmp_buf
;
837 /* Fix buf for TLS and [incidentally] DTLS */
838 if (s
->version
> SSL3_VERSION
)
840 n
=RSA_public_encrypt(sizeof tmp_buf
,
841 tmp_buf
,p
,rsa
,RSA_PKCS1_PADDING
);
843 if (s
->options
& SSL_OP_PKCS1_CHECK_1
) p
[1]++;
844 if (s
->options
& SSL_OP_PKCS1_CHECK_2
) tmp_buf
[0]=0x70;
848 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,SSL_R_BAD_RSA_ENCRYPT
);
852 /* Fix buf for TLS and [incidentally] DTLS */
853 if (s
->version
> SSL3_VERSION
)
859 s
->session
->master_key_length
=
860 s
->method
->ssl3_enc
->generate_master_secret(s
,
861 s
->session
->master_key
,
862 tmp_buf
,sizeof tmp_buf
);
863 OPENSSL_cleanse(tmp_buf
,sizeof tmp_buf
);
866 #ifndef OPENSSL_NO_KRB5
867 else if (alg_k
& SSL_kKRB5
)
869 krb5_error_code krb5rc
;
870 KSSL_CTX
*kssl_ctx
= s
->kssl_ctx
;
871 /* krb5_data krb5_ap_req; */
872 krb5_data
*enc_ticket
;
873 krb5_data authenticator
, *authp
= NULL
;
874 EVP_CIPHER_CTX ciph_ctx
;
875 const EVP_CIPHER
*enc
= NULL
;
876 unsigned char iv
[EVP_MAX_IV_LENGTH
];
877 unsigned char tmp_buf
[SSL_MAX_MASTER_KEY_LENGTH
];
878 unsigned char epms
[SSL_MAX_MASTER_KEY_LENGTH
879 + EVP_MAX_IV_LENGTH
];
880 int padl
, outl
= sizeof(epms
);
882 EVP_CIPHER_CTX_init(&ciph_ctx
);
885 printf("ssl3_send_client_key_exchange(%lx & %lx)\n",
887 #endif /* KSSL_DEBUG */
891 if (KRB5SENDAUTH
) authp
= &authenticator
;
892 #endif /* KRB5SENDAUTH */
894 krb5rc
= kssl_cget_tkt(kssl_ctx
, &enc_ticket
, authp
,
896 enc
= kssl_map_enc(kssl_ctx
->enctype
);
901 printf("kssl_cget_tkt rtn %d\n", krb5rc
);
902 if (krb5rc
&& kssl_err
.text
)
903 printf("kssl_cget_tkt kssl_err=%s\n", kssl_err
.text
);
905 #endif /* KSSL_DEBUG */
909 ssl3_send_alert(s
,SSL3_AL_FATAL
,
910 SSL_AD_HANDSHAKE_FAILURE
);
911 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
916 /* 20010406 VRS - Earlier versions used KRB5 AP_REQ
917 ** in place of RFC 2712 KerberosWrapper, as in:
919 ** Send ticket (copy to *p, set n = length)
920 ** n = krb5_ap_req.length;
921 ** memcpy(p, krb5_ap_req.data, krb5_ap_req.length);
922 ** if (krb5_ap_req.data)
923 ** kssl_krb5_free_data_contents(NULL,&krb5_ap_req);
925 ** Now using real RFC 2712 KerberosWrapper
926 ** (Thanks to Simon Wilkinson <sxw@sxw.org.uk>)
927 ** Note: 2712 "opaque" types are here replaced
928 ** with a 2-byte length followed by the value.
930 ** KerberosWrapper= xx xx asn1ticket 0 0 xx xx encpms
931 ** Where "xx xx" = length bytes. Shown here with
932 ** optional authenticator omitted.
935 /* KerberosWrapper.Ticket */
936 s2n(enc_ticket
->length
,p
);
937 memcpy(p
, enc_ticket
->data
, enc_ticket
->length
);
938 p
+= enc_ticket
->length
;
939 n
= enc_ticket
->length
+ 2;
941 /* KerberosWrapper.Authenticator */
942 if (authp
&& authp
->length
)
944 s2n(authp
->length
,p
);
945 memcpy(p
, authp
->data
, authp
->length
);
947 n
+= authp
->length
+ 2;
955 s2n(0,p
);/* null authenticator length */
959 if (RAND_bytes(tmp_buf
,sizeof tmp_buf
) <= 0)
962 /* 20010420 VRS. Tried it this way; failed.
963 ** EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
964 ** EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
965 ** kssl_ctx->length);
966 ** EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
969 memset(iv
, 0, sizeof iv
); /* per RFC 1510 */
970 EVP_EncryptInit_ex(&ciph_ctx
,enc
, NULL
,
972 EVP_EncryptUpdate(&ciph_ctx
,epms
,&outl
,tmp_buf
,
974 EVP_EncryptFinal_ex(&ciph_ctx
,&(epms
[outl
]),&padl
);
976 if (outl
> (int)sizeof epms
)
978 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
, ERR_R_INTERNAL_ERROR
);
981 EVP_CIPHER_CTX_cleanup(&ciph_ctx
);
983 /* KerberosWrapper.EncryptedPreMasterSecret */
985 memcpy(p
, epms
, outl
);
989 s
->session
->master_key_length
=
990 s
->method
->ssl3_enc
->generate_master_secret(s
,
991 s
->session
->master_key
,
992 tmp_buf
, sizeof tmp_buf
);
994 OPENSSL_cleanse(tmp_buf
, sizeof tmp_buf
);
995 OPENSSL_cleanse(epms
, outl
);
998 #ifndef OPENSSL_NO_DH
999 else if (alg_k
& (SSL_kEDH
|SSL_kDHr
|SSL_kDHd
))
1001 DH
*dh_srvr
,*dh_clnt
;
1003 if (s
->session
->sess_cert
->peer_dh_tmp
!= NULL
)
1004 dh_srvr
=s
->session
->sess_cert
->peer_dh_tmp
;
1007 /* we get them from the cert */
1008 ssl3_send_alert(s
,SSL3_AL_FATAL
,SSL_AD_HANDSHAKE_FAILURE
);
1009 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,SSL_R_UNABLE_TO_FIND_DH_PARAMETERS
);
1013 /* generate a new random key */
1014 if ((dh_clnt
=DHparams_dup(dh_srvr
)) == NULL
)
1016 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_DH_LIB
);
1019 if (!DH_generate_key(dh_clnt
))
1021 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_DH_LIB
);
1025 /* use the 'p' output buffer for the DH key, but
1026 * make sure to clear it out afterwards */
1028 n
=DH_compute_key(p
,dh_srvr
->pub_key
,dh_clnt
);
1032 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_DH_LIB
);
1036 /* generate master key from the result */
1037 s
->session
->master_key_length
=
1038 s
->method
->ssl3_enc
->generate_master_secret(s
,
1039 s
->session
->master_key
,p
,n
);
1043 /* send off the data */
1044 n
=BN_num_bytes(dh_clnt
->pub_key
);
1046 BN_bn2bin(dh_clnt
->pub_key
,p
);
1051 /* perhaps clean things up a bit EAY EAY EAY EAY*/
1054 #ifndef OPENSSL_NO_ECDH
1055 else if (alg_k
& (SSL_kEECDH
|SSL_kECDHr
|SSL_kECDHe
))
1057 const EC_GROUP
*srvr_group
= NULL
;
1059 int ecdh_clnt_cert
= 0;
1062 /* Did we send out the client's
1063 * ECDH share for use in premaster
1064 * computation as part of client certificate?
1065 * If so, set ecdh_clnt_cert to 1.
1067 if ((alg_k
& (SSL_kECDHr
|SSL_kECDHe
)) && (s
->cert
!= NULL
))
1069 /* XXX: For now, we do not support client
1070 * authentication using ECDH certificates.
1071 * To add such support, one needs to add
1072 * code that checks for appropriate
1073 * conditions and sets ecdh_clnt_cert to 1.
1074 * For example, the cert have an ECC
1075 * key on the same curve as the server's
1076 * and the key should be authorized for
1079 * One also needs to add code in ssl3_connect
1080 * to skip sending the certificate verify
1083 * if ((s->cert->key->privatekey != NULL) &&
1084 * (s->cert->key->privatekey->type ==
1085 * EVP_PKEY_EC) && ...)
1086 * ecdh_clnt_cert = 1;
1090 if (s
->session
->sess_cert
->peer_ecdh_tmp
!= NULL
)
1092 tkey
= s
->session
->sess_cert
->peer_ecdh_tmp
;
1096 /* Get the Server Public Key from Cert */
1097 srvr_pub_pkey
= X509_get_pubkey(s
->session
-> \
1098 sess_cert
->peer_pkeys
[SSL_PKEY_ECC
].x509
);
1099 if ((srvr_pub_pkey
== NULL
) ||
1100 (srvr_pub_pkey
->type
!= EVP_PKEY_EC
) ||
1101 (srvr_pub_pkey
->pkey
.ec
== NULL
))
1103 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1104 ERR_R_INTERNAL_ERROR
);
1108 tkey
= srvr_pub_pkey
->pkey
.ec
;
1111 srvr_group
= EC_KEY_get0_group(tkey
);
1112 srvr_ecpoint
= EC_KEY_get0_public_key(tkey
);
1114 if ((srvr_group
== NULL
) || (srvr_ecpoint
== NULL
))
1116 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1117 ERR_R_INTERNAL_ERROR
);
1121 if ((clnt_ecdh
=EC_KEY_new()) == NULL
)
1123 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_MALLOC_FAILURE
);
1127 if (!EC_KEY_set_group(clnt_ecdh
, srvr_group
))
1129 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_EC_LIB
);
1134 /* Reuse key info from our certificate
1135 * We only need our private key to perform
1136 * the ECDH computation.
1138 const BIGNUM
*priv_key
;
1139 tkey
= s
->cert
->key
->privatekey
->pkey
.ec
;
1140 priv_key
= EC_KEY_get0_private_key(tkey
);
1141 if (priv_key
== NULL
)
1143 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_MALLOC_FAILURE
);
1146 if (!EC_KEY_set_private_key(clnt_ecdh
, priv_key
))
1148 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_EC_LIB
);
1154 /* Generate a new ECDH key pair */
1155 if (!(EC_KEY_generate_key(clnt_ecdh
)))
1157 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
, ERR_R_ECDH_LIB
);
1162 /* use the 'p' output buffer for the ECDH key, but
1163 * make sure to clear it out afterwards
1166 field_size
= EC_GROUP_get_degree(srvr_group
);
1167 if (field_size
<= 0)
1169 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1173 n
=ECDH_compute_key(p
, (field_size
+7)/8, srvr_ecpoint
, clnt_ecdh
, NULL
);
1176 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1181 /* generate master key from the result */
1182 s
->session
->master_key_length
= s
->method
->ssl3_enc \
1183 -> generate_master_secret(s
,
1184 s
->session
->master_key
,
1187 memset(p
, 0, n
); /* clean up */
1191 /* Send empty client key exch message */
1196 /* First check the size of encoding and
1197 * allocate memory accordingly.
1200 EC_POINT_point2oct(srvr_group
,
1201 EC_KEY_get0_public_key(clnt_ecdh
),
1202 POINT_CONVERSION_UNCOMPRESSED
,
1205 encodedPoint
= (unsigned char *)
1206 OPENSSL_malloc(encoded_pt_len
*
1207 sizeof(unsigned char));
1208 bn_ctx
= BN_CTX_new();
1209 if ((encodedPoint
== NULL
) ||
1212 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_MALLOC_FAILURE
);
1216 /* Encode the public key */
1217 n
= EC_POINT_point2oct(srvr_group
,
1218 EC_KEY_get0_public_key(clnt_ecdh
),
1219 POINT_CONVERSION_UNCOMPRESSED
,
1220 encodedPoint
, encoded_pt_len
, bn_ctx
);
1222 *p
= n
; /* length of encoded point */
1223 /* Encoded point will be copied here */
1225 /* copy the point */
1226 memcpy((unsigned char *)p
, encodedPoint
, n
);
1227 /* increment n to account for length field */
1231 /* Free allocated memory */
1232 BN_CTX_free(bn_ctx
);
1233 if (encodedPoint
!= NULL
) OPENSSL_free(encodedPoint
);
1234 if (clnt_ecdh
!= NULL
)
1235 EC_KEY_free(clnt_ecdh
);
1236 EVP_PKEY_free(srvr_pub_pkey
);
1238 #endif /* !OPENSSL_NO_ECDH */
1240 #ifndef OPENSSL_NO_PSK
1241 else if (alg_k
& SSL_kPSK
)
1243 char identity
[PSK_MAX_IDENTITY_LEN
];
1244 unsigned char *t
= NULL
;
1245 unsigned char psk_or_pre_ms
[PSK_MAX_PSK_LEN
*2+4];
1246 unsigned int pre_ms_len
= 0, psk_len
= 0;
1250 if (s
->psk_client_callback
== NULL
)
1252 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1253 SSL_R_PSK_NO_CLIENT_CB
);
1257 psk_len
= s
->psk_client_callback(s
, s
->ctx
->psk_identity_hint
,
1258 identity
, PSK_MAX_IDENTITY_LEN
,
1259 psk_or_pre_ms
, sizeof(psk_or_pre_ms
));
1260 if (psk_len
> PSK_MAX_PSK_LEN
)
1262 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1263 ERR_R_INTERNAL_ERROR
);
1266 else if (psk_len
== 0)
1268 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1269 SSL_R_PSK_IDENTITY_NOT_FOUND
);
1273 /* create PSK pre_master_secret */
1274 pre_ms_len
= 2+psk_len
+2+psk_len
;
1276 memmove(psk_or_pre_ms
+psk_len
+4, psk_or_pre_ms
, psk_len
);
1278 memset(t
, 0, psk_len
);
1282 if (s
->session
->psk_identity_hint
!= NULL
)
1283 OPENSSL_free(s
->session
->psk_identity_hint
);
1284 s
->session
->psk_identity_hint
= BUF_strdup(s
->ctx
->psk_identity_hint
);
1285 if (s
->ctx
->psk_identity_hint
!= NULL
&&
1286 s
->session
->psk_identity_hint
== NULL
)
1288 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1289 ERR_R_MALLOC_FAILURE
);
1293 if (s
->session
->psk_identity
!= NULL
)
1294 OPENSSL_free(s
->session
->psk_identity
);
1295 s
->session
->psk_identity
= BUF_strdup(identity
);
1296 if (s
->session
->psk_identity
== NULL
)
1298 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,
1299 ERR_R_MALLOC_FAILURE
);
1303 s
->session
->master_key_length
=
1304 s
->method
->ssl3_enc
->generate_master_secret(s
,
1305 s
->session
->master_key
,
1306 psk_or_pre_ms
, pre_ms_len
);
1307 n
= strlen(identity
);
1309 memcpy(p
, identity
, n
);
1313 OPENSSL_cleanse(identity
, PSK_MAX_IDENTITY_LEN
);
1314 OPENSSL_cleanse(psk_or_pre_ms
, sizeof(psk_or_pre_ms
));
1317 ssl3_send_alert(s
, SSL3_AL_FATAL
, SSL_AD_HANDSHAKE_FAILURE
);
1324 ssl3_send_alert(s
,SSL3_AL_FATAL
,SSL_AD_HANDSHAKE_FAILURE
);
1325 SSLerr(SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE
,ERR_R_INTERNAL_ERROR
);
1329 d
= dtls1_set_message_header(s
, d
,
1330 SSL3_MT_CLIENT_KEY_EXCHANGE
, n
, 0, n
);
1332 *(d++)=SSL3_MT_CLIENT_KEY_EXCHANGE;
1334 l2n(s->d1->handshake_write_seq,d);
1335 s->d1->handshake_write_seq++;
1338 s
->state
=SSL3_ST_CW_KEY_EXCH_B
;
1339 /* number of bytes to write */
1340 s
->init_num
=n
+DTLS1_HM_HEADER_LENGTH
;
1343 /* buffer the message to handle re-xmits */
1344 dtls1_buffer_message(s
, 0);
1347 /* SSL3_ST_CW_KEY_EXCH_B */
1348 return(dtls1_do_write(s
,SSL3_RT_HANDSHAKE
));
1350 #ifndef OPENSSL_NO_ECDH
1351 BN_CTX_free(bn_ctx
);
1352 if (encodedPoint
!= NULL
) OPENSSL_free(encodedPoint
);
1353 if (clnt_ecdh
!= NULL
)
1354 EC_KEY_free(clnt_ecdh
);
1355 EVP_PKEY_free(srvr_pub_pkey
);
1360 int dtls1_send_client_verify(SSL
*s
)
1362 unsigned char *p
,*d
;
1363 unsigned char data
[MD5_DIGEST_LENGTH
+SHA_DIGEST_LENGTH
];
1365 #ifndef OPENSSL_NO_RSA
1369 #if !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_ECDSA)
1373 if (s
->state
== SSL3_ST_CW_CERT_VRFY_A
)
1375 d
=(unsigned char *)s
->init_buf
->data
;
1376 p
= &(d
[DTLS1_HM_HEADER_LENGTH
]);
1377 pkey
=s
->cert
->key
->privatekey
;
1379 s
->method
->ssl3_enc
->cert_verify_mac(s
,
1381 &(data
[MD5_DIGEST_LENGTH
]));
1383 #ifndef OPENSSL_NO_RSA
1384 if (pkey
->type
== EVP_PKEY_RSA
)
1386 s
->method
->ssl3_enc
->cert_verify_mac(s
,
1389 if (RSA_sign(NID_md5_sha1
, data
,
1390 MD5_DIGEST_LENGTH
+SHA_DIGEST_LENGTH
,
1391 &(p
[2]), &u
, pkey
->pkey
.rsa
) <= 0 )
1393 SSLerr(SSL_F_DTLS1_SEND_CLIENT_VERIFY
,ERR_R_RSA_LIB
);
1401 #ifndef OPENSSL_NO_DSA
1402 if (pkey
->type
== EVP_PKEY_DSA
)
1404 if (!DSA_sign(pkey
->save_type
,
1405 &(data
[MD5_DIGEST_LENGTH
]),
1406 SHA_DIGEST_LENGTH
,&(p
[2]),
1407 (unsigned int *)&j
,pkey
->pkey
.dsa
))
1409 SSLerr(SSL_F_DTLS1_SEND_CLIENT_VERIFY
,ERR_R_DSA_LIB
);
1417 #ifndef OPENSSL_NO_ECDSA
1418 if (pkey
->type
== EVP_PKEY_EC
)
1420 if (!ECDSA_sign(pkey
->save_type
,
1421 &(data
[MD5_DIGEST_LENGTH
]),
1422 SHA_DIGEST_LENGTH
,&(p
[2]),
1423 (unsigned int *)&j
,pkey
->pkey
.ec
))
1425 SSLerr(SSL_F_DTLS1_SEND_CLIENT_VERIFY
,
1435 SSLerr(SSL_F_DTLS1_SEND_CLIENT_VERIFY
,ERR_R_INTERNAL_ERROR
);
1439 d
= dtls1_set_message_header(s
, d
,
1440 SSL3_MT_CERTIFICATE_VERIFY
, n
, 0, n
) ;
1442 s
->init_num
=(int)n
+DTLS1_HM_HEADER_LENGTH
;
1445 /* buffer the message to handle re-xmits */
1446 dtls1_buffer_message(s
, 0);
1448 s
->state
= SSL3_ST_CW_CERT_VRFY_B
;
1451 /* s->state = SSL3_ST_CW_CERT_VRFY_B */
1452 return(dtls1_do_write(s
,SSL3_RT_HANDSHAKE
));
1457 int dtls1_send_client_certificate(SSL
*s
)
1460 EVP_PKEY
*pkey
=NULL
;
1464 if (s
->state
== SSL3_ST_CW_CERT_A
)
1466 if ((s
->cert
== NULL
) ||
1467 (s
->cert
->key
->x509
== NULL
) ||
1468 (s
->cert
->key
->privatekey
== NULL
))
1469 s
->state
=SSL3_ST_CW_CERT_B
;
1471 s
->state
=SSL3_ST_CW_CERT_C
;
1474 /* We need to get a client cert */
1475 if (s
->state
== SSL3_ST_CW_CERT_B
)
1477 /* If we get an error, we need to
1478 * ssl->rwstate=SSL_X509_LOOKUP; return(-1);
1479 * We then get retied later */
1481 i
= ssl_do_client_cert_cb(s
, &x509
, &pkey
);
1484 s
->rwstate
=SSL_X509_LOOKUP
;
1487 s
->rwstate
=SSL_NOTHING
;
1488 if ((i
== 1) && (pkey
!= NULL
) && (x509
!= NULL
))
1490 s
->state
=SSL3_ST_CW_CERT_B
;
1491 if ( !SSL_use_certificate(s
,x509
) ||
1492 !SSL_use_PrivateKey(s
,pkey
))
1498 SSLerr(SSL_F_DTLS1_SEND_CLIENT_CERTIFICATE
,SSL_R_BAD_DATA_RETURNED_BY_CALLBACK
);
1501 if (x509
!= NULL
) X509_free(x509
);
1502 if (pkey
!= NULL
) EVP_PKEY_free(pkey
);
1505 if (s
->version
== SSL3_VERSION
)
1507 s
->s3
->tmp
.cert_req
=0;
1508 ssl3_send_alert(s
,SSL3_AL_WARNING
,SSL_AD_NO_CERTIFICATE
);
1513 s
->s3
->tmp
.cert_req
=2;
1517 /* Ok, we have a cert */
1518 s
->state
=SSL3_ST_CW_CERT_C
;
1521 if (s
->state
== SSL3_ST_CW_CERT_C
)
1523 s
->state
=SSL3_ST_CW_CERT_D
;
1524 l
=dtls1_output_cert_chain(s
,
1525 (s
->s3
->tmp
.cert_req
== 2)?NULL
:s
->cert
->key
->x509
);
1529 /* set header called by dtls1_output_cert_chain() */
1531 /* buffer the message to handle re-xmits */
1532 dtls1_buffer_message(s
, 0);
1534 /* SSL3_ST_CW_CERT_D */
1535 return(dtls1_do_write(s
,SSL3_RT_HANDSHAKE
));