mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Also disable spawning on Sandbox.
This isn't a functional change, but it makes our logic more clear, and catches bugs earlier.
This commit is contained in:
parent
b4963da987
commit
a0bb1ff6ab
@ -1,5 +1,6 @@
|
|||||||
o Minor features (integration, hardening):
|
o Minor features (integration, hardening):
|
||||||
- Added a new NoExec option to . When this option is set to 1,
|
- Added a new NoExec option, to prevent Tor from running
|
||||||
|
other programs. When this option is set to 1,
|
||||||
Tor will never try to run another program, regardless of
|
Tor will never try to run another program, regardless of
|
||||||
the settings of PortForwardingHelper, ClientTransportPlugin,
|
the settings of PortForwardingHelper, ClientTransportPlugin,
|
||||||
or ServerTransportPlugin. Once NoExec is set, it cannot be
|
or ServerTransportPlugin. Once NoExec is set, it cannot be
|
||||||
|
@ -1596,7 +1596,7 @@ options_act(const or_options_t *old_options)
|
|||||||
const int transition_affects_guards =
|
const int transition_affects_guards =
|
||||||
old_options && options_transition_affects_guards(old_options, options);
|
old_options && options_transition_affects_guards(old_options, options);
|
||||||
|
|
||||||
if (options->NoExec) {
|
if (options->NoExec || options->Sandbox) {
|
||||||
tor_disable_spawning_background_processes();
|
tor_disable_spawning_background_processes();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user