aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/syscall.c
diff options
context:
space:
mode:
authorDavid Daney <ddaney@caviumnetworks.com>2010-07-19 16:14:56 -0400
committerRalf Baechle <ralf@linux-mips.org>2010-08-05 08:26:05 -0400
commit1091458d09e1a0788268578001f279250d2c0844 (patch)
tree9a02e6153d6658cab4b653ba845e68b161cac908 /arch/mips/kernel/syscall.c
parentb3b3c176d9150af542d9ba5e5b292d233883ff85 (diff)
MIPS: Randomize mmap if randomize_va_space is set
Fairly straight forward: For 32-bit address spaces randomize within a 16MB space, for 64-bit within a 256MB space. Signed-off-by: David Daney <ddaney@caviumnetworks.com> To: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/1480/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/syscall.c')
-rw-r--r--arch/mips/kernel/syscall.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c
index dd81b0f87518..9824a829f61d 100644
--- a/arch/mips/kernel/syscall.c
+++ b/arch/mips/kernel/syscall.c
@@ -29,6 +29,7 @@
29#include <linux/ipc.h> 29#include <linux/ipc.h>
30#include <linux/uaccess.h> 30#include <linux/uaccess.h>
31#include <linux/slab.h> 31#include <linux/slab.h>
32#include <linux/random.h>
32 33
33#include <asm/asm.h> 34#include <asm/asm.h>
34#include <asm/branch.h> 35#include <asm/branch.h>
@@ -116,7 +117,7 @@ unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr,
116 (!vmm || addr + len <= vmm->vm_start)) 117 (!vmm || addr + len <= vmm->vm_start))
117 return addr; 118 return addr;
118 } 119 }
119 addr = TASK_UNMAPPED_BASE; 120 addr = current->mm->mmap_base;
120 if (do_color_align) 121 if (do_color_align)
121 addr = COLOUR_ALIGN(addr, pgoff); 122 addr = COLOUR_ALIGN(addr, pgoff);
122 else 123 else
@@ -134,6 +135,24 @@ unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr,
134 } 135 }
135} 136}
136 137
138void arch_pick_mmap_layout(struct mm_struct *mm)
139{
140 unsigned long random_factor = 0UL;
141
142 if (current->flags & PF_RANDOMIZE) {
143 random_factor = get_random_int();
144 random_factor = random_factor << PAGE_SHIFT;
145 if (TASK_IS_32BIT_ADDR)
146 random_factor &= 0xfffffful;
147 else
148 random_factor &= 0xffffffful;
149 }
150
151 mm->mmap_base = TASK_UNMAPPED_BASE + random_factor;
152 mm->get_unmapped_area = arch_get_unmapped_area;
153 mm->unmap_area = arch_unmap_area;
154}
155
137SYSCALL_DEFINE6(mips_mmap, unsigned long, addr, unsigned long, len, 156SYSCALL_DEFINE6(mips_mmap, unsigned long, addr, unsigned long, len,
138 unsigned long, prot, unsigned long, flags, unsigned long, 157 unsigned long, prot, unsigned long, flags, unsigned long,
139 fd, off_t, offset) 158 fd, off_t, offset)