Add "Heartbeat" to the start of several heartbeat messages.
[tor.git] / src / core / or / connection_edge.h
blob966a9391d89a212d532f1eedd4211511d5700fa4
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 */
7 /**
8 * \file connection_edge.h
9 * \brief Header file for connection_edge.c.
10 **/
12 #ifndef TOR_CONNECTION_EDGE_H
13 #define TOR_CONNECTION_EDGE_H
15 #include "lib/testsupport/testsupport.h"
17 #include "feature/hs/hs_service.h"
19 edge_connection_t *TO_EDGE_CONN(connection_t *);
20 entry_connection_t *TO_ENTRY_CONN(connection_t *);
21 entry_connection_t *EDGE_TO_ENTRY_CONN(edge_connection_t *);
23 const edge_connection_t *CONST_TO_EDGE_CONN(const connection_t *);
24 const entry_connection_t *CONST_TO_ENTRY_CONN(const connection_t *);
25 const entry_connection_t *CONST_EDGE_TO_ENTRY_CONN(const edge_connection_t *);
27 #define EXIT_CONN_STATE_MIN_ 1
28 /** State for an exit connection: waiting for response from DNS farm. */
29 #define EXIT_CONN_STATE_RESOLVING 1
30 /** State for an exit connection: waiting for connect() to finish. */
31 #define EXIT_CONN_STATE_CONNECTING 2
32 /** State for an exit connection: open and ready to transmit data. */
33 #define EXIT_CONN_STATE_OPEN 3
34 /** State for an exit connection: waiting to be removed. */
35 #define EXIT_CONN_STATE_RESOLVEFAILED 4
36 #define EXIT_CONN_STATE_MAX_ 4
38 /* The AP state values must be disjoint from the EXIT state values. */
39 #define AP_CONN_STATE_MIN_ 5
40 /** State for a SOCKS connection: waiting for SOCKS request. */
41 #define AP_CONN_STATE_SOCKS_WAIT 5
42 /** State for a SOCKS connection: got a y.onion URL; waiting to receive
43 * rendezvous descriptor. */
44 #define AP_CONN_STATE_RENDDESC_WAIT 6
45 /** The controller will attach this connection to a circuit; it isn't our
46 * job to do so. */
47 #define AP_CONN_STATE_CONTROLLER_WAIT 7
48 /** State for a SOCKS connection: waiting for a completed circuit. */
49 #define AP_CONN_STATE_CIRCUIT_WAIT 8
50 /** State for a SOCKS connection: sent BEGIN, waiting for CONNECTED. */
51 #define AP_CONN_STATE_CONNECT_WAIT 9
52 /** State for a SOCKS connection: sent RESOLVE, waiting for RESOLVED. */
53 #define AP_CONN_STATE_RESOLVE_WAIT 10
54 /** State for a SOCKS connection: ready to send and receive. */
55 #define AP_CONN_STATE_OPEN 11
56 /** State for a transparent natd connection: waiting for original
57 * destination. */
58 #define AP_CONN_STATE_NATD_WAIT 12
59 /** State for an HTTP tunnel: waiting for an HTTP CONNECT command. */
60 #define AP_CONN_STATE_HTTP_CONNECT_WAIT 13
61 #define AP_CONN_STATE_MAX_ 13
63 #define EXIT_PURPOSE_MIN_ 1
64 /** This exit stream wants to do an ordinary connect. */
65 #define EXIT_PURPOSE_CONNECT 1
66 /** This exit stream wants to do a resolve (either normal or reverse). */
67 #define EXIT_PURPOSE_RESOLVE 2
68 #define EXIT_PURPOSE_MAX_ 2
70 /** True iff the AP_CONN_STATE_* value <b>s</b> means that the corresponding
71 * edge connection is not attached to any circuit. */
72 #define AP_CONN_STATE_IS_UNATTACHED(s) \
73 ((s) <= AP_CONN_STATE_CIRCUIT_WAIT || (s) == AP_CONN_STATE_NATD_WAIT)
75 #define connection_mark_unattached_ap(conn, endreason) \
76 connection_mark_unattached_ap_((conn), (endreason), __LINE__, SHORT_FILE__)
78 /** Possible return values for parse_extended_hostname. */
79 typedef enum hostname_type_t {
80 BAD_HOSTNAME,
81 EXIT_HOSTNAME,
82 NORMAL_HOSTNAME,
83 ONION_V3_HOSTNAME,
84 } hostname_type_t;
86 MOCK_DECL(void,connection_mark_unattached_ap_,
87 (entry_connection_t *conn, int endreason,
88 int line, const char *file));
89 int connection_edge_reached_eof(edge_connection_t *conn);
90 int connection_edge_process_inbuf(edge_connection_t *conn,
91 int package_partial);
92 int connection_edge_destroy(circid_t circ_id, edge_connection_t *conn);
93 int connection_edge_end(edge_connection_t *conn, uint8_t reason);
94 int connection_edge_end_errno(edge_connection_t *conn);
95 void connection_edge_end_close(edge_connection_t *conn, uint8_t reason);
96 int connection_edge_flushed_some(edge_connection_t *conn);
97 int connection_edge_finished_flushing(edge_connection_t *conn);
98 int connection_edge_finished_connecting(edge_connection_t *conn);
100 void connection_entry_set_controller_wait(entry_connection_t *conn);
102 void connection_ap_about_to_close(entry_connection_t *edge_conn);
103 void connection_exit_about_to_close(edge_connection_t *edge_conn);
105 MOCK_DECL(int,
106 connection_ap_handshake_send_begin,(entry_connection_t *ap_conn));
107 int connection_ap_handshake_send_resolve(entry_connection_t *ap_conn);
109 entry_connection_t *connection_ap_make_link(connection_t *partner,
110 char *address, uint16_t port,
111 const char *digest,
112 int session_group,
113 int isolation_flags,
114 int use_begindir, int want_onehop);
115 void connection_ap_handshake_socks_reply(entry_connection_t *conn, char *reply,
116 size_t replylen,
117 int endreason);
118 MOCK_DECL(void,connection_ap_handshake_socks_resolved,
119 (entry_connection_t *conn,
120 int answer_type,
121 size_t answer_len,
122 const uint8_t *answer,
123 int ttl,
124 time_t expires));
125 void connection_ap_handshake_socks_resolved_addr(entry_connection_t *conn,
126 const tor_addr_t *answer,
127 int ttl,
128 time_t expires);
130 int connection_exit_begin_conn(cell_t *cell, circuit_t *circ);
131 int connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ);
132 void connection_exit_connect(edge_connection_t *conn);
133 int connection_edge_is_rendezvous_stream(const edge_connection_t *conn);
134 int connection_ap_can_use_exit(const entry_connection_t *conn,
135 const node_t *exit);
136 void connection_ap_expire_beginning(void);
137 void connection_ap_rescan_and_attach_pending(void);
138 void connection_ap_attach_pending(int retry);
139 void connection_ap_mark_as_pending_circuit_(entry_connection_t *entry_conn,
140 const char *file, int line);
141 #define connection_ap_mark_as_pending_circuit(c) \
142 connection_ap_mark_as_pending_circuit_((c), __FILE__, __LINE__)
143 void connection_ap_mark_as_non_pending_circuit(entry_connection_t *entry_conn);
144 void connection_ap_mark_as_waiting_for_renddesc(
145 entry_connection_t *entry_conn);
147 #define CONNECTION_AP_EXPECT_NONPENDING(c) do { \
148 if (ENTRY_TO_CONN(c)->state == AP_CONN_STATE_CIRCUIT_WAIT) { \
149 log_warn(LD_BUG, "At %s:%d: %p was unexpectedly in circuit_wait.", \
150 __FILE__, __LINE__, (c)); \
151 connection_ap_mark_as_non_pending_circuit(c); \
153 } while (0)
154 void connection_ap_fail_onehop(const char *failed_digest,
155 cpath_build_state_t *build_state);
156 void circuit_discard_optional_exit_enclaves(extend_info_t *info);
157 int connection_ap_detach_retriable(entry_connection_t *conn,
158 origin_circuit_t *circ,
159 int reason);
160 int connection_ap_process_transparent(entry_connection_t *conn);
162 int address_is_invalid_destination(const char *address, int client);
164 MOCK_DECL(int, connection_ap_rewrite_and_attach_if_allowed,
165 (entry_connection_t *conn,
166 origin_circuit_t *circ,
167 crypt_path_t *cpath));
168 int connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
169 origin_circuit_t *circ,
170 crypt_path_t *cpath);
172 #if defined(HAVE_NET_IF_H) && defined(HAVE_NET_PFVAR_H)
173 int get_pf_socket(void);
174 #endif
176 int connection_edge_compatible_with_circuit(const entry_connection_t *conn,
177 const origin_circuit_t *circ);
178 int connection_edge_update_circuit_isolation(const entry_connection_t *conn,
179 origin_circuit_t *circ,
180 int dry_run);
181 void circuit_clear_isolation(origin_circuit_t *circ);
182 streamid_t get_unique_stream_id_by_circ(origin_circuit_t *circ);
184 void connection_edge_free_all(void);
186 void connection_ap_warn_and_unmark_if_pending_circ(
187 entry_connection_t *entry_conn,
188 const char *where);
190 /** Lowest value for DNS ttl that a server should give or a client should
191 * believe. */
192 #define MIN_DNS_TTL (5*60)
193 /** Highest value for DNS ttl that a server should give or a client should
194 * believe. */
195 #define MAX_DNS_TTL (60*60)
196 /** How long do we keep DNS cache entries before purging them (regardless of
197 * their TTL)? */
198 #define MAX_DNS_ENTRY_AGE (3*60*60)
199 /** How long do we cache/tell clients to cache DNS records when no TTL is
200 * known? */
201 #define DEFAULT_DNS_TTL (30*60)
203 uint32_t clip_dns_ttl(uint32_t ttl);
205 int connection_half_edge_is_valid_data(const smartlist_t *half_conns,
206 streamid_t stream_id);
207 int connection_half_edge_is_valid_sendme(const smartlist_t *half_conns,
208 streamid_t stream_id);
209 int connection_half_edge_is_valid_connected(const smartlist_t *half_conns,
210 streamid_t stream_id);
211 int connection_half_edge_is_valid_end(smartlist_t *half_conns,
212 streamid_t stream_id);
213 int connection_half_edge_is_valid_resolved(smartlist_t *half_conns,
214 streamid_t stream_id);
216 size_t half_streams_get_total_allocation(void);
217 struct half_edge_t;
218 void half_edge_free_(struct half_edge_t *he);
219 #define half_edge_free(he) \
220 FREE_AND_NULL(half_edge_t, half_edge_free_, (he))
222 /** @name Begin-cell flags
224 * These flags are used in RELAY_BEGIN cells to change the default behavior
225 * of the cell.
227 * @{
229 /** When this flag is set, the client is willing to get connected to IPv6
230 * addresses */
231 #define BEGIN_FLAG_IPV6_OK (1u<<0)
232 /** When this flag is set, the client DOES NOT support connecting to IPv4
233 * addresses. (The sense of this flag is inverted from IPV6_OK, so that the
234 * old default behavior of Tor is equivalent to having all flags set to 0.)
236 #define BEGIN_FLAG_IPV4_NOT_OK (1u<<1)
237 /** When this flag is set, if we find both an IPv4 and an IPv6 address,
238 * we use the IPv6 address. Otherwise we use the IPv4 address. */
239 #define BEGIN_FLAG_IPV6_PREFERRED (1u<<2)
240 /**@}*/
242 #ifdef CONNECTION_EDGE_PRIVATE
244 STATIC bool parse_extended_hostname(char *address, hostname_type_t *type_out);
246 /** A parsed BEGIN or BEGIN_DIR cell */
247 typedef struct begin_cell_t {
248 /** The address the client has asked us to connect to, or NULL if this is
249 * a BEGIN_DIR cell*/
250 char *address;
251 /** The flags specified in the BEGIN cell's body. One or more of
252 * BEGIN_FLAG_*. */
253 uint32_t flags;
254 /** The client's requested port. */
255 uint16_t port;
256 /** The client's requested Stream ID */
257 uint16_t stream_id;
258 /** True iff this is a BEGIN_DIR cell. */
259 unsigned is_begindir : 1;
260 } begin_cell_t;
262 STATIC int begin_cell_parse(const cell_t *cell, begin_cell_t *bcell,
263 uint8_t *end_reason_out);
264 STATIC int connected_cell_format_payload(uint8_t *payload_out,
265 const tor_addr_t *addr,
266 uint32_t ttl);
268 typedef struct {
269 /** Original address, after we lowercased it but before we started
270 * mapping it.
272 char orig_address[MAX_SOCKS_ADDR_LEN];
273 /** True iff the address has been automatically remapped to a local
274 * address in VirtualAddrNetwork. (Only set true when we do a resolve
275 * and get a virtual address; not when we connect to the address.) */
276 int automap;
277 /** If this connection has a .exit address, who put it there? */
278 addressmap_entry_source_t exit_source;
279 /** If we've rewritten the address, when does this map expire? */
280 time_t map_expires;
281 /** If we should close the connection, this is the end_reason to pass
282 * to connection_mark_unattached_ap */
283 int end_reason;
284 /** True iff we should close the connection, either because of error or
285 * because of successful early RESOLVED reply. */
286 int should_close;
287 } rewrite_result_t;
289 STATIC void connection_ap_handshake_rewrite(entry_connection_t *conn,
290 rewrite_result_t *out);
292 STATIC int connection_ap_process_http_connect(entry_connection_t *conn);
293 STATIC void export_hs_client_circuit_id(edge_connection_t *edge_conn,
294 hs_circuit_id_protocol_t protocol);
296 struct half_edge_t;
297 STATIC void connection_half_edge_add(const edge_connection_t *conn,
298 origin_circuit_t *circ);
299 STATIC struct half_edge_t *connection_half_edge_find_stream_id(
300 const smartlist_t *half_conns,
301 streamid_t stream_id);
302 #endif /* defined(CONNECTION_EDGE_PRIVATE) */
304 #endif /* !defined(TOR_CONNECTION_EDGE_H) */