config.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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-2012, 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. int config_get_lines(const char *string, config_line_t **result, int extended);
  24. void config_free_lines(config_line_t *front);
  25. setopt_err_t options_trial_assign(config_line_t *list, int use_defaults,
  26. int clear_first, char **msg);
  27. int resolve_my_address(int warn_severity, const or_options_t *options,
  28. uint32_t *addr, char **hostname_out);
  29. int is_local_addr(const tor_addr_t *addr);
  30. void options_init(or_options_t *options);
  31. char *options_dump(const or_options_t *options, int minimal);
  32. int options_init_from_torrc(int argc, char **argv);
  33. setopt_err_t options_init_from_string(const char *cf_defaults, const char *cf,
  34. int command, const char *command_arg, char **msg);
  35. int option_is_recognized(const char *key);
  36. const char *option_get_canonical_name(const char *key);
  37. config_line_t *option_get_assignment(const or_options_t *options,
  38. const char *key);
  39. int options_save_current(void);
  40. const char *get_torrc_fname(int defaults_fname);
  41. char *options_get_datadir_fname2_suffix(const or_options_t *options,
  42. const char *sub1, const char *sub2,
  43. const char *suffix);
  44. #define get_datadir_fname2_suffix(sub1, sub2, suffix) \
  45. options_get_datadir_fname2_suffix(get_options(), (sub1), (sub2), (suffix))
  46. /** Return a newly allocated string containing datadir/sub1. See
  47. * get_datadir_fname2_suffix. */
  48. #define get_datadir_fname(sub1) get_datadir_fname2_suffix((sub1), NULL, NULL)
  49. /** Return a newly allocated string containing datadir/sub1/sub2. See
  50. * get_datadir_fname2_suffix. */
  51. #define get_datadir_fname2(sub1,sub2) \
  52. get_datadir_fname2_suffix((sub1), (sub2), NULL)
  53. /** Return a newly allocated string containing datadir/sub1suffix. See
  54. * get_datadir_fname2_suffix. */
  55. #define get_datadir_fname_suffix(sub1, suffix) \
  56. get_datadir_fname2_suffix((sub1), NULL, (suffix))
  57. int get_num_cpus(const or_options_t *options);
  58. or_state_t *get_or_state(void);
  59. int did_last_state_file_write_fail(void);
  60. int or_state_save(time_t now);
  61. const smartlist_t *get_configured_ports(void);
  62. int get_first_advertised_port_by_type_af(int listener_type,
  63. int address_family);
  64. #define get_primary_or_port() \
  65. (get_first_advertised_port_by_type_af(CONN_TYPE_OR_LISTENER, AF_INET))
  66. #define get_primary_dir_port() \
  67. (get_first_advertised_port_by_type_af(CONN_TYPE_DIR_LISTENER, AF_INET))
  68. char *get_first_listener_addrport_string(int listener_type);
  69. int options_need_geoip_info(const or_options_t *options,
  70. const char **reason_out);
  71. void save_transport_to_state(const char *transport_name,
  72. const tor_addr_t *addr, uint16_t port);
  73. char *get_stored_bindaddr_for_server_transport(const char *transport);
  74. int getinfo_helper_config(control_connection_t *conn,
  75. const char *question, char **answer,
  76. const char **errmsg);
  77. const char *tor_get_digests(void);
  78. uint32_t get_effective_bwrate(const or_options_t *options);
  79. uint32_t get_effective_bwburst(const or_options_t *options);
  80. #ifdef CONFIG_PRIVATE
  81. /* Used only by config.c and test.c */
  82. or_options_t *options_new(void);
  83. #endif
  84. void config_register_addressmaps(const or_options_t *options);
  85. #endif