Parcourir la source

Block the port-forwarding helper at a higher point

Nick Mathewson il y a 8 ans
Parent
commit
801aa5d03b
2 fichiers modifiés avec 6 ajouts et 1 suppressions
  1. 4 0
      src/or/config.c
  2. 2 1
      src/or/main.c

+ 4 - 0
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)

+ 2 - 1
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 */