blob: 845df6835f9ff5fc216ab01857100d41eba77fbf [file] [log] [blame]
Jiri Kosinacc503c12008-01-30 13:31:07 +01001/*
Harvey Harrison675a0812008-01-30 13:31:10 +01002 * Flexible mmap layout support
Jiri Kosinacc503c12008-01-30 13:31:07 +01003 *
4 * Based on code by Ingo Molnar and Andi Kleen, copyrighted
5 * as follows:
6 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01007 * Copyright 2003-2009 Red Hat Inc.
Jiri Kosinacc503c12008-01-30 13:31:07 +01008 * All Rights Reserved.
9 * Copyright 2005 Andi Kleen, SUSE Labs.
10 * Copyright 2007 Jiri Kosina, SUSE Labs.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Andi Kleen88172102006-01-17 07:03:38 +010025 */
Jiri Kosinacc503c12008-01-30 13:31:07 +010026
27#include <linux/personality.h>
Andi Kleen88172102006-01-17 07:03:38 +010028#include <linux/mm.h>
Andi Kleen88172102006-01-17 07:03:38 +010029#include <linux/random.h>
Jiri Kosinacc503c12008-01-30 13:31:07 +010030#include <linux/limits.h>
31#include <linux/sched.h>
Michal Hocko80938332009-09-08 11:01:55 +020032#include <asm/elf.h>
33
Borislav Petkov9387f772011-08-06 14:31:38 +020034struct __read_mostly va_alignment va_align = {
35 .flags = -1,
36};
37
Michal Hocko80938332009-09-08 11:01:55 +020038static unsigned int stack_maxrandom_size(void)
39{
40 unsigned int max = 0;
41 if ((current->flags & PF_RANDOMIZE) &&
42 !(current->personality & ADDR_NO_RANDOMIZE)) {
43 max = ((-1U) & STACK_RND_MASK) << PAGE_SHIFT;
44 }
45
46 return max;
47}
48
Jiri Kosinacc503c12008-01-30 13:31:07 +010049/*
50 * Top of mmap area (just below the process stack).
51 *
Michal Hocko80938332009-09-08 11:01:55 +020052 * Leave an at least ~128 MB hole with possible stack randomization.
Jiri Kosinacc503c12008-01-30 13:31:07 +010053 */
Michal Hocko80938332009-09-08 11:01:55 +020054#define MIN_GAP (128*1024*1024UL + stack_maxrandom_size())
Jiri Kosinacc503c12008-01-30 13:31:07 +010055#define MAX_GAP (TASK_SIZE/6*5)
Andi Kleen88172102006-01-17 07:03:38 +010056
Andrew Morton954683a2008-01-30 13:31:07 +010057static int mmap_is_legacy(void)
Jiri Kosinacc503c12008-01-30 13:31:07 +010058{
59 if (current->personality & ADDR_COMPAT_LAYOUT)
60 return 1;
61
Jiri Slaby2854e722010-01-27 17:32:22 +010062 if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
Jiri Kosinacc503c12008-01-30 13:31:07 +010063 return 1;
64
65 return sysctl_legacy_va_layout;
66}
67
Harvey Harrison675a0812008-01-30 13:31:10 +010068static unsigned long mmap_rnd(void)
69{
70 unsigned long rnd = 0;
71
72 /*
73 * 8 bits of randomness in 32bit mmaps, 20 address space bits
74 * 28 bits of randomness in 64bit mmaps, 40 address space bits
75 */
76 if (current->flags & PF_RANDOMIZE) {
77 if (mmap_is_ia32())
Ludwig Nussel9af0c7a2011-11-15 14:46:46 -080078 rnd = get_random_int() % (1<<8);
Harvey Harrison675a0812008-01-30 13:31:10 +010079 else
Ludwig Nussel9af0c7a2011-11-15 14:46:46 -080080 rnd = get_random_int() % (1<<28);
Harvey Harrison675a0812008-01-30 13:31:10 +010081 }
82 return rnd << PAGE_SHIFT;
83}
84
85static unsigned long mmap_base(void)
86{
Jiri Slaby2854e722010-01-27 17:32:22 +010087 unsigned long gap = rlimit(RLIMIT_STACK);
Harvey Harrison675a0812008-01-30 13:31:10 +010088
89 if (gap < MIN_GAP)
90 gap = MIN_GAP;
91 else if (gap > MAX_GAP)
92 gap = MAX_GAP;
93
94 return PAGE_ALIGN(TASK_SIZE - gap - mmap_rnd());
95}
96
97/*
98 * Bottom-up (legacy) layout on X86_32 did not support randomization, X86_64
99 * does, but not when emulating X86_32
100 */
101static unsigned long mmap_legacy_base(void)
102{
103 if (mmap_is_ia32())
104 return TASK_UNMAPPED_BASE;
105 else
106 return TASK_UNMAPPED_BASE + mmap_rnd();
107}
108
Jiri Kosinacc503c12008-01-30 13:31:07 +0100109/*
110 * This function, called very early during the creation of a new
111 * process VM image, sets up which VM layout function to use:
112 */
113void arch_pick_mmap_layout(struct mm_struct *mm)
114{
Harvey Harrison675a0812008-01-30 13:31:10 +0100115 if (mmap_is_legacy()) {
116 mm->mmap_base = mmap_legacy_base();
Jiri Kosinacc503c12008-01-30 13:31:07 +0100117 mm->get_unmapped_area = arch_get_unmapped_area;
118 mm->unmap_area = arch_unmap_area;
119 } else {
120 mm->mmap_base = mmap_base();
121 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
122 mm->unmap_area = arch_unmap_area_topdown;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100123 }
Jiri Kosinacc503c12008-01-30 13:31:07 +0100124}