Switch for RFC-compliant version encoding in DTLS. From HEAD with a twist:
[oweals/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-2005 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 #ifndef OPENSSL_NO_DH
125 #include <openssl/dh.h>
126 #endif
127
128 static SSL_METHOD *dtls1_get_server_method(int ver);
129 static int dtls1_send_hello_verify_request(SSL *s);
130
131 static SSL_METHOD *dtls1_get_server_method(int ver)
132         {
133         if (ver == DTLS1_VERSION)
134                 return(DTLSv1_server_method());
135         else
136                 return(NULL);
137         }
138
139 IMPLEMENT_dtls1_meth_func(DTLSv1_server_method,
140                         dtls1_accept,
141                         ssl_undefined_function,
142                         dtls1_get_server_method)
143
144 int dtls1_accept(SSL *s)
145         {
146         BUF_MEM *buf;
147         unsigned long l,Time=(unsigned long)time(NULL);
148         void (*cb)(const SSL *ssl,int type,int val)=NULL;
149         long num1;
150         int ret= -1;
151         int new_state,state,skip=0;
152
153         RAND_add(&Time,sizeof(Time),0);
154         ERR_clear_error();
155         clear_sys_error();
156
157         if (s->info_callback != NULL)
158                 cb=s->info_callback;
159         else if (s->ctx->info_callback != NULL)
160                 cb=s->ctx->info_callback;
161
162         /* init things to blank */
163         s->in_handshake++;
164         if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
165
166         if (s->cert == NULL)
167                 {
168                 SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
169                 return(-1);
170                 }
171
172         for (;;)
173                 {
174                 state=s->state;
175
176                 switch (s->state)
177                         {
178                 case SSL_ST_RENEGOTIATE:
179                         s->new_session=1;
180                         /* s->state=SSL_ST_ACCEPT; */
181
182                 case SSL_ST_BEFORE:
183                 case SSL_ST_ACCEPT:
184                 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
185                 case SSL_ST_OK|SSL_ST_ACCEPT:
186
187                         s->server=1;
188                         if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
189
190                         if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00))
191                                 {
192                                 SSLerr(SSL_F_DTLS1_ACCEPT, ERR_R_INTERNAL_ERROR);
193                                 return -1;
194                                 }
195                         s->type=SSL_ST_ACCEPT;
196
197                         if (s->init_buf == NULL)
198                                 {
199                                 if ((buf=BUF_MEM_new()) == NULL)
200                                         {
201                                         ret= -1;
202                                         goto end;
203                                         }
204                                 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
205                                         {
206                                         ret= -1;
207                                         goto end;
208                                         }
209                                 s->init_buf=buf;
210                                 }
211
212                         if (!ssl3_setup_buffers(s))
213                                 {
214                                 ret= -1;
215                                 goto end;
216                                 }
217
218                         s->init_num=0;
219
220                         if (s->state != SSL_ST_RENEGOTIATE)
221                                 {
222                                 /* Ok, we now need to push on a buffering BIO so that
223                                  * the output is sent in a way that TCP likes :-)
224                                  */
225                                 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
226
227                                 ssl3_init_finished_mac(s);
228                                 s->state=SSL3_ST_SR_CLNT_HELLO_A;
229                                 s->ctx->stats.sess_accept++;
230                                 }
231                         else
232                                 {
233                                 /* s->state == SSL_ST_RENEGOTIATE,
234                                  * we will just send a HelloRequest */
235                                 s->ctx->stats.sess_accept_renegotiate++;
236                                 s->state=SSL3_ST_SW_HELLO_REQ_A;
237                                 }
238
239             if ( (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
240                 s->d1->send_cookie = 1;
241             else
242                 s->d1->send_cookie = 0;
243
244                         break;
245
246                 case SSL3_ST_SW_HELLO_REQ_A:
247                 case SSL3_ST_SW_HELLO_REQ_B:
248
249                         s->shutdown=0;
250                         ret=dtls1_send_hello_request(s);
251                         if (ret <= 0) goto end;
252                         s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
253                         s->state=SSL3_ST_SW_FLUSH;
254                         s->init_num=0;
255
256                         ssl3_init_finished_mac(s);
257                         break;
258
259                 case SSL3_ST_SW_HELLO_REQ_C:
260                         s->state=SSL_ST_OK;
261                         break;
262
263                 case SSL3_ST_SR_CLNT_HELLO_A:
264                 case SSL3_ST_SR_CLNT_HELLO_B:
265                 case SSL3_ST_SR_CLNT_HELLO_C:
266
267                         s->shutdown=0;
268                         ret=ssl3_get_client_hello(s);
269                         if (ret <= 0) goto end;
270                         s->new_session = 2;
271
272                         if ( s->d1->send_cookie)
273                                 s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A;
274                         else
275                                 s->state = SSL3_ST_SW_SRVR_HELLO_A;
276
277                         s->init_num=0;
278                         break;
279                         
280                 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A:
281                 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B:
282
283                         ret = dtls1_send_hello_verify_request(s);
284                         if ( ret <= 0) goto end;
285                         s->d1->send_cookie = 0;
286                         s->state=SSL3_ST_SW_FLUSH;
287                         s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
288                         break;
289                         
290                 case SSL3_ST_SW_SRVR_HELLO_A:
291                 case SSL3_ST_SW_SRVR_HELLO_B:
292                         ret=dtls1_send_server_hello(s);
293                         if (ret <= 0) goto end;
294
295                         if (s->hit)
296                                 s->state=SSL3_ST_SW_CHANGE_A;
297                         else
298                                 s->state=SSL3_ST_SW_CERT_A;
299                         s->init_num=0;
300                         break;
301
302                 case SSL3_ST_SW_CERT_A:
303                 case SSL3_ST_SW_CERT_B:
304                         /* Check if it is anon DH */
305                         if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
306                                 {
307                                 ret=dtls1_send_server_certificate(s);
308                                 if (ret <= 0) goto end;
309                                 }
310                         else
311                                 skip=1;
312                         s->state=SSL3_ST_SW_KEY_EXCH_A;
313                         s->init_num=0;
314                         break;
315
316                 case SSL3_ST_SW_KEY_EXCH_A:
317                 case SSL3_ST_SW_KEY_EXCH_B:
318                         l=s->s3->tmp.new_cipher->algorithms;
319
320                         /* clear this, it may get reset by
321                          * send_server_key_exchange */
322                         if ((s->options & SSL_OP_EPHEMERAL_RSA)
323 #ifndef OPENSSL_NO_KRB5
324                                 && !(l & SSL_KRB5)
325 #endif /* OPENSSL_NO_KRB5 */
326                                 )
327                                 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
328                                  * even when forbidden by protocol specs
329                                  * (handshake may fail as clients are not required to
330                                  * be able to handle this) */
331                                 s->s3->tmp.use_rsa_tmp=1;
332                         else
333                                 s->s3->tmp.use_rsa_tmp=0;
334
335                         /* only send if a DH key exchange, fortezza or
336                          * RSA but we have a sign only certificate */
337                         if (s->s3->tmp.use_rsa_tmp
338                             || (l & (SSL_DH|SSL_kFZA))
339                             || ((l & SSL_kRSA)
340                                 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
341                                     || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
342                                         && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
343                                         )
344                                     )
345                                 )
346                             )
347                                 {
348                                 ret=dtls1_send_server_key_exchange(s);
349                                 if (ret <= 0) goto end;
350                                 }
351                         else
352                                 skip=1;
353
354                         s->state=SSL3_ST_SW_CERT_REQ_A;
355                         s->init_num=0;
356                         break;
357
358                 case SSL3_ST_SW_CERT_REQ_A:
359                 case SSL3_ST_SW_CERT_REQ_B:
360                         if (/* don't request cert unless asked for it: */
361                                 !(s->verify_mode & SSL_VERIFY_PEER) ||
362                                 /* if SSL_VERIFY_CLIENT_ONCE is set,
363                                  * don't request cert during re-negotiation: */
364                                 ((s->session->peer != NULL) &&
365                                  (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
366                                 /* never request cert in anonymous ciphersuites
367                                  * (see section "Certificate request" in SSL 3 drafts
368                                  * and in RFC 2246): */
369                                 ((s->s3->tmp.new_cipher->algorithms & SSL_aNULL) &&
370                                  /* ... except when the application insists on verification
371                                   * (against the specs, but s3_clnt.c accepts this for SSL 3) */
372                                  !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
373                                  /* never request cert in Kerberos ciphersuites */
374                                 (s->s3->tmp.new_cipher->algorithms & SSL_aKRB5))
375                                 {
376                                 /* no cert request */
377                                 skip=1;
378                                 s->s3->tmp.cert_request=0;
379                                 s->state=SSL3_ST_SW_SRVR_DONE_A;
380                                 }
381                         else
382                                 {
383                                 s->s3->tmp.cert_request=1;
384                                 ret=dtls1_send_certificate_request(s);
385                                 if (ret <= 0) goto end;
386 #ifndef NETSCAPE_HANG_BUG
387                                 s->state=SSL3_ST_SW_SRVR_DONE_A;
388 #else
389                                 s->state=SSL3_ST_SW_FLUSH;
390                                 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
391 #endif
392                                 s->init_num=0;
393                                 }
394                         break;
395
396                 case SSL3_ST_SW_SRVR_DONE_A:
397                 case SSL3_ST_SW_SRVR_DONE_B:
398                         ret=dtls1_send_server_done(s);
399                         if (ret <= 0) goto end;
400                         s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
401                         s->state=SSL3_ST_SW_FLUSH;
402                         s->init_num=0;
403                         break;
404                 
405                 case SSL3_ST_SW_FLUSH:
406                         /* number of bytes to be flushed */
407                         num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL);
408                         if (num1 > 0)
409                                 {
410                                 s->rwstate=SSL_WRITING;
411                                 num1=BIO_flush(s->wbio);
412                                 if (num1 <= 0) { ret= -1; goto end; }
413                                 s->rwstate=SSL_NOTHING;
414                                 }
415
416                         s->state=s->s3->tmp.next_state;
417                         break;
418
419                 case SSL3_ST_SR_CERT_A:
420                 case SSL3_ST_SR_CERT_B:
421                         /* Check for second client hello (MS SGC) */
422                         ret = ssl3_check_client_hello(s);
423                         if (ret <= 0)
424                                 goto end;
425                         if (ret == 2)
426                                 s->state = SSL3_ST_SR_CLNT_HELLO_C;
427                         else {
428                                 /* could be sent for a DH cert, even if we
429                                  * have not asked for it :-) */
430                                 ret=ssl3_get_client_certificate(s);
431                                 if (ret <= 0) goto end;
432                                 s->init_num=0;
433                                 s->state=SSL3_ST_SR_KEY_EXCH_A;
434                         }
435                         break;
436
437                 case SSL3_ST_SR_KEY_EXCH_A:
438                 case SSL3_ST_SR_KEY_EXCH_B:
439                         ret=ssl3_get_client_key_exchange(s);
440                         if (ret <= 0) goto end;
441                         s->state=SSL3_ST_SR_CERT_VRFY_A;
442                         s->init_num=0;
443
444                         /* We need to get hashes here so if there is
445                          * a client cert, it can be verified */ 
446                         s->method->ssl3_enc->cert_verify_mac(s,
447                                 &(s->s3->finish_dgst1),
448                                 &(s->s3->tmp.cert_verify_md[0]));
449                         s->method->ssl3_enc->cert_verify_mac(s,
450                                 &(s->s3->finish_dgst2),
451                                 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]));
452
453                         break;
454
455                 case SSL3_ST_SR_CERT_VRFY_A:
456                 case SSL3_ST_SR_CERT_VRFY_B:
457
458                         /* we should decide if we expected this one */
459                         ret=ssl3_get_cert_verify(s);
460                         if (ret <= 0) goto end;
461
462                         s->state=SSL3_ST_SR_FINISHED_A;
463                         s->init_num=0;
464                         break;
465
466                 case SSL3_ST_SR_FINISHED_A:
467                 case SSL3_ST_SR_FINISHED_B:
468                         ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
469                                 SSL3_ST_SR_FINISHED_B);
470                         if (ret <= 0) goto end;
471                         if (s->hit)
472                                 s->state=SSL_ST_OK;
473                         else
474                                 s->state=SSL3_ST_SW_CHANGE_A;
475                         s->init_num=0;
476                         break;
477
478                 case SSL3_ST_SW_CHANGE_A:
479                 case SSL3_ST_SW_CHANGE_B:
480
481                         s->session->cipher=s->s3->tmp.new_cipher;
482                         if (!s->method->ssl3_enc->setup_key_block(s))
483                                 { ret= -1; goto end; }
484
485                         ret=dtls1_send_change_cipher_spec(s,
486                                 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
487
488                         if (ret <= 0) goto end;
489                         s->state=SSL3_ST_SW_FINISHED_A;
490                         s->init_num=0;
491
492                         if (!s->method->ssl3_enc->change_cipher_state(s,
493                                 SSL3_CHANGE_CIPHER_SERVER_WRITE))
494                                 {
495                                 ret= -1;
496                                 goto end;
497                                 }
498
499                         dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
500                         break;
501
502                 case SSL3_ST_SW_FINISHED_A:
503                 case SSL3_ST_SW_FINISHED_B:
504                         ret=dtls1_send_finished(s,
505                                 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
506                                 s->method->ssl3_enc->server_finished_label,
507                                 s->method->ssl3_enc->server_finished_label_len);
508                         if (ret <= 0) goto end;
509                         s->state=SSL3_ST_SW_FLUSH;
510                         if (s->hit)
511                                 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
512                         else
513                                 s->s3->tmp.next_state=SSL_ST_OK;
514                         s->init_num=0;
515                         break;
516
517                 case SSL_ST_OK:
518                         /* clean a few things up */
519                         ssl3_cleanup_key_block(s);
520
521 #if 0
522                         BUF_MEM_free(s->init_buf);
523                         s->init_buf=NULL;
524 #endif
525
526                         /* remove buffering on output */
527                         ssl_free_wbio_buffer(s);
528
529                         s->init_num=0;
530
531                         if (s->new_session == 2) /* skipped if we just sent a HelloRequest */
532                                 {
533                                 /* actually not necessarily a 'new' session unless
534                                  * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */
535                                 
536                                 s->new_session=0;
537                                 
538                                 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
539                                 
540                                 s->ctx->stats.sess_accept_good++;
541                                 /* s->server=1; */
542                                 s->handshake_func=dtls1_accept;
543
544                                 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
545                                 }
546                         
547                         ret = 1;
548
549                         /* done handshaking, next message is client hello */
550                         s->d1->handshake_read_seq = 0;
551                         /* next message is server hello */
552                         s->d1->handshake_write_seq = 0;
553                         goto end;
554                         /* break; */
555
556                 default:
557                         SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_UNKNOWN_STATE);
558                         ret= -1;
559                         goto end;
560                         /* break; */
561                         }
562                 
563                 if (!s->s3->tmp.reuse_message && !skip)
564                         {
565                         if (s->debug)
566                                 {
567                                 if ((ret=BIO_flush(s->wbio)) <= 0)
568                                         goto end;
569                                 }
570
571
572                         if ((cb != NULL) && (s->state != state))
573                                 {
574                                 new_state=s->state;
575                                 s->state=state;
576                                 cb(s,SSL_CB_ACCEPT_LOOP,1);
577                                 s->state=new_state;
578                                 }
579                         }
580                 skip=0;
581                 }
582 end:
583         /* BIO_flush(s->wbio); */
584
585         s->in_handshake--;
586         if (cb != NULL)
587                 cb(s,SSL_CB_ACCEPT_EXIT,ret);
588         return(ret);
589         }
590
591 int dtls1_send_hello_request(SSL *s)
592         {
593         unsigned char *p;
594
595         if (s->state == SSL3_ST_SW_HELLO_REQ_A)
596                 {
597                 p=(unsigned char *)s->init_buf->data;
598                 p = dtls1_set_message_header(s, p, SSL3_MT_HELLO_REQUEST, 0, 0, 0);
599
600                 s->state=SSL3_ST_SW_HELLO_REQ_B;
601                 /* number of bytes to write */
602                 s->init_num=DTLS1_HM_HEADER_LENGTH;
603                 s->init_off=0;
604
605                 /* no need to buffer this message, since there are no retransmit 
606                  * requests for it */
607                 }
608
609         /* SSL3_ST_SW_HELLO_REQ_B */
610         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
611         }
612
613 int dtls1_send_hello_verify_request(SSL *s)
614         {
615         unsigned int msg_len;
616         unsigned char *msg, *buf, *p;
617
618         if (s->state == DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A)
619                 {
620                 buf = (unsigned char *)s->init_buf->data;
621
622                 msg = p = &(buf[DTLS1_HM_HEADER_LENGTH]);
623                 if (s->client_version == DTLS1_BAD_VER)
624                         *(p++) = DTLS1_BAD_VER>>8,
625                         *(p++) = DTLS1_BAD_VER&0xff;
626                 else
627                         *(p++) = s->version >> 8,
628                         *(p++) = s->version & 0xFF;
629
630                 *(p++) = (unsigned char) s->d1->cookie_len;
631
632                 if (s->ctx->app_gen_cookie_cb != NULL &&
633                     s->ctx->app_gen_cookie_cb(s, s->d1->cookie, 
634                     &(s->d1->cookie_len)) == 0)
635                         {
636                         SSLerr(SSL_F_DTLS1_SEND_HELLO_VERIFY_REQUEST,ERR_R_INTERNAL_ERROR);
637                         return 0;
638                         }
639                 /* else the cookie is assumed to have 
640                  * been initialized by the application */
641
642                 memcpy(p, s->d1->cookie, s->d1->cookie_len);
643                 p += s->d1->cookie_len;
644                 msg_len = p - msg;
645
646                 dtls1_set_message_header(s, buf,
647                         DTLS1_MT_HELLO_VERIFY_REQUEST, msg_len, 0, msg_len);
648
649                 s->state=DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B;
650                 /* number of bytes to write */
651                 s->init_num=p-buf;
652                 s->init_off=0;
653
654                 /* buffer the message to handle re-xmits */
655                 dtls1_buffer_message(s, 0);
656                 }
657
658         /* s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B */
659         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
660         }
661
662 int dtls1_send_server_hello(SSL *s)
663         {
664         unsigned char *buf;
665         unsigned char *p,*d;
666         int i;
667         unsigned int sl;
668         unsigned long l,Time;
669
670         if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
671                 {
672                 buf=(unsigned char *)s->init_buf->data;
673                 p=s->s3->server_random;
674                 Time=(unsigned long)time(NULL);                 /* Time */
675                 l2n(Time,p);
676                 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
677                 /* Do the message type and length last */
678                 d=p= &(buf[DTLS1_HM_HEADER_LENGTH]);
679
680                 if (s->client_version == DTLS1_BAD_VER)
681                         *(p++)=DTLS1_BAD_VER>>8,
682                         *(p++)=DTLS1_BAD_VER&0xff;
683                 else
684                         *(p++)=s->version>>8,
685                         *(p++)=s->version&0xff;
686
687                 /* Random stuff */
688                 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
689                 p+=SSL3_RANDOM_SIZE;
690
691                 /* now in theory we have 3 options to sending back the
692                  * session id.  If it is a re-use, we send back the
693                  * old session-id, if it is a new session, we send
694                  * back the new session-id or we send back a 0 length
695                  * session-id if we want it to be single use.
696                  * Currently I will not implement the '0' length session-id
697                  * 12-Jan-98 - I'll now support the '0' length stuff.
698                  */
699                 if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER))
700                         s->session->session_id_length=0;
701
702                 sl=s->session->session_id_length;
703                 if (sl > sizeof s->session->session_id)
704                         {
705                         SSLerr(SSL_F_DTLS1_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
706                         return -1;
707                         }
708                 *(p++)=sl;
709                 memcpy(p,s->session->session_id,sl);
710                 p+=sl;
711
712                 /* put the cipher */
713                 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
714                 p+=i;
715
716                 /* put the compression method */
717 #ifdef OPENSSL_NO_COMP
718                 *(p++)=0;
719 #else
720                 if (s->s3->tmp.new_compression == NULL)
721                         *(p++)=0;
722                 else
723                         *(p++)=s->s3->tmp.new_compression->id;
724 #endif
725
726                 /* do the header */
727                 l=(p-d);
728                 d=buf;
729
730                 d = dtls1_set_message_header(s, d, SSL3_MT_SERVER_HELLO, l, 0, l);
731
732                 s->state=SSL3_ST_CW_CLNT_HELLO_B;
733                 /* number of bytes to write */
734                 s->init_num=p-buf;
735                 s->init_off=0;
736
737                 /* buffer the message to handle re-xmits */
738                 dtls1_buffer_message(s, 0);
739                 }
740
741         /* SSL3_ST_CW_CLNT_HELLO_B */
742         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
743         }
744
745 int dtls1_send_server_done(SSL *s)
746         {
747         unsigned char *p;
748
749         if (s->state == SSL3_ST_SW_SRVR_DONE_A)
750                 {
751                 p=(unsigned char *)s->init_buf->data;
752
753                 /* do the header */
754                 p = dtls1_set_message_header(s, p, SSL3_MT_SERVER_DONE, 0, 0, 0);
755
756                 s->state=SSL3_ST_SW_SRVR_DONE_B;
757                 /* number of bytes to write */
758                 s->init_num=DTLS1_HM_HEADER_LENGTH;
759                 s->init_off=0;
760
761                 /* buffer the message to handle re-xmits */
762                 dtls1_buffer_message(s, 0);
763                 }
764
765         /* SSL3_ST_CW_CLNT_HELLO_B */
766         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
767         }
768
769 int dtls1_send_server_key_exchange(SSL *s)
770         {
771 #ifndef OPENSSL_NO_RSA
772         unsigned char *q;
773         int j,num;
774         RSA *rsa;
775         unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
776         unsigned int u;
777 #endif
778 #ifndef OPENSSL_NO_DH
779         DH *dh=NULL,*dhp;
780 #endif
781         EVP_PKEY *pkey;
782         unsigned char *p,*d;
783         int al,i;
784         unsigned long type;
785         int n;
786         CERT *cert;
787         BIGNUM *r[4];
788         int nr[4],kn;
789         BUF_MEM *buf;
790         EVP_MD_CTX md_ctx;
791
792         EVP_MD_CTX_init(&md_ctx);
793         if (s->state == SSL3_ST_SW_KEY_EXCH_A)
794                 {
795                 type=s->s3->tmp.new_cipher->algorithms & SSL_MKEY_MASK;
796                 cert=s->cert;
797
798                 buf=s->init_buf;
799
800                 r[0]=r[1]=r[2]=r[3]=NULL;
801                 n=0;
802 #ifndef OPENSSL_NO_RSA
803                 if (type & SSL_kRSA)
804                         {
805                         rsa=cert->rsa_tmp;
806                         if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
807                                 {
808                                 rsa=s->cert->rsa_tmp_cb(s,
809                                       SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
810                                       SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
811                                 if(rsa == NULL)
812                                 {
813                                         al=SSL_AD_HANDSHAKE_FAILURE;
814                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
815                                         goto f_err;
816                                 }
817                                 RSA_up_ref(rsa);
818                                 cert->rsa_tmp=rsa;
819                                 }
820                         if (rsa == NULL)
821                                 {
822                                 al=SSL_AD_HANDSHAKE_FAILURE;
823                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
824                                 goto f_err;
825                                 }
826                         r[0]=rsa->n;
827                         r[1]=rsa->e;
828                         s->s3->tmp.use_rsa_tmp=1;
829                         }
830                 else
831 #endif
832 #ifndef OPENSSL_NO_DH
833                         if (type & SSL_kEDH)
834                         {
835                         dhp=cert->dh_tmp;
836                         if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
837                                 dhp=s->cert->dh_tmp_cb(s,
838                                       SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
839                                       SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
840                         if (dhp == NULL)
841                                 {
842                                 al=SSL_AD_HANDSHAKE_FAILURE;
843                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
844                                 goto f_err;
845                                 }
846
847                         if (s->s3->tmp.dh != NULL)
848                                 {
849                                 DH_free(dh);
850                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
851                                 goto err;
852                                 }
853
854                         if ((dh=DHparams_dup(dhp)) == NULL)
855                                 {
856                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
857                                 goto err;
858                                 }
859
860                         s->s3->tmp.dh=dh;
861                         if ((dhp->pub_key == NULL ||
862                              dhp->priv_key == NULL ||
863                              (s->options & SSL_OP_SINGLE_DH_USE)))
864                                 {
865                                 if(!DH_generate_key(dh))
866                                     {
867                                     SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,
868                                            ERR_R_DH_LIB);
869                                     goto err;
870                                     }
871                                 }
872                         else
873                                 {
874                                 dh->pub_key=BN_dup(dhp->pub_key);
875                                 dh->priv_key=BN_dup(dhp->priv_key);
876                                 if ((dh->pub_key == NULL) ||
877                                         (dh->priv_key == NULL))
878                                         {
879                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
880                                         goto err;
881                                         }
882                                 }
883                         r[0]=dh->p;
884                         r[1]=dh->g;
885                         r[2]=dh->pub_key;
886                         }
887                 else 
888 #endif
889                         {
890                         al=SSL_AD_HANDSHAKE_FAILURE;
891                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
892                         goto f_err;
893                         }
894                 for (i=0; r[i] != NULL; i++)
895                         {
896                         nr[i]=BN_num_bytes(r[i]);
897                         n+=2+nr[i];
898                         }
899
900                 if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
901                         {
902                         if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher))
903                                 == NULL)
904                                 {
905                                 al=SSL_AD_DECODE_ERROR;
906                                 goto f_err;
907                                 }
908                         kn=EVP_PKEY_size(pkey);
909                         }
910                 else
911                         {
912                         pkey=NULL;
913                         kn=0;
914                         }
915
916                 if (!BUF_MEM_grow_clean(buf,n+DTLS1_HM_HEADER_LENGTH+kn))
917                         {
918                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
919                         goto err;
920                         }
921                 d=(unsigned char *)s->init_buf->data;
922                 p= &(d[DTLS1_HM_HEADER_LENGTH]);
923
924                 for (i=0; r[i] != NULL; i++)
925                         {
926                         s2n(nr[i],p);
927                         BN_bn2bin(r[i],p);
928                         p+=nr[i];
929                         }
930
931                 /* not anonymous */
932                 if (pkey != NULL)
933                         {
934                         /* n is the length of the params, they start at
935                          * &(d[DTLS1_HM_HEADER_LENGTH]) and p points to the space
936                          * at the end. */
937 #ifndef OPENSSL_NO_RSA
938                         if (pkey->type == EVP_PKEY_RSA)
939                                 {
940                                 q=md_buf;
941                                 j=0;
942                                 for (num=2; num > 0; num--)
943                                         {
944                                         EVP_DigestInit_ex(&md_ctx,(num == 2)
945                                                 ?s->ctx->md5:s->ctx->sha1, NULL);
946                                         EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
947                                         EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
948                                         EVP_DigestUpdate(&md_ctx,&(d[DTLS1_HM_HEADER_LENGTH]),n);
949                                         EVP_DigestFinal_ex(&md_ctx,q,
950                                                 (unsigned int *)&i);
951                                         q+=i;
952                                         j+=i;
953                                         }
954                                 if (RSA_sign(NID_md5_sha1, md_buf, j,
955                                         &(p[2]), &u, pkey->pkey.rsa) <= 0)
956                                         {
957                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
958                                         goto err;
959                                         }
960                                 s2n(u,p);
961                                 n+=u+2;
962                                 }
963                         else
964 #endif
965 #if !defined(OPENSSL_NO_DSA)
966                                 if (pkey->type == EVP_PKEY_DSA)
967                                 {
968                                 /* lets do DSS */
969                                 EVP_SignInit_ex(&md_ctx,EVP_dss1(), NULL);
970                                 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
971                                 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
972                                 EVP_SignUpdate(&md_ctx,&(d[DTLS1_HM_HEADER_LENGTH]),n);
973                                 if (!EVP_SignFinal(&md_ctx,&(p[2]),
974                                         (unsigned int *)&i,pkey))
975                                         {
976                                         SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_DSA);
977                                         goto err;
978                                         }
979                                 s2n(i,p);
980                                 n+=i+2;
981                                 }
982                         else
983 #endif
984                                 {
985                                 /* Is this error check actually needed? */
986                                 al=SSL_AD_HANDSHAKE_FAILURE;
987                                 SSLerr(SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
988                                 goto f_err;
989                                 }
990                         }
991
992                 d = dtls1_set_message_header(s, d,
993                         SSL3_MT_SERVER_KEY_EXCHANGE, n, 0, n);
994
995                 /* we should now have things packed up, so lets send
996                  * it off */
997                 s->init_num=n+DTLS1_HM_HEADER_LENGTH;
998                 s->init_off=0;
999
1000                 /* buffer the message to handle re-xmits */
1001                 dtls1_buffer_message(s, 0);
1002                 }
1003
1004         s->state = SSL3_ST_SW_KEY_EXCH_B;
1005         EVP_MD_CTX_cleanup(&md_ctx);
1006         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1007 f_err:
1008         ssl3_send_alert(s,SSL3_AL_FATAL,al);
1009 err:
1010         EVP_MD_CTX_cleanup(&md_ctx);
1011         return(-1);
1012         }
1013
1014 int dtls1_send_certificate_request(SSL *s)
1015         {
1016         unsigned char *p,*d;
1017         int i,j,nl,off,n;
1018         STACK_OF(X509_NAME) *sk=NULL;
1019         X509_NAME *name;
1020         BUF_MEM *buf;
1021         unsigned int msg_len;
1022
1023         if (s->state == SSL3_ST_SW_CERT_REQ_A)
1024                 {
1025                 buf=s->init_buf;
1026
1027                 d=p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH]);
1028
1029                 /* get the list of acceptable cert types */
1030                 p++;
1031                 n=ssl3_get_req_cert_type(s,p);
1032                 d[0]=n;
1033                 p+=n;
1034                 n++;
1035
1036                 off=n;
1037                 p+=2;
1038                 n+=2;
1039
1040                 sk=SSL_get_client_CA_list(s);
1041                 nl=0;
1042                 if (sk != NULL)
1043                         {
1044                         for (i=0; i<sk_X509_NAME_num(sk); i++)
1045                                 {
1046                                 name=sk_X509_NAME_value(sk,i);
1047                                 j=i2d_X509_NAME(name,NULL);
1048                                 if (!BUF_MEM_grow_clean(buf,DTLS1_HM_HEADER_LENGTH+n+j+2))
1049                                         {
1050                                         SSLerr(SSL_F_DTLS1_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
1051                                         goto err;
1052                                         }
1053                                 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH+n]);
1054                                 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
1055                                         {
1056                                         s2n(j,p);
1057                                         i2d_X509_NAME(name,&p);
1058                                         n+=2+j;
1059                                         nl+=2+j;
1060                                         }
1061                                 else
1062                                         {
1063                                         d=p;
1064                                         i2d_X509_NAME(name,&p);
1065                                         j-=2; s2n(j,d); j+=2;
1066                                         n+=j;
1067                                         nl+=j;
1068                                         }
1069                                 }
1070                         }
1071                 /* else no CA names */
1072                 p=(unsigned char *)&(buf->data[DTLS1_HM_HEADER_LENGTH+off]);
1073                 s2n(nl,p);
1074
1075                 d=(unsigned char *)buf->data;
1076                 *(d++)=SSL3_MT_CERTIFICATE_REQUEST;
1077                 l2n3(n,d);
1078                 s2n(s->d1->handshake_write_seq,d);
1079                 s->d1->handshake_write_seq++;
1080
1081                 /* we should now have things packed up, so lets send
1082                  * it off */
1083
1084                 s->init_num=n+DTLS1_HM_HEADER_LENGTH;
1085                 s->init_off=0;
1086 #ifdef NETSCAPE_HANG_BUG
1087 /* XXX: what to do about this? */
1088                 p=(unsigned char *)s->init_buf->data + s->init_num;
1089
1090                 /* do the header */
1091                 *(p++)=SSL3_MT_SERVER_DONE;
1092                 *(p++)=0;
1093                 *(p++)=0;
1094                 *(p++)=0;
1095                 s->init_num += 4;
1096 #endif
1097
1098                 /* XDTLS:  set message header ? */
1099                 msg_len = s->init_num - DTLS1_HM_HEADER_LENGTH;
1100                 dtls1_set_message_header(s, (void *)s->init_buf->data,
1101                         SSL3_MT_CERTIFICATE_REQUEST, msg_len, 0, msg_len);
1102
1103                 /* buffer the message to handle re-xmits */
1104                 dtls1_buffer_message(s, 0);
1105
1106                 s->state = SSL3_ST_SW_CERT_REQ_B;
1107                 }
1108
1109         /* SSL3_ST_SW_CERT_REQ_B */
1110         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1111 err:
1112         return(-1);
1113         }
1114
1115 int dtls1_send_server_certificate(SSL *s)
1116         {
1117         unsigned long l;
1118         X509 *x;
1119
1120         if (s->state == SSL3_ST_SW_CERT_A)
1121                 {
1122                 x=ssl_get_server_send_cert(s);
1123                 if (x == NULL &&
1124                         /* VRS: allow null cert if auth == KRB5 */
1125                         (s->s3->tmp.new_cipher->algorithms
1126                                 & (SSL_MKEY_MASK|SSL_AUTH_MASK))
1127                         != (SSL_aKRB5|SSL_kKRB5))
1128                         {
1129                         SSLerr(SSL_F_DTLS1_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
1130                         return(0);
1131                         }
1132
1133                 l=dtls1_output_cert_chain(s,x);
1134                 s->state=SSL3_ST_SW_CERT_B;
1135                 s->init_num=(int)l;
1136                 s->init_off=0;
1137
1138                 /* buffer the message to handle re-xmits */
1139                 dtls1_buffer_message(s, 0);
1140                 }
1141
1142         /* SSL3_ST_SW_CERT_B */
1143         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
1144         }