First public contribution.
3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
6 /* ====================================================================
7 * Copyright (c) 1999-2005 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.]
116 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
120 #include "ssl_locl.h"
121 #include <openssl/buffer.h>
122 #include <openssl/rand.h>
123 #include <openssl/objects.h>
124 #include <openssl/evp.h>
125 #include <openssl/x509.h>
126 #include <openssl/md5.h>
127 #ifndef OPENSSL_NO_DH
128 #include <openssl/dh.h>
131 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
132 #include "libssl_wsd.h"
137 GET_STATIC_VAR_FROM_TLS(DTLSv1_server_method_data,d1_srvr,SSL_METHOD)
139 #define DTLSv1_server_method_data (*GET_WSD_VAR_NAME(DTLSv1_server_method_data,d1_srvr,s)())
143 static SSL_METHOD *dtls1_get_server_method(int ver);
144 static int dtls1_send_hello_verify_request(SSL *s);
146 static SSL_METHOD *dtls1_get_server_method(int ver)
148 if (ver == DTLS1_VERSION)
149 return(DTLSv1_server_method());
154 EXPORT_C IMPLEMENT_dtls1_meth_func(DTLSv1_server_method,
156 ssl_undefined_function,
157 dtls1_get_server_method)
159 int dtls1_accept(SSL *s)
162 unsigned long l,Time=(unsigned long)time(NULL);
163 void (*cb)(const SSL *ssl,int type,int val)=NULL;
166 int new_state,state,skip=0;
168 RAND_add(&Time,sizeof(Time),0);
172 if (s->info_callback != NULL)
174 else if (s->ctx->info_callback != NULL)
175 cb=s->ctx->info_callback;
177 /* init things to blank */
179 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
183 SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
193 case SSL_ST_RENEGOTIATE:
195 /* s->state=SSL_ST_ACCEPT; */
199 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
200 case SSL_ST_OK|SSL_ST_ACCEPT:
203 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
205 if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00))
207 SSLerr(SSL_F_DTLS1_ACCEPT, ERR_R_INTERNAL_ERROR);
210 s->type=SSL_ST_ACCEPT;
212 if (s->init_buf == NULL)
214 if ((buf=BUF_MEM_new()) == NULL)
219 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
227 if (!ssl3_setup_buffers(s))
235 if (s->state != SSL_ST_RENEGOTIATE)
237 /* Ok, we now need to push on a buffering BIO so that
238 * the output is sent in a way that TCP likes :-)
240 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
242 ssl3_init_finished_mac(s);
243 s->state=SSL3_ST_SR_CLNT_HELLO_A;
244 s->ctx->stats.sess_accept++;
248 /* s->state == SSL_ST_RENEGOTIATE,
249 * we will just send a HelloRequest */
250 s->ctx->stats.sess_accept_renegotiate++;
251 s->state=SSL3_ST_SW_HELLO_REQ_A;
254 if ( (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
255 s->d1->send_cookie = 1;
257 s->d1->send_cookie = 0;
261 case SSL3_ST_SW_HELLO_REQ_A:
262 case SSL3_ST_SW_HELLO_REQ_B:
265 ret=dtls1_send_hello_request(s);
266 if (ret <= 0) goto end;
267 s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
268 s->state=SSL3_ST_SW_FLUSH;
271 ssl3_init_finished_mac(s);
274 case SSL3_ST_SW_HELLO_REQ_C:
278 case SSL3_ST_SR_CLNT_HELLO_A:
279 case SSL3_ST_SR_CLNT_HELLO_B:
280 case SSL3_ST_SR_CLNT_HELLO_C:
283 ret=ssl3_get_client_hello(s);
284 if (ret <= 0) goto end;
287 if ( s->d1->send_cookie)
288 s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A;
290 s->state = SSL3_ST_SW_SRVR_HELLO_A;
295 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A:
296 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B:
298 ret = dtls1_send_hello_verify_request(s);
299 if ( ret <= 0) goto end;
300 s->d1->send_cookie = 0;
301 s->state=SSL3_ST_SW_FLUSH;
302 s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
304 /* HelloVerifyRequests resets Finished MAC */
305 if (s->client_version != DTLS1_BAD_VER)
306 ssl3_init_finished_mac(s);
309 case SSL3_ST_SW_SRVR_HELLO_A:
310 case SSL3_ST_SW_SRVR_HELLO_B:
311 ret=dtls1_send_server_hello(s);
312 if (ret <= 0) goto end;
315 s->state=SSL3_ST_SW_CHANGE_A;
317 s->state=SSL3_ST_SW_CERT_A;
321 case SSL3_ST_SW_CERT_A:
322 case SSL3_ST_SW_CERT_B:
323 /* Check if it is anon DH */
324 if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
326 ret=dtls1_send_server_certificate(s);
327 if (ret <= 0) goto end;
331 s->state=SSL3_ST_SW_KEY_EXCH_A;
335 case SSL3_ST_SW_KEY_EXCH_A:
336 case SSL3_ST_SW_KEY_EXCH_B:
337 l=s->s3->tmp.new_cipher->algorithms;
339 /* clear this, it may get reset by
340 * send_server_key_exchange */
341 if ((s->options & SSL_OP_EPHEMERAL_RSA)
342 #ifndef OPENSSL_NO_KRB5
344 #endif /* OPENSSL_NO_KRB5 */
346 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
347 * even when forbidden by protocol specs
348 * (handshake may fail as clients are not required to
349 * be able to handle this) */
350 s->s3->tmp.use_rsa_tmp=1;
352 s->s3->tmp.use_rsa_tmp=0;
354 /* only send if a DH key exchange, fortezza or
355 * RSA but we have a sign only certificate */
356 if (s->s3->tmp.use_rsa_tmp
357 || (l & (SSL_DH|SSL_kFZA))
359 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
360 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
361 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
367 ret=dtls1_send_server_key_exchange(s);
368 if (ret <= 0) goto end;
373 s->state=SSL3_ST_SW_CERT_REQ_A;
377 case SSL3_ST_SW_CERT_REQ_A:
378 case SSL3_ST_SW_CERT_REQ_B:
379 if (/* don't request cert unless asked for it: */
380 !(s->verify_mode & SSL_VERIFY_PEER) ||
381 /* if SSL_VERIFY_CLIENT_ONCE is set,
382 * don't request cert during re-negotiation: */
383 ((s->session->peer != NULL) &&
384 (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
385 /* never request cert in anonymous ciphersuites
386 * (see section "Certificate request" in SSL 3 drafts
387 * and in RFC 2246): */
388 ((s->s3->tmp.new_cipher->algorithms & SSL_aNULL) &&
389 /* ... except when the application insists on verification
390 * (against the specs, but s3_clnt.c accepts this for SSL 3) */
391 !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
392 /* never request cert in Kerberos ciphersuites */
393 (s->s3->tmp.new_cipher->algorithms & SSL_aKRB5))
395 /* no cert request */
397 s->s3->tmp.cert_request=0;
398 s->state=SSL3_ST_SW_SRVR_DONE_A;
402 s->s3->tmp.cert_request=1;
403 ret=dtls1_send_certificate_request(s);
404 if (ret <= 0) goto end;
405 #ifndef NETSCAPE_HANG_BUG
406 s->state=SSL3_ST_SW_SRVR_DONE_A;
408 s->state=SSL3_ST_SW_FLUSH;
409 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
415 case SSL3_ST_SW_SRVR_DONE_A:
416 case SSL3_ST_SW_SRVR_DONE_B:
417 ret=dtls1_send_server_done(s);
418 if (ret <= 0) goto end;
419 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
420 s->state=SSL3_ST_SW_FLUSH;
424 case SSL3_ST_SW_FLUSH:
425 /* number of bytes to be flushed */
426 num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL);
429 s->rwstate=SSL_WRITING;
430 num1=BIO_flush(s->wbio);
431 if (num1 <= 0) { ret= -1; goto end; }
432 s->rwstate=SSL_NOTHING;
435 s->state=s->s3->tmp.next_state;
438 case SSL3_ST_SR_CERT_A:
439 case SSL3_ST_SR_CERT_B:
440 /* Check for second client hello (MS SGC) */
441 ret = ssl3_check_client_hello(s);
445 s->state = SSL3_ST_SR_CLNT_HELLO_C;
447 /* could be sent for a DH cert, even if we
448 * have not asked for it :-) */
449 ret=ssl3_get_client_certificate(s);
450 if (ret <= 0) goto end;
452 s->state=SSL3_ST_SR_KEY_EXCH_A;
456 case SSL3_ST_SR_KEY_EXCH_A:
457 case SSL3_ST_SR_KEY_EXCH_B:
458 ret=ssl3_get_client_key_exchange(s);
459 if (ret <= 0) goto end;
460 s->state=SSL3_ST_SR_CERT_VRFY_A;
463 /* We need to get hashes here so if there is
464 * a client cert, it can be verified */
465 s->method->ssl3_enc->cert_verify_mac(s,
466 &(s->s3->finish_dgst1),
467 &(s->s3->tmp.cert_verify_md[0]));
468 s->method->ssl3_enc->cert_verify_mac(s,
469 &(s->s3->finish_dgst2),
470 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]));
474 case SSL3_ST_SR_CERT_VRFY_A:
475 case SSL3_ST_SR_CERT_VRFY_B:
477 /* we should decide if we expected this one */
478 ret=ssl3_get_cert_verify(s);
479 if (ret <= 0) goto end;
481 s->state=SSL3_ST_SR_FINISHED_A;
485 case SSL3_ST_SR_FINISHED_A:
486 case SSL3_ST_SR_FINISHED_B:
487 ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
488 SSL3_ST_SR_FINISHED_B);
489 if (ret <= 0) goto end;
493 s->state=SSL3_ST_SW_CHANGE_A;
497 case SSL3_ST_SW_CHANGE_A:
498 case SSL3_ST_SW_CHANGE_B:
500 s->session->cipher=s->s3->tmp.new_cipher;
501 if (!s->method->ssl3_enc->setup_key_block(s))
502 { ret= -1; goto end; }
504 ret=dtls1_send_change_cipher_spec(s,
505 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
507 if (ret <= 0) goto end;
508 s->state=SSL3_ST_SW_FINISHED_A;
511 if (!s->method->ssl3_enc->change_cipher_state(s,
512 SSL3_CHANGE_CIPHER_SERVER_WRITE))
518 dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
521 case SSL3_ST_SW_FINISHED_A:
522 case SSL3_ST_SW_FINISHED_B:
523 ret=dtls1_send_finished(s,
524 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
525 s->method->ssl3_enc->server_finished_label,
526 s->method->ssl3_enc->server_finished_label_len);
527 if (ret <= 0) goto end;
528 s->state=SSL3_ST_SW_FLUSH;
530 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
532 s->s3->tmp.next_state=SSL_ST_OK;
537 /* clean a few things up */
538 ssl3_cleanup_key_block(s);
541 BUF_MEM_free(s->init_buf);
545 /* remove buffering on output */
546 ssl_free_wbio_buffer(s);
550 if (s->new_session == 2) /* skipped if we just sent a HelloRequest */
552 /* actually not necessarily a 'new' session unless
553 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */
557 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
559 s->ctx->stats.sess_accept_good++;
561 s->handshake_func=dtls1_accept;
563 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
568 /* done handshaking, next message is client hello */
569 s->d1->handshake_read_seq = 0;
570 /* next message is server hello */
571 s->d1->handshake_write_seq = 0;
576 SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_UNKNOWN_STATE);
582 if (!s->s3->tmp.reuse_message && !skip)
586 if ((ret=BIO_flush(s->wbio)) <= 0)
591 if ((cb != NULL) && (s->state != state))
595 cb(s,SSL_CB_ACCEPT_LOOP,1);
602 /* BIO_flush(s->wbio); */
606 cb(s,SSL_CB_ACCEPT_EXIT,ret);
610 int dtls1_send_hello_request(SSL *s)
614 if (s->state == SSL3_ST_SW_HELLO_REQ_A)
616 p=(unsigned char *)s->init_buf->data;
617 p = dtls1_set_message_header(s, p, SSL3_MT_HELLO_REQUEST, 0, 0, 0);
619 s->state=SSL3_ST_SW_HELLO_REQ_B;
620 /* number of bytes to write */
621 s->init_num=DTLS1_HM_HEADER_LENGTH;
624 /* no need to buffer this message, since there are no retransmit
628 /* SSL3_ST_SW_HELLO_REQ_B */
629 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
632 int dtls1_send_hello_verify_request(SSL *s)
634 unsigned int msg_len;
635 unsigned char *msg, *buf, *p;
637 if (s->state == DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A)
639 buf = (unsigned char *)s->init_buf->data;
641 msg = p = &(buf[DTLS1_HM_HEADER_LENGTH]);
642 if (s->client_version == DTLS1_BAD_VER)
643 *(p++) = DTLS1_BAD_VER>>8,
644 *(p++) = DTLS1_BAD_VER&0xff;
646 *(p++) = s->version >> 8,
647 *(p++) = s->version & 0xFF;
649 if (s->ctx->app_gen_cookie_cb != NULL &&
650 s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
651 &(s->d1->cookie_len)) == 0)
653 SSLerr(SSL_F_DTLS1_SEND_HELLO_VERIFY_REQUEST,ERR_R_INTERNAL_ERROR);
656 /* else the cookie is assumed to have
657 * been initialized by the application */
659 *(p++) = (unsigned char) s->d1->cookie_len;
660 memcpy(p, s->d1->cookie, s->d1->cookie_len);
661 p += s->d1->cookie_len;
664 dtls1_set_message_header(s, buf,
665 DTLS1_MT_HELLO_VERIFY_REQUEST, msg_len, 0, msg_len);
667 s->state=DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B;
668 /* number of bytes to write */
672 /* buffer the message to handle re-xmits */
673 dtls1_buffer_message(s, 0);
676 /* s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B */
677 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
680 int dtls1_send_server_hello(SSL *s)
686 unsigned long l,Time;
688 if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
690 buf=(unsigned char *)s->init_buf->data;
691 p=s->s3->server_random;
692 Time=(unsigned long)time(NULL); /* Time */
694 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
695 /* Do the message type and length last */
696 d=p= &(buf[DTLS1_HM_HEADER_LENGTH]);
698 if (s->client_version == DTLS1_BAD_VER)
699 *(p++)=DTLS1_BAD_VER>>8,
700 *(p++)=DTLS1_BAD_VER&0xff;
702 *(p++)=s->version>>8,
703 *(p++)=s->version&0xff;
706 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
709 /* now in theory we have 3 options to sending back the
710 * session id. If it is a re-use, we send back the
711 * old session-id, if it is a new session, we send
712 * back the new session-id or we send back a 0 length
713 * session-id if we want it to be single use.
714 * Currently I will not implement the '0' length session-id
715 * 12-Jan-98 - I'll now support the '0' length stuff.
717 if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER))
718 s->session->session_id_length=0;
720 sl=s->session->session_id_length;
721 if (sl > sizeof s->session->session_id)
723 SSLerr(SSL_F_DTLS1_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
727 memcpy(p,s->session->session_id,sl);
731 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
734 /* put the compression method */
735 #ifdef OPENSSL_NO_COMP
738 if (s->s3->tmp.new_compression == NULL)
741 *(p++)=s->s3->tmp.new_compression->id;
748 d = dtls1_set_message_header(s, d, SSL3_MT_SERVER_HELLO, l, 0, l);
750 s->state=SSL3_ST_CW_CLNT_HELLO_B;
751 /* number of bytes to write */
755 /* buffer the message to handle re-xmits */
756 dtls1_buffer_message(s, 0);
759 /* SSL3_ST_CW_CLNT_HELLO_B */
760 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
763 int dtls1_send_server_done(SSL *s)
767 if (s->state == SSL3_ST_SW_SRVR_DONE_A)
769 p=(unsigned char *)s->init_buf->data;
772 p = dtls1_set_message_header(s, p, SSL3_MT_SERVER_DONE, 0, 0, 0);
774 s->state=SSL3_ST_SW_SRVR_DONE_B;
775 /* number of bytes to write */
776 s->init_num=DTLS1_HM_HEADER_LENGTH;
779 /* buffer the message to handle re-xmits */
780 dtls1_buffer_message(s, 0);
783 /* SSL3_ST_CW_CLNT_HELLO_B */
784 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
787 int dtls1_send_server_key_exchange(SSL *s)
789 #ifndef OPENSSL_NO_RSA
793 unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
796 #ifndef OPENSSL_NO_DH
810 EVP_MD_CTX_init(&md_ctx);
811 if (s->state == SSL3_ST_SW_KEY_EXCH_A)
813 type=s->s3->tmp.new_cipher->algorithms & SSL_MKEY_MASK;
818 r[0]=r[1]=r[2]=r[3]=NULL;
820 #ifndef OPENSSL_NO_RSA
824 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
826 rsa=s->cert->rsa_tmp_cb(s,
827 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
828 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
831 al=SSL_AD_HANDSHAKE_FAILURE;
832 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
840 al=SSL_AD_HANDSHAKE_FAILURE;
841 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
846 s->s3->tmp.use_rsa_tmp=1;
850 #ifndef OPENSSL_NO_DH
854 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
855 dhp=s->cert->dh_tmp_cb(s,
856 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
857 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
860 al=SSL_AD_HANDSHAKE_FAILURE;
861 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
865 if (s->s3->tmp.dh != NULL)
868 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
872 if ((dh=DHparams_dup(dhp)) == NULL)
874 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
879 if ((dhp->pub_key == NULL ||
880 dhp->priv_key == NULL ||
881 (s->options & SSL_OP_SINGLE_DH_USE)))
883 if(!DH_generate_key(dh))
885 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,
892 dh->pub_key=BN_dup(dhp->pub_key);
893 dh->priv_key=BN_dup(dhp->priv_key);
894 if ((dh->pub_key == NULL) ||
895 (dh->priv_key == NULL))
897 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
908 al=SSL_AD_HANDSHAKE_FAILURE;
909 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
912 for (i=0; r[i] != NULL; i++)
914 nr[i]=BN_num_bytes(r[i]);
918 if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
920 if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher))
923 al=SSL_AD_DECODE_ERROR;
926 kn=EVP_PKEY_size(pkey);
934 if (!BUF_MEM_grow_clean(buf,n+DTLS1_HM_HEADER_LENGTH+kn))
936 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
939 d=(unsigned char *)s->init_buf->data;
940 p= &(d[DTLS1_HM_HEADER_LENGTH]);
942 for (i=0; r[i] != NULL; i++)
952 /* n is the length of the params, they start at
953 * &(d[DTLS1_HM_HEADER_LENGTH]) and p points to the space
955 #ifndef OPENSSL_NO_RSA
956 if (pkey->type == EVP_PKEY_RSA)
960 for (num=2; num > 0; num--)
962 EVP_DigestInit_ex(&md_ctx,(num == 2)
963 ?s->ctx->md5:s->ctx->sha1, NULL);
964 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
965 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
966 EVP_DigestUpdate(&md_ctx,&(d[DTLS1_HM_HEADER_LENGTH]),n);
967 EVP_DigestFinal_ex(&md_ctx,q,
972 if (RSA_sign(NID_md5_sha1, md_buf, j,
973 &(p[2]), &u, pkey->pkey.rsa) <= 0)
975 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
983 #if !defined(OPENSSL_NO_DSA)
984 if (pkey->type == EVP_PKEY_DSA)
987 EVP_SignInit_ex(&md_ctx,EVP_dss1(), NULL);
988 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
989 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
990 EVP_SignUpdate(&md_ctx,&(d[DTLS1_HM_HEADER_LENGTH]),n);
991 if (!EVP_SignFinal(&md_ctx,&(p[2]),
992 (unsigned int *)&i,pkey))
994 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_DSA);
1003 /* Is this error check actually needed? */
1004 al=SSL_AD_HANDSHAKE_FAILURE;
1005 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
1010 d = dtls1_set_message_header(s, d,
1011 SSL3_MT_SERVER_KEY_EXCHANGE, n, 0, n);
1013 /* we should now have things packed up, so lets send
1015 s->init_num=n+DTLS1_HM_HEADER_LENGTH;
1018 /* buffer the message to handle re-xmits */
1019 dtls1_buffer_message(s, 0);
1022 s->state = SSL3_ST_SW_KEY_EXCH_B;
1023 EVP_MD_CTX_cleanup(&md_ctx);
1024 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1026 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1028 EVP_MD_CTX_cleanup(&md_ctx);
1032 int dtls1_send_certificate_request(SSL *s)
1034 unsigned char *p,*d;
1036 STACK_OF(X509_NAME) *sk=NULL;
1039 unsigned int msg_len;
1041 if (s->state == SSL3_ST_SW_CERT_REQ_A)
1045 d=p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH]);
1047 /* get the list of acceptable cert types */
1049 n=ssl3_get_req_cert_type(s,p);
1058 sk=SSL_get_client_CA_list(s);
1062 for (i=0; i<sk_X509_NAME_num(sk); i++)
1064 name=sk_X509_NAME_value(sk,i);
1065 j=i2d_X509_NAME(name,NULL);
1066 if (!BUF_MEM_grow_clean(buf,DTLS1_HM_HEADER_LENGTH+n+j+2))
1068 SSLerr(SSL_F_DTLS1_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
1071 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH+n]);
1072 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
1075 i2d_X509_NAME(name,&p);
1082 i2d_X509_NAME(name,&p);
1083 j-=2; s2n(j,d); j+=2;
1089 /* else no CA names */
1090 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH+off]);
1093 d=(unsigned char *)buf->data;
1094 *(d++)=SSL3_MT_CERTIFICATE_REQUEST;
1096 s2n(s->d1->handshake_write_seq,d);
1097 s->d1->handshake_write_seq++;
1099 /* we should now have things packed up, so lets send
1102 s->init_num=n+DTLS1_HM_HEADER_LENGTH;
1104 #ifdef NETSCAPE_HANG_BUG
1105 /* XXX: what to do about this? */
1106 p=(unsigned char *)s->init_buf->data + s->init_num;
1109 *(p++)=SSL3_MT_SERVER_DONE;
1116 /* XDTLS: set message header ? */
1117 msg_len = s->init_num - DTLS1_HM_HEADER_LENGTH;
1118 dtls1_set_message_header(s, (void *)s->init_buf->data,
1119 SSL3_MT_CERTIFICATE_REQUEST, msg_len, 0, msg_len);
1121 /* buffer the message to handle re-xmits */
1122 dtls1_buffer_message(s, 0);
1124 s->state = SSL3_ST_SW_CERT_REQ_B;
1127 /* SSL3_ST_SW_CERT_REQ_B */
1128 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1133 int dtls1_send_server_certificate(SSL *s)
1138 if (s->state == SSL3_ST_SW_CERT_A)
1140 x=ssl_get_server_send_cert(s);
1142 /* VRS: allow null cert if auth == KRB5 */
1143 (s->s3->tmp.new_cipher->algorithms
1144 & (SSL_MKEY_MASK|SSL_AUTH_MASK))
1145 != (SSL_aKRB5|SSL_kKRB5))
1147 SSLerr(SSL_F_DTLS1_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
1151 l=dtls1_output_cert_chain(s,x);
1152 s->state=SSL3_ST_SW_CERT_B;
1156 /* buffer the message to handle re-xmits */
1157 dtls1_buffer_message(s, 0);
1160 /* SSL3_ST_SW_CERT_B */
1161 return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));