Tor 0.4.9.13
Loading...
Searching...
No Matches
dirvote.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 dirvote.h
9 * \brief Header file for dirvote.c.
10 **/
11
12#ifndef TOR_DIRVOTE_H
13#define TOR_DIRVOTE_H
14
15/*
16 * Ideally, assuming synced clocks, we should only need 1 second for each of:
17 * - Vote
18 * - Distribute
19 * - Consensus Publication
20 * As we can gather descriptors continuously.
21 * (Could we even go as far as publishing the previous consensus,
22 * in the same second that we vote for the next one?)
23 * But we're not there yet: these are the lowest working values at this time.
24 */
25
26/** Lowest allowable value for VoteSeconds. */
27#define MIN_VOTE_SECONDS 2
28/** Lowest allowable value for VoteSeconds when TestingTorNetwork is 1 */
29#define MIN_VOTE_SECONDS_TESTING 2
30
31/** Lowest allowable value for DistSeconds. */
32#define MIN_DIST_SECONDS 2
33/** Lowest allowable value for DistSeconds when TestingTorNetwork is 1 */
34#define MIN_DIST_SECONDS_TESTING 2
35
36/** Lowest allowable voting interval. */
37#define MIN_VOTE_INTERVAL 300
38/** Lowest allowable voting interval when TestingTorNetwork is 1:
39 * Voting Interval can be:
40 * 10, 12, 15, 18, 20, 24, 25, 30, 36, 40, 45, 50, 60, ...
41 * Testing Initial Voting Interval can be:
42 * 5, 6, 8, 9, or any of the possible values for Voting Interval,
43 * as they both need to evenly divide 30 minutes.
44 * If clock desynchronisation is an issue, use an interval of at least:
45 * 18 * drift in seconds, to allow for a clock slop factor */
46#define MIN_VOTE_INTERVAL_TESTING \
47 (((MIN_VOTE_SECONDS_TESTING)+(MIN_DIST_SECONDS_TESTING)+1)*2)
48
49#define MIN_VOTE_INTERVAL_TESTING_INITIAL \
50 ((MIN_VOTE_SECONDS_TESTING)+(MIN_DIST_SECONDS_TESTING)+1)
51
52/** The lowest consensus method that we currently support. */
53#define MIN_SUPPORTED_CONSENSUS_METHOD 32
54
55/** The highest consensus method that we currently support. */
56#define MAX_SUPPORTED_CONSENSUS_METHOD 36
57
58/**
59 * Lowest consensus method for which we suppress the published time in
60 * microdescriptor consensuses.
61 */
62#define MIN_METHOD_TO_SUPPRESS_MD_PUBLISHED 33
63
64/**
65 * Lowest (supported) consensus method for which we do not include
66 * any "package" lines.
67 **/
68#define MIN_METHOD_TO_OMIT_PACKAGE_FINGERPRINTS 34
69
70/**
71 * Lowest supported consensus method for which we include `family-ids`
72 * in microdescs.
73 */
74#define MIN_METHOD_FOR_FAMILY_IDS 35
75
76/**
77 * Lowest supported consensus method for which we will generate
78 * microdescriptors without TAP keys when the corresponding router
79 * descriptors have no TAP keys.
80 */
81#define MIN_METHOD_TO_PERMIT_ABSENT_TAP_KEYS 36
82
83/** Default bandwidth to clip unmeasured bandwidths to using method >=
84 * MIN_METHOD_TO_CLIP_UNMEASURED_BW. (This is not a consensus method; do not
85 * get confused with the above macros.) */
86#define DEFAULT_MAX_UNMEASURED_BW_KB 20
87
88/* Directory Get Vote (DGV) flags for dirvote_get_vote(). */
89#define DGV_BY_ID 1
90#define DGV_INCLUDE_PENDING 2
91#define DGV_INCLUDE_PREVIOUS 4
92
93/** Maximum size of a line in a vote. */
94#define MAX_BW_FILE_HEADERS_LINE_LEN 1024
95
96extern const char DIRVOTE_UNIVERSAL_FLAGS[];
97extern const char DIRVOTE_OPTIONAL_FLAGS[];
98
99/*
100 * Public API. Used outside of the dirauth subsystem.
101 *
102 * We need to nullify them if the module is disabled.
103 */
104#ifdef HAVE_MODULE_DIRAUTH
105
106time_t dirvote_act(const or_options_t *options, time_t now);
107void dirvote_free_all(void);
108
109void dirvote_parse_sr_commits(networkstatus_t *ns, const smartlist_t *tokens);
110void dirvote_clear_commits(networkstatus_t *ns);
111void dirvote_dirreq_get_status_vote(const char *url, smartlist_t *items,
112 smartlist_t *dir_items);
113
114/* Storing signatures and votes functions */
115struct pending_vote_t * dirvote_add_vote(const char *vote_body,
116 time_t time_posted,
117 const char *where_from,
118 const char **msg_out,
119 int *status_out);
120int dirvote_add_signatures(const char *detached_signatures_body,
121 const char *source,
122 const char **msg_out);
123
124struct config_line_t;
125char *format_recommended_version_list(const struct config_line_t *line,
126 int warn);
127
128#else /* !defined(HAVE_MODULE_DIRAUTH) */
129
130static inline time_t
131dirvote_act(const or_options_t *options, time_t now)
132{
133 (void) options;
134 (void) now;
135 return TIME_MAX;
136}
137
138static inline void
140{
141}
142
143static inline void
144dirvote_parse_sr_commits(networkstatus_t *ns, const smartlist_t *tokens)
145{
146 (void) ns;
147 (void) tokens;
148}
149
150static inline void
151dirvote_clear_commits(networkstatus_t *ns)
152{
153 (void) ns;
154}
155
156static inline void
157dirvote_dirreq_get_status_vote(const char *url, smartlist_t *items,
158 smartlist_t *dir_items)
159{
160 (void) url;
161 (void) items;
162 (void) dir_items;
163}
164
165static inline struct pending_vote_t *
166dirvote_add_vote(const char *vote_body,
167 time_t time_posted,
168 const char *where_from,
169 const char **msg_out,
170 int *status_out)
171{
172 (void) vote_body;
173 (void) time_posted;
174 (void) where_from;
175 /* If the dirauth module is disabled, this should NEVER be called else we
176 * failed to safeguard the dirauth module. */
178
179 /* We need to send out an error code. */
180 *status_out = 400;
181 *msg_out = "No directory authority support";
182 return NULL;
183}
184
185static inline int
186dirvote_add_signatures(const char *detached_signatures_body,
187 const char *source,
188 const char **msg_out)
189{
190 (void) detached_signatures_body;
191 (void) source;
192 *msg_out = "No directory authority support";
193 /* If the dirauth module is disabled, this should NEVER be called else we
194 * failed to safeguard the dirauth module. */
196 return 0;
197}
198
199#endif /* defined(HAVE_MODULE_DIRAUTH) */
200
201/* Item access */
203 (consensus_flavor_t flav));
205 (const routerinfo_t *ri));
207const cached_dir_t *dirvote_get_vote(const char *fp, int flags);
208
209/*
210 * API used _only_ by the dirauth subsystem.
211 */
212
215 authority_cert_t *cert);
216
218 const routerinfo_t *ri,
219 time_t now,
220 smartlist_t *microdescriptors_out);
221
222/*
223 * Exposed functions for unit tests.
224 */
225#ifdef DIRVOTE_PRIVATE
226
227/* Cert manipulation */
230 const smartlist_t *param_list,
231 const char *keyword,
232 int32_t default_val);
234 networkstatus_t *v3_ns);
236 int total_authorities);
238STATIC char *make_consensus_method_list(int low, int high, const char *sep);
239STATIC int
241 int64_t M, int64_t E, int64_t D,
242 int64_t T, int64_t weight_scale);
243STATIC
245 int total_authorities,
246 crypto_pk_t *identity_key,
247 crypto_pk_t *signing_key,
248 const char *legacy_identity_key_digest,
250 consensus_flavor_t flavor);
251STATIC
254 const char *source,
255 int severity,
256 const char **msg_out);
257STATIC int
259 const routerinfo_t *second);
260STATIC
261int compare_routerinfo_by_ipv4(const void **a, const void **b);
262
263STATIC
264int compare_routerinfo_by_ipv6(const void **a, const void **b);
265
266STATIC
267digestmap_t * get_sybil_list_by_ip_version(
268 const smartlist_t *routers, sa_family_t family);
269
270STATIC
271digestmap_t * get_all_possible_sybil(const smartlist_t *routers);
272
273STATIC
276 int consensus_method);
277
278#endif /* defined(DIRVOTE_PRIVATE) */
279
280#endif /* !defined(TOR_DIRVOTE_H) */
STATIC microdesc_t * dirvote_create_microdescriptor(const routerinfo_t *ri, int consensus_method)
Definition dirvote.c:3917
STATIC int compare_routerinfo_usefulness(const routerinfo_t *first, const routerinfo_t *second)
Definition dirvote.c:4365
pending_vote_t * dirvote_add_vote(const char *vote_body, time_t time_posted, const char *where_from, const char **msg_out, int *status_out)
Definition dirvote.c:3206
char * format_recommended_version_list(const config_line_t *ln, int warn)
Definition dirvote.c:4519
STATIC authority_cert_t * authority_cert_dup(authority_cert_t *cert)
Definition dirvote.c:149
STATIC int compare_routerinfo_by_ipv6(const void **a, const void **b)
Definition dirvote.c:4346
STATIC char * make_consensus_method_list(int low, int high, const char *separator)
Definition dirvote.c:845
STATIC digestmap_t * get_all_possible_sybil(const smartlist_t *routers)
Definition dirvote.c:4455
time_t dirvote_act(const or_options_t *options, time_t now)
Definition dirvote.c:2883
STATIC char * format_networkstatus_vote(crypto_pk_t *private_signing_key, networkstatus_t *v3_ns)
Definition dirvote.c:226
STATIC int32_t dirvote_get_intermediate_param_value(const smartlist_t *param_list, const char *keyword, int32_t default_val)
Definition dirvote.c:894
void dirvote_free_all(void)
Definition dirvote.c:3824
STATIC smartlist_t * dirvote_compute_params(smartlist_t *votes, int method, int total_authorities)
Definition dirvote.c:930
int dirvote_add_signatures(const char *detached_signatures_body, const char *source, const char **msg)
Definition dirvote.c:3771
STATIC char * networkstatus_get_detached_signatures(smartlist_t *consensuses)
Definition dirvote.c:2773
int networkstatus_compute_bw_weights_v10(smartlist_t *chunks, int64_t G, int64_t M, int64_t E, int64_t D, int64_t T, int64_t weight_scale)
Definition dirvote.c:1106
STATIC int networkstatus_add_detached_signatures(networkstatus_t *target, ns_detached_signatures_t *sigs, const char *source, int severity, const char **msg_out)
Definition dirvote.c:2581
STATIC char * compute_consensus_package_lines(smartlist_t *votes)
Definition dirvote.c:2500
STATIC digestmap_t * get_sybil_list_by_ip_version(const smartlist_t *routers, sa_family_t family)
Definition dirvote.c:4415
STATIC int compare_routerinfo_by_ipv4(const void **a, const void **b)
Definition dirvote.c:4328
STATIC char * networkstatus_compute_consensus(smartlist_t *votes, int total_authorities, crypto_pk_t *identity_key, crypto_pk_t *signing_key, const char *legacy_id_key_digest, crypto_pk_t *legacy_signing_key, consensus_flavor_t flavor)
Definition dirvote.c:1526
networkstatus_t * dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, authority_cert_t *cert)
Definition dirvote.c:4655
const cached_dir_t * dirvote_get_vote(const char *fp, int flags)
Definition dirvote.c:3871
const char * dirvote_get_pending_consensus(consensus_flavor_t flav)
Definition dirvote.c:3848
uint32_t dirserv_get_bandwidth_for_router_kb(const routerinfo_t *ri)
Definition dirvote.c:4280
const char DIRVOTE_OPTIONAL_FLAGS[]
Definition dirvote.c:4647
const char * dirvote_get_pending_detached_signatures(void)
Definition dirvote.c:3857
const char DIRVOTE_UNIVERSAL_FLAGS[]
Definition dirvote.c:4634
vote_microdesc_hash_t * dirvote_format_all_microdesc_vote_lines(const routerinfo_t *ri, time_t now, smartlist_t *microdescriptors_out)
Definition dirvote.c:4080
uint16_t sa_family_t
Definition inaddr_st.h:77
consensus_flavor_t
Definition or.h:866
#define T(s, t, a, o)
static crypto_pk_t * legacy_signing_key
Definition router.c:131
#define STATIC
Definition testsupport.h:32
#define MOCK_DECL(rv, funcname, arglist)
#define tor_assert_nonfatal_unreached()
Definition util_bug.h:177