d1_lib.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971
  1. /*
  2. * Copyright 2005-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include "e_os.h"
  10. #include <stdio.h>
  11. #include <openssl/objects.h>
  12. #include <openssl/rand.h>
  13. #include "ssl_local.h"
  14. static void get_current_time(struct timeval *t);
  15. static int dtls1_handshake_write(SSL *s);
  16. static size_t dtls1_link_min_mtu(void);
  17. /* XDTLS: figure out the right values */
  18. static const size_t g_probable_mtu[] = { 1500, 512, 256 };
  19. const SSL3_ENC_METHOD DTLSv1_enc_data = {
  20. tls1_enc,
  21. tls1_mac,
  22. tls1_setup_key_block,
  23. tls1_generate_master_secret,
  24. tls1_change_cipher_state,
  25. tls1_final_finish_mac,
  26. TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
  27. TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
  28. tls1_alert_code,
  29. tls1_export_keying_material,
  30. SSL_ENC_FLAG_DTLS | SSL_ENC_FLAG_EXPLICIT_IV,
  31. dtls1_set_handshake_header,
  32. dtls1_close_construct_packet,
  33. dtls1_handshake_write
  34. };
  35. const SSL3_ENC_METHOD DTLSv1_2_enc_data = {
  36. tls1_enc,
  37. tls1_mac,
  38. tls1_setup_key_block,
  39. tls1_generate_master_secret,
  40. tls1_change_cipher_state,
  41. tls1_final_finish_mac,
  42. TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
  43. TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
  44. tls1_alert_code,
  45. tls1_export_keying_material,
  46. SSL_ENC_FLAG_DTLS | SSL_ENC_FLAG_EXPLICIT_IV | SSL_ENC_FLAG_SIGALGS
  47. | SSL_ENC_FLAG_SHA256_PRF | SSL_ENC_FLAG_TLS1_2_CIPHERS,
  48. dtls1_set_handshake_header,
  49. dtls1_close_construct_packet,
  50. dtls1_handshake_write
  51. };
  52. long dtls1_default_timeout(void)
  53. {
  54. /*
  55. * 2 hours, the 24 hours mentioned in the DTLSv1 spec is way too long for
  56. * http, the cache would over fill
  57. */
  58. return (60 * 60 * 2);
  59. }
  60. int dtls1_new(SSL *s)
  61. {
  62. DTLS1_STATE *d1;
  63. if (!DTLS_RECORD_LAYER_new(&s->rlayer)) {
  64. return 0;
  65. }
  66. if (!ssl3_new(s))
  67. return 0;
  68. if ((d1 = OPENSSL_zalloc(sizeof(*d1))) == NULL) {
  69. ssl3_free(s);
  70. return 0;
  71. }
  72. d1->buffered_messages = pqueue_new();
  73. d1->sent_messages = pqueue_new();
  74. if (s->server) {
  75. d1->cookie_len = sizeof(s->d1->cookie);
  76. }
  77. d1->link_mtu = 0;
  78. d1->mtu = 0;
  79. if (d1->buffered_messages == NULL || d1->sent_messages == NULL) {
  80. pqueue_free(d1->buffered_messages);
  81. pqueue_free(d1->sent_messages);
  82. OPENSSL_free(d1);
  83. ssl3_free(s);
  84. return 0;
  85. }
  86. s->d1 = d1;
  87. if (!s->method->ssl_clear(s))
  88. return 0;
  89. return 1;
  90. }
  91. static void dtls1_clear_queues(SSL *s)
  92. {
  93. dtls1_clear_received_buffer(s);
  94. dtls1_clear_sent_buffer(s);
  95. }
  96. void dtls1_clear_received_buffer(SSL *s)
  97. {
  98. pitem *item = NULL;
  99. hm_fragment *frag = NULL;
  100. while ((item = pqueue_pop(s->d1->buffered_messages)) != NULL) {
  101. frag = (hm_fragment *)item->data;
  102. dtls1_hm_fragment_free(frag);
  103. pitem_free(item);
  104. }
  105. }
  106. void dtls1_clear_sent_buffer(SSL *s)
  107. {
  108. pitem *item = NULL;
  109. hm_fragment *frag = NULL;
  110. while ((item = pqueue_pop(s->d1->sent_messages)) != NULL) {
  111. frag = (hm_fragment *)item->data;
  112. dtls1_hm_fragment_free(frag);
  113. pitem_free(item);
  114. }
  115. }
  116. void dtls1_free(SSL *s)
  117. {
  118. DTLS_RECORD_LAYER_free(&s->rlayer);
  119. ssl3_free(s);
  120. dtls1_clear_queues(s);
  121. pqueue_free(s->d1->buffered_messages);
  122. pqueue_free(s->d1->sent_messages);
  123. OPENSSL_free(s->d1);
  124. s->d1 = NULL;
  125. }
  126. int dtls1_clear(SSL *s)
  127. {
  128. pqueue *buffered_messages;
  129. pqueue *sent_messages;
  130. size_t mtu;
  131. size_t link_mtu;
  132. DTLS_RECORD_LAYER_clear(&s->rlayer);
  133. if (s->d1) {
  134. DTLS_timer_cb timer_cb = s->d1->timer_cb;
  135. buffered_messages = s->d1->buffered_messages;
  136. sent_messages = s->d1->sent_messages;
  137. mtu = s->d1->mtu;
  138. link_mtu = s->d1->link_mtu;
  139. dtls1_clear_queues(s);
  140. memset(s->d1, 0, sizeof(*s->d1));
  141. /* Restore the timer callback from previous state */
  142. s->d1->timer_cb = timer_cb;
  143. if (s->server) {
  144. s->d1->cookie_len = sizeof(s->d1->cookie);
  145. }
  146. if (SSL_get_options(s) & SSL_OP_NO_QUERY_MTU) {
  147. s->d1->mtu = mtu;
  148. s->d1->link_mtu = link_mtu;
  149. }
  150. s->d1->buffered_messages = buffered_messages;
  151. s->d1->sent_messages = sent_messages;
  152. }
  153. if (!ssl3_clear(s))
  154. return 0;
  155. if (s->method->version == DTLS_ANY_VERSION)
  156. s->version = DTLS_MAX_VERSION_INTERNAL;
  157. #ifndef OPENSSL_NO_DTLS1_METHOD
  158. else if (s->options & SSL_OP_CISCO_ANYCONNECT)
  159. s->client_version = s->version = DTLS1_BAD_VER;
  160. #endif
  161. else
  162. s->version = s->method->version;
  163. return 1;
  164. }
  165. long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg)
  166. {
  167. int ret = 0;
  168. switch (cmd) {
  169. case DTLS_CTRL_GET_TIMEOUT:
  170. if (dtls1_get_timeout(s, (struct timeval *)parg) != NULL) {
  171. ret = 1;
  172. }
  173. break;
  174. case DTLS_CTRL_HANDLE_TIMEOUT:
  175. ret = dtls1_handle_timeout(s);
  176. break;
  177. case DTLS_CTRL_SET_LINK_MTU:
  178. if (larg < (long)dtls1_link_min_mtu())
  179. return 0;
  180. s->d1->link_mtu = larg;
  181. return 1;
  182. case DTLS_CTRL_GET_LINK_MIN_MTU:
  183. return (long)dtls1_link_min_mtu();
  184. case SSL_CTRL_SET_MTU:
  185. /*
  186. * We may not have a BIO set yet so can't call dtls1_min_mtu()
  187. * We'll have to make do with dtls1_link_min_mtu() and max overhead
  188. */
  189. if (larg < (long)dtls1_link_min_mtu() - DTLS1_MAX_MTU_OVERHEAD)
  190. return 0;
  191. s->d1->mtu = larg;
  192. return larg;
  193. default:
  194. ret = ssl3_ctrl(s, cmd, larg, parg);
  195. break;
  196. }
  197. return ret;
  198. }
  199. void dtls1_start_timer(SSL *s)
  200. {
  201. unsigned int sec, usec;
  202. #ifndef OPENSSL_NO_SCTP
  203. /* Disable timer for SCTP */
  204. if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
  205. memset(&s->d1->next_timeout, 0, sizeof(s->d1->next_timeout));
  206. return;
  207. }
  208. #endif
  209. /*
  210. * If timer is not set, initialize duration with 1 second or
  211. * a user-specified value if the timer callback is installed.
  212. */
  213. if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0) {
  214. if (s->d1->timer_cb != NULL)
  215. s->d1->timeout_duration_us = s->d1->timer_cb(s, 0);
  216. else
  217. s->d1->timeout_duration_us = 1000000;
  218. }
  219. /* Set timeout to current time */
  220. get_current_time(&(s->d1->next_timeout));
  221. /* Add duration to current time */
  222. sec = s->d1->timeout_duration_us / 1000000;
  223. usec = s->d1->timeout_duration_us - (sec * 1000000);
  224. s->d1->next_timeout.tv_sec += sec;
  225. s->d1->next_timeout.tv_usec += usec;
  226. if (s->d1->next_timeout.tv_usec >= 1000000) {
  227. s->d1->next_timeout.tv_sec++;
  228. s->d1->next_timeout.tv_usec -= 1000000;
  229. }
  230. BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, 0,
  231. &(s->d1->next_timeout));
  232. }
  233. struct timeval *dtls1_get_timeout(SSL *s, struct timeval *timeleft)
  234. {
  235. struct timeval timenow;
  236. /* If no timeout is set, just return NULL */
  237. if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0) {
  238. return NULL;
  239. }
  240. /* Get current time */
  241. get_current_time(&timenow);
  242. /* If timer already expired, set remaining time to 0 */
  243. if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
  244. (s->d1->next_timeout.tv_sec == timenow.tv_sec &&
  245. s->d1->next_timeout.tv_usec <= timenow.tv_usec)) {
  246. memset(timeleft, 0, sizeof(*timeleft));
  247. return timeleft;
  248. }
  249. /* Calculate time left until timer expires */
  250. memcpy(timeleft, &(s->d1->next_timeout), sizeof(struct timeval));
  251. timeleft->tv_sec -= timenow.tv_sec;
  252. timeleft->tv_usec -= timenow.tv_usec;
  253. if (timeleft->tv_usec < 0) {
  254. timeleft->tv_sec--;
  255. timeleft->tv_usec += 1000000;
  256. }
  257. /*
  258. * If remaining time is less than 15 ms, set it to 0 to prevent issues
  259. * because of small divergences with socket timeouts.
  260. */
  261. if (timeleft->tv_sec == 0 && timeleft->tv_usec < 15000) {
  262. memset(timeleft, 0, sizeof(*timeleft));
  263. }
  264. return timeleft;
  265. }
  266. int dtls1_is_timer_expired(SSL *s)
  267. {
  268. struct timeval timeleft;
  269. /* Get time left until timeout, return false if no timer running */
  270. if (dtls1_get_timeout(s, &timeleft) == NULL) {
  271. return 0;
  272. }
  273. /* Return false if timer is not expired yet */
  274. if (timeleft.tv_sec > 0 || timeleft.tv_usec > 0) {
  275. return 0;
  276. }
  277. /* Timer expired, so return true */
  278. return 1;
  279. }
  280. void dtls1_double_timeout(SSL *s)
  281. {
  282. s->d1->timeout_duration_us *= 2;
  283. if (s->d1->timeout_duration_us > 60000000)
  284. s->d1->timeout_duration_us = 60000000;
  285. dtls1_start_timer(s);
  286. }
  287. void dtls1_stop_timer(SSL *s)
  288. {
  289. /* Reset everything */
  290. memset(&s->d1->timeout, 0, sizeof(s->d1->timeout));
  291. memset(&s->d1->next_timeout, 0, sizeof(s->d1->next_timeout));
  292. s->d1->timeout_duration_us = 1000000;
  293. BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, 0,
  294. &(s->d1->next_timeout));
  295. /* Clear retransmission buffer */
  296. dtls1_clear_sent_buffer(s);
  297. }
  298. int dtls1_check_timeout_num(SSL *s)
  299. {
  300. size_t mtu;
  301. s->d1->timeout.num_alerts++;
  302. /* Reduce MTU after 2 unsuccessful retransmissions */
  303. if (s->d1->timeout.num_alerts > 2
  304. && !(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
  305. mtu =
  306. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL);
  307. if (mtu < s->d1->mtu)
  308. s->d1->mtu = mtu;
  309. }
  310. if (s->d1->timeout.num_alerts > DTLS1_TMO_ALERT_COUNT) {
  311. /* fail the connection, enough alerts have been sent */
  312. SSLfatal(s, SSL_AD_NO_ALERT, SSL_R_READ_TIMEOUT_EXPIRED);
  313. return -1;
  314. }
  315. return 0;
  316. }
  317. int dtls1_handle_timeout(SSL *s)
  318. {
  319. /* if no timer is expired, don't do anything */
  320. if (!dtls1_is_timer_expired(s)) {
  321. return 0;
  322. }
  323. if (s->d1->timer_cb != NULL)
  324. s->d1->timeout_duration_us = s->d1->timer_cb(s, s->d1->timeout_duration_us);
  325. else
  326. dtls1_double_timeout(s);
  327. if (dtls1_check_timeout_num(s) < 0) {
  328. /* SSLfatal() already called */
  329. return -1;
  330. }
  331. s->d1->timeout.read_timeouts++;
  332. if (s->d1->timeout.read_timeouts > DTLS1_TMO_READ_COUNT) {
  333. s->d1->timeout.read_timeouts = 1;
  334. }
  335. dtls1_start_timer(s);
  336. /* Calls SSLfatal() if required */
  337. return dtls1_retransmit_buffered_messages(s);
  338. }
  339. static void get_current_time(struct timeval *t)
  340. {
  341. #if defined(_WIN32)
  342. SYSTEMTIME st;
  343. union {
  344. unsigned __int64 ul;
  345. FILETIME ft;
  346. } now;
  347. GetSystemTime(&st);
  348. SystemTimeToFileTime(&st, &now.ft);
  349. /* re-bias to 1/1/1970 */
  350. # ifdef __MINGW32__
  351. now.ul -= 116444736000000000ULL;
  352. # else
  353. /* *INDENT-OFF* */
  354. now.ul -= 116444736000000000UI64;
  355. /* *INDENT-ON* */
  356. # endif
  357. t->tv_sec = (long)(now.ul / 10000000);
  358. t->tv_usec = ((int)(now.ul % 10000000)) / 10;
  359. #else
  360. gettimeofday(t, NULL);
  361. #endif
  362. }
  363. #define LISTEN_SUCCESS 2
  364. #define LISTEN_SEND_VERIFY_REQUEST 1
  365. #ifndef OPENSSL_NO_SOCK
  366. int DTLSv1_listen(SSL *s, BIO_ADDR *client)
  367. {
  368. int next, n, ret = 0;
  369. unsigned char cookie[DTLS1_COOKIE_LENGTH];
  370. unsigned char seq[SEQ_NUM_SIZE];
  371. const unsigned char *data;
  372. unsigned char *buf, *wbuf;
  373. size_t fragoff, fraglen, msglen, reclen, align = 0;
  374. unsigned int rectype, versmajor, msgseq, msgtype, clientvers, cookielen;
  375. BIO *rbio, *wbio;
  376. BIO_ADDR *tmpclient = NULL;
  377. PACKET pkt, msgpkt, msgpayload, session, cookiepkt;
  378. if (s->handshake_func == NULL) {
  379. /* Not properly initialized yet */
  380. SSL_set_accept_state(s);
  381. }
  382. /* Ensure there is no state left over from a previous invocation */
  383. if (!SSL_clear(s))
  384. return -1;
  385. ERR_clear_error();
  386. rbio = SSL_get_rbio(s);
  387. wbio = SSL_get_wbio(s);
  388. if (!rbio || !wbio) {
  389. ERR_raise(ERR_LIB_SSL, SSL_R_BIO_NOT_SET);
  390. return -1;
  391. }
  392. /*
  393. * Note: This check deliberately excludes DTLS1_BAD_VER because that version
  394. * requires the MAC to be calculated *including* the first ClientHello
  395. * (without the cookie). Since DTLSv1_listen is stateless that cannot be
  396. * supported. DTLS1_BAD_VER must use cookies in a stateful manner (e.g. via
  397. * SSL_accept)
  398. */
  399. if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00)) {
  400. ERR_raise(ERR_LIB_SSL, SSL_R_UNSUPPORTED_SSL_VERSION);
  401. return -1;
  402. }
  403. if (!ssl3_setup_buffers(s)) {
  404. /* ERR_raise() already called */
  405. return -1;
  406. }
  407. buf = RECORD_LAYER_get_rbuf(&s->rlayer)->buf;
  408. wbuf = RECORD_LAYER_get_wbuf(&s->rlayer)[0].buf;
  409. #if defined(SSL3_ALIGN_PAYLOAD)
  410. # if SSL3_ALIGN_PAYLOAD != 0
  411. /*
  412. * Using SSL3_RT_HEADER_LENGTH here instead of DTLS1_RT_HEADER_LENGTH for
  413. * consistency with ssl3_read_n. In practice it should make no difference
  414. * for sensible values of SSL3_ALIGN_PAYLOAD because the difference between
  415. * SSL3_RT_HEADER_LENGTH and DTLS1_RT_HEADER_LENGTH is exactly 8
  416. */
  417. align = (size_t)buf + SSL3_RT_HEADER_LENGTH;
  418. align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD);
  419. # endif
  420. #endif
  421. buf += align;
  422. do {
  423. /* Get a packet */
  424. clear_sys_error();
  425. n = BIO_read(rbio, buf, SSL3_RT_MAX_PLAIN_LENGTH
  426. + DTLS1_RT_HEADER_LENGTH);
  427. if (n <= 0) {
  428. if (BIO_should_retry(rbio)) {
  429. /* Non-blocking IO */
  430. goto end;
  431. }
  432. return -1;
  433. }
  434. if (!PACKET_buf_init(&pkt, buf, n)) {
  435. ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
  436. return -1;
  437. }
  438. /*
  439. * Parse the received record. If there are any problems with it we just
  440. * dump it - with no alert. RFC6347 says this "Unlike TLS, DTLS is
  441. * resilient in the face of invalid records (e.g., invalid formatting,
  442. * length, MAC, etc.). In general, invalid records SHOULD be silently
  443. * discarded, thus preserving the association; however, an error MAY be
  444. * logged for diagnostic purposes."
  445. */
  446. /* this packet contained a partial record, dump it */
  447. if (n < DTLS1_RT_HEADER_LENGTH) {
  448. ERR_raise(ERR_LIB_SSL, SSL_R_RECORD_TOO_SMALL);
  449. goto end;
  450. }
  451. if (s->msg_callback)
  452. s->msg_callback(0, 0, SSL3_RT_HEADER, buf,
  453. DTLS1_RT_HEADER_LENGTH, s, s->msg_callback_arg);
  454. /* Get the record header */
  455. if (!PACKET_get_1(&pkt, &rectype)
  456. || !PACKET_get_1(&pkt, &versmajor)) {
  457. ERR_raise(ERR_LIB_SSL, SSL_R_LENGTH_MISMATCH);
  458. goto end;
  459. }
  460. if (rectype != SSL3_RT_HANDSHAKE) {
  461. ERR_raise(ERR_LIB_SSL, SSL_R_UNEXPECTED_MESSAGE);
  462. goto end;
  463. }
  464. /*
  465. * Check record version number. We only check that the major version is
  466. * the same.
  467. */
  468. if (versmajor != DTLS1_VERSION_MAJOR) {
  469. ERR_raise(ERR_LIB_SSL, SSL_R_BAD_PROTOCOL_VERSION_NUMBER);
  470. goto end;
  471. }
  472. if (!PACKET_forward(&pkt, 1)
  473. /* Save the sequence number: 64 bits, with top 2 bytes = epoch */
  474. || !PACKET_copy_bytes(&pkt, seq, SEQ_NUM_SIZE)
  475. || !PACKET_get_length_prefixed_2(&pkt, &msgpkt)) {
  476. ERR_raise(ERR_LIB_SSL, SSL_R_LENGTH_MISMATCH);
  477. goto end;
  478. }
  479. reclen = PACKET_remaining(&msgpkt);
  480. /*
  481. * We allow data remaining at the end of the packet because there could
  482. * be a second record (but we ignore it)
  483. */
  484. /* This is an initial ClientHello so the epoch has to be 0 */
  485. if (seq[0] != 0 || seq[1] != 0) {
  486. ERR_raise(ERR_LIB_SSL, SSL_R_UNEXPECTED_MESSAGE);
  487. goto end;
  488. }
  489. /* Get a pointer to the raw message for the later callback */
  490. data = PACKET_data(&msgpkt);
  491. /* Finished processing the record header, now process the message */
  492. if (!PACKET_get_1(&msgpkt, &msgtype)
  493. || !PACKET_get_net_3_len(&msgpkt, &msglen)
  494. || !PACKET_get_net_2(&msgpkt, &msgseq)
  495. || !PACKET_get_net_3_len(&msgpkt, &fragoff)
  496. || !PACKET_get_net_3_len(&msgpkt, &fraglen)
  497. || !PACKET_get_sub_packet(&msgpkt, &msgpayload, fraglen)
  498. || PACKET_remaining(&msgpkt) != 0) {
  499. ERR_raise(ERR_LIB_SSL, SSL_R_LENGTH_MISMATCH);
  500. goto end;
  501. }
  502. if (msgtype != SSL3_MT_CLIENT_HELLO) {
  503. ERR_raise(ERR_LIB_SSL, SSL_R_UNEXPECTED_MESSAGE);
  504. goto end;
  505. }
  506. /* Message sequence number can only be 0 or 1 */
  507. if (msgseq > 2) {
  508. ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_SEQUENCE_NUMBER);
  509. goto end;
  510. }
  511. /*
  512. * We don't support fragment reassembly for ClientHellos whilst
  513. * listening because that would require server side state (which is
  514. * against the whole point of the ClientHello/HelloVerifyRequest
  515. * mechanism). Instead we only look at the first ClientHello fragment
  516. * and require that the cookie must be contained within it.
  517. */
  518. if (fragoff != 0 || fraglen > msglen) {
  519. /* Non initial ClientHello fragment (or bad fragment) */
  520. ERR_raise(ERR_LIB_SSL, SSL_R_FRAGMENTED_CLIENT_HELLO);
  521. goto end;
  522. }
  523. if (s->msg_callback)
  524. s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, data,
  525. fraglen + DTLS1_HM_HEADER_LENGTH, s,
  526. s->msg_callback_arg);
  527. if (!PACKET_get_net_2(&msgpayload, &clientvers)) {
  528. ERR_raise(ERR_LIB_SSL, SSL_R_LENGTH_MISMATCH);
  529. goto end;
  530. }
  531. /*
  532. * Verify client version is supported
  533. */
  534. if (DTLS_VERSION_LT(clientvers, (unsigned int)s->method->version) &&
  535. s->method->version != DTLS_ANY_VERSION) {
  536. ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_VERSION_NUMBER);
  537. goto end;
  538. }
  539. if (!PACKET_forward(&msgpayload, SSL3_RANDOM_SIZE)
  540. || !PACKET_get_length_prefixed_1(&msgpayload, &session)
  541. || !PACKET_get_length_prefixed_1(&msgpayload, &cookiepkt)) {
  542. /*
  543. * Could be malformed or the cookie does not fit within the initial
  544. * ClientHello fragment. Either way we can't handle it.
  545. */
  546. ERR_raise(ERR_LIB_SSL, SSL_R_LENGTH_MISMATCH);
  547. goto end;
  548. }
  549. /*
  550. * Check if we have a cookie or not. If not we need to send a
  551. * HelloVerifyRequest.
  552. */
  553. if (PACKET_remaining(&cookiepkt) == 0) {
  554. next = LISTEN_SEND_VERIFY_REQUEST;
  555. } else {
  556. /*
  557. * We have a cookie, so lets check it.
  558. */
  559. if (s->ctx->app_verify_cookie_cb == NULL) {
  560. ERR_raise(ERR_LIB_SSL, SSL_R_NO_VERIFY_COOKIE_CALLBACK);
  561. /* This is fatal */
  562. return -1;
  563. }
  564. if (s->ctx->app_verify_cookie_cb(s, PACKET_data(&cookiepkt),
  565. (unsigned int)PACKET_remaining(&cookiepkt)) == 0) {
  566. /*
  567. * We treat invalid cookies in the same was as no cookie as
  568. * per RFC6347
  569. */
  570. next = LISTEN_SEND_VERIFY_REQUEST;
  571. } else {
  572. /* Cookie verification succeeded */
  573. next = LISTEN_SUCCESS;
  574. }
  575. }
  576. if (next == LISTEN_SEND_VERIFY_REQUEST) {
  577. WPACKET wpkt;
  578. unsigned int version;
  579. size_t wreclen;
  580. /*
  581. * There was no cookie in the ClientHello so we need to send a
  582. * HelloVerifyRequest. If this fails we do not worry about trying
  583. * to resend, we just drop it.
  584. */
  585. /* Generate the cookie */
  586. if (s->ctx->app_gen_cookie_cb == NULL ||
  587. s->ctx->app_gen_cookie_cb(s, cookie, &cookielen) == 0 ||
  588. cookielen > 255) {
  589. ERR_raise(ERR_LIB_SSL, SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
  590. /* This is fatal */
  591. return -1;
  592. }
  593. /*
  594. * Special case: for hello verify request, client version 1.0 and we
  595. * haven't decided which version to use yet send back using version
  596. * 1.0 header: otherwise some clients will ignore it.
  597. */
  598. version = (s->method->version == DTLS_ANY_VERSION) ? DTLS1_VERSION
  599. : s->version;
  600. /* Construct the record and message headers */
  601. if (!WPACKET_init_static_len(&wpkt,
  602. wbuf,
  603. ssl_get_max_send_fragment(s)
  604. + DTLS1_RT_HEADER_LENGTH,
  605. 0)
  606. || !WPACKET_put_bytes_u8(&wpkt, SSL3_RT_HANDSHAKE)
  607. || !WPACKET_put_bytes_u16(&wpkt, version)
  608. /*
  609. * Record sequence number is always the same as in the
  610. * received ClientHello
  611. */
  612. || !WPACKET_memcpy(&wpkt, seq, SEQ_NUM_SIZE)
  613. /* End of record, start sub packet for message */
  614. || !WPACKET_start_sub_packet_u16(&wpkt)
  615. /* Message type */
  616. || !WPACKET_put_bytes_u8(&wpkt,
  617. DTLS1_MT_HELLO_VERIFY_REQUEST)
  618. /*
  619. * Message length - doesn't follow normal TLS convention:
  620. * the length isn't the last thing in the message header.
  621. * We'll need to fill this in later when we know the
  622. * length. Set it to zero for now
  623. */
  624. || !WPACKET_put_bytes_u24(&wpkt, 0)
  625. /*
  626. * Message sequence number is always 0 for a
  627. * HelloVerifyRequest
  628. */
  629. || !WPACKET_put_bytes_u16(&wpkt, 0)
  630. /*
  631. * We never fragment a HelloVerifyRequest, so fragment
  632. * offset is 0
  633. */
  634. || !WPACKET_put_bytes_u24(&wpkt, 0)
  635. /*
  636. * Fragment length is the same as message length, but
  637. * this *is* the last thing in the message header so we
  638. * can just start a sub-packet. No need to come back
  639. * later for this one.
  640. */
  641. || !WPACKET_start_sub_packet_u24(&wpkt)
  642. /* Create the actual HelloVerifyRequest body */
  643. || !dtls_raw_hello_verify_request(&wpkt, cookie, cookielen)
  644. /* Close message body */
  645. || !WPACKET_close(&wpkt)
  646. /* Close record body */
  647. || !WPACKET_close(&wpkt)
  648. || !WPACKET_get_total_written(&wpkt, &wreclen)
  649. || !WPACKET_finish(&wpkt)) {
  650. ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
  651. WPACKET_cleanup(&wpkt);
  652. /* This is fatal */
  653. return -1;
  654. }
  655. /*
  656. * Fix up the message len in the message header. Its the same as the
  657. * fragment len which has been filled in by WPACKET, so just copy
  658. * that. Destination for the message len is after the record header
  659. * plus one byte for the message content type. The source is the
  660. * last 3 bytes of the message header
  661. */
  662. memcpy(&wbuf[DTLS1_RT_HEADER_LENGTH + 1],
  663. &wbuf[DTLS1_RT_HEADER_LENGTH + DTLS1_HM_HEADER_LENGTH - 3],
  664. 3);
  665. if (s->msg_callback)
  666. s->msg_callback(1, 0, SSL3_RT_HEADER, buf,
  667. DTLS1_RT_HEADER_LENGTH, s, s->msg_callback_arg);
  668. if ((tmpclient = BIO_ADDR_new()) == NULL) {
  669. ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
  670. goto end;
  671. }
  672. /*
  673. * This is unnecessary if rbio and wbio are one and the same - but
  674. * maybe they're not. We ignore errors here - some BIOs do not
  675. * support this.
  676. */
  677. if (BIO_dgram_get_peer(rbio, tmpclient) > 0) {
  678. (void)BIO_dgram_set_peer(wbio, tmpclient);
  679. }
  680. BIO_ADDR_free(tmpclient);
  681. tmpclient = NULL;
  682. /* TODO(size_t): convert this call */
  683. if (BIO_write(wbio, wbuf, wreclen) < (int)wreclen) {
  684. if (BIO_should_retry(wbio)) {
  685. /*
  686. * Non-blocking IO...but we're stateless, so we're just
  687. * going to drop this packet.
  688. */
  689. goto end;
  690. }
  691. return -1;
  692. }
  693. if (BIO_flush(wbio) <= 0) {
  694. if (BIO_should_retry(wbio)) {
  695. /*
  696. * Non-blocking IO...but we're stateless, so we're just
  697. * going to drop this packet.
  698. */
  699. goto end;
  700. }
  701. return -1;
  702. }
  703. }
  704. } while (next != LISTEN_SUCCESS);
  705. /*
  706. * Set expected sequence numbers to continue the handshake.
  707. */
  708. s->d1->handshake_read_seq = 1;
  709. s->d1->handshake_write_seq = 1;
  710. s->d1->next_handshake_write_seq = 1;
  711. DTLS_RECORD_LAYER_set_write_sequence(&s->rlayer, seq);
  712. /*
  713. * We are doing cookie exchange, so make sure we set that option in the
  714. * SSL object
  715. */
  716. SSL_set_options(s, SSL_OP_COOKIE_EXCHANGE);
  717. /*
  718. * Tell the state machine that we've done the initial hello verify
  719. * exchange
  720. */
  721. ossl_statem_set_hello_verify_done(s);
  722. /*
  723. * Some BIOs may not support this. If we fail we clear the client address
  724. */
  725. if (BIO_dgram_get_peer(rbio, client) <= 0)
  726. BIO_ADDR_clear(client);
  727. /* Buffer the record in the processed_rcds queue */
  728. if (!dtls_buffer_listen_record(s, reclen, seq, align))
  729. return -1;
  730. ret = 1;
  731. end:
  732. BIO_ADDR_free(tmpclient);
  733. return ret;
  734. }
  735. #endif
  736. static int dtls1_handshake_write(SSL *s)
  737. {
  738. return dtls1_do_write(s, SSL3_RT_HANDSHAKE);
  739. }
  740. int dtls1_shutdown(SSL *s)
  741. {
  742. int ret;
  743. #ifndef OPENSSL_NO_SCTP
  744. BIO *wbio;
  745. wbio = SSL_get_wbio(s);
  746. if (wbio != NULL && BIO_dgram_is_sctp(wbio) &&
  747. !(s->shutdown & SSL_SENT_SHUTDOWN)) {
  748. ret = BIO_dgram_sctp_wait_for_dry(wbio);
  749. if (ret < 0)
  750. return -1;
  751. if (ret == 0)
  752. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1,
  753. NULL);
  754. }
  755. #endif
  756. ret = ssl3_shutdown(s);
  757. #ifndef OPENSSL_NO_SCTP
  758. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL);
  759. #endif
  760. return ret;
  761. }
  762. int dtls1_query_mtu(SSL *s)
  763. {
  764. if (s->d1->link_mtu) {
  765. s->d1->mtu =
  766. s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
  767. s->d1->link_mtu = 0;
  768. }
  769. /* AHA! Figure out the MTU, and stick to the right size */
  770. if (s->d1->mtu < dtls1_min_mtu(s)) {
  771. if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
  772. s->d1->mtu =
  773. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
  774. /*
  775. * I've seen the kernel return bogus numbers when it doesn't know
  776. * (initial write), so just make sure we have a reasonable number
  777. */
  778. if (s->d1->mtu < dtls1_min_mtu(s)) {
  779. /* Set to min mtu */
  780. s->d1->mtu = dtls1_min_mtu(s);
  781. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU,
  782. (long)s->d1->mtu, NULL);
  783. }
  784. } else
  785. return 0;
  786. }
  787. return 1;
  788. }
  789. static size_t dtls1_link_min_mtu(void)
  790. {
  791. return (g_probable_mtu[(sizeof(g_probable_mtu) /
  792. sizeof(g_probable_mtu[0])) - 1]);
  793. }
  794. size_t dtls1_min_mtu(SSL *s)
  795. {
  796. return dtls1_link_min_mtu() - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
  797. }
  798. size_t DTLS_get_data_mtu(const SSL *s)
  799. {
  800. size_t mac_overhead, int_overhead, blocksize, ext_overhead;
  801. const SSL_CIPHER *ciph = SSL_get_current_cipher(s);
  802. size_t mtu = s->d1->mtu;
  803. if (ciph == NULL)
  804. return 0;
  805. if (!ssl_cipher_get_overhead(ciph, &mac_overhead, &int_overhead,
  806. &blocksize, &ext_overhead))
  807. return 0;
  808. if (SSL_READ_ETM(s))
  809. ext_overhead += mac_overhead;
  810. else
  811. int_overhead += mac_overhead;
  812. /* Subtract external overhead (e.g. IV/nonce, separate MAC) */
  813. if (ext_overhead + DTLS1_RT_HEADER_LENGTH >= mtu)
  814. return 0;
  815. mtu -= ext_overhead + DTLS1_RT_HEADER_LENGTH;
  816. /* Round encrypted payload down to cipher block size (for CBC etc.)
  817. * No check for overflow since 'mtu % blocksize' cannot exceed mtu. */
  818. if (blocksize)
  819. mtu -= (mtu % blocksize);
  820. /* Subtract internal overhead (e.g. CBC padding len byte) */
  821. if (int_overhead >= mtu)
  822. return 0;
  823. mtu -= int_overhead;
  824. return mtu;
  825. }
  826. void DTLS_set_timer_cb(SSL *s, DTLS_timer_cb cb)
  827. {
  828. s->d1->timer_cb = cb;
  829. }