diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-14 19:49:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-14 19:49:17 -0400 |
commit | 1dcf58d6e6e6eb7ec10e9abc56887b040205b06f (patch) | |
tree | c03e7a25ef13eea62f1547914a76e5c68f3f4c28 /include/linux/elf-randomize.h | |
parent | 80dcc31fbe55932ac9204daee5f2ebc0c49b6da3 (diff) | |
parent | e4b0db72be2487bae0e3251c22f82c104f7c1cfd (diff) |
Merge branch 'akpm' (patches from Andrew)
Merge first patchbomb from Andrew Morton:
- arch/sh updates
- ocfs2 updates
- kernel/watchdog feature
- about half of mm/
* emailed patches from Andrew Morton <akpm@linux-foundation.org>: (122 commits)
Documentation: update arch list in the 'memtest' entry
Kconfig: memtest: update number of test patterns up to 17
arm: add support for memtest
arm64: add support for memtest
memtest: use phys_addr_t for physical addresses
mm: move memtest under mm
mm, hugetlb: abort __get_user_pages if current has been oom killed
mm, mempool: do not allow atomic resizing
memcg: print cgroup information when system panics due to panic_on_oom
mm: numa: remove migrate_ratelimited
mm: fold arch_randomize_brk into ARCH_HAS_ELF_RANDOMIZE
mm: split ET_DYN ASLR from mmap ASLR
s390: redefine randomize_et_dyn for ELF_ET_DYN_BASE
mm: expose arch_mmap_rnd when available
s390: standardize mmap_rnd() usage
powerpc: standardize mmap_rnd() usage
mips: extract logic for mmap_rnd()
arm64: standardize mmap_rnd() usage
x86: standardize mmap_rnd() usage
arm: factor out mmap ASLR into mmap_rnd
...
Diffstat (limited to 'include/linux/elf-randomize.h')
-rw-r--r-- | include/linux/elf-randomize.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/linux/elf-randomize.h b/include/linux/elf-randomize.h new file mode 100644 index 000000000000..b5f0bda9472e --- /dev/null +++ b/include/linux/elf-randomize.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef _ELF_RANDOMIZE_H | ||
2 | #define _ELF_RANDOMIZE_H | ||
3 | |||
4 | struct mm_struct; | ||
5 | |||
6 | #ifndef CONFIG_ARCH_HAS_ELF_RANDOMIZE | ||
7 | static inline unsigned long arch_mmap_rnd(void) { return 0; } | ||
8 | # if defined(arch_randomize_brk) && defined(CONFIG_COMPAT_BRK) | ||
9 | # define compat_brk_randomized | ||
10 | # endif | ||
11 | # ifndef arch_randomize_brk | ||
12 | # define arch_randomize_brk(mm) (mm->brk) | ||
13 | # endif | ||
14 | #else | ||
15 | extern unsigned long arch_mmap_rnd(void); | ||
16 | extern unsigned long arch_randomize_brk(struct mm_struct *mm); | ||
17 | # ifdef CONFIG_COMPAT_BRK | ||
18 | # define compat_brk_randomized | ||
19 | # endif | ||
20 | #endif | ||
21 | |||
22 | #endif | ||