From 0fa0ed061bbfedb0daa705e220748154a84c3413 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 10 Sep 2014 08:15:34 +1000 Subject: [PATCH] - (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc; patch from Felix von Leitner; ok dtucker --- ChangeLog | 4 ++++ sandbox-seccomp-filter.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2c9dc50f6..5a5136b2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20140910 + - (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc; + patch from Felix von Leitner; ok dtucker + 20140908 - (dtucker) [INSTALL] Update info about egd. ok djm@ diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index c2be00696..b6f6258f2 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -117,6 +117,10 @@ static const struct sock_filter preauth_insns[] = { #endif #ifdef __NR_mmap SC_ALLOW(mmap), +#endif +#ifdef __dietlibc__ + SC_ALLOW(mremap), + SC_ALLOW(exit), #endif SC_ALLOW(munmap), SC_ALLOW(exit_group),