diff options
author | David Goulet <dgoulet@torproject.org> | 2023-07-20 14:40:13 +0000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2023-07-20 14:40:13 +0000 |
commit | e6a9e006907cddf380d3c528757e1d41c4171884 (patch) | |
tree | 8dcc5cfa92763072ebff48987c2e418e65e190a0 /src/feature | |
parent | 6e43a27eb64f3bd7af7c4a5a4271e4cd417932b8 (diff) | |
parent | 1901720fb92291daf71efbe848a94f27a629f180 (diff) | |
download | tor-e6a9e006907cddf380d3c528757e1d41c4171884.tar.gz tor-e6a9e006907cddf380d3c528757e1d41c4171884.zip |
Merge branch 'warn-bridge-exit' into 'main'
Warn when operating as bridge and exit
Closes #40819
See merge request tpo/core/tor!730
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/relay/relay_config.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/feature/relay/relay_config.c b/src/feature/relay/relay_config.c index 553b269ecf..0b02461318 100644 --- a/src/feature/relay/relay_config.c +++ b/src/feature/relay/relay_config.c @@ -30,6 +30,7 @@ #include "core/mainloop/cpuworker.h" #include "core/mainloop/mainloop.h" #include "core/or/connection_or.h" +#include "core/or/policies.h" #include "core/or/port_cfg_st.h" #include "feature/hibernate/hibernate.h" @@ -1150,6 +1151,13 @@ options_validate_relay_mode(const or_options_t *old_options, REJECT("BridgeRelay is 1, ORPort is not set. This is an invalid " "combination."); + if (options->BridgeRelay == 1 && (options->ExitRelay == 1 || + !policy_using_default_exit_options(options))) { + log_warn(LD_CONFIG, "BridgeRelay is 1, but ExitRelay is 1 or an " + "ExitPolicy is configured. Tor will start, but it will not " + "function as an exit relay."); + } + if (server_mode(options)) { char *dircache_msg = NULL; if (have_enough_mem_for_dircache(options, 0, &dircache_msg)) { |