config.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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-2013, 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. const char *get_dirportfrontpage(void);
  13. const or_options_t *get_options(void);
  14. or_options_t *get_options_mutable(void);
  15. int set_options(or_options_t *new_val, char **msg);
  16. void config_free_all(void);
  17. const char *safe_str_client(const char *address);
  18. const char *safe_str(const char *address);
  19. const char *escaped_safe_str_client(const char *address);
  20. const char *escaped_safe_str(const char *address);
  21. const char *get_version(void);
  22. const char *get_short_version(void);
  23. setopt_err_t options_trial_assign(config_line_t *list, int use_defaults,
  24. int clear_first, char **msg);
  25. uint32_t get_last_resolved_addr(void);
  26. int resolve_my_address(int warn_severity, const or_options_t *options,
  27. uint32_t *addr_out,
  28. const char **method_out, char **hostname_out);
  29. int is_local_addr(const tor_addr_t *addr);
  30. void options_init(or_options_t *options);
  31. #define OPTIONS_DUMP_MINIMAL 1
  32. #define OPTIONS_DUMP_DEFAULTS 2
  33. #define OPTIONS_DUMP_ALL 3
  34. char *options_dump(const or_options_t *options, int how_to_dump);
  35. int options_init_from_torrc(int argc, char **argv);
  36. setopt_err_t options_init_from_string(const char *cf_defaults, const char *cf,
  37. int command, const char *command_arg, char **msg);
  38. int option_is_recognized(const char *key);
  39. const char *option_get_canonical_name(const char *key);
  40. config_line_t *option_get_assignment(const or_options_t *options,
  41. const char *key);
  42. int options_save_current(void);
  43. const char *get_torrc_fname(int defaults_fname);
  44. char *options_get_datadir_fname2_suffix(const or_options_t *options,
  45. const char *sub1, const char *sub2,
  46. const char *suffix);
  47. #define get_datadir_fname2_suffix(sub1, sub2, suffix) \
  48. options_get_datadir_fname2_suffix(get_options(), (sub1), (sub2), (suffix))
  49. /** Return a newly allocated string containing datadir/sub1. See
  50. * get_datadir_fname2_suffix. */
  51. #define get_datadir_fname(sub1) get_datadir_fname2_suffix((sub1), NULL, NULL)
  52. /** Return a newly allocated string containing datadir/sub1/sub2. See
  53. * get_datadir_fname2_suffix. */
  54. #define get_datadir_fname2(sub1,sub2) \
  55. get_datadir_fname2_suffix((sub1), (sub2), NULL)
  56. /** Return a newly allocated string containing datadir/sub1suffix. See
  57. * get_datadir_fname2_suffix. */
  58. #define get_datadir_fname_suffix(sub1, suffix) \
  59. get_datadir_fname2_suffix((sub1), NULL, (suffix))
  60. int check_or_create_data_subdir(const char *subdir);
  61. int write_to_data_subdir(const char* subdir, const char* fname,
  62. const char* str, const char* descr);
  63. int get_num_cpus(const or_options_t *options);
  64. const smartlist_t *get_configured_ports(void);
  65. int get_first_advertised_port_by_type_af(int listener_type,
  66. int address_family);
  67. #define get_primary_or_port() \
  68. (get_first_advertised_port_by_type_af(CONN_TYPE_OR_LISTENER, AF_INET))
  69. #define get_primary_dir_port() \
  70. (get_first_advertised_port_by_type_af(CONN_TYPE_DIR_LISTENER, AF_INET))
  71. char *get_first_listener_addrport_string(int listener_type);
  72. int options_need_geoip_info(const or_options_t *options,
  73. const char **reason_out);
  74. smartlist_t *get_list_of_ports_to_forward(void);
  75. int getinfo_helper_config(control_connection_t *conn,
  76. const char *question, char **answer,
  77. const char **errmsg);
  78. const char *tor_get_digests(void);
  79. uint32_t get_effective_bwrate(const or_options_t *options);
  80. uint32_t get_effective_bwburst(const or_options_t *options);
  81. char *get_transport_bindaddr_from_config(const char *transport);
  82. int init_cookie_authentication(const char *fname, const char *header,
  83. int cookie_len,
  84. uint8_t **cookie_out, int *cookie_is_set_out);
  85. or_options_t *options_new(void);
  86. int config_parse_commandline(int argc, char **argv, int ignore_errors,
  87. config_line_t **result,
  88. config_line_t **cmdline_result);
  89. void config_register_addressmaps(const or_options_t *options);
  90. /* XXXX024 move to connection_edge.h */
  91. int addressmap_register_auto(const char *from, const char *to,
  92. time_t expires,
  93. addressmap_entry_source_t addrmap_source,
  94. const char **msg);
  95. /** Represents the information stored in a torrc Bridge line. */
  96. typedef struct bridge_line_t {
  97. tor_addr_t addr; /* The IP address of the bridge. */
  98. uint16_t port; /* The TCP port of the bridge. */
  99. char *transport_name; /* The name of the pluggable transport that
  100. should be used to connect to the bridge. */
  101. char digest[DIGEST_LEN]; /* The bridge's identity key digest. */
  102. smartlist_t *socks_args; /* SOCKS arguments for the pluggable
  103. transport proxy. */
  104. } bridge_line_t;
  105. void bridge_line_free(bridge_line_t *bridge_line);
  106. bridge_line_t *parse_bridge_line(const char *line);
  107. smartlist_t *get_options_from_transport_options_line(const char *line,
  108. const char *transport);
  109. smartlist_t *get_options_for_server_transport(const char *transport);
  110. #ifdef CONFIG_PRIVATE
  111. #ifdef TOR_UNIT_TESTS
  112. extern struct config_format_t options_format;
  113. #endif
  114. STATIC void or_options_free(or_options_t *options);
  115. STATIC int options_validate(or_options_t *old_options,
  116. or_options_t *options,
  117. or_options_t *default_options,
  118. int from_setconf, char **msg);
  119. #endif
  120. #endif