1 // SPDX-License-Identifier: GPL-2.0
5 #include <linux/filter.h>
6 #include <linux/seccomp.h>
10 #include <sys/resource.h>
12 /* install fake seccomp program to enable seccomp code path inside the kernel,
13 * so that our kprobe attached to seccomp_phase1() can be triggered
15 static void install_accept_all_seccomp(void)
17 struct sock_filter filter
[] = {
18 BPF_STMT(BPF_RET
+BPF_K
, SECCOMP_RET_ALLOW
),
20 struct sock_fprog prog
= {
21 .len
= (unsigned short)(sizeof(filter
)/sizeof(filter
[0])),
24 if (prctl(PR_SET_SECCOMP
, 2, &prog
))
28 int main(int ac
, char **argv
)
32 struct rlimit r
= {RLIM_INFINITY
, RLIM_INFINITY
};
34 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
35 setrlimit(RLIMIT_MEMLOCK
, &r
);
37 if (load_bpf_file(filename
)) {
38 printf("%s", bpf_log_buf
);
42 install_accept_all_seccomp();
44 f
= popen("dd if=/dev/zero of=/dev/null count=5", "r");