mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
sandbox: Permit access to stats/dirreq-stats
This prevents a crash when rotating logs with dirreq-stats enabled fixes 12035; bugfix on 0.2.5.1-alpha.
This commit is contained in:
parent
0b2b5b7606
commit
f87071f49e
4
changes/12032
Normal file
4
changes/12032
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (linux syscall sandbox):
|
||||
- Avoid crash when running with sandboxing enabled and
|
||||
DirReqStatistics not disabled. Fixes bug 12035; bugfix on
|
||||
0.2.5.1-alpha.
|
@ -2836,6 +2836,8 @@ sandbox_init_filter(void)
|
||||
get_datadir_fname2("keys", "secret_id_key.tmp"),
|
||||
get_datadir_fname2("stats", "bridge-stats"),
|
||||
get_datadir_fname2("stats", "bridge-stats.tmp"),
|
||||
get_datadir_fname2("stats", "dirreq-stats"),
|
||||
get_datadir_fname2("stats", "dirreq-stats.tmp"),
|
||||
get_datadir_fname("fingerprint"),
|
||||
get_datadir_fname("fingerprint.tmp"),
|
||||
get_datadir_fname("hashed-fingerprint"),
|
||||
@ -2853,6 +2855,7 @@ sandbox_init_filter(void)
|
||||
RENAME_SUFFIX2("keys", "secret_onion_key", ".tmp");
|
||||
RENAME_SUFFIX2("keys", "secret_onion_key.old", ".tmp");
|
||||
RENAME_SUFFIX2("stats", "bridge-stats", ".tmp");
|
||||
RENAME_SUFFIX2("stats", "dirreq-stats", ".tmp");
|
||||
RENAME_SUFFIX("hashed-fingerprint", ".tmp");
|
||||
RENAME_SUFFIX("router-stability", ".tmp");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user