From e9887d1c37940b9d6c72d55cfad7a40de4c6e28d Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Sun, 2 Jun 2013 09:17:09 +1000 Subject: - (dtucker) [sandbox-seccomp-filter.c] Allow clock_gettimeofday. --- ChangeLog | 1 + sandbox-seccomp-filter.c | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3d012984..1ec48c23 100644 --- a/ChangeLog +++ b/ChangeLog @@ -60,6 +60,7 @@ with the equivalent calls to free. - (dtucker) [configure.ac misc.c] Look for clock_gettime in librt and fall back to time(NULL) if we can't find it anywhere. + - (dtucker) [sandbox-seccomp-filter.c] Allow clock_gettimeofday. 20130529 - (dtucker) [configure.ac openbsd-compat/bsd-misc.h] bz#2087: Add a null diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index e1241839..cc146530 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -91,6 +91,7 @@ static const struct sock_filter preauth_insns[] = { SC_DENY(open, EACCES), SC_ALLOW(getpid), SC_ALLOW(gettimeofday), + SC_ALLOW(clock_gettime), #ifdef __NR_time /* not defined on EABI ARM */ SC_ALLOW(time), #endif -- cgit v1.2.3