mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
sandbox: permit listen(2)
Fix for 12115; bugfix on 0.2.5.1-alpha
This commit is contained in:
parent
14842de9a7
commit
a056ffabbb
3
changes/bug12115
Normal file
3
changes/bug12115
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
o Minor bugfixes (linux seccomp sandbox):
|
||||||
|
- Avoid crashing when re-opening listener ports with the seccomp
|
||||||
|
sandbox active. Fixes bug 12115; bugfix on 0.2.5.1-alpha.
|
@ -186,6 +186,7 @@ static int filter_nopar_gen[] = {
|
|||||||
|
|
||||||
// socket syscalls
|
// socket syscalls
|
||||||
SCMP_SYS(bind),
|
SCMP_SYS(bind),
|
||||||
|
SCMP_SYS(listen),
|
||||||
SCMP_SYS(connect),
|
SCMP_SYS(connect),
|
||||||
SCMP_SYS(getsockname),
|
SCMP_SYS(getsockname),
|
||||||
SCMP_SYS(recvmsg),
|
SCMP_SYS(recvmsg),
|
||||||
|
Loading…
Reference in New Issue
Block a user