diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-07-12 21:39:57 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-07-12 21:39:57 +0200 |
commit | 11bebb97a99321fe5e62f590062096424f45ac6c (patch) | |
tree | 1fc9d3f2a0e27636ecdc2d3e33e17b1ca1439888 /src | |
parent | 834cbc6de27447d1fac05040fc4974e390685759 (diff) |
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/pseccomp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pseccomp.c b/src/pseccomp.c index 3369940..678cf4d 100644 --- a/src/pseccomp.c +++ b/src/pseccomp.c @@ -92,7 +92,8 @@ static const int default_allowed_syscalls[] = { SCMP_SYS(rt_sigaction), SCMP_SYS(time), SCMP_SYS(nanosleep), SCMP_SYS(clock_gettime), SCMP_SYS(set_tid_address), SCMP_SYS(exit), SCMP_SYS(exit_group), - SCMP_SYS(read), SCMP_SYS(readv), SCMP_SYS(write), SCMP_SYS(writev), + SCMP_SYS(read), SCMP_SYS(readv), SCMP_SYS(preadv), SCMP_SYS(preadv2), SCMP_SYS(pread64), + SCMP_SYS(write), SCMP_SYS(writev), SCMP_SYS(pwritev), SCMP_SYS(pwritev2), SCMP_SYS(pwrite64), SCMP_SYS(process_vm_readv), SCMP_SYS(process_vm_writev), SCMP_SYS(fcntl), SCMP_SYS(fcntl64), SCMP_SYS(close), SCMP_SYS(wait4), |