/linux-6.12.1/Documentation/translations/zh_CN/userspace-api/ |
D | seccomp_filter.rst | 29 此外,BPF让seccomp用户不再成为在系统调用干预框架(system call interposition 45 添加了一个额外的seccomp模式,它可以使用和严格seccomp相同的 prctl(2) 调用来启用。 76 一个seccomp过滤器可能返回下列任意值。如果多个过滤器存在,评估一个指定系统调用的 100 由seccomp触发的 ``SIGSYS`` 会有一个 ``SYS_SECCOMP`` 的 si_code 。 121 在追踪器被通知后,seccomp检查不会再次运行。(这意味着基于seccomp的沙箱必须禁止 149 ``samples/seccomp/`` 文件夹包含了x86专用和更通用的使用高层宏接口来生成BPF程序的 155 ``SECCOMP_RET_USER_NOTIF`` 返回值会让seccomp过滤器传递一个特定的系统调用给用户 159 传递 ``SECCOMP_FILTER_FLAG_NEW_LISTENER`` 参数给 ``seccomp()`` 系统调用可以取 164 fd = seccomp(SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_NEW_LISTENER, &prog); 171 seccomp通知文件描述符由两个结构体组成: [all …]
|
D | no_new_privs.rst | 46 - 为seccomp模式2沙箱安装的过滤器会跨execve持久化,并能够改变新执行程序的行为。
|
/linux-6.12.1/kernel/ |
D | seccomp.c | 412 READ_ONCE(current->seccomp.filter); in seccomp_run_filters() 441 if (current->seccomp.mode && current->seccomp.mode != seccomp_mode) in seccomp_may_assign_mode() 455 task->seccomp.mode = seccomp_mode; in seccomp_assign_mode() 509 if (thread->seccomp.mode == SECCOMP_MODE_DISABLED || in seccomp_can_sync_threads() 510 (thread->seccomp.mode == SECCOMP_MODE_FILTER && in seccomp_can_sync_threads() 511 is_ancestor(thread->seccomp.filter, in seccomp_can_sync_threads() 512 caller->seccomp.filter))) in seccomp_can_sync_threads() 580 orig = tsk->seccomp.filter; in seccomp_filter_release() 582 tsk->seccomp.filter = NULL; in seccomp_filter_release() 626 __seccomp_filter_release(thread->seccomp.filter); in seccomp_sync_threads() [all …]
|
D | ptrace.c | 371 if (seccomp_mode(¤t->seccomp) != SECCOMP_MODE_DISABLED || in check_ptrace_options() 947 info->seccomp.ret_data = child->ptrace_message; in ptrace_get_syscall_info_seccomp() 950 return offsetofend(struct ptrace_syscall_info, seccomp.ret_data); in ptrace_get_syscall_info_seccomp()
|
/linux-6.12.1/Documentation/userspace-api/ |
D | seccomp_filter.rst | 24 Additionally, BPF makes it impossible for users of seccomp to fall prey 46 An additional seccomp mode is added and is enabled using the same 47 prctl(2) call as the strict seccomp. If the architecture has 87 A seccomp filter may return any of the following values. If multiple 119 ``SIGSYS`` triggered by seccomp will have a si_code of ``SYS_SECCOMP``. 149 The seccomp check will not be run again after the tracer is 150 notified. (This means that seccomp-based sandboxes MUST NOT 187 The ``samples/seccomp/`` directory contains both an x86-specific example 194 The ``SECCOMP_RET_USER_NOTIF`` return code lets seccomp filters pass a 200 argument to the ``seccomp()`` syscall: [all …]
|
D | no_new_privs.rst | 47 - Filters installed for the seccomp mode 2 sandbox persist across
|
/linux-6.12.1/include/linux/ |
D | seccomp_types.h | 22 struct seccomp { struct 30 struct seccomp { }; struct
|
D | seccomp.h | 40 static inline int seccomp_mode(struct seccomp *s) in seccomp_mode() 68 static inline int seccomp_mode(struct seccomp *s) in seccomp_mode()
|
/linux-6.12.1/Documentation/features/seccomp/seccomp-filter/ |
D | arch-support.txt | 2 # Feature name: seccomp-filter 4 # description: arch supports seccomp filters
|
/linux-6.12.1/tools/testing/selftests/seccomp/ |
D | seccomp_bpf.c | 284 #ifndef seccomp 285 int seccomp(unsigned int op, unsigned int flags, void *args) in seccomp() function 837 ASSERT_EQ(0, seccomp(SECCOMP_SET_MODE_FILTER, 0, in kill_thread_or_group() 846 ASSERT_EQ(0, seccomp(SECCOMP_SET_MODE_FILTER, 0, &prog_thread)); in kill_thread_or_group() 2125 FIXTURE_VARIANT_ADD(TRACE_syscall, seccomp) { in FIXTURE_VARIANT_ADD() argument 2324 ret = seccomp(-1, 0, &prog); in TEST() 2333 ret = seccomp(SECCOMP_SET_MODE_STRICT, -1, NULL); in TEST() 2337 ret = seccomp(SECCOMP_SET_MODE_STRICT, 0, &prog); in TEST() 2343 ret = seccomp(SECCOMP_SET_MODE_FILTER, -1, &prog); in TEST() 2347 ret = seccomp(SECCOMP_SET_MODE_FILTER, 0, NULL); in TEST() [all …]
|
/linux-6.12.1/samples/seccomp/ |
D | user-trap.c | 26 static int seccomp(unsigned int op, unsigned int flags, void *args) in seccomp() function 105 return seccomp(SECCOMP_SET_MODE_FILTER, flags, &prog); in user_trap_syscall() 297 if (seccomp(SECCOMP_GET_NOTIF_SIZES, 0, &sizes) < 0) { in main()
|
/linux-6.12.1/tools/perf/bench/ |
D | sched-seccomp-notify.c | 44 static int seccomp(unsigned int op, unsigned int flags, void *args) in seccomp() function 64 return seccomp(SECCOMP_SET_MODE_FILTER, flags, &prog); in user_notif_syscall()
|
D | Build | 3 perf-bench-y += sched-seccomp-notify.o
|
/linux-6.12.1/arch/arm64/include/asm/ |
D | Kbuild | 7 # same constants with prefixes, used by vdso, seccomp and sigreturn:
|
/linux-6.12.1/samples/ |
D | Makefile | 21 subdir-$(CONFIG_SAMPLE_SECCOMP) += seccomp
|
D | Kconfig | 177 bool "Build seccomp sample code" 180 Build samples of seccomp filters using various methods of
|
/linux-6.12.1/include/uapi/linux/ |
D | ptrace.h | 101 } seccomp; member
|
/linux-6.12.1/rust/ |
D | bindgen_parameters | 21 # `seccomp`'s comment gets understood as a doctest
|
/linux-6.12.1/arch/mips/kernel/ |
D | scall64-n32.S | 79 bltz v0, 1f # seccomp failed? Skip syscall
|
D | scall64-n64.S | 89 bltz v0, 1f # seccomp failed? Skip syscall
|
D | scall32-o32.S | 131 bltz v0, 1f # seccomp failed? Skip syscall
|
D | scall64-o32.S | 134 bltz v0, 1f # seccomp failed? Skip syscall
|
/linux-6.12.1/init/ |
D | init_task.c | 220 .seccomp = { .filter_count = ATOMIC_INIT(0) },
|
/linux-6.12.1/kernel/configs/ |
D | hardening.config | 83 # Provide userspace with seccomp BPF API for syscall attack surface reduction.
|
/linux-6.12.1/arch/ |
D | Kconfig | 564 An arch should select this symbol to support seccomp mode 1 (the fixed 566 and compat syscalls if the asm-generic/seccomp.h defaults need adjustment: 586 - seccomp syscall wired up 592 prompt "Enable seccomp to safely execute untrusted bytecode" 601 own address space using seccomp. Once seccomp is enabled via 602 prctl(PR_SET_SECCOMP) or the seccomp() syscall, it cannot be 604 syscalls defined by each seccomp mode. 619 bool "Show seccomp filter cache status in /proc/pid/seccomp_cache" 624 seccomp cache data. The file format is subject to change. Reading 628 an adversary may be able to infer the seccomp filter logic.
|