d1_both.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578
  1. /* ssl/d1_both.c */
  2. /*
  3. * DTLS implementation written by Nagendra Modadugu
  4. * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * openssl-core@openssl.org.
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * (eay@cryptsoft.com). This product includes software written by Tim
  56. * Hudson (tjh@cryptsoft.com).
  57. *
  58. */
  59. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  60. * All rights reserved.
  61. *
  62. * This package is an SSL implementation written
  63. * by Eric Young (eay@cryptsoft.com).
  64. * The implementation was written so as to conform with Netscapes SSL.
  65. *
  66. * This library is free for commercial and non-commercial use as long as
  67. * the following conditions are aheared to. The following conditions
  68. * apply to all code found in this distribution, be it the RC4, RSA,
  69. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  70. * included with this distribution is covered by the same copyright terms
  71. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  72. *
  73. * Copyright remains Eric Young's, and as such any Copyright notices in
  74. * the code are not to be removed.
  75. * If this package is used in a product, Eric Young should be given attribution
  76. * as the author of the parts of the library used.
  77. * This can be in the form of a textual message at program startup or
  78. * in documentation (online or textual) provided with the package.
  79. *
  80. * Redistribution and use in source and binary forms, with or without
  81. * modification, are permitted provided that the following conditions
  82. * are met:
  83. * 1. Redistributions of source code must retain the copyright
  84. * notice, this list of conditions and the following disclaimer.
  85. * 2. Redistributions in binary form must reproduce the above copyright
  86. * notice, this list of conditions and the following disclaimer in the
  87. * documentation and/or other materials provided with the distribution.
  88. * 3. All advertising materials mentioning features or use of this software
  89. * must display the following acknowledgement:
  90. * "This product includes cryptographic software written by
  91. * Eric Young (eay@cryptsoft.com)"
  92. * The word 'cryptographic' can be left out if the rouines from the library
  93. * being used are not cryptographic related :-).
  94. * 4. If you include any Windows specific code (or a derivative thereof) from
  95. * the apps directory (application code) you must include an acknowledgement:
  96. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  97. *
  98. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  99. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  100. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  101. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  102. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  103. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  104. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  105. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  106. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  107. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  108. * SUCH DAMAGE.
  109. *
  110. * The licence and distribution terms for any publically available version or
  111. * derivative of this code cannot be changed. i.e. this code cannot simply be
  112. * copied and put under another distribution licence
  113. * [including the GNU Public Licence.]
  114. */
  115. #include <limits.h>
  116. #include <string.h>
  117. #include <stdio.h>
  118. #include "ssl_locl.h"
  119. #include <openssl/buffer.h>
  120. #include <openssl/rand.h>
  121. #include <openssl/objects.h>
  122. #include <openssl/evp.h>
  123. #include <openssl/x509.h>
  124. #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8)
  125. #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \
  126. if ((end) - (start) <= 8) { \
  127. long ii; \
  128. for (ii = (start); ii < (end); ii++) bitmask[((ii) >> 3)] |= (1 << ((ii) & 7)); \
  129. } else { \
  130. long ii; \
  131. bitmask[((start) >> 3)] |= bitmask_start_values[((start) & 7)]; \
  132. for (ii = (((start) >> 3) + 1); ii < ((((end) - 1)) >> 3); ii++) bitmask[ii] = 0xff; \
  133. bitmask[(((end) - 1) >> 3)] |= bitmask_end_values[((end) & 7)]; \
  134. } }
  135. #define RSMBLY_BITMASK_IS_COMPLETE(bitmask, msg_len, is_complete) { \
  136. long ii; \
  137. OPENSSL_assert((msg_len) > 0); \
  138. is_complete = 1; \
  139. if (bitmask[(((msg_len) - 1) >> 3)] != bitmask_end_values[((msg_len) & 7)]) is_complete = 0; \
  140. if (is_complete) for (ii = (((msg_len) - 1) >> 3) - 1; ii >= 0 ; ii--) \
  141. if (bitmask[ii] != 0xff) { is_complete = 0; break; } }
  142. #if 0
  143. # define RSMBLY_BITMASK_PRINT(bitmask, msg_len) { \
  144. long ii; \
  145. printf("bitmask: "); for (ii = 0; ii < (msg_len); ii++) \
  146. printf("%d ", (bitmask[ii >> 3] & (1 << (ii & 7))) >> (ii & 7)); \
  147. printf("\n"); }
  148. #endif
  149. static unsigned char bitmask_start_values[] =
  150. { 0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80 };
  151. static unsigned char bitmask_end_values[] =
  152. { 0xff, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f };
  153. /* XDTLS: figure out the right values */
  154. static const unsigned int g_probable_mtu[] = { 1500, 512, 256 };
  155. static void dtls1_fix_message_header(SSL *s, unsigned long frag_off,
  156. unsigned long frag_len);
  157. static unsigned char *dtls1_write_message_header(SSL *s, unsigned char *p);
  158. static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
  159. unsigned long len,
  160. unsigned short seq_num,
  161. unsigned long frag_off,
  162. unsigned long frag_len);
  163. static long dtls1_get_message_fragment(SSL *s, int st1, int stn, long max,
  164. int *ok);
  165. static hm_fragment *dtls1_hm_fragment_new(unsigned long frag_len,
  166. int reassembly)
  167. {
  168. hm_fragment *frag = NULL;
  169. unsigned char *buf = NULL;
  170. unsigned char *bitmask = NULL;
  171. frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
  172. if (frag == NULL)
  173. return NULL;
  174. if (frag_len) {
  175. buf = (unsigned char *)OPENSSL_malloc(frag_len);
  176. if (buf == NULL) {
  177. OPENSSL_free(frag);
  178. return NULL;
  179. }
  180. }
  181. /* zero length fragment gets zero frag->fragment */
  182. frag->fragment = buf;
  183. /* Initialize reassembly bitmask if necessary */
  184. if (reassembly) {
  185. bitmask =
  186. (unsigned char *)OPENSSL_malloc(RSMBLY_BITMASK_SIZE(frag_len));
  187. if (bitmask == NULL) {
  188. if (buf != NULL)
  189. OPENSSL_free(buf);
  190. OPENSSL_free(frag);
  191. return NULL;
  192. }
  193. memset(bitmask, 0, RSMBLY_BITMASK_SIZE(frag_len));
  194. }
  195. frag->reassembly = bitmask;
  196. return frag;
  197. }
  198. void dtls1_hm_fragment_free(hm_fragment *frag)
  199. {
  200. if (frag->msg_header.is_ccs) {
  201. EVP_CIPHER_CTX_free(frag->msg_header.
  202. saved_retransmit_state.enc_write_ctx);
  203. EVP_MD_CTX_destroy(frag->msg_header.
  204. saved_retransmit_state.write_hash);
  205. }
  206. if (frag->fragment)
  207. OPENSSL_free(frag->fragment);
  208. if (frag->reassembly)
  209. OPENSSL_free(frag->reassembly);
  210. OPENSSL_free(frag);
  211. }
  212. static int dtls1_query_mtu(SSL *s)
  213. {
  214. if (s->d1->link_mtu) {
  215. s->d1->mtu =
  216. s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
  217. s->d1->link_mtu = 0;
  218. }
  219. /* AHA! Figure out the MTU, and stick to the right size */
  220. if (s->d1->mtu < dtls1_min_mtu(s)) {
  221. if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
  222. s->d1->mtu =
  223. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
  224. /*
  225. * I've seen the kernel return bogus numbers when it doesn't know
  226. * (initial write), so just make sure we have a reasonable number
  227. */
  228. if (s->d1->mtu < dtls1_min_mtu(s)) {
  229. /* Set to min mtu */
  230. s->d1->mtu = dtls1_min_mtu(s);
  231. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU,
  232. s->d1->mtu, NULL);
  233. }
  234. } else
  235. return 0;
  236. }
  237. return 1;
  238. }
  239. /*
  240. * send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or
  241. * SSL3_RT_CHANGE_CIPHER_SPEC)
  242. */
  243. int dtls1_do_write(SSL *s, int type)
  244. {
  245. int ret;
  246. unsigned int curr_mtu;
  247. int retry = 1;
  248. unsigned int len, frag_off, mac_size, blocksize, used_len;
  249. if (!dtls1_query_mtu(s))
  250. return -1;
  251. OPENSSL_assert(s->d1->mtu >= dtls1_min_mtu(s)); /* should have something
  252. * reasonable now */
  253. if (s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
  254. OPENSSL_assert(s->init_num ==
  255. (int)s->d1->w_msg_hdr.msg_len +
  256. DTLS1_HM_HEADER_LENGTH);
  257. if (s->write_hash) {
  258. if (s->enc_write_ctx
  259. && EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_GCM_MODE)
  260. mac_size = 0;
  261. else
  262. mac_size = EVP_MD_CTX_size(s->write_hash);
  263. } else
  264. mac_size = 0;
  265. if (s->enc_write_ctx &&
  266. (EVP_CIPHER_CTX_mode(s->enc_write_ctx) == EVP_CIPH_CBC_MODE))
  267. blocksize = 2 * EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
  268. else
  269. blocksize = 0;
  270. frag_off = 0;
  271. s->rwstate = SSL_NOTHING;
  272. /* s->init_num shouldn't ever be < 0...but just in case */
  273. while (s->init_num > 0) {
  274. if (type == SSL3_RT_HANDSHAKE && s->init_off != 0) {
  275. /* We must be writing a fragment other than the first one */
  276. if (frag_off > 0) {
  277. /* This is the first attempt at writing out this fragment */
  278. if (s->init_off <= DTLS1_HM_HEADER_LENGTH) {
  279. /*
  280. * Each fragment that was already sent must at least have
  281. * contained the message header plus one other byte.
  282. * Therefore |init_off| must have progressed by at least
  283. * |DTLS1_HM_HEADER_LENGTH + 1| bytes. If not something went
  284. * wrong.
  285. */
  286. return -1;
  287. }
  288. /*
  289. * Adjust |init_off| and |init_num| to allow room for a new
  290. * message header for this fragment.
  291. */
  292. s->init_off -= DTLS1_HM_HEADER_LENGTH;
  293. s->init_num += DTLS1_HM_HEADER_LENGTH;
  294. } else {
  295. /*
  296. * We must have been called again after a retry so use the
  297. * fragment offset from our last attempt. We do not need
  298. * to adjust |init_off| and |init_num| as above, because
  299. * that should already have been done before the retry.
  300. */
  301. frag_off = s->d1->w_msg_hdr.frag_off;
  302. }
  303. }
  304. used_len = BIO_wpending(SSL_get_wbio(s)) + DTLS1_RT_HEADER_LENGTH
  305. + mac_size + blocksize;
  306. if (s->d1->mtu > used_len)
  307. curr_mtu = s->d1->mtu - used_len;
  308. else
  309. curr_mtu = 0;
  310. if (curr_mtu <= DTLS1_HM_HEADER_LENGTH) {
  311. /*
  312. * grr.. we could get an error if MTU picked was wrong
  313. */
  314. ret = BIO_flush(SSL_get_wbio(s));
  315. if (ret <= 0) {
  316. s->rwstate = SSL_WRITING;
  317. return ret;
  318. }
  319. used_len = DTLS1_RT_HEADER_LENGTH + mac_size + blocksize;
  320. if (s->d1->mtu > used_len + DTLS1_HM_HEADER_LENGTH) {
  321. curr_mtu = s->d1->mtu - used_len;
  322. } else {
  323. /* Shouldn't happen */
  324. return -1;
  325. }
  326. }
  327. /*
  328. * We just checked that s->init_num > 0 so this cast should be safe
  329. */
  330. if (((unsigned int)s->init_num) > curr_mtu)
  331. len = curr_mtu;
  332. else
  333. len = s->init_num;
  334. /* Shouldn't ever happen */
  335. if (len > INT_MAX)
  336. len = INT_MAX;
  337. /*
  338. * XDTLS: this function is too long. split out the CCS part
  339. */
  340. if (type == SSL3_RT_HANDSHAKE) {
  341. if (len < DTLS1_HM_HEADER_LENGTH) {
  342. /*
  343. * len is so small that we really can't do anything sensible
  344. * so fail
  345. */
  346. return -1;
  347. }
  348. dtls1_fix_message_header(s, frag_off,
  349. len - DTLS1_HM_HEADER_LENGTH);
  350. dtls1_write_message_header(s,
  351. (unsigned char *)&s->init_buf->
  352. data[s->init_off]);
  353. }
  354. ret = dtls1_write_bytes(s, type, &s->init_buf->data[s->init_off],
  355. len);
  356. if (ret < 0) {
  357. /*
  358. * might need to update MTU here, but we don't know which
  359. * previous packet caused the failure -- so can't really
  360. * retransmit anything. continue as if everything is fine and
  361. * wait for an alert to handle the retransmit
  362. */
  363. if (retry && BIO_ctrl(SSL_get_wbio(s),
  364. BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL) > 0) {
  365. if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
  366. if (!dtls1_query_mtu(s))
  367. return -1;
  368. /* Have one more go */
  369. retry = 0;
  370. } else
  371. return -1;
  372. } else {
  373. return (-1);
  374. }
  375. } else {
  376. /*
  377. * bad if this assert fails, only part of the handshake message
  378. * got sent. but why would this happen?
  379. */
  380. OPENSSL_assert(len == (unsigned int)ret);
  381. if (type == SSL3_RT_HANDSHAKE && !s->d1->retransmitting) {
  382. /*
  383. * should not be done for 'Hello Request's, but in that case
  384. * we'll ignore the result anyway
  385. */
  386. unsigned char *p =
  387. (unsigned char *)&s->init_buf->data[s->init_off];
  388. const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
  389. int xlen;
  390. if (frag_off == 0 && s->version != DTLS1_BAD_VER) {
  391. /*
  392. * reconstruct message header is if it is being sent in
  393. * single fragment
  394. */
  395. *p++ = msg_hdr->type;
  396. l2n3(msg_hdr->msg_len, p);
  397. s2n(msg_hdr->seq, p);
  398. l2n3(0, p);
  399. l2n3(msg_hdr->msg_len, p);
  400. p -= DTLS1_HM_HEADER_LENGTH;
  401. xlen = ret;
  402. } else {
  403. p += DTLS1_HM_HEADER_LENGTH;
  404. xlen = ret - DTLS1_HM_HEADER_LENGTH;
  405. }
  406. ssl3_finish_mac(s, p, xlen);
  407. }
  408. if (ret == s->init_num) {
  409. if (s->msg_callback)
  410. s->msg_callback(1, s->version, type, s->init_buf->data,
  411. (size_t)(s->init_off + s->init_num), s,
  412. s->msg_callback_arg);
  413. s->init_off = 0; /* done writing this message */
  414. s->init_num = 0;
  415. return (1);
  416. }
  417. s->init_off += ret;
  418. s->init_num -= ret;
  419. ret -= DTLS1_HM_HEADER_LENGTH;
  420. frag_off += ret;
  421. /*
  422. * We save the fragment offset for the next fragment so we have it
  423. * available in case of an IO retry. We don't know the length of the
  424. * next fragment yet so just set that to 0 for now. It will be
  425. * updated again later.
  426. */
  427. dtls1_fix_message_header(s, frag_off, 0);
  428. }
  429. }
  430. return (0);
  431. }
  432. /*
  433. * Obtain handshake message of message type 'mt' (any if mt == -1), maximum
  434. * acceptable body length 'max'. Read an entire handshake message. Handshake
  435. * messages arrive in fragments.
  436. */
  437. long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
  438. {
  439. int i, al;
  440. struct hm_header_st *msg_hdr;
  441. unsigned char *p;
  442. unsigned long msg_len;
  443. /*
  444. * s3->tmp is used to store messages that are unexpected, caused by the
  445. * absence of an optional handshake message
  446. */
  447. if (s->s3->tmp.reuse_message) {
  448. s->s3->tmp.reuse_message = 0;
  449. if ((mt >= 0) && (s->s3->tmp.message_type != mt)) {
  450. al = SSL_AD_UNEXPECTED_MESSAGE;
  451. SSLerr(SSL_F_DTLS1_GET_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
  452. goto f_err;
  453. }
  454. *ok = 1;
  455. s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
  456. s->init_num = (int)s->s3->tmp.message_size;
  457. return s->init_num;
  458. }
  459. msg_hdr = &s->d1->r_msg_hdr;
  460. memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
  461. again:
  462. i = dtls1_get_message_fragment(s, st1, stn, max, ok);
  463. if (i == DTLS1_HM_BAD_FRAGMENT || i == DTLS1_HM_FRAGMENT_RETRY) {
  464. /* bad fragment received */
  465. goto again;
  466. } else if (i <= 0 && !*ok) {
  467. return i;
  468. }
  469. if (mt >= 0 && s->s3->tmp.message_type != mt) {
  470. al = SSL_AD_UNEXPECTED_MESSAGE;
  471. SSLerr(SSL_F_DTLS1_GET_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
  472. goto f_err;
  473. }
  474. p = (unsigned char *)s->init_buf->data;
  475. msg_len = msg_hdr->msg_len;
  476. /* reconstruct message header */
  477. *(p++) = msg_hdr->type;
  478. l2n3(msg_len, p);
  479. s2n(msg_hdr->seq, p);
  480. l2n3(0, p);
  481. l2n3(msg_len, p);
  482. if (s->version != DTLS1_BAD_VER) {
  483. p -= DTLS1_HM_HEADER_LENGTH;
  484. msg_len += DTLS1_HM_HEADER_LENGTH;
  485. }
  486. ssl3_finish_mac(s, p, msg_len);
  487. if (s->msg_callback)
  488. s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
  489. p, msg_len, s, s->msg_callback_arg);
  490. memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
  491. /* Don't change sequence numbers while listening */
  492. if (!s->d1->listen)
  493. s->d1->handshake_read_seq++;
  494. s->init_msg = s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
  495. return s->init_num;
  496. f_err:
  497. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  498. *ok = 0;
  499. return -1;
  500. }
  501. static int dtls1_preprocess_fragment(SSL *s, struct hm_header_st *msg_hdr,
  502. int max)
  503. {
  504. size_t frag_off, frag_len, msg_len;
  505. msg_len = msg_hdr->msg_len;
  506. frag_off = msg_hdr->frag_off;
  507. frag_len = msg_hdr->frag_len;
  508. /* sanity checking */
  509. if ((frag_off + frag_len) > msg_len) {
  510. SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
  511. return SSL_AD_ILLEGAL_PARAMETER;
  512. }
  513. if ((frag_off + frag_len) > (unsigned long)max) {
  514. SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
  515. return SSL_AD_ILLEGAL_PARAMETER;
  516. }
  517. if (s->d1->r_msg_hdr.frag_off == 0) { /* first fragment */
  518. /*
  519. * msg_len is limited to 2^24, but is effectively checked against max
  520. * above
  521. */
  522. if (!BUF_MEM_grow_clean
  523. (s->init_buf, msg_len + DTLS1_HM_HEADER_LENGTH)) {
  524. SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, ERR_R_BUF_LIB);
  525. return SSL_AD_INTERNAL_ERROR;
  526. }
  527. s->s3->tmp.message_size = msg_len;
  528. s->d1->r_msg_hdr.msg_len = msg_len;
  529. s->s3->tmp.message_type = msg_hdr->type;
  530. s->d1->r_msg_hdr.type = msg_hdr->type;
  531. s->d1->r_msg_hdr.seq = msg_hdr->seq;
  532. } else if (msg_len != s->d1->r_msg_hdr.msg_len) {
  533. /*
  534. * They must be playing with us! BTW, failure to enforce upper limit
  535. * would open possibility for buffer overrun.
  536. */
  537. SSLerr(SSL_F_DTLS1_PREPROCESS_FRAGMENT, SSL_R_EXCESSIVE_MESSAGE_SIZE);
  538. return SSL_AD_ILLEGAL_PARAMETER;
  539. }
  540. return 0; /* no error */
  541. }
  542. static int dtls1_retrieve_buffered_fragment(SSL *s, long max, int *ok)
  543. {
  544. /*-
  545. * (0) check whether the desired fragment is available
  546. * if so:
  547. * (1) copy over the fragment to s->init_buf->data[]
  548. * (2) update s->init_num
  549. */
  550. pitem *item;
  551. hm_fragment *frag;
  552. int al;
  553. *ok = 0;
  554. item = pqueue_peek(s->d1->buffered_messages);
  555. if (item == NULL)
  556. return 0;
  557. frag = (hm_fragment *)item->data;
  558. /* Don't return if reassembly still in progress */
  559. if (frag->reassembly != NULL)
  560. return 0;
  561. if (s->d1->handshake_read_seq == frag->msg_header.seq) {
  562. unsigned long frag_len = frag->msg_header.frag_len;
  563. pqueue_pop(s->d1->buffered_messages);
  564. al = dtls1_preprocess_fragment(s, &frag->msg_header, max);
  565. if (al == 0) { /* no alert */
  566. unsigned char *p =
  567. (unsigned char *)s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
  568. memcpy(&p[frag->msg_header.frag_off], frag->fragment,
  569. frag->msg_header.frag_len);
  570. }
  571. dtls1_hm_fragment_free(frag);
  572. pitem_free(item);
  573. if (al == 0) {
  574. *ok = 1;
  575. return frag_len;
  576. }
  577. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  578. s->init_num = 0;
  579. *ok = 0;
  580. return -1;
  581. } else
  582. return 0;
  583. }
  584. /*
  585. * dtls1_max_handshake_message_len returns the maximum number of bytes
  586. * permitted in a DTLS handshake message for |s|. The minimum is 16KB, but
  587. * may be greater if the maximum certificate list size requires it.
  588. */
  589. static unsigned long dtls1_max_handshake_message_len(const SSL *s)
  590. {
  591. unsigned long max_len =
  592. DTLS1_HM_HEADER_LENGTH + SSL3_RT_MAX_ENCRYPTED_LENGTH;
  593. if (max_len < (unsigned long)s->max_cert_list)
  594. return s->max_cert_list;
  595. return max_len;
  596. }
  597. static int
  598. dtls1_reassemble_fragment(SSL *s, const struct hm_header_st *msg_hdr, int *ok)
  599. {
  600. hm_fragment *frag = NULL;
  601. pitem *item = NULL;
  602. int i = -1, is_complete;
  603. unsigned char seq64be[8];
  604. unsigned long frag_len = msg_hdr->frag_len;
  605. if ((msg_hdr->frag_off + frag_len) > msg_hdr->msg_len ||
  606. msg_hdr->msg_len > dtls1_max_handshake_message_len(s))
  607. goto err;
  608. if (frag_len == 0)
  609. return DTLS1_HM_FRAGMENT_RETRY;
  610. /* Try to find item in queue */
  611. memset(seq64be, 0, sizeof(seq64be));
  612. seq64be[6] = (unsigned char)(msg_hdr->seq >> 8);
  613. seq64be[7] = (unsigned char)msg_hdr->seq;
  614. item = pqueue_find(s->d1->buffered_messages, seq64be);
  615. if (item == NULL) {
  616. frag = dtls1_hm_fragment_new(msg_hdr->msg_len, 1);
  617. if (frag == NULL)
  618. goto err;
  619. memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
  620. frag->msg_header.frag_len = frag->msg_header.msg_len;
  621. frag->msg_header.frag_off = 0;
  622. } else {
  623. frag = (hm_fragment *)item->data;
  624. if (frag->msg_header.msg_len != msg_hdr->msg_len) {
  625. item = NULL;
  626. frag = NULL;
  627. goto err;
  628. }
  629. }
  630. /*
  631. * If message is already reassembled, this must be a retransmit and can
  632. * be dropped. In this case item != NULL and so frag does not need to be
  633. * freed.
  634. */
  635. if (frag->reassembly == NULL) {
  636. unsigned char devnull[256];
  637. while (frag_len) {
  638. i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE,
  639. devnull,
  640. frag_len >
  641. sizeof(devnull) ? sizeof(devnull) :
  642. frag_len, 0);
  643. if (i <= 0)
  644. goto err;
  645. frag_len -= i;
  646. }
  647. return DTLS1_HM_FRAGMENT_RETRY;
  648. }
  649. /* read the body of the fragment (header has already been read */
  650. i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE,
  651. frag->fragment + msg_hdr->frag_off,
  652. frag_len, 0);
  653. if ((unsigned long)i != frag_len)
  654. i = -1;
  655. if (i <= 0)
  656. goto err;
  657. RSMBLY_BITMASK_MARK(frag->reassembly, (long)msg_hdr->frag_off,
  658. (long)(msg_hdr->frag_off + frag_len));
  659. RSMBLY_BITMASK_IS_COMPLETE(frag->reassembly, (long)msg_hdr->msg_len,
  660. is_complete);
  661. if (is_complete) {
  662. OPENSSL_free(frag->reassembly);
  663. frag->reassembly = NULL;
  664. }
  665. if (item == NULL) {
  666. item = pitem_new(seq64be, frag);
  667. if (item == NULL) {
  668. i = -1;
  669. goto err;
  670. }
  671. item = pqueue_insert(s->d1->buffered_messages, item);
  672. /*
  673. * pqueue_insert fails iff a duplicate item is inserted. However,
  674. * |item| cannot be a duplicate. If it were, |pqueue_find|, above,
  675. * would have returned it and control would never have reached this
  676. * branch.
  677. */
  678. OPENSSL_assert(item != NULL);
  679. }
  680. return DTLS1_HM_FRAGMENT_RETRY;
  681. err:
  682. if (frag != NULL && item == NULL)
  683. dtls1_hm_fragment_free(frag);
  684. *ok = 0;
  685. return i;
  686. }
  687. static int
  688. dtls1_process_out_of_seq_message(SSL *s, const struct hm_header_st *msg_hdr,
  689. int *ok)
  690. {
  691. int i = -1;
  692. hm_fragment *frag = NULL;
  693. pitem *item = NULL;
  694. unsigned char seq64be[8];
  695. unsigned long frag_len = msg_hdr->frag_len;
  696. if ((msg_hdr->frag_off + frag_len) > msg_hdr->msg_len)
  697. goto err;
  698. /* Try to find item in queue, to prevent duplicate entries */
  699. memset(seq64be, 0, sizeof(seq64be));
  700. seq64be[6] = (unsigned char)(msg_hdr->seq >> 8);
  701. seq64be[7] = (unsigned char)msg_hdr->seq;
  702. item = pqueue_find(s->d1->buffered_messages, seq64be);
  703. /*
  704. * If we already have an entry and this one is a fragment, don't discard
  705. * it and rather try to reassemble it.
  706. */
  707. if (item != NULL && frag_len != msg_hdr->msg_len)
  708. item = NULL;
  709. /*
  710. * Discard the message if sequence number was already there, is too far
  711. * in the future, already in the queue or if we received a FINISHED
  712. * before the SERVER_HELLO, which then must be a stale retransmit.
  713. */
  714. if (msg_hdr->seq <= s->d1->handshake_read_seq ||
  715. msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL ||
  716. (s->d1->handshake_read_seq == 0 && msg_hdr->type == SSL3_MT_FINISHED))
  717. {
  718. unsigned char devnull[256];
  719. while (frag_len) {
  720. i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE,
  721. devnull,
  722. frag_len >
  723. sizeof(devnull) ? sizeof(devnull) :
  724. frag_len, 0);
  725. if (i <= 0)
  726. goto err;
  727. frag_len -= i;
  728. }
  729. } else {
  730. if (frag_len != msg_hdr->msg_len)
  731. return dtls1_reassemble_fragment(s, msg_hdr, ok);
  732. if (frag_len > dtls1_max_handshake_message_len(s))
  733. goto err;
  734. frag = dtls1_hm_fragment_new(frag_len, 0);
  735. if (frag == NULL)
  736. goto err;
  737. memcpy(&(frag->msg_header), msg_hdr, sizeof(*msg_hdr));
  738. if (frag_len) {
  739. /*
  740. * read the body of the fragment (header has already been read
  741. */
  742. i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE,
  743. frag->fragment, frag_len, 0);
  744. if ((unsigned long)i != frag_len)
  745. i = -1;
  746. if (i <= 0)
  747. goto err;
  748. }
  749. item = pitem_new(seq64be, frag);
  750. if (item == NULL)
  751. goto err;
  752. item = pqueue_insert(s->d1->buffered_messages, item);
  753. /*
  754. * pqueue_insert fails iff a duplicate item is inserted. However,
  755. * |item| cannot be a duplicate. If it were, |pqueue_find|, above,
  756. * would have returned it. Then, either |frag_len| !=
  757. * |msg_hdr->msg_len| in which case |item| is set to NULL and it will
  758. * have been processed with |dtls1_reassemble_fragment|, above, or
  759. * the record will have been discarded.
  760. */
  761. OPENSSL_assert(item != NULL);
  762. }
  763. return DTLS1_HM_FRAGMENT_RETRY;
  764. err:
  765. if (frag != NULL && item == NULL)
  766. dtls1_hm_fragment_free(frag);
  767. *ok = 0;
  768. return i;
  769. }
  770. static long
  771. dtls1_get_message_fragment(SSL *s, int st1, int stn, long max, int *ok)
  772. {
  773. unsigned char wire[DTLS1_HM_HEADER_LENGTH];
  774. unsigned long len, frag_off, frag_len;
  775. int i, al;
  776. struct hm_header_st msg_hdr;
  777. redo:
  778. /* see if we have the required fragment already */
  779. if ((frag_len = dtls1_retrieve_buffered_fragment(s, max, ok)) || *ok) {
  780. if (*ok)
  781. s->init_num = frag_len;
  782. return frag_len;
  783. }
  784. /* read handshake message header */
  785. i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, wire,
  786. DTLS1_HM_HEADER_LENGTH, 0);
  787. if (i <= 0) { /* nbio, or an error */
  788. s->rwstate = SSL_READING;
  789. *ok = 0;
  790. return i;
  791. }
  792. /* Handshake fails if message header is incomplete */
  793. if (i != DTLS1_HM_HEADER_LENGTH) {
  794. al = SSL_AD_UNEXPECTED_MESSAGE;
  795. SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL_R_UNEXPECTED_MESSAGE);
  796. goto f_err;
  797. }
  798. /* parse the message fragment header */
  799. dtls1_get_message_header(wire, &msg_hdr);
  800. len = msg_hdr.msg_len;
  801. frag_off = msg_hdr.frag_off;
  802. frag_len = msg_hdr.frag_len;
  803. /*
  804. * We must have at least frag_len bytes left in the record to be read.
  805. * Fragments must not span records.
  806. */
  807. if (frag_len > s->s3->rrec.length) {
  808. al = SSL3_AD_ILLEGAL_PARAMETER;
  809. SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL_R_BAD_LENGTH);
  810. goto f_err;
  811. }
  812. /*
  813. * if this is a future (or stale) message it gets buffered
  814. * (or dropped)--no further processing at this time
  815. * While listening, we accept seq 1 (ClientHello with cookie)
  816. * although we're still expecting seq 0 (ClientHello)
  817. */
  818. if (msg_hdr.seq != s->d1->handshake_read_seq
  819. && !(s->d1->listen && msg_hdr.seq == 1))
  820. return dtls1_process_out_of_seq_message(s, &msg_hdr, ok);
  821. if (frag_len && frag_len < len)
  822. return dtls1_reassemble_fragment(s, &msg_hdr, ok);
  823. if (!s->server && s->d1->r_msg_hdr.frag_off == 0 &&
  824. wire[0] == SSL3_MT_HELLO_REQUEST) {
  825. /*
  826. * The server may always send 'Hello Request' messages -- we are
  827. * doing a handshake anyway now, so ignore them if their format is
  828. * correct. Does not count for 'Finished' MAC.
  829. */
  830. if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0) {
  831. if (s->msg_callback)
  832. s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
  833. wire, DTLS1_HM_HEADER_LENGTH, s,
  834. s->msg_callback_arg);
  835. s->init_num = 0;
  836. goto redo;
  837. } else { /* Incorrectly formated Hello request */
  838. al = SSL_AD_UNEXPECTED_MESSAGE;
  839. SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT,
  840. SSL_R_UNEXPECTED_MESSAGE);
  841. goto f_err;
  842. }
  843. }
  844. if ((al = dtls1_preprocess_fragment(s, &msg_hdr, max)))
  845. goto f_err;
  846. if (frag_len > 0) {
  847. unsigned char *p =
  848. (unsigned char *)s->init_buf->data + DTLS1_HM_HEADER_LENGTH;
  849. i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE,
  850. &p[frag_off], frag_len, 0);
  851. /*
  852. * This shouldn't ever fail due to NBIO because we already checked
  853. * that we have enough data in the record
  854. */
  855. if (i <= 0) {
  856. s->rwstate = SSL_READING;
  857. *ok = 0;
  858. return i;
  859. }
  860. } else
  861. i = 0;
  862. /*
  863. * XDTLS: an incorrectly formatted fragment should cause the handshake
  864. * to fail
  865. */
  866. if (i != (int)frag_len) {
  867. al = SSL3_AD_ILLEGAL_PARAMETER;
  868. SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL3_AD_ILLEGAL_PARAMETER);
  869. goto f_err;
  870. }
  871. *ok = 1;
  872. s->state = stn;
  873. /*
  874. * Note that s->init_num is *not* used as current offset in
  875. * s->init_buf->data, but as a counter summing up fragments' lengths: as
  876. * soon as they sum up to handshake packet length, we assume we have got
  877. * all the fragments.
  878. */
  879. s->init_num = frag_len;
  880. return frag_len;
  881. f_err:
  882. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  883. s->init_num = 0;
  884. *ok = 0;
  885. return (-1);
  886. }
  887. /*-
  888. * for these 2 messages, we need to
  889. * ssl->enc_read_ctx re-init
  890. * ssl->s3->read_sequence zero
  891. * ssl->s3->read_mac_secret re-init
  892. * ssl->session->read_sym_enc assign
  893. * ssl->session->read_compression assign
  894. * ssl->session->read_hash assign
  895. */
  896. int dtls1_send_change_cipher_spec(SSL *s, int a, int b)
  897. {
  898. unsigned char *p;
  899. if (s->state == a) {
  900. p = (unsigned char *)s->init_buf->data;
  901. *p++ = SSL3_MT_CCS;
  902. s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
  903. s->init_num = DTLS1_CCS_HEADER_LENGTH;
  904. if (s->version == DTLS1_BAD_VER) {
  905. s->d1->next_handshake_write_seq++;
  906. s2n(s->d1->handshake_write_seq, p);
  907. s->init_num += 2;
  908. }
  909. s->init_off = 0;
  910. dtls1_set_message_header_int(s, SSL3_MT_CCS, 0,
  911. s->d1->handshake_write_seq, 0, 0);
  912. /* buffer the message to handle re-xmits */
  913. dtls1_buffer_message(s, 1);
  914. s->state = b;
  915. }
  916. /* SSL3_ST_CW_CHANGE_B */
  917. return (dtls1_do_write(s, SSL3_RT_CHANGE_CIPHER_SPEC));
  918. }
  919. int dtls1_read_failed(SSL *s, int code)
  920. {
  921. if (code > 0) {
  922. fprintf(stderr, "invalid state reached %s:%d", __FILE__, __LINE__);
  923. return 1;
  924. }
  925. if (!dtls1_is_timer_expired(s)) {
  926. /*
  927. * not a timeout, none of our business, let higher layers handle
  928. * this. in fact it's probably an error
  929. */
  930. return code;
  931. }
  932. #ifndef OPENSSL_NO_HEARTBEATS
  933. /* done, no need to send a retransmit */
  934. if (!SSL_in_init(s) && !s->tlsext_hb_pending)
  935. #else
  936. /* done, no need to send a retransmit */
  937. if (!SSL_in_init(s))
  938. #endif
  939. {
  940. BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
  941. return code;
  942. }
  943. #if 0 /* for now, each alert contains only one
  944. * record number */
  945. item = pqueue_peek(state->rcvd_records);
  946. if (item) {
  947. /* send an alert immediately for all the missing records */
  948. } else
  949. #endif
  950. #if 0 /* no more alert sending, just retransmit the
  951. * last set of messages */
  952. if (state->timeout.read_timeouts >= DTLS1_TMO_READ_COUNT)
  953. ssl3_send_alert(s, SSL3_AL_WARNING,
  954. DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);
  955. #endif
  956. return dtls1_handle_timeout(s);
  957. }
  958. int dtls1_get_queue_priority(unsigned short seq, int is_ccs)
  959. {
  960. /*
  961. * The index of the retransmission queue actually is the message sequence
  962. * number, since the queue only contains messages of a single handshake.
  963. * However, the ChangeCipherSpec has no message sequence number and so
  964. * using only the sequence will result in the CCS and Finished having the
  965. * same index. To prevent this, the sequence number is multiplied by 2.
  966. * In case of a CCS 1 is subtracted. This does not only differ CSS and
  967. * Finished, it also maintains the order of the index (important for
  968. * priority queues) and fits in the unsigned short variable.
  969. */
  970. return seq * 2 - is_ccs;
  971. }
  972. int dtls1_retransmit_buffered_messages(SSL *s)
  973. {
  974. pqueue sent = s->d1->sent_messages;
  975. piterator iter;
  976. pitem *item;
  977. hm_fragment *frag;
  978. int found = 0;
  979. iter = pqueue_iterator(sent);
  980. for (item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter)) {
  981. frag = (hm_fragment *)item->data;
  982. if (dtls1_retransmit_message(s, (unsigned short)
  983. dtls1_get_queue_priority
  984. (frag->msg_header.seq,
  985. frag->msg_header.is_ccs), 0,
  986. &found) <= 0 && found) {
  987. fprintf(stderr, "dtls1_retransmit_message() failed\n");
  988. return -1;
  989. }
  990. }
  991. return 1;
  992. }
  993. int dtls1_buffer_message(SSL *s, int is_ccs)
  994. {
  995. pitem *item;
  996. hm_fragment *frag;
  997. unsigned char seq64be[8];
  998. /*
  999. * this function is called immediately after a message has been
  1000. * serialized
  1001. */
  1002. OPENSSL_assert(s->init_off == 0);
  1003. frag = dtls1_hm_fragment_new(s->init_num, 0);
  1004. if (!frag)
  1005. return 0;
  1006. memcpy(frag->fragment, s->init_buf->data, s->init_num);
  1007. if (is_ccs) {
  1008. /* For DTLS1_BAD_VER the header length is non-standard */
  1009. OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
  1010. ((s->version==DTLS1_BAD_VER)?3:DTLS1_CCS_HEADER_LENGTH)
  1011. == (unsigned int)s->init_num);
  1012. } else {
  1013. OPENSSL_assert(s->d1->w_msg_hdr.msg_len +
  1014. DTLS1_HM_HEADER_LENGTH == (unsigned int)s->init_num);
  1015. }
  1016. frag->msg_header.msg_len = s->d1->w_msg_hdr.msg_len;
  1017. frag->msg_header.seq = s->d1->w_msg_hdr.seq;
  1018. frag->msg_header.type = s->d1->w_msg_hdr.type;
  1019. frag->msg_header.frag_off = 0;
  1020. frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
  1021. frag->msg_header.is_ccs = is_ccs;
  1022. /* save current state */
  1023. frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
  1024. frag->msg_header.saved_retransmit_state.write_hash = s->write_hash;
  1025. frag->msg_header.saved_retransmit_state.compress = s->compress;
  1026. frag->msg_header.saved_retransmit_state.session = s->session;
  1027. frag->msg_header.saved_retransmit_state.epoch = s->d1->w_epoch;
  1028. memset(seq64be, 0, sizeof(seq64be));
  1029. seq64be[6] =
  1030. (unsigned
  1031. char)(dtls1_get_queue_priority(frag->msg_header.seq,
  1032. frag->msg_header.is_ccs) >> 8);
  1033. seq64be[7] =
  1034. (unsigned
  1035. char)(dtls1_get_queue_priority(frag->msg_header.seq,
  1036. frag->msg_header.is_ccs));
  1037. item = pitem_new(seq64be, frag);
  1038. if (item == NULL) {
  1039. dtls1_hm_fragment_free(frag);
  1040. return 0;
  1041. }
  1042. #if 0
  1043. fprintf(stderr, "buffered messge: \ttype = %xx\n", msg_buf->type);
  1044. fprintf(stderr, "\t\t\t\t\tlen = %d\n", msg_buf->len);
  1045. fprintf(stderr, "\t\t\t\t\tseq_num = %d\n", msg_buf->seq_num);
  1046. #endif
  1047. pqueue_insert(s->d1->sent_messages, item);
  1048. return 1;
  1049. }
  1050. int
  1051. dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
  1052. int *found)
  1053. {
  1054. int ret;
  1055. /* XDTLS: for now assuming that read/writes are blocking */
  1056. pitem *item;
  1057. hm_fragment *frag;
  1058. unsigned long header_length;
  1059. unsigned char seq64be[8];
  1060. struct dtls1_retransmit_state saved_state;
  1061. unsigned char save_write_sequence[8];
  1062. /*-
  1063. OPENSSL_assert(s->init_num == 0);
  1064. OPENSSL_assert(s->init_off == 0);
  1065. */
  1066. /* XDTLS: the requested message ought to be found, otherwise error */
  1067. memset(seq64be, 0, sizeof(seq64be));
  1068. seq64be[6] = (unsigned char)(seq >> 8);
  1069. seq64be[7] = (unsigned char)seq;
  1070. item = pqueue_find(s->d1->sent_messages, seq64be);
  1071. if (item == NULL) {
  1072. fprintf(stderr, "retransmit: message %d non-existant\n", seq);
  1073. *found = 0;
  1074. return 0;
  1075. }
  1076. *found = 1;
  1077. frag = (hm_fragment *)item->data;
  1078. if (frag->msg_header.is_ccs)
  1079. header_length = DTLS1_CCS_HEADER_LENGTH;
  1080. else
  1081. header_length = DTLS1_HM_HEADER_LENGTH;
  1082. memcpy(s->init_buf->data, frag->fragment,
  1083. frag->msg_header.msg_len + header_length);
  1084. s->init_num = frag->msg_header.msg_len + header_length;
  1085. dtls1_set_message_header_int(s, frag->msg_header.type,
  1086. frag->msg_header.msg_len,
  1087. frag->msg_header.seq, 0,
  1088. frag->msg_header.frag_len);
  1089. /* save current state */
  1090. saved_state.enc_write_ctx = s->enc_write_ctx;
  1091. saved_state.write_hash = s->write_hash;
  1092. saved_state.compress = s->compress;
  1093. saved_state.session = s->session;
  1094. saved_state.epoch = s->d1->w_epoch;
  1095. saved_state.epoch = s->d1->w_epoch;
  1096. s->d1->retransmitting = 1;
  1097. /* restore state in which the message was originally sent */
  1098. s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
  1099. s->write_hash = frag->msg_header.saved_retransmit_state.write_hash;
  1100. s->compress = frag->msg_header.saved_retransmit_state.compress;
  1101. s->session = frag->msg_header.saved_retransmit_state.session;
  1102. s->d1->w_epoch = frag->msg_header.saved_retransmit_state.epoch;
  1103. if (frag->msg_header.saved_retransmit_state.epoch ==
  1104. saved_state.epoch - 1) {
  1105. memcpy(save_write_sequence, s->s3->write_sequence,
  1106. sizeof(s->s3->write_sequence));
  1107. memcpy(s->s3->write_sequence, s->d1->last_write_sequence,
  1108. sizeof(s->s3->write_sequence));
  1109. }
  1110. ret = dtls1_do_write(s, frag->msg_header.is_ccs ?
  1111. SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
  1112. /* restore current state */
  1113. s->enc_write_ctx = saved_state.enc_write_ctx;
  1114. s->write_hash = saved_state.write_hash;
  1115. s->compress = saved_state.compress;
  1116. s->session = saved_state.session;
  1117. s->d1->w_epoch = saved_state.epoch;
  1118. if (frag->msg_header.saved_retransmit_state.epoch ==
  1119. saved_state.epoch - 1) {
  1120. memcpy(s->d1->last_write_sequence, s->s3->write_sequence,
  1121. sizeof(s->s3->write_sequence));
  1122. memcpy(s->s3->write_sequence, save_write_sequence,
  1123. sizeof(s->s3->write_sequence));
  1124. }
  1125. s->d1->retransmitting = 0;
  1126. (void)BIO_flush(SSL_get_wbio(s));
  1127. return ret;
  1128. }
  1129. /* call this function when the buffered messages are no longer needed */
  1130. void dtls1_clear_record_buffer(SSL *s)
  1131. {
  1132. pitem *item;
  1133. for (item = pqueue_pop(s->d1->sent_messages);
  1134. item != NULL; item = pqueue_pop(s->d1->sent_messages)) {
  1135. dtls1_hm_fragment_free((hm_fragment *)item->data);
  1136. pitem_free(item);
  1137. }
  1138. }
  1139. unsigned char *dtls1_set_message_header(SSL *s, unsigned char *p,
  1140. unsigned char mt, unsigned long len,
  1141. unsigned long frag_off,
  1142. unsigned long frag_len)
  1143. {
  1144. /* Don't change sequence numbers while listening */
  1145. if (frag_off == 0 && !s->d1->listen) {
  1146. s->d1->handshake_write_seq = s->d1->next_handshake_write_seq;
  1147. s->d1->next_handshake_write_seq++;
  1148. }
  1149. dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
  1150. frag_off, frag_len);
  1151. return p += DTLS1_HM_HEADER_LENGTH;
  1152. }
  1153. /* don't actually do the writing, wait till the MTU has been retrieved */
  1154. static void
  1155. dtls1_set_message_header_int(SSL *s, unsigned char mt,
  1156. unsigned long len, unsigned short seq_num,
  1157. unsigned long frag_off, unsigned long frag_len)
  1158. {
  1159. struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
  1160. msg_hdr->type = mt;
  1161. msg_hdr->msg_len = len;
  1162. msg_hdr->seq = seq_num;
  1163. msg_hdr->frag_off = frag_off;
  1164. msg_hdr->frag_len = frag_len;
  1165. }
  1166. static void
  1167. dtls1_fix_message_header(SSL *s, unsigned long frag_off,
  1168. unsigned long frag_len)
  1169. {
  1170. struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
  1171. msg_hdr->frag_off = frag_off;
  1172. msg_hdr->frag_len = frag_len;
  1173. }
  1174. static unsigned char *dtls1_write_message_header(SSL *s, unsigned char *p)
  1175. {
  1176. struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr;
  1177. *p++ = msg_hdr->type;
  1178. l2n3(msg_hdr->msg_len, p);
  1179. s2n(msg_hdr->seq, p);
  1180. l2n3(msg_hdr->frag_off, p);
  1181. l2n3(msg_hdr->frag_len, p);
  1182. return p;
  1183. }
  1184. unsigned int dtls1_link_min_mtu(void)
  1185. {
  1186. return (g_probable_mtu[(sizeof(g_probable_mtu) /
  1187. sizeof(g_probable_mtu[0])) - 1]);
  1188. }
  1189. unsigned int dtls1_min_mtu(SSL *s)
  1190. {
  1191. return dtls1_link_min_mtu() - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
  1192. }
  1193. void
  1194. dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr)
  1195. {
  1196. memset(msg_hdr, 0x00, sizeof(struct hm_header_st));
  1197. msg_hdr->type = *(data++);
  1198. n2l3(data, msg_hdr->msg_len);
  1199. n2s(data, msg_hdr->seq);
  1200. n2l3(data, msg_hdr->frag_off);
  1201. n2l3(data, msg_hdr->frag_len);
  1202. }
  1203. void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr)
  1204. {
  1205. memset(ccs_hdr, 0x00, sizeof(struct ccs_header_st));
  1206. ccs_hdr->type = *(data++);
  1207. }
  1208. int dtls1_shutdown(SSL *s)
  1209. {
  1210. int ret;
  1211. #ifndef OPENSSL_NO_SCTP
  1212. BIO *wbio;
  1213. wbio = SSL_get_wbio(s);
  1214. if (wbio != NULL && BIO_dgram_is_sctp(wbio) &&
  1215. !(s->shutdown & SSL_SENT_SHUTDOWN)) {
  1216. ret = BIO_dgram_sctp_wait_for_dry(wbio);
  1217. if (ret < 0)
  1218. return -1;
  1219. if (ret == 0)
  1220. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1,
  1221. NULL);
  1222. }
  1223. #endif
  1224. ret = ssl3_shutdown(s);
  1225. #ifndef OPENSSL_NO_SCTP
  1226. BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL);
  1227. #endif
  1228. return ret;
  1229. }
  1230. #ifndef OPENSSL_NO_HEARTBEATS
  1231. int dtls1_process_heartbeat(SSL *s)
  1232. {
  1233. unsigned char *p = &s->s3->rrec.data[0], *pl;
  1234. unsigned short hbtype;
  1235. unsigned int payload;
  1236. unsigned int padding = 16; /* Use minimum padding */
  1237. if (s->msg_callback)
  1238. s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT,
  1239. &s->s3->rrec.data[0], s->s3->rrec.length,
  1240. s, s->msg_callback_arg);
  1241. /* Read type and payload length first */
  1242. if (1 + 2 + 16 > s->s3->rrec.length)
  1243. return 0; /* silently discard */
  1244. if (s->s3->rrec.length > SSL3_RT_MAX_PLAIN_LENGTH)
  1245. return 0; /* silently discard per RFC 6520 sec. 4 */
  1246. hbtype = *p++;
  1247. n2s(p, payload);
  1248. if (1 + 2 + payload + 16 > s->s3->rrec.length)
  1249. return 0; /* silently discard per RFC 6520 sec. 4 */
  1250. pl = p;
  1251. if (hbtype == TLS1_HB_REQUEST) {
  1252. unsigned char *buffer, *bp;
  1253. unsigned int write_length = 1 /* heartbeat type */ +
  1254. 2 /* heartbeat length */ +
  1255. payload + padding;
  1256. int r;
  1257. if (write_length > SSL3_RT_MAX_PLAIN_LENGTH)
  1258. return 0;
  1259. /*
  1260. * Allocate memory for the response, size is 1 byte message type,
  1261. * plus 2 bytes payload length, plus payload, plus padding
  1262. */
  1263. buffer = OPENSSL_malloc(write_length);
  1264. bp = buffer;
  1265. /* Enter response type, length and copy payload */
  1266. *bp++ = TLS1_HB_RESPONSE;
  1267. s2n(payload, bp);
  1268. memcpy(bp, pl, payload);
  1269. bp += payload;
  1270. /* Random padding */
  1271. if (RAND_pseudo_bytes(bp, padding) < 0) {
  1272. OPENSSL_free(buffer);
  1273. return -1;
  1274. }
  1275. r = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buffer, write_length);
  1276. if (r >= 0 && s->msg_callback)
  1277. s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
  1278. buffer, write_length, s, s->msg_callback_arg);
  1279. OPENSSL_free(buffer);
  1280. if (r < 0)
  1281. return r;
  1282. } else if (hbtype == TLS1_HB_RESPONSE) {
  1283. unsigned int seq;
  1284. /*
  1285. * We only send sequence numbers (2 bytes unsigned int), and 16
  1286. * random bytes, so we just try to read the sequence number
  1287. */
  1288. n2s(pl, seq);
  1289. if (payload == 18 && seq == s->tlsext_hb_seq) {
  1290. dtls1_stop_timer(s);
  1291. s->tlsext_hb_seq++;
  1292. s->tlsext_hb_pending = 0;
  1293. }
  1294. }
  1295. return 0;
  1296. }
  1297. int dtls1_heartbeat(SSL *s)
  1298. {
  1299. unsigned char *buf, *p;
  1300. int ret = -1;
  1301. unsigned int payload = 18; /* Sequence number + random bytes */
  1302. unsigned int padding = 16; /* Use minimum padding */
  1303. /* Only send if peer supports and accepts HB requests... */
  1304. if (!(s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) ||
  1305. s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_SEND_REQUESTS) {
  1306. SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT);
  1307. return -1;
  1308. }
  1309. /* ...and there is none in flight yet... */
  1310. if (s->tlsext_hb_pending) {
  1311. SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PENDING);
  1312. return -1;
  1313. }
  1314. /* ...and no handshake in progress. */
  1315. if (SSL_in_init(s) || s->in_handshake) {
  1316. SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_UNEXPECTED_MESSAGE);
  1317. return -1;
  1318. }
  1319. /*
  1320. * Check if padding is too long, payload and padding must not exceed 2^14
  1321. * - 3 = 16381 bytes in total.
  1322. */
  1323. OPENSSL_assert(payload + padding <= 16381);
  1324. /*-
  1325. * Create HeartBeat message, we just use a sequence number
  1326. * as payload to distuingish different messages and add
  1327. * some random stuff.
  1328. * - Message Type, 1 byte
  1329. * - Payload Length, 2 bytes (unsigned int)
  1330. * - Payload, the sequence number (2 bytes uint)
  1331. * - Payload, random bytes (16 bytes uint)
  1332. * - Padding
  1333. */
  1334. buf = OPENSSL_malloc(1 + 2 + payload + padding);
  1335. p = buf;
  1336. /* Message Type */
  1337. *p++ = TLS1_HB_REQUEST;
  1338. /* Payload length (18 bytes here) */
  1339. s2n(payload, p);
  1340. /* Sequence number */
  1341. s2n(s->tlsext_hb_seq, p);
  1342. /* 16 random bytes */
  1343. if (RAND_pseudo_bytes(p, 16) < 0)
  1344. goto err;
  1345. p += 16;
  1346. /* Random padding */
  1347. if (RAND_pseudo_bytes(p, padding) < 0)
  1348. goto err;
  1349. ret = dtls1_write_bytes(s, TLS1_RT_HEARTBEAT, buf, 3 + payload + padding);
  1350. if (ret >= 0) {
  1351. if (s->msg_callback)
  1352. s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
  1353. buf, 3 + payload + padding,
  1354. s, s->msg_callback_arg);
  1355. dtls1_start_timer(s);
  1356. s->tlsext_hb_pending = 1;
  1357. }
  1358. err:
  1359. OPENSSL_free(buf);
  1360. return ret;
  1361. }
  1362. #endif