control.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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 control.h
  8. * \brief Header file for control.c.
  9. **/
  10. #ifndef TOR_CONTROL_H
  11. #define TOR_CONTROL_H
  12. void control_initialize_event_queue(void);
  13. void control_update_global_event_mask(void);
  14. void control_adjust_event_log_severity(void);
  15. void control_ports_write_to_file(void);
  16. /** Log information about the connection <b>conn</b>, protecting it as with
  17. * CONN_LOG_PROTECT. Example:
  18. *
  19. * LOG_FN_CONN(conn, (LOG_DEBUG, "Socket %d wants to write", conn->s));
  20. **/
  21. #define LOG_FN_CONN(conn, args) \
  22. CONN_LOG_PROTECT(conn, log_fn args)
  23. int connection_control_finished_flushing(control_connection_t *conn);
  24. int connection_control_reached_eof(control_connection_t *conn);
  25. void connection_control_closed(control_connection_t *conn);
  26. int connection_control_process_inbuf(control_connection_t *conn);
  27. #define EVENT_NS 0x000F
  28. int control_event_is_interesting(int event);
  29. int control_event_circuit_status(origin_circuit_t *circ,
  30. circuit_status_event_t e, int reason);
  31. int control_event_circuit_purpose_changed(origin_circuit_t *circ,
  32. int old_purpose);
  33. int control_event_circuit_cannibalized(origin_circuit_t *circ,
  34. int old_purpose,
  35. const struct timeval *old_tv_created);
  36. int control_event_stream_status(entry_connection_t *conn,
  37. stream_status_event_t e,
  38. int reason);
  39. int control_event_or_conn_status(or_connection_t *conn,
  40. or_conn_status_event_t e, int reason);
  41. int control_event_bandwidth_used(uint32_t n_read, uint32_t n_written);
  42. int control_event_stream_bandwidth(edge_connection_t *edge_conn);
  43. int control_event_stream_bandwidth_used(void);
  44. int control_event_circ_bandwidth_used(void);
  45. int control_event_conn_bandwidth(connection_t *conn);
  46. int control_event_conn_bandwidth_used(void);
  47. int control_event_circuit_cell_stats(void);
  48. int control_event_tb_empty(const char *bucket, uint32_t read_empty_time,
  49. uint32_t write_empty_time,
  50. int milliseconds_elapsed);
  51. void control_event_logmsg(int severity, uint32_t domain, const char *msg);
  52. int control_event_descriptors_changed(smartlist_t *routers);
  53. int control_event_address_mapped(const char *from, const char *to,
  54. time_t expires, const char *error,
  55. const int cached);
  56. int control_event_my_descriptor_changed(void);
  57. int control_event_network_liveness_update(int liveness);
  58. int control_event_networkstatus_changed(smartlist_t *statuses);
  59. int control_event_newconsensus(const networkstatus_t *consensus);
  60. int control_event_networkstatus_changed_single(const routerstatus_t *rs);
  61. int control_event_general_status(int severity, const char *format, ...)
  62. CHECK_PRINTF(2,3);
  63. int control_event_client_status(int severity, const char *format, ...)
  64. CHECK_PRINTF(2,3);
  65. int control_event_server_status(int severity, const char *format, ...)
  66. CHECK_PRINTF(2,3);
  67. int control_event_general_error(const char *format, ...)
  68. CHECK_PRINTF(1,2);
  69. int control_event_client_error(const char *format, ...)
  70. CHECK_PRINTF(1,2);
  71. int control_event_server_error(const char *format, ...)
  72. CHECK_PRINTF(1,2);
  73. int control_event_guard(const char *nickname, const char *digest,
  74. const char *status);
  75. int control_event_conf_changed(const smartlist_t *elements);
  76. int control_event_buildtimeout_set(buildtimeout_set_event_t type,
  77. const char *args);
  78. int control_event_signal(uintptr_t signal);
  79. int init_control_cookie_authentication(int enabled);
  80. char *get_controller_cookie_file_name(void);
  81. smartlist_t *decode_hashed_passwords(config_line_t *passwords);
  82. void disable_control_logging(void);
  83. void enable_control_logging(void);
  84. void monitor_owning_controller_process(const char *process_spec);
  85. int control_event_bootstrap(bootstrap_status_t status, int progress);
  86. MOCK_DECL(void, control_event_bootstrap_problem,(const char *warn,
  87. int reason,
  88. or_connection_t *or_conn));
  89. void control_event_clients_seen(const char *controller_str);
  90. void control_event_transport_launched(const char *mode,
  91. const char *transport_name,
  92. tor_addr_t *addr, uint16_t port);
  93. const char *rend_auth_type_to_string(rend_auth_type_t auth_type);
  94. MOCK_DECL(const char *, node_describe_longname_by_id,(const char *id_digest));
  95. void control_event_hs_descriptor_requested(const rend_data_t *rend_query,
  96. const char *desc_id_base32,
  97. const char *hs_dir);
  98. void control_event_hs_descriptor_created(const char *service_id,
  99. const char *desc_id_base32,
  100. int replica);
  101. void control_event_hs_descriptor_upload(const char *service_id,
  102. const char *desc_id_base32,
  103. const char *hs_dir);
  104. void control_event_hs_descriptor_receive_end(const char *action,
  105. const char *onion_address,
  106. const rend_data_t *rend_data,
  107. const char *id_digest,
  108. const char *reason);
  109. void control_event_hs_descriptor_upload_end(const char *action,
  110. const char *onion_address,
  111. const char *hs_dir,
  112. const char *reason);
  113. void control_event_hs_descriptor_received(const char *onion_address,
  114. const rend_data_t *rend_data,
  115. const char *id_digest);
  116. void control_event_hs_descriptor_uploaded(const char *hs_dir,
  117. const char *onion_address);
  118. void control_event_hs_descriptor_failed(const rend_data_t *rend_data,
  119. const char *id_digest,
  120. const char *reason);
  121. void control_event_hs_descriptor_upload_failed(const char *hs_dir,
  122. const char *onion_address,
  123. const char *reason);
  124. void control_event_hs_descriptor_content(const char *onion_address,
  125. const char *desc_id,
  126. const char *hsdir_fp,
  127. const char *content);
  128. void control_free_all(void);
  129. #ifdef CONTROL_PRIVATE
  130. /* Recognized asynchronous event types. It's okay to expand this list
  131. * because it is used both as a list of v0 event types, and as indices
  132. * into the bitfield to determine which controllers want which events.
  133. */
  134. /* This bitfield has no event zero 0x0000 */
  135. #define EVENT_MIN_ 0x0001
  136. #define EVENT_CIRCUIT_STATUS 0x0001
  137. #define EVENT_STREAM_STATUS 0x0002
  138. #define EVENT_OR_CONN_STATUS 0x0003
  139. #define EVENT_BANDWIDTH_USED 0x0004
  140. #define EVENT_CIRCUIT_STATUS_MINOR 0x0005
  141. #define EVENT_NEW_DESC 0x0006
  142. #define EVENT_DEBUG_MSG 0x0007
  143. #define EVENT_INFO_MSG 0x0008
  144. #define EVENT_NOTICE_MSG 0x0009
  145. #define EVENT_WARN_MSG 0x000A
  146. #define EVENT_ERR_MSG 0x000B
  147. #define EVENT_ADDRMAP 0x000C
  148. /* There was an AUTHDIR_NEWDESCS event, but it no longer exists. We
  149. can reclaim 0x000D. */
  150. #define EVENT_DESCCHANGED 0x000E
  151. /* Exposed above */
  152. // #define EVENT_NS 0x000F
  153. #define EVENT_STATUS_CLIENT 0x0010
  154. #define EVENT_STATUS_SERVER 0x0011
  155. #define EVENT_STATUS_GENERAL 0x0012
  156. #define EVENT_GUARD 0x0013
  157. #define EVENT_STREAM_BANDWIDTH_USED 0x0014
  158. #define EVENT_CLIENTS_SEEN 0x0015
  159. #define EVENT_NEWCONSENSUS 0x0016
  160. #define EVENT_BUILDTIMEOUT_SET 0x0017
  161. #define EVENT_GOT_SIGNAL 0x0018
  162. #define EVENT_CONF_CHANGED 0x0019
  163. #define EVENT_CONN_BW 0x001A
  164. #define EVENT_CELL_STATS 0x001B
  165. #define EVENT_TB_EMPTY 0x001C
  166. #define EVENT_CIRC_BANDWIDTH_USED 0x001D
  167. #define EVENT_TRANSPORT_LAUNCHED 0x0020
  168. #define EVENT_HS_DESC 0x0021
  169. #define EVENT_HS_DESC_CONTENT 0x0022
  170. #define EVENT_NETWORK_LIVENESS 0x0023
  171. #define EVENT_MAX_ 0x0023
  172. /* sizeof(control_connection_t.event_mask) in bits, currently a uint64_t */
  173. #define EVENT_CAPACITY_ 0x0040
  174. /* If EVENT_MAX_ ever hits 0x0040, we need to make the mask into a
  175. * different structure, as it can only handle a maximum left shift of 1<<63. */
  176. #if EVENT_MAX_ >= EVENT_CAPACITY_
  177. #error control_connection_t.event_mask has an event greater than its capacity
  178. #endif
  179. #define EVENT_MASK_(e) (((uint64_t)1)<<(e))
  180. #define EVENT_MASK_NONE_ ((uint64_t)0x0)
  181. #define EVENT_MASK_ABOVE_MIN_ ((~((uint64_t)0x0)) << EVENT_MIN_)
  182. #define EVENT_MASK_BELOW_MAX_ ((~((uint64_t)0x0)) \
  183. >> (EVENT_CAPACITY_ - EVENT_MAX_ \
  184. - EVENT_MIN_))
  185. #define EVENT_MASK_ALL_ (EVENT_MASK_ABOVE_MIN_ \
  186. & EVENT_MASK_BELOW_MAX_)
  187. /* Used only by control.c and test.c */
  188. STATIC size_t write_escaped_data(const char *data, size_t len, char **out);
  189. STATIC size_t read_escaped_data(const char *data, size_t len, char **out);
  190. #ifdef TOR_UNIT_TESTS
  191. MOCK_DECL(STATIC void,
  192. send_control_event_string,(uint16_t event, const char *msg));
  193. MOCK_DECL(STATIC void,
  194. queue_control_event_string,(uint16_t event, char *msg));
  195. void control_testing_set_global_event_mask(uint64_t mask);
  196. #endif
  197. /** Helper structure: temporarily stores cell statistics for a circuit. */
  198. typedef struct cell_stats_t {
  199. /** Number of cells added in app-ward direction by command. */
  200. uint64_t added_cells_appward[CELL_COMMAND_MAX_ + 1];
  201. /** Number of cells added in exit-ward direction by command. */
  202. uint64_t added_cells_exitward[CELL_COMMAND_MAX_ + 1];
  203. /** Number of cells removed in app-ward direction by command. */
  204. uint64_t removed_cells_appward[CELL_COMMAND_MAX_ + 1];
  205. /** Number of cells removed in exit-ward direction by command. */
  206. uint64_t removed_cells_exitward[CELL_COMMAND_MAX_ + 1];
  207. /** Total waiting time of cells in app-ward direction by command. */
  208. uint64_t total_time_appward[CELL_COMMAND_MAX_ + 1];
  209. /** Total waiting time of cells in exit-ward direction by command. */
  210. uint64_t total_time_exitward[CELL_COMMAND_MAX_ + 1];
  211. } cell_stats_t;
  212. void sum_up_cell_stats_by_command(circuit_t *circ,
  213. cell_stats_t *cell_stats);
  214. void append_cell_stats_by_command(smartlist_t *event_parts,
  215. const char *key,
  216. const uint64_t *include_if_non_zero,
  217. const uint64_t *number_to_include);
  218. void format_cell_stats(char **event_string, circuit_t *circ,
  219. cell_stats_t *cell_stats);
  220. STATIC char *get_bw_samples(void);
  221. STATIC crypto_pk_t *add_onion_helper_keyarg(const char *arg, int discard_pk,
  222. const char **key_new_alg_out,
  223. char **key_new_blob_out,
  224. char **err_msg_out);
  225. STATIC rend_authorized_client_t *
  226. add_onion_helper_clientauth(const char *arg, int *created, char **err_msg_out);
  227. STATIC int getinfo_helper_onions(
  228. control_connection_t *control_conn,
  229. const char *question,
  230. char **answer,
  231. const char **errmsg);
  232. STATIC void getinfo_helper_downloads_networkstatus(
  233. const char *flavor,
  234. download_status_t **dl_to_emit,
  235. const char **errmsg);
  236. STATIC void getinfo_helper_downloads_cert(
  237. const char *fp_sk_req,
  238. download_status_t **dl_to_emit,
  239. smartlist_t **digest_list,
  240. const char **errmsg);
  241. STATIC void getinfo_helper_downloads_desc(
  242. const char *desc_req,
  243. download_status_t **dl_to_emit,
  244. smartlist_t **digest_list,
  245. const char **errmsg);
  246. STATIC void getinfo_helper_downloads_bridge(
  247. const char *bridge_req,
  248. download_status_t **dl_to_emit,
  249. smartlist_t **digest_list,
  250. const char **errmsg);
  251. STATIC int getinfo_helper_downloads(
  252. control_connection_t *control_conn,
  253. const char *question, char **answer,
  254. const char **errmsg);
  255. STATIC int getinfo_helper_dir(
  256. control_connection_t *control_conn,
  257. const char *question, char **answer,
  258. const char **errmsg);
  259. #endif
  260. #endif