Description: fix seccomp-bpf failures in syscall 422 (futex_time64) glibc 2.33 and newer uses this syscall on 32-bit platforms: https://sourceware.org/git/?p=glibc.git;a=commit;h=29e9874a048f47e2 Author: Fabian Vogt Forwarded: no Last-Update: 2022-11-25 --- a/src/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc +++ b/src/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc @@ -201,6 +201,11 @@ ResultExpr EvaluateSyscallImpl(int fs_de if (sysno == __NR_futex) return RestrictFutex(); +#if defined(__NR_futex_time64) + if (sysno == __NR_futex_time64) + return RestrictFutex(); +#endif + if (sysno == __NR_set_robust_list) return Error(EPERM);