main.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-2016, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file main.h
  8. * \brief Header file for main.c.
  9. **/
  10. #ifndef TOR_MAIN_H
  11. #define TOR_MAIN_H
  12. int have_completed_a_circuit(void);
  13. void note_that_we_completed_a_circuit(void);
  14. void note_that_we_maybe_cant_complete_circuits(void);
  15. int connection_add_impl(connection_t *conn, int is_connecting);
  16. #define connection_add(conn) connection_add_impl((conn), 0)
  17. #define connection_add_connecting(conn) connection_add_impl((conn), 1)
  18. int connection_remove(connection_t *conn);
  19. void connection_unregister_events(connection_t *conn);
  20. int connection_in_array(connection_t *conn);
  21. void add_connection_to_closeable_list(connection_t *conn);
  22. int connection_is_on_closeable_list(connection_t *conn);
  23. MOCK_DECL(smartlist_t *, get_connection_array, (void));
  24. MOCK_DECL(uint64_t,get_bytes_read,(void));
  25. MOCK_DECL(uint64_t,get_bytes_written,(void));
  26. /** Bitmask for events that we can turn on and off with
  27. * connection_watch_events. */
  28. typedef enum watchable_events {
  29. /* Yes, it is intentional that these match Libevent's EV_READ and EV_WRITE */
  30. READ_EVENT=0x02, /**< We want to know when a connection is readable */
  31. WRITE_EVENT=0x04 /**< We want to know when a connection is writable */
  32. } watchable_events_t;
  33. void connection_watch_events(connection_t *conn, watchable_events_t events);
  34. int connection_is_reading(connection_t *conn);
  35. MOCK_DECL(void,connection_stop_reading,(connection_t *conn));
  36. MOCK_DECL(void,connection_start_reading,(connection_t *conn));
  37. int connection_is_writing(connection_t *conn);
  38. MOCK_DECL(void,connection_stop_writing,(connection_t *conn));
  39. MOCK_DECL(void,connection_start_writing,(connection_t *conn));
  40. void connection_stop_reading_from_linked_conn(connection_t *conn);
  41. MOCK_DECL(int, connection_count_moribund, (void));
  42. void directory_all_unreachable(time_t now);
  43. void directory_info_has_arrived(time_t now, int from_cache, int suppress_logs);
  44. void ip_address_changed(int at_interface);
  45. void dns_servers_relaunch_checks(void);
  46. void reset_all_main_loop_timers(void);
  47. void reschedule_descriptor_update_check(void);
  48. void reschedule_directory_downloads(void);
  49. MOCK_DECL(long,get_uptime,(void));
  50. unsigned get_signewnym_epoch(void);
  51. void handle_signals(int is_parent);
  52. void activate_signal(int signal_num);
  53. int try_locking(const or_options_t *options, int err_if_locked);
  54. int have_lockfile(void);
  55. void release_lockfile(void);
  56. void tor_cleanup(void);
  57. void tor_free_all(int postfork);
  58. int tor_main(int argc, char *argv[]);
  59. int do_main_loop(void);
  60. int tor_init(int argc, char **argv);
  61. extern time_t time_of_process_start;
  62. extern long stats_n_seconds_working;
  63. extern int quiet_level;
  64. extern int global_read_bucket;
  65. extern int global_write_bucket;
  66. extern int global_relayed_read_bucket;
  67. extern int global_relayed_write_bucket;
  68. #ifdef MAIN_PRIVATE
  69. STATIC void init_connection_lists(void);
  70. STATIC void close_closeable_connections(void);
  71. STATIC void initialize_periodic_events(void);
  72. STATIC void teardown_periodic_events(void);
  73. #endif
  74. #endif