PR: 2120
[openssl.git] / ssl / d1_srvr.c
1 /* ssl/d1_srvr.c */
2 /* 
3  * DTLS implementation written by Nagendra Modadugu
4  * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.  
5  */
6 /* ====================================================================
7  * Copyright (c) 1999-2007 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer. 
15  *
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
19  *    distribution.
20  *
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/)"
25  *
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.
30  *
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.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
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  * ====================================================================
53  *
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).
57  *
58  */
59 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
60  * All rights reserved.
61  *
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.
65  * 
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).
72  * 
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.
79  * 
80  * Redistribution and use in source and binary forms, with or without
81  * modification, are permitted provided that the following conditions
82  * are met:
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)"
97  * 
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
108  * SUCH DAMAGE.
109  * 
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.]
114  */
115
116 #include <stdio.h>
117 #include "ssl_locl.h"
118 #include <openssl/buffer.h>
119 #include <openssl/rand.h>
120 #include <openssl/objects.h>
121 #include <openssl/evp.h>
122 #include <openssl/x509.h>
123 #include <openssl/md5.h>
124 #include <openssl/bn.h>
125 #ifndef OPENSSL_NO_DH
126 #include <openssl/dh.h>
127 #endif
128
129 static const SSL_METHOD *dtls1_get_server_method(int ver);
130 static int dtls1_send_hello_verify_request(SSL *s);
131
132 static const SSL_METHOD *dtls1_get_server_method(int ver)
133         {
134         if (ver == DTLS1_VERSION)
135                 return(DTLSv1_server_method());
136         else
137                 return(NULL);
138         }
139
140 IMPLEMENT_dtls1_meth_func(DTLSv1_server_method,
141                         dtls1_accept,
142                         ssl_undefined_function,
143                         dtls1_get_server_method)
144
145 int dtls1_accept(SSL *s)
146         {
147         BUF_MEM *buf;
148         unsigned long Time=(unsigned long)time(NULL);
149         void (*cb)(const SSL *ssl,int type,int val)=NULL;
150         long num1;
151         unsigned long alg_k;
152         int ret= -1;
153         int new_state,state,skip=0;
154
155         RAND_add(&Time,sizeof(Time),0);
156         ERR_clear_error();
157         clear_sys_error();
158
159         if (s->info_callback != NULL)
160                 cb=s->info_callback;
161         else if (s->ctx->info_callback != NULL)
162                 cb=s->ctx->info_callback;
163
164         /* init things to blank */
165         s->in_handshake++;
166         if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
167
168         if (s->cert == NULL)
169                 {
170                 SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
171                 return(-1);
172                 }
173
174         for (;;)
175                 {
176                 state=s->state;
177
178                 switch (s->state)
179                         {
180                 case SSL_ST_RENEGOTIATE:
181                         s->new_session=1;
182                         /* s->state=SSL_ST_ACCEPT; */
183
184                 case SSL_ST_BEFORE:
185                 case SSL_ST_ACCEPT:
186                 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
187                 case SSL_ST_OK|SSL_ST_ACCEPT:
188
189                         s->server=1;
190                         if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
191
192                         if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00))
193                                 {
194                                 SSLerr(SSL_F_DTLS1_ACCEPT, ERR_R_INTERNAL_ERROR);
195                                 return -1;
196                                 }
197                         s->type=SSL_ST_ACCEPT;
198
199                         if (s->init_buf == NULL)
200                                 {
201                                 if ((buf=BUF_MEM_new()) == NULL)
202                                         {
203                                         ret= -1;
204                                         goto end;
205                                         }
206                                 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
207                                         {
208                                         ret= -1;
209                                         goto end;
210                                         }
211                                 s->init_buf=buf;
212                                 }
213
214                         if (!ssl3_setup_buffers(s))
215                                 {
216                                 ret= -1;
217                                 goto end;
218                                 }
219
220                         s->init_num=0;
221
222                         if (s->state != SSL_ST_RENEGOTIATE)
223                                 {
224                                 /* Ok, we now need to push on a buffering BIO so that
225                                  * the output is sent in a way that TCP likes :-)
226                                  */
227                                 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
228
229                                 ssl3_init_finished_mac(s);
230                                 s->state=SSL3_ST_SR_CLNT_HELLO_A;
231                                 s->ctx->stats.sess_accept++;
232                                 }
233                         else
234                                 {
235                                 /* s->state == SSL_ST_RENEGOTIATE,
236                                  * we will just send a HelloRequest */
237                                 s->ctx->stats.sess_accept_renegotiate++;
238                                 s->state=SSL3_ST_SW_HELLO_REQ_A;
239                                 }
240
241                         break;
242
243                 case SSL3_ST_SW_HELLO_REQ_A:
244                 case SSL3_ST_SW_HELLO_REQ_B:
245
246                         s->shutdown=0;
247                         dtls1_start_timer(s);
248                         ret=dtls1_send_hello_request(s);
249                         if (ret <= 0) goto end;
250                         s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
251                         s->state=SSL3_ST_SW_FLUSH;
252                         s->init_num=0;
253
254                         ssl3_init_finished_mac(s);
255                         break;
256
257                 case SSL3_ST_SW_HELLO_REQ_C:
258                         s->state=SSL_ST_OK;
259                         break;
260
261                 case SSL3_ST_SR_CLNT_HELLO_A:
262                 case SSL3_ST_SR_CLNT_HELLO_B:
263                 case SSL3_ST_SR_CLNT_HELLO_C:
264
265                         s->shutdown=0;
266                         ret=ssl3_get_client_hello(s);
267                         if (ret <= 0) goto end;
268                         dtls1_stop_timer(s);
269                         s->new_session = 2;
270
271                         if (ret == 1 && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
272                                 s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A;
273                         else
274                                 s->state = SSL3_ST_SW_SRVR_HELLO_A;
275
276                         s->init_num=0;
277
278                         /* If we're just listening, stop here */
279                         if (s->d1->listen && s->state == SSL3_ST_SW_SRVR_HELLO_A)
280                                 {
281                                 ret = 2;
282                                 s->d1->listen = 0;
283                                 goto end;
284                                 }
285                         
286                         break;
287                         
288                 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A:
289                 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B:
290
291                         dtls1_start_timer(s);
292                         ret = dtls1_send_hello_verify_request(s);
293                         if ( ret <= 0) goto end;
294                         s->state=SSL3_ST_SW_FLUSH;
295                         s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
296
297                         /* HelloVerifyRequest resets Finished MAC */
298                         if (s->version != DTLS1_BAD_VER)
299                                 ssl3_init_finished_mac(s);
300                         break;
301                         
302                 case SSL3_ST_SW_SRVR_HELLO_A:
303                 case SSL3_ST_SW_SRVR_HELLO_B:
304                         dtls1_start_timer(s);
305                         ret=dtls1_send_server_hello(s);
306                         if (ret <= 0) goto end;
307
308                         if (s->hit)
309                                 s->state=SSL3_ST_SW_CHANGE_A;
310                         else
311                                 s->state=SSL3_ST_SW_CERT_A;
312                         s->init_num=0;
313                         break;
314
315                 case SSL3_ST_SW_CERT_A:
316                 case SSL3_ST_SW_CERT_B:
317                         /* Check if it is anon DH or normal PSK */
318                         if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
319                                 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
320                                 {
321                                 dtls1_start_timer(s);
322                                 ret=dtls1_send_server_certificate(s);
323                                 if (ret <= 0) goto end;
324                                 }
325                         else
326                                 skip=1;
327                         s->state=SSL3_ST_SW_KEY_EXCH_A;
328                         s->init_num=0;
329                         break;
330
331                 case SSL3_ST_SW_KEY_EXCH_A:
332                 case SSL3_ST_SW_KEY_EXCH_B:
333                         alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
334
335                         /* clear this, it may get reset by
336                          * send_server_key_exchange */
337                         if ((s->options & SSL_OP_EPHEMERAL_RSA)
338 #ifndef OPENSSL_NO_KRB5
339                                 && !(alg_k & SSL_kKRB5)
340 #endif /* OPENSSL_NO_KRB5 */
341                                 )
342                                 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
343                                  * even when forbidden by protocol specs
344                                  * (handshake may fail as clients are not required to
345                                  * be able to handle this) */
346                                 s->s3->tmp.use_rsa_tmp=1;
347                         else
348                                 s->s3->tmp.use_rsa_tmp=0;
349
350                         /* only send if a DH key exchange or
351                          * RSA but we have a sign only certificate */
352                         if (s->s3->tmp.use_rsa_tmp
353                         /* PSK: send ServerKeyExchange if PSK identity
354                          * hint if provided */
355 #ifndef OPENSSL_NO_PSK
356                             || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
357 #endif
358                             || (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
359                             || (alg_k & SSL_kEECDH)
360                             || ((alg_k & SSL_kRSA)
361                                 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
362                                     || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
363                                         && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
364                                         )
365                                     )
366                                 )
367                             )
368                                 {
369                                 dtls1_start_timer(s);
370                                 ret=dtls1_send_server_key_exchange(s);
371                                 if (ret <= 0) goto end;
372                                 }
373                         else
374                                 skip=1;
375
376                         s->state=SSL3_ST_SW_CERT_REQ_A;
377                         s->init_num=0;
378                         break;
379
380                 case SSL3_ST_SW_CERT_REQ_A:
381                 case SSL3_ST_SW_CERT_REQ_B:
382                         if (/* don't request cert unless asked for it: */
383                                 !(s->verify_mode & SSL_VERIFY_PEER) ||
384                                 /* if SSL_VERIFY_CLIENT_ONCE is set,
385                                  * don't request cert during re-negotiation: */
386                                 ((s->session->peer != NULL) &&
387                                  (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
388                                 /* never request cert in anonymous ciphersuites
389                                  * (see section "Certificate request" in SSL 3 drafts
390                                  * and in RFC 2246): */
391                                 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
392                                  /* ... except when the application insists on verification
393                                   * (against the specs, but s3_clnt.c accepts this for SSL 3) */
394                                  !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
395                                  /* never request cert in Kerberos ciphersuites */
396                                 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5)
397                                 /* With normal PSK Certificates and
398                                  * Certificate Requests are omitted */
399                                 || (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
400                                 {
401                                 /* no cert request */
402                                 skip=1;
403                                 s->s3->tmp.cert_request=0;
404                                 s->state=SSL3_ST_SW_SRVR_DONE_A;
405                                 }
406                         else
407                                 {
408                                 s->s3->tmp.cert_request=1;
409                                 dtls1_start_timer(s);
410                                 ret=dtls1_send_certificate_request(s);
411                                 if (ret <= 0) goto end;
412 #ifndef NETSCAPE_HANG_BUG
413                                 s->state=SSL3_ST_SW_SRVR_DONE_A;
414 #else
415                                 s->state=SSL3_ST_SW_FLUSH;
416                                 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
417 #endif
418                                 s->init_num=0;
419                                 }
420                         break;
421
422                 case SSL3_ST_SW_SRVR_DONE_A:
423                 case SSL3_ST_SW_SRVR_DONE_B:
424                         dtls1_start_timer(s);
425                         ret=dtls1_send_server_done(s);
426                         if (ret <= 0) goto end;
427                         s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
428                         s->state=SSL3_ST_SW_FLUSH;
429                         s->init_num=0;
430                         break;
431                 
432                 case SSL3_ST_SW_FLUSH:
433                         /* number of bytes to be flushed */
434                         num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL);
435                         if (num1 > 0)
436                                 {
437                                 s->rwstate=SSL_WRITING;
438                                 num1=BIO_flush(s->wbio);
439                                 if (num1 <= 0) { ret= -1; goto end; }
440                                 s->rwstate=SSL_NOTHING;
441                                 }
442
443                         s->state=s->s3->tmp.next_state;
444                         break;
445
446                 case SSL3_ST_SR_CERT_A:
447                 case SSL3_ST_SR_CERT_B:
448                         /* Check for second client hello (MS SGC) */
449                         ret = ssl3_check_client_hello(s);
450                         if (ret <= 0)
451                                 goto end;
452                         dtls1_stop_timer(s);
453                         if (ret == 2)
454                                 s->state = SSL3_ST_SR_CLNT_HELLO_C;
455                         else {
456                                 /* could be sent for a DH cert, even if we
457                                  * have not asked for it :-) */
458                                 ret=ssl3_get_client_certificate(s);
459                                 if (ret <= 0) goto end;
460                                 dtls1_stop_timer(s);
461                                 s->init_num=0;
462                                 s->state=SSL3_ST_SR_KEY_EXCH_A;
463                         }
464                         break;
465
466                 case SSL3_ST_SR_KEY_EXCH_A:
467                 case SSL3_ST_SR_KEY_EXCH_B:
468                         ret=ssl3_get_client_key_exchange(s);
469                         if (ret <= 0) goto end;
470                         dtls1_stop_timer(s);
471                         s->state=SSL3_ST_SR_CERT_VRFY_A;
472                         s->init_num=0;
473
474                         if (ret == 2)
475                                 {
476                                 /* For the ECDH ciphersuites when
477                                  * the client sends its ECDH pub key in
478                                  * a certificate, the CertificateVerify
479                                  * message is not sent.
480                                  */
481                                 s->state=SSL3_ST_SR_FINISHED_A;
482                                 s->init_num = 0;
483                                 }
484                         else
485                                 {
486                                 s->state=SSL3_ST_SR_CERT_VRFY_A;
487                                 s->init_num=0;
488
489                                 /* We need to get hashes here so if there is
490                                  * a client cert, it can be verified */ 
491                                 s->method->ssl3_enc->cert_verify_mac(s,
492                                         NID_md5,
493                                         &(s->s3->tmp.cert_verify_md[0]));
494                                 s->method->ssl3_enc->cert_verify_mac(s,
495                                         NID_sha1,
496                                         &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]));
497                                 }
498                         break;
499
500                 case SSL3_ST_SR_CERT_VRFY_A:
501                 case SSL3_ST_SR_CERT_VRFY_B:
502
503                         s->d1->change_cipher_spec_ok = 1;
504                         /* we should decide if we expected this one */
505                         ret=ssl3_get_cert_verify(s);
506                         if (ret <= 0) goto end;
507                         dtls1_stop_timer(s);
508
509                         s->state=SSL3_ST_SR_FINISHED_A;
510                         s->init_num=0;
511                         break;
512
513                 case SSL3_ST_SR_FINISHED_A:
514                 case SSL3_ST_SR_FINISHED_B:
515                         s->d1->change_cipher_spec_ok = 1;
516                         ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
517                                 SSL3_ST_SR_FINISHED_B);
518                         if (ret <= 0) goto end;
519                         dtls1_stop_timer(s);
520                         if (s->hit)
521                                 s->state=SSL_ST_OK;
522                         else
523                                 s->state=SSL3_ST_SW_CHANGE_A;
524                         s->init_num=0;
525                         break;
526
527                 case SSL3_ST_SW_CHANGE_A:
528                 case SSL3_ST_SW_CHANGE_B:
529
530                         s->session->cipher=s->s3->tmp.new_cipher;
531                         if (!s->method->ssl3_enc->setup_key_block(s))
532                                 { ret= -1; goto end; }
533
534                         ret=dtls1_send_change_cipher_spec(s,
535                                 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
536
537                         if (ret <= 0) goto end;
538                         s->state=SSL3_ST_SW_FINISHED_A;
539                         s->init_num=0;
540
541                         if (!s->method->ssl3_enc->change_cipher_state(s,
542                                 SSL3_CHANGE_CIPHER_SERVER_WRITE))
543                                 {
544                                 ret= -1;
545                                 goto end;
546                                 }
547
548                         dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
549                         break;
550
551                 case SSL3_ST_SW_FINISHED_A:
552                 case SSL3_ST_SW_FINISHED_B:
553                         ret=dtls1_send_finished(s,
554                                 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
555                                 s->method->ssl3_enc->server_finished_label,
556                                 s->method->ssl3_enc->server_finished_label_len);
557                         if (ret <= 0) goto end;
558                         s->state=SSL3_ST_SW_FLUSH;
559                         if (s->hit)
560                                 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
561                         else
562                                 s->s3->tmp.next_state=SSL_ST_OK;
563                         s->init_num=0;
564                         break;
565
566                 case SSL_ST_OK:
567                         /* clean a few things up */
568                         ssl3_cleanup_key_block(s);
569
570 #if 0
571                         BUF_MEM_free(s->init_buf);
572                         s->init_buf=NULL;
573 #endif
574
575                         /* remove buffering on output */
576                         ssl_free_wbio_buffer(s);
577
578                         s->init_num=0;
579
580                         if (s->new_session == 2) /* skipped if we just sent a HelloRequest */
581                                 {
582                                 /* actually not necessarily a 'new' session unless
583                                  * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */
584                                 
585                                 s->new_session=0;
586                                 
587                                 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
588                                 
589                                 s->ctx->stats.sess_accept_good++;
590                                 /* s->server=1; */
591                                 s->handshake_func=dtls1_accept;
592
593                                 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
594                                 }
595                         
596                         ret = 1;
597
598                         /* done handshaking, next message is client hello */
599                         s->d1->handshake_read_seq = 0;
600                         /* next message is server hello */
601                         s->d1->handshake_write_seq = 0;
602                         s->d1->next_handshake_write_seq = 0;
603                         goto end;
604                         /* break; */
605
606                 default:
607                         SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_UNKNOWN_STATE);
608                         ret= -1;
609                         goto end;
610                         /* break; */
611                         }
612                 
613                 if (!s->s3->tmp.reuse_message && !skip)
614                         {
615                         if (s->debug)
616                                 {
617                                 if ((ret=BIO_flush(s->wbio)) <= 0)
618                                         goto end;
619                                 }
620
621
622                         if ((cb != NULL) && (s->state != state))
623                                 {
624                                 new_state=s->state;
625                                 s->state=state;
626                                 cb(s,SSL_CB_ACCEPT_LOOP,1);
627                                 s->state=new_state;
628                                 }
629                         }
630                 skip=0;
631                 }
632 end:
633         /* BIO_flush(s->wbio); */
634
635         s->in_handshake--;
636         if (cb != NULL)
637                 cb(s,SSL_CB_ACCEPT_EXIT,ret);
638         return(ret);
639         }
640
641 int dtls1_send_hello_request(SSL *s)
642         {
643         unsigned char *p;
644
645         if (s->state == SSL3_ST_SW_HELLO_REQ_A)
646                 {
647                 p=(unsigned char *)s->init_buf->data;
648                 p = dtls1_set_message_header(s, p, SSL3_MT_HELLO_REQUEST, 0, 0, 0);
649
650                 s->state=SSL3_ST_SW_HELLO_REQ_B;
651                 /* number of bytes to write */
652                 s->init_num=DTLS1_HM_HEADER_LENGTH;
653                 s->init_off=0;
654
655                 /* no need to buffer this message, since there are no retransmit 
656                  * requests for it */
657                 }
658
659         /* SSL3_ST_SW_HELLO_REQ_B */
660         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
661         }
662
663 int dtls1_send_hello_verify_request(SSL *s)
664         {
665         unsigned int msg_len;
666         unsigned char *msg, *buf, *p;
667
668         if (s->state == DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A)
669                 {
670                 buf = (unsigned char *)s->init_buf->data;
671
672                 msg = p = &(buf[DTLS1_HM_HEADER_LENGTH]);
673                 *(p++) = s->version >> 8;
674                 *(p++) = s->version & 0xFF;
675
676                 if (s->ctx->app_gen_cookie_cb == NULL ||
677                      s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
678                          &(s->d1->cookie_len)) == 0)
679                         {
680                         SSLerr(SSL_F_DTLS1_SEND_HELLO_VERIFY_REQUEST,ERR_R_INTERNAL_ERROR);
681                         return 0;
682                         }
683
684                 *(p++) = (unsigned char) s->d1->cookie_len;
685                 memcpy(p, s->d1->cookie, s->d1->cookie_len);
686                 p += s->d1->cookie_len;
687                 msg_len = p - msg;
688
689                 dtls1_set_message_header(s, buf,
690                         DTLS1_MT_HELLO_VERIFY_REQUEST, msg_len, 0, msg_len);
691
692                 s->state=DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B;
693                 /* number of bytes to write */
694                 s->init_num=p-buf;
695                 s->init_off=0;
696
697                 /* buffer the message to handle re-xmits */
698                 dtls1_buffer_message(s, 0);
699                 }
700
701         /* s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B */
702         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
703         }
704
705 int dtls1_send_server_hello(SSL *s)
706         {
707         unsigned char *buf;
708         unsigned char *p,*d;
709         int i;
710         unsigned int sl;
711         unsigned long l,Time;
712
713         if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
714                 {
715                 buf=(unsigned char *)s->init_buf->data;
716                 p=s->s3->server_random;
717                 Time=(unsigned long)time(NULL);                 /* Time */
718                 l2n(Time,p);
719                 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
720                 /* Do the message type and length last */
721                 d=p= &(buf[DTLS1_HM_HEADER_LENGTH]);
722
723                 *(p++)=s->version>>8;
724                 *(p++)=s->version&0xff;
725
726                 /* Random stuff */
727                 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
728                 p+=SSL3_RANDOM_SIZE;
729
730                 /* now in theory we have 3 options to sending back the
731                  * session id.  If it is a re-use, we send back the
732                  * old session-id, if it is a new session, we send
733                  * back the new session-id or we send back a 0 length
734                  * session-id if we want it to be single use.
735                  * Currently I will not implement the '0' length session-id
736                  * 12-Jan-98 - I'll now support the '0' length stuff.
737                  */
738                 if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER))
739                         s->session->session_id_length=0;
740
741                 sl=s->session->session_id_length;
742                 if (sl > sizeof s->session->session_id)
743                         {
744                         SSLerr(SSL_F_DTLS1_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
745                         return -1;
746                         }
747                 *(p++)=sl;
748                 memcpy(p,s->session->session_id,sl);
749                 p+=sl;
750
751                 /* put the cipher */
752                 if (s->s3->tmp.new_cipher == NULL)
753                         return -1;
754                 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
755                 p+=i;
756
757                 /* put the compression method */
758 #ifdef OPENSSL_NO_COMP
759                 *(p++)=0;
760 #else
761                 if (s->s3->tmp.new_compression == NULL)
762                         *(p++)=0;
763                 else
764                         *(p++)=s->s3->tmp.new_compression->id;
765 #endif
766
767 #ifndef OPENSSL_NO_TLSEXT
768                 if ((p = ssl_add_serverhello_dtlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
769                         {
770                         SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,ERR_R_INTERNAL_ERROR);
771                         return -1;
772                         }
773 #endif
774
775                 /* do the header */
776                 l=(p-d);
777                 d=buf;
778
779                 d = dtls1_set_message_header(s, d, SSL3_MT_SERVER_HELLO, l, 0, l);
780
781                 s->state=SSL3_ST_SW_SRVR_HELLO_B;
782                 /* number of bytes to write */
783                 s->init_num=p-buf;
784                 s->init_off=0;
785
786                 /* buffer the message to handle re-xmits */
787                 dtls1_buffer_message(s, 0);
788                 }
789
790         /* SSL3_ST_SW_SRVR_HELLO_B */
791         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
792         }
793
794 int dtls1_send_server_done(SSL *s)
795         {
796         unsigned char *p;
797
798         if (s->state == SSL3_ST_SW_SRVR_DONE_A)
799                 {
800                 p=(unsigned char *)s->init_buf->data;
801
802                 /* do the header */
803                 p = dtls1_set_message_header(s, p, SSL3_MT_SERVER_DONE, 0, 0, 0);
804
805                 s->state=SSL3_ST_SW_SRVR_DONE_B;
806                 /* number of bytes to write */
807                 s->init_num=DTLS1_HM_HEADER_LENGTH;
808                 s->init_off=0;
809
810                 /* buffer the message to handle re-xmits */
811                 dtls1_buffer_message(s, 0);
812                 }
813
814         /* SSL3_ST_SW_SRVR_DONE_B */
815         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
816         }
817
818 int dtls1_send_server_key_exchange(SSL *s)
819         {
820 #ifndef OPENSSL_NO_RSA
821         unsigned char *q;
822         int j,num;
823         RSA *rsa;
824         unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
825         unsigned int u;
826 #endif
827 #ifndef OPENSSL_NO_DH
828         DH *dh=NULL,*dhp;
829 #endif
830 #ifndef OPENSSL_NO_ECDH
831         EC_KEY *ecdh=NULL, *ecdhp;
832         unsigned char *encodedPoint = NULL;
833         int encodedlen = 0;
834         int curve_id = 0;
835         BN_CTX *bn_ctx = NULL; 
836 #endif
837         EVP_PKEY *pkey;
838         unsigned char *p,*d;
839         int al,i;
840         unsigned long type;
841         int n;
842         CERT *cert;
843         BIGNUM *r[4];
844         int nr[4],kn;
845         BUF_MEM *buf;
846         EVP_MD_CTX md_ctx;
847
848         EVP_MD_CTX_init(&md_ctx);
849         if (s->state == SSL3_ST_SW_KEY_EXCH_A)
850                 {
851                 type=s->s3->tmp.new_cipher->algorithm_mkey;
852                 cert=s->cert;
853
854                 buf=s->init_buf;
855
856                 r[0]=r[1]=r[2]=r[3]=NULL;
857                 n=0;
858 #ifndef OPENSSL_NO_RSA
859                 if (type & SSL_kRSA)
860                         {
861                         rsa=cert->rsa_tmp;
862                         if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
863                                 {
864                                 rsa=s->cert->rsa_tmp_cb(s,
865                                       SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
866                                       SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
867                                 if(rsa == NULL)
868                                 {
869                                         al=SSL_AD_HANDSHAKE_FAILURE;
870                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
871                                         goto f_err;
872                                 }
873                                 RSA_up_ref(rsa);
874                                 cert->rsa_tmp=rsa;
875                                 }
876                         if (rsa == NULL)
877                                 {
878                                 al=SSL_AD_HANDSHAKE_FAILURE;
879                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
880                                 goto f_err;
881                                 }
882                         r[0]=rsa->n;
883                         r[1]=rsa->e;
884                         s->s3->tmp.use_rsa_tmp=1;
885                         }
886                 else
887 #endif
888 #ifndef OPENSSL_NO_DH
889                         if (type & SSL_kEDH)
890                         {
891                         dhp=cert->dh_tmp;
892                         if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
893                                 dhp=s->cert->dh_tmp_cb(s,
894                                       SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
895                                       SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
896                         if (dhp == NULL)
897                                 {
898                                 al=SSL_AD_HANDSHAKE_FAILURE;
899                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
900                                 goto f_err;
901                                 }
902
903                         if (s->s3->tmp.dh != NULL)
904                                 {
905                                 DH_free(dh);
906                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
907                                 goto err;
908                                 }
909
910                         if ((dh=DHparams_dup(dhp)) == NULL)
911                                 {
912                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
913                                 goto err;
914                                 }
915
916                         s->s3->tmp.dh=dh;
917                         if ((dhp->pub_key == NULL ||
918                              dhp->priv_key == NULL ||
919                              (s->options & SSL_OP_SINGLE_DH_USE)))
920                                 {
921                                 if(!DH_generate_key(dh))
922                                     {
923                                     SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,
924                                            ERR_R_DH_LIB);
925                                     goto err;
926                                     }
927                                 }
928                         else
929                                 {
930                                 dh->pub_key=BN_dup(dhp->pub_key);
931                                 dh->priv_key=BN_dup(dhp->priv_key);
932                                 if ((dh->pub_key == NULL) ||
933                                         (dh->priv_key == NULL))
934                                         {
935                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
936                                         goto err;
937                                         }
938                                 }
939                         r[0]=dh->p;
940                         r[1]=dh->g;
941                         r[2]=dh->pub_key;
942                         }
943                 else 
944 #endif
945 #ifndef OPENSSL_NO_ECDH
946                         if (type & SSL_kEECDH)
947                         {
948                         const EC_GROUP *group;
949
950                         ecdhp=cert->ecdh_tmp;
951                         if ((ecdhp == NULL) && (s->cert->ecdh_tmp_cb != NULL))
952                                 {
953                                 ecdhp=s->cert->ecdh_tmp_cb(s,
954                                       SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
955                                       SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
956                                 }
957                         if (ecdhp == NULL)
958                                 {
959                                 al=SSL_AD_HANDSHAKE_FAILURE;
960                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
961                                 goto f_err;
962                                 }
963
964                         if (s->s3->tmp.ecdh != NULL)
965                                 {
966                                 EC_KEY_free(s->s3->tmp.ecdh); 
967                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
968                                 goto err;
969                                 }
970
971                         /* Duplicate the ECDH structure. */
972                         if (ecdhp == NULL)
973                                 {
974                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
975                                 goto err;
976                                 }
977                         if (!EC_KEY_up_ref(ecdhp))
978                                 {
979                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
980                                 goto err;
981                                 }
982                         ecdh = ecdhp;
983
984                         s->s3->tmp.ecdh=ecdh;
985                         if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
986                             (EC_KEY_get0_private_key(ecdh) == NULL) ||
987                             (s->options & SSL_OP_SINGLE_ECDH_USE))
988                                 {
989                                 if(!EC_KEY_generate_key(ecdh))
990                                     {
991                                     SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
992                                     goto err;
993                                     }
994                                 }
995
996                         if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
997                             (EC_KEY_get0_public_key(ecdh)  == NULL) ||
998                             (EC_KEY_get0_private_key(ecdh) == NULL))
999                                 {
1000                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1001                                 goto err;
1002                                 }
1003
1004                         if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1005                             (EC_GROUP_get_degree(group) > 163)) 
1006                                 {
1007                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1008                                 goto err;
1009                                 }
1010
1011                         /* XXX: For now, we only support ephemeral ECDH
1012                          * keys over named (not generic) curves. For 
1013                          * supported named curves, curve_id is non-zero.
1014                          */
1015                         if ((curve_id = 
1016                             tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1017                             == 0)
1018                                 {
1019                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1020                                 goto err;
1021                                 }
1022
1023                         /* Encode the public key.
1024                          * First check the size of encoding and
1025                          * allocate memory accordingly.
1026                          */
1027                         encodedlen = EC_POINT_point2oct(group, 
1028                             EC_KEY_get0_public_key(ecdh),
1029                             POINT_CONVERSION_UNCOMPRESSED, 
1030                             NULL, 0, NULL);
1031
1032                         encodedPoint = (unsigned char *) 
1033                             OPENSSL_malloc(encodedlen*sizeof(unsigned char)); 
1034                         bn_ctx = BN_CTX_new();
1035                         if ((encodedPoint == NULL) || (bn_ctx == NULL))
1036                                 {
1037                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1038                                 goto err;
1039                                 }
1040
1041
1042                         encodedlen = EC_POINT_point2oct(group, 
1043                             EC_KEY_get0_public_key(ecdh), 
1044                             POINT_CONVERSION_UNCOMPRESSED, 
1045                             encodedPoint, encodedlen, bn_ctx);
1046
1047                         if (encodedlen == 0) 
1048                                 {
1049                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1050                                 goto err;
1051                                 }
1052
1053                         BN_CTX_free(bn_ctx);  bn_ctx=NULL;
1054
1055                         /* XXX: For now, we only support named (not 
1056                          * generic) curves in ECDH ephemeral key exchanges.
1057                          * In this situation, we need four additional bytes
1058                          * to encode the entire ServerECDHParams
1059                          * structure. 
1060                          */
1061                         n = 4 + encodedlen;
1062
1063                         /* We'll generate the serverKeyExchange message
1064                          * explicitly so we can set these to NULLs
1065                          */
1066                         r[0]=NULL;
1067                         r[1]=NULL;
1068                         r[2]=NULL;
1069                         r[3]=NULL;
1070                         }
1071                 else 
1072 #endif /* !OPENSSL_NO_ECDH */
1073 #ifndef OPENSSL_NO_PSK
1074                         if (type & SSL_kPSK)
1075                                 {
1076                                 /* reserve size for record length and PSK identity hint*/
1077                                 n+=2+strlen(s->ctx->psk_identity_hint);
1078                                 }
1079                         else
1080 #endif /* !OPENSSL_NO_PSK */
1081                         {
1082                         al=SSL_AD_HANDSHAKE_FAILURE;
1083                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1084                         goto f_err;
1085                         }
1086                 for (i=0; r[i] != NULL; i++)
1087                         {
1088                         nr[i]=BN_num_bytes(r[i]);
1089                         n+=2+nr[i];
1090                         }
1091
1092                 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
1093                         && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
1094                         {
1095                         if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher))
1096                                 == NULL)
1097                                 {
1098                                 al=SSL_AD_DECODE_ERROR;
1099                                 goto f_err;
1100                                 }
1101                         kn=EVP_PKEY_size(pkey);
1102                         }
1103                 else
1104                         {
1105                         pkey=NULL;
1106                         kn=0;
1107                         }
1108
1109                 if (!BUF_MEM_grow_clean(buf,n+DTLS1_HM_HEADER_LENGTH+kn))
1110                         {
1111                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
1112                         goto err;
1113                         }
1114                 d=(unsigned char *)s->init_buf->data;
1115                 p= &(d[DTLS1_HM_HEADER_LENGTH]);
1116
1117                 for (i=0; r[i] != NULL; i++)
1118                         {
1119                         s2n(nr[i],p);
1120                         BN_bn2bin(r[i],p);
1121                         p+=nr[i];
1122                         }
1123
1124 #ifndef OPENSSL_NO_ECDH
1125                 if (type & SSL_kEECDH) 
1126                         {
1127                         /* XXX: For now, we only support named (not generic) curves.
1128                          * In this situation, the serverKeyExchange message has:
1129                          * [1 byte CurveType], [2 byte CurveName]
1130                          * [1 byte length of encoded point], followed by
1131                          * the actual encoded point itself
1132                          */
1133                         *p = NAMED_CURVE_TYPE;
1134                         p += 1;
1135                         *p = 0;
1136                         p += 1;
1137                         *p = curve_id;
1138                         p += 1;
1139                         *p = encodedlen;
1140                         p += 1;
1141                         memcpy((unsigned char*)p, 
1142                             (unsigned char *)encodedPoint, 
1143                             encodedlen);
1144                         OPENSSL_free(encodedPoint);
1145                         p += encodedlen;
1146                         }
1147 #endif
1148
1149 #ifndef OPENSSL_NO_PSK
1150                 if (type & SSL_kPSK)
1151                         {
1152                         /* copy PSK identity hint */
1153                         s2n(strlen(s->ctx->psk_identity_hint), p); 
1154                         strncpy((char *)p, s->ctx->psk_identity_hint, strlen(s->ctx->psk_identity_hint));
1155                         p+=strlen(s->ctx->psk_identity_hint);
1156                         }
1157 #endif
1158
1159                 /* not anonymous */
1160                 if (pkey != NULL)
1161                         {
1162                         /* n is the length of the params, they start at
1163                          * &(d[DTLS1_HM_HEADER_LENGTH]) and p points to the space
1164                          * at the end. */
1165 #ifndef OPENSSL_NO_RSA
1166                         if (pkey->type == EVP_PKEY_RSA)
1167                                 {
1168                                 q=md_buf;
1169                                 j=0;
1170                                 for (num=2; num > 0; num--)
1171                                         {
1172                                         EVP_DigestInit_ex(&md_ctx,(num == 2)
1173                                                 ?s->ctx->md5:s->ctx->sha1, NULL);
1174                                         EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1175                                         EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1176                                         EVP_DigestUpdate(&md_ctx,&(d[DTLS1_HM_HEADER_LENGTH]),n);
1177                                         EVP_DigestFinal_ex(&md_ctx,q,
1178                                                 (unsigned int *)&i);
1179                                         q+=i;
1180                                         j+=i;
1181                                         }
1182                                 if (RSA_sign(NID_md5_sha1, md_buf, j,
1183                                         &(p[2]), &u, pkey->pkey.rsa) <= 0)
1184                                         {
1185                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
1186                                         goto err;
1187                                         }
1188                                 s2n(u,p);
1189                                 n+=u+2;
1190                                 }
1191                         else
1192 #endif
1193 #if !defined(OPENSSL_NO_DSA)
1194                                 if (pkey->type == EVP_PKEY_DSA)
1195                                 {
1196                                 /* lets do DSS */
1197                                 EVP_SignInit_ex(&md_ctx,EVP_dss1(), NULL);
1198                                 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1199                                 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1200                                 EVP_SignUpdate(&md_ctx,&(d[DTLS1_HM_HEADER_LENGTH]),n);
1201                                 if (!EVP_SignFinal(&md_ctx,&(p[2]),
1202                                         (unsigned int *)&i,pkey))
1203                                         {
1204                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_DSA);
1205                                         goto err;
1206                                         }
1207                                 s2n(i,p);
1208                                 n+=i+2;
1209                                 }
1210                         else
1211 #endif
1212 #if !defined(OPENSSL_NO_ECDSA)
1213                                 if (pkey->type == EVP_PKEY_EC)
1214                                 {
1215                                 /* let's do ECDSA */
1216                                 EVP_SignInit_ex(&md_ctx,EVP_ecdsa(), NULL);
1217                                 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1218                                 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1219                                 EVP_SignUpdate(&md_ctx,&(d[4]),n);
1220                                 if (!EVP_SignFinal(&md_ctx,&(p[2]),
1221                                         (unsigned int *)&i,pkey))
1222                                         {
1223                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_ECDSA);
1224                                         goto err;
1225                                         }
1226                                 s2n(i,p);
1227                                 n+=i+2;
1228                                 }
1229                         else
1230 #endif
1231                                 {
1232                                 /* Is this error check actually needed? */
1233                                 al=SSL_AD_HANDSHAKE_FAILURE;
1234                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
1235                                 goto f_err;
1236                                 }
1237                         }
1238
1239                 d = dtls1_set_message_header(s, d,
1240                         SSL3_MT_SERVER_KEY_EXCHANGE, n, 0, n);
1241
1242                 /* we should now have things packed up, so lets send
1243                  * it off */
1244                 s->init_num=n+DTLS1_HM_HEADER_LENGTH;
1245                 s->init_off=0;
1246
1247                 /* buffer the message to handle re-xmits */
1248                 dtls1_buffer_message(s, 0);
1249                 }
1250
1251         s->state = SSL3_ST_SW_KEY_EXCH_B;
1252         EVP_MD_CTX_cleanup(&md_ctx);
1253         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1254 f_err:
1255         ssl3_send_alert(s,SSL3_AL_FATAL,al);
1256 err:
1257 #ifndef OPENSSL_NO_ECDH
1258         if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
1259         BN_CTX_free(bn_ctx);
1260 #endif
1261         EVP_MD_CTX_cleanup(&md_ctx);
1262         return(-1);
1263         }
1264
1265 int dtls1_send_certificate_request(SSL *s)
1266         {
1267         unsigned char *p,*d;
1268         int i,j,nl,off,n;
1269         STACK_OF(X509_NAME) *sk=NULL;
1270         X509_NAME *name;
1271         BUF_MEM *buf;
1272         unsigned int msg_len;
1273
1274         if (s->state == SSL3_ST_SW_CERT_REQ_A)
1275                 {
1276                 buf=s->init_buf;
1277
1278                 d=p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH]);
1279
1280                 /* get the list of acceptable cert types */
1281                 p++;
1282                 n=ssl3_get_req_cert_type(s,p);
1283                 d[0]=n;
1284                 p+=n;
1285                 n++;
1286
1287                 off=n;
1288                 p+=2;
1289                 n+=2;
1290
1291                 sk=SSL_get_client_CA_list(s);
1292                 nl=0;
1293                 if (sk != NULL)
1294                         {
1295                         for (i=0; i<sk_X509_NAME_num(sk); i++)
1296                                 {
1297                                 name=sk_X509_NAME_value(sk,i);
1298                                 j=i2d_X509_NAME(name,NULL);
1299                                 if (!BUF_MEM_grow_clean(buf,DTLS1_HM_HEADER_LENGTH+n+j+2))
1300                                         {
1301                                         SSLerr(SSL_F_DTLS1_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
1302                                         goto err;
1303                                         }
1304                                 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH+n]);
1305                                 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
1306                                         {
1307                                         s2n(j,p);
1308                                         i2d_X509_NAME(name,&p);
1309                                         n+=2+j;
1310                                         nl+=2+j;
1311                                         }
1312                                 else
1313                                         {
1314                                         d=p;
1315                                         i2d_X509_NAME(name,&p);
1316                                         j-=2; s2n(j,d); j+=2;
1317                                         n+=j;
1318                                         nl+=j;
1319                                         }
1320                                 }
1321                         }
1322                 /* else no CA names */
1323                 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH+off]);
1324                 s2n(nl,p);
1325
1326                 d=(unsigned char *)buf->data;
1327                 *(d++)=SSL3_MT_CERTIFICATE_REQUEST;
1328                 l2n3(n,d);
1329                 s2n(s->d1->handshake_write_seq,d);
1330                 s->d1->handshake_write_seq++;
1331
1332                 /* we should now have things packed up, so lets send
1333                  * it off */
1334
1335                 s->init_num=n+DTLS1_HM_HEADER_LENGTH;
1336                 s->init_off=0;
1337 #ifdef NETSCAPE_HANG_BUG
1338 /* XXX: what to do about this? */
1339                 p=(unsigned char *)s->init_buf->data + s->init_num;
1340
1341                 /* do the header */
1342                 *(p++)=SSL3_MT_SERVER_DONE;
1343                 *(p++)=0;
1344                 *(p++)=0;
1345                 *(p++)=0;
1346                 s->init_num += 4;
1347 #endif
1348
1349                 /* XDTLS:  set message header ? */
1350                 msg_len = s->init_num - DTLS1_HM_HEADER_LENGTH;
1351                 dtls1_set_message_header(s, (void *)s->init_buf->data,
1352                         SSL3_MT_CERTIFICATE_REQUEST, msg_len, 0, msg_len);
1353
1354                 /* buffer the message to handle re-xmits */
1355                 dtls1_buffer_message(s, 0);
1356
1357                 s->state = SSL3_ST_SW_CERT_REQ_B;
1358                 }
1359
1360         /* SSL3_ST_SW_CERT_REQ_B */
1361         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1362 err:
1363         return(-1);
1364         }
1365
1366 int dtls1_send_server_certificate(SSL *s)
1367         {
1368         unsigned long l;
1369         X509 *x;
1370
1371         if (s->state == SSL3_ST_SW_CERT_A)
1372                 {
1373                 x=ssl_get_server_send_cert(s);
1374                 if (x == NULL)
1375                         {
1376                         /* VRS: allow null cert if auth == KRB5 */
1377                         if ((s->s3->tmp.new_cipher->algorithm_mkey != SSL_kKRB5) ||
1378                             (s->s3->tmp.new_cipher->algorithm_auth != SSL_aKRB5))
1379                                 {
1380                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
1381                                 return(0);
1382                                 }
1383                         }
1384
1385                 l=dtls1_output_cert_chain(s,x);
1386                 s->state=SSL3_ST_SW_CERT_B;
1387                 s->init_num=(int)l;
1388                 s->init_off=0;
1389
1390                 /* buffer the message to handle re-xmits */
1391                 dtls1_buffer_message(s, 0);
1392                 }
1393
1394         /* SSL3_ST_SW_CERT_B */
1395         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1396         }