diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sandbox-systrace.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,12 @@ | |||
1 | 20140717 | 1 | 20140717 |
2 | - (djm) [digest-openssl.c] Preserve array order when disabling digests. | 2 | - (djm) [digest-openssl.c] Preserve array order when disabling digests. |
3 | Reported by Petr Lautrbach. | 3 | Reported by Petr Lautrbach. |
4 | - OpenBSD CVS Sync | ||
5 | - deraadt@cvs.openbsd.org 2014/07/11 08:09:54 | ||
6 | [sandbox-systrace.c] | ||
7 | Permit use of SYS_sendsyslog from inside the sandbox. Clock is ticking, | ||
8 | update your kernels and sshd soon.. libc will start using sendsyslog() | ||
9 | in about 4 days. | ||
4 | 10 | ||
5 | 20140715 | 11 | 20140715 |
6 | - (djm) [configure.ac] Delay checks for arc4random* until after libcrypto | 12 | - (djm) [configure.ac] Delay checks for arc4random* until after libcrypto |
diff --git a/sandbox-systrace.c b/sandbox-systrace.c index 41cf489c5..08cb650bd 100644 --- a/sandbox-systrace.c +++ b/sandbox-systrace.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sandbox-systrace.c,v 1.11 2014/06/18 02:59:13 matthew Exp $ */ | 1 | /* $OpenBSD: sandbox-systrace.c,v 1.12 2014/07/11 08:09:54 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2011 Damien Miller <djm@mindrot.org> | 3 | * Copyright (c) 2011 Damien Miller <djm@mindrot.org> |
4 | * | 4 | * |
@@ -60,6 +60,7 @@ static const struct sandbox_policy preauth_policy[] = { | |||
60 | { SYS___sysctl, SYSTR_POLICY_PERMIT }, | 60 | { SYS___sysctl, SYSTR_POLICY_PERMIT }, |
61 | #endif | 61 | #endif |
62 | 62 | ||
63 | { SYS_sendsyslog, SYSTR_POLICY_PERMIT }, | ||
63 | { SYS_close, SYSTR_POLICY_PERMIT }, | 64 | { SYS_close, SYSTR_POLICY_PERMIT }, |
64 | { SYS_exit, SYSTR_POLICY_PERMIT }, | 65 | { SYS_exit, SYSTR_POLICY_PERMIT }, |
65 | { SYS_getpid, SYSTR_POLICY_PERMIT }, | 66 | { SYS_getpid, SYSTR_POLICY_PERMIT }, |