mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
base-linux: let seccomp permit 'read'
This is needed for using the 'wait_for_continue' debug mechanism. Fixes #3798
This commit is contained in:
parent
0e6c32f75e
commit
0310c733d5
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -99,6 +99,9 @@ class Filter
|
||||
_add_allow_rule(SCMP_SYS(fstat));
|
||||
_add_allow_rule(SCMP_SYS(fstat64));
|
||||
|
||||
/* This syscall is used by the 'wait_for_continue' debug mechanism. */
|
||||
_add_allow_rule(SCMP_SYS(read));
|
||||
|
||||
/* This syscall is used to wait for a condition. This should be safe. */
|
||||
_add_allow_rule(SCMP_SYS(futex));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user