d1_srvr.c 34 KB

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