2010-07-22 11:35:09 +02:00
|
|
|
/* Copyright (c) 2001 Matej Pfajfar.
|
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2013-01-16 07:54:56 +01:00
|
|
|
* Copyright (c) 2007-2013, The Tor Project, Inc. */
|
2010-07-22 11:35:09 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file control.h
|
|
|
|
* \brief Header file for control.c.
|
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_CONTROL_H
|
|
|
|
#define TOR_CONTROL_H
|
2010-07-22 11:35:09 +02:00
|
|
|
|
|
|
|
void control_update_global_event_mask(void);
|
|
|
|
void control_adjust_event_log_severity(void);
|
|
|
|
|
2011-05-09 18:13:37 +02:00
|
|
|
void control_ports_write_to_file(void);
|
|
|
|
|
2010-07-22 11:35:09 +02:00
|
|
|
/** Log information about the connection <b>conn</b>, protecting it as with
|
|
|
|
* CONN_LOG_PROTECT. Example:
|
|
|
|
*
|
|
|
|
* LOG_FN_CONN(conn, (LOG_DEBUG, "Socket %d wants to write", conn->s));
|
|
|
|
**/
|
|
|
|
#define LOG_FN_CONN(conn, args) \
|
|
|
|
CONN_LOG_PROTECT(conn, log_fn args)
|
|
|
|
|
|
|
|
int connection_control_finished_flushing(control_connection_t *conn);
|
|
|
|
int connection_control_reached_eof(control_connection_t *conn);
|
2011-05-20 01:27:51 +02:00
|
|
|
void connection_control_closed(control_connection_t *conn);
|
|
|
|
|
2010-07-22 11:35:09 +02:00
|
|
|
int connection_control_process_inbuf(control_connection_t *conn);
|
|
|
|
|
|
|
|
#define EVENT_AUTHDIR_NEWDESCS 0x000D
|
|
|
|
#define EVENT_NS 0x000F
|
|
|
|
int control_event_is_interesting(int event);
|
|
|
|
|
|
|
|
int control_event_circuit_status(origin_circuit_t *circ,
|
|
|
|
circuit_status_event_t e, int reason);
|
2012-01-11 16:28:20 +01:00
|
|
|
int control_event_circuit_purpose_changed(origin_circuit_t *circ,
|
|
|
|
int old_purpose);
|
|
|
|
int control_event_circuit_cannibalized(origin_circuit_t *circ,
|
|
|
|
int old_purpose,
|
|
|
|
const struct timeval *old_tv_created);
|
2011-07-20 18:55:42 +02:00
|
|
|
int control_event_stream_status(entry_connection_t *conn,
|
2010-07-22 11:35:09 +02:00
|
|
|
stream_status_event_t e,
|
|
|
|
int reason);
|
|
|
|
int control_event_or_conn_status(or_connection_t *conn,
|
|
|
|
or_conn_status_event_t e, int reason);
|
|
|
|
int control_event_bandwidth_used(uint32_t n_read, uint32_t n_written);
|
|
|
|
int control_event_stream_bandwidth(edge_connection_t *edge_conn);
|
|
|
|
int control_event_stream_bandwidth_used(void);
|
2012-06-05 01:51:00 +02:00
|
|
|
void control_event_logmsg(int severity, uint32_t domain, const char *msg);
|
2010-07-22 11:35:09 +02:00
|
|
|
int control_event_descriptors_changed(smartlist_t *routers);
|
|
|
|
int control_event_address_mapped(const char *from, const char *to,
|
2013-04-03 18:50:51 +02:00
|
|
|
time_t expires, const char *error,
|
|
|
|
const int cached);
|
2010-07-22 11:35:09 +02:00
|
|
|
int control_event_or_authdir_new_descriptor(const char *action,
|
|
|
|
const char *desc,
|
|
|
|
size_t desclen,
|
|
|
|
const char *msg);
|
|
|
|
int control_event_my_descriptor_changed(void);
|
|
|
|
int control_event_networkstatus_changed(smartlist_t *statuses);
|
|
|
|
|
|
|
|
int control_event_newconsensus(const networkstatus_t *consensus);
|
2010-09-29 07:35:08 +02:00
|
|
|
int control_event_networkstatus_changed_single(const routerstatus_t *rs);
|
2010-07-22 11:35:09 +02:00
|
|
|
int control_event_general_status(int severity, const char *format, ...)
|
|
|
|
CHECK_PRINTF(2,3);
|
|
|
|
int control_event_client_status(int severity, const char *format, ...)
|
|
|
|
CHECK_PRINTF(2,3);
|
|
|
|
int control_event_server_status(int severity, const char *format, ...)
|
|
|
|
CHECK_PRINTF(2,3);
|
|
|
|
int control_event_guard(const char *nickname, const char *digest,
|
|
|
|
const char *status);
|
2013-04-17 17:34:15 +02:00
|
|
|
int control_event_conf_changed(const smartlist_t *elements);
|
2013-08-21 18:37:35 +02:00
|
|
|
int control_event_buildtimeout_set(buildtimeout_set_event_t type,
|
|
|
|
const char *args);
|
2010-11-14 23:33:55 +01:00
|
|
|
int control_event_signal(uintptr_t signal);
|
2010-07-22 11:35:09 +02:00
|
|
|
|
2012-12-05 18:16:04 +01:00
|
|
|
int init_control_cookie_authentication(int enabled);
|
2010-07-22 11:35:09 +02:00
|
|
|
smartlist_t *decode_hashed_passwords(config_line_t *passwords);
|
|
|
|
void disable_control_logging(void);
|
|
|
|
void enable_control_logging(void);
|
|
|
|
|
2011-05-16 19:25:59 +02:00
|
|
|
void monitor_owning_controller_process(const char *process_spec);
|
2011-05-15 17:23:04 +02:00
|
|
|
|
2010-07-22 11:35:09 +02:00
|
|
|
void control_event_bootstrap(bootstrap_status_t status, int progress);
|
2013-08-01 19:15:58 +02:00
|
|
|
MOCK_DECL(void, control_event_bootstrap_problem,(const char *warn,
|
|
|
|
int reason));
|
2010-07-22 11:35:09 +02:00
|
|
|
|
|
|
|
void control_event_clients_seen(const char *controller_str);
|
2013-01-23 11:41:19 +01:00
|
|
|
void control_event_transport_launched(const char *mode,
|
|
|
|
const char *transport_name,
|
|
|
|
tor_addr_t *addr, uint16_t port);
|
|
|
|
|
2013-08-14 16:16:06 +02:00
|
|
|
void control_free_all(void);
|
2010-07-22 11:35:09 +02:00
|
|
|
|
|
|
|
#ifdef CONTROL_PRIVATE
|
|
|
|
/* Used only by control.c and test.c */
|
2013-06-06 23:58:28 +02:00
|
|
|
STATIC size_t write_escaped_data(const char *data, size_t len, char **out);
|
|
|
|
STATIC size_t read_escaped_data(const char *data, size_t len, char **out);
|
2010-07-22 11:35:09 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|