Tor 0.4.9.3-alpha-dev
Loading...
Searching...
No Matches
nodelist.h
Go to the documentation of this file.
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 */
6
7/**
8 * \file nodelist.h
9 * \brief Header file for nodelist.c.
10 **/
11
12#ifndef TOR_NODELIST_H
13#define TOR_NODELIST_H
14
17
18#define node_assert_ok(n) STMT_BEGIN { \
19 tor_assert((n)->ri || (n)->rs); \
20 } STMT_END
21
22MOCK_DECL(node_t *, node_get_mutable_by_id,(const char *identity_digest));
23MOCK_DECL(const node_t *, node_get_by_id, (const char *identity_digest));
25 const struct ed25519_public_key_t *ed_id);
27 (const struct ed25519_public_key_t *ed_id));
28
29#define NNF_NO_WARN_UNNAMED (1u<<0)
30
31const node_t *node_get_by_hex_id(const char *identity_digest,
32 unsigned flags);
38bool nodelist_reentry_contains(const tor_addr_t *addr, uint16_t port);
40 uint16_t or_port, uint16_t dir_port);
41
42void nodelist_remove_microdesc(const char *identity_digest, microdesc_t *md);
44void nodelist_purge(void);
46
47void nodelist_free_all(void);
48void nodelist_assert_ok(void);
49
51 (const char *nickname, unsigned flags));
52void node_get_verbose_nickname(const node_t *node,
53 char *verbose_name_out);
54void node_get_verbose_nickname_by_id(const char *id_digest,
55 char *verbose_name_out);
56int node_is_dir(const node_t *node);
57int node_has_any_descriptor(const node_t *node);
59 int for_direct_connect);
60int node_get_purpose(const node_t *node);
61#define node_is_bridge(node) \
62 (node_get_purpose((node)) == ROUTER_PURPOSE_BRIDGE)
63int node_is_me(const node_t *node);
65int node_exit_policy_is_exact(const node_t *node, sa_family_t family);
68const char *node_get_nickname(const node_t *node);
69const char *node_get_platform(const node_t *node);
70void node_get_address_string(const node_t *node, char *cp, size_t len);
71long node_get_declared_uptime(const node_t *node);
73 (const node_t *node));
74int node_ed25519_id_matches(const node_t *node,
75 const struct ed25519_public_key_t *id);
77 (const node_t *node,
78 bool compatible_with_us));
79bool node_supports_v3_hsdir(const node_t *node);
85 bool need_canonical_ipv6_conn);
86bool node_supports_conflux(const node_t *node);
87
88const uint8_t *node_get_rsa_id_digest(const node_t *node);
89MOCK_DECL(smartlist_t *,node_get_link_specifier_smartlist,(const node_t *node,
90 bool direct_conn));
91void link_specifier_smartlist_free_(smartlist_t *ls_list);
92#define link_specifier_smartlist_free(ls_list) \
93 FREE_AND_NULL(smartlist_t, link_specifier_smartlist_free_, (ls_list))
94
95int node_has_ipv6_addr(const node_t *node);
96int node_has_ipv6_orport(const node_t *node);
97int node_has_ipv6_dirport(const node_t *node);
98/* Deprecated - use node_ipv6_or_preferred or node_ipv6_dir_preferred */
99#define node_ipv6_preferred(node) node_ipv6_or_preferred(node)
100int node_ipv6_or_preferred(const node_t *node);
101void node_get_prim_orport(const node_t *node, tor_addr_port_t *ap_out);
102void node_get_pref_orport(const node_t *node, tor_addr_port_t *ap_out);
103void node_get_pref_ipv6_orport(const node_t *node, tor_addr_port_t *ap_out);
104int node_ipv6_dir_preferred(const node_t *node);
105void node_get_prim_dirport(const node_t *node, tor_addr_port_t *ap_out);
106void node_get_pref_dirport(const node_t *node, tor_addr_port_t *ap_out);
107void node_get_pref_ipv6_dirport(const node_t *node, tor_addr_port_t *ap_out);
110 const node_t *node);
111
112MOCK_DECL(const smartlist_t *, nodelist_get_list, (void));
113
114/* Temporary during transition to multiple addresses. */
115void node_get_addr(const node_t *node, tor_addr_t *addr_out);
116
118void node_set_country(node_t *node);
119void nodelist_add_node_and_family(smartlist_t *nodes, const node_t *node);
120int nodes_in_same_family(const node_t *node1, const node_t *node2);
121
122const node_t *router_find_exact_exit_enclave(const char *address,
123 uint16_t port);
124int node_is_unreliable(const node_t *router, int need_uptime,
125 int need_capacity, int need_guard);
126int router_exit_policy_all_nodes_reject(const tor_addr_t *addr, uint16_t port,
127 int need_uptime);
128void router_set_status(const char *digest, int up);
130 const tor_addr_t *a2);
131
132/** router_have_minimum_dir_info tests to see if we have enough
133 * descriptor information to create circuits.
134 * If there are exits in the consensus, we wait until we have enough
135 * info to create exit paths before creating any circuits. If there are
136 * no exits in the consensus, we wait for enough info to create internal
137 * paths, and should avoid creating exit paths, as they will simply fail.
138 * We make sure we create all available circuit types at the same time. */
140
141/** Set to CONSENSUS_PATH_EXIT if there is at least one exit node
142 * in the consensus. We update this flag in compute_frac_paths_available if
143 * there is at least one relay that has an Exit flag in the consensus.
144 * Used to avoid building exit circuits when they will almost certainly fail.
145 * Set to CONSENSUS_PATH_INTERNAL if there are no exits in the consensus.
146 * (This situation typically occurs during bootstrap of a test network.)
147 * Set to CONSENSUS_PATH_UNKNOWN if we have never checked, or have
148 * reason to believe our last known value was invalid or has expired.
149 */
150typedef enum {
151 /* we haven't checked yet, or we have invalidated our previous check */
152 CONSENSUS_PATH_UNKNOWN = -1,
153 /* The consensus only has internal relays, and we should only
154 * create internal paths, circuits, streams, ... */
155 CONSENSUS_PATH_INTERNAL = 0,
156 /* The consensus has at least one exit, and can therefore (potentially)
157 * create exit and internal paths, circuits, streams, ... */
158 CONSENSUS_PATH_EXIT = 1
160
162
163void router_dir_info_changed(void);
164const char *get_dir_info_status_string(void);
166
167#ifdef NODELIST_PRIVATE
168
169STATIC int node_nickname_matches(const node_t *node, const char *nickname);
171 const node_t *node);
172STATIC int node_family_list_contains(const node_t *n1, const node_t *n2);
175 const node_t *node);
176
177#ifdef TOR_UNIT_TESTS
178
179STATIC void node_set_hsdir_index(node_t *node, const networkstatus_t *ns);
180
181#endif /* defined(TOR_UNIT_TESTS) */
182
183#endif /* defined(NODELIST_PRIVATE) */
184
185MOCK_DECL(int, get_estimated_address_per_node, (void));
186
187#endif /* !defined(TOR_NODELIST_H) */
uint16_t sa_family_t
Definition inaddr_st.h:77
STATIC bool node_has_declared_family_list(const node_t *node)
Definition nodelist.c:2157
STATIC int node_in_nickname_smartlist(const smartlist_t *lst, const node_t *node)
Definition nodelist.c:2130
STATIC int node_family_list_contains(const node_t *n1, const node_t *n2)
Definition nodelist.c:2142
node_t * node_get_mutable_by_ed25519_id(const ed25519_public_key_t *ed_id)
Definition nodelist.c:210
const node_t * node_get_by_ed25519_id(const ed25519_public_key_t *ed_id)
Definition nodelist.c:234
STATIC void node_lookup_declared_family_list(smartlist_t *out, const node_t *node)
Definition nodelist.c:2209
int node_ed25519_id_matches(const node_t *node, const ed25519_public_key_t *id)
Definition nodelist.c:1220
STATIC int node_nickname_matches(const node_t *node, const char *nickname)
Definition nodelist.c:2118
const node_t * router_find_exact_exit_enclave(const char *address, uint16_t port)
Definition nodelist.c:2361
void node_get_pref_orport(const node_t *node, tor_addr_port_t *ap_out)
Definition nodelist.c:1876
bool node_supports_establish_intro_dos_extension(const node_t *node)
Definition nodelist.c:1311
void node_get_prim_orport(const node_t *node, tor_addr_port_t *ap_out)
Definition nodelist.c:1855
int nodelist_probably_contains_address(const tor_addr_t *addr)
Definition nodelist.c:548
void node_get_verbose_nickname_by_id(const char *id_digest, char *verbose_name_out)
Definition nodelist.c:1587
const uint8_t * node_get_rsa_id_digest(const node_t *node)
Definition nodelist.c:1380
const node_t * node_get_by_id(const char *identity_digest)
Definition nodelist.c:226
void nodelist_free_all(void)
Definition nodelist.c:948
void node_get_address_string(const node_t *node, char *cp, size_t len)
Definition nodelist.c:1732
void nodelist_refresh_countries(void)
Definition nodelist.c:2086
void router_dir_info_changed(void)
Definition nodelist.c:2524
const smartlist_t * nodelist_get_list(void)
Definition nodelist.c:1072
const node_t * node_get_by_nickname(const char *nickname, unsigned flags)
Definition nodelist.c:1110
const char * node_get_platform(const node_t *node)
Definition nodelist.c:1756
int node_exit_policy_is_exact(const node_t *node, sa_family_t family)
Definition nodelist.c:1630
int router_addrs_in_same_network(const tor_addr_t *a1, const tor_addr_t *a2)
Definition nodelist.c:2096
bool node_supports_accepting_ipv6_extends(const node_t *node, bool need_canonical_ipv6_conn)
Definition nodelist.c:1349
void node_get_pref_dirport(const node_t *node, tor_addr_port_t *ap_out)
Definition nodelist.c:1979
int node_has_preferred_descriptor(const node_t *node, int for_direct_connect)
Definition nodelist.c:1534
node_t * nodelist_set_routerinfo(routerinfo_t *ri, routerinfo_t **ri_old_out)
Definition nodelist.c:579
smartlist_t * node_get_all_orports(const node_t *node)
Definition nodelist.c:1669
int node_is_me(const node_t *node)
Definition nodelist.c:1769
const char * node_get_nickname(const node_t *node)
Definition nodelist.c:1484
bool node_supports_conflux(const node_t *node)
Definition nodelist.c:1371
int node_has_any_descriptor(const node_t *node)
Definition nodelist.c:1521
void nodelist_purge(void)
Definition nodelist.c:919
node_t * nodelist_add_microdesc(microdesc_t *md)
Definition nodelist.c:635
int node_is_dir(const node_t *node)
Definition nodelist.c:1498
smartlist_t * nodelist_find_nodes_with_microdesc(const microdesc_t *md)
Definition nodelist.c:888
bool node_supports_v3_rendezvous_point(const node_t *node)
Definition nodelist.c:1296
void node_get_prim_dirport(const node_t *node, tor_addr_port_t *ap_out)
Definition nodelist.c:1956
bool node_supports_ed25519_link_authentication(const node_t *node, bool compatible_with_us)
Definition nodelist.c:1260
bool node_supports_v3_hsdir(const node_t *node)
Definition nodelist.c:1276
int node_ipv6_dir_preferred(const node_t *node)
Definition nodelist.c:1933
int router_exit_policy_all_nodes_reject(const tor_addr_t *addr, uint16_t port, int need_uptime)
Definition nodelist.c:2404
long node_get_declared_uptime(const node_t *node)
Definition nodelist.c:1746
const char * get_dir_info_status_string(void)
Definition nodelist.c:2534
int node_is_unreliable(const node_t *router, int need_uptime, int need_capacity, int need_guard)
Definition nodelist.c:2389
consensus_path_type_t router_have_consensus_path(void)
Definition nodelist.c:2514
void nodelist_add_addr_to_address_set(const tor_addr_t *addr, uint16_t or_port, uint16_t dir_port)
Definition nodelist.c:525
int node_allows_single_hop_exits(const node_t *node)
Definition nodelist.c:1602
int node_get_purpose(const node_t *node)
Definition nodelist.c:1555
void node_get_pref_ipv6_dirport(const node_t *node, tor_addr_port_t *ap_out)
Definition nodelist.c:1994
void nodelist_set_consensus(const networkstatus_t *ns)
Definition nodelist.c:715
bool nodelist_reentry_contains(const tor_addr_t *addr, uint16_t port)
Definition nodelist.c:562
node_t * node_get_mutable_by_id(const char *identity_digest)
Definition nodelist.c:197
consensus_path_type_t
Definition nodelist.h:150
void nodelist_add_node_and_family(smartlist_t *nodes, const node_t *node)
Definition nodelist.c:2285
void nodelist_remove_microdesc(const char *identity_digest, microdesc_t *md)
Definition nodelist.c:834
void node_set_country(node_t *node)
Definition nodelist.c:2065
int node_ipv6_or_preferred(const node_t *node)
Definition nodelist.c:1825
void nodelist_remove_routerinfo(routerinfo_t *ri)
Definition nodelist.c:848
void nodelist_ensure_freshness(const networkstatus_t *ns)
Definition nodelist.c:1051
const struct ed25519_public_key_t * node_get_ed25519_id(const node_t *node)
Definition nodelist.c:1175
void node_get_addr(const node_t *node, tor_addr_t *addr_out)
Definition nodelist.c:1706
const node_t * node_get_by_hex_id(const char *identity_digest, unsigned flags)
Definition nodelist.c:1083
int count_loading_descriptors_progress(void)
Definition nodelist.c:2824
void node_get_verbose_nickname(const node_t *node, char *verbose_name_out)
Definition nodelist.c:1567
bool node_supports_initiating_ipv6_extends(const node_t *node)
Definition nodelist.c:1328
void node_get_pref_ipv6_orport(const node_t *node, tor_addr_port_t *ap_out)
Definition nodelist.c:1891
int nodes_in_same_family(const node_t *node1, const node_t *node2)
Definition nodelist.c:2230
int node_has_curve25519_onion_key(const node_t *node)
Definition nodelist.c:2043
int router_have_minimum_dir_info(void)
Definition nodelist.c:2481
const struct curve25519_public_key_t * node_get_curve25519_onion_key(const node_t *node)
Definition nodelist.c:2050
void nodelist_assert_ok(void)
Definition nodelist.c:974
int node_exit_policy_rejects_all(const node_t *node)
Definition nodelist.c:1613
bool node_supports_ed25519_hs_intro(const node_t *node)
Definition nodelist.c:1286
void router_set_status(const char *digest, int up)
Definition nodelist.c:2425
#define STATIC
Definition testsupport.h:32
#define MOCK_DECL(rv, funcname, arglist)