Home
last modified time | relevance | path

Searched refs:this_syscall (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/kernel/
Dseccomp.c617 static void __secure_computing_strict(int this_syscall) in __secure_computing_strict() argument
625 if (*syscall_whitelist == this_syscall) in __secure_computing_strict()
632 seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); in __secure_computing_strict()
637 void secure_computing_strict(int this_syscall) in secure_computing_strict() argument
648 __secure_computing_strict(this_syscall); in secure_computing_strict()
655 static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, in __seccomp_filter() argument
685 seccomp_send_sigsys(this_syscall, data); in __seccomp_filter()
716 this_syscall = syscall_get_nr(current, task_pt_regs(current)); in __seccomp_filter()
717 if (this_syscall < 0) in __seccomp_filter()
726 if (__seccomp_filter(this_syscall, NULL, true)) in __seccomp_filter()
[all …]
/Linux-v4.19/include/linux/
Dseccomp.h42 extern void secure_computing_strict(int this_syscall);
63 static inline void secure_computing_strict(int this_syscall) { return; } in secure_computing_strict() argument