Lines Matching refs:this_syscall

1049 static void __secure_computing_strict(int this_syscall)  in __secure_computing_strict()  argument
1057 if (*allowed_syscalls == this_syscall) in __secure_computing_strict()
1065 seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); in __secure_computing_strict()
1070 void secure_computing_strict(int this_syscall) in secure_computing_strict() argument
1081 __secure_computing_strict(this_syscall); in secure_computing_strict()
1087 int this_syscall = syscall_get_nr(current, current_pt_regs()); in __secure_computing() local
1089 secure_computing_strict(this_syscall); in __secure_computing()
1145 static int seccomp_do_user_notification(int this_syscall, in seccomp_do_user_notification() argument
1243 static int __seccomp_filter(int this_syscall, const bool recheck_after_trace) in __seccomp_filter() argument
1275 force_sig_seccomp(this_syscall, data, false); in __seccomp_filter()
1306 this_syscall = syscall_get_nr(current, current_pt_regs()); in __seccomp_filter()
1307 if (this_syscall < 0) in __seccomp_filter()
1316 if (__seccomp_filter(this_syscall, true)) in __seccomp_filter()
1322 if (seccomp_do_user_notification(this_syscall, match, &sd)) in __seccomp_filter()
1328 seccomp_log(this_syscall, 0, action, true); in __seccomp_filter()
1343 seccomp_log(this_syscall, SIGSYS, action, true); in __seccomp_filter()
1350 force_sig_seccomp(this_syscall, data, true); in __seccomp_filter()
1360 seccomp_log(this_syscall, 0, action, match ? match->log : false); in __seccomp_filter()
1364 static int __seccomp_filter(int this_syscall, const bool recheck_after_trace) in __seccomp_filter() argument
1375 int this_syscall; in __secure_computing() local
1381 this_syscall = syscall_get_nr(current, current_pt_regs()); in __secure_computing()
1385 __secure_computing_strict(this_syscall); /* may call do_exit */ in __secure_computing()
1388 return __seccomp_filter(this_syscall, false); in __secure_computing()