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-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
9 * \brief Header file for circuituse.c.
12 #ifndef TOR_CIRCUITUSE_H
13 #define TOR_CIRCUITUSE_H
15 void circuit_expire_building(void);
16 void circuit_expire_waiting_for_better_guard(void);
17 void circuit_remove_handled_ports(smartlist_t
*needed_ports
);
18 int circuit_stream_is_being_handled(entry_connection_t
*conn
, uint16_t port
,
20 void circuit_log_ancient_one_hop_circuits(int age
);
22 int circuit_conforms_to_options(const origin_circuit_t
*circ
,
23 const or_options_t
*options
);
25 void circuit_build_needed_circs(time_t now
);
26 void circuit_expire_old_circs_as_needed(time_t now
);
27 void circuit_detach_stream(circuit_t
*circ
, edge_connection_t
*conn
);
29 void circuit_expire_old_circuits_serverside(time_t now
);
31 void reset_bandwidth_test(void);
32 int circuit_enough_testing_circs(void);
34 void circuit_has_opened(origin_circuit_t
*circ
);
35 void circuit_try_attaching_streams(origin_circuit_t
*circ
);
36 void circuit_build_failed(origin_circuit_t
*circ
);
38 /** Flag to set when a circuit should have only a single hop. */
39 #define CIRCLAUNCH_ONEHOP_TUNNEL (1<<0)
40 /** Flag to set when a circuit needs to be built of high-uptime nodes */
41 #define CIRCLAUNCH_NEED_UPTIME (1<<1)
42 /** Flag to set when a circuit needs to be built of high-capacity nodes */
43 #define CIRCLAUNCH_NEED_CAPACITY (1<<2)
44 /** Flag to set when the last hop of a circuit doesn't need to be an
46 #define CIRCLAUNCH_IS_INTERNAL (1<<3)
47 /** Flag to set when we are trying to launch a v3 rendezvous circuit. We need
48 * to apply some additional filters on the node picked. */
49 #define CIRCLAUNCH_IS_V3_RP (1<<4)
50 /** Flag to set when we are trying to launch a self-testing circuit to our
51 * IPv6 ORPort. We need to apply some additional filters on the second-last
52 * node in the circuit. (We are both the client and the last node in the
54 #define CIRCLAUNCH_IS_IPV6_SELFTEST (1<<5)
56 origin_circuit_t
*circuit_launch_by_extend_info(uint8_t purpose
,
59 origin_circuit_t
*circuit_launch(uint8_t purpose
, int flags
);
60 void circuit_reset_failure_count(int timeout
);
61 int connection_ap_handshake_attach_chosen_circuit(entry_connection_t
*conn
,
62 origin_circuit_t
*circ
,
64 int connection_ap_handshake_attach_circuit(entry_connection_t
*conn
);
66 void circuit_change_purpose(circuit_t
*circ
, uint8_t new_purpose
);
68 int hostname_in_track_host_exits(const or_options_t
*options
,
70 void mark_circuit_unusable_for_new_conns(origin_circuit_t
*circ
);
72 int circuit_purpose_is_hidden_service(uint8_t);
74 /* Series of helper functions for hidden services. */
75 bool circuit_purpose_is_hs_client(const uint8_t purpose
);
76 bool circuit_purpose_is_hs_service(const uint8_t purpose
);
77 bool circuit_purpose_is_hs_vanguards(const uint8_t purpose
);
79 bool circuit_is_hs_v3(const circuit_t
*circ
);
81 int circuit_should_use_vanguards(uint8_t);
82 void circuit_sent_valid_data(origin_circuit_t
*circ
, uint16_t relay_body_len
);
83 void circuit_read_valid_data(origin_circuit_t
*circ
, uint16_t relay_body_len
);
86 /* Used only by circuituse.c and test_circuituse.c */
88 STATIC
int circuit_is_available_for_use(const circuit_t
*circ
);
90 STATIC
int needs_exit_circuits(time_t now
,
91 int *port_needs_uptime
,
92 int *port_needs_capacity
);
93 STATIC
int needs_hs_server_circuits(time_t now
,
94 int num_uptime_internal
);
96 STATIC
int needs_hs_client_circuits(time_t now
,
100 int num_uptime_internal
);
102 STATIC
int needs_circuits_for_build(int num
);
104 #endif /* defined(TOR_UNIT_TESTS) */
106 #endif /* !defined(TOR_CIRCUITUSE_H) */