config.h 11 KB

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