]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- dtucker@cvs.openbsd.org 2012/06/26 11:02:30
authorDamien Miller <djm@mindrot.org>
Fri, 29 Jun 2012 22:33:53 +0000 (08:33 +1000)
committerDamien Miller <djm@mindrot.org>
Fri, 29 Jun 2012 22:33:53 +0000 (08:33 +1000)
     [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.

ChangeLog
sandbox-systrace.c

index 5c00e1863cb0a0f971650aa669740306bb16e859..f4627f04180b13ac205feebb37778eabc6fce480 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      [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
index 5a39f4fe146f8bcc0e63d2e9227f9fb14efc4635..199b69f444633af14b03adb8f1f4eab7782d806a 100644 (file)
@@ -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 },