hs_config.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /* Copyright (c) 2017-2018, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_config.c
  5. * \brief Implement hidden service configuration subsystem.
  6. *
  7. * \details
  8. *
  9. * This file has basically one main entry point: hs_config_service_all(). It
  10. * takes the torrc options and configure hidden service from it. In validate
  11. * mode, nothing is added to the global service list or keys are not generated
  12. * nor loaded.
  13. *
  14. * A service is configured in two steps. It is first created using the tor
  15. * options and then put in a staging list. It will stay there until
  16. * hs_service_load_all_keys() is called. That function is responsible to
  17. * load/generate the keys for the service in the staging list and if
  18. * successful, transfert the service to the main global service list where
  19. * at that point it is ready to be used.
  20. *
  21. * Configuration functions are per-version and there is a main generic one for
  22. * every option that is common to all version (config_generic_service).
  23. **/
  24. #define HS_CONFIG_PRIVATE
  25. #include "or/hs_common.h"
  26. #include "or/hs_config.h"
  27. #include "or/hs_service.h"
  28. #include "or/rendservice.h"
  29. #include "lib/encoding/confline.h"
  30. /* Using the given list of services, stage them into our global state. Every
  31. * service version are handled. This function can remove entries in the given
  32. * service_list.
  33. *
  34. * Staging a service means that we take all services in service_list and we
  35. * put them in the staging list (global) which acts as a temporary list that
  36. * is used by the service loading key process. In other words, staging a
  37. * service puts it in a list to be considered when loading the keys and then
  38. * moved to the main global list. */
  39. static void
  40. stage_services(smartlist_t *service_list)
  41. {
  42. tor_assert(service_list);
  43. /* This is v2 specific. Trigger service pruning which will make sure the
  44. * just configured services end up in the main global list. It should only
  45. * be done in non validation mode because v2 subsystem handles service
  46. * object differently. */
  47. rend_service_prune_list();
  48. /* Cleanup v2 service from the list, we don't need those object anymore
  49. * because we validated them all against the others and we want to stage
  50. * only >= v3 service. And remember, v2 has a different object type which is
  51. * shadow copied from an hs_service_t type. */
  52. SMARTLIST_FOREACH_BEGIN(service_list, hs_service_t *, s) {
  53. if (s->config.version == HS_VERSION_TWO) {
  54. SMARTLIST_DEL_CURRENT(service_list, s);
  55. hs_service_free(s);
  56. }
  57. } SMARTLIST_FOREACH_END(s);
  58. /* This is >= v3 specific. Using the newly configured service list, stage
  59. * them into our global state. Every object ownership is lost after. */
  60. hs_service_stage_services(service_list);
  61. }
  62. /* Validate the given service against all service in the given list. If the
  63. * service is ephemeral, this function ignores it. Services with the same
  64. * directory path aren't allowed and will return an error. If a duplicate is
  65. * found, 1 is returned else 0 if none found. */
  66. static int
  67. service_is_duplicate_in_list(const smartlist_t *service_list,
  68. const hs_service_t *service)
  69. {
  70. int ret = 0;
  71. tor_assert(service_list);
  72. tor_assert(service);
  73. /* Ephemeral service don't have a directory configured so no need to check
  74. * for a service in the list having the same path. */
  75. if (service->config.is_ephemeral) {
  76. goto end;
  77. }
  78. /* XXX: Validate if we have any service that has the given service dir path.
  79. * This has two problems:
  80. *
  81. * a) It's O(n^2), but the same comment from the bottom of
  82. * rend_config_services() should apply.
  83. *
  84. * b) We only compare directory paths as strings, so we can't
  85. * detect two distinct paths that specify the same directory
  86. * (which can arise from symlinks, case-insensitivity, bind
  87. * mounts, etc.).
  88. *
  89. * It also can't detect that two separate Tor instances are trying
  90. * to use the same HiddenServiceDir; for that, we would need a
  91. * lock file. But this is enough to detect a simple mistake that
  92. * at least one person has actually made. */
  93. SMARTLIST_FOREACH_BEGIN(service_list, const hs_service_t *, s) {
  94. if (!strcmp(s->config.directory_path, service->config.directory_path)) {
  95. log_warn(LD_REND, "Another hidden service is already configured "
  96. "for directory %s",
  97. escaped(service->config.directory_path));
  98. ret = 1;
  99. goto end;
  100. }
  101. } SMARTLIST_FOREACH_END(s);
  102. end:
  103. return ret;
  104. }
  105. /* Helper function: Given an configuration option name, its value, a minimum
  106. * min and a maxium max, parse the value as a uint64_t. On success, ok is set
  107. * to 1 and ret is the parsed value. On error, ok is set to 0 and ret must be
  108. * ignored. This function logs both on error and success. */
  109. static uint64_t
  110. helper_parse_uint64(const char *opt, const char *value, uint64_t min,
  111. uint64_t max, int *ok)
  112. {
  113. uint64_t ret = 0;
  114. tor_assert(opt);
  115. tor_assert(value);
  116. tor_assert(ok);
  117. *ok = 0;
  118. ret = tor_parse_uint64(value, 10, min, max, ok, NULL);
  119. if (!*ok) {
  120. log_warn(LD_CONFIG, "%s must be between %" PRIu64 " and %"PRIu64
  121. ", not %s.",
  122. opt, min, max, value);
  123. goto err;
  124. }
  125. log_info(LD_CONFIG, "%s was parsed to %" PRIu64, opt, ret);
  126. err:
  127. return ret;
  128. }
  129. /* Return true iff the given options starting at line_ for a hidden service
  130. * contains at least one invalid option. Each hidden service option don't
  131. * apply to all versions so this function can find out. The line_ MUST start
  132. * right after the HiddenServiceDir line of this service.
  133. *
  134. * This is mainly for usability so we can inform the user of any invalid
  135. * option for the hidden service version instead of silently ignoring. */
  136. static int
  137. config_has_invalid_options(const config_line_t *line_,
  138. const hs_service_t *service)
  139. {
  140. int ret = 0;
  141. const char **optlist;
  142. const config_line_t *line;
  143. tor_assert(service);
  144. tor_assert(service->config.version <= HS_VERSION_MAX);
  145. /* List of options that a v3 service doesn't support thus must exclude from
  146. * its configuration. */
  147. const char *opts_exclude_v3[] = {
  148. "HiddenServiceAuthorizeClient",
  149. NULL /* End marker. */
  150. };
  151. /* Defining the size explicitly allows us to take advantage of the compiler
  152. * which warns us if we ever bump the max version but forget to grow this
  153. * array. The plus one is because we have a version 0 :). */
  154. struct {
  155. const char **list;
  156. } exclude_lists[HS_VERSION_MAX + 1] = {
  157. { NULL }, /* v0. */
  158. { NULL }, /* v1. */
  159. { NULL }, /* v2 */
  160. { opts_exclude_v3 }, /* v3. */
  161. };
  162. optlist = exclude_lists[service->config.version].list;
  163. if (optlist == NULL) {
  164. /* No exclude options to look at for this version. */
  165. goto end;
  166. }
  167. for (int i = 0; optlist[i]; i++) {
  168. const char *opt = optlist[i];
  169. for (line = line_; line; line = line->next) {
  170. if (!strcasecmp(line->key, "HiddenServiceDir")) {
  171. /* We just hit the next hidden service, stop right now. */
  172. goto end;
  173. }
  174. if (!strcasecmp(line->key, opt)) {
  175. log_warn(LD_CONFIG, "Hidden service option %s is incompatible with "
  176. "version %" PRIu32 " of service in %s",
  177. opt, service->config.version,
  178. service->config.directory_path);
  179. ret = 1;
  180. /* Continue the loop so we can find all possible options. */
  181. continue;
  182. }
  183. }
  184. }
  185. end:
  186. return ret;
  187. }
  188. /* Validate service configuration. This is used when loading the configuration
  189. * and once we've setup a service object, it's config object is passed to this
  190. * function for further validation. This does not validate service key
  191. * material. Return 0 if valid else -1 if invalid. */
  192. static int
  193. config_validate_service(const hs_service_config_t *config)
  194. {
  195. tor_assert(config);
  196. /* Amount of ports validation. */
  197. if (!config->ports || smartlist_len(config->ports) == 0) {
  198. log_warn(LD_CONFIG, "Hidden service (%s) with no ports configured.",
  199. escaped(config->directory_path));
  200. goto invalid;
  201. }
  202. /* Valid. */
  203. return 0;
  204. invalid:
  205. return -1;
  206. }
  207. /* Configuration funcion for a version 3 service. The line_ must be pointing
  208. * to the directive directly after a HiddenServiceDir. That way, when hitting
  209. * the next HiddenServiceDir line or reaching the end of the list of lines, we
  210. * know that we have to stop looking for more options. The given service
  211. * object must be already allocated and passed through
  212. * config_generic_service() prior to calling this function.
  213. *
  214. * Return 0 on success else a negative value. */
  215. static int
  216. config_service_v3(const config_line_t *line_,
  217. hs_service_config_t *config)
  218. {
  219. int have_num_ip = 0;
  220. const char *dup_opt_seen = NULL;
  221. const config_line_t *line;
  222. tor_assert(config);
  223. for (line = line_; line; line = line->next) {
  224. int ok = 0;
  225. if (!strcasecmp(line->key, "HiddenServiceDir")) {
  226. /* We just hit the next hidden service, stop right now. */
  227. break;
  228. }
  229. /* Number of introduction points. */
  230. if (!strcasecmp(line->key, "HiddenServiceNumIntroductionPoints")) {
  231. config->num_intro_points =
  232. (unsigned int) helper_parse_uint64(line->key, line->value,
  233. NUM_INTRO_POINTS_DEFAULT,
  234. HS_CONFIG_V3_MAX_INTRO_POINTS,
  235. &ok);
  236. if (!ok || have_num_ip) {
  237. if (have_num_ip)
  238. dup_opt_seen = line->key;
  239. goto err;
  240. }
  241. have_num_ip = 1;
  242. continue;
  243. }
  244. }
  245. /* We do not load the key material for the service at this stage. This is
  246. * done later once tor can confirm that it is in a running state. */
  247. /* We are about to return a fully configured service so do one last pass of
  248. * validation at it. */
  249. if (config_validate_service(config) < 0) {
  250. goto err;
  251. }
  252. return 0;
  253. err:
  254. if (dup_opt_seen) {
  255. log_warn(LD_CONFIG, "Duplicate directive %s.", dup_opt_seen);
  256. }
  257. return -1;
  258. }
  259. /* Configure a service using the given options in line_ and options. This is
  260. * called for any service regardless of its version which means that all
  261. * directives in this function are generic to any service version. This
  262. * function will also check the validity of the service directory path.
  263. *
  264. * The line_ must be pointing to the directive directly after a
  265. * HiddenServiceDir. That way, when hitting the next HiddenServiceDir line or
  266. * reaching the end of the list of lines, we know that we have to stop looking
  267. * for more options.
  268. *
  269. * Return 0 on success else -1. */
  270. static int
  271. config_generic_service(const config_line_t *line_,
  272. const or_options_t *options,
  273. hs_service_t *service)
  274. {
  275. int dir_seen = 0;
  276. const config_line_t *line;
  277. hs_service_config_t *config;
  278. /* If this is set, we've seen a duplicate of this option. Keep the string
  279. * so we can log the directive. */
  280. const char *dup_opt_seen = NULL;
  281. /* These variables will tell us if we ever have duplicate. */
  282. int have_version = 0, have_allow_unknown_ports = 0;
  283. int have_dir_group_read = 0, have_max_streams = 0;
  284. int have_max_streams_close = 0;
  285. tor_assert(line_);
  286. tor_assert(options);
  287. tor_assert(service);
  288. /* Makes thing easier. */
  289. config = &service->config;
  290. /* The first line starts with HiddenServiceDir so we consider what's next is
  291. * the configuration of the service. */
  292. for (line = line_; line ; line = line->next) {
  293. int ok = 0;
  294. /* This indicate that we have a new service to configure. */
  295. if (!strcasecmp(line->key, "HiddenServiceDir")) {
  296. /* This function only configures one service at a time so if we've
  297. * already seen one, stop right now. */
  298. if (dir_seen) {
  299. break;
  300. }
  301. /* Ok, we've seen one and we are about to configure it. */
  302. dir_seen = 1;
  303. config->directory_path = tor_strdup(line->value);
  304. log_info(LD_CONFIG, "HiddenServiceDir=%s. Configuring...",
  305. escaped(config->directory_path));
  306. continue;
  307. }
  308. if (BUG(!dir_seen)) {
  309. goto err;
  310. }
  311. /* Version of the service. */
  312. if (!strcasecmp(line->key, "HiddenServiceVersion")) {
  313. service->config.version =
  314. (uint32_t) helper_parse_uint64(line->key, line->value, HS_VERSION_MIN,
  315. HS_VERSION_MAX, &ok);
  316. if (!ok || have_version) {
  317. if (have_version)
  318. dup_opt_seen = line->key;
  319. goto err;
  320. }
  321. have_version = 1;
  322. continue;
  323. }
  324. /* Virtual port. */
  325. if (!strcasecmp(line->key, "HiddenServicePort")) {
  326. char *err_msg = NULL;
  327. /* XXX: Can we rename this? */
  328. rend_service_port_config_t *portcfg =
  329. rend_service_parse_port_config(line->value, " ", &err_msg);
  330. if (!portcfg) {
  331. if (err_msg) {
  332. log_warn(LD_CONFIG, "%s", err_msg);
  333. }
  334. tor_free(err_msg);
  335. goto err;
  336. }
  337. tor_assert(!err_msg);
  338. smartlist_add(config->ports, portcfg);
  339. log_info(LD_CONFIG, "HiddenServicePort=%s for %s",
  340. line->value, escaped(config->directory_path));
  341. continue;
  342. }
  343. /* Do we allow unknown ports. */
  344. if (!strcasecmp(line->key, "HiddenServiceAllowUnknownPorts")) {
  345. config->allow_unknown_ports =
  346. (unsigned int) helper_parse_uint64(line->key, line->value, 0, 1, &ok);
  347. if (!ok || have_allow_unknown_ports) {
  348. if (have_allow_unknown_ports)
  349. dup_opt_seen = line->key;
  350. goto err;
  351. }
  352. have_allow_unknown_ports = 1;
  353. continue;
  354. }
  355. /* Directory group readable. */
  356. if (!strcasecmp(line->key, "HiddenServiceDirGroupReadable")) {
  357. config->dir_group_readable =
  358. (unsigned int) helper_parse_uint64(line->key, line->value, 0, 1, &ok);
  359. if (!ok || have_dir_group_read) {
  360. if (have_dir_group_read)
  361. dup_opt_seen = line->key;
  362. goto err;
  363. }
  364. have_dir_group_read = 1;
  365. continue;
  366. }
  367. /* Maximum streams per circuit. */
  368. if (!strcasecmp(line->key, "HiddenServiceMaxStreams")) {
  369. config->max_streams_per_rdv_circuit =
  370. helper_parse_uint64(line->key, line->value, 0,
  371. HS_CONFIG_MAX_STREAMS_PER_RDV_CIRCUIT, &ok);
  372. if (!ok || have_max_streams) {
  373. if (have_max_streams)
  374. dup_opt_seen = line->key;
  375. goto err;
  376. }
  377. have_max_streams = 1;
  378. continue;
  379. }
  380. /* Maximum amount of streams before we close the circuit. */
  381. if (!strcasecmp(line->key, "HiddenServiceMaxStreamsCloseCircuit")) {
  382. config->max_streams_close_circuit =
  383. (unsigned int) helper_parse_uint64(line->key, line->value, 0, 1, &ok);
  384. if (!ok || have_max_streams_close) {
  385. if (have_max_streams_close)
  386. dup_opt_seen = line->key;
  387. goto err;
  388. }
  389. have_max_streams_close = 1;
  390. continue;
  391. }
  392. }
  393. /* Check if we are configured in non anonymous mode meaning every service
  394. * becomes a single onion service. */
  395. if (rend_service_non_anonymous_mode_enabled(options)) {
  396. config->is_single_onion = 1;
  397. /* We will add support for IPv6-only v3 single onion services in a future
  398. * Tor version. This won't catch "ReachableAddresses reject *4", but that
  399. * option doesn't work anyway. */
  400. if (options->ClientUseIPv4 == 0 && config->version == HS_VERSION_THREE) {
  401. log_warn(LD_CONFIG, "IPv6-only v3 single onion services are not "
  402. "supported. Set HiddenServiceSingleHopMode 0 and "
  403. "HiddenServiceNonAnonymousMode 0, or set ClientUseIPv4 1.");
  404. goto err;
  405. }
  406. }
  407. /* Success */
  408. return 0;
  409. err:
  410. if (dup_opt_seen) {
  411. log_warn(LD_CONFIG, "Duplicate directive %s.", dup_opt_seen);
  412. }
  413. return -1;
  414. }
  415. /* Configure a service using the given line and options. This function will
  416. * call the corresponding configuration function for a specific service
  417. * version and validate the service against the other ones. On success, add
  418. * the service to the given list and return 0. On error, nothing is added to
  419. * the list and a negative value is returned. */
  420. static int
  421. config_service(const config_line_t *line, const or_options_t *options,
  422. smartlist_t *service_list)
  423. {
  424. int ret;
  425. hs_service_t *service = NULL;
  426. tor_assert(line);
  427. tor_assert(options);
  428. tor_assert(service_list);
  429. /* We have a new hidden service. */
  430. service = hs_service_new(options);
  431. /* We'll configure that service as a generic one and then pass it to a
  432. * specific function according to the configured version number. */
  433. if (config_generic_service(line, options, service) < 0) {
  434. goto err;
  435. }
  436. tor_assert(service->config.version <= HS_VERSION_MAX);
  437. /* Before we configure the service on a per-version basis, we'll make
  438. * sure that this set of options for a service are valid that is for
  439. * instance an option only for v2 is not used for v3. */
  440. if (config_has_invalid_options(line->next, service)) {
  441. goto err;
  442. }
  443. /* Check permission on service directory that was just parsed. And this must
  444. * be done regardless of the service version. Do not ask for the directory
  445. * to be created, this is done when the keys are loaded because we could be
  446. * in validation mode right now. */
  447. if (hs_check_service_private_dir(options->User,
  448. service->config.directory_path,
  449. service->config.dir_group_readable,
  450. 0) < 0) {
  451. goto err;
  452. }
  453. /* Different functions are in charge of specific options for a version. We
  454. * start just after the service directory line so once we hit another
  455. * directory line, the function knows that it has to stop parsing. */
  456. switch (service->config.version) {
  457. case HS_VERSION_TWO:
  458. ret = rend_config_service(line->next, options, &service->config);
  459. break;
  460. case HS_VERSION_THREE:
  461. ret = config_service_v3(line->next, &service->config);
  462. break;
  463. default:
  464. /* We do validate before if we support the parsed version. */
  465. tor_assert_nonfatal_unreached();
  466. goto err;
  467. }
  468. if (ret < 0) {
  469. goto err;
  470. }
  471. /* We'll check if this service can be kept depending on the others
  472. * configured previously. */
  473. if (service_is_duplicate_in_list(service_list, service)) {
  474. goto err;
  475. }
  476. /* Passes, add it to the given list. */
  477. smartlist_add(service_list, service);
  478. return 0;
  479. err:
  480. hs_service_free(service);
  481. return -1;
  482. }
  483. /* From a set of <b>options</b>, setup every hidden service found. Return 0 on
  484. * success or -1 on failure. If <b>validate_only</b> is set, parse, warn and
  485. * return as normal, but don't actually change the configured services. */
  486. int
  487. hs_config_service_all(const or_options_t *options, int validate_only)
  488. {
  489. int dir_option_seen = 0, ret = -1;
  490. const config_line_t *line;
  491. smartlist_t *new_service_list = NULL;
  492. tor_assert(options);
  493. /* Newly configured service are put in that list which is then used for
  494. * validation and staging for >= v3. */
  495. new_service_list = smartlist_new();
  496. for (line = options->RendConfigLines; line; line = line->next) {
  497. /* Ignore all directives that aren't the start of a service. */
  498. if (strcasecmp(line->key, "HiddenServiceDir")) {
  499. if (!dir_option_seen) {
  500. log_warn(LD_CONFIG, "%s with no preceding HiddenServiceDir directive",
  501. line->key);
  502. goto err;
  503. }
  504. continue;
  505. }
  506. /* Flag that we've seen a directory directive and we'll use it to make
  507. * sure that the torrc options ordering is actually valid. */
  508. dir_option_seen = 1;
  509. /* Try to configure this service now. On success, it will be added to the
  510. * list and validated against the service in that same list. */
  511. if (config_service(line, options, new_service_list) < 0) {
  512. goto err;
  513. }
  514. }
  515. /* In non validation mode, we'll stage those services we just successfully
  516. * configured. Service ownership is transferred from the list to the global
  517. * state. If any service is invalid, it will be removed from the list and
  518. * freed. All versions are handled in that function. */
  519. if (!validate_only) {
  520. stage_services(new_service_list);
  521. } else {
  522. /* We've just validated that we were able to build a clean working list of
  523. * services. We don't need those objects anymore. */
  524. SMARTLIST_FOREACH(new_service_list, hs_service_t *, s,
  525. hs_service_free(s));
  526. /* For the v2 subsystem, the configuration function adds the service
  527. * object to the staging list and it is transferred in the main list
  528. * through the prunning process. In validation mode, we thus have to purge
  529. * the staging list so it's not kept in memory as valid service. */
  530. rend_service_free_staging_list();
  531. }
  532. /* Success. Note that the service list has no ownership of its content. */
  533. ret = 0;
  534. goto end;
  535. err:
  536. SMARTLIST_FOREACH(new_service_list, hs_service_t *, s, hs_service_free(s));
  537. end:
  538. smartlist_free(new_service_list);
  539. /* Tor main should call the free all function on error. */
  540. return ret;
  541. }