- dtucker@cvs.openbsd.org 2012/06/26 11:02:30
[sandbox-systrace.c] Add mquery to the list of allowed syscalls for "UsePrivilegeSeparation sandbox" since malloc now uses it. From johnw.mail at gmail com.
This commit is contained in:
parent
ea8582931f
commit
560de922b1
|
@ -11,6 +11,10 @@
|
|||
[sftp.c]
|
||||
Remove unused variable leftover from tab-completion changes.
|
||||
From Steve.McClellan at radisys com, ok markus@
|
||||
- dtucker@cvs.openbsd.org 2012/06/26 11:02:30
|
||||
[sandbox-systrace.c]
|
||||
Add mquery to the list of allowed syscalls for "UsePrivilegeSeparation
|
||||
sandbox" since malloc now uses it. From johnw.mail at gmail com.
|
||||
|
||||
20120628
|
||||
- (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: sandbox-systrace.c,v 1.4 2011/07/29 14:42:45 djm Exp $ */
|
||||
/* $OpenBSD: sandbox-systrace.c,v 1.5 2012/06/26 11:02:30 dtucker Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2011 Damien Miller <djm@mindrot.org>
|
||||
*
|
||||
|
@ -58,6 +58,7 @@ static const struct sandbox_policy preauth_policy[] = {
|
|||
{ SYS_madvise, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_mmap, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_mprotect, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_mquery, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_poll, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_munmap, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_read, SYSTR_POLICY_PERMIT },
|
||||
|
|
Loading…
Reference in New Issue