diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Kconfig.binfmt | 3 | ||||
-rw-r--r-- | fs/binfmt_elf.c | 18 |
2 files changed, 4 insertions, 17 deletions
diff --git a/fs/Kconfig.binfmt b/fs/Kconfig.binfmt index 270c48148f79..2d0cbbd14cfc 100644 --- a/fs/Kconfig.binfmt +++ b/fs/Kconfig.binfmt | |||
@@ -27,9 +27,6 @@ config COMPAT_BINFMT_ELF | |||
27 | bool | 27 | bool |
28 | depends on COMPAT && BINFMT_ELF | 28 | depends on COMPAT && BINFMT_ELF |
29 | 29 | ||
30 | config ARCH_BINFMT_ELF_RANDOMIZE_PIE | ||
31 | bool | ||
32 | |||
33 | config ARCH_BINFMT_ELF_STATE | 30 | config ARCH_BINFMT_ELF_STATE |
34 | bool | 31 | bool |
35 | 32 | ||
diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index d925f55e4857..b20c05477e90 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/security.h> | 31 | #include <linux/security.h> |
32 | #include <linux/random.h> | 32 | #include <linux/random.h> |
33 | #include <linux/elf.h> | 33 | #include <linux/elf.h> |
34 | #include <linux/elf-randomize.h> | ||
34 | #include <linux/utsname.h> | 35 | #include <linux/utsname.h> |
35 | #include <linux/coredump.h> | 36 | #include <linux/coredump.h> |
36 | #include <linux/sched.h> | 37 | #include <linux/sched.h> |
@@ -910,21 +911,10 @@ static int load_elf_binary(struct linux_binprm *bprm) | |||
910 | * default mmap base, as well as whatever program they | 911 | * default mmap base, as well as whatever program they |
911 | * might try to exec. This is because the brk will | 912 | * might try to exec. This is because the brk will |
912 | * follow the loader, and is not movable. */ | 913 | * follow the loader, and is not movable. */ |
913 | #ifdef CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE | 914 | load_bias = ELF_ET_DYN_BASE - vaddr; |
914 | /* Memory randomization might have been switched off | ||
915 | * in runtime via sysctl or explicit setting of | ||
916 | * personality flags. | ||
917 | * If that is the case, retain the original non-zero | ||
918 | * load_bias value in order to establish proper | ||
919 | * non-randomized mappings. | ||
920 | */ | ||
921 | if (current->flags & PF_RANDOMIZE) | 915 | if (current->flags & PF_RANDOMIZE) |
922 | load_bias = 0; | 916 | load_bias += arch_mmap_rnd(); |
923 | else | 917 | load_bias = ELF_PAGESTART(load_bias); |
924 | load_bias = ELF_PAGESTART(ELF_ET_DYN_BASE - vaddr); | ||
925 | #else | ||
926 | load_bias = ELF_PAGESTART(ELF_ET_DYN_BASE - vaddr); | ||
927 | #endif | ||
928 | total_size = total_mapping_size(elf_phdata, | 918 | total_size = total_mapping_size(elf_phdata, |
929 | loc->elf_ex.e_phnum); | 919 | loc->elf_ex.e_phnum); |
930 | if (!total_size) { | 920 | if (!total_size) { |