Message ID | 1486014168-1279-3-git-send-email-bhsharma@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/arch/powerpc/include/asm/elf.h b/arch/powerpc/include/asm/elf.h index ee46ffef608e..dd035f6dd782 100644 --- a/arch/powerpc/include/asm/elf.h +++ b/arch/powerpc/include/asm/elf.h @@ -28,7 +28,7 @@ the loader. We need to make sure that it is out of the way of the program that it will "exec", and that there is sufficient room for the brk. */ -#define ELF_ET_DYN_BASE 0x20000000 +#define ELF_ET_DYN_BASE (TASK_SIZE - PAGE_SIZE) #define ELF_CORE_EFLAGS (is_elf2_task() ? 2 : 0)
Currently the powerpc arch uses a ELF_ET_DYN_BASE value of 0x20000000 which ends up pushing an elf to a load address which is 32-bit. On 64-bit platforms, this might be too less especially when one is trying to increase the randomness of the load address of the ASLR elfs on such platforms. This patch makes the powerpc platforms mimic the x86 ones, by ensuring that the ELF_ET_DYN_BASE is calculated on basis of the current task's TASK_SIZE. Cc: Alexander Graf <agraf@suse.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Anatolij Gustschin <agust@denx.de> Cc: Alistair Popple <alistair@popple.id.au> Cc: Matt Porter <mporter@kernel.crashing.org> Cc: Vitaly Bordug <vitb@kernel.crashing.org> Cc: Scott Wood <oss@buserror.net> Cc: Kumar Gala <galak@kernel.crashing.org> Cc: Daniel Cashman <dcashman@android.com> Cc: Kees Cook <keescook@chromium.org> Signed-off-by: Bhupesh Sharma <bhsharma@redhat.com> --- arch/powerpc/include/asm/elf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)