Lines Matching refs:this_syscall
687 static void __secure_computing_strict(int this_syscall) in __secure_computing_strict() argument
695 if (*syscall_whitelist == this_syscall) in __secure_computing_strict()
702 seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); in __secure_computing_strict()
707 void secure_computing_strict(int this_syscall) in secure_computing_strict() argument
718 __secure_computing_strict(this_syscall); in secure_computing_strict()
735 static void seccomp_do_user_notification(int this_syscall, in seccomp_do_user_notification() argument
787 static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, in __seccomp_filter() argument
823 seccomp_send_sigsys(this_syscall, data); in __seccomp_filter()
854 this_syscall = syscall_get_nr(current, task_pt_regs(current)); in __seccomp_filter()
855 if (this_syscall < 0) in __seccomp_filter()
864 if (__seccomp_filter(this_syscall, NULL, true)) in __seccomp_filter()
870 seccomp_do_user_notification(this_syscall, match, sd); in __seccomp_filter()
874 seccomp_log(this_syscall, 0, action, true); in __seccomp_filter()
888 seccomp_log(this_syscall, SIGSYS, action, true); in __seccomp_filter()
897 seccomp_init_siginfo(&info, this_syscall, data); in __seccomp_filter()
909 seccomp_log(this_syscall, 0, action, match ? match->log : false); in __seccomp_filter()
913 static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, in __seccomp_filter() argument
923 int this_syscall; in __secure_computing() local
929 this_syscall = sd ? sd->nr : in __secure_computing()
934 __secure_computing_strict(this_syscall); /* may call do_exit */ in __secure_computing()
937 return __seccomp_filter(this_syscall, sd, false); in __secure_computing()