config.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2019, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file config.h
  8. * \brief Header file for config.c.
  9. **/
  10. #ifndef TOR_CONFIG_H
  11. #define TOR_CONFIG_H
  12. #include "app/config/or_options_st.h"
  13. #include "lib/testsupport/testsupport.h"
  14. #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(DARWIN)
  15. #define KERNEL_MAY_SUPPORT_IPFW
  16. #endif
  17. /** Lowest allowable value for HeartbeatPeriod; if this is too low, we might
  18. * expose more information than we're comfortable with. */
  19. #define MIN_HEARTBEAT_PERIOD (30*60)
  20. /** Maximum default value for MaxMemInQueues, in bytes. */
  21. #if SIZEOF_VOID_P >= 8
  22. #define MAX_DEFAULT_MEMORY_QUEUE_SIZE (UINT64_C(8) << 30)
  23. #else
  24. #define MAX_DEFAULT_MEMORY_QUEUE_SIZE (UINT64_C(2) << 30)
  25. #endif
  26. MOCK_DECL(const char*, get_dirportfrontpage, (void));
  27. MOCK_DECL(const or_options_t *, get_options, (void));
  28. MOCK_DECL(or_options_t *, get_options_mutable, (void));
  29. int set_options(or_options_t *new_val, char **msg);
  30. void config_free_all(void);
  31. const char *safe_str_client(const char *address);
  32. const char *safe_str(const char *address);
  33. const char *escaped_safe_str_client(const char *address);
  34. const char *escaped_safe_str(const char *address);
  35. void init_protocol_warning_severity_level(void);
  36. int get_protocol_warning_severity_level(void);
  37. /** An error from options_trial_assign() or options_init_from_string(). */
  38. typedef enum setopt_err_t {
  39. SETOPT_OK = 0,
  40. SETOPT_ERR_MISC = -1,
  41. SETOPT_ERR_PARSE = -2,
  42. SETOPT_ERR_TRANSITION = -3,
  43. SETOPT_ERR_SETTING = -4,
  44. } setopt_err_t;
  45. setopt_err_t options_trial_assign(struct config_line_t *list, unsigned flags,
  46. char **msg);
  47. uint32_t get_last_resolved_addr(void);
  48. void reset_last_resolved_addr(void);
  49. int resolve_my_address(int warn_severity, const or_options_t *options,
  50. uint32_t *addr_out,
  51. const char **method_out, char **hostname_out);
  52. MOCK_DECL(int, is_local_addr, (const tor_addr_t *addr));
  53. void options_init(or_options_t *options);
  54. #define OPTIONS_DUMP_MINIMAL 1
  55. #define OPTIONS_DUMP_DEFAULTS 2
  56. #define OPTIONS_DUMP_ALL 3
  57. char *options_dump(const or_options_t *options, int how_to_dump);
  58. int options_init_from_torrc(int argc, char **argv);
  59. setopt_err_t options_init_from_string(const char *cf_defaults, const char *cf,
  60. int command, const char *command_arg, char **msg);
  61. int option_is_recognized(const char *key);
  62. const char *option_get_canonical_name(const char *key);
  63. struct config_line_t *option_get_assignment(const or_options_t *options,
  64. const char *key);
  65. int options_save_current(void);
  66. const char *get_torrc_fname(int defaults_fname);
  67. typedef enum {
  68. DIRROOT_DATADIR,
  69. DIRROOT_CACHEDIR,
  70. DIRROOT_KEYDIR
  71. } directory_root_t;
  72. MOCK_DECL(char *,
  73. options_get_dir_fname2_suffix,
  74. (const or_options_t *options,
  75. directory_root_t roottype,
  76. const char *sub1, const char *sub2,
  77. const char *suffix));
  78. /* These macros wrap options_get_dir_fname2_suffix to provide a more
  79. * convenient API for finding filenames that Tor uses inside its storage
  80. * They are named according to a pattern:
  81. * (options_)?get_(cache|key|data)dir_fname(2)?(_suffix)?
  82. *
  83. * Macros that begin with options_ take an options argument; the others
  84. * work with respect to the global options.
  85. *
  86. * Each macro works relative to the data directory, the key directory,
  87. * or the cache directory, as determined by which one is mentioned.
  88. *
  89. * Macro variants with "2" in their name take two path components; others
  90. * take one.
  91. *
  92. * Macro variants with "_suffix" at the end take an additional suffix
  93. * that gets appended to the end of the file
  94. */
  95. #define options_get_datadir_fname2_suffix(options, sub1, sub2, suffix) \
  96. options_get_dir_fname2_suffix((options), DIRROOT_DATADIR, \
  97. (sub1), (sub2), (suffix))
  98. #define options_get_cachedir_fname2_suffix(options, sub1, sub2, suffix) \
  99. options_get_dir_fname2_suffix((options), DIRROOT_CACHEDIR, \
  100. (sub1), (sub2), (suffix))
  101. #define options_get_keydir_fname2_suffix(options, sub1, sub2, suffix) \
  102. options_get_dir_fname2_suffix((options), DIRROOT_KEYDIR, \
  103. (sub1), (sub2), (suffix))
  104. #define options_get_datadir_fname(opts,sub1) \
  105. options_get_datadir_fname2_suffix((opts),(sub1), NULL, NULL)
  106. #define options_get_datadir_fname2(opts,sub1,sub2) \
  107. options_get_datadir_fname2_suffix((opts),(sub1), (sub2), NULL)
  108. #define get_datadir_fname2_suffix(sub1, sub2, suffix) \
  109. options_get_datadir_fname2_suffix(get_options(), (sub1), (sub2), (suffix))
  110. #define get_datadir_fname(sub1) \
  111. get_datadir_fname2_suffix((sub1), NULL, NULL)
  112. #define get_datadir_fname2(sub1,sub2) \
  113. get_datadir_fname2_suffix((sub1), (sub2), NULL)
  114. #define get_datadir_fname_suffix(sub1, suffix) \
  115. get_datadir_fname2_suffix((sub1), NULL, (suffix))
  116. /** DOCDOC */
  117. #define options_get_keydir_fname(options, sub1) \
  118. options_get_keydir_fname2_suffix((options), (sub1), NULL, NULL)
  119. #define get_keydir_fname_suffix(sub1, suffix) \
  120. options_get_keydir_fname2_suffix(get_options(), (sub1), NULL, suffix)
  121. #define get_keydir_fname(sub1) \
  122. options_get_keydir_fname2_suffix(get_options(), (sub1), NULL, NULL)
  123. #define get_cachedir_fname(sub1) \
  124. options_get_cachedir_fname2_suffix(get_options(), (sub1), NULL, NULL)
  125. #define get_cachedir_fname_suffix(sub1, suffix) \
  126. options_get_cachedir_fname2_suffix(get_options(), (sub1), NULL, (suffix))
  127. #define safe_str_client(address) \
  128. safe_str_client_opts(NULL, address)
  129. #define safe_str(address) \
  130. safe_str_opts(NULL, address)
  131. const char * safe_str_client_opts(const or_options_t *options,
  132. const char *address);
  133. const char * safe_str_opts(const or_options_t *options,
  134. const char *address);
  135. int using_default_dir_authorities(const or_options_t *options);
  136. int create_keys_directory(const or_options_t *options);
  137. int check_or_create_data_subdir(const char *subdir);
  138. int write_to_data_subdir(const char* subdir, const char* fname,
  139. const char* str, const char* descr);
  140. int get_num_cpus(const or_options_t *options);
  141. MOCK_DECL(const smartlist_t *,get_configured_ports,(void));
  142. int get_first_advertised_port_by_type_af(int listener_type,
  143. int address_family);
  144. #define get_primary_or_port() \
  145. (get_first_advertised_port_by_type_af(CONN_TYPE_OR_LISTENER, AF_INET))
  146. #define get_primary_dir_port() \
  147. (get_first_advertised_port_by_type_af(CONN_TYPE_DIR_LISTENER, AF_INET))
  148. const tor_addr_t *get_first_advertised_addr_by_type_af(int listener_type,
  149. int address_family);
  150. int port_exists_by_type_addr_port(int listener_type, const tor_addr_t *addr,
  151. int port, int check_wildcard);
  152. int port_exists_by_type_addr32h_port(int listener_type, uint32_t addr_ipv4h,
  153. int port, int check_wildcard);
  154. char *get_first_listener_addrport_string(int listener_type);
  155. int options_need_geoip_info(const or_options_t *options,
  156. const char **reason_out);
  157. smartlist_t *get_list_of_ports_to_forward(void);
  158. int getinfo_helper_config(control_connection_t *conn,
  159. const char *question, char **answer,
  160. const char **errmsg);
  161. uint32_t get_effective_bwrate(const or_options_t *options);
  162. uint32_t get_effective_bwburst(const or_options_t *options);
  163. char *get_transport_bindaddr_from_config(const char *transport);
  164. int init_cookie_authentication(const char *fname, const char *header,
  165. int cookie_len, int group_readable,
  166. uint8_t **cookie_out, int *cookie_is_set_out);
  167. or_options_t *options_new(void);
  168. int config_parse_commandline(int argc, char **argv, int ignore_errors,
  169. struct config_line_t **result,
  170. struct config_line_t **cmdline_result);
  171. void config_register_addressmaps(const or_options_t *options);
  172. /* XXXX move to connection_edge.h */
  173. int addressmap_register_auto(const char *from, const char *to,
  174. time_t expires,
  175. addressmap_entry_source_t addrmap_source,
  176. const char **msg);
  177. int port_cfg_line_extract_addrport(const char *line,
  178. char **addrport_out,
  179. int *is_unix_out,
  180. const char **rest_out);
  181. /** Represents the information stored in a torrc Bridge line. */
  182. typedef struct bridge_line_t {
  183. tor_addr_t addr; /* The IP address of the bridge. */
  184. uint16_t port; /* The TCP port of the bridge. */
  185. char *transport_name; /* The name of the pluggable transport that
  186. should be used to connect to the bridge. */
  187. char digest[DIGEST_LEN]; /* The bridge's identity key digest. */
  188. smartlist_t *socks_args; /* SOCKS arguments for the pluggable
  189. transport proxy. */
  190. } bridge_line_t;
  191. void bridge_line_free_(bridge_line_t *bridge_line);
  192. #define bridge_line_free(line) \
  193. FREE_AND_NULL(bridge_line_t, bridge_line_free_, (line))
  194. bridge_line_t *parse_bridge_line(const char *line);
  195. smartlist_t *get_options_from_transport_options_line(const char *line,
  196. const char *transport);
  197. smartlist_t *get_options_for_server_transport(const char *transport);
  198. /* Port helper functions. */
  199. int options_any_client_port_set(const or_options_t *options);
  200. #ifdef CONFIG_PRIVATE
  201. #define CL_PORT_NO_STREAM_OPTIONS (1u<<0)
  202. #define CL_PORT_WARN_NONLOCAL (1u<<1)
  203. /* Was CL_PORT_ALLOW_EXTRA_LISTENADDR (1u<<2) */
  204. #define CL_PORT_SERVER_OPTIONS (1u<<3)
  205. #define CL_PORT_FORBID_NONLOCAL (1u<<4)
  206. #define CL_PORT_TAKES_HOSTNAMES (1u<<5)
  207. #define CL_PORT_IS_UNIXSOCKET (1u<<6)
  208. #define CL_PORT_DFLT_GROUP_WRITABLE (1u<<7)
  209. STATIC int options_act(const or_options_t *old_options);
  210. #ifdef TOR_UNIT_TESTS
  211. extern struct config_format_t options_format;
  212. #endif
  213. STATIC port_cfg_t *port_cfg_new(size_t namelen);
  214. #define port_cfg_free(port) \
  215. FREE_AND_NULL(port_cfg_t, port_cfg_free_, (port))
  216. STATIC void port_cfg_free_(port_cfg_t *port);
  217. #define or_options_free(opt) \
  218. FREE_AND_NULL(or_options_t, or_options_free_, (opt))
  219. STATIC void or_options_free_(or_options_t *options);
  220. STATIC int options_validate_single_onion(or_options_t *options,
  221. char **msg);
  222. STATIC int options_validate(or_options_t *old_options,
  223. or_options_t *options,
  224. or_options_t *default_options,
  225. int from_setconf, char **msg);
  226. STATIC int parse_transport_line(const or_options_t *options,
  227. const char *line, int validate_only,
  228. int server);
  229. STATIC int consider_adding_dir_servers(const or_options_t *options,
  230. const or_options_t *old_options);
  231. STATIC void add_default_trusted_dir_authorities(dirinfo_type_t type);
  232. MOCK_DECL(STATIC void, add_default_fallback_dir_servers, (void));
  233. STATIC int parse_dir_authority_line(const char *line,
  234. dirinfo_type_t required_type,
  235. int validate_only);
  236. STATIC int parse_dir_fallback_line(const char *line, int validate_only);
  237. STATIC int have_enough_mem_for_dircache(const or_options_t *options,
  238. size_t total_mem, char **msg);
  239. STATIC int parse_port_config(smartlist_t *out,
  240. const struct config_line_t *ports,
  241. const char *portname,
  242. int listener_type,
  243. const char *defaultaddr,
  244. int defaultport,
  245. const unsigned flags);
  246. STATIC int check_bridge_distribution_setting(const char *bd);
  247. STATIC uint64_t compute_real_max_mem_in_queues(const uint64_t val,
  248. int log_guess);
  249. STATIC int open_and_add_file_log(const log_severity_list_t *severity,
  250. const char *fname,
  251. int truncate_log);
  252. #endif /* defined(CONFIG_PRIVATE) */
  253. #endif /* !defined(TOR_CONFIG_H) */