Skip to content
Snippets Groups Projects
Commit 85ce6234 authored by David Goulet's avatar David Goulet :panda_face:
Browse files

Merge branch 'bug40802' into 'main'

resolve scary vanguard-related log msgs on dir auths

See merge request !873
parents 10c8cc58 2ee118d6
No related branches found
No related tags found
1 merge request!873resolve scary vanguard-related log msgs on dir auths
Pipeline #262175 failed
o Minor bugfixes (directory authorities):
- After we added layer-two vanguards, directory authorities wouldn't
think any of their vanguards were suitable for circuits, leading
to a "Failed to find node for hop #2 of our path. Discarding
this circuit." log message once per second from startup until
they made a fresh consensus. Now they look to their existing
consensus on startup, letting them build circuits properly from
the beginning. Fixes bug 40802; bugfix on 0.4.7.1-alpha.
......@@ -761,15 +761,21 @@ nodelist_set_consensus(const networkstatus_t *ns)
}
node_set_country(node);
/* If we're not an authdir, believe others. */
if (!authdir) {
/* Set node's flags based on rs's flags. */
{
node->is_valid = rs->is_valid;
node->is_running = rs->is_flagged_running;
node->is_fast = rs->is_fast;
node->is_stable = rs->is_stable;
node->is_possible_guard = rs->is_possible_guard;
node->is_exit = rs->is_exit;
node->is_bad_exit = rs->is_bad_exit;
if (!authdir) {
/* Authdirs treat is_bad_exit specially in that they only assign
* it when the descriptor arrives. So when a dir auth is reading
* the flags from an existing consensus, don't believe the bit
* here, else it will get stuck 'on' forever. */
node->is_bad_exit = rs->is_bad_exit;
}
node->is_hs_dir = rs->is_hs_dir;
node->ipv6_preferred = 0;
if (reachable_addr_prefer_ipv6_orport(options) &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment