2025-03-22 23:06:42 +01:00
|
|
|
Allow also to get attributes of the terminal line as
|
|
|
|
well as support mmap(2) flag MAP_DROPPABLE to allow
|
|
|
|
zero memory under memory pressure.
|
|
|
|
|
|
|
|
---
|
|
|
|
lib-src/seccomp-filter.c | 19 ++++++++++++++++++-
|
|
|
|
1 file changed, 18 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
--- lib-src/seccomp-filter.c
|
|
|
|
+++ lib-src/seccomp-filter.c 2025-03-19 12:29:10.689765873 +0000
|
2025-07-19 09:46:12 +02:00
|
|
|
@@ -42,6 +42,7 @@ variants of those files that can be used
|
2025-03-22 23:06:42 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2025-07-19 09:46:12 +02:00
|
|
|
+#include <asm/termbits.h> /* mandatory accordingly to latest ioctl_tty(2) */
|
2025-03-22 23:06:42 +01:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include <asm/prctl.h>
|
|
|
|
@@ -64,6 +71,11 @@ variants of those files that can be used
|
|
|
|
#define ARCH_CET_STATUS 0x3001
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+/* https://github.com/torvalds/linux/commit/9651fcedf7b92d3f7f1ab179e8ab55b85ee10fc1 */
|
|
|
|
+#ifndef MAP_DROPPABLE
|
2025-07-19 09:46:12 +02:00
|
|
|
+#define MAP_DROPPABLE 0x08
|
2025-03-22 23:06:42 +01:00
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
static ATTRIBUTE_FORMAT_PRINTF (2, 3) _Noreturn void
|
|
|
|
fail (int error, const char *format, ...)
|
|
|
|
{
|
|
|
|
@@ -187,7 +199,7 @@ main (int argc, char **argv)
|
|
|
|
some versions of the dynamic loader still use it. Also
|
|
|
|
allow allocating thread stacks. */
|
|
|
|
SCMP_A3_32 (SCMP_CMP_MASKED_EQ,
|
|
|
|
- ~(MAP_SHARED | MAP_PRIVATE | MAP_FILE
|
|
|
|
+ ~(MAP_SHARED | MAP_PRIVATE | MAP_FILE | MAP_DROPPABLE
|
|
|
|
| MAP_ANONYMOUS | MAP_FIXED | MAP_DENYWRITE
|
|
|
|
| MAP_STACK | MAP_NORESERVE),
|
|
|
|
0));
|
|
|
|
@@ -274,6 +286,11 @@ main (int argc, char **argv)
|
|
|
|
SCMP_A0_32 (SCMP_CMP_EQ, STDIN_FILENO),
|
|
|
|
SCMP_A1_32 (SCMP_CMP_EQ, TIOCGPGRP));
|
|
|
|
|
|
|
|
+ /* Allow `tcgetattr' call of glibc on physical terminal devices. */
|
|
|
|
+ RULE (SCMP_ACT_ALLOW, SCMP_SYS (ioctl),
|
|
|
|
+ SCMP_A0_32 (SCMP_CMP_EQ, STDERR_FILENO),
|
|
|
|
+ SCMP_A1_32 (SCMP_CMP_EQ, TCGETS));
|
|
|
|
+
|
|
|
|
/* Allow reading (but not setting) file flags. */
|
|
|
|
RULE (SCMP_ACT_ALLOW, SCMP_SYS (fcntl),
|
|
|
|
SCMP_A1_32 (SCMP_CMP_EQ, F_GETFL));
|