]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/s390/mm/mmap.c
s390/mm: make TASK_SIZE independent from the number of page table levels
[mirror_ubuntu-artful-kernel.git] / arch / s390 / mm / mmap.c
1 /*
2 * flexible mmap layout support
3 *
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
5 * All Rights Reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 *
22 * Started by Ingo Molnar <mingo@elte.hu>
23 */
24
25 #include <linux/elf-randomize.h>
26 #include <linux/personality.h>
27 #include <linux/mm.h>
28 #include <linux/mman.h>
29 #include <linux/sched/signal.h>
30 #include <linux/sched/mm.h>
31 #include <linux/random.h>
32 #include <linux/compat.h>
33 #include <linux/security.h>
34 #include <asm/pgalloc.h>
35 #include <asm/elf.h>
36
37 static unsigned long stack_maxrandom_size(void)
38 {
39 if (!(current->flags & PF_RANDOMIZE))
40 return 0;
41 if (current->personality & ADDR_NO_RANDOMIZE)
42 return 0;
43 return STACK_RND_MASK << PAGE_SHIFT;
44 }
45
46 /*
47 * Top of mmap area (just below the process stack).
48 *
49 * Leave at least a ~32 MB hole.
50 */
51 #define MIN_GAP (32*1024*1024)
52 #define MAX_GAP (STACK_TOP/6*5)
53
54 static inline int mmap_is_legacy(void)
55 {
56 if (current->personality & ADDR_COMPAT_LAYOUT)
57 return 1;
58 if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
59 return 1;
60 return sysctl_legacy_va_layout;
61 }
62
63 unsigned long arch_mmap_rnd(void)
64 {
65 return (get_random_int() & MMAP_RND_MASK) << PAGE_SHIFT;
66 }
67
68 static unsigned long mmap_base_legacy(unsigned long rnd)
69 {
70 return TASK_UNMAPPED_BASE + rnd;
71 }
72
73 static inline unsigned long mmap_base(unsigned long rnd)
74 {
75 unsigned long gap = rlimit(RLIMIT_STACK);
76
77 if (gap < MIN_GAP)
78 gap = MIN_GAP;
79 else if (gap > MAX_GAP)
80 gap = MAX_GAP;
81 gap &= PAGE_MASK;
82 return STACK_TOP - stack_maxrandom_size() - rnd - gap;
83 }
84
85 unsigned long
86 arch_get_unmapped_area(struct file *filp, unsigned long addr,
87 unsigned long len, unsigned long pgoff, unsigned long flags)
88 {
89 struct mm_struct *mm = current->mm;
90 struct vm_area_struct *vma;
91 struct vm_unmapped_area_info info;
92
93 if (len > mm->context.asce_limit - mmap_min_addr)
94 return -ENOMEM;
95
96 if (flags & MAP_FIXED)
97 return addr;
98
99 if (addr) {
100 addr = PAGE_ALIGN(addr);
101 vma = find_vma(mm, addr);
102 if (mm->context.asce_limit - len >= addr &&
103 addr >= mmap_min_addr &&
104 (!vma || addr + len <= vma->vm_start))
105 return addr;
106 }
107
108 info.flags = 0;
109 info.length = len;
110 info.low_limit = mm->mmap_base;
111 info.high_limit = mm->context.asce_limit;
112 if (filp || (flags & MAP_SHARED))
113 info.align_mask = MMAP_ALIGN_MASK << PAGE_SHIFT;
114 else
115 info.align_mask = 0;
116 info.align_offset = pgoff << PAGE_SHIFT;
117 return vm_unmapped_area(&info);
118 }
119
120 unsigned long
121 arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
122 const unsigned long len, const unsigned long pgoff,
123 const unsigned long flags)
124 {
125 struct vm_area_struct *vma;
126 struct mm_struct *mm = current->mm;
127 unsigned long addr = addr0;
128 struct vm_unmapped_area_info info;
129
130 /* requested length too big for entire address space */
131 if (len > mm->context.asce_limit - mmap_min_addr)
132 return -ENOMEM;
133
134 if (flags & MAP_FIXED)
135 return addr;
136
137 /* requesting a specific address */
138 if (addr) {
139 addr = PAGE_ALIGN(addr);
140 vma = find_vma(mm, addr);
141 if (mm->context.asce_limit - len >= addr &&
142 addr >= mmap_min_addr &&
143 (!vma || addr + len <= vma->vm_start))
144 return addr;
145 }
146
147 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
148 info.length = len;
149 info.low_limit = max(PAGE_SIZE, mmap_min_addr);
150 info.high_limit = mm->mmap_base;
151 if (filp || (flags & MAP_SHARED))
152 info.align_mask = MMAP_ALIGN_MASK << PAGE_SHIFT;
153 else
154 info.align_mask = 0;
155 info.align_offset = pgoff << PAGE_SHIFT;
156 addr = vm_unmapped_area(&info);
157
158 /*
159 * A failed mmap() very likely causes application failure,
160 * so fall back to the bottom-up function here. This scenario
161 * can happen with large stack limits and large mmap()
162 * allocations.
163 */
164 if (addr & ~PAGE_MASK) {
165 VM_BUG_ON(addr != -ENOMEM);
166 info.flags = 0;
167 info.low_limit = TASK_UNMAPPED_BASE;
168 info.high_limit = mm->context.asce_limit;
169 addr = vm_unmapped_area(&info);
170 }
171
172 return addr;
173 }
174
175 static unsigned long
176 s390_get_unmapped_area(struct file *filp, unsigned long addr,
177 unsigned long len, unsigned long pgoff, unsigned long flags)
178 {
179 struct mm_struct *mm = current->mm;
180 unsigned long area;
181 int rc;
182
183 area = arch_get_unmapped_area(filp, addr, len, pgoff, flags);
184 if (!(area & ~PAGE_MASK))
185 return area;
186 if (area == -ENOMEM && !is_compat_task() &&
187 current->mm->context.asce_limit < TASK_SIZE_MAX) {
188 /* Upgrade the page table to 4 levels and retry. */
189 rc = crst_table_upgrade(mm);
190 if (rc)
191 return (unsigned long) rc;
192 area = arch_get_unmapped_area(filp, addr, len, pgoff, flags);
193 }
194 return area;
195 }
196
197 static unsigned long
198 s390_get_unmapped_area_topdown(struct file *filp, const unsigned long addr,
199 const unsigned long len, const unsigned long pgoff,
200 const unsigned long flags)
201 {
202 struct mm_struct *mm = current->mm;
203 unsigned long area;
204 int rc;
205
206 area = arch_get_unmapped_area_topdown(filp, addr, len, pgoff, flags);
207 if (!(area & ~PAGE_MASK))
208 return area;
209 if (area == -ENOMEM && !is_compat_task() &&
210 current->mm->context.asce_limit < TASK_SIZE_MAX) {
211 /* Upgrade the page table to 4 levels and retry. */
212 rc = crst_table_upgrade(mm);
213 if (rc)
214 return (unsigned long) rc;
215 area = arch_get_unmapped_area_topdown(filp, addr, len,
216 pgoff, flags);
217 }
218 return area;
219 }
220 /*
221 * This function, called very early during the creation of a new
222 * process VM image, sets up which VM layout function to use:
223 */
224 void arch_pick_mmap_layout(struct mm_struct *mm)
225 {
226 unsigned long random_factor = 0UL;
227
228 if (current->flags & PF_RANDOMIZE)
229 random_factor = arch_mmap_rnd();
230
231 /*
232 * Fall back to the standard layout if the personality
233 * bit is set, or if the expected stack growth is unlimited:
234 */
235 if (mmap_is_legacy()) {
236 mm->mmap_base = mmap_base_legacy(random_factor);
237 mm->get_unmapped_area = s390_get_unmapped_area;
238 } else {
239 mm->mmap_base = mmap_base(random_factor);
240 mm->get_unmapped_area = s390_get_unmapped_area_topdown;
241 }
242 }