d1_clnt.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  1. /* ssl/d1_clnt.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. #ifndef OPENSSL_NO_KRB5
  118. # include "kssl_lcl.h"
  119. #endif
  120. #include <openssl/buffer.h>
  121. #include <openssl/rand.h>
  122. #include <openssl/objects.h>
  123. #include <openssl/evp.h>
  124. #include <openssl/md5.h>
  125. #include <openssl/bn.h>
  126. #ifndef OPENSSL_NO_DH
  127. # include <openssl/dh.h>
  128. #endif
  129. static const SSL_METHOD *dtls1_get_client_method(int ver);
  130. static int dtls1_get_hello_verify(SSL *s);
  131. static const SSL_METHOD *dtls1_get_client_method(int ver)
  132. {
  133. if (ver == DTLS_ANY_VERSION)
  134. return DTLS_client_method();
  135. else if (ver == DTLS1_VERSION || ver == DTLS1_BAD_VER)
  136. return DTLSv1_client_method();
  137. else if (ver == DTLS1_2_VERSION)
  138. return DTLSv1_2_client_method();
  139. else
  140. return NULL;
  141. }
  142. IMPLEMENT_dtls1_meth_func(DTLS1_VERSION,
  143. DTLSv1_client_method,
  144. ssl_undefined_function,
  145. dtls1_connect,
  146. dtls1_get_client_method, DTLSv1_enc_data)
  147. IMPLEMENT_dtls1_meth_func(DTLS1_2_VERSION,
  148. DTLSv1_2_client_method,
  149. ssl_undefined_function,
  150. dtls1_connect,
  151. dtls1_get_client_method, DTLSv1_2_enc_data)
  152. IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION,
  153. DTLS_client_method,
  154. ssl_undefined_function,
  155. dtls1_connect,
  156. dtls1_get_client_method, DTLSv1_2_enc_data)
  157. int dtls1_connect(SSL *s)
  158. {
  159. BUF_MEM *buf = NULL;
  160. unsigned long Time = (unsigned long)time(NULL);
  161. void (*cb) (const SSL *ssl, int type, int val) = NULL;
  162. int ret = -1;
  163. int new_state, state, skip = 0;
  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. s->in_handshake++;
  176. if (!SSL_in_init(s) || SSL_in_before(s))
  177. SSL_clear(s);
  178. #ifndef OPENSSL_NO_SCTP
  179. /*
  180. * Notify SCTP BIO socket to enter handshake mode and prevent stream
  181. * identifier other than 0. Will be ignored if no SCTP is used.
  182. */
  183. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE,
  184. s->in_handshake, NULL);
  185. #endif
  186. #ifndef OPENSSL_NO_HEARTBEATS
  187. /*
  188. * If we're awaiting a HeartbeatResponse, pretend we already got and
  189. * don't await it anymore, because Heartbeats don't make sense during
  190. * handshakes anyway.
  191. */
  192. if (s->tlsext_hb_pending) {
  193. dtls1_stop_timer(s);
  194. s->tlsext_hb_pending = 0;
  195. s->tlsext_hb_seq++;
  196. }
  197. #endif
  198. for (;;) {
  199. state = s->state;
  200. switch (s->state) {
  201. case SSL_ST_RENEGOTIATE:
  202. s->renegotiate = 1;
  203. s->state = SSL_ST_CONNECT;
  204. s->ctx->stats.sess_connect_renegotiate++;
  205. /* break */
  206. case SSL_ST_BEFORE:
  207. case SSL_ST_CONNECT:
  208. case SSL_ST_BEFORE | SSL_ST_CONNECT:
  209. case SSL_ST_OK | SSL_ST_CONNECT:
  210. s->server = 0;
  211. if (cb != NULL)
  212. cb(s, SSL_CB_HANDSHAKE_START, 1);
  213. if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00) &&
  214. (s->version & 0xff00) != (DTLS1_BAD_VER & 0xff00)) {
  215. SSLerr(SSL_F_DTLS1_CONNECT, ERR_R_INTERNAL_ERROR);
  216. ret = -1;
  217. s->state = SSL_ST_ERR;
  218. goto end;
  219. }
  220. /* s->version=SSL3_VERSION; */
  221. s->type = SSL_ST_CONNECT;
  222. if (s->init_buf == NULL) {
  223. if ((buf = BUF_MEM_new()) == NULL) {
  224. ret = -1;
  225. s->state = SSL_ST_ERR;
  226. goto end;
  227. }
  228. if (!BUF_MEM_grow(buf, SSL3_RT_MAX_PLAIN_LENGTH)) {
  229. ret = -1;
  230. s->state = SSL_ST_ERR;
  231. goto end;
  232. }
  233. s->init_buf = buf;
  234. buf = NULL;
  235. }
  236. if (!ssl3_setup_buffers(s)) {
  237. ret = -1;
  238. s->state = SSL_ST_ERR;
  239. goto end;
  240. }
  241. /* setup buffing BIO */
  242. if (!ssl_init_wbio_buffer(s, 0)) {
  243. ret = -1;
  244. s->state = SSL_ST_ERR;
  245. goto end;
  246. }
  247. /* don't push the buffering BIO quite yet */
  248. s->state = SSL3_ST_CW_CLNT_HELLO_A;
  249. s->ctx->stats.sess_connect++;
  250. s->init_num = 0;
  251. /* mark client_random uninitialized */
  252. memset(s->s3->client_random, 0, sizeof(s->s3->client_random));
  253. s->d1->send_cookie = 0;
  254. s->hit = 0;
  255. s->d1->change_cipher_spec_ok = 0;
  256. /*
  257. * Should have been reset by ssl3_get_finished, too.
  258. */
  259. s->s3->change_cipher_spec = 0;
  260. break;
  261. #ifndef OPENSSL_NO_SCTP
  262. case DTLS1_SCTP_ST_CR_READ_SOCK:
  263. if (BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
  264. s->s3->in_read_app_data = 2;
  265. s->rwstate = SSL_READING;
  266. BIO_clear_retry_flags(SSL_get_rbio(s));
  267. BIO_set_retry_read(SSL_get_rbio(s));
  268. ret = -1;
  269. goto end;
  270. }
  271. s->state = s->s3->tmp.next_state;
  272. break;
  273. case DTLS1_SCTP_ST_CW_WRITE_SOCK:
  274. /* read app data until dry event */
  275. ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
  276. if (ret < 0)
  277. goto end;
  278. if (ret == 0) {
  279. s->s3->in_read_app_data = 2;
  280. s->rwstate = SSL_READING;
  281. BIO_clear_retry_flags(SSL_get_rbio(s));
  282. BIO_set_retry_read(SSL_get_rbio(s));
  283. ret = -1;
  284. goto end;
  285. }
  286. s->state = s->d1->next_state;
  287. break;
  288. #endif
  289. case SSL3_ST_CW_CLNT_HELLO_A:
  290. s->shutdown = 0;
  291. /* every DTLS ClientHello resets Finished MAC */
  292. ssl3_init_finished_mac(s);
  293. case SSL3_ST_CW_CLNT_HELLO_B:
  294. dtls1_start_timer(s);
  295. ret = ssl3_client_hello(s);
  296. if (ret <= 0)
  297. goto end;
  298. if (s->d1->send_cookie) {
  299. s->state = SSL3_ST_CW_FLUSH;
  300. s->s3->tmp.next_state = SSL3_ST_CR_SRVR_HELLO_A;
  301. } else
  302. s->state = SSL3_ST_CR_SRVR_HELLO_A;
  303. s->init_num = 0;
  304. #ifndef OPENSSL_NO_SCTP
  305. /* Disable buffering for SCTP */
  306. if (!BIO_dgram_is_sctp(SSL_get_wbio(s))) {
  307. #endif
  308. /*
  309. * turn on buffering for the next lot of output
  310. */
  311. if (s->bbio != s->wbio)
  312. s->wbio = BIO_push(s->bbio, s->wbio);
  313. #ifndef OPENSSL_NO_SCTP
  314. }
  315. #endif
  316. break;
  317. case SSL3_ST_CR_SRVR_HELLO_A:
  318. case SSL3_ST_CR_SRVR_HELLO_B:
  319. ret = ssl3_get_server_hello(s);
  320. if (ret <= 0)
  321. goto end;
  322. else {
  323. if (s->hit) {
  324. #ifndef OPENSSL_NO_SCTP
  325. /*
  326. * Add new shared key for SCTP-Auth, will be ignored if
  327. * no SCTP used.
  328. */
  329. snprintf((char *)labelbuffer,
  330. sizeof(DTLS1_SCTP_AUTH_LABEL),
  331. DTLS1_SCTP_AUTH_LABEL);
  332. if (SSL_export_keying_material(s, sctpauthkey,
  333. sizeof(sctpauthkey),
  334. labelbuffer,
  335. sizeof(labelbuffer), NULL, 0,
  336. 0) <= 0) {
  337. ret = -1;
  338. s->state = SSL_ST_ERR;
  339. goto end;
  340. }
  341. BIO_ctrl(SSL_get_wbio(s),
  342. BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
  343. sizeof(sctpauthkey), sctpauthkey);
  344. #endif
  345. s->state = SSL3_ST_CR_FINISHED_A;
  346. if (s->tlsext_ticket_expected) {
  347. /* receive renewed session ticket */
  348. s->state = SSL3_ST_CR_SESSION_TICKET_A;
  349. }
  350. } else
  351. s->state = DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A;
  352. }
  353. s->init_num = 0;
  354. break;
  355. case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A:
  356. case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B:
  357. ret = dtls1_get_hello_verify(s);
  358. if (ret <= 0)
  359. goto end;
  360. dtls1_stop_timer(s);
  361. if (s->d1->send_cookie) /* start again, with a cookie */
  362. s->state = SSL3_ST_CW_CLNT_HELLO_A;
  363. else
  364. s->state = SSL3_ST_CR_CERT_A;
  365. s->init_num = 0;
  366. break;
  367. case SSL3_ST_CR_CERT_A:
  368. case SSL3_ST_CR_CERT_B:
  369. /* Check if it is anon DH or PSK */
  370. if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
  371. !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
  372. ret = ssl3_get_server_certificate(s);
  373. if (ret <= 0)
  374. goto end;
  375. #ifndef OPENSSL_NO_TLSEXT
  376. if (s->tlsext_status_expected)
  377. s->state = SSL3_ST_CR_CERT_STATUS_A;
  378. else
  379. s->state = SSL3_ST_CR_KEY_EXCH_A;
  380. } else {
  381. skip = 1;
  382. s->state = SSL3_ST_CR_KEY_EXCH_A;
  383. }
  384. #else
  385. } else
  386. skip = 1;
  387. s->state = SSL3_ST_CR_KEY_EXCH_A;
  388. #endif
  389. s->init_num = 0;
  390. break;
  391. case SSL3_ST_CR_KEY_EXCH_A:
  392. case SSL3_ST_CR_KEY_EXCH_B:
  393. ret = ssl3_get_key_exchange(s);
  394. if (ret <= 0)
  395. goto end;
  396. s->state = SSL3_ST_CR_CERT_REQ_A;
  397. s->init_num = 0;
  398. /*
  399. * at this point we check that we have the required stuff from
  400. * the server
  401. */
  402. if (!ssl3_check_cert_and_algorithm(s)) {
  403. ret = -1;
  404. s->state = SSL_ST_ERR;
  405. goto end;
  406. }
  407. break;
  408. case SSL3_ST_CR_CERT_REQ_A:
  409. case SSL3_ST_CR_CERT_REQ_B:
  410. ret = ssl3_get_certificate_request(s);
  411. if (ret <= 0)
  412. goto end;
  413. s->state = SSL3_ST_CR_SRVR_DONE_A;
  414. s->init_num = 0;
  415. break;
  416. case SSL3_ST_CR_SRVR_DONE_A:
  417. case SSL3_ST_CR_SRVR_DONE_B:
  418. ret = ssl3_get_server_done(s);
  419. if (ret <= 0)
  420. goto end;
  421. dtls1_stop_timer(s);
  422. if (s->s3->tmp.cert_req)
  423. s->s3->tmp.next_state = SSL3_ST_CW_CERT_A;
  424. else
  425. s->s3->tmp.next_state = SSL3_ST_CW_KEY_EXCH_A;
  426. s->init_num = 0;
  427. #ifndef OPENSSL_NO_SCTP
  428. if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
  429. state == SSL_ST_RENEGOTIATE)
  430. s->state = DTLS1_SCTP_ST_CR_READ_SOCK;
  431. else
  432. #endif
  433. s->state = s->s3->tmp.next_state;
  434. break;
  435. case SSL3_ST_CW_CERT_A:
  436. case SSL3_ST_CW_CERT_B:
  437. case SSL3_ST_CW_CERT_C:
  438. case SSL3_ST_CW_CERT_D:
  439. dtls1_start_timer(s);
  440. ret = ssl3_send_client_certificate(s);
  441. if (ret <= 0)
  442. goto end;
  443. s->state = SSL3_ST_CW_KEY_EXCH_A;
  444. s->init_num = 0;
  445. break;
  446. case SSL3_ST_CW_KEY_EXCH_A:
  447. case SSL3_ST_CW_KEY_EXCH_B:
  448. dtls1_start_timer(s);
  449. ret = ssl3_send_client_key_exchange(s);
  450. if (ret <= 0)
  451. goto end;
  452. #ifndef OPENSSL_NO_SCTP
  453. /*
  454. * Add new shared key for SCTP-Auth, will be ignored if no SCTP
  455. * used.
  456. */
  457. snprintf((char *)labelbuffer, sizeof(DTLS1_SCTP_AUTH_LABEL),
  458. DTLS1_SCTP_AUTH_LABEL);
  459. if (SSL_export_keying_material(s, sctpauthkey,
  460. sizeof(sctpauthkey), labelbuffer,
  461. sizeof(labelbuffer), NULL, 0, 0) <= 0) {
  462. ret = -1;
  463. s->state = SSL_ST_ERR;
  464. goto end;
  465. }
  466. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
  467. sizeof(sctpauthkey), sctpauthkey);
  468. #endif
  469. /*
  470. * EAY EAY EAY need to check for DH fix cert sent back
  471. */
  472. /*
  473. * For TLS, cert_req is set to 2, so a cert chain of nothing is
  474. * sent, but no verify packet is sent
  475. */
  476. if (s->s3->tmp.cert_req == 1) {
  477. s->state = SSL3_ST_CW_CERT_VRFY_A;
  478. } else {
  479. #ifndef OPENSSL_NO_SCTP
  480. if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
  481. s->d1->next_state = SSL3_ST_CW_CHANGE_A;
  482. s->state = DTLS1_SCTP_ST_CW_WRITE_SOCK;
  483. } else
  484. #endif
  485. s->state = SSL3_ST_CW_CHANGE_A;
  486. }
  487. s->init_num = 0;
  488. break;
  489. case SSL3_ST_CW_CERT_VRFY_A:
  490. case SSL3_ST_CW_CERT_VRFY_B:
  491. dtls1_start_timer(s);
  492. ret = ssl3_send_client_verify(s);
  493. if (ret <= 0)
  494. goto end;
  495. #ifndef OPENSSL_NO_SCTP
  496. if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
  497. s->d1->next_state = SSL3_ST_CW_CHANGE_A;
  498. s->state = DTLS1_SCTP_ST_CW_WRITE_SOCK;
  499. } else
  500. #endif
  501. s->state = SSL3_ST_CW_CHANGE_A;
  502. s->init_num = 0;
  503. break;
  504. case SSL3_ST_CW_CHANGE_A:
  505. case SSL3_ST_CW_CHANGE_B:
  506. if (!s->hit)
  507. dtls1_start_timer(s);
  508. ret = dtls1_send_change_cipher_spec(s,
  509. SSL3_ST_CW_CHANGE_A,
  510. SSL3_ST_CW_CHANGE_B);
  511. if (ret <= 0)
  512. goto end;
  513. s->state = SSL3_ST_CW_FINISHED_A;
  514. s->init_num = 0;
  515. s->session->cipher = s->s3->tmp.new_cipher;
  516. #ifdef OPENSSL_NO_COMP
  517. s->session->compress_meth = 0;
  518. #else
  519. if (s->s3->tmp.new_compression == NULL)
  520. s->session->compress_meth = 0;
  521. else
  522. s->session->compress_meth = s->s3->tmp.new_compression->id;
  523. #endif
  524. if (!s->method->ssl3_enc->setup_key_block(s)) {
  525. ret = -1;
  526. s->state = SSL_ST_ERR;
  527. goto end;
  528. }
  529. if (!s->method->ssl3_enc->change_cipher_state(s,
  530. SSL3_CHANGE_CIPHER_CLIENT_WRITE))
  531. {
  532. ret = -1;
  533. s->state = SSL_ST_ERR;
  534. goto end;
  535. }
  536. #ifndef OPENSSL_NO_SCTP
  537. if (s->hit) {
  538. /*
  539. * Change to new shared key of SCTP-Auth, will be ignored if
  540. * no SCTP used.
  541. */
  542. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
  543. 0, NULL);
  544. }
  545. #endif
  546. dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
  547. break;
  548. case SSL3_ST_CW_FINISHED_A:
  549. case SSL3_ST_CW_FINISHED_B:
  550. if (!s->hit)
  551. dtls1_start_timer(s);
  552. ret = ssl3_send_finished(s,
  553. SSL3_ST_CW_FINISHED_A,
  554. SSL3_ST_CW_FINISHED_B,
  555. s->method->
  556. ssl3_enc->client_finished_label,
  557. s->method->
  558. ssl3_enc->client_finished_label_len);
  559. if (ret <= 0)
  560. goto end;
  561. s->state = SSL3_ST_CW_FLUSH;
  562. /* clear flags */
  563. s->s3->flags &= ~SSL3_FLAGS_POP_BUFFER;
  564. if (s->hit) {
  565. s->s3->tmp.next_state = SSL_ST_OK;
  566. #ifndef OPENSSL_NO_SCTP
  567. if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
  568. s->d1->next_state = s->s3->tmp.next_state;
  569. s->s3->tmp.next_state = DTLS1_SCTP_ST_CW_WRITE_SOCK;
  570. }
  571. #endif
  572. if (s->s3->flags & SSL3_FLAGS_DELAY_CLIENT_FINISHED) {
  573. s->state = SSL_ST_OK;
  574. #ifndef OPENSSL_NO_SCTP
  575. if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
  576. s->d1->next_state = SSL_ST_OK;
  577. s->state = DTLS1_SCTP_ST_CW_WRITE_SOCK;
  578. }
  579. #endif
  580. s->s3->flags |= SSL3_FLAGS_POP_BUFFER;
  581. s->s3->delay_buf_pop_ret = 0;
  582. }
  583. } else {
  584. #ifndef OPENSSL_NO_SCTP
  585. /*
  586. * Change to new shared key of SCTP-Auth, will be ignored if
  587. * no SCTP used.
  588. */
  589. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
  590. 0, NULL);
  591. #endif
  592. #ifndef OPENSSL_NO_TLSEXT
  593. /*
  594. * Allow NewSessionTicket if ticket expected
  595. */
  596. if (s->tlsext_ticket_expected)
  597. s->s3->tmp.next_state = SSL3_ST_CR_SESSION_TICKET_A;
  598. else
  599. #endif
  600. s->s3->tmp.next_state = SSL3_ST_CR_FINISHED_A;
  601. }
  602. s->init_num = 0;
  603. break;
  604. #ifndef OPENSSL_NO_TLSEXT
  605. case SSL3_ST_CR_SESSION_TICKET_A:
  606. case SSL3_ST_CR_SESSION_TICKET_B:
  607. ret = ssl3_get_new_session_ticket(s);
  608. if (ret <= 0)
  609. goto end;
  610. s->state = SSL3_ST_CR_FINISHED_A;
  611. s->init_num = 0;
  612. break;
  613. case SSL3_ST_CR_CERT_STATUS_A:
  614. case SSL3_ST_CR_CERT_STATUS_B:
  615. ret = ssl3_get_cert_status(s);
  616. if (ret <= 0)
  617. goto end;
  618. s->state = SSL3_ST_CR_KEY_EXCH_A;
  619. s->init_num = 0;
  620. break;
  621. #endif
  622. case SSL3_ST_CR_FINISHED_A:
  623. case SSL3_ST_CR_FINISHED_B:
  624. s->d1->change_cipher_spec_ok = 1;
  625. ret = ssl3_get_finished(s, SSL3_ST_CR_FINISHED_A,
  626. SSL3_ST_CR_FINISHED_B);
  627. if (ret <= 0)
  628. goto end;
  629. dtls1_stop_timer(s);
  630. if (s->hit)
  631. s->state = SSL3_ST_CW_CHANGE_A;
  632. else
  633. s->state = SSL_ST_OK;
  634. #ifndef OPENSSL_NO_SCTP
  635. if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
  636. state == SSL_ST_RENEGOTIATE) {
  637. s->d1->next_state = s->state;
  638. s->state = DTLS1_SCTP_ST_CW_WRITE_SOCK;
  639. }
  640. #endif
  641. s->init_num = 0;
  642. break;
  643. case SSL3_ST_CW_FLUSH:
  644. s->rwstate = SSL_WRITING;
  645. if (BIO_flush(s->wbio) <= 0) {
  646. /*
  647. * If the write error was fatal, stop trying
  648. */
  649. if (!BIO_should_retry(s->wbio)) {
  650. s->rwstate = SSL_NOTHING;
  651. s->state = s->s3->tmp.next_state;
  652. }
  653. ret = -1;
  654. goto end;
  655. }
  656. s->rwstate = SSL_NOTHING;
  657. s->state = s->s3->tmp.next_state;
  658. break;
  659. case SSL_ST_OK:
  660. /* clean a few things up */
  661. ssl3_cleanup_key_block(s);
  662. #if 0
  663. if (s->init_buf != NULL) {
  664. BUF_MEM_free(s->init_buf);
  665. s->init_buf = NULL;
  666. }
  667. #endif
  668. /*
  669. * If we are not 'joining' the last two packets, remove the
  670. * buffering now
  671. */
  672. if (!(s->s3->flags & SSL3_FLAGS_POP_BUFFER))
  673. ssl_free_wbio_buffer(s);
  674. /* else do it later in ssl3_write */
  675. s->init_num = 0;
  676. s->renegotiate = 0;
  677. s->new_session = 0;
  678. ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
  679. if (s->hit)
  680. s->ctx->stats.sess_hit++;
  681. ret = 1;
  682. /* s->server=0; */
  683. s->handshake_func = dtls1_connect;
  684. s->ctx->stats.sess_connect_good++;
  685. if (cb != NULL)
  686. cb(s, SSL_CB_HANDSHAKE_DONE, 1);
  687. /* done with handshaking */
  688. s->d1->handshake_read_seq = 0;
  689. s->d1->next_handshake_write_seq = 0;
  690. goto end;
  691. /* break; */
  692. case SSL_ST_ERR:
  693. default:
  694. SSLerr(SSL_F_DTLS1_CONNECT, SSL_R_UNKNOWN_STATE);
  695. ret = -1;
  696. goto end;
  697. /* break; */
  698. }
  699. /* did we do anything */
  700. if (!s->s3->tmp.reuse_message && !skip) {
  701. if (s->debug) {
  702. if ((ret = BIO_flush(s->wbio)) <= 0)
  703. goto end;
  704. }
  705. if ((cb != NULL) && (s->state != state)) {
  706. new_state = s->state;
  707. s->state = state;
  708. cb(s, SSL_CB_CONNECT_LOOP, 1);
  709. s->state = new_state;
  710. }
  711. }
  712. skip = 0;
  713. }
  714. end:
  715. s->in_handshake--;
  716. #ifndef OPENSSL_NO_SCTP
  717. /*
  718. * Notify SCTP BIO socket to leave handshake mode and allow stream
  719. * identifier other than 0. Will be ignored if no SCTP is used.
  720. */
  721. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE,
  722. s->in_handshake, NULL);
  723. #endif
  724. if (buf != NULL)
  725. BUF_MEM_free(buf);
  726. if (cb != NULL)
  727. cb(s, SSL_CB_CONNECT_EXIT, ret);
  728. return (ret);
  729. }
  730. static int dtls1_get_hello_verify(SSL *s)
  731. {
  732. int n, al, ok = 0;
  733. unsigned char *data;
  734. unsigned int cookie_len;
  735. s->first_packet = 1;
  736. n = s->method->ssl_get_message(s,
  737. DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A,
  738. DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B,
  739. -1, s->max_cert_list, &ok);
  740. s->first_packet = 0;
  741. if (!ok)
  742. return ((int)n);
  743. if (s->s3->tmp.message_type != DTLS1_MT_HELLO_VERIFY_REQUEST) {
  744. s->d1->send_cookie = 0;
  745. s->s3->tmp.reuse_message = 1;
  746. return (1);
  747. }
  748. data = (unsigned char *)s->init_msg;
  749. #if 0
  750. if (s->method->version != DTLS_ANY_VERSION &&
  751. ((data[0] != (s->version >> 8)) || (data[1] != (s->version & 0xff))))
  752. {
  753. SSLerr(SSL_F_DTLS1_GET_HELLO_VERIFY, SSL_R_WRONG_SSL_VERSION);
  754. s->version = (s->version & 0xff00) | data[1];
  755. al = SSL_AD_PROTOCOL_VERSION;
  756. goto f_err;
  757. }
  758. #endif
  759. data += 2;
  760. cookie_len = *(data++);
  761. if (cookie_len > sizeof(s->d1->cookie)) {
  762. al = SSL_AD_ILLEGAL_PARAMETER;
  763. goto f_err;
  764. }
  765. memcpy(s->d1->cookie, data, cookie_len);
  766. s->d1->cookie_len = cookie_len;
  767. s->d1->send_cookie = 1;
  768. return 1;
  769. f_err:
  770. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  771. s->state = SSL_ST_ERR;
  772. return -1;
  773. }