blob: 73cc648873d6d00712457b7aa67d13db31b5c781 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/mmap.c
3 *
4 * Written by obz.
5 *
Alan Cox046c6882009-01-05 14:06:29 +00006 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9#include <linux/slab.h>
Alexey Dobriyan4af3c9c2007-10-16 23:29:23 -070010#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/shm.h>
13#include <linux/mman.h>
14#include <linux/pagemap.h>
15#include <linux/swap.h>
16#include <linux/syscalls.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080017#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
19#include <linux/file.h>
20#include <linux/fs.h>
21#include <linux/personality.h>
22#include <linux/security.h>
23#include <linux/hugetlb.h>
24#include <linux/profile.h>
25#include <linux/module.h>
26#include <linux/mount.h>
27#include <linux/mempolicy.h>
28#include <linux/rmap.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070029#include <linux/mmu_notifier.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020030#include <linux/perf_event.h>
Al Viro120a7952010-10-30 02:54:44 -040031#include <linux/audit.h>
Andrea Arcangelib15d00b2011-01-13 15:46:59 -080032#include <linux/khugepaged.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/uaccess.h>
35#include <asm/cacheflush.h>
36#include <asm/tlb.h>
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +020037#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Jan Beulich42b77722008-07-23 21:27:10 -070039#include "internal.h"
40
Kirill Korotaev3a459752006-09-07 14:17:04 +040041#ifndef arch_mmap_check
42#define arch_mmap_check(addr, len, flags) (0)
43#endif
44
Martin Schwidefsky08e7d9b2008-02-04 22:29:16 -080045#ifndef arch_rebalance_pgtables
46#define arch_rebalance_pgtables(addr, len) (addr)
47#endif
48
Hugh Dickinse0da3822005-04-19 13:29:15 -070049static void unmap_region(struct mm_struct *mm,
50 struct vm_area_struct *vma, struct vm_area_struct *prev,
51 unsigned long start, unsigned long end);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * WARNING: the debugging will use recursive algorithms so never enable this
55 * unless you know what you are doing.
56 */
57#undef DEBUG_MM_RB
58
59/* description of effects of mapping type and prot in current implementation.
60 * this is due to the limited x86 page protection hardware. The expected
61 * behavior is in parens:
62 *
63 * map_type prot
64 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
65 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
66 * w: (no) no w: (no) no w: (yes) yes w: (no) no
67 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
68 *
69 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
70 * w: (no) no w: (no) no w: (copy) copy w: (no) no
71 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
72 *
73 */
74pgprot_t protection_map[16] = {
75 __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
76 __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
77};
78
Hugh Dickins804af2c2006-07-26 21:39:49 +010079pgprot_t vm_get_page_prot(unsigned long vm_flags)
80{
Dave Kleikampb845f312008-07-08 00:28:51 +100081 return __pgprot(pgprot_val(protection_map[vm_flags &
82 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
83 pgprot_val(arch_vm_get_page_prot(vm_flags)));
Hugh Dickins804af2c2006-07-26 21:39:49 +010084}
85EXPORT_SYMBOL(vm_get_page_prot);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
88int sysctl_overcommit_ratio = 50; /* default is 50% */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070089int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070090struct percpu_counter vm_committed_as;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * Check that a process has enough memory to allocate a new virtual
94 * mapping. 0 means there is enough memory for the allocation to
95 * succeed and -ENOMEM implies there is not.
96 *
97 * We currently support three overcommit policies, which are set via the
98 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
99 *
100 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
101 * Additional code 2002 Jul 20 by Robert Love.
102 *
103 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
104 *
105 * Note this is a helper function intended to be used by LSMs which
106 * wish to use this logic.
107 */
Alan Cox34b4e4a2007-08-22 14:01:28 -0700108int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 unsigned long free, allowed;
111
112 vm_acct_memory(pages);
113
114 /*
115 * Sometimes we want to use more memory than we have
116 */
117 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
118 return 0;
119
120 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
121 unsigned long n;
122
Christoph Lameter347ce432006-06-30 01:55:35 -0700123 free = global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 free += nr_swap_pages;
125
126 /*
127 * Any slabs which are created with the
128 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
129 * which are reclaimable, under pressure. The dentry
130 * cache and most inode caches should fall into this
131 */
Christoph Lameter972d1a72006-09-25 23:31:51 -0700132 free += global_page_state(NR_SLAB_RECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /*
135 * Leave the last 3% for root
136 */
137 if (!cap_sys_admin)
138 free -= free / 32;
139
140 if (free > pages)
141 return 0;
142
143 /*
144 * nr_free_pages() is very expensive on large systems,
145 * only call if we're about to fail.
146 */
147 n = nr_free_pages();
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700148
149 /*
150 * Leave reserved pages. The pages are not for anonymous pages.
151 */
152 if (n <= totalreserve_pages)
153 goto error;
154 else
155 n -= totalreserve_pages;
156
157 /*
158 * Leave the last 3% for root
159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (!cap_sys_admin)
161 n -= n / 32;
162 free += n;
163
164 if (free > pages)
165 return 0;
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700166
167 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
170 allowed = (totalram_pages - hugetlb_total_pages())
171 * sysctl_overcommit_ratio / 100;
172 /*
173 * Leave the last 3% for root
174 */
175 if (!cap_sys_admin)
176 allowed -= allowed / 32;
177 allowed += total_swap_pages;
178
179 /* Don't let a single process grow too big:
180 leave 3% of the size of this process for other processes */
Alan Cox731572d2008-10-29 14:01:20 -0700181 if (mm)
182 allowed -= mm->total_vm / 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700184 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return 0;
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700186error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 vm_unacct_memory(pages);
188
189 return -ENOMEM;
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
193 * Requires inode->i_mapping->i_mmap_lock
194 */
195static void __remove_shared_vm_struct(struct vm_area_struct *vma,
196 struct file *file, struct address_space *mapping)
197{
198 if (vma->vm_flags & VM_DENYWRITE)
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -0800199 atomic_inc(&file->f_path.dentry->d_inode->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (vma->vm_flags & VM_SHARED)
201 mapping->i_mmap_writable--;
202
203 flush_dcache_mmap_lock(mapping);
204 if (unlikely(vma->vm_flags & VM_NONLINEAR))
205 list_del_init(&vma->shared.vm_set.list);
206 else
207 vma_prio_tree_remove(vma, &mapping->i_mmap);
208 flush_dcache_mmap_unlock(mapping);
209}
210
211/*
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700212 * Unlink a file-based vm structure from its prio_tree, to hide
213 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700215void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 struct file *file = vma->vm_file;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (file) {
220 struct address_space *mapping = file->f_mapping;
221 spin_lock(&mapping->i_mmap_lock);
222 __remove_shared_vm_struct(vma, file, mapping);
223 spin_unlock(&mapping->i_mmap_lock);
224 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700225}
226
227/*
228 * Close a vm structure and free it, returning the next.
229 */
230static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
231{
232 struct vm_area_struct *next = vma->vm_next;
233
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700234 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (vma->vm_ops && vma->vm_ops->close)
236 vma->vm_ops->close(vma);
Matt Helsley925d1c42008-04-29 01:01:36 -0700237 if (vma->vm_file) {
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700238 fput(vma->vm_file);
Matt Helsley925d1c42008-04-29 01:01:36 -0700239 if (vma->vm_flags & VM_EXECUTABLE)
240 removed_exe_file_vma(vma->vm_mm);
241 }
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700242 mpol_put(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700244 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100247SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 unsigned long rlim, retval;
250 unsigned long newbrk, oldbrk;
251 struct mm_struct *mm = current->mm;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700252 unsigned long min_brk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 down_write(&mm->mmap_sem);
255
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700256#ifdef CONFIG_COMPAT_BRK
257 min_brk = mm->end_code;
258#else
259 min_brk = mm->start_brk;
260#endif
261 if (brk < min_brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto out;
Ram Gupta1e624192006-04-10 22:52:57 -0700263
264 /*
265 * Check against rlimit here. If this check is done later after the test
266 * of oldbrk with newbrk then it can escape the test and let the data
267 * segment grow beyond its set limit the in case where the limit is
268 * not page aligned -Ram Gupta
269 */
Jiri Slaby59e99e52010-03-05 13:41:44 -0800270 rlim = rlimit(RLIMIT_DATA);
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100271 if (rlim < RLIM_INFINITY && (brk - mm->start_brk) +
272 (mm->end_data - mm->start_data) > rlim)
Ram Gupta1e624192006-04-10 22:52:57 -0700273 goto out;
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 newbrk = PAGE_ALIGN(brk);
276 oldbrk = PAGE_ALIGN(mm->brk);
277 if (oldbrk == newbrk)
278 goto set_brk;
279
280 /* Always allow shrinking brk. */
281 if (brk <= mm->brk) {
282 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
283 goto set_brk;
284 goto out;
285 }
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* Check against existing mmap mappings. */
288 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
289 goto out;
290
291 /* Ok, looks good - let it rip. */
292 if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
293 goto out;
294set_brk:
295 mm->brk = brk;
296out:
297 retval = mm->brk;
298 up_write(&mm->mmap_sem);
299 return retval;
300}
301
302#ifdef DEBUG_MM_RB
303static int browse_rb(struct rb_root *root)
304{
305 int i = 0, j;
306 struct rb_node *nd, *pn = NULL;
307 unsigned long prev = 0, pend = 0;
308
309 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
310 struct vm_area_struct *vma;
311 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
312 if (vma->vm_start < prev)
313 printk("vm_start %lx prev %lx\n", vma->vm_start, prev), i = -1;
314 if (vma->vm_start < pend)
315 printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
316 if (vma->vm_start > vma->vm_end)
317 printk("vm_end %lx < vm_start %lx\n", vma->vm_end, vma->vm_start);
318 i++;
319 pn = nd;
David Millerd1af65d2007-02-28 20:13:13 -0800320 prev = vma->vm_start;
321 pend = vma->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 j = 0;
324 for (nd = pn; nd; nd = rb_prev(nd)) {
325 j++;
326 }
327 if (i != j)
328 printk("backwards %d, forwards %d\n", j, i), i = 0;
329 return i;
330}
331
332void validate_mm(struct mm_struct *mm)
333{
334 int bug = 0;
335 int i = 0;
336 struct vm_area_struct *tmp = mm->mmap;
337 while (tmp) {
338 tmp = tmp->vm_next;
339 i++;
340 }
341 if (i != mm->map_count)
342 printk("map_count %d vm_next %d\n", mm->map_count, i), bug = 1;
343 i = browse_rb(&mm->mm_rb);
344 if (i != mm->map_count)
345 printk("map_count %d rb %d\n", mm->map_count, i), bug = 1;
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200346 BUG_ON(bug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348#else
349#define validate_mm(mm) do { } while (0)
350#endif
351
352static struct vm_area_struct *
353find_vma_prepare(struct mm_struct *mm, unsigned long addr,
354 struct vm_area_struct **pprev, struct rb_node ***rb_link,
355 struct rb_node ** rb_parent)
356{
357 struct vm_area_struct * vma;
358 struct rb_node ** __rb_link, * __rb_parent, * rb_prev;
359
360 __rb_link = &mm->mm_rb.rb_node;
361 rb_prev = __rb_parent = NULL;
362 vma = NULL;
363
364 while (*__rb_link) {
365 struct vm_area_struct *vma_tmp;
366
367 __rb_parent = *__rb_link;
368 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
369
370 if (vma_tmp->vm_end > addr) {
371 vma = vma_tmp;
372 if (vma_tmp->vm_start <= addr)
Benny Halevydfe195f2008-08-05 13:01:41 -0700373 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 __rb_link = &__rb_parent->rb_left;
375 } else {
376 rb_prev = __rb_parent;
377 __rb_link = &__rb_parent->rb_right;
378 }
379 }
380
381 *pprev = NULL;
382 if (rb_prev)
383 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
384 *rb_link = __rb_link;
385 *rb_parent = __rb_parent;
386 return vma;
387}
388
389static inline void
390__vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
391 struct vm_area_struct *prev, struct rb_node *rb_parent)
392{
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700393 struct vm_area_struct *next;
394
395 vma->vm_prev = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (prev) {
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700397 next = prev->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 prev->vm_next = vma;
399 } else {
400 mm->mmap = vma;
401 if (rb_parent)
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700402 next = rb_entry(rb_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct vm_area_struct, vm_rb);
404 else
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700405 next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700407 vma->vm_next = next;
408 if (next)
409 next->vm_prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
412void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
413 struct rb_node **rb_link, struct rb_node *rb_parent)
414{
415 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
416 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
417}
418
Denys Vlasenkocb8f4882008-10-18 20:27:01 -0700419static void __vma_link_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
ZhenwenXu48aae422009-01-06 14:40:21 -0800421 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 file = vma->vm_file;
424 if (file) {
425 struct address_space *mapping = file->f_mapping;
426
427 if (vma->vm_flags & VM_DENYWRITE)
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -0800428 atomic_dec(&file->f_path.dentry->d_inode->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (vma->vm_flags & VM_SHARED)
430 mapping->i_mmap_writable++;
431
432 flush_dcache_mmap_lock(mapping);
433 if (unlikely(vma->vm_flags & VM_NONLINEAR))
434 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
435 else
436 vma_prio_tree_insert(vma, &mapping->i_mmap);
437 flush_dcache_mmap_unlock(mapping);
438 }
439}
440
441static void
442__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
443 struct vm_area_struct *prev, struct rb_node **rb_link,
444 struct rb_node *rb_parent)
445{
446 __vma_link_list(mm, vma, prev, rb_parent);
447 __vma_link_rb(mm, vma, rb_link, rb_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
450static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
451 struct vm_area_struct *prev, struct rb_node **rb_link,
452 struct rb_node *rb_parent)
453{
454 struct address_space *mapping = NULL;
455
456 if (vma->vm_file)
457 mapping = vma->vm_file->f_mapping;
458
459 if (mapping) {
460 spin_lock(&mapping->i_mmap_lock);
461 vma->vm_truncate_count = mapping->truncate_count;
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 __vma_link(mm, vma, prev, rb_link, rb_parent);
465 __vma_link_file(vma);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (mapping)
468 spin_unlock(&mapping->i_mmap_lock);
469
470 mm->map_count++;
471 validate_mm(mm);
472}
473
474/*
475 * Helper for vma_adjust in the split_vma insert case:
476 * insert vm structure into list and rbtree and anon_vma,
477 * but it has already been inserted into prio_tree earlier.
478 */
ZhenwenXu48aae422009-01-06 14:40:21 -0800479static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
ZhenwenXu48aae422009-01-06 14:40:21 -0800481 struct vm_area_struct *__vma, *prev;
482 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 __vma = find_vma_prepare(mm, vma->vm_start,&prev, &rb_link, &rb_parent);
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200485 BUG_ON(__vma && __vma->vm_start < vma->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 __vma_link(mm, vma, prev, rb_link, rb_parent);
487 mm->map_count++;
488}
489
490static inline void
491__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
492 struct vm_area_struct *prev)
493{
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700494 struct vm_area_struct *next = vma->vm_next;
495
496 prev->vm_next = next;
497 if (next)
498 next->vm_prev = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 rb_erase(&vma->vm_rb, &mm->mm_rb);
500 if (mm->mmap_cache == vma)
501 mm->mmap_cache = prev;
502}
503
504/*
505 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
506 * is already present in an i_mmap tree without adjusting the tree.
507 * The following helper function should be used when such adjustments
508 * are necessary. The "insert" vma (if any) is to be inserted
509 * before we drop the necessary locks.
510 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800511int vma_adjust(struct vm_area_struct *vma, unsigned long start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
513{
514 struct mm_struct *mm = vma->vm_mm;
515 struct vm_area_struct *next = vma->vm_next;
516 struct vm_area_struct *importer = NULL;
517 struct address_space *mapping = NULL;
518 struct prio_tree_root *root = NULL;
Rik van Riel012f18002010-08-09 17:18:40 -0700519 struct anon_vma *anon_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 struct file *file = vma->vm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 long adjust_next = 0;
522 int remove_next = 0;
523
524 if (next && !insert) {
Linus Torvalds287d97a2010-04-10 15:22:30 -0700525 struct vm_area_struct *exporter = NULL;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (end >= next->vm_end) {
528 /*
529 * vma expands, overlapping all the next, and
530 * perhaps the one after too (mprotect case 6).
531 */
532again: remove_next = 1 + (end > next->vm_end);
533 end = next->vm_end;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700534 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 importer = vma;
536 } else if (end > next->vm_start) {
537 /*
538 * vma expands, overlapping part of the next:
539 * mprotect case 5 shifting the boundary up.
540 */
541 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700542 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 importer = vma;
544 } else if (end < vma->vm_end) {
545 /*
546 * vma shrinks, and !insert tells it's not
547 * split_vma inserting another: so it must be
548 * mprotect case 4 shifting the boundary down.
549 */
550 adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
Linus Torvalds287d97a2010-04-10 15:22:30 -0700551 exporter = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 importer = next;
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Rik van Riel5beb4932010-03-05 13:42:07 -0800555 /*
556 * Easily overlooked: when mprotect shifts the boundary,
557 * make sure the expanding vma has anon_vma set if the
558 * shrinking vma had, to cover any anon pages imported.
559 */
Linus Torvalds287d97a2010-04-10 15:22:30 -0700560 if (exporter && exporter->anon_vma && !importer->anon_vma) {
561 if (anon_vma_clone(importer, exporter))
Rik van Riel5beb4932010-03-05 13:42:07 -0800562 return -ENOMEM;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700563 importer->anon_vma = exporter->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -0800564 }
565 }
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (file) {
568 mapping = file->f_mapping;
569 if (!(vma->vm_flags & VM_NONLINEAR))
570 root = &mapping->i_mmap;
571 spin_lock(&mapping->i_mmap_lock);
572 if (importer &&
573 vma->vm_truncate_count != next->vm_truncate_count) {
574 /*
575 * unmap_mapping_range might be in progress:
576 * ensure that the expanding vma is rescanned.
577 */
578 importer->vm_truncate_count = 0;
579 }
580 if (insert) {
581 insert->vm_truncate_count = vma->vm_truncate_count;
582 /*
583 * Put into prio_tree now, so instantiated pages
584 * are visible to arm/parisc __flush_dcache_page
585 * throughout; but we cannot insert into address
586 * space until vma start or end is updated.
587 */
588 __vma_link_file(insert);
589 }
590 }
591
Andrea Arcangeli94fcc582011-01-13 15:47:08 -0800592 vma_adjust_trans_huge(vma, start, end, adjust_next);
593
Rik van Riel012f18002010-08-09 17:18:40 -0700594 /*
595 * When changing only vma->vm_end, we don't really need anon_vma
596 * lock. This is a fairly rare case by itself, but the anon_vma
597 * lock may be shared between many sibling processes. Skipping
598 * the lock for brk adjustments makes a difference sometimes.
599 */
600 if (vma->anon_vma && (insert || importer || start != vma->vm_start)) {
601 anon_vma = vma->anon_vma;
602 anon_vma_lock(anon_vma);
603 }
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (root) {
606 flush_dcache_mmap_lock(mapping);
607 vma_prio_tree_remove(vma, root);
608 if (adjust_next)
609 vma_prio_tree_remove(next, root);
610 }
611
612 vma->vm_start = start;
613 vma->vm_end = end;
614 vma->vm_pgoff = pgoff;
615 if (adjust_next) {
616 next->vm_start += adjust_next << PAGE_SHIFT;
617 next->vm_pgoff += adjust_next;
618 }
619
620 if (root) {
621 if (adjust_next)
622 vma_prio_tree_insert(next, root);
623 vma_prio_tree_insert(vma, root);
624 flush_dcache_mmap_unlock(mapping);
625 }
626
627 if (remove_next) {
628 /*
629 * vma_merge has merged next into vma, and needs
630 * us to remove next before dropping the locks.
631 */
632 __vma_unlink(mm, next, vma);
633 if (file)
634 __remove_shared_vm_struct(next, file, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 } else if (insert) {
636 /*
637 * split_vma has split insert from vma, and needs
638 * us to insert it before dropping the locks
639 * (it may either follow vma or precede it).
640 */
641 __insert_vm_struct(mm, insert);
642 }
643
Rik van Riel012f18002010-08-09 17:18:40 -0700644 if (anon_vma)
645 anon_vma_unlock(anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (mapping)
647 spin_unlock(&mapping->i_mmap_lock);
648
649 if (remove_next) {
Matt Helsley925d1c42008-04-29 01:01:36 -0700650 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 fput(file);
Matt Helsley925d1c42008-04-29 01:01:36 -0700652 if (next->vm_flags & VM_EXECUTABLE)
653 removed_exe_file_vma(mm);
654 }
Rik van Riel5beb4932010-03-05 13:42:07 -0800655 if (next->anon_vma)
656 anon_vma_merge(vma, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 mm->map_count--;
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700658 mpol_put(vma_policy(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 kmem_cache_free(vm_area_cachep, next);
660 /*
661 * In mprotect's case 6 (see comments on vma_merge),
662 * we must remove another next too. It would clutter
663 * up the code too much to do both in one go.
664 */
665 if (remove_next == 2) {
666 next = vma->vm_next;
667 goto again;
668 }
669 }
670
671 validate_mm(mm);
Rik van Riel5beb4932010-03-05 13:42:07 -0800672
673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/*
677 * If the vma has a ->close operation then the driver probably needs to release
678 * per-vma resources, so we don't attempt to merge those.
679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680static inline int is_mergeable_vma(struct vm_area_struct *vma,
681 struct file *file, unsigned long vm_flags)
682{
Hugh Dickins8314c4f2009-09-21 17:02:25 -0700683 /* VM_CAN_NONLINEAR may get set later by f_op->mmap() */
684 if ((vma->vm_flags ^ vm_flags) & ~VM_CAN_NONLINEAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return 0;
686 if (vma->vm_file != file)
687 return 0;
688 if (vma->vm_ops && vma->vm_ops->close)
689 return 0;
690 return 1;
691}
692
693static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
694 struct anon_vma *anon_vma2)
695{
696 return !anon_vma1 || !anon_vma2 || (anon_vma1 == anon_vma2);
697}
698
699/*
700 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
701 * in front of (at a lower virtual address and file offset than) the vma.
702 *
703 * We cannot merge two vmas if they have differently assigned (non-NULL)
704 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
705 *
706 * We don't check here for the merged mmap wrapping around the end of pagecache
707 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
708 * wrap, nor mmaps which cover the final page at index -1UL.
709 */
710static int
711can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
712 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
713{
714 if (is_mergeable_vma(vma, file, vm_flags) &&
715 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
716 if (vma->vm_pgoff == vm_pgoff)
717 return 1;
718 }
719 return 0;
720}
721
722/*
723 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
724 * beyond (at a higher virtual address and file offset than) the vma.
725 *
726 * We cannot merge two vmas if they have differently assigned (non-NULL)
727 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
728 */
729static int
730can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
731 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
732{
733 if (is_mergeable_vma(vma, file, vm_flags) &&
734 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
735 pgoff_t vm_pglen;
736 vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
737 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
738 return 1;
739 }
740 return 0;
741}
742
743/*
744 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
745 * whether that can be merged with its predecessor or its successor.
746 * Or both (it neatly fills a hole).
747 *
748 * In most cases - when called for mmap, brk or mremap - [addr,end) is
749 * certain not to be mapped by the time vma_merge is called; but when
750 * called for mprotect, it is certain to be already mapped (either at
751 * an offset within prev, or at the start of next), and the flags of
752 * this area are about to be changed to vm_flags - and the no-change
753 * case has already been eliminated.
754 *
755 * The following mprotect cases have to be considered, where AAAA is
756 * the area passed down from mprotect_fixup, never extending beyond one
757 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
758 *
759 * AAAA AAAA AAAA AAAA
760 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
761 * cannot merge might become might become might become
762 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
763 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
764 * mremap move: PPPPNNNNNNNN 8
765 * AAAA
766 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
767 * might become case 1 below case 2 below case 3 below
768 *
769 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
770 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
771 */
772struct vm_area_struct *vma_merge(struct mm_struct *mm,
773 struct vm_area_struct *prev, unsigned long addr,
774 unsigned long end, unsigned long vm_flags,
775 struct anon_vma *anon_vma, struct file *file,
776 pgoff_t pgoff, struct mempolicy *policy)
777{
778 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
779 struct vm_area_struct *area, *next;
Rik van Riel5beb4932010-03-05 13:42:07 -0800780 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 /*
783 * We later require that vma->vm_flags == vm_flags,
784 * so this tests vma->vm_flags & VM_SPECIAL, too.
785 */
786 if (vm_flags & VM_SPECIAL)
787 return NULL;
788
789 if (prev)
790 next = prev->vm_next;
791 else
792 next = mm->mmap;
793 area = next;
794 if (next && next->vm_end == end) /* cases 6, 7, 8 */
795 next = next->vm_next;
796
797 /*
798 * Can it merge with the predecessor?
799 */
800 if (prev && prev->vm_end == addr &&
801 mpol_equal(vma_policy(prev), policy) &&
802 can_vma_merge_after(prev, vm_flags,
803 anon_vma, file, pgoff)) {
804 /*
805 * OK, it can. Can we now merge in the successor as well?
806 */
807 if (next && end == next->vm_start &&
808 mpol_equal(policy, vma_policy(next)) &&
809 can_vma_merge_before(next, vm_flags,
810 anon_vma, file, pgoff+pglen) &&
811 is_mergeable_anon_vma(prev->anon_vma,
812 next->anon_vma)) {
813 /* cases 1, 6 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800814 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 next->vm_end, prev->vm_pgoff, NULL);
816 } else /* cases 2, 5, 7 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800817 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 end, prev->vm_pgoff, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -0800819 if (err)
820 return NULL;
Andrea Arcangelib15d00b2011-01-13 15:46:59 -0800821 khugepaged_enter_vma_merge(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return prev;
823 }
824
825 /*
826 * Can this new request be merged in front of next?
827 */
828 if (next && end == next->vm_start &&
829 mpol_equal(policy, vma_policy(next)) &&
830 can_vma_merge_before(next, vm_flags,
831 anon_vma, file, pgoff+pglen)) {
832 if (prev && addr < prev->vm_end) /* case 4 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800833 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 addr, prev->vm_pgoff, NULL);
835 else /* cases 3, 8 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800836 err = vma_adjust(area, addr, next->vm_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 next->vm_pgoff - pglen, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -0800838 if (err)
839 return NULL;
Andrea Arcangelib15d00b2011-01-13 15:46:59 -0800840 khugepaged_enter_vma_merge(area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return area;
842 }
843
844 return NULL;
845}
846
847/*
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -0700848 * Rough compatbility check to quickly see if it's even worth looking
849 * at sharing an anon_vma.
850 *
851 * They need to have the same vm_file, and the flags can only differ
852 * in things that mprotect may change.
853 *
854 * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
855 * we can merge the two vma's. For example, we refuse to merge a vma if
856 * there is a vm_ops->close() function, because that indicates that the
857 * driver is doing some kind of reference counting. But that doesn't
858 * really matter for the anon_vma sharing case.
859 */
860static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
861{
862 return a->vm_end == b->vm_start &&
863 mpol_equal(vma_policy(a), vma_policy(b)) &&
864 a->vm_file == b->vm_file &&
865 !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC)) &&
866 b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
867}
868
869/*
870 * Do some basic sanity checking to see if we can re-use the anon_vma
871 * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
872 * the same as 'old', the other will be the new one that is trying
873 * to share the anon_vma.
874 *
875 * NOTE! This runs with mm_sem held for reading, so it is possible that
876 * the anon_vma of 'old' is concurrently in the process of being set up
877 * by another page fault trying to merge _that_. But that's ok: if it
878 * is being set up, that automatically means that it will be a singleton
879 * acceptable for merging, so we can do all of this optimistically. But
880 * we do that ACCESS_ONCE() to make sure that we never re-load the pointer.
881 *
882 * IOW: that the "list_is_singular()" test on the anon_vma_chain only
883 * matters for the 'stable anon_vma' case (ie the thing we want to avoid
884 * is to return an anon_vma that is "complex" due to having gone through
885 * a fork).
886 *
887 * We also make sure that the two vma's are compatible (adjacent,
888 * and with the same memory policies). That's all stable, even with just
889 * a read lock on the mm_sem.
890 */
891static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
892{
893 if (anon_vma_compatible(a, b)) {
894 struct anon_vma *anon_vma = ACCESS_ONCE(old->anon_vma);
895
896 if (anon_vma && list_is_singular(&old->anon_vma_chain))
897 return anon_vma;
898 }
899 return NULL;
900}
901
902/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
904 * neighbouring vmas for a suitable anon_vma, before it goes off
905 * to allocate a new anon_vma. It checks because a repetitive
906 * sequence of mprotects and faults may otherwise lead to distinct
907 * anon_vmas being allocated, preventing vma merge in subsequent
908 * mprotect.
909 */
910struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
911{
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -0700912 struct anon_vma *anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 struct vm_area_struct *near;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 near = vma->vm_next;
916 if (!near)
917 goto try_prev;
918
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -0700919 anon_vma = reusable_anon_vma(near, vma, near);
920 if (anon_vma)
921 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922try_prev:
923 /*
924 * It is potentially slow to have to call find_vma_prev here.
925 * But it's only on the first write fault on the vma, not
926 * every time, and we could devise a way to avoid it later
927 * (e.g. stash info in next's anon_vma_node when assigning
928 * an anon_vma, or when trying vma_merge). Another time.
929 */
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200930 BUG_ON(find_vma_prev(vma->vm_mm, vma->vm_start, &near) != vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (!near)
932 goto none;
933
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -0700934 anon_vma = reusable_anon_vma(near, near, vma);
935 if (anon_vma)
936 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937none:
938 /*
939 * There's no absolute need to look only at touching neighbours:
940 * we could search further afield for "compatible" anon_vmas.
941 * But it would probably just be a waste of time searching,
942 * or lead to too many vmas hanging off the same anon_vma.
943 * We're trying to allow mprotect remerging later on,
944 * not trying to minimize memory used for anon_vmas.
945 */
946 return NULL;
947}
948
949#ifdef CONFIG_PROC_FS
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700950void vm_stat_account(struct mm_struct *mm, unsigned long flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 struct file *file, long pages)
952{
953 const unsigned long stack_flags
954 = VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (file) {
957 mm->shared_vm += pages;
958 if ((flags & (VM_EXEC|VM_WRITE)) == VM_EXEC)
959 mm->exec_vm += pages;
960 } else if (flags & stack_flags)
961 mm->stack_vm += pages;
962 if (flags & (VM_RESERVED|VM_IO))
963 mm->reserved_vm += pages;
964}
965#endif /* CONFIG_PROC_FS */
966
967/*
Jianjun Kong27f5de72009-09-17 19:26:26 -0700968 * The caller must hold down_write(&current->mm->mmap_sem).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 */
970
ZhenwenXu48aae422009-01-06 14:40:21 -0800971unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 unsigned long len, unsigned long prot,
973 unsigned long flags, unsigned long pgoff)
974{
975 struct mm_struct * mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct inode *inode;
977 unsigned int vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 int error;
Miklos Szeredi0165ab42007-07-15 23:38:26 -0700979 unsigned long reqprot = prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 /*
982 * Does the application expect PROT_READ to imply PROT_EXEC?
983 *
984 * (the exception is when the underlying filesystem is noexec
985 * mounted, in which case we dont add PROT_EXEC.)
986 */
987 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -0800988 if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 prot |= PROT_EXEC;
990
991 if (!len)
992 return -EINVAL;
993
Eric Paris7cd94142007-11-26 18:47:40 -0500994 if (!(flags & MAP_FIXED))
995 addr = round_hint_to_min(addr);
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /* Careful about overflows.. */
998 len = PAGE_ALIGN(len);
Al Viro9206de92009-12-03 15:23:11 -0500999 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return -ENOMEM;
1001
1002 /* offset overflow? */
1003 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
1004 return -EOVERFLOW;
1005
1006 /* Too many mappings? */
1007 if (mm->map_count > sysctl_max_map_count)
1008 return -ENOMEM;
1009
1010 /* Obtain the address to map to. we verify (or select) it and ensure
1011 * that it represents a valid section of the address space.
1012 */
1013 addr = get_unmapped_area(file, addr, len, pgoff, flags);
1014 if (addr & ~PAGE_MASK)
1015 return addr;
1016
1017 /* Do simple checking here so the lower-level routines won't have
1018 * to. we assume access permissions have been handled by the open
1019 * of the memory object, so we don't do any here.
1020 */
1021 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
1022 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1023
Huang Shijiecdf7b342009-09-21 17:03:36 -07001024 if (flags & MAP_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (!can_do_mlock())
1026 return -EPERM;
Rik van Rielba470de2008-10-18 20:26:50 -07001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* mlock MCL_FUTURE? */
1029 if (vm_flags & VM_LOCKED) {
1030 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07001031 locked = len >> PAGE_SHIFT;
1032 locked += mm->locked_vm;
Jiri Slaby59e99e52010-03-05 13:41:44 -08001033 lock_limit = rlimit(RLIMIT_MEMLOCK);
Chris Wright93ea1d02005-05-01 08:58:38 -07001034 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1036 return -EAGAIN;
1037 }
1038
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001039 inode = file ? file->f_path.dentry->d_inode : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 if (file) {
1042 switch (flags & MAP_TYPE) {
1043 case MAP_SHARED:
1044 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
1045 return -EACCES;
1046
1047 /*
1048 * Make sure we don't allow writing to an append-only
1049 * file..
1050 */
1051 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
1052 return -EACCES;
1053
1054 /*
1055 * Make sure there are no mandatory locks on the file.
1056 */
1057 if (locks_verify_locked(inode))
1058 return -EAGAIN;
1059
1060 vm_flags |= VM_SHARED | VM_MAYSHARE;
1061 if (!(file->f_mode & FMODE_WRITE))
1062 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1063
1064 /* fall through */
1065 case MAP_PRIVATE:
1066 if (!(file->f_mode & FMODE_READ))
1067 return -EACCES;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001068 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
Linus Torvalds80c56062006-10-15 14:09:55 -07001069 if (vm_flags & VM_EXEC)
1070 return -EPERM;
1071 vm_flags &= ~VM_MAYEXEC;
1072 }
Linus Torvalds80c56062006-10-15 14:09:55 -07001073
1074 if (!file->f_op || !file->f_op->mmap)
1075 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 break;
1077
1078 default:
1079 return -EINVAL;
1080 }
1081 } else {
1082 switch (flags & MAP_TYPE) {
1083 case MAP_SHARED:
Tejun Heoce363942008-09-03 16:09:47 +02001084 /*
1085 * Ignore pgoff.
1086 */
1087 pgoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 vm_flags |= VM_SHARED | VM_MAYSHARE;
1089 break;
1090 case MAP_PRIVATE:
1091 /*
1092 * Set pgoff according to addr for anon_vma.
1093 */
1094 pgoff = addr >> PAGE_SHIFT;
1095 break;
1096 default:
1097 return -EINVAL;
1098 }
1099 }
1100
Eric Parised032182007-06-28 15:55:21 -04001101 error = security_file_mmap(file, reqprot, prot, flags, addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (error)
1103 return error;
Eric Parised032182007-06-28 15:55:21 -04001104
Mel Gorman5a6fe122009-02-10 14:02:27 +00001105 return mmap_region(file, addr, len, flags, vm_flags, pgoff);
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001106}
1107EXPORT_SYMBOL(do_mmap_pgoff);
1108
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001109SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1110 unsigned long, prot, unsigned long, flags,
1111 unsigned long, fd, unsigned long, pgoff)
1112{
1113 struct file *file = NULL;
1114 unsigned long retval = -EBADF;
1115
1116 if (!(flags & MAP_ANONYMOUS)) {
Al Viro120a7952010-10-30 02:54:44 -04001117 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001118 if (unlikely(flags & MAP_HUGETLB))
1119 return -EINVAL;
1120 file = fget(fd);
1121 if (!file)
1122 goto out;
1123 } else if (flags & MAP_HUGETLB) {
1124 struct user_struct *user = NULL;
1125 /*
1126 * VM_NORESERVE is used because the reservations will be
1127 * taken when vm_ops->mmap() is called
1128 * A dummy user value is used because we are not locking
1129 * memory so no accounting is necessary
1130 */
1131 len = ALIGN(len, huge_page_size(&default_hstate));
1132 file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, VM_NORESERVE,
1133 &user, HUGETLB_ANONHUGE_INODE);
1134 if (IS_ERR(file))
1135 return PTR_ERR(file);
1136 }
1137
1138 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1139
1140 down_write(&current->mm->mmap_sem);
1141 retval = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1142 up_write(&current->mm->mmap_sem);
1143
1144 if (file)
1145 fput(file);
1146out:
1147 return retval;
1148}
1149
Christoph Hellwiga4679372010-03-10 15:21:15 -08001150#ifdef __ARCH_WANT_SYS_OLD_MMAP
1151struct mmap_arg_struct {
1152 unsigned long addr;
1153 unsigned long len;
1154 unsigned long prot;
1155 unsigned long flags;
1156 unsigned long fd;
1157 unsigned long offset;
1158};
1159
1160SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1161{
1162 struct mmap_arg_struct a;
1163
1164 if (copy_from_user(&a, arg, sizeof(a)))
1165 return -EFAULT;
1166 if (a.offset & ~PAGE_MASK)
1167 return -EINVAL;
1168
1169 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1170 a.offset >> PAGE_SHIFT);
1171}
1172#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1173
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001174/*
1175 * Some shared mappigns will want the pages marked read-only
1176 * to track write events. If so, we'll downgrade vm_page_prot
1177 * to the private version (using protection_map[] without the
1178 * VM_SHARED bit).
1179 */
1180int vma_wants_writenotify(struct vm_area_struct *vma)
1181{
1182 unsigned int vm_flags = vma->vm_flags;
1183
1184 /* If it was private or non-writable, the write bit is already clear */
1185 if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
1186 return 0;
1187
1188 /* The backer wishes to know when pages are first written to? */
1189 if (vma->vm_ops && vma->vm_ops->page_mkwrite)
1190 return 1;
1191
1192 /* The open routine did something to the protections already? */
1193 if (pgprot_val(vma->vm_page_prot) !=
Coly Li3ed75eb2007-10-18 23:39:15 -07001194 pgprot_val(vm_get_page_prot(vm_flags)))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001195 return 0;
1196
1197 /* Specialty mapping? */
1198 if (vm_flags & (VM_PFNMAP|VM_INSERTPAGE))
1199 return 0;
1200
1201 /* Can the mapping track the dirty pages? */
1202 return vma->vm_file && vma->vm_file->f_mapping &&
1203 mapping_cap_account_dirty(vma->vm_file->f_mapping);
1204}
1205
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001206/*
1207 * We account for memory if it's a private writeable mapping,
Mel Gorman5a6fe122009-02-10 14:02:27 +00001208 * not hugepages and VM_NORESERVE wasn't set.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001209 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001210static inline int accountable_mapping(struct file *file, unsigned int vm_flags)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001211{
Mel Gorman5a6fe122009-02-10 14:02:27 +00001212 /*
1213 * hugetlb has its own accounting separate from the core VM
1214 * VM_HUGETLB may not be set yet so we cannot check for that flag.
1215 */
1216 if (file && is_file_hugepages(file))
1217 return 0;
1218
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001219 return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1220}
1221
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001222unsigned long mmap_region(struct file *file, unsigned long addr,
1223 unsigned long len, unsigned long flags,
Mel Gorman5a6fe122009-02-10 14:02:27 +00001224 unsigned int vm_flags, unsigned long pgoff)
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001225{
1226 struct mm_struct *mm = current->mm;
1227 struct vm_area_struct *vma, *prev;
1228 int correct_wcount = 0;
1229 int error;
1230 struct rb_node **rb_link, *rb_parent;
1231 unsigned long charged = 0;
1232 struct inode *inode = file ? file->f_path.dentry->d_inode : NULL;
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /* Clear old maps */
1235 error = -ENOMEM;
1236munmap_back:
1237 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1238 if (vma && vma->vm_start < addr + len) {
1239 if (do_munmap(mm, addr, len))
1240 return -ENOMEM;
1241 goto munmap_back;
1242 }
1243
1244 /* Check against address space limit. */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001245 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 return -ENOMEM;
1247
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001248 /*
1249 * Set 'VM_NORESERVE' if we should not account for the
Mel Gorman5a6fe122009-02-10 14:02:27 +00001250 * memory use of this mapping.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001251 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001252 if ((flags & MAP_NORESERVE)) {
1253 /* We honor MAP_NORESERVE if allowed to overcommit */
1254 if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1255 vm_flags |= VM_NORESERVE;
1256
1257 /* hugetlb applies strict overcommit unless MAP_NORESERVE */
1258 if (file && is_file_hugepages(file))
1259 vm_flags |= VM_NORESERVE;
1260 }
Andy Whitcroftcdfd4322008-07-23 21:27:28 -07001261
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001262 /*
1263 * Private writable mapping: check memory availability
1264 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001265 if (accountable_mapping(file, vm_flags)) {
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001266 charged = len >> PAGE_SHIFT;
1267 if (security_vm_enough_memory(charged))
1268 return -ENOMEM;
1269 vm_flags |= VM_ACCOUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
1272 /*
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001273 * Can we just expand an old mapping?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 */
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001275 vma = vma_merge(mm, prev, addr, addr + len, vm_flags, NULL, file, pgoff, NULL);
1276 if (vma)
1277 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /*
1280 * Determine the object being mapped and call the appropriate
1281 * specific mapper. the address has already been validated, but
1282 * not unmapped, but the maps are removed from the list.
1283 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001284 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (!vma) {
1286 error = -ENOMEM;
1287 goto unacct_error;
1288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 vma->vm_mm = mm;
1291 vma->vm_start = addr;
1292 vma->vm_end = addr + len;
1293 vma->vm_flags = vm_flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07001294 vma->vm_page_prot = vm_get_page_prot(vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 vma->vm_pgoff = pgoff;
Rik van Riel5beb4932010-03-05 13:42:07 -08001296 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 if (file) {
1299 error = -EINVAL;
1300 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1301 goto free_vma;
1302 if (vm_flags & VM_DENYWRITE) {
1303 error = deny_write_access(file);
1304 if (error)
1305 goto free_vma;
1306 correct_wcount = 1;
1307 }
1308 vma->vm_file = file;
1309 get_file(file);
1310 error = file->f_op->mmap(file, vma);
1311 if (error)
1312 goto unmap_and_free_vma;
Matt Helsley925d1c42008-04-29 01:01:36 -07001313 if (vm_flags & VM_EXECUTABLE)
1314 added_exe_file_vma(mm);
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001315
1316 /* Can addr have changed??
1317 *
1318 * Answer: Yes, several device drivers can do it in their
1319 * f_op->mmap method. -DaveM
1320 */
1321 addr = vma->vm_start;
1322 pgoff = vma->vm_pgoff;
1323 vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 } else if (vm_flags & VM_SHARED) {
1325 error = shmem_zero_setup(vma);
1326 if (error)
1327 goto free_vma;
1328 }
1329
Magnus Dammc9d0bf22009-12-14 17:59:49 -08001330 if (vma_wants_writenotify(vma)) {
1331 pgprot_t pprot = vma->vm_page_prot;
1332
1333 /* Can vma->vm_page_prot have changed??
1334 *
1335 * Answer: Yes, drivers may have changed it in their
1336 * f_op->mmap method.
1337 *
1338 * Ensures that vmas marked as uncached stay that way.
1339 */
Hugh Dickins1ddd4392007-10-22 20:45:12 -07001340 vma->vm_page_prot = vm_get_page_prot(vm_flags & ~VM_SHARED);
Magnus Dammc9d0bf22009-12-14 17:59:49 -08001341 if (pgprot_val(pprot) == pgprot_val(pgprot_noncached(pprot)))
1342 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1343 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001344
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001345 vma_link(mm, vma, prev, rb_link, rb_parent);
1346 file = vma->vm_file;
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001347
1348 /* Once vma denies write, undo our temporary denial count */
1349 if (correct_wcount)
1350 atomic_inc(&inode->i_writecount);
1351out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001352 perf_event_mmap(vma);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 mm->total_vm += len >> PAGE_SHIFT;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001355 vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (vm_flags & VM_LOCKED) {
KOSAKI Motohiro06f9d8c2010-03-05 13:41:43 -08001357 if (!mlock_vma_pages_range(vma, addr, addr + len))
1358 mm->locked_vm += (len >> PAGE_SHIFT);
Rik van Rielba470de2008-10-18 20:26:50 -07001359 } else if ((flags & MAP_POPULATE) && !(flags & MAP_NONBLOCK))
Nick Piggin54cb8822007-07-19 01:46:59 -07001360 make_pages_present(addr, addr + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return addr;
1362
1363unmap_and_free_vma:
1364 if (correct_wcount)
1365 atomic_inc(&inode->i_writecount);
1366 vma->vm_file = NULL;
1367 fput(file);
1368
1369 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001370 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1371 charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372free_vma:
1373 kmem_cache_free(vm_area_cachep, vma);
1374unacct_error:
1375 if (charged)
1376 vm_unacct_memory(charged);
1377 return error;
1378}
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/* Get an address range which is currently unmapped.
1381 * For shmat() with addr=0.
1382 *
1383 * Ugly calling convention alert:
1384 * Return value with the low bits set means error value,
1385 * ie
1386 * if (ret & ~PAGE_MASK)
1387 * error = ret;
1388 *
1389 * This function "knows" that -ENOMEM has the bits set.
1390 */
1391#ifndef HAVE_ARCH_UNMAPPED_AREA
1392unsigned long
1393arch_get_unmapped_area(struct file *filp, unsigned long addr,
1394 unsigned long len, unsigned long pgoff, unsigned long flags)
1395{
1396 struct mm_struct *mm = current->mm;
1397 struct vm_area_struct *vma;
1398 unsigned long start_addr;
1399
1400 if (len > TASK_SIZE)
1401 return -ENOMEM;
1402
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001403 if (flags & MAP_FIXED)
1404 return addr;
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (addr) {
1407 addr = PAGE_ALIGN(addr);
1408 vma = find_vma(mm, addr);
1409 if (TASK_SIZE - len >= addr &&
1410 (!vma || addr + len <= vma->vm_start))
1411 return addr;
1412 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001413 if (len > mm->cached_hole_size) {
1414 start_addr = addr = mm->free_area_cache;
1415 } else {
1416 start_addr = addr = TASK_UNMAPPED_BASE;
1417 mm->cached_hole_size = 0;
1418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420full_search:
1421 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
1422 /* At this point: (!vma || addr < vma->vm_end). */
1423 if (TASK_SIZE - len < addr) {
1424 /*
1425 * Start a new search - just in case we missed
1426 * some holes.
1427 */
1428 if (start_addr != TASK_UNMAPPED_BASE) {
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001429 addr = TASK_UNMAPPED_BASE;
1430 start_addr = addr;
1431 mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 goto full_search;
1433 }
1434 return -ENOMEM;
1435 }
1436 if (!vma || addr + len <= vma->vm_start) {
1437 /*
1438 * Remember the place where we stopped the search:
1439 */
1440 mm->free_area_cache = addr + len;
1441 return addr;
1442 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001443 if (addr + mm->cached_hole_size < vma->vm_start)
1444 mm->cached_hole_size = vma->vm_start - addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 addr = vma->vm_end;
1446 }
1447}
1448#endif
1449
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001450void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 /*
1453 * Is this a new hole at the lowest possible address?
1454 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001455 if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache) {
1456 mm->free_area_cache = addr;
1457 mm->cached_hole_size = ~0UL;
1458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
1461/*
1462 * This mmap-allocator allocates new areas top-down from below the
1463 * stack's low limit (the base):
1464 */
1465#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1466unsigned long
1467arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1468 const unsigned long len, const unsigned long pgoff,
1469 const unsigned long flags)
1470{
1471 struct vm_area_struct *vma;
1472 struct mm_struct *mm = current->mm;
1473 unsigned long addr = addr0;
1474
1475 /* requested length too big for entire address space */
1476 if (len > TASK_SIZE)
1477 return -ENOMEM;
1478
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001479 if (flags & MAP_FIXED)
1480 return addr;
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 /* requesting a specific address */
1483 if (addr) {
1484 addr = PAGE_ALIGN(addr);
1485 vma = find_vma(mm, addr);
1486 if (TASK_SIZE - len >= addr &&
1487 (!vma || addr + len <= vma->vm_start))
1488 return addr;
1489 }
1490
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001491 /* check if free_area_cache is useful for us */
1492 if (len <= mm->cached_hole_size) {
1493 mm->cached_hole_size = 0;
1494 mm->free_area_cache = mm->mmap_base;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /* either no address requested or can't fit in requested address hole */
1498 addr = mm->free_area_cache;
1499
1500 /* make sure it can fit in the remaining address space */
Linus Torvalds49a43872005-05-18 15:39:33 -07001501 if (addr > len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 vma = find_vma(mm, addr-len);
1503 if (!vma || addr <= vma->vm_start)
1504 /* remember the address as a hint for next time */
1505 return (mm->free_area_cache = addr-len);
1506 }
1507
Chris Wright73219d12005-06-21 17:14:52 -07001508 if (mm->mmap_base < len)
1509 goto bottomup;
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 addr = mm->mmap_base-len;
1512
1513 do {
1514 /*
1515 * Lookup failure means no vma is above this address,
1516 * else if new region fits below vma->vm_start,
1517 * return with success:
1518 */
1519 vma = find_vma(mm, addr);
1520 if (!vma || addr+len <= vma->vm_start)
1521 /* remember the address as a hint for next time */
1522 return (mm->free_area_cache = addr);
1523
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001524 /* remember the largest hole we saw so far */
1525 if (addr + mm->cached_hole_size < vma->vm_start)
1526 mm->cached_hole_size = vma->vm_start - addr;
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 /* try just below the current vma->vm_start */
1529 addr = vma->vm_start-len;
Linus Torvalds49a43872005-05-18 15:39:33 -07001530 } while (len < vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Chris Wright73219d12005-06-21 17:14:52 -07001532bottomup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 /*
1534 * A failed mmap() very likely causes application failure,
1535 * so fall back to the bottom-up function here. This scenario
1536 * can happen with large stack limits and large mmap()
1537 * allocations.
1538 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001539 mm->cached_hole_size = ~0UL;
1540 mm->free_area_cache = TASK_UNMAPPED_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
1542 /*
1543 * Restore the topdown base:
1544 */
1545 mm->free_area_cache = mm->mmap_base;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001546 mm->cached_hole_size = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 return addr;
1549}
1550#endif
1551
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001552void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 /*
1555 * Is this a new hole at the highest possible address?
1556 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001557 if (addr > mm->free_area_cache)
1558 mm->free_area_cache = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /* dont allow allocations above current base */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001561 if (mm->free_area_cache > mm->mmap_base)
1562 mm->free_area_cache = mm->mmap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
1565unsigned long
1566get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1567 unsigned long pgoff, unsigned long flags)
1568{
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001569 unsigned long (*get_area)(struct file *, unsigned long,
1570 unsigned long, unsigned long, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Al Viro9206de92009-12-03 15:23:11 -05001572 unsigned long error = arch_mmap_check(addr, len, flags);
1573 if (error)
1574 return error;
1575
1576 /* Careful about overflows.. */
1577 if (len > TASK_SIZE)
1578 return -ENOMEM;
1579
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001580 get_area = current->mm->get_unmapped_area;
1581 if (file && file->f_op && file->f_op->get_unmapped_area)
1582 get_area = file->f_op->get_unmapped_area;
1583 addr = get_area(file, addr, len, pgoff, flags);
1584 if (IS_ERR_VALUE(addr))
1585 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001587 if (addr > TASK_SIZE - len)
1588 return -ENOMEM;
1589 if (addr & ~PAGE_MASK)
1590 return -EINVAL;
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001591
Martin Schwidefsky08e7d9b2008-02-04 22:29:16 -08001592 return arch_rebalance_pgtables(addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
1595EXPORT_SYMBOL(get_unmapped_area);
1596
1597/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
ZhenwenXu48aae422009-01-06 14:40:21 -08001598struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 struct vm_area_struct *vma = NULL;
1601
1602 if (mm) {
1603 /* Check the cache first. */
1604 /* (Cache hit rate is typically around 35%.) */
1605 vma = mm->mmap_cache;
1606 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1607 struct rb_node * rb_node;
1608
1609 rb_node = mm->mm_rb.rb_node;
1610 vma = NULL;
1611
1612 while (rb_node) {
1613 struct vm_area_struct * vma_tmp;
1614
1615 vma_tmp = rb_entry(rb_node,
1616 struct vm_area_struct, vm_rb);
1617
1618 if (vma_tmp->vm_end > addr) {
1619 vma = vma_tmp;
1620 if (vma_tmp->vm_start <= addr)
1621 break;
1622 rb_node = rb_node->rb_left;
1623 } else
1624 rb_node = rb_node->rb_right;
1625 }
1626 if (vma)
1627 mm->mmap_cache = vma;
1628 }
1629 }
1630 return vma;
1631}
1632
1633EXPORT_SYMBOL(find_vma);
1634
1635/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1636struct vm_area_struct *
1637find_vma_prev(struct mm_struct *mm, unsigned long addr,
1638 struct vm_area_struct **pprev)
1639{
1640 struct vm_area_struct *vma = NULL, *prev = NULL;
ZhenwenXu48aae422009-01-06 14:40:21 -08001641 struct rb_node *rb_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (!mm)
1643 goto out;
1644
1645 /* Guard against addr being lower than the first VMA */
1646 vma = mm->mmap;
1647
1648 /* Go through the RB tree quickly. */
1649 rb_node = mm->mm_rb.rb_node;
1650
1651 while (rb_node) {
1652 struct vm_area_struct *vma_tmp;
1653 vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1654
1655 if (addr < vma_tmp->vm_end) {
1656 rb_node = rb_node->rb_left;
1657 } else {
1658 prev = vma_tmp;
1659 if (!prev->vm_next || (addr < prev->vm_next->vm_end))
1660 break;
1661 rb_node = rb_node->rb_right;
1662 }
1663 }
1664
1665out:
1666 *pprev = prev;
1667 return prev ? prev->vm_next : vma;
1668}
1669
1670/*
1671 * Verify that the stack growth is acceptable and
1672 * update accounting. This is shared with both the
1673 * grow-up and grow-down cases.
1674 */
ZhenwenXu48aae422009-01-06 14:40:21 -08001675static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 struct mm_struct *mm = vma->vm_mm;
1678 struct rlimit *rlim = current->signal->rlim;
Adam Litke0d59a012007-01-30 14:35:39 -08001679 unsigned long new_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 /* address space limit tests */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001682 if (!may_expand_vm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return -ENOMEM;
1684
1685 /* Stack limit test */
Jiri Slaby59e99e52010-03-05 13:41:44 -08001686 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return -ENOMEM;
1688
1689 /* mlock limit tests */
1690 if (vma->vm_flags & VM_LOCKED) {
1691 unsigned long locked;
1692 unsigned long limit;
1693 locked = mm->locked_vm + grow;
Jiri Slaby59e99e52010-03-05 13:41:44 -08001694 limit = ACCESS_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
1695 limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (locked > limit && !capable(CAP_IPC_LOCK))
1697 return -ENOMEM;
1698 }
1699
Adam Litke0d59a012007-01-30 14:35:39 -08001700 /* Check to ensure the stack will not grow into a hugetlb-only region */
1701 new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
1702 vma->vm_end - size;
1703 if (is_hugepage_only_range(vma->vm_mm, new_start, size))
1704 return -EFAULT;
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 /*
1707 * Overcommit.. This must be the final test, as it will
1708 * update security statistics.
1709 */
Hugh Dickins05fa1992009-04-16 21:58:12 +01001710 if (security_vm_enough_memory_mm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return -ENOMEM;
1712
1713 /* Ok, everything looks good - let it rip */
1714 mm->total_vm += grow;
1715 if (vma->vm_flags & VM_LOCKED)
1716 mm->locked_vm += grow;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001717 vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return 0;
1719}
1720
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001721#if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722/*
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001723 * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
1724 * vma is the last one with address > vma->vm_end. Have to extend vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 */
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001726int expand_upwards(struct vm_area_struct *vma, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 int error;
1729
1730 if (!(vma->vm_flags & VM_GROWSUP))
1731 return -EFAULT;
1732
1733 /*
1734 * We must make sure the anon_vma is allocated
1735 * so that the anon_vma locking is not a noop.
1736 */
1737 if (unlikely(anon_vma_prepare(vma)))
1738 return -ENOMEM;
Rik van Rielbb4a3402010-08-09 17:18:37 -07001739 vma_lock_anon_vma(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741 /*
1742 * vma->vm_start/vm_end cannot change under us because the caller
1743 * is required to hold the mmap_sem in read mode. We need the
1744 * anon_vma lock to serialize against concurrent expand_stacks.
Helge Deller06b32f32006-12-19 19:28:33 +01001745 * Also guard against wrapping around to address 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 */
Helge Deller06b32f32006-12-19 19:28:33 +01001747 if (address < PAGE_ALIGN(address+4))
1748 address = PAGE_ALIGN(address+4);
1749 else {
Rik van Rielbb4a3402010-08-09 17:18:37 -07001750 vma_unlock_anon_vma(vma);
Helge Deller06b32f32006-12-19 19:28:33 +01001751 return -ENOMEM;
1752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 error = 0;
1754
1755 /* Somebody else might have raced and expanded it already */
1756 if (address > vma->vm_end) {
1757 unsigned long size, grow;
1758
1759 size = address - vma->vm_start;
1760 grow = (address - vma->vm_end) >> PAGE_SHIFT;
1761
1762 error = acct_stack_growth(vma, size, grow);
Eric B Munson3af9e852010-05-18 15:30:49 +01001763 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 vma->vm_end = address;
Eric B Munson3af9e852010-05-18 15:30:49 +01001765 perf_event_mmap(vma);
1766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Rik van Rielbb4a3402010-08-09 17:18:37 -07001768 vma_unlock_anon_vma(vma);
Andrea Arcangelib15d00b2011-01-13 15:46:59 -08001769 khugepaged_enter_vma_merge(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return error;
1771}
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001772#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774/*
1775 * vma is the first one with address < vma->vm_start. Have to extend vma.
1776 */
Denys Vlasenkocb8f4882008-10-18 20:27:01 -07001777static int expand_downwards(struct vm_area_struct *vma,
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001778 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 int error;
1781
1782 /*
1783 * We must make sure the anon_vma is allocated
1784 * so that the anon_vma locking is not a noop.
1785 */
1786 if (unlikely(anon_vma_prepare(vma)))
1787 return -ENOMEM;
Eric Paris88694772007-11-26 18:47:26 -05001788
1789 address &= PAGE_MASK;
Richard Knutsson88c3f7a2007-12-08 12:02:48 +01001790 error = security_file_mmap(NULL, 0, 0, 0, address, 1);
Eric Paris88694772007-11-26 18:47:26 -05001791 if (error)
1792 return error;
1793
Rik van Rielbb4a3402010-08-09 17:18:37 -07001794 vma_lock_anon_vma(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 /*
1797 * vma->vm_start/vm_end cannot change under us because the caller
1798 * is required to hold the mmap_sem in read mode. We need the
1799 * anon_vma lock to serialize against concurrent expand_stacks.
1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 /* Somebody else might have raced and expanded it already */
1803 if (address < vma->vm_start) {
1804 unsigned long size, grow;
1805
1806 size = vma->vm_end - address;
1807 grow = (vma->vm_start - address) >> PAGE_SHIFT;
1808
1809 error = acct_stack_growth(vma, size, grow);
1810 if (!error) {
1811 vma->vm_start = address;
1812 vma->vm_pgoff -= grow;
Eric B Munson3af9e852010-05-18 15:30:49 +01001813 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 }
Rik van Rielbb4a3402010-08-09 17:18:37 -07001816 vma_unlock_anon_vma(vma);
Andrea Arcangelib15d00b2011-01-13 15:46:59 -08001817 khugepaged_enter_vma_merge(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return error;
1819}
1820
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001821int expand_stack_downwards(struct vm_area_struct *vma, unsigned long address)
1822{
1823 return expand_downwards(vma, address);
1824}
1825
1826#ifdef CONFIG_STACK_GROWSUP
1827int expand_stack(struct vm_area_struct *vma, unsigned long address)
1828{
1829 return expand_upwards(vma, address);
1830}
1831
1832struct vm_area_struct *
1833find_extend_vma(struct mm_struct *mm, unsigned long addr)
1834{
1835 struct vm_area_struct *vma, *prev;
1836
1837 addr &= PAGE_MASK;
1838 vma = find_vma_prev(mm, addr, &prev);
1839 if (vma && (vma->vm_start <= addr))
1840 return vma;
Denys Vlasenko1c127182008-11-12 01:24:41 +01001841 if (!prev || expand_stack(prev, addr))
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001842 return NULL;
Rik van Rielba470de2008-10-18 20:26:50 -07001843 if (prev->vm_flags & VM_LOCKED) {
KOSAKI Motohiroc58267c2010-03-05 13:41:43 -08001844 mlock_vma_pages_range(prev, addr, prev->vm_end);
Rik van Rielba470de2008-10-18 20:26:50 -07001845 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001846 return prev;
1847}
1848#else
1849int expand_stack(struct vm_area_struct *vma, unsigned long address)
1850{
1851 return expand_downwards(vma, address);
1852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854struct vm_area_struct *
1855find_extend_vma(struct mm_struct * mm, unsigned long addr)
1856{
1857 struct vm_area_struct * vma;
1858 unsigned long start;
1859
1860 addr &= PAGE_MASK;
1861 vma = find_vma(mm,addr);
1862 if (!vma)
1863 return NULL;
1864 if (vma->vm_start <= addr)
1865 return vma;
1866 if (!(vma->vm_flags & VM_GROWSDOWN))
1867 return NULL;
1868 start = vma->vm_start;
1869 if (expand_stack(vma, addr))
1870 return NULL;
Rik van Rielba470de2008-10-18 20:26:50 -07001871 if (vma->vm_flags & VM_LOCKED) {
KOSAKI Motohiroc58267c2010-03-05 13:41:43 -08001872 mlock_vma_pages_range(vma, addr, start);
Rik van Rielba470de2008-10-18 20:26:50 -07001873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return vma;
1875}
1876#endif
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001879 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001881 *
1882 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001884static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Hugh Dickins365e9c872005-10-29 18:16:18 -07001886 /* Update high watermark before we lower total_vm */
1887 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001889 long nrpages = vma_pages(vma);
1890
1891 mm->total_vm -= nrpages;
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001892 vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001893 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07001894 } while (vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 validate_mm(mm);
1896}
1897
1898/*
1899 * Get rid of page table information in the indicated region.
1900 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07001901 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 */
1903static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001904 struct vm_area_struct *vma, struct vm_area_struct *prev,
1905 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
Hugh Dickinse0da3822005-04-19 13:29:15 -07001907 struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct mmu_gather *tlb;
1909 unsigned long nr_accounted = 0;
1910
1911 lru_add_drain();
1912 tlb = tlb_gather_mmu(mm, 0);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001913 update_hiwater_rss(mm);
Hugh Dickins508034a2005-10-29 18:16:30 -07001914 unmap_vmas(&tlb, vma, start, end, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 vm_unacct_memory(nr_accounted);
Jan Beulich42b77722008-07-23 21:27:10 -07001916 free_pgtables(tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001917 next? next->vm_start: 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 tlb_finish_mmu(tlb, start, end);
1919}
1920
1921/*
1922 * Create a list of vma's touched by the unmap, removing them from the mm's
1923 * vma list as we go..
1924 */
1925static void
1926detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
1927 struct vm_area_struct *prev, unsigned long end)
1928{
1929 struct vm_area_struct **insertion_point;
1930 struct vm_area_struct *tail_vma = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001931 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
Linus Torvalds297c5ee2010-08-20 16:24:55 -07001934 vma->vm_prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 do {
1936 rb_erase(&vma->vm_rb, &mm->mm_rb);
1937 mm->map_count--;
1938 tail_vma = vma;
1939 vma = vma->vm_next;
1940 } while (vma && vma->vm_start < end);
1941 *insertion_point = vma;
Linus Torvalds297c5ee2010-08-20 16:24:55 -07001942 if (vma)
1943 vma->vm_prev = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 tail_vma->vm_next = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001945 if (mm->unmap_area == arch_unmap_area)
1946 addr = prev ? prev->vm_end : mm->mmap_base;
1947 else
1948 addr = vma ? vma->vm_start : mm->mmap_base;
1949 mm->unmap_area(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 mm->mmap_cache = NULL; /* Kill the cache. */
1951}
1952
1953/*
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08001954 * __split_vma() bypasses sysctl_max_map_count checking. We use this on the
1955 * munmap path where it doesn't make sense to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 */
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08001957static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 unsigned long addr, int new_below)
1959{
1960 struct mempolicy *pol;
1961 struct vm_area_struct *new;
Rik van Riel5beb4932010-03-05 13:42:07 -08001962 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Andi Kleena5516432008-07-23 21:27:41 -07001964 if (is_vm_hugetlb_page(vma) && (addr &
1965 ~(huge_page_mask(hstate_vma(vma)))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return -EINVAL;
1967
Christoph Lametere94b1762006-12-06 20:33:17 -08001968 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (!new)
Rik van Riel5beb4932010-03-05 13:42:07 -08001970 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 /* most fields are the same, copy all, and then fixup */
1973 *new = *vma;
1974
Rik van Riel5beb4932010-03-05 13:42:07 -08001975 INIT_LIST_HEAD(&new->anon_vma_chain);
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (new_below)
1978 new->vm_end = addr;
1979 else {
1980 new->vm_start = addr;
1981 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
1982 }
1983
Lee Schermerhorn846a16b2008-04-28 02:13:09 -07001984 pol = mpol_dup(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (IS_ERR(pol)) {
Rik van Riel5beb4932010-03-05 13:42:07 -08001986 err = PTR_ERR(pol);
1987 goto out_free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989 vma_set_policy(new, pol);
1990
Rik van Riel5beb4932010-03-05 13:42:07 -08001991 if (anon_vma_clone(new, vma))
1992 goto out_free_mpol;
1993
Matt Helsley925d1c42008-04-29 01:01:36 -07001994 if (new->vm_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 get_file(new->vm_file);
Matt Helsley925d1c42008-04-29 01:01:36 -07001996 if (vma->vm_flags & VM_EXECUTABLE)
1997 added_exe_file_vma(mm);
1998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 if (new->vm_ops && new->vm_ops->open)
2001 new->vm_ops->open(new);
2002
2003 if (new_below)
Rik van Riel5beb4932010-03-05 13:42:07 -08002004 err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 ((addr - new->vm_start) >> PAGE_SHIFT), new);
2006 else
Rik van Riel5beb4932010-03-05 13:42:07 -08002007 err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Rik van Riel5beb4932010-03-05 13:42:07 -08002009 /* Success. */
2010 if (!err)
2011 return 0;
2012
2013 /* Clean everything up if vma_adjust failed. */
Rik van Riel58927532010-04-26 12:33:03 -04002014 if (new->vm_ops && new->vm_ops->close)
2015 new->vm_ops->close(new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002016 if (new->vm_file) {
2017 if (vma->vm_flags & VM_EXECUTABLE)
2018 removed_exe_file_vma(mm);
2019 fput(new->vm_file);
2020 }
Andrea Arcangeli2aeadc32010-09-22 13:05:12 -07002021 unlink_anon_vmas(new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002022 out_free_mpol:
2023 mpol_put(pol);
2024 out_free_vma:
2025 kmem_cache_free(vm_area_cachep, new);
2026 out_err:
2027 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002030/*
2031 * Split a vma into two pieces at address 'addr', a new vma is allocated
2032 * either for the first part or the tail.
2033 */
2034int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2035 unsigned long addr, int new_below)
2036{
2037 if (mm->map_count >= sysctl_max_map_count)
2038 return -ENOMEM;
2039
2040 return __split_vma(mm, vma, addr, new_below);
2041}
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043/* Munmap is split into 2 main parts -- this part which finds
2044 * what needs doing, and the areas themselves, which do the
2045 * work. This now handles partial unmappings.
2046 * Jeremy Fitzhardinge <jeremy@goop.org>
2047 */
2048int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
2049{
2050 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07002051 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
2054 return -EINVAL;
2055
2056 if ((len = PAGE_ALIGN(len)) == 0)
2057 return -EINVAL;
2058
2059 /* Find the first overlapping VMA */
Hugh Dickins146425a2005-04-19 13:29:18 -07002060 vma = find_vma_prev(mm, start, &prev);
2061 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 return 0;
Hugh Dickins146425a2005-04-19 13:29:18 -07002063 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 /* if it doesn't overlap, we have nothing.. */
2066 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07002067 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return 0;
2069
2070 /*
2071 * If we need to split any vma, do it now to save pain later.
2072 *
2073 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
2074 * unmapped vm_area_struct will remain in use: so lower split_vma
2075 * places tmp vma above, and higher split_vma places tmp vma below.
2076 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002077 if (start > vma->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002078 int error;
2079
2080 /*
2081 * Make sure that map_count on return from munmap() will
2082 * not exceed its limit; but let map_count go just above
2083 * its limit temporarily, to help free resources as expected.
2084 */
2085 if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2086 return -ENOMEM;
2087
2088 error = __split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (error)
2090 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07002091 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
2093
2094 /* Does it split the last one? */
2095 last = find_vma(mm, end);
2096 if (last && end > last->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002097 int error = __split_vma(mm, last, end, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (error)
2099 return error;
2100 }
Hugh Dickins146425a2005-04-19 13:29:18 -07002101 vma = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 /*
Rik van Rielba470de2008-10-18 20:26:50 -07002104 * unlock any mlock()ed ranges before detaching vmas
2105 */
2106 if (mm->locked_vm) {
2107 struct vm_area_struct *tmp = vma;
2108 while (tmp && tmp->vm_start < end) {
2109 if (tmp->vm_flags & VM_LOCKED) {
2110 mm->locked_vm -= vma_pages(tmp);
2111 munlock_vma_pages_all(tmp);
2112 }
2113 tmp = tmp->vm_next;
2114 }
2115 }
2116
2117 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 * Remove the vma's, and unmap the actual pages
2119 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002120 detach_vmas_to_be_unmapped(mm, vma, prev, end);
2121 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002124 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 return 0;
2127}
2128
2129EXPORT_SYMBOL(do_munmap);
2130
Heiko Carstens6a6160a2009-01-14 14:14:15 +01002131SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 int ret;
2134 struct mm_struct *mm = current->mm;
2135
2136 profile_munmap(addr);
2137
2138 down_write(&mm->mmap_sem);
2139 ret = do_munmap(mm, addr, len);
2140 up_write(&mm->mmap_sem);
2141 return ret;
2142}
2143
2144static inline void verify_mm_writelocked(struct mm_struct *mm)
2145{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08002146#ifdef CONFIG_DEBUG_VM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
2148 WARN_ON(1);
2149 up_read(&mm->mmap_sem);
2150 }
2151#endif
2152}
2153
2154/*
2155 * this is really a simplified "do_mmap". it only handles
2156 * anonymous maps. eventually we may be able to do some
2157 * brk-specific accounting here.
2158 */
2159unsigned long do_brk(unsigned long addr, unsigned long len)
2160{
2161 struct mm_struct * mm = current->mm;
2162 struct vm_area_struct * vma, * prev;
2163 unsigned long flags;
2164 struct rb_node ** rb_link, * rb_parent;
2165 pgoff_t pgoff = addr >> PAGE_SHIFT;
Kirill Korotaev3a459752006-09-07 14:17:04 +04002166 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 len = PAGE_ALIGN(len);
2169 if (!len)
2170 return addr;
2171
Richard Knutsson88c3f7a2007-12-08 12:02:48 +01002172 error = security_file_mmap(NULL, 0, 0, 0, addr, 1);
Eric Paris5a211a52007-12-04 11:06:55 -05002173 if (error)
2174 return error;
2175
Kirill Korotaev3a459752006-09-07 14:17:04 +04002176 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
2177
Al Viro2c6a1012009-12-03 19:40:46 -05002178 error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
2179 if (error & ~PAGE_MASK)
Kirill Korotaev3a459752006-09-07 14:17:04 +04002180 return error;
2181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 /*
2183 * mlock MCL_FUTURE?
2184 */
2185 if (mm->def_flags & VM_LOCKED) {
2186 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07002187 locked = len >> PAGE_SHIFT;
2188 locked += mm->locked_vm;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002189 lock_limit = rlimit(RLIMIT_MEMLOCK);
Chris Wright93ea1d02005-05-01 08:58:38 -07002190 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
2192 return -EAGAIN;
2193 }
2194
2195 /*
2196 * mm->mmap_sem is required to protect against another thread
2197 * changing the mappings in case we sleep.
2198 */
2199 verify_mm_writelocked(mm);
2200
2201 /*
2202 * Clear old maps. this also does some error checking for us
2203 */
2204 munmap_back:
2205 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
2206 if (vma && vma->vm_start < addr + len) {
2207 if (do_munmap(mm, addr, len))
2208 return -ENOMEM;
2209 goto munmap_back;
2210 }
2211
2212 /* Check against address space limits *after* clearing old maps... */
akpm@osdl.org119f6572005-05-01 08:58:35 -07002213 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return -ENOMEM;
2215
2216 if (mm->map_count > sysctl_max_map_count)
2217 return -ENOMEM;
2218
2219 if (security_vm_enough_memory(len >> PAGE_SHIFT))
2220 return -ENOMEM;
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 /* Can we just expand an old private anonymous mapping? */
Rik van Rielba470de2008-10-18 20:26:50 -07002223 vma = vma_merge(mm, prev, addr, addr + len, flags,
2224 NULL, NULL, pgoff, NULL);
2225 if (vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 goto out;
2227
2228 /*
2229 * create a vma struct for an anonymous mapping
2230 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002231 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (!vma) {
2233 vm_unacct_memory(len >> PAGE_SHIFT);
2234 return -ENOMEM;
2235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Rik van Riel5beb4932010-03-05 13:42:07 -08002237 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 vma->vm_mm = mm;
2239 vma->vm_start = addr;
2240 vma->vm_end = addr + len;
2241 vma->vm_pgoff = pgoff;
2242 vma->vm_flags = flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07002243 vma->vm_page_prot = vm_get_page_prot(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 vma_link(mm, vma, prev, rb_link, rb_parent);
2245out:
Eric B Munson3af9e852010-05-18 15:30:49 +01002246 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 mm->total_vm += len >> PAGE_SHIFT;
2248 if (flags & VM_LOCKED) {
Rik van Rielba470de2008-10-18 20:26:50 -07002249 if (!mlock_vma_pages_range(vma, addr, addr + len))
2250 mm->locked_vm += (len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 }
2252 return addr;
2253}
2254
2255EXPORT_SYMBOL(do_brk);
2256
2257/* Release all mmaps. */
2258void exit_mmap(struct mm_struct *mm)
2259{
2260 struct mmu_gather *tlb;
Rik van Rielba470de2008-10-18 20:26:50 -07002261 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 unsigned long nr_accounted = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -07002263 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002265 /* mm's last user has gone, and its about to be pulled down */
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07002266 mmu_notifier_release(mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002267
Rik van Rielba470de2008-10-18 20:26:50 -07002268 if (mm->locked_vm) {
2269 vma = mm->mmap;
2270 while (vma) {
2271 if (vma->vm_flags & VM_LOCKED)
2272 munlock_vma_pages_all(vma);
2273 vma = vma->vm_next;
2274 }
2275 }
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002276
2277 arch_exit_mmap(mm);
2278
Rik van Rielba470de2008-10-18 20:26:50 -07002279 vma = mm->mmap;
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002280 if (!vma) /* Can happen if dup_mmap() received an OOM */
2281 return;
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 flush_cache_mm(mm);
Hugh Dickinse0da3822005-04-19 13:29:15 -07002285 tlb = tlb_gather_mmu(mm, 1);
Oleg Nesterov901608d2009-01-06 14:40:29 -08002286 /* update_hiwater_rss(mm) here? but nobody should be looking */
Hugh Dickinse0da3822005-04-19 13:29:15 -07002287 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Hugh Dickins508034a2005-10-29 18:16:30 -07002288 end = unmap_vmas(&tlb, vma, 0, -1, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 vm_unacct_memory(nr_accounted);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002290
Jan Beulich42b77722008-07-23 21:27:10 -07002291 free_pgtables(tlb, vma, FIRST_USER_ADDRESS, 0);
Hugh Dickinsee39b372005-04-19 13:29:15 -07002292 tlb_finish_mmu(tlb, 0, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /*
Hugh Dickins8f4f8c12005-10-29 18:16:29 -07002295 * Walk the list again, actually closing and freeing it,
2296 * with preemption enabled, without holding any MM locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002298 while (vma)
2299 vma = remove_vma(vma);
Hugh Dickinse0da3822005-04-19 13:29:15 -07002300
Hugh Dickinse2cdef82005-04-19 13:29:19 -07002301 BUG_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
2304/* Insert vm structure into process list sorted by address
2305 * and into the inode's i_mmap tree. If vm_file is non-NULL
2306 * then i_mmap_lock is taken here.
2307 */
2308int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
2309{
2310 struct vm_area_struct * __vma, * prev;
2311 struct rb_node ** rb_link, * rb_parent;
2312
2313 /*
2314 * The vm_pgoff of a purely anonymous vma should be irrelevant
2315 * until its first write fault, when page's anon_vma and index
2316 * are set. But now set the vm_pgoff it will almost certainly
2317 * end up with (unless mremap moves it elsewhere before that
2318 * first wfault), so /proc/pid/maps tells a consistent story.
2319 *
2320 * By setting it to reflect the virtual start address of the
2321 * vma, merges and splits can happen in a seamless way, just
2322 * using the existing file pgoff checks and manipulations.
2323 * Similarly in do_mmap_pgoff and in do_brk.
2324 */
2325 if (!vma->vm_file) {
2326 BUG_ON(vma->anon_vma);
2327 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2328 }
2329 __vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
2330 if (__vma && __vma->vm_start < vma->vm_end)
2331 return -ENOMEM;
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01002332 if ((vma->vm_flags & VM_ACCOUNT) &&
Alan Cox34b4e4a2007-08-22 14:01:28 -07002333 security_vm_enough_memory_mm(mm, vma_pages(vma)))
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01002334 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 vma_link(mm, vma, prev, rb_link, rb_parent);
2336 return 0;
2337}
2338
2339/*
2340 * Copy the vma structure to a new location in the same mm,
2341 * prior to moving page table entries, to effect an mremap move.
2342 */
2343struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
2344 unsigned long addr, unsigned long len, pgoff_t pgoff)
2345{
2346 struct vm_area_struct *vma = *vmap;
2347 unsigned long vma_start = vma->vm_start;
2348 struct mm_struct *mm = vma->vm_mm;
2349 struct vm_area_struct *new_vma, *prev;
2350 struct rb_node **rb_link, *rb_parent;
2351 struct mempolicy *pol;
2352
2353 /*
2354 * If anonymous vma has not yet been faulted, update new pgoff
2355 * to match new location, to increase its chance of merging.
2356 */
2357 if (!vma->vm_file && !vma->anon_vma)
2358 pgoff = addr >> PAGE_SHIFT;
2359
2360 find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
2361 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
2362 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
2363 if (new_vma) {
2364 /*
2365 * Source vma may have been merged into new_vma
2366 */
2367 if (vma_start >= new_vma->vm_start &&
2368 vma_start < new_vma->vm_end)
2369 *vmap = new_vma;
2370 } else {
Christoph Lametere94b1762006-12-06 20:33:17 -08002371 new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 if (new_vma) {
2373 *new_vma = *vma;
Lee Schermerhorn846a16b2008-04-28 02:13:09 -07002374 pol = mpol_dup(vma_policy(vma));
Rik van Riel5beb4932010-03-05 13:42:07 -08002375 if (IS_ERR(pol))
2376 goto out_free_vma;
2377 INIT_LIST_HEAD(&new_vma->anon_vma_chain);
2378 if (anon_vma_clone(new_vma, vma))
2379 goto out_free_mempol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 vma_set_policy(new_vma, pol);
2381 new_vma->vm_start = addr;
2382 new_vma->vm_end = addr + len;
2383 new_vma->vm_pgoff = pgoff;
Matt Helsley925d1c42008-04-29 01:01:36 -07002384 if (new_vma->vm_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 get_file(new_vma->vm_file);
Matt Helsley925d1c42008-04-29 01:01:36 -07002386 if (vma->vm_flags & VM_EXECUTABLE)
2387 added_exe_file_vma(mm);
2388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (new_vma->vm_ops && new_vma->vm_ops->open)
2390 new_vma->vm_ops->open(new_vma);
2391 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2392 }
2393 }
2394 return new_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002395
2396 out_free_mempol:
2397 mpol_put(pol);
2398 out_free_vma:
2399 kmem_cache_free(vm_area_cachep, new_vma);
2400 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002402
2403/*
2404 * Return true if the calling process may expand its vm space by the passed
2405 * number of pages
2406 */
2407int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2408{
2409 unsigned long cur = mm->total_vm; /* pages */
2410 unsigned long lim;
2411
Jiri Slaby59e99e52010-03-05 13:41:44 -08002412 lim = rlimit(RLIMIT_AS) >> PAGE_SHIFT;
akpm@osdl.org119f6572005-05-01 08:58:35 -07002413
2414 if (cur + npages > lim)
2415 return 0;
2416 return 1;
2417}
Roland McGrathfa5dc222007-02-08 14:20:41 -08002418
2419
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002420static int special_mapping_fault(struct vm_area_struct *vma,
2421 struct vm_fault *vmf)
Roland McGrathfa5dc222007-02-08 14:20:41 -08002422{
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002423 pgoff_t pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002424 struct page **pages;
2425
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002426 /*
2427 * special mappings have no vm_file, and in that case, the mm
2428 * uses vm_pgoff internally. So we have to subtract it from here.
2429 * We are allowed to do this because we are the mm; do not copy
2430 * this code into drivers!
2431 */
2432 pgoff = vmf->pgoff - vma->vm_pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002433
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002434 for (pages = vma->vm_private_data; pgoff && *pages; ++pages)
2435 pgoff--;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002436
2437 if (*pages) {
2438 struct page *page = *pages;
2439 get_page(page);
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002440 vmf->page = page;
2441 return 0;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002442 }
2443
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002444 return VM_FAULT_SIGBUS;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002445}
2446
2447/*
2448 * Having a close hook prevents vma merging regardless of flags.
2449 */
2450static void special_mapping_close(struct vm_area_struct *vma)
2451{
2452}
2453
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002454static const struct vm_operations_struct special_mapping_vmops = {
Roland McGrathfa5dc222007-02-08 14:20:41 -08002455 .close = special_mapping_close,
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002456 .fault = special_mapping_fault,
Roland McGrathfa5dc222007-02-08 14:20:41 -08002457};
2458
2459/*
2460 * Called with mm->mmap_sem held for writing.
2461 * Insert a new vma covering the given region, with the given flags.
2462 * Its pages are supplied by the given array of struct page *.
2463 * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
2464 * The region past the last page supplied will always produce SIGBUS.
2465 * The array pointer and the pages it points to are assumed to stay alive
2466 * for as long as this mapping might exist.
2467 */
2468int install_special_mapping(struct mm_struct *mm,
2469 unsigned long addr, unsigned long len,
2470 unsigned long vm_flags, struct page **pages)
2471{
Tavis Ormandy462e635e2010-12-09 15:29:42 +01002472 int ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002473 struct vm_area_struct *vma;
2474
2475 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
2476 if (unlikely(vma == NULL))
2477 return -ENOMEM;
2478
Rik van Riel5beb4932010-03-05 13:42:07 -08002479 INIT_LIST_HEAD(&vma->anon_vma_chain);
Roland McGrathfa5dc222007-02-08 14:20:41 -08002480 vma->vm_mm = mm;
2481 vma->vm_start = addr;
2482 vma->vm_end = addr + len;
2483
Nick Piggin2f987352008-02-02 03:08:53 +01002484 vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND;
Coly Li3ed75eb2007-10-18 23:39:15 -07002485 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Roland McGrathfa5dc222007-02-08 14:20:41 -08002486
2487 vma->vm_ops = &special_mapping_vmops;
2488 vma->vm_private_data = pages;
2489
Tavis Ormandy462e635e2010-12-09 15:29:42 +01002490 ret = security_file_mmap(NULL, 0, 0, 0, vma->vm_start, 1);
2491 if (ret)
2492 goto out;
2493
2494 ret = insert_vm_struct(mm, vma);
2495 if (ret)
2496 goto out;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002497
2498 mm->total_vm += len >> PAGE_SHIFT;
2499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002500 perf_event_mmap(vma);
Peter Zijlstra089dd792009-06-05 14:04:55 +02002501
Roland McGrathfa5dc222007-02-08 14:20:41 -08002502 return 0;
Tavis Ormandy462e635e2010-12-09 15:29:42 +01002503
2504out:
2505 kmem_cache_free(vm_area_cachep, vma);
2506 return ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002507}
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002508
2509static DEFINE_MUTEX(mm_all_locks_mutex);
2510
Peter Zijlstra454ed842008-08-11 09:30:25 +02002511static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002512{
Rik van Riel012f18002010-08-09 17:18:40 -07002513 if (!test_bit(0, (unsigned long *) &anon_vma->root->head.next)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002514 /*
2515 * The LSB of head.next can't change from under us
2516 * because we hold the mm_all_locks_mutex.
2517 */
Rik van Riel012f18002010-08-09 17:18:40 -07002518 spin_lock_nest_lock(&anon_vma->root->lock, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002519 /*
2520 * We can safely modify head.next after taking the
Rik van Riel012f18002010-08-09 17:18:40 -07002521 * anon_vma->root->lock. If some other vma in this mm shares
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002522 * the same anon_vma we won't take it again.
2523 *
2524 * No need of atomic instructions here, head.next
2525 * can't change from under us thanks to the
Rik van Riel012f18002010-08-09 17:18:40 -07002526 * anon_vma->root->lock.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002527 */
2528 if (__test_and_set_bit(0, (unsigned long *)
Rik van Riel012f18002010-08-09 17:18:40 -07002529 &anon_vma->root->head.next))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002530 BUG();
2531 }
2532}
2533
Peter Zijlstra454ed842008-08-11 09:30:25 +02002534static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002535{
2536 if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
2537 /*
2538 * AS_MM_ALL_LOCKS can't change from under us because
2539 * we hold the mm_all_locks_mutex.
2540 *
2541 * Operations on ->flags have to be atomic because
2542 * even if AS_MM_ALL_LOCKS is stable thanks to the
2543 * mm_all_locks_mutex, there may be other cpus
2544 * changing other bitflags in parallel to us.
2545 */
2546 if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
2547 BUG();
Peter Zijlstra454ed842008-08-11 09:30:25 +02002548 spin_lock_nest_lock(&mapping->i_mmap_lock, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002549 }
2550}
2551
2552/*
2553 * This operation locks against the VM for all pte/vma/mm related
2554 * operations that could ever happen on a certain mm. This includes
2555 * vmtruncate, try_to_unmap, and all page faults.
2556 *
2557 * The caller must take the mmap_sem in write mode before calling
2558 * mm_take_all_locks(). The caller isn't allowed to release the
2559 * mmap_sem until mm_drop_all_locks() returns.
2560 *
2561 * mmap_sem in write mode is required in order to block all operations
2562 * that could modify pagetables and free pages without need of
2563 * altering the vma layout (for example populate_range() with
2564 * nonlinear vmas). It's also needed in write mode to avoid new
2565 * anon_vmas to be associated with existing vmas.
2566 *
2567 * A single task can't take more than one mm_take_all_locks() in a row
2568 * or it would deadlock.
2569 *
2570 * The LSB in anon_vma->head.next and the AS_MM_ALL_LOCKS bitflag in
2571 * mapping->flags avoid to take the same lock twice, if more than one
2572 * vma in this mm is backed by the same anon_vma or address_space.
2573 *
2574 * We can take all the locks in random order because the VM code
2575 * taking i_mmap_lock or anon_vma->lock outside the mmap_sem never
2576 * takes more than one of them in a row. Secondly we're protected
2577 * against a concurrent mm_take_all_locks() by the mm_all_locks_mutex.
2578 *
2579 * mm_take_all_locks() and mm_drop_all_locks are expensive operations
2580 * that may have to take thousand of locks.
2581 *
2582 * mm_take_all_locks() can fail if it's interrupted by signals.
2583 */
2584int mm_take_all_locks(struct mm_struct *mm)
2585{
2586 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002587 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002588 int ret = -EINTR;
2589
2590 BUG_ON(down_read_trylock(&mm->mmap_sem));
2591
2592 mutex_lock(&mm_all_locks_mutex);
2593
2594 for (vma = mm->mmap; vma; vma = vma->vm_next) {
2595 if (signal_pending(current))
2596 goto out_unlock;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002597 if (vma->vm_file && vma->vm_file->f_mapping)
Peter Zijlstra454ed842008-08-11 09:30:25 +02002598 vm_lock_mapping(mm, vma->vm_file->f_mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002599 }
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02002600
2601 for (vma = mm->mmap; vma; vma = vma->vm_next) {
2602 if (signal_pending(current))
2603 goto out_unlock;
2604 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08002605 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
2606 vm_lock_anon_vma(mm, avc->anon_vma);
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02002607 }
2608
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002609 ret = 0;
2610
2611out_unlock:
2612 if (ret)
2613 mm_drop_all_locks(mm);
2614
2615 return ret;
2616}
2617
2618static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
2619{
Rik van Riel012f18002010-08-09 17:18:40 -07002620 if (test_bit(0, (unsigned long *) &anon_vma->root->head.next)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002621 /*
2622 * The LSB of head.next can't change to 0 from under
2623 * us because we hold the mm_all_locks_mutex.
2624 *
2625 * We must however clear the bitflag before unlocking
2626 * the vma so the users using the anon_vma->head will
2627 * never see our bitflag.
2628 *
2629 * No need of atomic instructions here, head.next
2630 * can't change from under us until we release the
Rik van Riel012f18002010-08-09 17:18:40 -07002631 * anon_vma->root->lock.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002632 */
2633 if (!__test_and_clear_bit(0, (unsigned long *)
Rik van Riel012f18002010-08-09 17:18:40 -07002634 &anon_vma->root->head.next))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002635 BUG();
Rik van Rielcba48b92010-08-09 17:18:38 -07002636 anon_vma_unlock(anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002637 }
2638}
2639
2640static void vm_unlock_mapping(struct address_space *mapping)
2641{
2642 if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
2643 /*
2644 * AS_MM_ALL_LOCKS can't change to 0 from under us
2645 * because we hold the mm_all_locks_mutex.
2646 */
2647 spin_unlock(&mapping->i_mmap_lock);
2648 if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
2649 &mapping->flags))
2650 BUG();
2651 }
2652}
2653
2654/*
2655 * The mmap_sem cannot be released by the caller until
2656 * mm_drop_all_locks() returns.
2657 */
2658void mm_drop_all_locks(struct mm_struct *mm)
2659{
2660 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002661 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002662
2663 BUG_ON(down_read_trylock(&mm->mmap_sem));
2664 BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
2665
2666 for (vma = mm->mmap; vma; vma = vma->vm_next) {
2667 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08002668 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
2669 vm_unlock_anon_vma(avc->anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002670 if (vma->vm_file && vma->vm_file->f_mapping)
2671 vm_unlock_mapping(vma->vm_file->f_mapping);
2672 }
2673
2674 mutex_unlock(&mm_all_locks_mutex);
2675}
David Howells8feae132009-01-08 12:04:47 +00002676
2677/*
2678 * initialise the VMA slab
2679 */
2680void __init mmap_init(void)
2681{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07002682 int ret;
2683
2684 ret = percpu_counter_init(&vm_committed_as, 0);
2685 VM_BUG_ON(ret);
David Howells8feae132009-01-08 12:04:47 +00002686}