diff options
Diffstat (limited to 'arch/mips/kernel/vdso.c')
-rw-r--r-- | arch/mips/kernel/vdso.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/mips/kernel/vdso.c b/arch/mips/kernel/vdso.c index 0f1af58b036a..ed2a278722a9 100644 --- a/arch/mips/kernel/vdso.c +++ b/arch/mips/kernel/vdso.c | |||
@@ -16,9 +16,11 @@ | |||
16 | #include <linux/elf.h> | 16 | #include <linux/elf.h> |
17 | #include <linux/vmalloc.h> | 17 | #include <linux/vmalloc.h> |
18 | #include <linux/unistd.h> | 18 | #include <linux/unistd.h> |
19 | #include <linux/random.h> | ||
19 | 20 | ||
20 | #include <asm/vdso.h> | 21 | #include <asm/vdso.h> |
21 | #include <asm/uasm.h> | 22 | #include <asm/uasm.h> |
23 | #include <asm/processor.h> | ||
22 | 24 | ||
23 | /* | 25 | /* |
24 | * Including <asm/unistd.h> would give use the 64-bit syscall numbers ... | 26 | * Including <asm/unistd.h> would give use the 64-bit syscall numbers ... |
@@ -67,7 +69,18 @@ subsys_initcall(init_vdso); | |||
67 | 69 | ||
68 | static unsigned long vdso_addr(unsigned long start) | 70 | static unsigned long vdso_addr(unsigned long start) |
69 | { | 71 | { |
70 | return STACK_TOP; | 72 | unsigned long offset = 0UL; |
73 | |||
74 | if (current->flags & PF_RANDOMIZE) { | ||
75 | offset = get_random_int(); | ||
76 | offset <<= PAGE_SHIFT; | ||
77 | if (TASK_IS_32BIT_ADDR) | ||
78 | offset &= 0xfffffful; | ||
79 | else | ||
80 | offset &= 0xffffffful; | ||
81 | } | ||
82 | |||
83 | return STACK_TOP + offset; | ||
71 | } | 84 | } |
72 | 85 | ||
73 | int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp) | 86 | int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp) |