[MIPS] User stack pointer randomisation
Signed-off-by: Franck Bui-Huu <fbuihuu@gmail.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
c55757b261
commit
941091024e
|
@ -25,7 +25,9 @@
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/completion.h>
|
#include <linux/completion.h>
|
||||||
#include <linux/kallsyms.h>
|
#include <linux/kallsyms.h>
|
||||||
|
#include <linux/random.h>
|
||||||
|
|
||||||
|
#include <asm/asm.h>
|
||||||
#include <asm/bootinfo.h>
|
#include <asm/bootinfo.h>
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
#include <asm/dsp.h>
|
#include <asm/dsp.h>
|
||||||
|
@ -460,3 +462,15 @@ unsigned long get_wchan(struct task_struct *task)
|
||||||
out:
|
out:
|
||||||
return pc;
|
return pc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Don't forget that the stack pointer must be aligned on a 8 bytes
|
||||||
|
* boundary for 32-bits ABI and 16 bytes for 64-bits ABI.
|
||||||
|
*/
|
||||||
|
unsigned long arch_align_stack(unsigned long sp)
|
||||||
|
{
|
||||||
|
if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
|
||||||
|
sp -= get_random_int() & ~PAGE_MASK;
|
||||||
|
|
||||||
|
return sp & ALMASK;
|
||||||
|
}
|
||||||
|
|
|
@ -470,6 +470,6 @@ extern int stop_a_enabled;
|
||||||
*/
|
*/
|
||||||
#define __ARCH_WANT_UNLOCKED_CTXSW
|
#define __ARCH_WANT_UNLOCKED_CTXSW
|
||||||
|
|
||||||
#define arch_align_stack(x) (x)
|
extern unsigned long arch_align_stack(unsigned long sp);
|
||||||
|
|
||||||
#endif /* _ASM_SYSTEM_H */
|
#endif /* _ASM_SYSTEM_H */
|
||||||
|
|
Loading…
Reference in New Issue