hs_common.c 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279
  1. /* Copyright (c) 2016-2017, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_common.c
  5. * \brief Contains code shared between different HS protocol version as well
  6. * as useful data structures and accessors used by other subsystems.
  7. * The rendcommon.c should only contains code relating to the v2
  8. * protocol.
  9. **/
  10. #define HS_COMMON_PRIVATE
  11. #include "or.h"
  12. #include "config.h"
  13. #include "networkstatus.h"
  14. #include "nodelist.h"
  15. #include "hs_cache.h"
  16. #include "hs_common.h"
  17. #include "hs_service.h"
  18. #include "rendcommon.h"
  19. #include "rendservice.h"
  20. #include "router.h"
  21. #include "shared_random.h"
  22. #include "shared_random_state.h"
  23. /* Ed25519 Basepoint value. Taken from section 5 of
  24. * https://tools.ietf.org/html/draft-josefsson-eddsa-ed25519-03 */
  25. static const char *str_ed25519_basepoint =
  26. "(15112221349535400772501151409588531511"
  27. "454012693041857206046113283949847762202, "
  28. "463168356949264781694283940034751631413"
  29. "07993866256225615783033603165251855960)";
  30. #ifdef HAVE_SYS_UN_H
  31. /** Given <b>ports</b>, a smarlist containing rend_service_port_config_t,
  32. * add the given <b>p</b>, a AF_UNIX port to the list. Return 0 on success
  33. * else return -ENOSYS if AF_UNIX is not supported (see function in the
  34. * #else statement below). */
  35. static int
  36. add_unix_port(smartlist_t *ports, rend_service_port_config_t *p)
  37. {
  38. tor_assert(ports);
  39. tor_assert(p);
  40. tor_assert(p->is_unix_addr);
  41. smartlist_add(ports, p);
  42. return 0;
  43. }
  44. /** Given <b>conn</b> set it to use the given port <b>p</b> values. Return 0
  45. * on success else return -ENOSYS if AF_UNIX is not supported (see function
  46. * in the #else statement below). */
  47. static int
  48. set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
  49. {
  50. tor_assert(conn);
  51. tor_assert(p);
  52. tor_assert(p->is_unix_addr);
  53. conn->base_.socket_family = AF_UNIX;
  54. tor_addr_make_unspec(&conn->base_.addr);
  55. conn->base_.port = 1;
  56. conn->base_.address = tor_strdup(p->unix_addr);
  57. return 0;
  58. }
  59. #else /* defined(HAVE_SYS_UN_H) */
  60. static int
  61. set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
  62. {
  63. (void) conn;
  64. (void) p;
  65. return -ENOSYS;
  66. }
  67. static int
  68. add_unix_port(smartlist_t *ports, rend_service_port_config_t *p)
  69. {
  70. (void) ports;
  71. (void) p;
  72. return -ENOSYS;
  73. }
  74. #endif /* HAVE_SYS_UN_H */
  75. /* Helper function: The key is a digest that we compare to a node_t object
  76. * current hsdir_index. */
  77. static int
  78. compare_digest_to_current_hsdir_index(const void *_key, const void **_member)
  79. {
  80. const char *key = _key;
  81. const node_t *node = *_member;
  82. return tor_memcmp(key, node->hsdir_index->current, DIGEST256_LEN);
  83. }
  84. /* Helper function: The key is a digest that we compare to a node_t object
  85. * next hsdir_index. */
  86. static int
  87. compare_digest_to_next_hsdir_index(const void *_key, const void **_member)
  88. {
  89. const char *key = _key;
  90. const node_t *node = *_member;
  91. return tor_memcmp(key, node->hsdir_index->next, DIGEST256_LEN);
  92. }
  93. /* Helper function: Compare two node_t objects current hsdir_index. */
  94. static int
  95. compare_node_current_hsdir_index(const void **a, const void **b)
  96. {
  97. const node_t *node1= *a;
  98. const node_t *node2 = *b;
  99. return tor_memcmp(node1->hsdir_index->current,
  100. node2->hsdir_index->current,
  101. DIGEST256_LEN);
  102. }
  103. /* Helper function: Compare two node_t objects next hsdir_index. */
  104. static int
  105. compare_node_next_hsdir_index(const void **a, const void **b)
  106. {
  107. const node_t *node1= *a;
  108. const node_t *node2 = *b;
  109. return tor_memcmp(node1->hsdir_index->next,
  110. node2->hsdir_index->next,
  111. DIGEST256_LEN);
  112. }
  113. /* Allocate and return a string containing the path to filename in directory.
  114. * This function will never return NULL. The caller must free this path. */
  115. char *
  116. hs_path_from_filename(const char *directory, const char *filename)
  117. {
  118. char *file_path = NULL;
  119. tor_assert(directory);
  120. tor_assert(filename);
  121. tor_asprintf(&file_path, "%s%s%s", directory, PATH_SEPARATOR, filename);
  122. return file_path;
  123. }
  124. /* Make sure that the directory for <b>service</b> is private, using the config
  125. * <b>username</b>.
  126. * If <b>create</b> is true:
  127. * - if the directory exists, change permissions if needed,
  128. * - if the directory does not exist, create it with the correct permissions.
  129. * If <b>create</b> is false:
  130. * - if the directory exists, check permissions,
  131. * - if the directory does not exist, check if we think we can create it.
  132. * Return 0 on success, -1 on failure. */
  133. int
  134. hs_check_service_private_dir(const char *username, const char *path,
  135. unsigned int dir_group_readable,
  136. unsigned int create)
  137. {
  138. cpd_check_t check_opts = CPD_NONE;
  139. tor_assert(path);
  140. if (create) {
  141. check_opts |= CPD_CREATE;
  142. } else {
  143. check_opts |= CPD_CHECK_MODE_ONLY;
  144. check_opts |= CPD_CHECK;
  145. }
  146. if (dir_group_readable) {
  147. check_opts |= CPD_GROUP_READ;
  148. }
  149. /* Check/create directory */
  150. if (check_private_dir(path, check_opts, username) < 0) {
  151. return -1;
  152. }
  153. return 0;
  154. }
  155. /** Get the default HS time period length in minutes from the consensus. */
  156. STATIC uint64_t
  157. get_time_period_length(void)
  158. {
  159. /* If we are on a test network, make the time period smaller than normal so
  160. that we actually see it rotate. Specifically, make it the same length as
  161. an SRV protocol run. */
  162. if (get_options()->TestingTorNetwork) {
  163. unsigned run_duration = sr_state_get_protocol_run_duration();
  164. /* An SRV run should take more than a minute (it's 24 rounds) */
  165. tor_assert_nonfatal(run_duration > 60);
  166. /* Turn it from seconds to minutes before returning: */
  167. return sr_state_get_protocol_run_duration() / 60;
  168. }
  169. int32_t time_period_length = networkstatus_get_param(NULL, "hsdir-interval",
  170. HS_TIME_PERIOD_LENGTH_DEFAULT,
  171. HS_TIME_PERIOD_LENGTH_MIN,
  172. HS_TIME_PERIOD_LENGTH_MAX);
  173. /* Make sure it's a positive value. */
  174. tor_assert(time_period_length >= 0);
  175. /* uint64_t will always be able to contain a int32_t */
  176. return (uint64_t) time_period_length;
  177. }
  178. /** Get the HS time period number at time <b>now</b> */
  179. uint64_t
  180. hs_get_time_period_num(time_t now)
  181. {
  182. uint64_t time_period_num;
  183. /* Start by calculating minutes since the epoch */
  184. uint64_t time_period_length = get_time_period_length();
  185. uint64_t minutes_since_epoch = now / 60;
  186. /* Apply the rotation offset as specified by prop224 (section
  187. * [TIME-PERIODS]), so that new time periods synchronize nicely with SRV
  188. * publication */
  189. unsigned int time_period_rotation_offset = sr_state_get_phase_duration();
  190. time_period_rotation_offset /= 60; /* go from seconds to minutes */
  191. tor_assert(minutes_since_epoch > time_period_rotation_offset);
  192. minutes_since_epoch -= time_period_rotation_offset;
  193. /* Calculate the time period */
  194. time_period_num = minutes_since_epoch / time_period_length;
  195. return time_period_num;
  196. }
  197. /** Get the number of the _upcoming_ HS time period, given that the current
  198. * time is <b>now</b>. */
  199. uint64_t
  200. hs_get_next_time_period_num(time_t now)
  201. {
  202. return hs_get_time_period_num(now) + 1;
  203. }
  204. /* Return the start time of the upcoming time period based on <b>now</b>. */
  205. time_t
  206. hs_get_start_time_of_next_time_period(time_t now)
  207. {
  208. uint64_t time_period_length = get_time_period_length();
  209. /* Get start time of next time period */
  210. uint64_t next_time_period_num = hs_get_next_time_period_num(now);
  211. uint64_t start_of_next_tp_in_mins = next_time_period_num *time_period_length;
  212. /* Apply rotation offset as specified by prop224 section [TIME-PERIODS] */
  213. unsigned int time_period_rotation_offset = sr_state_get_phase_duration();
  214. return start_of_next_tp_in_mins * 60 + time_period_rotation_offset;
  215. }
  216. /* Create a new rend_data_t for a specific given <b>version</b>.
  217. * Return a pointer to the newly allocated data structure. */
  218. static rend_data_t *
  219. rend_data_alloc(uint32_t version)
  220. {
  221. rend_data_t *rend_data = NULL;
  222. switch (version) {
  223. case HS_VERSION_TWO:
  224. {
  225. rend_data_v2_t *v2 = tor_malloc_zero(sizeof(*v2));
  226. v2->base_.version = HS_VERSION_TWO;
  227. v2->base_.hsdirs_fp = smartlist_new();
  228. rend_data = &v2->base_;
  229. break;
  230. }
  231. default:
  232. tor_assert(0);
  233. break;
  234. }
  235. return rend_data;
  236. }
  237. /** Free all storage associated with <b>data</b> */
  238. void
  239. rend_data_free(rend_data_t *data)
  240. {
  241. if (!data) {
  242. return;
  243. }
  244. /* By using our allocation function, this should always be set. */
  245. tor_assert(data->hsdirs_fp);
  246. /* Cleanup the HSDir identity digest. */
  247. SMARTLIST_FOREACH(data->hsdirs_fp, char *, d, tor_free(d));
  248. smartlist_free(data->hsdirs_fp);
  249. /* Depending on the version, cleanup. */
  250. switch (data->version) {
  251. case HS_VERSION_TWO:
  252. {
  253. rend_data_v2_t *v2_data = TO_REND_DATA_V2(data);
  254. tor_free(v2_data);
  255. break;
  256. }
  257. default:
  258. tor_assert(0);
  259. }
  260. }
  261. /* Allocate and return a deep copy of <b>data</b>. */
  262. rend_data_t *
  263. rend_data_dup(const rend_data_t *data)
  264. {
  265. rend_data_t *data_dup = NULL;
  266. smartlist_t *hsdirs_fp = smartlist_new();
  267. tor_assert(data);
  268. tor_assert(data->hsdirs_fp);
  269. SMARTLIST_FOREACH(data->hsdirs_fp, char *, fp,
  270. smartlist_add(hsdirs_fp, tor_memdup(fp, DIGEST_LEN)));
  271. switch (data->version) {
  272. case HS_VERSION_TWO:
  273. {
  274. rend_data_v2_t *v2_data = tor_memdup(TO_REND_DATA_V2(data),
  275. sizeof(*v2_data));
  276. data_dup = &v2_data->base_;
  277. data_dup->hsdirs_fp = hsdirs_fp;
  278. break;
  279. }
  280. default:
  281. tor_assert(0);
  282. break;
  283. }
  284. return data_dup;
  285. }
  286. /* Compute the descriptor ID for each HS descriptor replica and save them. A
  287. * valid onion address must be present in the <b>rend_data</b>.
  288. *
  289. * Return 0 on success else -1. */
  290. static int
  291. compute_desc_id(rend_data_t *rend_data)
  292. {
  293. int ret = 0;
  294. unsigned replica;
  295. time_t now = time(NULL);
  296. tor_assert(rend_data);
  297. switch (rend_data->version) {
  298. case HS_VERSION_TWO:
  299. {
  300. rend_data_v2_t *v2_data = TO_REND_DATA_V2(rend_data);
  301. /* Compute descriptor ID for each replicas. */
  302. for (replica = 0; replica < ARRAY_LENGTH(v2_data->descriptor_id);
  303. replica++) {
  304. ret = rend_compute_v2_desc_id(v2_data->descriptor_id[replica],
  305. v2_data->onion_address,
  306. v2_data->descriptor_cookie,
  307. now, replica);
  308. if (ret < 0) {
  309. goto end;
  310. }
  311. }
  312. break;
  313. }
  314. default:
  315. tor_assert(0);
  316. }
  317. end:
  318. return ret;
  319. }
  320. /* Allocate and initialize a rend_data_t object for a service using the
  321. * provided arguments. All arguments are optional (can be NULL), except from
  322. * <b>onion_address</b> which MUST be set. The <b>pk_digest</b> is the hash of
  323. * the service private key. The <b>cookie</b> is the rendezvous cookie and
  324. * <b>auth_type</b> is which authentiation this service is configured with.
  325. *
  326. * Return a valid rend_data_t pointer. This only returns a version 2 object of
  327. * rend_data_t. */
  328. rend_data_t *
  329. rend_data_service_create(const char *onion_address, const char *pk_digest,
  330. const uint8_t *cookie, rend_auth_type_t auth_type)
  331. {
  332. /* Create a rend_data_t object for version 2. */
  333. rend_data_t *rend_data = rend_data_alloc(HS_VERSION_TWO);
  334. rend_data_v2_t *v2= TO_REND_DATA_V2(rend_data);
  335. /* We need at least one else the call is wrong. */
  336. tor_assert(onion_address != NULL);
  337. if (pk_digest) {
  338. memcpy(v2->rend_pk_digest, pk_digest, sizeof(v2->rend_pk_digest));
  339. }
  340. if (cookie) {
  341. memcpy(rend_data->rend_cookie, cookie, sizeof(rend_data->rend_cookie));
  342. }
  343. strlcpy(v2->onion_address, onion_address, sizeof(v2->onion_address));
  344. v2->auth_type = auth_type;
  345. return rend_data;
  346. }
  347. /* Allocate and initialize a rend_data_t object for a client request using the
  348. * given arguments. Either an onion address or a descriptor ID is needed. Both
  349. * can be given but in this case only the onion address will be used to make
  350. * the descriptor fetch. The <b>cookie</b> is the rendezvous cookie and
  351. * <b>auth_type</b> is which authentiation the service is configured with.
  352. *
  353. * Return a valid rend_data_t pointer or NULL on error meaning the
  354. * descriptor IDs couldn't be computed from the given data. */
  355. rend_data_t *
  356. rend_data_client_create(const char *onion_address, const char *desc_id,
  357. const char *cookie, rend_auth_type_t auth_type)
  358. {
  359. /* Create a rend_data_t object for version 2. */
  360. rend_data_t *rend_data = rend_data_alloc(HS_VERSION_TWO);
  361. rend_data_v2_t *v2= TO_REND_DATA_V2(rend_data);
  362. /* We need at least one else the call is wrong. */
  363. tor_assert(onion_address != NULL || desc_id != NULL);
  364. if (cookie) {
  365. memcpy(v2->descriptor_cookie, cookie, sizeof(v2->descriptor_cookie));
  366. }
  367. if (desc_id) {
  368. memcpy(v2->desc_id_fetch, desc_id, sizeof(v2->desc_id_fetch));
  369. }
  370. if (onion_address) {
  371. strlcpy(v2->onion_address, onion_address, sizeof(v2->onion_address));
  372. if (compute_desc_id(rend_data) < 0) {
  373. goto error;
  374. }
  375. }
  376. v2->auth_type = auth_type;
  377. return rend_data;
  378. error:
  379. rend_data_free(rend_data);
  380. return NULL;
  381. }
  382. /* Return the onion address from the rend data. Depending on the version,
  383. * the size of the address can vary but it's always NUL terminated. */
  384. const char *
  385. rend_data_get_address(const rend_data_t *rend_data)
  386. {
  387. tor_assert(rend_data);
  388. switch (rend_data->version) {
  389. case HS_VERSION_TWO:
  390. return TO_REND_DATA_V2(rend_data)->onion_address;
  391. default:
  392. /* We should always have a supported version. */
  393. tor_assert(0);
  394. }
  395. }
  396. /* Return the descriptor ID for a specific replica number from the rend
  397. * data. The returned data is a binary digest and depending on the version its
  398. * size can vary. The size of the descriptor ID is put in <b>len_out</b> if
  399. * non NULL. */
  400. const char *
  401. rend_data_get_desc_id(const rend_data_t *rend_data, uint8_t replica,
  402. size_t *len_out)
  403. {
  404. tor_assert(rend_data);
  405. switch (rend_data->version) {
  406. case HS_VERSION_TWO:
  407. tor_assert(replica < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS);
  408. if (len_out) {
  409. *len_out = DIGEST_LEN;
  410. }
  411. return TO_REND_DATA_V2(rend_data)->descriptor_id[replica];
  412. default:
  413. /* We should always have a supported version. */
  414. tor_assert(0);
  415. }
  416. }
  417. /* Return the public key digest using the given <b>rend_data</b>. The size of
  418. * the digest is put in <b>len_out</b> (if set) which can differ depending on
  419. * the version. */
  420. const uint8_t *
  421. rend_data_get_pk_digest(const rend_data_t *rend_data, size_t *len_out)
  422. {
  423. tor_assert(rend_data);
  424. switch (rend_data->version) {
  425. case HS_VERSION_TWO:
  426. {
  427. const rend_data_v2_t *v2_data = TO_REND_DATA_V2(rend_data);
  428. if (len_out) {
  429. *len_out = sizeof(v2_data->rend_pk_digest);
  430. }
  431. return (const uint8_t *) v2_data->rend_pk_digest;
  432. }
  433. default:
  434. /* We should always have a supported version. */
  435. tor_assert(0);
  436. }
  437. }
  438. /* Using the given time period number, compute the disaster shared random
  439. * value and put it in srv_out. It MUST be at least DIGEST256_LEN bytes. */
  440. static void
  441. get_disaster_srv(uint64_t time_period_num, uint8_t *srv_out)
  442. {
  443. crypto_digest_t *digest;
  444. tor_assert(srv_out);
  445. digest = crypto_digest256_new(DIGEST_SHA3_256);
  446. /* Start setting up payload:
  447. * H("shared-random-disaster" | INT_8(period_length) | INT_8(period_num)) */
  448. crypto_digest_add_bytes(digest, HS_SRV_DISASTER_PREFIX,
  449. HS_SRV_DISASTER_PREFIX_LEN);
  450. /* Setup INT_8(period_length) | INT_8(period_num) */
  451. {
  452. uint64_t time_period_length = get_time_period_length();
  453. char period_stuff[sizeof(uint64_t)*2];
  454. size_t offset = 0;
  455. set_uint64(period_stuff, tor_htonll(time_period_num));
  456. offset += sizeof(uint64_t);
  457. set_uint64(period_stuff+offset, tor_htonll(time_period_length));
  458. offset += sizeof(uint64_t);
  459. tor_assert(offset == sizeof(period_stuff));
  460. crypto_digest_add_bytes(digest, period_stuff, sizeof(period_stuff));
  461. }
  462. crypto_digest_get_digest(digest, (char *) srv_out, DIGEST256_LEN);
  463. crypto_digest_free(digest);
  464. }
  465. /* When creating a blinded key, we need a parameter which construction is as
  466. * follow: H(pubkey | [secret] | ed25519-basepoint | nonce).
  467. *
  468. * The nonce has a pre-defined format which uses the time period number
  469. * period_num and the start of the period in second start_time_period.
  470. *
  471. * The secret of size secret_len is optional meaning that it can be NULL and
  472. * thus will be ignored for the param construction.
  473. *
  474. * The result is put in param_out. */
  475. static void
  476. build_blinded_key_param(const ed25519_public_key_t *pubkey,
  477. const uint8_t *secret, size_t secret_len,
  478. uint64_t period_num, uint64_t period_length,
  479. uint8_t *param_out)
  480. {
  481. size_t offset = 0;
  482. uint8_t nonce[HS_KEYBLIND_NONCE_LEN];
  483. crypto_digest_t *digest;
  484. tor_assert(pubkey);
  485. tor_assert(param_out);
  486. /* Create the nonce N. The construction is as follow:
  487. * N = "key-blind" || INT_8(period_num) || INT_8(period_length) */
  488. memcpy(nonce, HS_KEYBLIND_NONCE_PREFIX, HS_KEYBLIND_NONCE_PREFIX_LEN);
  489. offset += HS_KEYBLIND_NONCE_PREFIX_LEN;
  490. set_uint64(nonce + offset, tor_htonll(period_num));
  491. offset += sizeof(uint64_t);
  492. set_uint64(nonce + offset, tor_htonll(period_length));
  493. offset += sizeof(uint64_t);
  494. tor_assert(offset == HS_KEYBLIND_NONCE_LEN);
  495. /* Generate the parameter h and the construction is as follow:
  496. * h = H(pubkey | [secret] | ed25519-basepoint | nonce) */
  497. digest = crypto_digest256_new(DIGEST_SHA3_256);
  498. crypto_digest_add_bytes(digest, (char *) pubkey, ED25519_PUBKEY_LEN);
  499. /* Optional secret. */
  500. if (secret) {
  501. crypto_digest_add_bytes(digest, (char *) secret, secret_len);
  502. }
  503. crypto_digest_add_bytes(digest, str_ed25519_basepoint,
  504. strlen(str_ed25519_basepoint));
  505. crypto_digest_add_bytes(digest, (char *) nonce, sizeof(nonce));
  506. /* Extract digest and put it in the param. */
  507. crypto_digest_get_digest(digest, (char *) param_out, DIGEST256_LEN);
  508. crypto_digest_free(digest);
  509. memwipe(nonce, 0, sizeof(nonce));
  510. }
  511. /* Using an ed25519 public key and version to build the checksum of an
  512. * address. Put in checksum_out. Format is:
  513. * SHA3-256(".onion checksum" || PUBKEY || VERSION)
  514. *
  515. * checksum_out must be large enough to receive 32 bytes (DIGEST256_LEN). */
  516. static void
  517. build_hs_checksum(const ed25519_public_key_t *key, uint8_t version,
  518. uint8_t *checksum_out)
  519. {
  520. size_t offset = 0;
  521. char data[HS_SERVICE_ADDR_CHECKSUM_INPUT_LEN];
  522. /* Build checksum data. */
  523. memcpy(data, HS_SERVICE_ADDR_CHECKSUM_PREFIX,
  524. HS_SERVICE_ADDR_CHECKSUM_PREFIX_LEN);
  525. offset += HS_SERVICE_ADDR_CHECKSUM_PREFIX_LEN;
  526. memcpy(data + offset, key->pubkey, ED25519_PUBKEY_LEN);
  527. offset += ED25519_PUBKEY_LEN;
  528. set_uint8(data + offset, version);
  529. offset += sizeof(version);
  530. tor_assert(offset == HS_SERVICE_ADDR_CHECKSUM_INPUT_LEN);
  531. /* Hash the data payload to create the checksum. */
  532. crypto_digest256((char *) checksum_out, data, sizeof(data),
  533. DIGEST_SHA3_256);
  534. }
  535. /* Using an ed25519 public key, checksum and version to build the binary
  536. * representation of a service address. Put in addr_out. Format is:
  537. * addr_out = PUBKEY || CHECKSUM || VERSION
  538. *
  539. * addr_out must be large enough to receive HS_SERVICE_ADDR_LEN bytes. */
  540. static void
  541. build_hs_address(const ed25519_public_key_t *key, const uint8_t *checksum,
  542. uint8_t version, char *addr_out)
  543. {
  544. size_t offset = 0;
  545. tor_assert(key);
  546. tor_assert(checksum);
  547. memcpy(addr_out, key->pubkey, ED25519_PUBKEY_LEN);
  548. offset += ED25519_PUBKEY_LEN;
  549. memcpy(addr_out + offset, checksum, HS_SERVICE_ADDR_CHECKSUM_LEN_USED);
  550. offset += HS_SERVICE_ADDR_CHECKSUM_LEN_USED;
  551. set_uint8(addr_out + offset, version);
  552. offset += sizeof(uint8_t);
  553. tor_assert(offset == HS_SERVICE_ADDR_LEN);
  554. }
  555. /* Helper for hs_parse_address(): Using a binary representation of a service
  556. * address, parse its content into the key_out, checksum_out and version_out.
  557. * Any out variable can be NULL in case the caller would want only one field.
  558. * checksum_out MUST at least be 2 bytes long. address must be at least
  559. * HS_SERVICE_ADDR_LEN bytes but doesn't need to be NUL terminated. */
  560. static void
  561. hs_parse_address_impl(const char *address, ed25519_public_key_t *key_out,
  562. uint8_t *checksum_out, uint8_t *version_out)
  563. {
  564. size_t offset = 0;
  565. tor_assert(address);
  566. if (key_out) {
  567. /* First is the key. */
  568. memcpy(key_out->pubkey, address, ED25519_PUBKEY_LEN);
  569. }
  570. offset += ED25519_PUBKEY_LEN;
  571. if (checksum_out) {
  572. /* Followed by a 2 bytes checksum. */
  573. memcpy(checksum_out, address + offset, HS_SERVICE_ADDR_CHECKSUM_LEN_USED);
  574. }
  575. offset += HS_SERVICE_ADDR_CHECKSUM_LEN_USED;
  576. if (version_out) {
  577. /* Finally, version value is 1 byte. */
  578. *version_out = get_uint8(address + offset);
  579. }
  580. offset += sizeof(uint8_t);
  581. /* Extra safety. */
  582. tor_assert(offset == HS_SERVICE_ADDR_LEN);
  583. }
  584. /* Using the given identity public key and a blinded public key, compute the
  585. * subcredential and put it in subcred_out (must be of size DIGEST256_LEN).
  586. * This can't fail. */
  587. void
  588. hs_get_subcredential(const ed25519_public_key_t *identity_pk,
  589. const ed25519_public_key_t *blinded_pk,
  590. uint8_t *subcred_out)
  591. {
  592. uint8_t credential[DIGEST256_LEN];
  593. crypto_digest_t *digest;
  594. tor_assert(identity_pk);
  595. tor_assert(blinded_pk);
  596. tor_assert(subcred_out);
  597. /* First, build the credential. Construction is as follow:
  598. * credential = H("credential" | public-identity-key) */
  599. digest = crypto_digest256_new(DIGEST_SHA3_256);
  600. crypto_digest_add_bytes(digest, HS_CREDENTIAL_PREFIX,
  601. HS_CREDENTIAL_PREFIX_LEN);
  602. crypto_digest_add_bytes(digest, (const char *) identity_pk->pubkey,
  603. ED25519_PUBKEY_LEN);
  604. crypto_digest_get_digest(digest, (char *) credential, DIGEST256_LEN);
  605. crypto_digest_free(digest);
  606. /* Now, compute the subcredential. Construction is as follow:
  607. * subcredential = H("subcredential" | credential | blinded-public-key). */
  608. digest = crypto_digest256_new(DIGEST_SHA3_256);
  609. crypto_digest_add_bytes(digest, HS_SUBCREDENTIAL_PREFIX,
  610. HS_SUBCREDENTIAL_PREFIX_LEN);
  611. crypto_digest_add_bytes(digest, (const char *) credential,
  612. sizeof(credential));
  613. crypto_digest_add_bytes(digest, (const char *) blinded_pk->pubkey,
  614. ED25519_PUBKEY_LEN);
  615. crypto_digest_get_digest(digest, (char *) subcred_out, DIGEST256_LEN);
  616. crypto_digest_free(digest);
  617. memwipe(credential, 0, sizeof(credential));
  618. }
  619. /* From the given list of hidden service ports, find the ones that much the
  620. * given edge connection conn, pick one at random and use it to set the
  621. * connection address. Return 0 on success or -1 if none. */
  622. int
  623. hs_set_conn_addr_port(const smartlist_t *ports, edge_connection_t *conn)
  624. {
  625. rend_service_port_config_t *chosen_port;
  626. unsigned int warn_once = 0;
  627. smartlist_t *matching_ports;
  628. tor_assert(ports);
  629. tor_assert(conn);
  630. matching_ports = smartlist_new();
  631. SMARTLIST_FOREACH_BEGIN(ports, rend_service_port_config_t *, p) {
  632. if (TO_CONN(conn)->port != p->virtual_port) {
  633. continue;
  634. }
  635. if (!(p->is_unix_addr)) {
  636. smartlist_add(matching_ports, p);
  637. } else {
  638. if (add_unix_port(matching_ports, p)) {
  639. if (!warn_once) {
  640. /* Unix port not supported so warn only once. */
  641. log_warn(LD_REND, "Saw AF_UNIX virtual port mapping for port %d "
  642. "which is unsupported on this platform. "
  643. "Ignoring it.",
  644. TO_CONN(conn)->port);
  645. }
  646. warn_once++;
  647. }
  648. }
  649. } SMARTLIST_FOREACH_END(p);
  650. chosen_port = smartlist_choose(matching_ports);
  651. smartlist_free(matching_ports);
  652. if (chosen_port) {
  653. if (!(chosen_port->is_unix_addr)) {
  654. /* Get a non-AF_UNIX connection ready for connection_exit_connect() */
  655. tor_addr_copy(&TO_CONN(conn)->addr, &chosen_port->real_addr);
  656. TO_CONN(conn)->port = chosen_port->real_port;
  657. } else {
  658. if (set_unix_port(conn, chosen_port)) {
  659. /* Simply impossible to end up here else we were able to add a Unix
  660. * port without AF_UNIX support... ? */
  661. tor_assert(0);
  662. }
  663. }
  664. }
  665. return (chosen_port) ? 0 : -1;
  666. }
  667. /* Using a base32 representation of a service address, parse its content into
  668. * the key_out, checksum_out and version_out. Any out variable can be NULL in
  669. * case the caller would want only one field. checksum_out MUST at least be 2
  670. * bytes long.
  671. *
  672. * Return 0 if parsing went well; return -1 in case of error. */
  673. int
  674. hs_parse_address(const char *address, ed25519_public_key_t *key_out,
  675. uint8_t *checksum_out, uint8_t *version_out)
  676. {
  677. char decoded[HS_SERVICE_ADDR_LEN];
  678. tor_assert(address);
  679. /* Obvious length check. */
  680. if (strlen(address) != HS_SERVICE_ADDR_LEN_BASE32) {
  681. log_warn(LD_REND, "Service address %s has an invalid length. "
  682. "Expected %lu but got %lu.",
  683. escaped_safe_str(address),
  684. (unsigned long) HS_SERVICE_ADDR_LEN_BASE32,
  685. (unsigned long) strlen(address));
  686. goto invalid;
  687. }
  688. /* Decode address so we can extract needed fields. */
  689. if (base32_decode(decoded, sizeof(decoded), address, strlen(address)) < 0) {
  690. log_warn(LD_REND, "Service address %s can't be decoded.",
  691. escaped_safe_str(address));
  692. goto invalid;
  693. }
  694. /* Parse the decoded address into the fields we need. */
  695. hs_parse_address_impl(decoded, key_out, checksum_out, version_out);
  696. return 0;
  697. invalid:
  698. return -1;
  699. }
  700. /* Validate a given onion address. The length, the base32 decoding and
  701. * checksum are validated. Return 1 if valid else 0. */
  702. int
  703. hs_address_is_valid(const char *address)
  704. {
  705. uint8_t version;
  706. uint8_t checksum[HS_SERVICE_ADDR_CHECKSUM_LEN_USED];
  707. uint8_t target_checksum[DIGEST256_LEN];
  708. ed25519_public_key_t key;
  709. /* Parse the decoded address into the fields we need. */
  710. if (hs_parse_address(address, &key, checksum, &version) < 0) {
  711. goto invalid;
  712. }
  713. /* Get the checksum it's suppose to be and compare it with what we have
  714. * encoded in the address. */
  715. build_hs_checksum(&key, version, target_checksum);
  716. if (tor_memcmp(checksum, target_checksum, sizeof(checksum))) {
  717. log_warn(LD_REND, "Service address %s invalid checksum.",
  718. escaped_safe_str(address));
  719. goto invalid;
  720. }
  721. /* Valid address. */
  722. return 1;
  723. invalid:
  724. return 0;
  725. }
  726. /* Build a service address using an ed25519 public key and a given version.
  727. * The returned address is base32 encoded and put in addr_out. The caller MUST
  728. * make sure the addr_out is at least HS_SERVICE_ADDR_LEN_BASE32 + 1 long.
  729. *
  730. * Format is as follow:
  731. * base32(PUBKEY || CHECKSUM || VERSION)
  732. * CHECKSUM = H(".onion checksum" || PUBKEY || VERSION)
  733. * */
  734. void
  735. hs_build_address(const ed25519_public_key_t *key, uint8_t version,
  736. char *addr_out)
  737. {
  738. uint8_t checksum[DIGEST256_LEN];
  739. char address[HS_SERVICE_ADDR_LEN];
  740. tor_assert(key);
  741. tor_assert(addr_out);
  742. /* Get the checksum of the address. */
  743. build_hs_checksum(key, version, checksum);
  744. /* Get the binary address representation. */
  745. build_hs_address(key, checksum, version, address);
  746. /* Encode the address. addr_out will be NUL terminated after this. */
  747. base32_encode(addr_out, HS_SERVICE_ADDR_LEN_BASE32 + 1, address,
  748. sizeof(address));
  749. /* Validate what we just built. */
  750. tor_assert(hs_address_is_valid(addr_out));
  751. }
  752. /* Return a newly allocated copy of lspec. */
  753. link_specifier_t *
  754. hs_link_specifier_dup(const link_specifier_t *lspec)
  755. {
  756. link_specifier_t *dup = link_specifier_new();
  757. memcpy(dup, lspec, sizeof(*dup));
  758. /* The unrecognized field is a dynamic array so make sure to copy its
  759. * content and not the pointer. */
  760. link_specifier_setlen_un_unrecognized(
  761. dup, link_specifier_getlen_un_unrecognized(lspec));
  762. if (link_specifier_getlen_un_unrecognized(dup)) {
  763. memcpy(link_specifier_getarray_un_unrecognized(dup),
  764. link_specifier_getconstarray_un_unrecognized(lspec),
  765. link_specifier_getlen_un_unrecognized(dup));
  766. }
  767. return dup;
  768. }
  769. /* From a given ed25519 public key pk and an optional secret, compute a
  770. * blinded public key and put it in blinded_pk_out. This is only useful to
  771. * the client side because the client only has access to the identity public
  772. * key of the service. */
  773. void
  774. hs_build_blinded_pubkey(const ed25519_public_key_t *pk,
  775. const uint8_t *secret, size_t secret_len,
  776. uint64_t time_period_num,
  777. ed25519_public_key_t *blinded_pk_out)
  778. {
  779. /* Our blinding key API requires a 32 bytes parameter. */
  780. uint8_t param[DIGEST256_LEN];
  781. tor_assert(pk);
  782. tor_assert(blinded_pk_out);
  783. tor_assert(!tor_mem_is_zero((char *) pk, ED25519_PUBKEY_LEN));
  784. build_blinded_key_param(pk, secret, secret_len,
  785. time_period_num, get_time_period_length(), param);
  786. ed25519_public_blind(blinded_pk_out, pk, param);
  787. memwipe(param, 0, sizeof(param));
  788. }
  789. /* From a given ed25519 keypair kp and an optional secret, compute a blinded
  790. * keypair for the current time period and put it in blinded_kp_out. This is
  791. * only useful by the service side because the client doesn't have access to
  792. * the identity secret key. */
  793. void
  794. hs_build_blinded_keypair(const ed25519_keypair_t *kp,
  795. const uint8_t *secret, size_t secret_len,
  796. uint64_t time_period_num,
  797. ed25519_keypair_t *blinded_kp_out)
  798. {
  799. /* Our blinding key API requires a 32 bytes parameter. */
  800. uint8_t param[DIGEST256_LEN];
  801. tor_assert(kp);
  802. tor_assert(blinded_kp_out);
  803. /* Extra safety. A zeroed key is bad. */
  804. tor_assert(!tor_mem_is_zero((char *) &kp->pubkey, ED25519_PUBKEY_LEN));
  805. tor_assert(!tor_mem_is_zero((char *) &kp->seckey, ED25519_SECKEY_LEN));
  806. build_blinded_key_param(&kp->pubkey, secret, secret_len,
  807. time_period_num, get_time_period_length(), param);
  808. ed25519_keypair_blind(blinded_kp_out, kp, param);
  809. memwipe(param, 0, sizeof(param));
  810. }
  811. /* Return true if overlap mode is active given the date in consensus. If
  812. * consensus is NULL, then we use the latest live consensus we can find. */
  813. MOCK_IMPL(int,
  814. hs_overlap_mode_is_active, (const networkstatus_t *consensus, time_t now))
  815. {
  816. time_t valid_after;
  817. time_t srv_start_time, tp_start_time;
  818. if (!consensus) {
  819. consensus = networkstatus_get_live_consensus(now);
  820. if (!consensus) {
  821. return 0;
  822. }
  823. }
  824. /* We consider to be in overlap mode when we are in the period of time
  825. * between a fresh SRV and the beginning of the new time period (in the
  826. * normal network this is between 00:00 (inclusive) and 12:00 UTC
  827. * (exclusive)) */
  828. valid_after = consensus->valid_after;
  829. srv_start_time =sr_state_get_start_time_of_current_protocol_run(valid_after);
  830. tp_start_time = hs_get_start_time_of_next_time_period(srv_start_time);
  831. if (valid_after >= srv_start_time && valid_after < tp_start_time) {
  832. return 1;
  833. }
  834. return 0;
  835. }
  836. /* Return 1 if any virtual port in ports needs a circuit with good uptime.
  837. * Else return 0. */
  838. int
  839. hs_service_requires_uptime_circ(const smartlist_t *ports)
  840. {
  841. tor_assert(ports);
  842. SMARTLIST_FOREACH_BEGIN(ports, rend_service_port_config_t *, p) {
  843. if (smartlist_contains_int_as_string(get_options()->LongLivedPorts,
  844. p->virtual_port)) {
  845. return 1;
  846. }
  847. } SMARTLIST_FOREACH_END(p);
  848. return 0;
  849. }
  850. /* Build hs_index which is used to find the responsible hsdirs. This index
  851. * value is used to select the responsible HSDir where their hsdir_index is
  852. * closest to this value.
  853. * SHA3-256("store-at-idx" | blinded_public_key |
  854. * INT_8(replicanum) | INT_8(period_length) | INT_8(period_num) )
  855. *
  856. * hs_index_out must be large enough to receive DIGEST256_LEN bytes. */
  857. void
  858. hs_build_hs_index(uint64_t replica, const ed25519_public_key_t *blinded_pk,
  859. uint64_t period_num, uint8_t *hs_index_out)
  860. {
  861. crypto_digest_t *digest;
  862. tor_assert(blinded_pk);
  863. tor_assert(hs_index_out);
  864. /* Build hs_index. See construction at top of function comment. */
  865. digest = crypto_digest256_new(DIGEST_SHA3_256);
  866. crypto_digest_add_bytes(digest, HS_INDEX_PREFIX, HS_INDEX_PREFIX_LEN);
  867. crypto_digest_add_bytes(digest, (const char *) blinded_pk->pubkey,
  868. ED25519_PUBKEY_LEN);
  869. /* Now setup INT_8(replicanum) | INT_8(period_length) | INT_8(period_num) */
  870. {
  871. uint64_t period_length = get_time_period_length();
  872. char buf[sizeof(uint64_t)*3];
  873. size_t offset = 0;
  874. set_uint64(buf, tor_htonll(replica));
  875. offset += sizeof(uint64_t);
  876. set_uint64(buf, tor_htonll(period_length));
  877. offset += sizeof(uint64_t);
  878. set_uint64(buf, tor_htonll(period_num));
  879. offset += sizeof(uint64_t);
  880. tor_assert(offset == sizeof(buf));
  881. crypto_digest_add_bytes(digest, buf, sizeof(buf));
  882. }
  883. crypto_digest_get_digest(digest, (char *) hs_index_out, DIGEST256_LEN);
  884. crypto_digest_free(digest);
  885. }
  886. /* Build hsdir_index which is used to find the responsible hsdirs. This is the
  887. * index value that is compare to the hs_index when selecting an HSDir.
  888. * SHA3-256("node-idx" | node_identity |
  889. * shared_random_value | INT_8(period_length) | INT_8(period_num) )
  890. *
  891. * hsdir_index_out must be large enough to receive DIGEST256_LEN bytes. */
  892. void
  893. hs_build_hsdir_index(const ed25519_public_key_t *identity_pk,
  894. const uint8_t *srv_value, uint64_t period_num,
  895. uint8_t *hsdir_index_out)
  896. {
  897. crypto_digest_t *digest;
  898. tor_assert(identity_pk);
  899. tor_assert(srv_value);
  900. tor_assert(hsdir_index_out);
  901. /* Build hsdir_index. See construction at top of function comment. */
  902. digest = crypto_digest256_new(DIGEST_SHA3_256);
  903. crypto_digest_add_bytes(digest, HSDIR_INDEX_PREFIX, HSDIR_INDEX_PREFIX_LEN);
  904. crypto_digest_add_bytes(digest, (const char *) identity_pk->pubkey,
  905. ED25519_PUBKEY_LEN);
  906. crypto_digest_add_bytes(digest, (const char *) srv_value, DIGEST256_LEN);
  907. {
  908. uint64_t time_period_length = get_time_period_length();
  909. char period_stuff[sizeof(uint64_t)*2];
  910. size_t offset = 0;
  911. set_uint64(period_stuff, tor_htonll(period_num));
  912. offset += sizeof(uint64_t);
  913. set_uint64(period_stuff+offset, tor_htonll(time_period_length));
  914. offset += sizeof(uint64_t);
  915. tor_assert(offset == sizeof(period_stuff));
  916. crypto_digest_add_bytes(digest, period_stuff, sizeof(period_stuff));
  917. }
  918. crypto_digest_get_digest(digest, (char *) hsdir_index_out, DIGEST256_LEN);
  919. crypto_digest_free(digest);
  920. }
  921. /* Return a newly allocated buffer containing the current shared random value
  922. * or if not present, a disaster value is computed using the given time period
  923. * number. If a consensus is provided in <b>ns</b>, use it to get the SRV
  924. * value. This function can't fail. */
  925. uint8_t *
  926. hs_get_current_srv(uint64_t time_period_num, const networkstatus_t *ns)
  927. {
  928. uint8_t *sr_value = tor_malloc_zero(DIGEST256_LEN);
  929. const sr_srv_t *current_srv = sr_get_current(ns);
  930. if (current_srv) {
  931. memcpy(sr_value, current_srv->value, sizeof(current_srv->value));
  932. } else {
  933. /* Disaster mode. */
  934. get_disaster_srv(time_period_num, sr_value);
  935. }
  936. return sr_value;
  937. }
  938. /* Return a newly allocated buffer containing the previous shared random
  939. * value or if not present, a disaster value is computed using the given time
  940. * period number. This function can't fail. */
  941. uint8_t *
  942. hs_get_previous_srv(uint64_t time_period_num, const networkstatus_t *ns)
  943. {
  944. uint8_t *sr_value = tor_malloc_zero(DIGEST256_LEN);
  945. const sr_srv_t *previous_srv = sr_get_previous(ns);
  946. if (previous_srv) {
  947. memcpy(sr_value, previous_srv->value, sizeof(previous_srv->value));
  948. } else {
  949. /* Disaster mode. */
  950. get_disaster_srv(time_period_num, sr_value);
  951. }
  952. return sr_value;
  953. }
  954. /* Return the number of replicas defined by a consensus parameter or the
  955. * default value. */
  956. int32_t
  957. hs_get_hsdir_n_replicas(void)
  958. {
  959. /* The [1,16] range is a specification requirement. */
  960. return networkstatus_get_param(NULL, "hsdir_n_replicas",
  961. HS_DEFAULT_HSDIR_N_REPLICAS, 1, 16);
  962. }
  963. /* Return the spread fetch value defined by a consensus parameter or the
  964. * default value. */
  965. int32_t
  966. hs_get_hsdir_spread_fetch(void)
  967. {
  968. /* The [1,128] range is a specification requirement. */
  969. return networkstatus_get_param(NULL, "hsdir_spread_fetch",
  970. HS_DEFAULT_HSDIR_SPREAD_FETCH, 1, 128);
  971. }
  972. /* Return the spread store value defined by a consensus parameter or the
  973. * default value. */
  974. int32_t
  975. hs_get_hsdir_spread_store(void)
  976. {
  977. /* The [1,128] range is a specification requirement. */
  978. return networkstatus_get_param(NULL, "hsdir_spread_store",
  979. HS_DEFAULT_HSDIR_SPREAD_STORE, 1, 128);
  980. }
  981. /** <b>node</b> is an HSDir so make sure that we have assigned an hsdir index.
  982. * Return 0 if everything is as expected, else return -1. */
  983. static int
  984. node_has_hsdir_index(const node_t *node)
  985. {
  986. tor_assert(node_supports_v3_hsdir(node));
  987. /* A node can't have an HSDir index without a descriptor since we need desc
  988. * to get its ed25519 key */
  989. if (!node_has_descriptor(node)) {
  990. return 0;
  991. }
  992. /* At this point, since the node has a desc, this node must also have an
  993. * hsdir index. If not, something went wrong, so BUG out. */
  994. if (BUG(node->hsdir_index == NULL) ||
  995. BUG(tor_mem_is_zero((const char*)node->hsdir_index->current,
  996. DIGEST256_LEN))) {
  997. return 0;
  998. }
  999. return 1;
  1000. }
  1001. /* For a given blinded key and time period number, get the responsible HSDir
  1002. * and put their routerstatus_t object in the responsible_dirs list. If
  1003. * is_next_period is true, the next hsdir_index of the node_t is used. If
  1004. * is_client is true, the spread fetch consensus parameter is used else the
  1005. * spread store is used which is only for upload. This function can't fail but
  1006. * it is possible that the responsible_dirs list contains fewer nodes than
  1007. * expected.
  1008. *
  1009. * This function goes over the latest consensus routerstatus list and sorts it
  1010. * by their node_t hsdir_index then does a binary search to find the closest
  1011. * node. All of this makes it a bit CPU intensive so use it wisely. */
  1012. void
  1013. hs_get_responsible_hsdirs(const ed25519_public_key_t *blinded_pk,
  1014. uint64_t time_period_num, int is_next_period,
  1015. int is_client, smartlist_t *responsible_dirs)
  1016. {
  1017. smartlist_t *sorted_nodes;
  1018. /* The compare function used for the smartlist bsearch. We have two
  1019. * different depending on is_next_period. */
  1020. int (*cmp_fct)(const void *, const void **);
  1021. tor_assert(blinded_pk);
  1022. tor_assert(responsible_dirs);
  1023. sorted_nodes = smartlist_new();
  1024. /* Add every node_t that support HSDir v3 for which we do have a valid
  1025. * hsdir_index already computed for them for this consensus. */
  1026. {
  1027. networkstatus_t *c = networkstatus_get_latest_consensus();
  1028. if (!c || smartlist_len(c->routerstatus_list) == 0) {
  1029. log_warn(LD_REND, "No valid consensus so we can't get the responsible "
  1030. "hidden service directories.");
  1031. goto done;
  1032. }
  1033. SMARTLIST_FOREACH_BEGIN(c->routerstatus_list, const routerstatus_t *, rs) {
  1034. /* Even though this node_t object won't be modified and should be const,
  1035. * we can't add const object in a smartlist_t. */
  1036. node_t *n = node_get_mutable_by_id(rs->identity_digest);
  1037. tor_assert(n);
  1038. if (node_supports_v3_hsdir(n) && rs->is_hs_dir) {
  1039. if (!node_has_hsdir_index(n)) {
  1040. log_info(LD_GENERAL, "Node %s was found without hsdir index.",
  1041. node_describe(n));
  1042. continue;
  1043. }
  1044. smartlist_add(sorted_nodes, n);
  1045. }
  1046. } SMARTLIST_FOREACH_END(rs);
  1047. }
  1048. if (smartlist_len(sorted_nodes) == 0) {
  1049. log_warn(LD_REND, "No nodes found to be HSDir or supporting v3.");
  1050. goto done;
  1051. }
  1052. /* First thing we have to do is sort all node_t by hsdir_index. The
  1053. * is_next_period tells us if we want the current or the next one. Set the
  1054. * bsearch compare function also while we are at it. */
  1055. if (is_next_period) {
  1056. smartlist_sort(sorted_nodes, compare_node_next_hsdir_index);
  1057. cmp_fct = compare_digest_to_next_hsdir_index;
  1058. } else {
  1059. smartlist_sort(sorted_nodes, compare_node_current_hsdir_index);
  1060. cmp_fct = compare_digest_to_current_hsdir_index;
  1061. }
  1062. /* For all replicas, we'll select a set of HSDirs using the consensus
  1063. * parameters and the sorted list. The replica starting at value 1 is
  1064. * defined by the specification. */
  1065. for (int replica = 1; replica <= hs_get_hsdir_n_replicas(); replica++) {
  1066. int idx, start, found, n_added = 0;
  1067. uint8_t hs_index[DIGEST256_LEN] = {0};
  1068. /* Number of node to add to the responsible dirs list depends on if we are
  1069. * trying to fetch or store. A client always fetches. */
  1070. int n_to_add = (is_client) ? hs_get_hsdir_spread_fetch() :
  1071. hs_get_hsdir_spread_store();
  1072. /* Get the index that we should use to select the node. */
  1073. hs_build_hs_index(replica, blinded_pk, time_period_num, hs_index);
  1074. /* The compare function pointer has been set correctly earlier. */
  1075. start = idx = smartlist_bsearch_idx(sorted_nodes, hs_index, cmp_fct,
  1076. &found);
  1077. /* Getting the length of the list if no member is greater than the key we
  1078. * are looking for so start at the first element. */
  1079. if (idx == smartlist_len(sorted_nodes)) {
  1080. start = idx = 0;
  1081. }
  1082. while (n_added < n_to_add) {
  1083. const node_t *node = smartlist_get(sorted_nodes, idx);
  1084. /* If the node has already been selected which is possible between
  1085. * replicas, the specification says to skip over. */
  1086. if (!smartlist_contains(responsible_dirs, node->rs)) {
  1087. smartlist_add(responsible_dirs, node->rs);
  1088. ++n_added;
  1089. }
  1090. if (++idx == smartlist_len(sorted_nodes)) {
  1091. /* Wrap if we've reached the end of the list. */
  1092. idx = 0;
  1093. }
  1094. if (idx == start) {
  1095. /* We've gone over the whole list, stop and avoid infinite loop. */
  1096. break;
  1097. }
  1098. }
  1099. }
  1100. done:
  1101. smartlist_free(sorted_nodes);
  1102. }
  1103. /* Initialize the entire HS subsytem. This is called in tor_init() before any
  1104. * torrc options are loaded. Only for >= v3. */
  1105. void
  1106. hs_init(void)
  1107. {
  1108. hs_circuitmap_init();
  1109. hs_service_init();
  1110. hs_cache_init();
  1111. }
  1112. /* Release and cleanup all memory of the HS subsystem (all version). This is
  1113. * called by tor_free_all(). */
  1114. void
  1115. hs_free_all(void)
  1116. {
  1117. hs_circuitmap_free_all();
  1118. hs_service_free_all();
  1119. hs_cache_free_all();
  1120. }