mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc;
patch from Felix von Leitner; ok dtucker
This commit is contained in:
parent
ad7d23d461
commit
0fa0ed061b
@ -1,3 +1,7 @@
|
|||||||
|
20140910
|
||||||
|
- (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc;
|
||||||
|
patch from Felix von Leitner; ok dtucker
|
||||||
|
|
||||||
20140908
|
20140908
|
||||||
- (dtucker) [INSTALL] Update info about egd. ok djm@
|
- (dtucker) [INSTALL] Update info about egd. ok djm@
|
||||||
|
|
||||||
|
@ -117,6 +117,10 @@ static const struct sock_filter preauth_insns[] = {
|
|||||||
#endif
|
#endif
|
||||||
#ifdef __NR_mmap
|
#ifdef __NR_mmap
|
||||||
SC_ALLOW(mmap),
|
SC_ALLOW(mmap),
|
||||||
|
#endif
|
||||||
|
#ifdef __dietlibc__
|
||||||
|
SC_ALLOW(mremap),
|
||||||
|
SC_ALLOW(exit),
|
||||||
#endif
|
#endif
|
||||||
SC_ALLOW(munmap),
|
SC_ALLOW(munmap),
|
||||||
SC_ALLOW(exit_group),
|
SC_ALLOW(exit_group),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user