mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'maint-0.3.0'
This commit is contained in:
commit
35025ee51f
6
changes/bug21943
Normal file
6
changes/bug21943
Normal file
@ -0,0 +1,6 @@
|
||||
o Minor bugfixes (Linux seccomp2 sandbox):
|
||||
- The getpid() system call is now permitted under the Linux seccomp2
|
||||
sandbox, to avoid crashing with versions of OpenSSL (and other
|
||||
libraries) that attempt to learn the process's PID by using the
|
||||
syscall rather than the VDSO code. Fixes bug 21943; bugfix on
|
||||
0.2.5.1-alpha.
|
@ -155,6 +155,7 @@ static int filter_nopar_gen[] = {
|
||||
#ifdef __NR_getgid32
|
||||
SCMP_SYS(getgid32),
|
||||
#endif
|
||||
SCMP_SYS(getpid),
|
||||
#ifdef __NR_getrlimit
|
||||
SCMP_SYS(getrlimit),
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user