this_syscall 43 include/linux/seccomp.h extern void secure_computing_strict(int this_syscall); this_syscall 64 include/linux/seccomp.h static inline void secure_computing_strict(int this_syscall) { return; } this_syscall 687 kernel/seccomp.c static void __secure_computing_strict(int this_syscall) this_syscall 695 kernel/seccomp.c if (*syscall_whitelist == this_syscall) this_syscall 702 kernel/seccomp.c seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); this_syscall 707 kernel/seccomp.c void secure_computing_strict(int this_syscall) this_syscall 718 kernel/seccomp.c __secure_computing_strict(this_syscall); this_syscall 735 kernel/seccomp.c static void seccomp_do_user_notification(int this_syscall, this_syscall 787 kernel/seccomp.c static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, this_syscall 823 kernel/seccomp.c seccomp_send_sigsys(this_syscall, data); this_syscall 854 kernel/seccomp.c this_syscall = syscall_get_nr(current, task_pt_regs(current)); this_syscall 855 kernel/seccomp.c if (this_syscall < 0) this_syscall 864 kernel/seccomp.c if (__seccomp_filter(this_syscall, NULL, true)) this_syscall 870 kernel/seccomp.c seccomp_do_user_notification(this_syscall, match, sd); this_syscall 874 kernel/seccomp.c seccomp_log(this_syscall, 0, action, true); this_syscall 888 kernel/seccomp.c seccomp_log(this_syscall, SIGSYS, action, true); this_syscall 897 kernel/seccomp.c seccomp_init_siginfo(&info, this_syscall, data); this_syscall 909 kernel/seccomp.c seccomp_log(this_syscall, 0, action, match ? match->log : false); this_syscall 913 kernel/seccomp.c static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, this_syscall 923 kernel/seccomp.c int this_syscall; this_syscall 929 kernel/seccomp.c this_syscall = sd ? sd->nr : this_syscall 934 kernel/seccomp.c __secure_computing_strict(this_syscall); /* may call do_exit */ this_syscall 937 kernel/seccomp.c return __seccomp_filter(this_syscall, sd, false);