Add stat64() to keymgr seccomp whitelist.

This commit is contained in:
Joris Vink 2023-11-28 09:23:08 +01:00
parent ff5a3982ce
commit 4df120704d

View File

@ -105,6 +105,9 @@ static struct sock_filter filter_keymgr[] = {
KORE_SYSCALL_ALLOW(stat),
#endif
KORE_SYSCALL_ALLOW(fstat),
#if defined(SYS_stat64)
KORE_SYSCALL_ALLOW(stat64),
#endif
#if defined(SYS_fstat64)
KORE_SYSCALL_ALLOW(fstat64),
#endif