commit 801aa5d03b3a62c7ed09e8c36629ced23e8c663a
parent eb43401bfb6d69db66d256582a99e63de7d222d8
Author: Nick Mathewson <nickm@torproject.org>
Date: Wed, 9 Aug 2017 10:48:43 -0400
Block the port-forwarding helper at a higher point
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/or/config.c b/src/or/config.c
@@ -3575,6 +3575,10 @@ options_validate(or_options_t *old_options, or_options_t *options,
REJECT("PortForwarding is not compatible with Sandbox; at most one can "
"be set");
}
+ if (options->PortForwarding && options->NoExec) {
+ COMPLAIN("Both PortForwarding and NoExec are set; PortForwarding will "
+ "be ignored.");
+ }
if (ensure_bandwidth_cap(&options->BandwidthRate,
"BandwidthRate", msg) < 0)
diff --git a/src/or/main.c b/src/or/main.c
@@ -2036,7 +2036,8 @@ check_fw_helper_app_callback(time_t now, const or_options_t *options)
{
if (net_is_disabled() ||
! server_mode(options) ||
- ! options->PortForwarding) {
+ ! options->PortForwarding ||
+ options->NoExec) {
return PERIODIC_EVENT_NO_UPDATE;
}
/* 11. check the port forwarding app */