summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sandbox-seccomp-filter.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 12c4ee130..bcea77997 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -166,6 +166,9 @@ static const struct sock_filter preauth_insns[] = {
166#ifdef __NR_exit_group 166#ifdef __NR_exit_group
167 SC_ALLOW(__NR_exit_group), 167 SC_ALLOW(__NR_exit_group),
168#endif 168#endif
169#if defined(__NR_flock) && defined(__s390__)
170 SC_ALLOW(__NR_flock),
171#endif
169#ifdef __NR_geteuid 172#ifdef __NR_geteuid
170 SC_ALLOW(__NR_geteuid), 173 SC_ALLOW(__NR_geteuid),
171#endif 174#endif
@@ -190,6 +193,9 @@ static const struct sock_filter preauth_insns[] = {
190#ifdef __NR_getuid32 193#ifdef __NR_getuid32
191 SC_ALLOW(__NR_getuid32), 194 SC_ALLOW(__NR_getuid32),
192#endif 195#endif
196#if defined(__NR_ipc) && defined(__s390__)
197 SC_ALLOW(__NR_ipc),
198#endif
193#ifdef __NR_madvise 199#ifdef __NR_madvise
194 SC_ALLOW(__NR_madvise), 200 SC_ALLOW(__NR_madvise),
195#endif 201#endif