GSSAPI requires futex syscall in privsep child (#1395288)
This commit is contained in:
parent
ccf623128a
commit
ef1da17783
@ -3002,3 +3002,17 @@ index e2ca8a1..6c5ac3f 100644
|
||||
+
|
||||
#endif /* ! _PORT_LINUX_H */
|
||||
|
||||
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
|
||||
index 3e6f982..4c2653f 100644
|
||||
--- a/sandbox-seccomp-filter.c
|
||||
+++ b/sandbox-seccomp-filter.c
|
||||
@@ -213,6 +213,9 @@ static const struct sock_filter preauth_insns[] = {
|
||||
#ifdef __NR_write
|
||||
SC_ALLOW(write),
|
||||
#endif
|
||||
+#ifdef __NR_futex
|
||||
+ SC_ALLOW(futex), /* for GSSAPI Kex */
|
||||
+#endif
|
||||
#ifdef __NR_socketcall
|
||||
SC_ALLOW_ARG(socketcall, 0, SYS_SHUTDOWN),
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user