Fixed memory leak if BUF_MEM_grow fails
[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 if (ver == DTLS1_2_VERSION)
137                 return(DTLSv1_2_server_method());
138         else
139                 return(NULL);
140         }
141
142 IMPLEMENT_dtls1_meth_func(DTLS1_VERSION,
143                         DTLSv1_server_method,
144                         dtls1_accept,
145                         ssl_undefined_function,
146                         dtls1_get_server_method,
147                         DTLSv1_enc_data)
148
149 IMPLEMENT_dtls1_meth_func(DTLS1_2_VERSION,
150                         DTLSv1_2_server_method,
151                         dtls1_accept,
152                         ssl_undefined_function,
153                         dtls1_get_server_method,
154                         DTLSv1_2_enc_data)
155
156 IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION,
157                         DTLS_server_method,
158                         dtls1_accept,
159                         ssl_undefined_function,
160                         dtls1_get_server_method,
161                         DTLSv1_2_enc_data)
162
163 int dtls1_accept(SSL *s)
164         {
165         BUF_MEM *buf;
166         unsigned long Time=(unsigned long)time(NULL);
167         void (*cb)(const SSL *ssl,int type,int val)=NULL;
168         unsigned long alg_k;
169         int ret= -1;
170         int new_state,state,skip=0;
171         int listen;
172 #ifndef OPENSSL_NO_SCTP
173         unsigned char sctpauthkey[64];
174         char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
175 #endif
176
177         RAND_add(&Time,sizeof(Time),0);
178         ERR_clear_error();
179         clear_sys_error();
180
181         if (s->info_callback != NULL)
182                 cb=s->info_callback;
183         else if (s->ctx->info_callback != NULL)
184                 cb=s->ctx->info_callback;
185         
186         listen = s->d1->listen;
187
188         /* init things to blank */
189         s->in_handshake++;
190         if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
191
192         s->d1->listen = listen;
193 #ifndef OPENSSL_NO_SCTP
194         /* Notify SCTP BIO socket to enter handshake
195          * mode and prevent stream identifier other
196          * than 0. Will be ignored if no SCTP is used.
197          */
198         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE, s->in_handshake, NULL);
199 #endif
200
201         if (s->cert == NULL)
202                 {
203                 SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
204                 return(-1);
205                 }
206
207 #ifndef OPENSSL_NO_HEARTBEATS
208         /* If we're awaiting a HeartbeatResponse, pretend we
209          * already got and don't await it anymore, because
210          * Heartbeats don't make sense during handshakes anyway.
211          */
212         if (s->tlsext_hb_pending)
213                 {
214                 dtls1_stop_timer(s);
215                 s->tlsext_hb_pending = 0;
216                 s->tlsext_hb_seq++;
217                 }
218 #endif
219
220         for (;;)
221                 {
222                 state=s->state;
223
224                 switch (s->state)
225                         {
226                 case SSL_ST_RENEGOTIATE:
227                         s->renegotiate=1;
228                         /* s->state=SSL_ST_ACCEPT; */
229
230                 case SSL_ST_BEFORE:
231                 case SSL_ST_ACCEPT:
232                 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
233                 case SSL_ST_OK|SSL_ST_ACCEPT:
234
235                         s->server=1;
236                         if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
237
238                         if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00))
239                                 {
240                                 SSLerr(SSL_F_DTLS1_ACCEPT, ERR_R_INTERNAL_ERROR);
241                                 return -1;
242                                 }
243                         s->type=SSL_ST_ACCEPT;
244
245                         if (s->init_buf == NULL)
246                                 {
247                                 if ((buf=BUF_MEM_new()) == NULL)
248                                         {
249                                         ret= -1;
250                                         goto end;
251                                         }
252                                 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
253                                         {
254                                         BUF_MEM_free(buf);
255                                         ret= -1;
256                                         goto end;
257                                         }
258                                 s->init_buf=buf;
259                                 }
260
261                         if (!ssl3_setup_buffers(s))
262                                 {
263                                 ret= -1;
264                                 goto end;
265                                 }
266
267                         s->init_num=0;
268                         s->d1->change_cipher_spec_ok = 0;
269                         /* Should have been reset by ssl3_get_finished, too. */
270                         s->s3->change_cipher_spec = 0;
271
272                         if (s->state != SSL_ST_RENEGOTIATE)
273                                 {
274                                 /* Ok, we now need to push on a buffering BIO so that
275                                  * the output is sent in a way that TCP likes :-)
276                                  * ...but not with SCTP :-)
277                                  */
278 #ifndef OPENSSL_NO_SCTP
279                                 if (!BIO_dgram_is_sctp(SSL_get_wbio(s)))
280 #endif
281                                         if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
282
283                                 ssl3_init_finished_mac(s);
284                                 s->state=SSL3_ST_SR_CLNT_HELLO_A;
285                                 s->ctx->stats.sess_accept++;
286                                 }
287                         else
288                                 {
289                                 /* s->state == SSL_ST_RENEGOTIATE,
290                                  * we will just send a HelloRequest */
291                                 s->ctx->stats.sess_accept_renegotiate++;
292                                 s->state=SSL3_ST_SW_HELLO_REQ_A;
293                                 }
294
295                         break;
296
297                 case SSL3_ST_SW_HELLO_REQ_A:
298                 case SSL3_ST_SW_HELLO_REQ_B:
299
300                         s->shutdown=0;
301                         dtls1_clear_record_buffer(s);
302                         dtls1_start_timer(s);
303                         ret=ssl3_send_hello_request(s);
304                         if (ret <= 0) goto end;
305                         s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
306                         s->state=SSL3_ST_SW_FLUSH;
307                         s->init_num=0;
308
309                         ssl3_init_finished_mac(s);
310                         break;
311
312                 case SSL3_ST_SW_HELLO_REQ_C:
313                         s->state=SSL_ST_OK;
314                         break;
315
316                 case SSL3_ST_SR_CLNT_HELLO_A:
317                 case SSL3_ST_SR_CLNT_HELLO_B:
318                 case SSL3_ST_SR_CLNT_HELLO_C:
319
320                         s->shutdown=0;
321                         ret=ssl3_get_client_hello(s);
322                         if (ret <= 0) goto end;
323                         dtls1_stop_timer(s);
324
325                         if (ret == 1 && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
326                                 s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A;
327                         else
328                                 s->state = SSL3_ST_SW_SRVR_HELLO_A;
329
330                         s->init_num=0;
331
332                         /* Reflect ClientHello sequence to remain stateless while listening */
333                         if (listen)
334                                 {
335                                 memcpy(s->s3->write_sequence, s->s3->read_sequence, sizeof(s->s3->write_sequence));
336                                 }
337
338                         /* If we're just listening, stop here */
339                         if (listen && s->state == SSL3_ST_SW_SRVR_HELLO_A)
340                                 {
341                                 ret = 2;
342                                 s->d1->listen = 0;
343                                 /* Set expected sequence numbers
344                                  * to continue the handshake.
345                                  */
346                                 s->d1->handshake_read_seq = 2;
347                                 s->d1->handshake_write_seq = 1;
348                                 s->d1->next_handshake_write_seq = 1;
349                                 goto end;
350                                 }
351                         
352                         break;
353                         
354                 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A:
355                 case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B:
356
357                         ret = dtls1_send_hello_verify_request(s);
358                         if ( ret <= 0) goto end;
359                         s->state=SSL3_ST_SW_FLUSH;
360                         s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
361
362                         /* HelloVerifyRequest resets Finished MAC */
363                         if (s->version != DTLS1_BAD_VER)
364                                 ssl3_init_finished_mac(s);
365                         break;
366                         
367 #ifndef OPENSSL_NO_SCTP
368                 case DTLS1_SCTP_ST_SR_READ_SOCK:
369                         
370                         if (BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s)))                
371                                 {
372                                 s->s3->in_read_app_data=2;
373                                 s->rwstate=SSL_READING;
374                                 BIO_clear_retry_flags(SSL_get_rbio(s));
375                                 BIO_set_retry_read(SSL_get_rbio(s));
376                                 ret = -1;
377                                 goto end;
378                                 }
379                         
380                         s->state=SSL3_ST_SR_FINISHED_A;
381                         break;
382                         
383                 case DTLS1_SCTP_ST_SW_WRITE_SOCK:
384                         ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
385                         if (ret < 0) goto end;
386                         
387                         if (ret == 0)
388                                 {
389                                 if (s->d1->next_state != SSL_ST_OK)
390                                         {
391                                         s->s3->in_read_app_data=2;
392                                         s->rwstate=SSL_READING;
393                                         BIO_clear_retry_flags(SSL_get_rbio(s));
394                                         BIO_set_retry_read(SSL_get_rbio(s));
395                                         ret = -1;
396                                         goto end;
397                                         }
398                                 }
399
400                         s->state=s->d1->next_state;
401                         break;
402 #endif
403
404                 case SSL3_ST_SW_SRVR_HELLO_A:
405                 case SSL3_ST_SW_SRVR_HELLO_B:
406                         s->renegotiate = 2;
407                         dtls1_start_timer(s);
408                         ret=ssl3_send_server_hello(s);
409                         if (ret <= 0) goto end;
410
411                         if (s->hit)
412                                 {
413 #ifndef OPENSSL_NO_SCTP
414                                 /* Add new shared key for SCTP-Auth,
415                                  * will be ignored if no SCTP used.
416                                  */
417                                 snprintf((char*) labelbuffer, sizeof(DTLS1_SCTP_AUTH_LABEL),
418                                          DTLS1_SCTP_AUTH_LABEL);
419
420                                 SSL_export_keying_material(s, sctpauthkey,
421                                                            sizeof(sctpauthkey), labelbuffer,
422                                                            sizeof(labelbuffer), NULL, 0, 0);
423                                 
424                                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
425                          sizeof(sctpauthkey), sctpauthkey);
426 #endif
427 #ifndef OPENSSL_NO_TLSEXT
428                                 if (s->tlsext_ticket_expected)
429                                         s->state=SSL3_ST_SW_SESSION_TICKET_A;
430                                 else
431                                         s->state=SSL3_ST_SW_CHANGE_A;
432 #else
433                                 s->state=SSL3_ST_SW_CHANGE_A;
434 #endif
435                                 }
436                         else
437                                 s->state=SSL3_ST_SW_CERT_A;
438                         s->init_num=0;
439                         break;
440
441                 case SSL3_ST_SW_CERT_A:
442                 case SSL3_ST_SW_CERT_B:
443                         /* Check if it is anon DH or normal PSK */
444                         if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
445                                 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
446                                 {
447                                 dtls1_start_timer(s);
448                                 ret=ssl3_send_server_certificate(s);
449                                 if (ret <= 0) goto end;
450 #ifndef OPENSSL_NO_TLSEXT
451                                 if (s->tlsext_status_expected)
452                                         s->state=SSL3_ST_SW_CERT_STATUS_A;
453                                 else
454                                         s->state=SSL3_ST_SW_KEY_EXCH_A;
455                                 }
456                         else
457                                 {
458                                 skip = 1;
459                                 s->state=SSL3_ST_SW_KEY_EXCH_A;
460                                 }
461 #else
462                                 }
463                         else
464                                 skip=1;
465
466                         s->state=SSL3_ST_SW_KEY_EXCH_A;
467 #endif
468                         s->init_num=0;
469                         break;
470
471                 case SSL3_ST_SW_KEY_EXCH_A:
472                 case SSL3_ST_SW_KEY_EXCH_B:
473                         alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
474
475                         /* clear this, it may get reset by
476                          * send_server_key_exchange */
477                         if ((s->options & SSL_OP_EPHEMERAL_RSA)
478 #ifndef OPENSSL_NO_KRB5
479                                 && !(alg_k & SSL_kKRB5)
480 #endif /* OPENSSL_NO_KRB5 */
481                                 )
482                                 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
483                                  * even when forbidden by protocol specs
484                                  * (handshake may fail as clients are not required to
485                                  * be able to handle this) */
486                                 s->s3->tmp.use_rsa_tmp=1;
487                         else
488                                 s->s3->tmp.use_rsa_tmp=0;
489
490                         /* only send if a DH key exchange or
491                          * RSA but we have a sign only certificate */
492                         if (s->s3->tmp.use_rsa_tmp
493                         /* PSK: send ServerKeyExchange if PSK identity
494                          * hint if provided */
495 #ifndef OPENSSL_NO_PSK
496                             || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
497 #endif
498                             || (alg_k & (SSL_kDHE|SSL_kDHr|SSL_kDHd))
499                             || (alg_k & SSL_kECDHE)
500                             || ((alg_k & SSL_kRSA)
501                                 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
502                                     || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
503                                         && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
504                                         )
505                                     )
506                                 )
507                             )
508                                 {
509                                 dtls1_start_timer(s);
510                                 ret=ssl3_send_server_key_exchange(s);
511                                 if (ret <= 0) goto end;
512                                 }
513                         else
514                                 skip=1;
515
516                         s->state=SSL3_ST_SW_CERT_REQ_A;
517                         s->init_num=0;
518                         break;
519
520                 case SSL3_ST_SW_CERT_REQ_A:
521                 case SSL3_ST_SW_CERT_REQ_B:
522                         if (/* don't request cert unless asked for it: */
523                                 !(s->verify_mode & SSL_VERIFY_PEER) ||
524                                 /* if SSL_VERIFY_CLIENT_ONCE is set,
525                                  * don't request cert during re-negotiation: */
526                                 ((s->session->peer != NULL) &&
527                                  (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
528                                 /* never request cert in anonymous ciphersuites
529                                  * (see section "Certificate request" in SSL 3 drafts
530                                  * and in RFC 2246): */
531                                 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
532                                  /* ... except when the application insists on verification
533                                   * (against the specs, but s3_clnt.c accepts this for SSL 3) */
534                                  !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
535                                  /* never request cert in Kerberos ciphersuites */
536                                 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5)
537                                 /* With normal PSK Certificates and
538                                  * Certificate Requests are omitted */
539                                 || (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
540                                 {
541                                 /* no cert request */
542                                 skip=1;
543                                 s->s3->tmp.cert_request=0;
544                                 s->state=SSL3_ST_SW_SRVR_DONE_A;
545 #ifndef OPENSSL_NO_SCTP
546                                 if (BIO_dgram_is_sctp(SSL_get_wbio(s)))
547                                         {
548                                         s->d1->next_state = SSL3_ST_SW_SRVR_DONE_A;
549                                         s->state = DTLS1_SCTP_ST_SW_WRITE_SOCK;
550                                         }
551 #endif
552                                 }
553                         else
554                                 {
555                                 s->s3->tmp.cert_request=1;
556                                 dtls1_start_timer(s);
557                                 ret=ssl3_send_certificate_request(s);
558                                 if (ret <= 0) goto end;
559 #ifndef NETSCAPE_HANG_BUG
560                                 s->state=SSL3_ST_SW_SRVR_DONE_A;
561 #ifndef OPENSSL_NO_SCTP
562                                 if (BIO_dgram_is_sctp(SSL_get_wbio(s)))
563                                         {
564                                         s->d1->next_state = SSL3_ST_SW_SRVR_DONE_A;
565                                         s->state = DTLS1_SCTP_ST_SW_WRITE_SOCK;
566                                         }
567 #endif
568 #else
569                                 s->state=SSL3_ST_SW_FLUSH;
570                                 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
571 #ifndef OPENSSL_NO_SCTP
572                                 if (BIO_dgram_is_sctp(SSL_get_wbio(s)))
573                                         {
574                                         s->d1->next_state = s->s3->tmp.next_state;
575                                         s->s3->tmp.next_state=DTLS1_SCTP_ST_SW_WRITE_SOCK;
576                                         }
577 #endif
578 #endif
579                                 s->init_num=0;
580                                 }
581                         break;
582
583                 case SSL3_ST_SW_SRVR_DONE_A:
584                 case SSL3_ST_SW_SRVR_DONE_B:
585                         dtls1_start_timer(s);
586                         ret=ssl3_send_server_done(s);
587                         if (ret <= 0) goto end;
588                         s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
589                         s->state=SSL3_ST_SW_FLUSH;
590                         s->init_num=0;
591                         break;
592                 
593                 case SSL3_ST_SW_FLUSH:
594                         s->rwstate=SSL_WRITING;
595                         if (BIO_flush(s->wbio) <= 0)
596                                 {
597                                 /* If the write error was fatal, stop trying */
598                                 if (!BIO_should_retry(s->wbio))
599                                         {
600                                         s->rwstate=SSL_NOTHING;
601                                         s->state=s->s3->tmp.next_state;
602                                         }
603                                 
604                                 ret= -1;
605                                 goto end;
606                                 }
607                         s->rwstate=SSL_NOTHING;
608                         s->state=s->s3->tmp.next_state;
609                         break;
610
611                 case SSL3_ST_SR_CERT_A:
612                 case SSL3_ST_SR_CERT_B:
613                         /* Check for second client hello (MS SGC) */
614                         ret = ssl3_check_client_hello(s);
615                         if (ret <= 0)
616                                 goto end;
617                         if (ret == 2)
618                                 {
619                                 dtls1_stop_timer(s);
620                                 s->state = SSL3_ST_SR_CLNT_HELLO_C;
621                                 }
622                         else {
623                                 if (s->s3->tmp.cert_request)
624                                         {
625                                         ret=ssl3_get_client_certificate(s);
626                                         if (ret <= 0) goto end;
627                                         }
628                                 s->init_num=0;
629                                 s->state=SSL3_ST_SR_KEY_EXCH_A;
630                         }
631                         break;
632
633                 case SSL3_ST_SR_KEY_EXCH_A:
634                 case SSL3_ST_SR_KEY_EXCH_B:
635                         ret=ssl3_get_client_key_exchange(s);
636                         if (ret <= 0) goto end;
637 #ifndef OPENSSL_NO_SCTP
638                         /* Add new shared key for SCTP-Auth,
639                          * will be ignored if no SCTP used.
640                          */
641                         snprintf((char *) labelbuffer, sizeof(DTLS1_SCTP_AUTH_LABEL),
642                                  DTLS1_SCTP_AUTH_LABEL);
643
644                         SSL_export_keying_material(s, sctpauthkey,
645                                                    sizeof(sctpauthkey), labelbuffer,
646                                                    sizeof(labelbuffer), NULL, 0, 0);
647
648                         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
649                                  sizeof(sctpauthkey), sctpauthkey);
650 #endif
651
652                         s->state=SSL3_ST_SR_CERT_VRFY_A;
653                         s->init_num=0;
654
655                         if (ret == 2)
656                                 {
657                                 /* For the ECDH ciphersuites when
658                                  * the client sends its ECDH pub key in
659                                  * a certificate, the CertificateVerify
660                                  * message is not sent.
661                                  */
662                                 s->state=SSL3_ST_SR_FINISHED_A;
663                                 s->init_num = 0;
664                                 }
665                         else if (SSL_USE_SIGALGS(s))
666                                 {
667                                 s->state=SSL3_ST_SR_CERT_VRFY_A;
668                                 s->init_num=0;
669                                 if (!s->session->peer)
670                                         break;
671                                 /* For sigalgs freeze the handshake buffer
672                                  * at this point and digest cached records.
673                                  */
674                                 if (!s->s3->handshake_buffer)
675                                         {
676                                         SSLerr(SSL_F_DTLS1_ACCEPT,ERR_R_INTERNAL_ERROR);
677                                         return -1;
678                                         }
679                                 s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE;
680                                 if (!ssl3_digest_cached_records(s))
681                                         return -1;
682                                 }
683                         else
684                                 {
685                                 s->state=SSL3_ST_SR_CERT_VRFY_A;
686                                 s->init_num=0;
687
688                                 /* We need to get hashes here so if there is
689                                  * a client cert, it can be verified */ 
690                                 s->method->ssl3_enc->cert_verify_mac(s,
691                                         NID_md5,
692                                         &(s->s3->tmp.cert_verify_md[0]));
693                                 s->method->ssl3_enc->cert_verify_mac(s,
694                                         NID_sha1,
695                                         &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]));
696                                 }
697                         break;
698
699                 case SSL3_ST_SR_CERT_VRFY_A:
700                 case SSL3_ST_SR_CERT_VRFY_B:
701                         /*
702                          * This *should* be the first time we enable CCS, but be
703                          * extra careful about surrounding code changes. We need
704                          * to set this here because we don't know if we're
705                          * expecting a CertificateVerify or not.
706                          */
707                         if (!s->s3->change_cipher_spec)
708                                 s->d1->change_cipher_spec_ok = 1;
709                         /* we should decide if we expected this one */
710                         ret=ssl3_get_cert_verify(s);
711                         if (ret <= 0) goto end;
712 #ifndef OPENSSL_NO_SCTP
713                         if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
714                             state == SSL_ST_RENEGOTIATE)
715                                 s->state=DTLS1_SCTP_ST_SR_READ_SOCK;
716                         else
717 #endif                  
718                                 s->state=SSL3_ST_SR_FINISHED_A;
719                         s->init_num=0;
720                         break;
721
722                 case SSL3_ST_SR_FINISHED_A:
723                 case SSL3_ST_SR_FINISHED_B:
724                         /*
725                          * Enable CCS for resumed handshakes.
726                          * In a full handshake, we end up here through
727                          * SSL3_ST_SR_CERT_VRFY_B, so change_cipher_spec_ok was
728                          * already set. Receiving a CCS clears the flag, so make
729                          * sure not to re-enable it to ban duplicates.
730                          * s->s3->change_cipher_spec is set when a CCS is
731                          * processed in d1_pkt.c, and remains set until
732                          * the client's Finished message is read.
733                          */
734                         if (!s->s3->change_cipher_spec)
735                                 s->d1->change_cipher_spec_ok = 1;
736                         ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
737                                 SSL3_ST_SR_FINISHED_B);
738                         if (ret <= 0) goto end;
739                         dtls1_stop_timer(s);
740                         if (s->hit)
741                                 s->state=SSL_ST_OK;
742 #ifndef OPENSSL_NO_TLSEXT
743                         else if (s->tlsext_ticket_expected)
744                                 s->state=SSL3_ST_SW_SESSION_TICKET_A;
745 #endif
746                         else
747                                 s->state=SSL3_ST_SW_CHANGE_A;
748                         s->init_num=0;
749                         break;
750
751 #ifndef OPENSSL_NO_TLSEXT
752                 case SSL3_ST_SW_SESSION_TICKET_A:
753                 case SSL3_ST_SW_SESSION_TICKET_B:
754                         ret=ssl3_send_newsession_ticket(s);
755                         if (ret <= 0) goto end;
756                         s->state=SSL3_ST_SW_CHANGE_A;
757                         s->init_num=0;
758                         break;
759
760                 case SSL3_ST_SW_CERT_STATUS_A:
761                 case SSL3_ST_SW_CERT_STATUS_B:
762                         ret=ssl3_send_cert_status(s);
763                         if (ret <= 0) goto end;
764                         s->state=SSL3_ST_SW_KEY_EXCH_A;
765                         s->init_num=0;
766                         break;
767
768 #endif
769
770                 case SSL3_ST_SW_CHANGE_A:
771                 case SSL3_ST_SW_CHANGE_B:
772
773                         s->session->cipher=s->s3->tmp.new_cipher;
774                         if (!s->method->ssl3_enc->setup_key_block(s))
775                                 { ret= -1; goto end; }
776
777                         ret=dtls1_send_change_cipher_spec(s,
778                                 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
779
780                         if (ret <= 0) goto end;
781
782 #ifndef OPENSSL_NO_SCTP
783                         if (!s->hit)
784                                 {
785                                 /* Change to new shared key of SCTP-Auth,
786                                  * will be ignored if no SCTP used.
787                                  */
788                                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, 0, NULL);
789                                 }
790 #endif
791
792                         s->state=SSL3_ST_SW_FINISHED_A;
793                         s->init_num=0;
794
795                         if (!s->method->ssl3_enc->change_cipher_state(s,
796                                 SSL3_CHANGE_CIPHER_SERVER_WRITE))
797                                 {
798                                 ret= -1;
799                                 goto end;
800                                 }
801
802                         dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
803                         break;
804
805                 case SSL3_ST_SW_FINISHED_A:
806                 case SSL3_ST_SW_FINISHED_B:
807                         ret=ssl3_send_finished(s,
808                                 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
809                                 s->method->ssl3_enc->server_finished_label,
810                                 s->method->ssl3_enc->server_finished_label_len);
811                         if (ret <= 0) goto end;
812                         s->state=SSL3_ST_SW_FLUSH;
813                         if (s->hit)
814                                 {
815                                 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
816
817 #ifndef OPENSSL_NO_SCTP
818                                 /* Change to new shared key of SCTP-Auth,
819                                  * will be ignored if no SCTP used.
820                                  */
821                                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, 0, NULL);
822 #endif
823                                 }
824                         else
825                                 {
826                                 s->s3->tmp.next_state=SSL_ST_OK;
827 #ifndef OPENSSL_NO_SCTP
828                                 if (BIO_dgram_is_sctp(SSL_get_wbio(s)))
829                                         {
830                                         s->d1->next_state = s->s3->tmp.next_state;
831                                         s->s3->tmp.next_state=DTLS1_SCTP_ST_SW_WRITE_SOCK;
832                                         }
833 #endif
834                                 }
835                         s->init_num=0;
836                         break;
837
838                 case SSL_ST_OK:
839                         /* clean a few things up */
840                         ssl3_cleanup_key_block(s);
841
842 #if 0
843                         BUF_MEM_free(s->init_buf);
844                         s->init_buf=NULL;
845 #endif
846
847                         /* remove buffering on output */
848                         ssl_free_wbio_buffer(s);
849
850                         s->init_num=0;
851
852                         if (s->renegotiate == 2) /* skipped if we just sent a HelloRequest */
853                                 {
854                                 s->renegotiate=0;
855                                 s->new_session=0;
856                                 
857                                 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
858                                 
859                                 s->ctx->stats.sess_accept_good++;
860                                 /* s->server=1; */
861                                 s->handshake_func=dtls1_accept;
862
863                                 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
864                                 }
865                         
866                         ret = 1;
867
868                         /* done handshaking, next message is client hello */
869                         s->d1->handshake_read_seq = 0;
870                         /* next message is server hello */
871                         s->d1->handshake_write_seq = 0;
872                         s->d1->next_handshake_write_seq = 0;
873                         goto end;
874                         /* break; */
875
876                 default:
877                         SSLerr(SSL_F_DTLS1_ACCEPT,SSL_R_UNKNOWN_STATE);
878                         ret= -1;
879                         goto end;
880                         /* break; */
881                         }
882                 
883                 if (!s->s3->tmp.reuse_message && !skip)
884                         {
885                         if (s->debug)
886                                 {
887                                 if ((ret=BIO_flush(s->wbio)) <= 0)
888                                         goto end;
889                                 }
890
891
892                         if ((cb != NULL) && (s->state != state))
893                                 {
894                                 new_state=s->state;
895                                 s->state=state;
896                                 cb(s,SSL_CB_ACCEPT_LOOP,1);
897                                 s->state=new_state;
898                                 }
899                         }
900                 skip=0;
901                 }
902 end:
903         /* BIO_flush(s->wbio); */
904
905         s->in_handshake--;
906 #ifndef OPENSSL_NO_SCTP
907                 /* Notify SCTP BIO socket to leave handshake
908                  * mode and prevent stream identifier other
909                  * than 0. Will be ignored if no SCTP is used.
910                  */
911                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE, s->in_handshake, NULL);
912 #endif
913
914         if (cb != NULL)
915                 cb(s,SSL_CB_ACCEPT_EXIT,ret);
916         return(ret);
917         }
918
919 int dtls1_send_hello_verify_request(SSL *s)
920         {
921         unsigned int msg_len;
922         unsigned char *msg, *buf, *p;
923
924         if (s->state == DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A)
925                 {
926                 buf = (unsigned char *)s->init_buf->data;
927
928                 msg = p = &(buf[DTLS1_HM_HEADER_LENGTH]);
929                 /* Always use DTLS 1.0 version: see RFC 6347 */
930                 *(p++) = DTLS1_VERSION >> 8;
931                 *(p++) = DTLS1_VERSION & 0xFF;
932
933                 if (s->ctx->app_gen_cookie_cb == NULL ||
934                      s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
935                          &(s->d1->cookie_len)) == 0)
936                         {
937                         SSLerr(SSL_F_DTLS1_SEND_HELLO_VERIFY_REQUEST,ERR_R_INTERNAL_ERROR);
938                         return 0;
939                         }
940
941                 *(p++) = (unsigned char) s->d1->cookie_len;
942                 memcpy(p, s->d1->cookie, s->d1->cookie_len);
943                 p += s->d1->cookie_len;
944                 msg_len = p - msg;
945
946                 dtls1_set_message_header(s, buf,
947                         DTLS1_MT_HELLO_VERIFY_REQUEST, msg_len, 0, msg_len);
948
949                 s->state=DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B;
950                 /* number of bytes to write */
951                 s->init_num=p-buf;
952                 s->init_off=0;
953                 }
954
955         /* s->state = DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B */
956         return(dtls1_do_write(s,SSL3_RT_HANDSHAKE));
957         }