mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Merge branch 'maint-0.2.9' into maint-0.3.0
This commit is contained in:
commit
d792d2a14d
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
|
#ifdef __NR_getgid32
|
||||||
SCMP_SYS(getgid32),
|
SCMP_SYS(getgid32),
|
||||||
#endif
|
#endif
|
||||||
|
SCMP_SYS(getpid),
|
||||||
#ifdef __NR_getrlimit
|
#ifdef __NR_getrlimit
|
||||||
SCMP_SYS(getrlimit),
|
SCMP_SYS(getrlimit),
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user