# HG changeset patch # Parent 3582dd949a01d8eca2816986ca4bc0c87c96bed3 add 'getuid' syscall to list of allowed ones to prevent the sanboxed thread from being killed by the seccomp filter diff --git a/openssh-7.2p2/sandbox-seccomp-filter.c b/openssh-7.2p2/sandbox-seccomp-filter.c --- a/openssh-7.2p2/sandbox-seccomp-filter.c +++ b/openssh-7.2p2/sandbox-seccomp-filter.c @@ -142,16 +142,22 @@ static const struct sock_filter preauth_ SC_ALLOW(exit_group), #endif #ifdef __NR_getpgid SC_ALLOW(getpgid), #endif #ifdef __NR_getpid SC_ALLOW(getpid), #endif +#ifdef __NR_getuid + SC_ALLOW(getuid), +#endif +#ifdef __NR_getuid32 + SC_ALLOW(getuid32), +#endif #ifdef __NR_getrandom SC_ALLOW(getrandom), #endif #ifdef __NR_gettimeofday SC_ALLOW(gettimeofday), #endif #ifdef __NR_madvise SC_ALLOW(madvise),