Lines Matching refs:this_syscall

1007 static void __secure_computing_strict(int this_syscall)  in __secure_computing_strict()  argument
1015 if (*allowed_syscalls == this_syscall) in __secure_computing_strict()
1023 seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); in __secure_computing_strict()
1028 void secure_computing_strict(int this_syscall) in secure_computing_strict() argument
1039 __secure_computing_strict(this_syscall); in secure_computing_strict()
1096 static int seccomp_do_user_notification(int this_syscall, in seccomp_do_user_notification() argument
1191 static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, in __seccomp_filter() argument
1227 force_sig_seccomp(this_syscall, data, false); in __seccomp_filter()
1258 this_syscall = syscall_get_nr(current, current_pt_regs()); in __seccomp_filter()
1259 if (this_syscall < 0) in __seccomp_filter()
1268 if (__seccomp_filter(this_syscall, NULL, true)) in __seccomp_filter()
1274 if (seccomp_do_user_notification(this_syscall, match, sd)) in __seccomp_filter()
1280 seccomp_log(this_syscall, 0, action, true); in __seccomp_filter()
1295 seccomp_log(this_syscall, SIGSYS, action, true); in __seccomp_filter()
1302 force_sig_seccomp(this_syscall, data, true); in __seccomp_filter()
1312 seccomp_log(this_syscall, 0, action, match ? match->log : false); in __seccomp_filter()
1316 static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, in __seccomp_filter() argument
1328 int this_syscall; in __secure_computing() local
1334 this_syscall = sd ? sd->nr : in __secure_computing()
1339 __secure_computing_strict(this_syscall); /* may call do_exit */ in __secure_computing()
1342 return __seccomp_filter(this_syscall, sd, false); in __secure_computing()