rendcommon.c 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  1. /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  2. * Copyright (c) 2007-2016, The Tor Project, Inc. */
  3. /* See LICENSE for licensing information */
  4. /**
  5. * \file rendcommon.c
  6. * \brief Rendezvous implementation: shared code between
  7. * introducers, services, clients, and rendezvous points.
  8. **/
  9. #include "or.h"
  10. #include "circuitbuild.h"
  11. #include "config.h"
  12. #include "control.h"
  13. #include "hs_common.h"
  14. #include "rendclient.h"
  15. #include "rendcommon.h"
  16. #include "rendmid.h"
  17. #include "hs_intropoint.h"
  18. #include "rendservice.h"
  19. #include "rephist.h"
  20. #include "router.h"
  21. #include "routerlist.h"
  22. #include "routerparse.h"
  23. #include "networkstatus.h"
  24. /** Return 0 if one and two are the same service ids, else -1 or 1 */
  25. int
  26. rend_cmp_service_ids(const char *one, const char *two)
  27. {
  28. return strcasecmp(one,two);
  29. }
  30. /** Free the storage held by the service descriptor <b>desc</b>.
  31. */
  32. void
  33. rend_service_descriptor_free(rend_service_descriptor_t *desc)
  34. {
  35. if (!desc)
  36. return;
  37. if (desc->pk)
  38. crypto_pk_free(desc->pk);
  39. if (desc->intro_nodes) {
  40. SMARTLIST_FOREACH(desc->intro_nodes, rend_intro_point_t *, intro,
  41. rend_intro_point_free(intro););
  42. smartlist_free(desc->intro_nodes);
  43. }
  44. if (desc->successful_uploads) {
  45. SMARTLIST_FOREACH(desc->successful_uploads, char *, c, tor_free(c););
  46. smartlist_free(desc->successful_uploads);
  47. }
  48. tor_free(desc);
  49. }
  50. /** Length of the descriptor cookie that is used for versioned hidden
  51. * service descriptors. */
  52. #define REND_DESC_COOKIE_LEN 16
  53. /** Length of the replica number that is used to determine the secret ID
  54. * part of versioned hidden service descriptors. */
  55. #define REND_REPLICA_LEN 1
  56. /** Compute the descriptor ID for <b>service_id</b> of length
  57. * <b>REND_SERVICE_ID_LEN</b> and <b>secret_id_part</b> of length
  58. * <b>DIGEST_LEN</b>, and write it to <b>descriptor_id_out</b> of length
  59. * <b>DIGEST_LEN</b>. */
  60. void
  61. rend_get_descriptor_id_bytes(char *descriptor_id_out,
  62. const char *service_id,
  63. const char *secret_id_part)
  64. {
  65. crypto_digest_t *digest = crypto_digest_new();
  66. crypto_digest_add_bytes(digest, service_id, REND_SERVICE_ID_LEN);
  67. crypto_digest_add_bytes(digest, secret_id_part, DIGEST_LEN);
  68. crypto_digest_get_digest(digest, descriptor_id_out, DIGEST_LEN);
  69. crypto_digest_free(digest);
  70. }
  71. /** Compute the secret ID part for time_period,
  72. * a <b>descriptor_cookie</b> of length
  73. * <b>REND_DESC_COOKIE_LEN</b> which may also be <b>NULL</b> if no
  74. * descriptor_cookie shall be used, and <b>replica</b>, and write it to
  75. * <b>secret_id_part</b> of length DIGEST_LEN. */
  76. static void
  77. get_secret_id_part_bytes(char *secret_id_part, uint32_t time_period,
  78. const char *descriptor_cookie, uint8_t replica)
  79. {
  80. crypto_digest_t *digest = crypto_digest_new();
  81. time_period = htonl(time_period);
  82. crypto_digest_add_bytes(digest, (char*)&time_period, sizeof(uint32_t));
  83. if (descriptor_cookie) {
  84. crypto_digest_add_bytes(digest, descriptor_cookie,
  85. REND_DESC_COOKIE_LEN);
  86. }
  87. crypto_digest_add_bytes(digest, (const char *)&replica, REND_REPLICA_LEN);
  88. crypto_digest_get_digest(digest, secret_id_part, DIGEST_LEN);
  89. crypto_digest_free(digest);
  90. }
  91. /** Return the time period for time <b>now</b> plus a potentially
  92. * intended <b>deviation</b> of one or more periods, based on the first byte
  93. * of <b>service_id</b>. */
  94. static uint32_t
  95. get_time_period(time_t now, uint8_t deviation, const char *service_id)
  96. {
  97. /* The time period is the number of REND_TIME_PERIOD_V2_DESC_VALIDITY
  98. * intervals that have passed since the epoch, offset slightly so that
  99. * each service's time periods start and end at a fraction of that
  100. * period based on their first byte. */
  101. return (uint32_t)
  102. (now + ((uint8_t) *service_id) * REND_TIME_PERIOD_V2_DESC_VALIDITY / 256)
  103. / REND_TIME_PERIOD_V2_DESC_VALIDITY + deviation;
  104. }
  105. /** Compute the time in seconds that a descriptor that is generated
  106. * <b>now</b> for <b>service_id</b> will be valid. */
  107. static uint32_t
  108. get_seconds_valid(time_t now, const char *service_id)
  109. {
  110. uint32_t result = REND_TIME_PERIOD_V2_DESC_VALIDITY -
  111. ((uint32_t)
  112. (now + ((uint8_t) *service_id) * REND_TIME_PERIOD_V2_DESC_VALIDITY / 256)
  113. % REND_TIME_PERIOD_V2_DESC_VALIDITY);
  114. return result;
  115. }
  116. /** Compute the binary <b>desc_id_out</b> (DIGEST_LEN bytes long) for a given
  117. * base32-encoded <b>service_id</b> and optional unencoded
  118. * <b>descriptor_cookie</b> of length REND_DESC_COOKIE_LEN,
  119. * at time <b>now</b> for replica number
  120. * <b>replica</b>. <b>desc_id</b> needs to have <b>DIGEST_LEN</b> bytes
  121. * free. Return 0 for success, -1 otherwise. */
  122. int
  123. rend_compute_v2_desc_id(char *desc_id_out, const char *service_id,
  124. const char *descriptor_cookie, time_t now,
  125. uint8_t replica)
  126. {
  127. char service_id_binary[REND_SERVICE_ID_LEN];
  128. char secret_id_part[DIGEST_LEN];
  129. uint32_t time_period;
  130. if (!service_id ||
  131. strlen(service_id) != REND_SERVICE_ID_LEN_BASE32) {
  132. log_warn(LD_REND, "Could not compute v2 descriptor ID: "
  133. "Illegal service ID: %s",
  134. safe_str(service_id));
  135. return -1;
  136. }
  137. if (replica >= REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS) {
  138. log_warn(LD_REND, "Could not compute v2 descriptor ID: "
  139. "Replica number out of range: %d", replica);
  140. return -1;
  141. }
  142. /* Convert service ID to binary. */
  143. if (base32_decode(service_id_binary, REND_SERVICE_ID_LEN,
  144. service_id, REND_SERVICE_ID_LEN_BASE32) < 0) {
  145. log_warn(LD_REND, "Could not compute v2 descriptor ID: "
  146. "Illegal characters in service ID: %s",
  147. safe_str_client(service_id));
  148. return -1;
  149. }
  150. /* Calculate current time-period. */
  151. time_period = get_time_period(now, 0, service_id_binary);
  152. /* Calculate secret-id-part = h(time-period | desc-cookie | replica). */
  153. get_secret_id_part_bytes(secret_id_part, time_period, descriptor_cookie,
  154. replica);
  155. /* Calculate descriptor ID: H(permanent-id | secret-id-part) */
  156. rend_get_descriptor_id_bytes(desc_id_out, service_id_binary, secret_id_part);
  157. return 0;
  158. }
  159. /** Encode the introduction points in <b>desc</b> and write the result to a
  160. * newly allocated string pointed to by <b>encoded</b>. Return 0 for
  161. * success, -1 otherwise. */
  162. static int
  163. rend_encode_v2_intro_points(char **encoded, rend_service_descriptor_t *desc)
  164. {
  165. size_t unenc_len;
  166. char *unenc = NULL;
  167. size_t unenc_written = 0;
  168. int i;
  169. int r = -1;
  170. /* Assemble unencrypted list of introduction points. */
  171. unenc_len = smartlist_len(desc->intro_nodes) * 1000; /* too long, but ok. */
  172. unenc = tor_malloc_zero(unenc_len);
  173. for (i = 0; i < smartlist_len(desc->intro_nodes); i++) {
  174. char id_base32[REND_INTRO_POINT_ID_LEN_BASE32 + 1];
  175. char *onion_key = NULL;
  176. size_t onion_key_len;
  177. crypto_pk_t *intro_key;
  178. char *service_key = NULL;
  179. char *address = NULL;
  180. size_t service_key_len;
  181. int res;
  182. rend_intro_point_t *intro = smartlist_get(desc->intro_nodes, i);
  183. /* Obtain extend info with introduction point details. */
  184. extend_info_t *info = intro->extend_info;
  185. /* Encode introduction point ID. */
  186. base32_encode(id_base32, sizeof(id_base32),
  187. info->identity_digest, DIGEST_LEN);
  188. /* Encode onion key. */
  189. if (crypto_pk_write_public_key_to_string(info->onion_key, &onion_key,
  190. &onion_key_len) < 0) {
  191. log_warn(LD_REND, "Could not write onion key.");
  192. goto done;
  193. }
  194. /* Encode intro key. */
  195. intro_key = intro->intro_key;
  196. if (!intro_key ||
  197. crypto_pk_write_public_key_to_string(intro_key, &service_key,
  198. &service_key_len) < 0) {
  199. log_warn(LD_REND, "Could not write intro key.");
  200. tor_free(onion_key);
  201. goto done;
  202. }
  203. /* Assemble everything for this introduction point. */
  204. address = tor_addr_to_str_dup(&info->addr);
  205. res = tor_snprintf(unenc + unenc_written, unenc_len - unenc_written,
  206. "introduction-point %s\n"
  207. "ip-address %s\n"
  208. "onion-port %d\n"
  209. "onion-key\n%s"
  210. "service-key\n%s",
  211. id_base32,
  212. address,
  213. info->port,
  214. onion_key,
  215. service_key);
  216. tor_free(address);
  217. tor_free(onion_key);
  218. tor_free(service_key);
  219. if (res < 0) {
  220. log_warn(LD_REND, "Not enough space for writing introduction point "
  221. "string.");
  222. goto done;
  223. }
  224. /* Update total number of written bytes for unencrypted intro points. */
  225. unenc_written += res;
  226. }
  227. /* Finalize unencrypted introduction points. */
  228. if (unenc_len < unenc_written + 2) {
  229. log_warn(LD_REND, "Not enough space for finalizing introduction point "
  230. "string.");
  231. goto done;
  232. }
  233. unenc[unenc_written++] = '\n';
  234. unenc[unenc_written++] = 0;
  235. *encoded = unenc;
  236. r = 0;
  237. done:
  238. if (r<0)
  239. tor_free(unenc);
  240. return r;
  241. }
  242. /** Encrypt the encoded introduction points in <b>encoded</b> using
  243. * authorization type 'basic' with <b>client_cookies</b> and write the
  244. * result to a newly allocated string pointed to by <b>encrypted_out</b> of
  245. * length <b>encrypted_len_out</b>. Return 0 for success, -1 otherwise. */
  246. static int
  247. rend_encrypt_v2_intro_points_basic(char **encrypted_out,
  248. size_t *encrypted_len_out,
  249. const char *encoded,
  250. smartlist_t *client_cookies)
  251. {
  252. int r = -1, i, pos, enclen, client_blocks;
  253. size_t len, client_entries_len;
  254. char *enc = NULL, iv[CIPHER_IV_LEN], *client_part = NULL,
  255. session_key[CIPHER_KEY_LEN];
  256. smartlist_t *encrypted_session_keys = NULL;
  257. crypto_digest_t *digest;
  258. crypto_cipher_t *cipher;
  259. tor_assert(encoded);
  260. tor_assert(client_cookies && smartlist_len(client_cookies) > 0);
  261. /* Generate session key. */
  262. crypto_rand(session_key, CIPHER_KEY_LEN);
  263. /* Determine length of encrypted introduction points including session
  264. * keys. */
  265. client_blocks = 1 + ((smartlist_len(client_cookies) - 1) /
  266. REND_BASIC_AUTH_CLIENT_MULTIPLE);
  267. client_entries_len = client_blocks * REND_BASIC_AUTH_CLIENT_MULTIPLE *
  268. REND_BASIC_AUTH_CLIENT_ENTRY_LEN;
  269. len = 2 + client_entries_len + CIPHER_IV_LEN + strlen(encoded);
  270. if (client_blocks >= 256) {
  271. log_warn(LD_REND, "Too many clients in introduction point string.");
  272. goto done;
  273. }
  274. enc = tor_malloc_zero(len);
  275. enc[0] = 0x01; /* type of authorization. */
  276. enc[1] = (uint8_t)client_blocks;
  277. /* Encrypt with random session key. */
  278. enclen = crypto_cipher_encrypt_with_iv(session_key,
  279. enc + 2 + client_entries_len,
  280. CIPHER_IV_LEN + strlen(encoded), encoded, strlen(encoded));
  281. if (enclen < 0) {
  282. log_warn(LD_REND, "Could not encrypt introduction point string.");
  283. goto done;
  284. }
  285. memcpy(iv, enc + 2 + client_entries_len, CIPHER_IV_LEN);
  286. /* Encrypt session key for cookies, determine client IDs, and put both
  287. * in a smartlist. */
  288. encrypted_session_keys = smartlist_new();
  289. SMARTLIST_FOREACH_BEGIN(client_cookies, const char *, cookie) {
  290. client_part = tor_malloc_zero(REND_BASIC_AUTH_CLIENT_ENTRY_LEN);
  291. /* Encrypt session key. */
  292. cipher = crypto_cipher_new(cookie);
  293. if (crypto_cipher_encrypt(cipher, client_part +
  294. REND_BASIC_AUTH_CLIENT_ID_LEN,
  295. session_key, CIPHER_KEY_LEN) < 0) {
  296. log_warn(LD_REND, "Could not encrypt session key for client.");
  297. crypto_cipher_free(cipher);
  298. tor_free(client_part);
  299. goto done;
  300. }
  301. crypto_cipher_free(cipher);
  302. /* Determine client ID. */
  303. digest = crypto_digest_new();
  304. crypto_digest_add_bytes(digest, cookie, REND_DESC_COOKIE_LEN);
  305. crypto_digest_add_bytes(digest, iv, CIPHER_IV_LEN);
  306. crypto_digest_get_digest(digest, client_part,
  307. REND_BASIC_AUTH_CLIENT_ID_LEN);
  308. crypto_digest_free(digest);
  309. /* Put both together. */
  310. smartlist_add(encrypted_session_keys, client_part);
  311. } SMARTLIST_FOREACH_END(cookie);
  312. /* Add some fake client IDs and encrypted session keys. */
  313. for (i = (smartlist_len(client_cookies) - 1) %
  314. REND_BASIC_AUTH_CLIENT_MULTIPLE;
  315. i < REND_BASIC_AUTH_CLIENT_MULTIPLE - 1; i++) {
  316. client_part = tor_malloc_zero(REND_BASIC_AUTH_CLIENT_ENTRY_LEN);
  317. crypto_rand(client_part, REND_BASIC_AUTH_CLIENT_ENTRY_LEN);
  318. smartlist_add(encrypted_session_keys, client_part);
  319. }
  320. /* Sort smartlist and put elements in result in order. */
  321. smartlist_sort_digests(encrypted_session_keys);
  322. pos = 2;
  323. SMARTLIST_FOREACH(encrypted_session_keys, const char *, entry, {
  324. memcpy(enc + pos, entry, REND_BASIC_AUTH_CLIENT_ENTRY_LEN);
  325. pos += REND_BASIC_AUTH_CLIENT_ENTRY_LEN;
  326. });
  327. *encrypted_out = enc;
  328. *encrypted_len_out = len;
  329. enc = NULL; /* prevent free. */
  330. r = 0;
  331. done:
  332. tor_free(enc);
  333. if (encrypted_session_keys) {
  334. SMARTLIST_FOREACH(encrypted_session_keys, char *, d, tor_free(d););
  335. smartlist_free(encrypted_session_keys);
  336. }
  337. return r;
  338. }
  339. /** Encrypt the encoded introduction points in <b>encoded</b> using
  340. * authorization type 'stealth' with <b>descriptor_cookie</b> of length
  341. * REND_DESC_COOKIE_LEN and write the result to a newly allocated string
  342. * pointed to by <b>encrypted_out</b> of length <b>encrypted_len_out</b>.
  343. * Return 0 for success, -1 otherwise. */
  344. static int
  345. rend_encrypt_v2_intro_points_stealth(char **encrypted_out,
  346. size_t *encrypted_len_out,
  347. const char *encoded,
  348. const char *descriptor_cookie)
  349. {
  350. int r = -1, enclen;
  351. char *enc;
  352. tor_assert(encoded);
  353. tor_assert(descriptor_cookie);
  354. enc = tor_malloc_zero(1 + CIPHER_IV_LEN + strlen(encoded));
  355. enc[0] = 0x02; /* Auth type */
  356. enclen = crypto_cipher_encrypt_with_iv(descriptor_cookie,
  357. enc + 1,
  358. CIPHER_IV_LEN+strlen(encoded),
  359. encoded, strlen(encoded));
  360. if (enclen < 0) {
  361. log_warn(LD_REND, "Could not encrypt introduction point string.");
  362. goto done;
  363. }
  364. *encrypted_out = enc;
  365. *encrypted_len_out = enclen;
  366. enc = NULL; /* prevent free */
  367. r = 0;
  368. done:
  369. tor_free(enc);
  370. return r;
  371. }
  372. /** Attempt to parse the given <b>desc_str</b> and return true if this
  373. * succeeds, false otherwise. */
  374. static int
  375. rend_desc_v2_is_parsable(rend_encoded_v2_service_descriptor_t *desc)
  376. {
  377. rend_service_descriptor_t *test_parsed = NULL;
  378. char test_desc_id[DIGEST_LEN];
  379. char *test_intro_content = NULL;
  380. size_t test_intro_size;
  381. size_t test_encoded_size;
  382. const char *test_next;
  383. int res = rend_parse_v2_service_descriptor(&test_parsed, test_desc_id,
  384. &test_intro_content,
  385. &test_intro_size,
  386. &test_encoded_size,
  387. &test_next, desc->desc_str, 1);
  388. rend_service_descriptor_free(test_parsed);
  389. tor_free(test_intro_content);
  390. return (res >= 0);
  391. }
  392. /** Free the storage held by an encoded v2 service descriptor. */
  393. void
  394. rend_encoded_v2_service_descriptor_free(
  395. rend_encoded_v2_service_descriptor_t *desc)
  396. {
  397. if (!desc)
  398. return;
  399. tor_free(desc->desc_str);
  400. tor_free(desc);
  401. }
  402. /** Free the storage held by an introduction point info. */
  403. void
  404. rend_intro_point_free(rend_intro_point_t *intro)
  405. {
  406. if (!intro)
  407. return;
  408. extend_info_free(intro->extend_info);
  409. crypto_pk_free(intro->intro_key);
  410. if (intro->accepted_intro_rsa_parts != NULL) {
  411. replaycache_free(intro->accepted_intro_rsa_parts);
  412. }
  413. tor_free(intro);
  414. }
  415. /** Encode a set of rend_encoded_v2_service_descriptor_t's for <b>desc</b>
  416. * at time <b>now</b> using <b>service_key</b>, depending on
  417. * <b>auth_type</b> a <b>descriptor_cookie</b> and a list of
  418. * <b>client_cookies</b> (which are both <b>NULL</b> if no client
  419. * authorization is performed), and <b>period</b> (e.g. 0 for the current
  420. * period, 1 for the next period, etc.) and add them to the existing list
  421. * <b>descs_out</b>; return the number of seconds that the descriptors will
  422. * be found by clients, or -1 if the encoding was not successful. */
  423. int
  424. rend_encode_v2_descriptors(smartlist_t *descs_out,
  425. rend_service_descriptor_t *desc, time_t now,
  426. uint8_t period, rend_auth_type_t auth_type,
  427. crypto_pk_t *client_key,
  428. smartlist_t *client_cookies)
  429. {
  430. char service_id[DIGEST_LEN];
  431. char service_id_base32[REND_SERVICE_ID_LEN_BASE32+1];
  432. uint32_t time_period;
  433. char *ipos_base64 = NULL, *ipos = NULL, *ipos_encrypted = NULL,
  434. *descriptor_cookie = NULL;
  435. size_t ipos_len = 0, ipos_encrypted_len = 0;
  436. int k;
  437. uint32_t seconds_valid;
  438. crypto_pk_t *service_key;
  439. if (!desc) {
  440. log_warn(LD_BUG, "Could not encode v2 descriptor: No desc given.");
  441. return -1;
  442. }
  443. service_key = (auth_type == REND_STEALTH_AUTH) ? client_key : desc->pk;
  444. tor_assert(service_key);
  445. if (auth_type == REND_STEALTH_AUTH) {
  446. descriptor_cookie = smartlist_get(client_cookies, 0);
  447. tor_assert(descriptor_cookie);
  448. }
  449. /* Obtain service_id from public key. */
  450. crypto_pk_get_digest(service_key, service_id);
  451. /* Calculate current time-period. */
  452. time_period = get_time_period(now, period, service_id);
  453. /* Determine how many seconds the descriptor will be valid. */
  454. seconds_valid = period * REND_TIME_PERIOD_V2_DESC_VALIDITY +
  455. get_seconds_valid(now, service_id);
  456. /* Assemble, possibly encrypt, and encode introduction points. */
  457. if (smartlist_len(desc->intro_nodes) > 0) {
  458. if (rend_encode_v2_intro_points(&ipos, desc) < 0) {
  459. log_warn(LD_REND, "Encoding of introduction points did not succeed.");
  460. return -1;
  461. }
  462. switch (auth_type) {
  463. case REND_NO_AUTH:
  464. ipos_len = strlen(ipos);
  465. break;
  466. case REND_BASIC_AUTH:
  467. if (rend_encrypt_v2_intro_points_basic(&ipos_encrypted,
  468. &ipos_encrypted_len, ipos,
  469. client_cookies) < 0) {
  470. log_warn(LD_REND, "Encrypting of introduction points did not "
  471. "succeed.");
  472. tor_free(ipos);
  473. return -1;
  474. }
  475. tor_free(ipos);
  476. ipos = ipos_encrypted;
  477. ipos_len = ipos_encrypted_len;
  478. break;
  479. case REND_STEALTH_AUTH:
  480. if (rend_encrypt_v2_intro_points_stealth(&ipos_encrypted,
  481. &ipos_encrypted_len, ipos,
  482. descriptor_cookie) < 0) {
  483. log_warn(LD_REND, "Encrypting of introduction points did not "
  484. "succeed.");
  485. tor_free(ipos);
  486. return -1;
  487. }
  488. tor_free(ipos);
  489. ipos = ipos_encrypted;
  490. ipos_len = ipos_encrypted_len;
  491. break;
  492. default:
  493. log_warn(LD_REND|LD_BUG, "Unrecognized authorization type %d",
  494. (int)auth_type);
  495. tor_free(ipos);
  496. return -1;
  497. }
  498. /* Base64-encode introduction points. */
  499. ipos_base64 = tor_calloc(ipos_len, 2);
  500. if (base64_encode(ipos_base64, ipos_len * 2, ipos, ipos_len,
  501. BASE64_ENCODE_MULTILINE)<0) {
  502. log_warn(LD_REND, "Could not encode introduction point string to "
  503. "base64. length=%d", (int)ipos_len);
  504. tor_free(ipos_base64);
  505. tor_free(ipos);
  506. return -1;
  507. }
  508. tor_free(ipos);
  509. }
  510. /* Encode REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS descriptors. */
  511. for (k = 0; k < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS; k++) {
  512. char secret_id_part[DIGEST_LEN];
  513. char secret_id_part_base32[REND_SECRET_ID_PART_LEN_BASE32 + 1];
  514. char desc_id_base32[REND_DESC_ID_V2_LEN_BASE32 + 1];
  515. char *permanent_key = NULL;
  516. size_t permanent_key_len;
  517. char published[ISO_TIME_LEN+1];
  518. int i;
  519. char protocol_versions_string[16]; /* max len: "0,1,2,3,4,5,6,7\0" */
  520. size_t protocol_versions_written;
  521. size_t desc_len;
  522. char *desc_str = NULL;
  523. int result = 0;
  524. size_t written = 0;
  525. char desc_digest[DIGEST_LEN];
  526. rend_encoded_v2_service_descriptor_t *enc =
  527. tor_malloc_zero(sizeof(rend_encoded_v2_service_descriptor_t));
  528. /* Calculate secret-id-part = h(time-period | cookie | replica). */
  529. get_secret_id_part_bytes(secret_id_part, time_period, descriptor_cookie,
  530. k);
  531. base32_encode(secret_id_part_base32, sizeof(secret_id_part_base32),
  532. secret_id_part, DIGEST_LEN);
  533. /* Calculate descriptor ID. */
  534. rend_get_descriptor_id_bytes(enc->desc_id, service_id, secret_id_part);
  535. base32_encode(desc_id_base32, sizeof(desc_id_base32),
  536. enc->desc_id, DIGEST_LEN);
  537. /* PEM-encode the public key */
  538. if (crypto_pk_write_public_key_to_string(service_key, &permanent_key,
  539. &permanent_key_len) < 0) {
  540. log_warn(LD_BUG, "Could not write public key to string.");
  541. rend_encoded_v2_service_descriptor_free(enc);
  542. goto err;
  543. }
  544. /* Encode timestamp. */
  545. format_iso_time(published, desc->timestamp);
  546. /* Write protocol-versions bitmask to comma-separated value string. */
  547. protocol_versions_written = 0;
  548. for (i = 0; i < 8; i++) {
  549. if (desc->protocols & 1 << i) {
  550. tor_snprintf(protocol_versions_string + protocol_versions_written,
  551. 16 - protocol_versions_written, "%d,", i);
  552. protocol_versions_written += 2;
  553. }
  554. }
  555. if (protocol_versions_written)
  556. protocol_versions_string[protocol_versions_written - 1] = '\0';
  557. else
  558. protocol_versions_string[0]= '\0';
  559. /* Assemble complete descriptor. */
  560. desc_len = 2000 + smartlist_len(desc->intro_nodes) * 1000; /* far too long,
  561. but okay.*/
  562. enc->desc_str = desc_str = tor_malloc_zero(desc_len);
  563. result = tor_snprintf(desc_str, desc_len,
  564. "rendezvous-service-descriptor %s\n"
  565. "version 2\n"
  566. "permanent-key\n%s"
  567. "secret-id-part %s\n"
  568. "publication-time %s\n"
  569. "protocol-versions %s\n",
  570. desc_id_base32,
  571. permanent_key,
  572. secret_id_part_base32,
  573. published,
  574. protocol_versions_string);
  575. tor_free(permanent_key);
  576. if (result < 0) {
  577. log_warn(LD_BUG, "Descriptor ran out of room.");
  578. rend_encoded_v2_service_descriptor_free(enc);
  579. goto err;
  580. }
  581. written = result;
  582. /* Add introduction points. */
  583. if (ipos_base64) {
  584. result = tor_snprintf(desc_str + written, desc_len - written,
  585. "introduction-points\n"
  586. "-----BEGIN MESSAGE-----\n%s"
  587. "-----END MESSAGE-----\n",
  588. ipos_base64);
  589. if (result < 0) {
  590. log_warn(LD_BUG, "could not write introduction points.");
  591. rend_encoded_v2_service_descriptor_free(enc);
  592. goto err;
  593. }
  594. written += result;
  595. }
  596. /* Add signature. */
  597. strlcpy(desc_str + written, "signature\n", desc_len - written);
  598. written += strlen(desc_str + written);
  599. if (crypto_digest(desc_digest, desc_str, written) < 0) {
  600. log_warn(LD_BUG, "could not create digest.");
  601. rend_encoded_v2_service_descriptor_free(enc);
  602. goto err;
  603. }
  604. if (router_append_dirobj_signature(desc_str + written,
  605. desc_len - written,
  606. desc_digest, DIGEST_LEN,
  607. service_key) < 0) {
  608. log_warn(LD_BUG, "Couldn't sign desc.");
  609. rend_encoded_v2_service_descriptor_free(enc);
  610. goto err;
  611. }
  612. written += strlen(desc_str+written);
  613. if (written+2 > desc_len) {
  614. log_warn(LD_BUG, "Could not finish desc.");
  615. rend_encoded_v2_service_descriptor_free(enc);
  616. goto err;
  617. }
  618. desc_str[written++] = 0;
  619. /* Check if we can parse our own descriptor. */
  620. if (!rend_desc_v2_is_parsable(enc)) {
  621. log_warn(LD_BUG, "Could not parse my own descriptor: %s", desc_str);
  622. rend_encoded_v2_service_descriptor_free(enc);
  623. goto err;
  624. }
  625. smartlist_add(descs_out, enc);
  626. /* Add the uploaded descriptor to the local service's descriptor cache */
  627. rend_cache_store_v2_desc_as_service(enc->desc_str);
  628. base32_encode(service_id_base32, sizeof(service_id_base32),
  629. service_id, REND_SERVICE_ID_LEN);
  630. control_event_hs_descriptor_created(service_id_base32, desc_id_base32, k);
  631. }
  632. log_info(LD_REND, "Successfully encoded a v2 descriptor and "
  633. "confirmed that it is parsable.");
  634. goto done;
  635. err:
  636. SMARTLIST_FOREACH(descs_out, rend_encoded_v2_service_descriptor_t *, d,
  637. rend_encoded_v2_service_descriptor_free(d););
  638. smartlist_clear(descs_out);
  639. seconds_valid = -1;
  640. done:
  641. tor_free(ipos_base64);
  642. return seconds_valid;
  643. }
  644. /** Sets <b>out</b> to the first 10 bytes of the digest of <b>pk</b>,
  645. * base32 encoded. NUL-terminates out. (We use this string to
  646. * identify services in directory requests and .onion URLs.)
  647. */
  648. int
  649. rend_get_service_id(crypto_pk_t *pk, char *out)
  650. {
  651. char buf[DIGEST_LEN];
  652. tor_assert(pk);
  653. if (crypto_pk_get_digest(pk, buf) < 0)
  654. return -1;
  655. base32_encode(out, REND_SERVICE_ID_LEN_BASE32+1, buf, REND_SERVICE_ID_LEN);
  656. return 0;
  657. }
  658. /** Return true iff <b>query</b> is a syntactically valid service ID (as
  659. * generated by rend_get_service_id). */
  660. int
  661. rend_valid_service_id(const char *query)
  662. {
  663. if (strlen(query) != REND_SERVICE_ID_LEN_BASE32)
  664. return 0;
  665. if (strspn(query, BASE32_CHARS) != REND_SERVICE_ID_LEN_BASE32)
  666. return 0;
  667. return 1;
  668. }
  669. /** Return true iff <b>query</b> is a syntactically valid descriptor ID.
  670. * (as generated by rend_get_descriptor_id_bytes). */
  671. int
  672. rend_valid_descriptor_id(const char *query)
  673. {
  674. if (strlen(query) != REND_DESC_ID_V2_LEN_BASE32) {
  675. goto invalid;
  676. }
  677. if (strspn(query, BASE32_CHARS) != REND_DESC_ID_V2_LEN_BASE32) {
  678. goto invalid;
  679. }
  680. return 1;
  681. invalid:
  682. return 0;
  683. }
  684. /** Return true iff <b>client_name</b> is a syntactically valid name
  685. * for rendezvous client authentication. */
  686. int
  687. rend_valid_client_name(const char *client_name)
  688. {
  689. size_t len = strlen(client_name);
  690. if (len < 1 || len > REND_CLIENTNAME_MAX_LEN) {
  691. return 0;
  692. }
  693. if (strspn(client_name, REND_LEGAL_CLIENTNAME_CHARACTERS) != len) {
  694. return 0;
  695. }
  696. return 1;
  697. }
  698. /** Called when we get a rendezvous-related relay cell on circuit
  699. * <b>circ</b>. Dispatch on rendezvous relay command. */
  700. void
  701. rend_process_relay_cell(circuit_t *circ, const crypt_path_t *layer_hint,
  702. int command, size_t length,
  703. const uint8_t *payload)
  704. {
  705. or_circuit_t *or_circ = NULL;
  706. origin_circuit_t *origin_circ = NULL;
  707. int r = -2;
  708. if (CIRCUIT_IS_ORIGIN(circ)) {
  709. origin_circ = TO_ORIGIN_CIRCUIT(circ);
  710. if (!layer_hint || layer_hint != origin_circ->cpath->prev) {
  711. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  712. "Relay cell (rend purpose %d) from wrong hop on origin circ",
  713. command);
  714. origin_circ = NULL;
  715. }
  716. } else {
  717. or_circ = TO_OR_CIRCUIT(circ);
  718. }
  719. switch (command) {
  720. case RELAY_COMMAND_ESTABLISH_INTRO:
  721. if (or_circ)
  722. r = hs_intro_received_establish_intro(or_circ,payload,length);
  723. break;
  724. case RELAY_COMMAND_ESTABLISH_RENDEZVOUS:
  725. if (or_circ)
  726. r = rend_mid_establish_rendezvous(or_circ,payload,length);
  727. break;
  728. case RELAY_COMMAND_INTRODUCE1:
  729. if (or_circ)
  730. r = hs_intro_received_introduce1(or_circ,payload,length);
  731. break;
  732. case RELAY_COMMAND_INTRODUCE2:
  733. if (origin_circ)
  734. r = rend_service_receive_introduction(origin_circ,payload,length);
  735. break;
  736. case RELAY_COMMAND_INTRODUCE_ACK:
  737. if (origin_circ)
  738. r = rend_client_introduction_acked(origin_circ,payload,length);
  739. break;
  740. case RELAY_COMMAND_RENDEZVOUS1:
  741. if (or_circ)
  742. r = rend_mid_rendezvous(or_circ,payload,length);
  743. break;
  744. case RELAY_COMMAND_RENDEZVOUS2:
  745. if (origin_circ)
  746. r = rend_client_receive_rendezvous(origin_circ,payload,length);
  747. break;
  748. case RELAY_COMMAND_INTRO_ESTABLISHED:
  749. if (origin_circ)
  750. r = rend_service_intro_established(origin_circ,payload,length);
  751. break;
  752. case RELAY_COMMAND_RENDEZVOUS_ESTABLISHED:
  753. if (origin_circ)
  754. r = rend_client_rendezvous_acked(origin_circ,payload,length);
  755. break;
  756. default:
  757. tor_fragile_assert();
  758. }
  759. if (r == -2)
  760. log_info(LD_PROTOCOL, "Dropping cell (type %d) for wrong circuit type.",
  761. command);
  762. }
  763. /** Determine the routers that are responsible for <b>id</b> (binary) and
  764. * add pointers to those routers' routerstatus_t to <b>responsible_dirs</b>.
  765. * Return -1 if we're returning an empty smartlist, else return 0.
  766. */
  767. int
  768. hid_serv_get_responsible_directories(smartlist_t *responsible_dirs,
  769. const char *id)
  770. {
  771. int start, found, n_added = 0, i;
  772. networkstatus_t *c = networkstatus_get_latest_consensus();
  773. if (!c || !smartlist_len(c->routerstatus_list)) {
  774. log_warn(LD_REND, "We don't have a consensus, so we can't perform v2 "
  775. "rendezvous operations.");
  776. return -1;
  777. }
  778. tor_assert(id);
  779. start = networkstatus_vote_find_entry_idx(c, id, &found);
  780. if (start == smartlist_len(c->routerstatus_list)) start = 0;
  781. i = start;
  782. do {
  783. routerstatus_t *r = smartlist_get(c->routerstatus_list, i);
  784. if (r->is_hs_dir) {
  785. smartlist_add(responsible_dirs, r);
  786. if (++n_added == REND_NUMBER_OF_CONSECUTIVE_REPLICAS)
  787. return 0;
  788. }
  789. if (++i == smartlist_len(c->routerstatus_list))
  790. i = 0;
  791. } while (i != start);
  792. /* Even though we don't have the desired number of hidden service
  793. * directories, be happy if we got any. */
  794. return smartlist_len(responsible_dirs) ? 0 : -1;
  795. }
  796. /* Length of the 'extended' auth cookie used to encode auth type before
  797. * base64 encoding. */
  798. #define REND_DESC_COOKIE_LEN_EXT (REND_DESC_COOKIE_LEN + 1)
  799. /* Length of the zero-padded auth cookie when base64 encoded. These two
  800. * padding bytes always (A=) are stripped off of the returned cookie. */
  801. #define REND_DESC_COOKIE_LEN_EXT_BASE64 (REND_DESC_COOKIE_LEN_BASE64 + 2)
  802. /** Encode a client authorization descriptor cookie.
  803. * The result of this function is suitable for use in the HidServAuth
  804. * option. The trailing padding characters are removed, and the
  805. * auth type is encoded into the cookie.
  806. *
  807. * Returns a new base64-encoded cookie. This function cannot fail.
  808. * The caller is responsible for freeing the returned value.
  809. */
  810. char *
  811. rend_auth_encode_cookie(const uint8_t *cookie_in, rend_auth_type_t auth_type)
  812. {
  813. uint8_t extended_cookie[REND_DESC_COOKIE_LEN_EXT];
  814. char *cookie_out = tor_malloc_zero(REND_DESC_COOKIE_LEN_EXT_BASE64 + 1);
  815. int re;
  816. tor_assert(cookie_in);
  817. memcpy(extended_cookie, cookie_in, REND_DESC_COOKIE_LEN);
  818. extended_cookie[REND_DESC_COOKIE_LEN] = ((int)auth_type - 1) << 4;
  819. re = base64_encode(cookie_out, REND_DESC_COOKIE_LEN_EXT_BASE64 + 1,
  820. (const char *) extended_cookie, REND_DESC_COOKIE_LEN_EXT,
  821. 0);
  822. tor_assert(re == REND_DESC_COOKIE_LEN_EXT_BASE64);
  823. /* Remove the trailing 'A='. Auth type is encoded in the high bits
  824. * of the last byte, so the last base64 character will always be zero
  825. * (A). This is subtly different behavior from base64_encode_nopad. */
  826. cookie_out[REND_DESC_COOKIE_LEN_BASE64] = '\0';
  827. memwipe(extended_cookie, 0, sizeof(extended_cookie));
  828. return cookie_out;
  829. }
  830. /** Decode a base64-encoded client authorization descriptor cookie.
  831. * The descriptor_cookie can be truncated to REND_DESC_COOKIE_LEN_BASE64
  832. * characters (as given to clients), or may include the two padding
  833. * characters (as stored by the service).
  834. *
  835. * The result is stored in REND_DESC_COOKIE_LEN bytes of cookie_out.
  836. * The rend_auth_type_t decoded from the cookie is stored in the
  837. * optional auth_type_out parameter.
  838. *
  839. * Return 0 on success, or -1 on error. The caller is responsible for
  840. * freeing the returned err_msg.
  841. */
  842. int
  843. rend_auth_decode_cookie(const char *cookie_in, uint8_t *cookie_out,
  844. rend_auth_type_t *auth_type_out, char **err_msg_out)
  845. {
  846. uint8_t descriptor_cookie_decoded[REND_DESC_COOKIE_LEN_EXT + 1] = { 0 };
  847. char descriptor_cookie_base64ext[REND_DESC_COOKIE_LEN_EXT_BASE64 + 1];
  848. const char *descriptor_cookie = cookie_in;
  849. char *err_msg = NULL;
  850. int auth_type_val = 0;
  851. int res = -1;
  852. int decoded_len;
  853. size_t len = strlen(descriptor_cookie);
  854. if (len == REND_DESC_COOKIE_LEN_BASE64) {
  855. /* Add a trailing zero byte to make base64-decoding happy. */
  856. tor_snprintf(descriptor_cookie_base64ext,
  857. sizeof(descriptor_cookie_base64ext),
  858. "%sA=", descriptor_cookie);
  859. descriptor_cookie = descriptor_cookie_base64ext;
  860. } else if (len != REND_DESC_COOKIE_LEN_EXT_BASE64) {
  861. tor_asprintf(&err_msg, "Authorization cookie has wrong length: %s",
  862. escaped(cookie_in));
  863. goto err;
  864. }
  865. decoded_len = base64_decode((char *) descriptor_cookie_decoded,
  866. sizeof(descriptor_cookie_decoded),
  867. descriptor_cookie,
  868. REND_DESC_COOKIE_LEN_EXT_BASE64);
  869. if (decoded_len != REND_DESC_COOKIE_LEN &&
  870. decoded_len != REND_DESC_COOKIE_LEN_EXT) {
  871. tor_asprintf(&err_msg, "Authorization cookie has invalid characters: %s",
  872. escaped(cookie_in));
  873. goto err;
  874. }
  875. if (auth_type_out) {
  876. auth_type_val = (descriptor_cookie_decoded[REND_DESC_COOKIE_LEN] >> 4) + 1;
  877. if (auth_type_val < 1 || auth_type_val > 2) {
  878. tor_asprintf(&err_msg, "Authorization cookie type is unknown: %s",
  879. escaped(cookie_in));
  880. goto err;
  881. }
  882. *auth_type_out = auth_type_val == 1 ? REND_BASIC_AUTH : REND_STEALTH_AUTH;
  883. }
  884. memcpy(cookie_out, descriptor_cookie_decoded, REND_DESC_COOKIE_LEN);
  885. res = 0;
  886. err:
  887. if (err_msg_out) {
  888. *err_msg_out = err_msg;
  889. } else {
  890. tor_free(err_msg);
  891. }
  892. memwipe(descriptor_cookie_decoded, 0, sizeof(descriptor_cookie_decoded));
  893. memwipe(descriptor_cookie_base64ext, 0, sizeof(descriptor_cookie_base64ext));
  894. return res;
  895. }
  896. /* Is this a rend client or server that allows direct (non-anonymous)
  897. * connections?
  898. * Clients must be specifically compiled and configured in this mode.
  899. * Onion services can be configured to start in this mode.
  900. * Prefer rend_client_allow_non_anonymous_connection() or
  901. * rend_service_allow_non_anonymous_connection() whenever possible, so that
  902. * checks are specific to Single Onion Services or Tor2web. */
  903. int
  904. rend_allow_non_anonymous_connection(const or_options_t* options)
  905. {
  906. return (rend_client_allow_non_anonymous_connection(options)
  907. || rend_service_allow_non_anonymous_connection(options));
  908. }
  909. /* Is this a rend client or server in non-anonymous mode?
  910. * Clients must be specifically compiled in this mode.
  911. * Onion services can be configured to start in this mode.
  912. * Prefer rend_client_non_anonymous_mode_enabled() or
  913. * rend_service_non_anonymous_mode_enabled() whenever possible, so that checks
  914. * are specific to Single Onion Services or Tor2web. */
  915. int
  916. rend_non_anonymous_mode_enabled(const or_options_t *options)
  917. {
  918. return (rend_client_non_anonymous_mode_enabled(options)
  919. || rend_service_non_anonymous_mode_enabled(options));
  920. }
  921. /* Make sure that tor only builds one-hop circuits when they would not
  922. * compromise user anonymity.
  923. *
  924. * One-hop circuits are permitted in Tor2web or Single Onion modes.
  925. *
  926. * Tor2web or Single Onion modes are also allowed to make multi-hop circuits.
  927. * For example, single onion HSDir circuits are 3-hop to prevent denial of
  928. * service.
  929. */
  930. void
  931. assert_circ_anonymity_ok(origin_circuit_t *circ,
  932. const or_options_t *options)
  933. {
  934. tor_assert(options);
  935. tor_assert(circ);
  936. tor_assert(circ->build_state);
  937. if (circ->build_state->onehop_tunnel) {
  938. tor_assert(rend_allow_non_anonymous_connection(options));
  939. }
  940. }
  941. /* Return 1 iff the given <b>digest</b> of a permenanent hidden service key is
  942. * equal to the digest in the origin circuit <b>ocirc</b> of its rend data .
  943. * If the rend data doesn't exist, 0 is returned. This function is agnostic to
  944. * the rend data version. */
  945. int
  946. rend_circuit_pk_digest_eq(const origin_circuit_t *ocirc,
  947. const uint8_t *digest)
  948. {
  949. size_t rend_pk_digest_len;
  950. const uint8_t *rend_pk_digest;
  951. tor_assert(ocirc);
  952. tor_assert(digest);
  953. if (ocirc->rend_data == NULL) {
  954. goto no_match;
  955. }
  956. rend_pk_digest = rend_data_get_pk_digest(ocirc->rend_data,
  957. &rend_pk_digest_len);
  958. if (tor_memeq(rend_pk_digest, digest, rend_pk_digest_len)) {
  959. goto match;
  960. }
  961. no_match:
  962. return 0;
  963. match:
  964. return 1;
  965. }