2021-02-15 11:04:25 +01:00
|
|
|
--- a/sandbox-seccomp-filter.c
|
|
|
|
+++ b/sandbox-seccomp-filter.c
|
2021-07-21 13:52:05 +02:00
|
|
|
@@ -195,6 +195,9 @@
|
|
|
|
#ifdef __NR_close
|
|
|
|
SC_ALLOW(__NR_close),
|
|
|
|
#endif
|
|
|
|
+#ifdef __NR_close_range
|
|
|
|
+ SC_ALLOW(__NR_close_range),
|
|
|
|
+#endif
|
|
|
|
#ifdef __NR_exit
|
|
|
|
SC_ALLOW(__NR_exit),
|
|
|
|
#endif
|
|
|
|
@@ -204,6 +207,9 @@
|
2021-02-15 11:04:25 +01:00
|
|
|
#ifdef __NR_futex
|
|
|
|
SC_ALLOW(__NR_futex),
|
|
|
|
#endif
|
|
|
|
+#ifdef __NR_futex_time64
|
|
|
|
+ SC_ALLOW(__NR_futex_time64),
|
|
|
|
+#endif
|
|
|
|
#ifdef __NR_geteuid
|
|
|
|
SC_ALLOW(__NR_geteuid),
|
|
|
|
#endif
|
2021-07-21 13:52:05 +02:00
|
|
|
@@ -282,6 +288,9 @@
|
2021-02-15 11:04:25 +01:00
|
|
|
#ifdef __NR_pselect6
|
|
|
|
SC_ALLOW(__NR_pselect6),
|
|
|
|
#endif
|
|
|
|
+#ifdef __NR_pselect6_time64
|
|
|
|
+ SC_ALLOW(__NR_pselect6_time64),
|
|
|
|
+#endif
|
|
|
|
#ifdef __NR_read
|
|
|
|
SC_ALLOW(__NR_read),
|
|
|
|
#endif
|