summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Barretto <ebarretto@linux.vnet.ibm.com>2017-05-09 10:53:04 -0300
committerColin Watson <cjwatson@debian.org>2017-10-04 13:54:48 +0100
commita5a99443e190a90eb511215aa7c1fa940f79b901 (patch)
treeec58ea323313e304e9ead855f7d208277cbfe013
parent6c2e9847f608cc9c36236eecc58241cd3358dd5b (diff)
Allow flock and ipc syscall for s390 architecture
In order to use the OpenSSL-ibmpkcs11 engine it is needed to allow flock and ipc calls, because this engine calls OpenCryptoki (a PKCS#11 implementation) which calls the libraries that will communicate with the crypto cards. OpenCryptoki makes use of flock and ipc and, as of now, this is only need on s390 architecture. Signed-off-by: Eduardo Barretto <ebarretto@linux.vnet.ibm.com> Origin: other, https://bugzilla.mindrot.org/show_bug.cgi?id=2752 Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=2752 Bug-Ubuntu: https://bugs.launchpad.net/bugs/1686618 Last-Update: 2017-08-28 Patch-Name: seccomp-s390-flock-ipc.patch
-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 ca75cc719..6e7de3114 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_getpgid 172#ifdef __NR_getpgid
170 SC_ALLOW(__NR_getpgid), 173 SC_ALLOW(__NR_getpgid),
171#endif 174#endif
@@ -178,6 +181,9 @@ static const struct sock_filter preauth_insns[] = {
178#ifdef __NR_gettimeofday 181#ifdef __NR_gettimeofday
179 SC_ALLOW(__NR_gettimeofday), 182 SC_ALLOW(__NR_gettimeofday),
180#endif 183#endif
184#if defined(__NR_ipc) && defined(__s390__)
185 SC_ALLOW(__NR_ipc),
186#endif
181#ifdef __NR_madvise 187#ifdef __NR_madvise
182 SC_ALLOW(__NR_madvise), 188 SC_ALLOW(__NR_madvise),
183#endif 189#endif