Created
October 17, 2009 15:14
-
-
Save bdrewery/212364 to your computer and use it in GitHub Desktop.
FreeBSD 7 random mmap()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: src/sys/vm/vm_mmap.c | |
=================================================================== | |
--- ./sys/vm/vm_mmap.c (revision 171) | |
+++ ./sys/vm/vm_mmap.c (working copy) | |
@@ -88,6 +88,10 @@ | |
static int max_proc_mmap; | |
SYSCTL_INT(_vm, OID_AUTO, max_proc_mmap, CTLFLAG_RW, &max_proc_mmap, 0, ""); | |
+static int mmap_random = 1; | |
+SYSCTL_INT(_vm, OID_AUTO, mmap_random, CTLFLAG_RW, &mmap_random, 1, | |
+ "random mmap offset"); | |
+ | |
/* | |
* Set the maximum number of vm_map_entry structures per process. Roughly | |
* speaking vm_map_entry structures are tiny, so allowing them to eat 1/100 | |
@@ -275,9 +279,12 @@ | |
if (addr == 0 || | |
(addr >= round_page((vm_offset_t)vms->vm_taddr) && | |
addr < round_page((vm_offset_t)vms->vm_daddr + | |
- lim_max(td->td_proc, RLIMIT_DATA)))) | |
+ lim_max(td->td_proc, RLIMIT_DATA)))) { | |
addr = round_page((vm_offset_t)vms->vm_daddr + | |
lim_max(td->td_proc, RLIMIT_DATA)); | |
+ if (mmap_random) | |
+ addr += arc4random() & (256 * 1024 * 1024 - 1); | |
+ } | |
PROC_UNLOCK(td->td_proc); | |
} | |
if (flags & MAP_ANON) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment