diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-13 13:14:54 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-24 07:49:39 -0500 |
commit | 90524de0b268a76665fbe9ddce4878b10c9389c4 (patch) | |
tree | 1261d1f6b6c7acc5c7b6778bbd7bb7b43649ed68 /src/lib/llharden/lib_llharden.md | |
parent | 691d271b2e2e4d3f7c80a86f6de59f016171b8ea (diff) | |
download | tor-90524de0b268a76665fbe9ddce4878b10c9389c4.tar.gz tor-90524de0b268a76665fbe9ddce4878b10c9389c4.zip |
Move winprocess_sys into a new low-level hardening module
This code was in our process module, but it doesn't belong there:
process is for launching and monitoring subprocesses, not for
hardening the current process.
This change lets us have our subsystem init order more closely match
our dependency order.
Diffstat (limited to 'src/lib/llharden/lib_llharden.md')
-rw-r--r-- | src/lib/llharden/lib_llharden.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/llharden/lib_llharden.md b/src/lib/llharden/lib_llharden.md new file mode 100644 index 0000000000..69e9af5327 --- /dev/null +++ b/src/lib/llharden/lib_llharden.md @@ -0,0 +1,6 @@ +@dir /lib/llharden +@brief lib/llharden: low-level unconditional process hardening + +This module contains process hardening code that we want to run before any +other code, including configuration. It needs to be self-contained, since +nothing else will be initialized at this point. |