commit 21f7d2469937a5168542cc12586fb1153d5cc2f4 from: Omar Polo date: Fri Jul 23 06:50:30 2021 UTC allow fstat64 used by glibc on aarch64. Found and tested by pine, thanks! commit - af5f9b271e852c641ff6c1d226e42d98f4182f25 commit + 21f7d2469937a5168542cc12586fb1153d5cc2f4 blob - 782892216a8019df9b5051dd2507577d02af73fe blob + 096f9fcd4cfcf4b58830d3d8eb6755026201229f --- sandbox.c +++ sandbox.c @@ -300,6 +300,9 @@ static struct sock_filter filter[] = { #ifdef __NR_fstat SC_ALLOW(fstat), #endif +#ifdef __NR_fstat64 + SC_ALLOW(fstat64), +#endif #ifdef __NR_getdents64 SC_ALLOW(getdents64), #endif