summaryrefslogtreecommitdiff
path: root/sandbox-systrace.c
diff options
context:
space:
mode:
authorguenther@openbsd.org <guenther@openbsd.org>2015-07-27 16:29:23 +0000
committerDamien Miller <djm@mindrot.org>2015-07-29 19:35:41 +1000
commit3f628c7b537291c1019ce86af90756fb4e66d0fd (patch)
treebf38e917c7c12658cc5e9198d24627f0d33ae789 /sandbox-systrace.c
parentebe27ebe520098bbc0fe58945a87ce8490121edb (diff)
upstream commit
Permit kbind(2) use in the sandbox now, to ease testing of ld.so work using it reminded by miod@, ok deraadt@ Upstream-ID: 523922e4d1ba7a091e3824e77a8a3c818ee97413
Diffstat (limited to 'sandbox-systrace.c')
-rw-r--r--sandbox-systrace.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sandbox-systrace.c b/sandbox-systrace.c
index 03b0d40cc..3830ed16c 100644
--- a/sandbox-systrace.c
+++ b/sandbox-systrace.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sandbox-systrace.c,v 1.16 2015/06/29 22:35:12 djm Exp $ */ 1/* $OpenBSD: sandbox-systrace.c,v 1.17 2015/07/27 16:29:23 guenther Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller <djm@mindrot.org> 3 * Copyright (c) 2011 Damien Miller <djm@mindrot.org>
4 * 4 *
@@ -63,6 +63,9 @@ static const struct sandbox_policy preauth_policy[] = {
63 { SYS_getpid, SYSTR_POLICY_PERMIT }, 63 { SYS_getpid, SYSTR_POLICY_PERMIT },
64 { SYS_getpgid, SYSTR_POLICY_PERMIT }, 64 { SYS_getpgid, SYSTR_POLICY_PERMIT },
65 { SYS_gettimeofday, SYSTR_POLICY_PERMIT }, 65 { SYS_gettimeofday, SYSTR_POLICY_PERMIT },
66#ifdef SYS_kbind
67 { SYS_kbind, SYSTR_POLICY_PERMIT },
68#endif
66 { SYS_madvise, SYSTR_POLICY_PERMIT }, 69 { SYS_madvise, SYSTR_POLICY_PERMIT },
67 { SYS_mmap, SYSTR_POLICY_PERMIT }, 70 { SYS_mmap, SYSTR_POLICY_PERMIT },
68 { SYS_mprotect, SYSTR_POLICY_PERMIT }, 71 { SYS_mprotect, SYSTR_POLICY_PERMIT },