blob: e66a0b524affef544588a8c4f8a92d3473b79a34 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/mmap.c
3 *
4 * Written by obz.
5 *
6 * Address space accounting code <alan@redhat.com>
7 */
8
9#include <linux/slab.h>
10#include <linux/mm.h>
11#include <linux/shm.h>
12#include <linux/mman.h>
13#include <linux/pagemap.h>
14#include <linux/swap.h>
15#include <linux/syscalls.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/file.h>
19#include <linux/fs.h>
20#include <linux/personality.h>
21#include <linux/security.h>
22#include <linux/hugetlb.h>
23#include <linux/profile.h>
24#include <linux/module.h>
25#include <linux/mount.h>
26#include <linux/mempolicy.h>
27#include <linux/rmap.h>
28
29#include <asm/uaccess.h>
30#include <asm/cacheflush.h>
31#include <asm/tlb.h>
32
Kirill Korotaev3a459752006-09-07 14:17:04 +040033#ifndef arch_mmap_check
34#define arch_mmap_check(addr, len, flags) (0)
35#endif
36
Hugh Dickinse0da3822005-04-19 13:29:15 -070037static void unmap_region(struct mm_struct *mm,
38 struct vm_area_struct *vma, struct vm_area_struct *prev,
39 unsigned long start, unsigned long end);
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
42 * WARNING: the debugging will use recursive algorithms so never enable this
43 * unless you know what you are doing.
44 */
45#undef DEBUG_MM_RB
46
47/* description of effects of mapping type and prot in current implementation.
48 * this is due to the limited x86 page protection hardware. The expected
49 * behavior is in parens:
50 *
51 * map_type prot
52 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
53 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
54 * w: (no) no w: (no) no w: (yes) yes w: (no) no
55 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
56 *
57 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
58 * w: (no) no w: (no) no w: (copy) copy w: (no) no
59 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
60 *
61 */
62pgprot_t protection_map[16] = {
63 __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
64 __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
65};
66
67int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
68int sysctl_overcommit_ratio = 50; /* default is 50% */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070069int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070atomic_t vm_committed_space = ATOMIC_INIT(0);
71
72/*
73 * Check that a process has enough memory to allocate a new virtual
74 * mapping. 0 means there is enough memory for the allocation to
75 * succeed and -ENOMEM implies there is not.
76 *
77 * We currently support three overcommit policies, which are set via the
78 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
79 *
80 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
81 * Additional code 2002 Jul 20 by Robert Love.
82 *
83 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
84 *
85 * Note this is a helper function intended to be used by LSMs which
86 * wish to use this logic.
87 */
88int __vm_enough_memory(long pages, int cap_sys_admin)
89{
90 unsigned long free, allowed;
91
92 vm_acct_memory(pages);
93
94 /*
95 * Sometimes we want to use more memory than we have
96 */
97 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
98 return 0;
99
100 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
101 unsigned long n;
102
Christoph Lameter347ce432006-06-30 01:55:35 -0700103 free = global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 free += nr_swap_pages;
105
106 /*
107 * Any slabs which are created with the
108 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
109 * which are reclaimable, under pressure. The dentry
110 * cache and most inode caches should fall into this
111 */
112 free += atomic_read(&slab_reclaim_pages);
113
114 /*
115 * Leave the last 3% for root
116 */
117 if (!cap_sys_admin)
118 free -= free / 32;
119
120 if (free > pages)
121 return 0;
122
123 /*
124 * nr_free_pages() is very expensive on large systems,
125 * only call if we're about to fail.
126 */
127 n = nr_free_pages();
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700128
129 /*
130 * Leave reserved pages. The pages are not for anonymous pages.
131 */
132 if (n <= totalreserve_pages)
133 goto error;
134 else
135 n -= totalreserve_pages;
136
137 /*
138 * Leave the last 3% for root
139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (!cap_sys_admin)
141 n -= n / 32;
142 free += n;
143
144 if (free > pages)
145 return 0;
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700146
147 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150 allowed = (totalram_pages - hugetlb_total_pages())
151 * sysctl_overcommit_ratio / 100;
152 /*
153 * Leave the last 3% for root
154 */
155 if (!cap_sys_admin)
156 allowed -= allowed / 32;
157 allowed += total_swap_pages;
158
159 /* Don't let a single process grow too big:
160 leave 3% of the size of this process for other processes */
161 allowed -= current->mm->total_vm / 32;
162
Simon Derr2f60f8d2005-08-04 19:52:03 -0700163 /*
164 * cast `allowed' as a signed long because vm_committed_space
165 * sometimes has a negative value
166 */
167 if (atomic_read(&vm_committed_space) < (long)allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700169error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 vm_unacct_memory(pages);
171
172 return -ENOMEM;
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175EXPORT_SYMBOL(__vm_enough_memory);
176
177/*
178 * Requires inode->i_mapping->i_mmap_lock
179 */
180static void __remove_shared_vm_struct(struct vm_area_struct *vma,
181 struct file *file, struct address_space *mapping)
182{
183 if (vma->vm_flags & VM_DENYWRITE)
184 atomic_inc(&file->f_dentry->d_inode->i_writecount);
185 if (vma->vm_flags & VM_SHARED)
186 mapping->i_mmap_writable--;
187
188 flush_dcache_mmap_lock(mapping);
189 if (unlikely(vma->vm_flags & VM_NONLINEAR))
190 list_del_init(&vma->shared.vm_set.list);
191 else
192 vma_prio_tree_remove(vma, &mapping->i_mmap);
193 flush_dcache_mmap_unlock(mapping);
194}
195
196/*
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700197 * Unlink a file-based vm structure from its prio_tree, to hide
198 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700200void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 struct file *file = vma->vm_file;
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (file) {
205 struct address_space *mapping = file->f_mapping;
206 spin_lock(&mapping->i_mmap_lock);
207 __remove_shared_vm_struct(vma, file, mapping);
208 spin_unlock(&mapping->i_mmap_lock);
209 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700210}
211
212/*
213 * Close a vm structure and free it, returning the next.
214 */
215static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
216{
217 struct vm_area_struct *next = vma->vm_next;
218
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700219 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (vma->vm_ops && vma->vm_ops->close)
221 vma->vm_ops->close(vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700222 if (vma->vm_file)
223 fput(vma->vm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 mpol_free(vma_policy(vma));
225 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700226 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229asmlinkage unsigned long sys_brk(unsigned long brk)
230{
231 unsigned long rlim, retval;
232 unsigned long newbrk, oldbrk;
233 struct mm_struct *mm = current->mm;
234
235 down_write(&mm->mmap_sem);
236
237 if (brk < mm->end_code)
238 goto out;
Ram Gupta1e624192006-04-10 22:52:57 -0700239
240 /*
241 * Check against rlimit here. If this check is done later after the test
242 * of oldbrk with newbrk then it can escape the test and let the data
243 * segment grow beyond its set limit the in case where the limit is
244 * not page aligned -Ram Gupta
245 */
246 rlim = current->signal->rlim[RLIMIT_DATA].rlim_cur;
247 if (rlim < RLIM_INFINITY && brk - mm->start_data > rlim)
248 goto out;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 newbrk = PAGE_ALIGN(brk);
251 oldbrk = PAGE_ALIGN(mm->brk);
252 if (oldbrk == newbrk)
253 goto set_brk;
254
255 /* Always allow shrinking brk. */
256 if (brk <= mm->brk) {
257 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
258 goto set_brk;
259 goto out;
260 }
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* Check against existing mmap mappings. */
263 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
264 goto out;
265
266 /* Ok, looks good - let it rip. */
267 if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
268 goto out;
269set_brk:
270 mm->brk = brk;
271out:
272 retval = mm->brk;
273 up_write(&mm->mmap_sem);
274 return retval;
275}
276
277#ifdef DEBUG_MM_RB
278static int browse_rb(struct rb_root *root)
279{
280 int i = 0, j;
281 struct rb_node *nd, *pn = NULL;
282 unsigned long prev = 0, pend = 0;
283
284 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
285 struct vm_area_struct *vma;
286 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
287 if (vma->vm_start < prev)
288 printk("vm_start %lx prev %lx\n", vma->vm_start, prev), i = -1;
289 if (vma->vm_start < pend)
290 printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
291 if (vma->vm_start > vma->vm_end)
292 printk("vm_end %lx < vm_start %lx\n", vma->vm_end, vma->vm_start);
293 i++;
294 pn = nd;
295 }
296 j = 0;
297 for (nd = pn; nd; nd = rb_prev(nd)) {
298 j++;
299 }
300 if (i != j)
301 printk("backwards %d, forwards %d\n", j, i), i = 0;
302 return i;
303}
304
305void validate_mm(struct mm_struct *mm)
306{
307 int bug = 0;
308 int i = 0;
309 struct vm_area_struct *tmp = mm->mmap;
310 while (tmp) {
311 tmp = tmp->vm_next;
312 i++;
313 }
314 if (i != mm->map_count)
315 printk("map_count %d vm_next %d\n", mm->map_count, i), bug = 1;
316 i = browse_rb(&mm->mm_rb);
317 if (i != mm->map_count)
318 printk("map_count %d rb %d\n", mm->map_count, i), bug = 1;
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200319 BUG_ON(bug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321#else
322#define validate_mm(mm) do { } while (0)
323#endif
324
325static struct vm_area_struct *
326find_vma_prepare(struct mm_struct *mm, unsigned long addr,
327 struct vm_area_struct **pprev, struct rb_node ***rb_link,
328 struct rb_node ** rb_parent)
329{
330 struct vm_area_struct * vma;
331 struct rb_node ** __rb_link, * __rb_parent, * rb_prev;
332
333 __rb_link = &mm->mm_rb.rb_node;
334 rb_prev = __rb_parent = NULL;
335 vma = NULL;
336
337 while (*__rb_link) {
338 struct vm_area_struct *vma_tmp;
339
340 __rb_parent = *__rb_link;
341 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
342
343 if (vma_tmp->vm_end > addr) {
344 vma = vma_tmp;
345 if (vma_tmp->vm_start <= addr)
346 return vma;
347 __rb_link = &__rb_parent->rb_left;
348 } else {
349 rb_prev = __rb_parent;
350 __rb_link = &__rb_parent->rb_right;
351 }
352 }
353
354 *pprev = NULL;
355 if (rb_prev)
356 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
357 *rb_link = __rb_link;
358 *rb_parent = __rb_parent;
359 return vma;
360}
361
362static inline void
363__vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
364 struct vm_area_struct *prev, struct rb_node *rb_parent)
365{
366 if (prev) {
367 vma->vm_next = prev->vm_next;
368 prev->vm_next = vma;
369 } else {
370 mm->mmap = vma;
371 if (rb_parent)
372 vma->vm_next = rb_entry(rb_parent,
373 struct vm_area_struct, vm_rb);
374 else
375 vma->vm_next = NULL;
376 }
377}
378
379void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
380 struct rb_node **rb_link, struct rb_node *rb_parent)
381{
382 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
383 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
384}
385
386static inline void __vma_link_file(struct vm_area_struct *vma)
387{
388 struct file * file;
389
390 file = vma->vm_file;
391 if (file) {
392 struct address_space *mapping = file->f_mapping;
393
394 if (vma->vm_flags & VM_DENYWRITE)
395 atomic_dec(&file->f_dentry->d_inode->i_writecount);
396 if (vma->vm_flags & VM_SHARED)
397 mapping->i_mmap_writable++;
398
399 flush_dcache_mmap_lock(mapping);
400 if (unlikely(vma->vm_flags & VM_NONLINEAR))
401 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
402 else
403 vma_prio_tree_insert(vma, &mapping->i_mmap);
404 flush_dcache_mmap_unlock(mapping);
405 }
406}
407
408static void
409__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
410 struct vm_area_struct *prev, struct rb_node **rb_link,
411 struct rb_node *rb_parent)
412{
413 __vma_link_list(mm, vma, prev, rb_parent);
414 __vma_link_rb(mm, vma, rb_link, rb_parent);
415 __anon_vma_link(vma);
416}
417
418static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
419 struct vm_area_struct *prev, struct rb_node **rb_link,
420 struct rb_node *rb_parent)
421{
422 struct address_space *mapping = NULL;
423
424 if (vma->vm_file)
425 mapping = vma->vm_file->f_mapping;
426
427 if (mapping) {
428 spin_lock(&mapping->i_mmap_lock);
429 vma->vm_truncate_count = mapping->truncate_count;
430 }
431 anon_vma_lock(vma);
432
433 __vma_link(mm, vma, prev, rb_link, rb_parent);
434 __vma_link_file(vma);
435
436 anon_vma_unlock(vma);
437 if (mapping)
438 spin_unlock(&mapping->i_mmap_lock);
439
440 mm->map_count++;
441 validate_mm(mm);
442}
443
444/*
445 * Helper for vma_adjust in the split_vma insert case:
446 * insert vm structure into list and rbtree and anon_vma,
447 * but it has already been inserted into prio_tree earlier.
448 */
449static void
450__insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
451{
452 struct vm_area_struct * __vma, * prev;
453 struct rb_node ** rb_link, * rb_parent;
454
455 __vma = find_vma_prepare(mm, vma->vm_start,&prev, &rb_link, &rb_parent);
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200456 BUG_ON(__vma && __vma->vm_start < vma->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 __vma_link(mm, vma, prev, rb_link, rb_parent);
458 mm->map_count++;
459}
460
461static inline void
462__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
463 struct vm_area_struct *prev)
464{
465 prev->vm_next = vma->vm_next;
466 rb_erase(&vma->vm_rb, &mm->mm_rb);
467 if (mm->mmap_cache == vma)
468 mm->mmap_cache = prev;
469}
470
471/*
472 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
473 * is already present in an i_mmap tree without adjusting the tree.
474 * The following helper function should be used when such adjustments
475 * are necessary. The "insert" vma (if any) is to be inserted
476 * before we drop the necessary locks.
477 */
478void vma_adjust(struct vm_area_struct *vma, unsigned long start,
479 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
480{
481 struct mm_struct *mm = vma->vm_mm;
482 struct vm_area_struct *next = vma->vm_next;
483 struct vm_area_struct *importer = NULL;
484 struct address_space *mapping = NULL;
485 struct prio_tree_root *root = NULL;
486 struct file *file = vma->vm_file;
487 struct anon_vma *anon_vma = NULL;
488 long adjust_next = 0;
489 int remove_next = 0;
490
491 if (next && !insert) {
492 if (end >= next->vm_end) {
493 /*
494 * vma expands, overlapping all the next, and
495 * perhaps the one after too (mprotect case 6).
496 */
497again: remove_next = 1 + (end > next->vm_end);
498 end = next->vm_end;
499 anon_vma = next->anon_vma;
500 importer = vma;
501 } else if (end > next->vm_start) {
502 /*
503 * vma expands, overlapping part of the next:
504 * mprotect case 5 shifting the boundary up.
505 */
506 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
507 anon_vma = next->anon_vma;
508 importer = vma;
509 } else if (end < vma->vm_end) {
510 /*
511 * vma shrinks, and !insert tells it's not
512 * split_vma inserting another: so it must be
513 * mprotect case 4 shifting the boundary down.
514 */
515 adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
516 anon_vma = next->anon_vma;
517 importer = next;
518 }
519 }
520
521 if (file) {
522 mapping = file->f_mapping;
523 if (!(vma->vm_flags & VM_NONLINEAR))
524 root = &mapping->i_mmap;
525 spin_lock(&mapping->i_mmap_lock);
526 if (importer &&
527 vma->vm_truncate_count != next->vm_truncate_count) {
528 /*
529 * unmap_mapping_range might be in progress:
530 * ensure that the expanding vma is rescanned.
531 */
532 importer->vm_truncate_count = 0;
533 }
534 if (insert) {
535 insert->vm_truncate_count = vma->vm_truncate_count;
536 /*
537 * Put into prio_tree now, so instantiated pages
538 * are visible to arm/parisc __flush_dcache_page
539 * throughout; but we cannot insert into address
540 * space until vma start or end is updated.
541 */
542 __vma_link_file(insert);
543 }
544 }
545
546 /*
547 * When changing only vma->vm_end, we don't really need
548 * anon_vma lock: but is that case worth optimizing out?
549 */
550 if (vma->anon_vma)
551 anon_vma = vma->anon_vma;
552 if (anon_vma) {
553 spin_lock(&anon_vma->lock);
554 /*
555 * Easily overlooked: when mprotect shifts the boundary,
556 * make sure the expanding vma has anon_vma set if the
557 * shrinking vma had, to cover any anon pages imported.
558 */
559 if (importer && !importer->anon_vma) {
560 importer->anon_vma = anon_vma;
561 __anon_vma_link(importer);
562 }
563 }
564
565 if (root) {
566 flush_dcache_mmap_lock(mapping);
567 vma_prio_tree_remove(vma, root);
568 if (adjust_next)
569 vma_prio_tree_remove(next, root);
570 }
571
572 vma->vm_start = start;
573 vma->vm_end = end;
574 vma->vm_pgoff = pgoff;
575 if (adjust_next) {
576 next->vm_start += adjust_next << PAGE_SHIFT;
577 next->vm_pgoff += adjust_next;
578 }
579
580 if (root) {
581 if (adjust_next)
582 vma_prio_tree_insert(next, root);
583 vma_prio_tree_insert(vma, root);
584 flush_dcache_mmap_unlock(mapping);
585 }
586
587 if (remove_next) {
588 /*
589 * vma_merge has merged next into vma, and needs
590 * us to remove next before dropping the locks.
591 */
592 __vma_unlink(mm, next, vma);
593 if (file)
594 __remove_shared_vm_struct(next, file, mapping);
595 if (next->anon_vma)
596 __anon_vma_merge(vma, next);
597 } else if (insert) {
598 /*
599 * split_vma has split insert from vma, and needs
600 * us to insert it before dropping the locks
601 * (it may either follow vma or precede it).
602 */
603 __insert_vm_struct(mm, insert);
604 }
605
606 if (anon_vma)
607 spin_unlock(&anon_vma->lock);
608 if (mapping)
609 spin_unlock(&mapping->i_mmap_lock);
610
611 if (remove_next) {
612 if (file)
613 fput(file);
614 mm->map_count--;
615 mpol_free(vma_policy(next));
616 kmem_cache_free(vm_area_cachep, next);
617 /*
618 * In mprotect's case 6 (see comments on vma_merge),
619 * we must remove another next too. It would clutter
620 * up the code too much to do both in one go.
621 */
622 if (remove_next == 2) {
623 next = vma->vm_next;
624 goto again;
625 }
626 }
627
628 validate_mm(mm);
629}
630
631/*
632 * If the vma has a ->close operation then the driver probably needs to release
633 * per-vma resources, so we don't attempt to merge those.
634 */
Hugh Dickinsa6f563d2006-03-22 00:08:29 -0800635#define VM_SPECIAL (VM_IO | VM_DONTEXPAND | VM_RESERVED | VM_PFNMAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637static inline int is_mergeable_vma(struct vm_area_struct *vma,
638 struct file *file, unsigned long vm_flags)
639{
640 if (vma->vm_flags != vm_flags)
641 return 0;
642 if (vma->vm_file != file)
643 return 0;
644 if (vma->vm_ops && vma->vm_ops->close)
645 return 0;
646 return 1;
647}
648
649static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
650 struct anon_vma *anon_vma2)
651{
652 return !anon_vma1 || !anon_vma2 || (anon_vma1 == anon_vma2);
653}
654
655/*
656 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
657 * in front of (at a lower virtual address and file offset than) the vma.
658 *
659 * We cannot merge two vmas if they have differently assigned (non-NULL)
660 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
661 *
662 * We don't check here for the merged mmap wrapping around the end of pagecache
663 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
664 * wrap, nor mmaps which cover the final page at index -1UL.
665 */
666static int
667can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
668 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
669{
670 if (is_mergeable_vma(vma, file, vm_flags) &&
671 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
672 if (vma->vm_pgoff == vm_pgoff)
673 return 1;
674 }
675 return 0;
676}
677
678/*
679 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
680 * beyond (at a higher virtual address and file offset than) the vma.
681 *
682 * We cannot merge two vmas if they have differently assigned (non-NULL)
683 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
684 */
685static int
686can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
687 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
688{
689 if (is_mergeable_vma(vma, file, vm_flags) &&
690 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
691 pgoff_t vm_pglen;
692 vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
693 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
694 return 1;
695 }
696 return 0;
697}
698
699/*
700 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
701 * whether that can be merged with its predecessor or its successor.
702 * Or both (it neatly fills a hole).
703 *
704 * In most cases - when called for mmap, brk or mremap - [addr,end) is
705 * certain not to be mapped by the time vma_merge is called; but when
706 * called for mprotect, it is certain to be already mapped (either at
707 * an offset within prev, or at the start of next), and the flags of
708 * this area are about to be changed to vm_flags - and the no-change
709 * case has already been eliminated.
710 *
711 * The following mprotect cases have to be considered, where AAAA is
712 * the area passed down from mprotect_fixup, never extending beyond one
713 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
714 *
715 * AAAA AAAA AAAA AAAA
716 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
717 * cannot merge might become might become might become
718 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
719 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
720 * mremap move: PPPPNNNNNNNN 8
721 * AAAA
722 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
723 * might become case 1 below case 2 below case 3 below
724 *
725 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
726 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
727 */
728struct vm_area_struct *vma_merge(struct mm_struct *mm,
729 struct vm_area_struct *prev, unsigned long addr,
730 unsigned long end, unsigned long vm_flags,
731 struct anon_vma *anon_vma, struct file *file,
732 pgoff_t pgoff, struct mempolicy *policy)
733{
734 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
735 struct vm_area_struct *area, *next;
736
737 /*
738 * We later require that vma->vm_flags == vm_flags,
739 * so this tests vma->vm_flags & VM_SPECIAL, too.
740 */
741 if (vm_flags & VM_SPECIAL)
742 return NULL;
743
744 if (prev)
745 next = prev->vm_next;
746 else
747 next = mm->mmap;
748 area = next;
749 if (next && next->vm_end == end) /* cases 6, 7, 8 */
750 next = next->vm_next;
751
752 /*
753 * Can it merge with the predecessor?
754 */
755 if (prev && prev->vm_end == addr &&
756 mpol_equal(vma_policy(prev), policy) &&
757 can_vma_merge_after(prev, vm_flags,
758 anon_vma, file, pgoff)) {
759 /*
760 * OK, it can. Can we now merge in the successor as well?
761 */
762 if (next && end == next->vm_start &&
763 mpol_equal(policy, vma_policy(next)) &&
764 can_vma_merge_before(next, vm_flags,
765 anon_vma, file, pgoff+pglen) &&
766 is_mergeable_anon_vma(prev->anon_vma,
767 next->anon_vma)) {
768 /* cases 1, 6 */
769 vma_adjust(prev, prev->vm_start,
770 next->vm_end, prev->vm_pgoff, NULL);
771 } else /* cases 2, 5, 7 */
772 vma_adjust(prev, prev->vm_start,
773 end, prev->vm_pgoff, NULL);
774 return prev;
775 }
776
777 /*
778 * Can this new request be merged in front of next?
779 */
780 if (next && end == next->vm_start &&
781 mpol_equal(policy, vma_policy(next)) &&
782 can_vma_merge_before(next, vm_flags,
783 anon_vma, file, pgoff+pglen)) {
784 if (prev && addr < prev->vm_end) /* case 4 */
785 vma_adjust(prev, prev->vm_start,
786 addr, prev->vm_pgoff, NULL);
787 else /* cases 3, 8 */
788 vma_adjust(area, addr, next->vm_end,
789 next->vm_pgoff - pglen, NULL);
790 return area;
791 }
792
793 return NULL;
794}
795
796/*
797 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
798 * neighbouring vmas for a suitable anon_vma, before it goes off
799 * to allocate a new anon_vma. It checks because a repetitive
800 * sequence of mprotects and faults may otherwise lead to distinct
801 * anon_vmas being allocated, preventing vma merge in subsequent
802 * mprotect.
803 */
804struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
805{
806 struct vm_area_struct *near;
807 unsigned long vm_flags;
808
809 near = vma->vm_next;
810 if (!near)
811 goto try_prev;
812
813 /*
814 * Since only mprotect tries to remerge vmas, match flags
815 * which might be mprotected into each other later on.
816 * Neither mlock nor madvise tries to remerge at present,
817 * so leave their flags as obstructing a merge.
818 */
819 vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
820 vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
821
822 if (near->anon_vma && vma->vm_end == near->vm_start &&
823 mpol_equal(vma_policy(vma), vma_policy(near)) &&
824 can_vma_merge_before(near, vm_flags,
825 NULL, vma->vm_file, vma->vm_pgoff +
826 ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT)))
827 return near->anon_vma;
828try_prev:
829 /*
830 * It is potentially slow to have to call find_vma_prev here.
831 * But it's only on the first write fault on the vma, not
832 * every time, and we could devise a way to avoid it later
833 * (e.g. stash info in next's anon_vma_node when assigning
834 * an anon_vma, or when trying vma_merge). Another time.
835 */
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200836 BUG_ON(find_vma_prev(vma->vm_mm, vma->vm_start, &near) != vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (!near)
838 goto none;
839
840 vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
841 vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
842
843 if (near->anon_vma && near->vm_end == vma->vm_start &&
844 mpol_equal(vma_policy(near), vma_policy(vma)) &&
845 can_vma_merge_after(near, vm_flags,
846 NULL, vma->vm_file, vma->vm_pgoff))
847 return near->anon_vma;
848none:
849 /*
850 * There's no absolute need to look only at touching neighbours:
851 * we could search further afield for "compatible" anon_vmas.
852 * But it would probably just be a waste of time searching,
853 * or lead to too many vmas hanging off the same anon_vma.
854 * We're trying to allow mprotect remerging later on,
855 * not trying to minimize memory used for anon_vmas.
856 */
857 return NULL;
858}
859
860#ifdef CONFIG_PROC_FS
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700861void vm_stat_account(struct mm_struct *mm, unsigned long flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct file *file, long pages)
863{
864 const unsigned long stack_flags
865 = VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN);
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (file) {
868 mm->shared_vm += pages;
869 if ((flags & (VM_EXEC|VM_WRITE)) == VM_EXEC)
870 mm->exec_vm += pages;
871 } else if (flags & stack_flags)
872 mm->stack_vm += pages;
873 if (flags & (VM_RESERVED|VM_IO))
874 mm->reserved_vm += pages;
875}
876#endif /* CONFIG_PROC_FS */
877
878/*
879 * The caller must hold down_write(current->mm->mmap_sem).
880 */
881
882unsigned long do_mmap_pgoff(struct file * file, unsigned long addr,
883 unsigned long len, unsigned long prot,
884 unsigned long flags, unsigned long pgoff)
885{
886 struct mm_struct * mm = current->mm;
887 struct vm_area_struct * vma, * prev;
888 struct inode *inode;
889 unsigned int vm_flags;
890 int correct_wcount = 0;
891 int error;
892 struct rb_node ** rb_link, * rb_parent;
893 int accountable = 1;
894 unsigned long charged = 0, reqprot = prot;
895
896 if (file) {
897 if (is_file_hugepages(file))
898 accountable = 0;
899
900 if (!file->f_op || !file->f_op->mmap)
901 return -ENODEV;
902
903 if ((prot & PROT_EXEC) &&
904 (file->f_vfsmnt->mnt_flags & MNT_NOEXEC))
905 return -EPERM;
906 }
907 /*
908 * Does the application expect PROT_READ to imply PROT_EXEC?
909 *
910 * (the exception is when the underlying filesystem is noexec
911 * mounted, in which case we dont add PROT_EXEC.)
912 */
913 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
914 if (!(file && (file->f_vfsmnt->mnt_flags & MNT_NOEXEC)))
915 prot |= PROT_EXEC;
916
917 if (!len)
918 return -EINVAL;
919
Kirill Korotaev3a459752006-09-07 14:17:04 +0400920 error = arch_mmap_check(addr, len, flags);
921 if (error)
922 return error;
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /* Careful about overflows.. */
925 len = PAGE_ALIGN(len);
926 if (!len || len > TASK_SIZE)
927 return -ENOMEM;
928
929 /* offset overflow? */
930 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
931 return -EOVERFLOW;
932
933 /* Too many mappings? */
934 if (mm->map_count > sysctl_max_map_count)
935 return -ENOMEM;
936
937 /* Obtain the address to map to. we verify (or select) it and ensure
938 * that it represents a valid section of the address space.
939 */
940 addr = get_unmapped_area(file, addr, len, pgoff, flags);
941 if (addr & ~PAGE_MASK)
942 return addr;
943
944 /* Do simple checking here so the lower-level routines won't have
945 * to. we assume access permissions have been handled by the open
946 * of the memory object, so we don't do any here.
947 */
948 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
949 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
950
951 if (flags & MAP_LOCKED) {
952 if (!can_do_mlock())
953 return -EPERM;
954 vm_flags |= VM_LOCKED;
955 }
956 /* mlock MCL_FUTURE? */
957 if (vm_flags & VM_LOCKED) {
958 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -0700959 locked = len >> PAGE_SHIFT;
960 locked += mm->locked_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
Chris Wright93ea1d02005-05-01 08:58:38 -0700962 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
964 return -EAGAIN;
965 }
966
967 inode = file ? file->f_dentry->d_inode : NULL;
968
969 if (file) {
970 switch (flags & MAP_TYPE) {
971 case MAP_SHARED:
972 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
973 return -EACCES;
974
975 /*
976 * Make sure we don't allow writing to an append-only
977 * file..
978 */
979 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
980 return -EACCES;
981
982 /*
983 * Make sure there are no mandatory locks on the file.
984 */
985 if (locks_verify_locked(inode))
986 return -EAGAIN;
987
988 vm_flags |= VM_SHARED | VM_MAYSHARE;
989 if (!(file->f_mode & FMODE_WRITE))
990 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
991
992 /* fall through */
993 case MAP_PRIVATE:
994 if (!(file->f_mode & FMODE_READ))
995 return -EACCES;
996 break;
997
998 default:
999 return -EINVAL;
1000 }
1001 } else {
1002 switch (flags & MAP_TYPE) {
1003 case MAP_SHARED:
1004 vm_flags |= VM_SHARED | VM_MAYSHARE;
1005 break;
1006 case MAP_PRIVATE:
1007 /*
1008 * Set pgoff according to addr for anon_vma.
1009 */
1010 pgoff = addr >> PAGE_SHIFT;
1011 break;
1012 default:
1013 return -EINVAL;
1014 }
1015 }
1016
1017 error = security_file_mmap(file, reqprot, prot, flags);
1018 if (error)
1019 return error;
1020
1021 /* Clear old maps */
1022 error = -ENOMEM;
1023munmap_back:
1024 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1025 if (vma && vma->vm_start < addr + len) {
1026 if (do_munmap(mm, addr, len))
1027 return -ENOMEM;
1028 goto munmap_back;
1029 }
1030
1031 /* Check against address space limit. */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001032 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return -ENOMEM;
1034
1035 if (accountable && (!(flags & MAP_NORESERVE) ||
1036 sysctl_overcommit_memory == OVERCOMMIT_NEVER)) {
1037 if (vm_flags & VM_SHARED) {
1038 /* Check memory availability in shmem_file_setup? */
1039 vm_flags |= VM_ACCOUNT;
1040 } else if (vm_flags & VM_WRITE) {
1041 /*
1042 * Private writable mapping: check memory availability
1043 */
1044 charged = len >> PAGE_SHIFT;
1045 if (security_vm_enough_memory(charged))
1046 return -ENOMEM;
1047 vm_flags |= VM_ACCOUNT;
1048 }
1049 }
1050
1051 /*
1052 * Can we just expand an old private anonymous mapping?
1053 * The VM_SHARED test is necessary because shmem_zero_setup
1054 * will create the file object for a shared anonymous map below.
1055 */
1056 if (!file && !(vm_flags & VM_SHARED) &&
1057 vma_merge(mm, prev, addr, addr + len, vm_flags,
1058 NULL, NULL, pgoff, NULL))
1059 goto out;
1060
1061 /*
1062 * Determine the object being mapped and call the appropriate
1063 * specific mapper. the address has already been validated, but
1064 * not unmapped, but the maps are removed from the list.
1065 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001066 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (!vma) {
1068 error = -ENOMEM;
1069 goto unacct_error;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 vma->vm_mm = mm;
1073 vma->vm_start = addr;
1074 vma->vm_end = addr + len;
1075 vma->vm_flags = vm_flags;
David Howells9637a5e2006-06-23 02:03:43 -07001076 vma->vm_page_prot = protection_map[vm_flags &
1077 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 vma->vm_pgoff = pgoff;
1079
1080 if (file) {
1081 error = -EINVAL;
1082 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1083 goto free_vma;
1084 if (vm_flags & VM_DENYWRITE) {
1085 error = deny_write_access(file);
1086 if (error)
1087 goto free_vma;
1088 correct_wcount = 1;
1089 }
1090 vma->vm_file = file;
1091 get_file(file);
1092 error = file->f_op->mmap(file, vma);
1093 if (error)
1094 goto unmap_and_free_vma;
1095 } else if (vm_flags & VM_SHARED) {
1096 error = shmem_zero_setup(vma);
1097 if (error)
1098 goto free_vma;
1099 }
1100
David Howells9637a5e2006-06-23 02:03:43 -07001101 /* Don't make the VMA automatically writable if it's shared, but the
1102 * backer wishes to know when pages are first written to */
1103 if (vma->vm_ops && vma->vm_ops->page_mkwrite)
1104 vma->vm_page_prot =
1105 protection_map[vm_flags & (VM_READ|VM_WRITE|VM_EXEC)];
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /* We set VM_ACCOUNT in a shared mapping's vm_flags, to inform
1108 * shmem_zero_setup (perhaps called through /dev/zero's ->mmap)
1109 * that memory reservation must be checked; but that reservation
1110 * belongs to shared memory object, not to vma: so now clear it.
1111 */
1112 if ((vm_flags & (VM_SHARED|VM_ACCOUNT)) == (VM_SHARED|VM_ACCOUNT))
1113 vma->vm_flags &= ~VM_ACCOUNT;
1114
1115 /* Can addr have changed??
1116 *
1117 * Answer: Yes, several device drivers can do it in their
1118 * f_op->mmap method. -DaveM
1119 */
1120 addr = vma->vm_start;
1121 pgoff = vma->vm_pgoff;
1122 vm_flags = vma->vm_flags;
1123
1124 if (!file || !vma_merge(mm, prev, addr, vma->vm_end,
1125 vma->vm_flags, NULL, file, pgoff, vma_policy(vma))) {
1126 file = vma->vm_file;
1127 vma_link(mm, vma, prev, rb_link, rb_parent);
1128 if (correct_wcount)
1129 atomic_inc(&inode->i_writecount);
1130 } else {
1131 if (file) {
1132 if (correct_wcount)
1133 atomic_inc(&inode->i_writecount);
1134 fput(file);
1135 }
1136 mpol_free(vma_policy(vma));
1137 kmem_cache_free(vm_area_cachep, vma);
1138 }
1139out:
1140 mm->total_vm += len >> PAGE_SHIFT;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001141 vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (vm_flags & VM_LOCKED) {
1143 mm->locked_vm += len >> PAGE_SHIFT;
1144 make_pages_present(addr, addr + len);
1145 }
1146 if (flags & MAP_POPULATE) {
1147 up_write(&mm->mmap_sem);
1148 sys_remap_file_pages(addr, len, 0,
1149 pgoff, flags & MAP_NONBLOCK);
1150 down_write(&mm->mmap_sem);
1151 }
1152 return addr;
1153
1154unmap_and_free_vma:
1155 if (correct_wcount)
1156 atomic_inc(&inode->i_writecount);
1157 vma->vm_file = NULL;
1158 fput(file);
1159
1160 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001161 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1162 charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163free_vma:
1164 kmem_cache_free(vm_area_cachep, vma);
1165unacct_error:
1166 if (charged)
1167 vm_unacct_memory(charged);
1168 return error;
1169}
1170
1171EXPORT_SYMBOL(do_mmap_pgoff);
1172
1173/* Get an address range which is currently unmapped.
1174 * For shmat() with addr=0.
1175 *
1176 * Ugly calling convention alert:
1177 * Return value with the low bits set means error value,
1178 * ie
1179 * if (ret & ~PAGE_MASK)
1180 * error = ret;
1181 *
1182 * This function "knows" that -ENOMEM has the bits set.
1183 */
1184#ifndef HAVE_ARCH_UNMAPPED_AREA
1185unsigned long
1186arch_get_unmapped_area(struct file *filp, unsigned long addr,
1187 unsigned long len, unsigned long pgoff, unsigned long flags)
1188{
1189 struct mm_struct *mm = current->mm;
1190 struct vm_area_struct *vma;
1191 unsigned long start_addr;
1192
1193 if (len > TASK_SIZE)
1194 return -ENOMEM;
1195
1196 if (addr) {
1197 addr = PAGE_ALIGN(addr);
1198 vma = find_vma(mm, addr);
1199 if (TASK_SIZE - len >= addr &&
1200 (!vma || addr + len <= vma->vm_start))
1201 return addr;
1202 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001203 if (len > mm->cached_hole_size) {
1204 start_addr = addr = mm->free_area_cache;
1205 } else {
1206 start_addr = addr = TASK_UNMAPPED_BASE;
1207 mm->cached_hole_size = 0;
1208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210full_search:
1211 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
1212 /* At this point: (!vma || addr < vma->vm_end). */
1213 if (TASK_SIZE - len < addr) {
1214 /*
1215 * Start a new search - just in case we missed
1216 * some holes.
1217 */
1218 if (start_addr != TASK_UNMAPPED_BASE) {
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001219 addr = TASK_UNMAPPED_BASE;
1220 start_addr = addr;
1221 mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 goto full_search;
1223 }
1224 return -ENOMEM;
1225 }
1226 if (!vma || addr + len <= vma->vm_start) {
1227 /*
1228 * Remember the place where we stopped the search:
1229 */
1230 mm->free_area_cache = addr + len;
1231 return addr;
1232 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001233 if (addr + mm->cached_hole_size < vma->vm_start)
1234 mm->cached_hole_size = vma->vm_start - addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 addr = vma->vm_end;
1236 }
1237}
1238#endif
1239
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001240void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 /*
1243 * Is this a new hole at the lowest possible address?
1244 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001245 if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache) {
1246 mm->free_area_cache = addr;
1247 mm->cached_hole_size = ~0UL;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
1251/*
1252 * This mmap-allocator allocates new areas top-down from below the
1253 * stack's low limit (the base):
1254 */
1255#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1256unsigned long
1257arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1258 const unsigned long len, const unsigned long pgoff,
1259 const unsigned long flags)
1260{
1261 struct vm_area_struct *vma;
1262 struct mm_struct *mm = current->mm;
1263 unsigned long addr = addr0;
1264
1265 /* requested length too big for entire address space */
1266 if (len > TASK_SIZE)
1267 return -ENOMEM;
1268
1269 /* requesting a specific address */
1270 if (addr) {
1271 addr = PAGE_ALIGN(addr);
1272 vma = find_vma(mm, addr);
1273 if (TASK_SIZE - len >= addr &&
1274 (!vma || addr + len <= vma->vm_start))
1275 return addr;
1276 }
1277
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001278 /* check if free_area_cache is useful for us */
1279 if (len <= mm->cached_hole_size) {
1280 mm->cached_hole_size = 0;
1281 mm->free_area_cache = mm->mmap_base;
1282 }
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /* either no address requested or can't fit in requested address hole */
1285 addr = mm->free_area_cache;
1286
1287 /* make sure it can fit in the remaining address space */
Linus Torvalds49a43872005-05-18 15:39:33 -07001288 if (addr > len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 vma = find_vma(mm, addr-len);
1290 if (!vma || addr <= vma->vm_start)
1291 /* remember the address as a hint for next time */
1292 return (mm->free_area_cache = addr-len);
1293 }
1294
Chris Wright73219d12005-06-21 17:14:52 -07001295 if (mm->mmap_base < len)
1296 goto bottomup;
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 addr = mm->mmap_base-len;
1299
1300 do {
1301 /*
1302 * Lookup failure means no vma is above this address,
1303 * else if new region fits below vma->vm_start,
1304 * return with success:
1305 */
1306 vma = find_vma(mm, addr);
1307 if (!vma || addr+len <= vma->vm_start)
1308 /* remember the address as a hint for next time */
1309 return (mm->free_area_cache = addr);
1310
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001311 /* remember the largest hole we saw so far */
1312 if (addr + mm->cached_hole_size < vma->vm_start)
1313 mm->cached_hole_size = vma->vm_start - addr;
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 /* try just below the current vma->vm_start */
1316 addr = vma->vm_start-len;
Linus Torvalds49a43872005-05-18 15:39:33 -07001317 } while (len < vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Chris Wright73219d12005-06-21 17:14:52 -07001319bottomup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 /*
1321 * A failed mmap() very likely causes application failure,
1322 * so fall back to the bottom-up function here. This scenario
1323 * can happen with large stack limits and large mmap()
1324 * allocations.
1325 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001326 mm->cached_hole_size = ~0UL;
1327 mm->free_area_cache = TASK_UNMAPPED_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
1329 /*
1330 * Restore the topdown base:
1331 */
1332 mm->free_area_cache = mm->mmap_base;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001333 mm->cached_hole_size = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 return addr;
1336}
1337#endif
1338
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001339void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 /*
1342 * Is this a new hole at the highest possible address?
1343 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001344 if (addr > mm->free_area_cache)
1345 mm->free_area_cache = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /* dont allow allocations above current base */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001348 if (mm->free_area_cache > mm->mmap_base)
1349 mm->free_area_cache = mm->mmap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352unsigned long
1353get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1354 unsigned long pgoff, unsigned long flags)
1355{
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001356 unsigned long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001358 if (!(flags & MAP_FIXED)) {
1359 unsigned long (*get_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
1360
1361 get_area = current->mm->get_unmapped_area;
1362 if (file && file->f_op && file->f_op->get_unmapped_area)
1363 get_area = file->f_op->get_unmapped_area;
1364 addr = get_area(file, addr, len, pgoff, flags);
1365 if (IS_ERR_VALUE(addr))
1366 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001369 if (addr > TASK_SIZE - len)
1370 return -ENOMEM;
1371 if (addr & ~PAGE_MASK)
1372 return -EINVAL;
1373 if (file && is_file_hugepages(file)) {
1374 /*
1375 * Check if the given range is hugepage aligned, and
1376 * can be made suitable for hugepages.
1377 */
1378 ret = prepare_hugepage_range(addr, len);
1379 } else {
1380 /*
1381 * Ensure that a normal request is not falling in a
1382 * reserved hugepage range. For some archs like IA-64,
1383 * there is a separate region for hugepages.
1384 */
1385 ret = is_hugepage_only_range(current->mm, addr, len);
1386 }
1387 if (ret)
1388 return -EINVAL;
1389 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392EXPORT_SYMBOL(get_unmapped_area);
1393
1394/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
1395struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr)
1396{
1397 struct vm_area_struct *vma = NULL;
1398
1399 if (mm) {
1400 /* Check the cache first. */
1401 /* (Cache hit rate is typically around 35%.) */
1402 vma = mm->mmap_cache;
1403 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1404 struct rb_node * rb_node;
1405
1406 rb_node = mm->mm_rb.rb_node;
1407 vma = NULL;
1408
1409 while (rb_node) {
1410 struct vm_area_struct * vma_tmp;
1411
1412 vma_tmp = rb_entry(rb_node,
1413 struct vm_area_struct, vm_rb);
1414
1415 if (vma_tmp->vm_end > addr) {
1416 vma = vma_tmp;
1417 if (vma_tmp->vm_start <= addr)
1418 break;
1419 rb_node = rb_node->rb_left;
1420 } else
1421 rb_node = rb_node->rb_right;
1422 }
1423 if (vma)
1424 mm->mmap_cache = vma;
1425 }
1426 }
1427 return vma;
1428}
1429
1430EXPORT_SYMBOL(find_vma);
1431
1432/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1433struct vm_area_struct *
1434find_vma_prev(struct mm_struct *mm, unsigned long addr,
1435 struct vm_area_struct **pprev)
1436{
1437 struct vm_area_struct *vma = NULL, *prev = NULL;
1438 struct rb_node * rb_node;
1439 if (!mm)
1440 goto out;
1441
1442 /* Guard against addr being lower than the first VMA */
1443 vma = mm->mmap;
1444
1445 /* Go through the RB tree quickly. */
1446 rb_node = mm->mm_rb.rb_node;
1447
1448 while (rb_node) {
1449 struct vm_area_struct *vma_tmp;
1450 vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1451
1452 if (addr < vma_tmp->vm_end) {
1453 rb_node = rb_node->rb_left;
1454 } else {
1455 prev = vma_tmp;
1456 if (!prev->vm_next || (addr < prev->vm_next->vm_end))
1457 break;
1458 rb_node = rb_node->rb_right;
1459 }
1460 }
1461
1462out:
1463 *pprev = prev;
1464 return prev ? prev->vm_next : vma;
1465}
1466
1467/*
1468 * Verify that the stack growth is acceptable and
1469 * update accounting. This is shared with both the
1470 * grow-up and grow-down cases.
1471 */
1472static int acct_stack_growth(struct vm_area_struct * vma, unsigned long size, unsigned long grow)
1473{
1474 struct mm_struct *mm = vma->vm_mm;
1475 struct rlimit *rlim = current->signal->rlim;
1476
1477 /* address space limit tests */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001478 if (!may_expand_vm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return -ENOMEM;
1480
1481 /* Stack limit test */
1482 if (size > rlim[RLIMIT_STACK].rlim_cur)
1483 return -ENOMEM;
1484
1485 /* mlock limit tests */
1486 if (vma->vm_flags & VM_LOCKED) {
1487 unsigned long locked;
1488 unsigned long limit;
1489 locked = mm->locked_vm + grow;
1490 limit = rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT;
1491 if (locked > limit && !capable(CAP_IPC_LOCK))
1492 return -ENOMEM;
1493 }
1494
1495 /*
1496 * Overcommit.. This must be the final test, as it will
1497 * update security statistics.
1498 */
1499 if (security_vm_enough_memory(grow))
1500 return -ENOMEM;
1501
1502 /* Ok, everything looks good - let it rip */
1503 mm->total_vm += grow;
1504 if (vma->vm_flags & VM_LOCKED)
1505 mm->locked_vm += grow;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001506 vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return 0;
1508}
1509
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001510#if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/*
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001512 * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
1513 * vma is the last one with address > vma->vm_end. Have to extend vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 */
Matthew Wilcox9ab88512005-11-18 16:16:42 -05001515#ifndef CONFIG_IA64
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001516static inline
1517#endif
1518int expand_upwards(struct vm_area_struct *vma, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 int error;
1521
1522 if (!(vma->vm_flags & VM_GROWSUP))
1523 return -EFAULT;
1524
1525 /*
1526 * We must make sure the anon_vma is allocated
1527 * so that the anon_vma locking is not a noop.
1528 */
1529 if (unlikely(anon_vma_prepare(vma)))
1530 return -ENOMEM;
1531 anon_vma_lock(vma);
1532
1533 /*
1534 * vma->vm_start/vm_end cannot change under us because the caller
1535 * is required to hold the mmap_sem in read mode. We need the
1536 * anon_vma lock to serialize against concurrent expand_stacks.
1537 */
1538 address += 4 + PAGE_SIZE - 1;
1539 address &= PAGE_MASK;
1540 error = 0;
1541
1542 /* Somebody else might have raced and expanded it already */
1543 if (address > vma->vm_end) {
1544 unsigned long size, grow;
1545
1546 size = address - vma->vm_start;
1547 grow = (address - vma->vm_end) >> PAGE_SHIFT;
1548
1549 error = acct_stack_growth(vma, size, grow);
1550 if (!error)
1551 vma->vm_end = address;
1552 }
1553 anon_vma_unlock(vma);
1554 return error;
1555}
Hugh Dickins46dea3d2005-10-29 18:16:20 -07001556#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
1557
1558#ifdef CONFIG_STACK_GROWSUP
1559int expand_stack(struct vm_area_struct *vma, unsigned long address)
1560{
1561 return expand_upwards(vma, address);
1562}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564struct vm_area_struct *
1565find_extend_vma(struct mm_struct *mm, unsigned long addr)
1566{
1567 struct vm_area_struct *vma, *prev;
1568
1569 addr &= PAGE_MASK;
1570 vma = find_vma_prev(mm, addr, &prev);
1571 if (vma && (vma->vm_start <= addr))
1572 return vma;
1573 if (!prev || expand_stack(prev, addr))
1574 return NULL;
1575 if (prev->vm_flags & VM_LOCKED) {
1576 make_pages_present(addr, prev->vm_end);
1577 }
1578 return prev;
1579}
1580#else
1581/*
1582 * vma is the first one with address < vma->vm_start. Have to extend vma.
1583 */
1584int expand_stack(struct vm_area_struct *vma, unsigned long address)
1585{
1586 int error;
1587
1588 /*
1589 * We must make sure the anon_vma is allocated
1590 * so that the anon_vma locking is not a noop.
1591 */
1592 if (unlikely(anon_vma_prepare(vma)))
1593 return -ENOMEM;
1594 anon_vma_lock(vma);
1595
1596 /*
1597 * vma->vm_start/vm_end cannot change under us because the caller
1598 * is required to hold the mmap_sem in read mode. We need the
1599 * anon_vma lock to serialize against concurrent expand_stacks.
1600 */
1601 address &= PAGE_MASK;
1602 error = 0;
1603
1604 /* Somebody else might have raced and expanded it already */
1605 if (address < vma->vm_start) {
1606 unsigned long size, grow;
1607
1608 size = vma->vm_end - address;
1609 grow = (vma->vm_start - address) >> PAGE_SHIFT;
1610
1611 error = acct_stack_growth(vma, size, grow);
1612 if (!error) {
1613 vma->vm_start = address;
1614 vma->vm_pgoff -= grow;
1615 }
1616 }
1617 anon_vma_unlock(vma);
1618 return error;
1619}
1620
1621struct vm_area_struct *
1622find_extend_vma(struct mm_struct * mm, unsigned long addr)
1623{
1624 struct vm_area_struct * vma;
1625 unsigned long start;
1626
1627 addr &= PAGE_MASK;
1628 vma = find_vma(mm,addr);
1629 if (!vma)
1630 return NULL;
1631 if (vma->vm_start <= addr)
1632 return vma;
1633 if (!(vma->vm_flags & VM_GROWSDOWN))
1634 return NULL;
1635 start = vma->vm_start;
1636 if (expand_stack(vma, addr))
1637 return NULL;
1638 if (vma->vm_flags & VM_LOCKED) {
1639 make_pages_present(addr, start);
1640 }
1641 return vma;
1642}
1643#endif
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001646 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001648 *
1649 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001651static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Hugh Dickins365e9c872005-10-29 18:16:18 -07001653 /* Update high watermark before we lower total_vm */
1654 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001656 long nrpages = vma_pages(vma);
1657
1658 mm->total_vm -= nrpages;
1659 if (vma->vm_flags & VM_LOCKED)
1660 mm->locked_vm -= nrpages;
1661 vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001662 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07001663 } while (vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 validate_mm(mm);
1665}
1666
1667/*
1668 * Get rid of page table information in the indicated region.
1669 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07001670 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 */
1672static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001673 struct vm_area_struct *vma, struct vm_area_struct *prev,
1674 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Hugh Dickinse0da3822005-04-19 13:29:15 -07001676 struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 struct mmu_gather *tlb;
1678 unsigned long nr_accounted = 0;
1679
1680 lru_add_drain();
1681 tlb = tlb_gather_mmu(mm, 0);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001682 update_hiwater_rss(mm);
Hugh Dickins508034a2005-10-29 18:16:30 -07001683 unmap_vmas(&tlb, vma, start, end, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001685 free_pgtables(&tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001686 next? next->vm_start: 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 tlb_finish_mmu(tlb, start, end);
1688}
1689
1690/*
1691 * Create a list of vma's touched by the unmap, removing them from the mm's
1692 * vma list as we go..
1693 */
1694static void
1695detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
1696 struct vm_area_struct *prev, unsigned long end)
1697{
1698 struct vm_area_struct **insertion_point;
1699 struct vm_area_struct *tail_vma = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001700 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
1703 do {
1704 rb_erase(&vma->vm_rb, &mm->mm_rb);
1705 mm->map_count--;
1706 tail_vma = vma;
1707 vma = vma->vm_next;
1708 } while (vma && vma->vm_start < end);
1709 *insertion_point = vma;
1710 tail_vma->vm_next = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001711 if (mm->unmap_area == arch_unmap_area)
1712 addr = prev ? prev->vm_end : mm->mmap_base;
1713 else
1714 addr = vma ? vma->vm_start : mm->mmap_base;
1715 mm->unmap_area(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 mm->mmap_cache = NULL; /* Kill the cache. */
1717}
1718
1719/*
1720 * Split a vma into two pieces at address 'addr', a new vma is allocated
1721 * either for the first part or the the tail.
1722 */
1723int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
1724 unsigned long addr, int new_below)
1725{
1726 struct mempolicy *pol;
1727 struct vm_area_struct *new;
1728
1729 if (is_vm_hugetlb_page(vma) && (addr & ~HPAGE_MASK))
1730 return -EINVAL;
1731
1732 if (mm->map_count >= sysctl_max_map_count)
1733 return -ENOMEM;
1734
1735 new = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1736 if (!new)
1737 return -ENOMEM;
1738
1739 /* most fields are the same, copy all, and then fixup */
1740 *new = *vma;
1741
1742 if (new_below)
1743 new->vm_end = addr;
1744 else {
1745 new->vm_start = addr;
1746 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
1747 }
1748
1749 pol = mpol_copy(vma_policy(vma));
1750 if (IS_ERR(pol)) {
1751 kmem_cache_free(vm_area_cachep, new);
1752 return PTR_ERR(pol);
1753 }
1754 vma_set_policy(new, pol);
1755
1756 if (new->vm_file)
1757 get_file(new->vm_file);
1758
1759 if (new->vm_ops && new->vm_ops->open)
1760 new->vm_ops->open(new);
1761
1762 if (new_below)
1763 vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
1764 ((addr - new->vm_start) >> PAGE_SHIFT), new);
1765 else
1766 vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
1767
1768 return 0;
1769}
1770
1771/* Munmap is split into 2 main parts -- this part which finds
1772 * what needs doing, and the areas themselves, which do the
1773 * work. This now handles partial unmappings.
1774 * Jeremy Fitzhardinge <jeremy@goop.org>
1775 */
1776int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
1777{
1778 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07001779 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
1782 return -EINVAL;
1783
1784 if ((len = PAGE_ALIGN(len)) == 0)
1785 return -EINVAL;
1786
1787 /* Find the first overlapping VMA */
Hugh Dickins146425a2005-04-19 13:29:18 -07001788 vma = find_vma_prev(mm, start, &prev);
1789 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return 0;
Hugh Dickins146425a2005-04-19 13:29:18 -07001791 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /* if it doesn't overlap, we have nothing.. */
1794 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07001795 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return 0;
1797
1798 /*
1799 * If we need to split any vma, do it now to save pain later.
1800 *
1801 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
1802 * unmapped vm_area_struct will remain in use: so lower split_vma
1803 * places tmp vma above, and higher split_vma places tmp vma below.
1804 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001805 if (start > vma->vm_start) {
1806 int error = split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (error)
1808 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07001809 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811
1812 /* Does it split the last one? */
1813 last = find_vma(mm, end);
1814 if (last && end > last->vm_start) {
1815 int error = split_vma(mm, last, end, 1);
1816 if (error)
1817 return error;
1818 }
Hugh Dickins146425a2005-04-19 13:29:18 -07001819 vma = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 /*
1822 * Remove the vma's, and unmap the actual pages
1823 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001824 detach_vmas_to_be_unmapped(mm, vma, prev, end);
1825 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001828 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 return 0;
1831}
1832
1833EXPORT_SYMBOL(do_munmap);
1834
1835asmlinkage long sys_munmap(unsigned long addr, size_t len)
1836{
1837 int ret;
1838 struct mm_struct *mm = current->mm;
1839
1840 profile_munmap(addr);
1841
1842 down_write(&mm->mmap_sem);
1843 ret = do_munmap(mm, addr, len);
1844 up_write(&mm->mmap_sem);
1845 return ret;
1846}
1847
1848static inline void verify_mm_writelocked(struct mm_struct *mm)
1849{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001850#ifdef CONFIG_DEBUG_VM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
1852 WARN_ON(1);
1853 up_read(&mm->mmap_sem);
1854 }
1855#endif
1856}
1857
1858/*
1859 * this is really a simplified "do_mmap". it only handles
1860 * anonymous maps. eventually we may be able to do some
1861 * brk-specific accounting here.
1862 */
1863unsigned long do_brk(unsigned long addr, unsigned long len)
1864{
1865 struct mm_struct * mm = current->mm;
1866 struct vm_area_struct * vma, * prev;
1867 unsigned long flags;
1868 struct rb_node ** rb_link, * rb_parent;
1869 pgoff_t pgoff = addr >> PAGE_SHIFT;
Kirill Korotaev3a459752006-09-07 14:17:04 +04001870 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 len = PAGE_ALIGN(len);
1873 if (!len)
1874 return addr;
1875
1876 if ((addr + len) > TASK_SIZE || (addr + len) < addr)
1877 return -EINVAL;
1878
Kirill Korotaev3a459752006-09-07 14:17:04 +04001879 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
1880
1881 error = arch_mmap_check(addr, len, flags);
1882 if (error)
1883 return error;
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /*
1886 * mlock MCL_FUTURE?
1887 */
1888 if (mm->def_flags & VM_LOCKED) {
1889 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07001890 locked = len >> PAGE_SHIFT;
1891 locked += mm->locked_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
Chris Wright93ea1d02005-05-01 08:58:38 -07001893 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1895 return -EAGAIN;
1896 }
1897
1898 /*
1899 * mm->mmap_sem is required to protect against another thread
1900 * changing the mappings in case we sleep.
1901 */
1902 verify_mm_writelocked(mm);
1903
1904 /*
1905 * Clear old maps. this also does some error checking for us
1906 */
1907 munmap_back:
1908 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1909 if (vma && vma->vm_start < addr + len) {
1910 if (do_munmap(mm, addr, len))
1911 return -ENOMEM;
1912 goto munmap_back;
1913 }
1914
1915 /* Check against address space limits *after* clearing old maps... */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001916 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 return -ENOMEM;
1918
1919 if (mm->map_count > sysctl_max_map_count)
1920 return -ENOMEM;
1921
1922 if (security_vm_enough_memory(len >> PAGE_SHIFT))
1923 return -ENOMEM;
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 /* Can we just expand an old private anonymous mapping? */
1926 if (vma_merge(mm, prev, addr, addr + len, flags,
1927 NULL, NULL, pgoff, NULL))
1928 goto out;
1929
1930 /*
1931 * create a vma struct for an anonymous mapping
1932 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001933 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (!vma) {
1935 vm_unacct_memory(len >> PAGE_SHIFT);
1936 return -ENOMEM;
1937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 vma->vm_mm = mm;
1940 vma->vm_start = addr;
1941 vma->vm_end = addr + len;
1942 vma->vm_pgoff = pgoff;
1943 vma->vm_flags = flags;
David Howells9637a5e2006-06-23 02:03:43 -07001944 vma->vm_page_prot = protection_map[flags &
1945 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 vma_link(mm, vma, prev, rb_link, rb_parent);
1947out:
1948 mm->total_vm += len >> PAGE_SHIFT;
1949 if (flags & VM_LOCKED) {
1950 mm->locked_vm += len >> PAGE_SHIFT;
1951 make_pages_present(addr, addr + len);
1952 }
1953 return addr;
1954}
1955
1956EXPORT_SYMBOL(do_brk);
1957
1958/* Release all mmaps. */
1959void exit_mmap(struct mm_struct *mm)
1960{
1961 struct mmu_gather *tlb;
Hugh Dickinse0da3822005-04-19 13:29:15 -07001962 struct vm_area_struct *vma = mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 unsigned long nr_accounted = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -07001964 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 flush_cache_mm(mm);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001968 tlb = tlb_gather_mmu(mm, 1);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001969 /* Don't update_hiwater_rss(mm) here, do_exit already did */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001970 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Hugh Dickins508034a2005-10-29 18:16:30 -07001971 end = unmap_vmas(&tlb, vma, 0, -1, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001973 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
Hugh Dickinsee39b372005-04-19 13:29:15 -07001974 tlb_finish_mmu(tlb, 0, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 /*
Hugh Dickins8f4f8c12005-10-29 18:16:29 -07001977 * Walk the list again, actually closing and freeing it,
1978 * with preemption enabled, without holding any MM locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001980 while (vma)
1981 vma = remove_vma(vma);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001982
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001983 BUG_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
1986/* Insert vm structure into process list sorted by address
1987 * and into the inode's i_mmap tree. If vm_file is non-NULL
1988 * then i_mmap_lock is taken here.
1989 */
1990int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
1991{
1992 struct vm_area_struct * __vma, * prev;
1993 struct rb_node ** rb_link, * rb_parent;
1994
1995 /*
1996 * The vm_pgoff of a purely anonymous vma should be irrelevant
1997 * until its first write fault, when page's anon_vma and index
1998 * are set. But now set the vm_pgoff it will almost certainly
1999 * end up with (unless mremap moves it elsewhere before that
2000 * first wfault), so /proc/pid/maps tells a consistent story.
2001 *
2002 * By setting it to reflect the virtual start address of the
2003 * vma, merges and splits can happen in a seamless way, just
2004 * using the existing file pgoff checks and manipulations.
2005 * Similarly in do_mmap_pgoff and in do_brk.
2006 */
2007 if (!vma->vm_file) {
2008 BUG_ON(vma->anon_vma);
2009 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2010 }
2011 __vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
2012 if (__vma && __vma->vm_start < vma->vm_end)
2013 return -ENOMEM;
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01002014 if ((vma->vm_flags & VM_ACCOUNT) &&
2015 security_vm_enough_memory(vma_pages(vma)))
2016 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 vma_link(mm, vma, prev, rb_link, rb_parent);
2018 return 0;
2019}
2020
2021/*
2022 * Copy the vma structure to a new location in the same mm,
2023 * prior to moving page table entries, to effect an mremap move.
2024 */
2025struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
2026 unsigned long addr, unsigned long len, pgoff_t pgoff)
2027{
2028 struct vm_area_struct *vma = *vmap;
2029 unsigned long vma_start = vma->vm_start;
2030 struct mm_struct *mm = vma->vm_mm;
2031 struct vm_area_struct *new_vma, *prev;
2032 struct rb_node **rb_link, *rb_parent;
2033 struct mempolicy *pol;
2034
2035 /*
2036 * If anonymous vma has not yet been faulted, update new pgoff
2037 * to match new location, to increase its chance of merging.
2038 */
2039 if (!vma->vm_file && !vma->anon_vma)
2040 pgoff = addr >> PAGE_SHIFT;
2041
2042 find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
2043 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
2044 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
2045 if (new_vma) {
2046 /*
2047 * Source vma may have been merged into new_vma
2048 */
2049 if (vma_start >= new_vma->vm_start &&
2050 vma_start < new_vma->vm_end)
2051 *vmap = new_vma;
2052 } else {
2053 new_vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
2054 if (new_vma) {
2055 *new_vma = *vma;
2056 pol = mpol_copy(vma_policy(vma));
2057 if (IS_ERR(pol)) {
2058 kmem_cache_free(vm_area_cachep, new_vma);
2059 return NULL;
2060 }
2061 vma_set_policy(new_vma, pol);
2062 new_vma->vm_start = addr;
2063 new_vma->vm_end = addr + len;
2064 new_vma->vm_pgoff = pgoff;
2065 if (new_vma->vm_file)
2066 get_file(new_vma->vm_file);
2067 if (new_vma->vm_ops && new_vma->vm_ops->open)
2068 new_vma->vm_ops->open(new_vma);
2069 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2070 }
2071 }
2072 return new_vma;
2073}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002074
2075/*
2076 * Return true if the calling process may expand its vm space by the passed
2077 * number of pages
2078 */
2079int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2080{
2081 unsigned long cur = mm->total_vm; /* pages */
2082 unsigned long lim;
2083
2084 lim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;
2085
2086 if (cur + npages > lim)
2087 return 0;
2088 return 1;
2089}