mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix assert for relay/bridge state change
When we added support for separate client tls certs on bridges in
a2bb0bfdd5 we forgot to correctly initialize this when changing
from relay to bridge or vice versa while Tor is running. Fix that
by always initializing keys when the state changes.
Fixes bug 2433.
This commit is contained in:
committed by
Nick Mathewson
parent
5ed73e3807
commit
68f8ca357f
+6
-5
@@ -1250,7 +1250,6 @@ options_act(or_options_t *old_options)
|
||||
|
||||
/* Check for transitions that need action. */
|
||||
if (old_options) {
|
||||
|
||||
if ((options->UseEntryGuards && !old_options->UseEntryGuards) ||
|
||||
(options->ExcludeNodes &&
|
||||
!routerset_equal(old_options->ExcludeNodes,options->ExcludeNodes)) ||
|
||||
@@ -1298,11 +1297,12 @@ options_act(or_options_t *old_options)
|
||||
if (options_transition_affects_workers(old_options, options)) {
|
||||
log_info(LD_GENERAL,
|
||||
"Worker-related options changed. Rotating workers.");
|
||||
|
||||
if (init_keys() < 0) {
|
||||
log_warn(LD_BUG,"Error initializing keys; exiting");
|
||||
return -1;
|
||||
}
|
||||
if (server_mode(options) && !server_mode(old_options)) {
|
||||
if (init_keys() < 0) {
|
||||
log_warn(LD_BUG,"Error initializing keys; exiting");
|
||||
return -1;
|
||||
}
|
||||
ip_address_changed(0);
|
||||
if (can_complete_circuit || !any_predicted_circuits(time(NULL)))
|
||||
inform_testing_reachability();
|
||||
@@ -3810,6 +3810,7 @@ options_transition_affects_workers(or_options_t *old_options,
|
||||
new_options->ServerDNSSearchDomains ||
|
||||
old_options->SafeLogging != new_options->SafeLogging ||
|
||||
old_options->ClientOnly != new_options->ClientOnly ||
|
||||
public_server_mode(old_options) != public_server_mode(new_options) ||
|
||||
!config_lines_eq(old_options->Logs, new_options->Logs))
|
||||
return 1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user