blob: a3984fad3fc2cb61257e3a1f585195a8a5f9afb7 [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>
16#include <linux/init.h>
17#include <linux/file.h>
18#include <linux/fs.h>
19#include <linux/personality.h>
20#include <linux/security.h>
21#include <linux/hugetlb.h>
22#include <linux/profile.h>
23#include <linux/module.h>
24#include <linux/mount.h>
25#include <linux/mempolicy.h>
26#include <linux/rmap.h>
27
28#include <asm/uaccess.h>
29#include <asm/cacheflush.h>
30#include <asm/tlb.h>
31
Hugh Dickinse0da3822005-04-19 13:29:15 -070032static void unmap_region(struct mm_struct *mm,
33 struct vm_area_struct *vma, struct vm_area_struct *prev,
34 unsigned long start, unsigned long end);
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
37 * WARNING: the debugging will use recursive algorithms so never enable this
38 * unless you know what you are doing.
39 */
40#undef DEBUG_MM_RB
41
42/* description of effects of mapping type and prot in current implementation.
43 * this is due to the limited x86 page protection hardware. The expected
44 * behavior is in parens:
45 *
46 * map_type prot
47 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
48 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
49 * w: (no) no w: (no) no w: (yes) yes w: (no) no
50 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
51 *
52 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
53 * w: (no) no w: (no) no w: (copy) copy w: (no) no
54 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
55 *
56 */
57pgprot_t protection_map[16] = {
58 __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
59 __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
60};
61
62int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
63int sysctl_overcommit_ratio = 50; /* default is 50% */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070064int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065atomic_t vm_committed_space = ATOMIC_INIT(0);
66
67/*
68 * Check that a process has enough memory to allocate a new virtual
69 * mapping. 0 means there is enough memory for the allocation to
70 * succeed and -ENOMEM implies there is not.
71 *
72 * We currently support three overcommit policies, which are set via the
73 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
74 *
75 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
76 * Additional code 2002 Jul 20 by Robert Love.
77 *
78 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
79 *
80 * Note this is a helper function intended to be used by LSMs which
81 * wish to use this logic.
82 */
83int __vm_enough_memory(long pages, int cap_sys_admin)
84{
85 unsigned long free, allowed;
86
87 vm_acct_memory(pages);
88
89 /*
90 * Sometimes we want to use more memory than we have
91 */
92 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
93 return 0;
94
95 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
96 unsigned long n;
97
98 free = get_page_cache_size();
99 free += nr_swap_pages;
100
101 /*
102 * Any slabs which are created with the
103 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
104 * which are reclaimable, under pressure. The dentry
105 * cache and most inode caches should fall into this
106 */
107 free += atomic_read(&slab_reclaim_pages);
108
109 /*
110 * Leave the last 3% for root
111 */
112 if (!cap_sys_admin)
113 free -= free / 32;
114
115 if (free > pages)
116 return 0;
117
118 /*
119 * nr_free_pages() is very expensive on large systems,
120 * only call if we're about to fail.
121 */
122 n = nr_free_pages();
123 if (!cap_sys_admin)
124 n -= n / 32;
125 free += n;
126
127 if (free > pages)
128 return 0;
129 vm_unacct_memory(pages);
130 return -ENOMEM;
131 }
132
133 allowed = (totalram_pages - hugetlb_total_pages())
134 * sysctl_overcommit_ratio / 100;
135 /*
136 * Leave the last 3% for root
137 */
138 if (!cap_sys_admin)
139 allowed -= allowed / 32;
140 allowed += total_swap_pages;
141
142 /* Don't let a single process grow too big:
143 leave 3% of the size of this process for other processes */
144 allowed -= current->mm->total_vm / 32;
145
Simon Derr2f60f8d2005-08-04 19:52:03 -0700146 /*
147 * cast `allowed' as a signed long because vm_committed_space
148 * sometimes has a negative value
149 */
150 if (atomic_read(&vm_committed_space) < (long)allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return 0;
152
153 vm_unacct_memory(pages);
154
155 return -ENOMEM;
156}
157
158EXPORT_SYMBOL(sysctl_overcommit_memory);
159EXPORT_SYMBOL(sysctl_overcommit_ratio);
160EXPORT_SYMBOL(sysctl_max_map_count);
161EXPORT_SYMBOL(vm_committed_space);
162EXPORT_SYMBOL(__vm_enough_memory);
163
164/*
165 * Requires inode->i_mapping->i_mmap_lock
166 */
167static void __remove_shared_vm_struct(struct vm_area_struct *vma,
168 struct file *file, struct address_space *mapping)
169{
170 if (vma->vm_flags & VM_DENYWRITE)
171 atomic_inc(&file->f_dentry->d_inode->i_writecount);
172 if (vma->vm_flags & VM_SHARED)
173 mapping->i_mmap_writable--;
174
175 flush_dcache_mmap_lock(mapping);
176 if (unlikely(vma->vm_flags & VM_NONLINEAR))
177 list_del_init(&vma->shared.vm_set.list);
178 else
179 vma_prio_tree_remove(vma, &mapping->i_mmap);
180 flush_dcache_mmap_unlock(mapping);
181}
182
183/*
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700184 * Unlink a file-based vm structure from its prio_tree, to hide
185 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700187void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 struct file *file = vma->vm_file;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (file) {
192 struct address_space *mapping = file->f_mapping;
193 spin_lock(&mapping->i_mmap_lock);
194 __remove_shared_vm_struct(vma, file, mapping);
195 spin_unlock(&mapping->i_mmap_lock);
196 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700197}
198
199/*
200 * Close a vm structure and free it, returning the next.
201 */
202static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
203{
204 struct vm_area_struct *next = vma->vm_next;
205
206 /*
207 * Hide vma from rmap and vmtruncate before freeing page tables:
208 * to be moved into free_pgtables once page_table_lock is lifted
209 * from it, but until then lock ordering forbids that move.
210 */
211 anon_vma_unlink(vma);
212 unlink_file_vma(vma);
213
214 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (vma->vm_ops && vma->vm_ops->close)
216 vma->vm_ops->close(vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700217 if (vma->vm_file)
218 fput(vma->vm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 mpol_free(vma_policy(vma));
220 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700221 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224asmlinkage unsigned long sys_brk(unsigned long brk)
225{
226 unsigned long rlim, retval;
227 unsigned long newbrk, oldbrk;
228 struct mm_struct *mm = current->mm;
229
230 down_write(&mm->mmap_sem);
231
232 if (brk < mm->end_code)
233 goto out;
234 newbrk = PAGE_ALIGN(brk);
235 oldbrk = PAGE_ALIGN(mm->brk);
236 if (oldbrk == newbrk)
237 goto set_brk;
238
239 /* Always allow shrinking brk. */
240 if (brk <= mm->brk) {
241 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
242 goto set_brk;
243 goto out;
244 }
245
246 /* Check against rlimit.. */
247 rlim = current->signal->rlim[RLIMIT_DATA].rlim_cur;
248 if (rlim < RLIM_INFINITY && brk - mm->start_data > rlim)
249 goto out;
250
251 /* Check against existing mmap mappings. */
252 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
253 goto out;
254
255 /* Ok, looks good - let it rip. */
256 if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
257 goto out;
258set_brk:
259 mm->brk = brk;
260out:
261 retval = mm->brk;
262 up_write(&mm->mmap_sem);
263 return retval;
264}
265
266#ifdef DEBUG_MM_RB
267static int browse_rb(struct rb_root *root)
268{
269 int i = 0, j;
270 struct rb_node *nd, *pn = NULL;
271 unsigned long prev = 0, pend = 0;
272
273 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
274 struct vm_area_struct *vma;
275 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
276 if (vma->vm_start < prev)
277 printk("vm_start %lx prev %lx\n", vma->vm_start, prev), i = -1;
278 if (vma->vm_start < pend)
279 printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
280 if (vma->vm_start > vma->vm_end)
281 printk("vm_end %lx < vm_start %lx\n", vma->vm_end, vma->vm_start);
282 i++;
283 pn = nd;
284 }
285 j = 0;
286 for (nd = pn; nd; nd = rb_prev(nd)) {
287 j++;
288 }
289 if (i != j)
290 printk("backwards %d, forwards %d\n", j, i), i = 0;
291 return i;
292}
293
294void validate_mm(struct mm_struct *mm)
295{
296 int bug = 0;
297 int i = 0;
298 struct vm_area_struct *tmp = mm->mmap;
299 while (tmp) {
300 tmp = tmp->vm_next;
301 i++;
302 }
303 if (i != mm->map_count)
304 printk("map_count %d vm_next %d\n", mm->map_count, i), bug = 1;
305 i = browse_rb(&mm->mm_rb);
306 if (i != mm->map_count)
307 printk("map_count %d rb %d\n", mm->map_count, i), bug = 1;
308 if (bug)
309 BUG();
310}
311#else
312#define validate_mm(mm) do { } while (0)
313#endif
314
315static struct vm_area_struct *
316find_vma_prepare(struct mm_struct *mm, unsigned long addr,
317 struct vm_area_struct **pprev, struct rb_node ***rb_link,
318 struct rb_node ** rb_parent)
319{
320 struct vm_area_struct * vma;
321 struct rb_node ** __rb_link, * __rb_parent, * rb_prev;
322
323 __rb_link = &mm->mm_rb.rb_node;
324 rb_prev = __rb_parent = NULL;
325 vma = NULL;
326
327 while (*__rb_link) {
328 struct vm_area_struct *vma_tmp;
329
330 __rb_parent = *__rb_link;
331 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
332
333 if (vma_tmp->vm_end > addr) {
334 vma = vma_tmp;
335 if (vma_tmp->vm_start <= addr)
336 return vma;
337 __rb_link = &__rb_parent->rb_left;
338 } else {
339 rb_prev = __rb_parent;
340 __rb_link = &__rb_parent->rb_right;
341 }
342 }
343
344 *pprev = NULL;
345 if (rb_prev)
346 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
347 *rb_link = __rb_link;
348 *rb_parent = __rb_parent;
349 return vma;
350}
351
352static inline void
353__vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
354 struct vm_area_struct *prev, struct rb_node *rb_parent)
355{
356 if (prev) {
357 vma->vm_next = prev->vm_next;
358 prev->vm_next = vma;
359 } else {
360 mm->mmap = vma;
361 if (rb_parent)
362 vma->vm_next = rb_entry(rb_parent,
363 struct vm_area_struct, vm_rb);
364 else
365 vma->vm_next = NULL;
366 }
367}
368
369void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
370 struct rb_node **rb_link, struct rb_node *rb_parent)
371{
372 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
373 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
374}
375
376static inline void __vma_link_file(struct vm_area_struct *vma)
377{
378 struct file * file;
379
380 file = vma->vm_file;
381 if (file) {
382 struct address_space *mapping = file->f_mapping;
383
384 if (vma->vm_flags & VM_DENYWRITE)
385 atomic_dec(&file->f_dentry->d_inode->i_writecount);
386 if (vma->vm_flags & VM_SHARED)
387 mapping->i_mmap_writable++;
388
389 flush_dcache_mmap_lock(mapping);
390 if (unlikely(vma->vm_flags & VM_NONLINEAR))
391 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
392 else
393 vma_prio_tree_insert(vma, &mapping->i_mmap);
394 flush_dcache_mmap_unlock(mapping);
395 }
396}
397
398static void
399__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
400 struct vm_area_struct *prev, struct rb_node **rb_link,
401 struct rb_node *rb_parent)
402{
403 __vma_link_list(mm, vma, prev, rb_parent);
404 __vma_link_rb(mm, vma, rb_link, rb_parent);
405 __anon_vma_link(vma);
406}
407
408static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
409 struct vm_area_struct *prev, struct rb_node **rb_link,
410 struct rb_node *rb_parent)
411{
412 struct address_space *mapping = NULL;
413
414 if (vma->vm_file)
415 mapping = vma->vm_file->f_mapping;
416
417 if (mapping) {
418 spin_lock(&mapping->i_mmap_lock);
419 vma->vm_truncate_count = mapping->truncate_count;
420 }
421 anon_vma_lock(vma);
422
423 __vma_link(mm, vma, prev, rb_link, rb_parent);
424 __vma_link_file(vma);
425
426 anon_vma_unlock(vma);
427 if (mapping)
428 spin_unlock(&mapping->i_mmap_lock);
429
430 mm->map_count++;
431 validate_mm(mm);
432}
433
434/*
435 * Helper for vma_adjust in the split_vma insert case:
436 * insert vm structure into list and rbtree and anon_vma,
437 * but it has already been inserted into prio_tree earlier.
438 */
439static void
440__insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
441{
442 struct vm_area_struct * __vma, * prev;
443 struct rb_node ** rb_link, * rb_parent;
444
445 __vma = find_vma_prepare(mm, vma->vm_start,&prev, &rb_link, &rb_parent);
446 if (__vma && __vma->vm_start < vma->vm_end)
447 BUG();
448 __vma_link(mm, vma, prev, rb_link, rb_parent);
449 mm->map_count++;
450}
451
452static inline void
453__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
454 struct vm_area_struct *prev)
455{
456 prev->vm_next = vma->vm_next;
457 rb_erase(&vma->vm_rb, &mm->mm_rb);
458 if (mm->mmap_cache == vma)
459 mm->mmap_cache = prev;
460}
461
462/*
463 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
464 * is already present in an i_mmap tree without adjusting the tree.
465 * The following helper function should be used when such adjustments
466 * are necessary. The "insert" vma (if any) is to be inserted
467 * before we drop the necessary locks.
468 */
469void vma_adjust(struct vm_area_struct *vma, unsigned long start,
470 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
471{
472 struct mm_struct *mm = vma->vm_mm;
473 struct vm_area_struct *next = vma->vm_next;
474 struct vm_area_struct *importer = NULL;
475 struct address_space *mapping = NULL;
476 struct prio_tree_root *root = NULL;
477 struct file *file = vma->vm_file;
478 struct anon_vma *anon_vma = NULL;
479 long adjust_next = 0;
480 int remove_next = 0;
481
482 if (next && !insert) {
483 if (end >= next->vm_end) {
484 /*
485 * vma expands, overlapping all the next, and
486 * perhaps the one after too (mprotect case 6).
487 */
488again: remove_next = 1 + (end > next->vm_end);
489 end = next->vm_end;
490 anon_vma = next->anon_vma;
491 importer = vma;
492 } else if (end > next->vm_start) {
493 /*
494 * vma expands, overlapping part of the next:
495 * mprotect case 5 shifting the boundary up.
496 */
497 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
498 anon_vma = next->anon_vma;
499 importer = vma;
500 } else if (end < vma->vm_end) {
501 /*
502 * vma shrinks, and !insert tells it's not
503 * split_vma inserting another: so it must be
504 * mprotect case 4 shifting the boundary down.
505 */
506 adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
507 anon_vma = next->anon_vma;
508 importer = next;
509 }
510 }
511
512 if (file) {
513 mapping = file->f_mapping;
514 if (!(vma->vm_flags & VM_NONLINEAR))
515 root = &mapping->i_mmap;
516 spin_lock(&mapping->i_mmap_lock);
517 if (importer &&
518 vma->vm_truncate_count != next->vm_truncate_count) {
519 /*
520 * unmap_mapping_range might be in progress:
521 * ensure that the expanding vma is rescanned.
522 */
523 importer->vm_truncate_count = 0;
524 }
525 if (insert) {
526 insert->vm_truncate_count = vma->vm_truncate_count;
527 /*
528 * Put into prio_tree now, so instantiated pages
529 * are visible to arm/parisc __flush_dcache_page
530 * throughout; but we cannot insert into address
531 * space until vma start or end is updated.
532 */
533 __vma_link_file(insert);
534 }
535 }
536
537 /*
538 * When changing only vma->vm_end, we don't really need
539 * anon_vma lock: but is that case worth optimizing out?
540 */
541 if (vma->anon_vma)
542 anon_vma = vma->anon_vma;
543 if (anon_vma) {
544 spin_lock(&anon_vma->lock);
545 /*
546 * Easily overlooked: when mprotect shifts the boundary,
547 * make sure the expanding vma has anon_vma set if the
548 * shrinking vma had, to cover any anon pages imported.
549 */
550 if (importer && !importer->anon_vma) {
551 importer->anon_vma = anon_vma;
552 __anon_vma_link(importer);
553 }
554 }
555
556 if (root) {
557 flush_dcache_mmap_lock(mapping);
558 vma_prio_tree_remove(vma, root);
559 if (adjust_next)
560 vma_prio_tree_remove(next, root);
561 }
562
563 vma->vm_start = start;
564 vma->vm_end = end;
565 vma->vm_pgoff = pgoff;
566 if (adjust_next) {
567 next->vm_start += adjust_next << PAGE_SHIFT;
568 next->vm_pgoff += adjust_next;
569 }
570
571 if (root) {
572 if (adjust_next)
573 vma_prio_tree_insert(next, root);
574 vma_prio_tree_insert(vma, root);
575 flush_dcache_mmap_unlock(mapping);
576 }
577
578 if (remove_next) {
579 /*
580 * vma_merge has merged next into vma, and needs
581 * us to remove next before dropping the locks.
582 */
583 __vma_unlink(mm, next, vma);
584 if (file)
585 __remove_shared_vm_struct(next, file, mapping);
586 if (next->anon_vma)
587 __anon_vma_merge(vma, next);
588 } else if (insert) {
589 /*
590 * split_vma has split insert from vma, and needs
591 * us to insert it before dropping the locks
592 * (it may either follow vma or precede it).
593 */
594 __insert_vm_struct(mm, insert);
595 }
596
597 if (anon_vma)
598 spin_unlock(&anon_vma->lock);
599 if (mapping)
600 spin_unlock(&mapping->i_mmap_lock);
601
602 if (remove_next) {
603 if (file)
604 fput(file);
605 mm->map_count--;
606 mpol_free(vma_policy(next));
607 kmem_cache_free(vm_area_cachep, next);
608 /*
609 * In mprotect's case 6 (see comments on vma_merge),
610 * we must remove another next too. It would clutter
611 * up the code too much to do both in one go.
612 */
613 if (remove_next == 2) {
614 next = vma->vm_next;
615 goto again;
616 }
617 }
618
619 validate_mm(mm);
620}
621
622/*
623 * If the vma has a ->close operation then the driver probably needs to release
624 * per-vma resources, so we don't attempt to merge those.
625 */
626#define VM_SPECIAL (VM_IO | VM_DONTCOPY | VM_DONTEXPAND | VM_RESERVED)
627
628static inline int is_mergeable_vma(struct vm_area_struct *vma,
629 struct file *file, unsigned long vm_flags)
630{
631 if (vma->vm_flags != vm_flags)
632 return 0;
633 if (vma->vm_file != file)
634 return 0;
635 if (vma->vm_ops && vma->vm_ops->close)
636 return 0;
637 return 1;
638}
639
640static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
641 struct anon_vma *anon_vma2)
642{
643 return !anon_vma1 || !anon_vma2 || (anon_vma1 == anon_vma2);
644}
645
646/*
647 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
648 * in front of (at a lower virtual address and file offset than) the vma.
649 *
650 * We cannot merge two vmas if they have differently assigned (non-NULL)
651 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
652 *
653 * We don't check here for the merged mmap wrapping around the end of pagecache
654 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
655 * wrap, nor mmaps which cover the final page at index -1UL.
656 */
657static int
658can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
659 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
660{
661 if (is_mergeable_vma(vma, file, vm_flags) &&
662 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
663 if (vma->vm_pgoff == vm_pgoff)
664 return 1;
665 }
666 return 0;
667}
668
669/*
670 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
671 * beyond (at a higher virtual address and file offset than) the vma.
672 *
673 * We cannot merge two vmas if they have differently assigned (non-NULL)
674 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
675 */
676static int
677can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
678 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
679{
680 if (is_mergeable_vma(vma, file, vm_flags) &&
681 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
682 pgoff_t vm_pglen;
683 vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
684 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
685 return 1;
686 }
687 return 0;
688}
689
690/*
691 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
692 * whether that can be merged with its predecessor or its successor.
693 * Or both (it neatly fills a hole).
694 *
695 * In most cases - when called for mmap, brk or mremap - [addr,end) is
696 * certain not to be mapped by the time vma_merge is called; but when
697 * called for mprotect, it is certain to be already mapped (either at
698 * an offset within prev, or at the start of next), and the flags of
699 * this area are about to be changed to vm_flags - and the no-change
700 * case has already been eliminated.
701 *
702 * The following mprotect cases have to be considered, where AAAA is
703 * the area passed down from mprotect_fixup, never extending beyond one
704 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
705 *
706 * AAAA AAAA AAAA AAAA
707 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
708 * cannot merge might become might become might become
709 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
710 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
711 * mremap move: PPPPNNNNNNNN 8
712 * AAAA
713 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
714 * might become case 1 below case 2 below case 3 below
715 *
716 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
717 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
718 */
719struct vm_area_struct *vma_merge(struct mm_struct *mm,
720 struct vm_area_struct *prev, unsigned long addr,
721 unsigned long end, unsigned long vm_flags,
722 struct anon_vma *anon_vma, struct file *file,
723 pgoff_t pgoff, struct mempolicy *policy)
724{
725 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
726 struct vm_area_struct *area, *next;
727
728 /*
729 * We later require that vma->vm_flags == vm_flags,
730 * so this tests vma->vm_flags & VM_SPECIAL, too.
731 */
732 if (vm_flags & VM_SPECIAL)
733 return NULL;
734
735 if (prev)
736 next = prev->vm_next;
737 else
738 next = mm->mmap;
739 area = next;
740 if (next && next->vm_end == end) /* cases 6, 7, 8 */
741 next = next->vm_next;
742
743 /*
744 * Can it merge with the predecessor?
745 */
746 if (prev && prev->vm_end == addr &&
747 mpol_equal(vma_policy(prev), policy) &&
748 can_vma_merge_after(prev, vm_flags,
749 anon_vma, file, pgoff)) {
750 /*
751 * OK, it can. Can we now merge in the successor as well?
752 */
753 if (next && end == next->vm_start &&
754 mpol_equal(policy, vma_policy(next)) &&
755 can_vma_merge_before(next, vm_flags,
756 anon_vma, file, pgoff+pglen) &&
757 is_mergeable_anon_vma(prev->anon_vma,
758 next->anon_vma)) {
759 /* cases 1, 6 */
760 vma_adjust(prev, prev->vm_start,
761 next->vm_end, prev->vm_pgoff, NULL);
762 } else /* cases 2, 5, 7 */
763 vma_adjust(prev, prev->vm_start,
764 end, prev->vm_pgoff, NULL);
765 return prev;
766 }
767
768 /*
769 * Can this new request be merged in front of next?
770 */
771 if (next && end == next->vm_start &&
772 mpol_equal(policy, vma_policy(next)) &&
773 can_vma_merge_before(next, vm_flags,
774 anon_vma, file, pgoff+pglen)) {
775 if (prev && addr < prev->vm_end) /* case 4 */
776 vma_adjust(prev, prev->vm_start,
777 addr, prev->vm_pgoff, NULL);
778 else /* cases 3, 8 */
779 vma_adjust(area, addr, next->vm_end,
780 next->vm_pgoff - pglen, NULL);
781 return area;
782 }
783
784 return NULL;
785}
786
787/*
788 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
789 * neighbouring vmas for a suitable anon_vma, before it goes off
790 * to allocate a new anon_vma. It checks because a repetitive
791 * sequence of mprotects and faults may otherwise lead to distinct
792 * anon_vmas being allocated, preventing vma merge in subsequent
793 * mprotect.
794 */
795struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
796{
797 struct vm_area_struct *near;
798 unsigned long vm_flags;
799
800 near = vma->vm_next;
801 if (!near)
802 goto try_prev;
803
804 /*
805 * Since only mprotect tries to remerge vmas, match flags
806 * which might be mprotected into each other later on.
807 * Neither mlock nor madvise tries to remerge at present,
808 * so leave their flags as obstructing a merge.
809 */
810 vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
811 vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
812
813 if (near->anon_vma && vma->vm_end == near->vm_start &&
814 mpol_equal(vma_policy(vma), vma_policy(near)) &&
815 can_vma_merge_before(near, vm_flags,
816 NULL, vma->vm_file, vma->vm_pgoff +
817 ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT)))
818 return near->anon_vma;
819try_prev:
820 /*
821 * It is potentially slow to have to call find_vma_prev here.
822 * But it's only on the first write fault on the vma, not
823 * every time, and we could devise a way to avoid it later
824 * (e.g. stash info in next's anon_vma_node when assigning
825 * an anon_vma, or when trying vma_merge). Another time.
826 */
827 if (find_vma_prev(vma->vm_mm, vma->vm_start, &near) != vma)
828 BUG();
829 if (!near)
830 goto none;
831
832 vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
833 vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
834
835 if (near->anon_vma && near->vm_end == vma->vm_start &&
836 mpol_equal(vma_policy(near), vma_policy(vma)) &&
837 can_vma_merge_after(near, vm_flags,
838 NULL, vma->vm_file, vma->vm_pgoff))
839 return near->anon_vma;
840none:
841 /*
842 * There's no absolute need to look only at touching neighbours:
843 * we could search further afield for "compatible" anon_vmas.
844 * But it would probably just be a waste of time searching,
845 * or lead to too many vmas hanging off the same anon_vma.
846 * We're trying to allow mprotect remerging later on,
847 * not trying to minimize memory used for anon_vmas.
848 */
849 return NULL;
850}
851
852#ifdef CONFIG_PROC_FS
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700853void vm_stat_account(struct mm_struct *mm, unsigned long flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct file *file, long pages)
855{
856 const unsigned long stack_flags
857 = VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN);
858
859#ifdef CONFIG_HUGETLB
860 if (flags & VM_HUGETLB) {
861 if (!(flags & VM_DONTCOPY))
862 mm->shared_vm += pages;
863 return;
864 }
865#endif /* CONFIG_HUGETLB */
866
867 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
920 /* Careful about overflows.. */
921 len = PAGE_ALIGN(len);
922 if (!len || len > TASK_SIZE)
923 return -ENOMEM;
924
925 /* offset overflow? */
926 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
927 return -EOVERFLOW;
928
929 /* Too many mappings? */
930 if (mm->map_count > sysctl_max_map_count)
931 return -ENOMEM;
932
933 /* Obtain the address to map to. we verify (or select) it and ensure
934 * that it represents a valid section of the address space.
935 */
936 addr = get_unmapped_area(file, addr, len, pgoff, flags);
937 if (addr & ~PAGE_MASK)
938 return addr;
939
940 /* Do simple checking here so the lower-level routines won't have
941 * to. we assume access permissions have been handled by the open
942 * of the memory object, so we don't do any here.
943 */
944 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
945 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
946
947 if (flags & MAP_LOCKED) {
948 if (!can_do_mlock())
949 return -EPERM;
950 vm_flags |= VM_LOCKED;
951 }
952 /* mlock MCL_FUTURE? */
953 if (vm_flags & VM_LOCKED) {
954 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -0700955 locked = len >> PAGE_SHIFT;
956 locked += mm->locked_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
Chris Wright93ea1d02005-05-01 08:58:38 -0700958 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
960 return -EAGAIN;
961 }
962
963 inode = file ? file->f_dentry->d_inode : NULL;
964
965 if (file) {
966 switch (flags & MAP_TYPE) {
967 case MAP_SHARED:
968 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
969 return -EACCES;
970
971 /*
972 * Make sure we don't allow writing to an append-only
973 * file..
974 */
975 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
976 return -EACCES;
977
978 /*
979 * Make sure there are no mandatory locks on the file.
980 */
981 if (locks_verify_locked(inode))
982 return -EAGAIN;
983
984 vm_flags |= VM_SHARED | VM_MAYSHARE;
985 if (!(file->f_mode & FMODE_WRITE))
986 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
987
988 /* fall through */
989 case MAP_PRIVATE:
990 if (!(file->f_mode & FMODE_READ))
991 return -EACCES;
992 break;
993
994 default:
995 return -EINVAL;
996 }
997 } else {
998 switch (flags & MAP_TYPE) {
999 case MAP_SHARED:
1000 vm_flags |= VM_SHARED | VM_MAYSHARE;
1001 break;
1002 case MAP_PRIVATE:
1003 /*
1004 * Set pgoff according to addr for anon_vma.
1005 */
1006 pgoff = addr >> PAGE_SHIFT;
1007 break;
1008 default:
1009 return -EINVAL;
1010 }
1011 }
1012
1013 error = security_file_mmap(file, reqprot, prot, flags);
1014 if (error)
1015 return error;
1016
1017 /* Clear old maps */
1018 error = -ENOMEM;
1019munmap_back:
1020 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1021 if (vma && vma->vm_start < addr + len) {
1022 if (do_munmap(mm, addr, len))
1023 return -ENOMEM;
1024 goto munmap_back;
1025 }
1026
1027 /* Check against address space limit. */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001028 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return -ENOMEM;
1030
1031 if (accountable && (!(flags & MAP_NORESERVE) ||
1032 sysctl_overcommit_memory == OVERCOMMIT_NEVER)) {
1033 if (vm_flags & VM_SHARED) {
1034 /* Check memory availability in shmem_file_setup? */
1035 vm_flags |= VM_ACCOUNT;
1036 } else if (vm_flags & VM_WRITE) {
1037 /*
1038 * Private writable mapping: check memory availability
1039 */
1040 charged = len >> PAGE_SHIFT;
1041 if (security_vm_enough_memory(charged))
1042 return -ENOMEM;
1043 vm_flags |= VM_ACCOUNT;
1044 }
1045 }
1046
1047 /*
1048 * Can we just expand an old private anonymous mapping?
1049 * The VM_SHARED test is necessary because shmem_zero_setup
1050 * will create the file object for a shared anonymous map below.
1051 */
1052 if (!file && !(vm_flags & VM_SHARED) &&
1053 vma_merge(mm, prev, addr, addr + len, vm_flags,
1054 NULL, NULL, pgoff, NULL))
1055 goto out;
1056
1057 /*
1058 * Determine the object being mapped and call the appropriate
1059 * specific mapper. the address has already been validated, but
1060 * not unmapped, but the maps are removed from the list.
1061 */
1062 vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1063 if (!vma) {
1064 error = -ENOMEM;
1065 goto unacct_error;
1066 }
1067 memset(vma, 0, sizeof(*vma));
1068
1069 vma->vm_mm = mm;
1070 vma->vm_start = addr;
1071 vma->vm_end = addr + len;
1072 vma->vm_flags = vm_flags;
1073 vma->vm_page_prot = protection_map[vm_flags & 0x0f];
1074 vma->vm_pgoff = pgoff;
1075
1076 if (file) {
1077 error = -EINVAL;
1078 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1079 goto free_vma;
1080 if (vm_flags & VM_DENYWRITE) {
1081 error = deny_write_access(file);
1082 if (error)
1083 goto free_vma;
1084 correct_wcount = 1;
1085 }
1086 vma->vm_file = file;
1087 get_file(file);
1088 error = file->f_op->mmap(file, vma);
1089 if (error)
1090 goto unmap_and_free_vma;
1091 } else if (vm_flags & VM_SHARED) {
1092 error = shmem_zero_setup(vma);
1093 if (error)
1094 goto free_vma;
1095 }
1096
1097 /* We set VM_ACCOUNT in a shared mapping's vm_flags, to inform
1098 * shmem_zero_setup (perhaps called through /dev/zero's ->mmap)
1099 * that memory reservation must be checked; but that reservation
1100 * belongs to shared memory object, not to vma: so now clear it.
1101 */
1102 if ((vm_flags & (VM_SHARED|VM_ACCOUNT)) == (VM_SHARED|VM_ACCOUNT))
1103 vma->vm_flags &= ~VM_ACCOUNT;
1104
1105 /* Can addr have changed??
1106 *
1107 * Answer: Yes, several device drivers can do it in their
1108 * f_op->mmap method. -DaveM
1109 */
1110 addr = vma->vm_start;
1111 pgoff = vma->vm_pgoff;
1112 vm_flags = vma->vm_flags;
1113
1114 if (!file || !vma_merge(mm, prev, addr, vma->vm_end,
1115 vma->vm_flags, NULL, file, pgoff, vma_policy(vma))) {
1116 file = vma->vm_file;
1117 vma_link(mm, vma, prev, rb_link, rb_parent);
1118 if (correct_wcount)
1119 atomic_inc(&inode->i_writecount);
1120 } else {
1121 if (file) {
1122 if (correct_wcount)
1123 atomic_inc(&inode->i_writecount);
1124 fput(file);
1125 }
1126 mpol_free(vma_policy(vma));
1127 kmem_cache_free(vm_area_cachep, vma);
1128 }
1129out:
1130 mm->total_vm += len >> PAGE_SHIFT;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001131 vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (vm_flags & VM_LOCKED) {
1133 mm->locked_vm += len >> PAGE_SHIFT;
1134 make_pages_present(addr, addr + len);
1135 }
1136 if (flags & MAP_POPULATE) {
1137 up_write(&mm->mmap_sem);
1138 sys_remap_file_pages(addr, len, 0,
1139 pgoff, flags & MAP_NONBLOCK);
1140 down_write(&mm->mmap_sem);
1141 }
1142 return addr;
1143
1144unmap_and_free_vma:
1145 if (correct_wcount)
1146 atomic_inc(&inode->i_writecount);
1147 vma->vm_file = NULL;
1148 fput(file);
1149
1150 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001151 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1152 charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153free_vma:
1154 kmem_cache_free(vm_area_cachep, vma);
1155unacct_error:
1156 if (charged)
1157 vm_unacct_memory(charged);
1158 return error;
1159}
1160
1161EXPORT_SYMBOL(do_mmap_pgoff);
1162
1163/* Get an address range which is currently unmapped.
1164 * For shmat() with addr=0.
1165 *
1166 * Ugly calling convention alert:
1167 * Return value with the low bits set means error value,
1168 * ie
1169 * if (ret & ~PAGE_MASK)
1170 * error = ret;
1171 *
1172 * This function "knows" that -ENOMEM has the bits set.
1173 */
1174#ifndef HAVE_ARCH_UNMAPPED_AREA
1175unsigned long
1176arch_get_unmapped_area(struct file *filp, unsigned long addr,
1177 unsigned long len, unsigned long pgoff, unsigned long flags)
1178{
1179 struct mm_struct *mm = current->mm;
1180 struct vm_area_struct *vma;
1181 unsigned long start_addr;
1182
1183 if (len > TASK_SIZE)
1184 return -ENOMEM;
1185
1186 if (addr) {
1187 addr = PAGE_ALIGN(addr);
1188 vma = find_vma(mm, addr);
1189 if (TASK_SIZE - len >= addr &&
1190 (!vma || addr + len <= vma->vm_start))
1191 return addr;
1192 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001193 if (len > mm->cached_hole_size) {
1194 start_addr = addr = mm->free_area_cache;
1195 } else {
1196 start_addr = addr = TASK_UNMAPPED_BASE;
1197 mm->cached_hole_size = 0;
1198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200full_search:
1201 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
1202 /* At this point: (!vma || addr < vma->vm_end). */
1203 if (TASK_SIZE - len < addr) {
1204 /*
1205 * Start a new search - just in case we missed
1206 * some holes.
1207 */
1208 if (start_addr != TASK_UNMAPPED_BASE) {
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001209 addr = TASK_UNMAPPED_BASE;
1210 start_addr = addr;
1211 mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 goto full_search;
1213 }
1214 return -ENOMEM;
1215 }
1216 if (!vma || addr + len <= vma->vm_start) {
1217 /*
1218 * Remember the place where we stopped the search:
1219 */
1220 mm->free_area_cache = addr + len;
1221 return addr;
1222 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001223 if (addr + mm->cached_hole_size < vma->vm_start)
1224 mm->cached_hole_size = vma->vm_start - addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 addr = vma->vm_end;
1226 }
1227}
1228#endif
1229
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001230void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 /*
1233 * Is this a new hole at the lowest possible address?
1234 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001235 if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache) {
1236 mm->free_area_cache = addr;
1237 mm->cached_hole_size = ~0UL;
1238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241/*
1242 * This mmap-allocator allocates new areas top-down from below the
1243 * stack's low limit (the base):
1244 */
1245#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1246unsigned long
1247arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1248 const unsigned long len, const unsigned long pgoff,
1249 const unsigned long flags)
1250{
1251 struct vm_area_struct *vma;
1252 struct mm_struct *mm = current->mm;
1253 unsigned long addr = addr0;
1254
1255 /* requested length too big for entire address space */
1256 if (len > TASK_SIZE)
1257 return -ENOMEM;
1258
1259 /* requesting a specific address */
1260 if (addr) {
1261 addr = PAGE_ALIGN(addr);
1262 vma = find_vma(mm, addr);
1263 if (TASK_SIZE - len >= addr &&
1264 (!vma || addr + len <= vma->vm_start))
1265 return addr;
1266 }
1267
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001268 /* check if free_area_cache is useful for us */
1269 if (len <= mm->cached_hole_size) {
1270 mm->cached_hole_size = 0;
1271 mm->free_area_cache = mm->mmap_base;
1272 }
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 /* either no address requested or can't fit in requested address hole */
1275 addr = mm->free_area_cache;
1276
1277 /* make sure it can fit in the remaining address space */
Linus Torvalds49a43872005-05-18 15:39:33 -07001278 if (addr > len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 vma = find_vma(mm, addr-len);
1280 if (!vma || addr <= vma->vm_start)
1281 /* remember the address as a hint for next time */
1282 return (mm->free_area_cache = addr-len);
1283 }
1284
Chris Wright73219d12005-06-21 17:14:52 -07001285 if (mm->mmap_base < len)
1286 goto bottomup;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 addr = mm->mmap_base-len;
1289
1290 do {
1291 /*
1292 * Lookup failure means no vma is above this address,
1293 * else if new region fits below vma->vm_start,
1294 * return with success:
1295 */
1296 vma = find_vma(mm, addr);
1297 if (!vma || addr+len <= vma->vm_start)
1298 /* remember the address as a hint for next time */
1299 return (mm->free_area_cache = addr);
1300
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001301 /* remember the largest hole we saw so far */
1302 if (addr + mm->cached_hole_size < vma->vm_start)
1303 mm->cached_hole_size = vma->vm_start - addr;
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 /* try just below the current vma->vm_start */
1306 addr = vma->vm_start-len;
Linus Torvalds49a43872005-05-18 15:39:33 -07001307 } while (len < vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Chris Wright73219d12005-06-21 17:14:52 -07001309bottomup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 /*
1311 * A failed mmap() very likely causes application failure,
1312 * so fall back to the bottom-up function here. This scenario
1313 * can happen with large stack limits and large mmap()
1314 * allocations.
1315 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001316 mm->cached_hole_size = ~0UL;
1317 mm->free_area_cache = TASK_UNMAPPED_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
1319 /*
1320 * Restore the topdown base:
1321 */
1322 mm->free_area_cache = mm->mmap_base;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001323 mm->cached_hole_size = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 return addr;
1326}
1327#endif
1328
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001329void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 /*
1332 * Is this a new hole at the highest possible address?
1333 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001334 if (addr > mm->free_area_cache)
1335 mm->free_area_cache = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 /* dont allow allocations above current base */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001338 if (mm->free_area_cache > mm->mmap_base)
1339 mm->free_area_cache = mm->mmap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342unsigned long
1343get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1344 unsigned long pgoff, unsigned long flags)
1345{
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001346 unsigned long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001348 if (!(flags & MAP_FIXED)) {
1349 unsigned long (*get_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
1350
1351 get_area = current->mm->get_unmapped_area;
1352 if (file && file->f_op && file->f_op->get_unmapped_area)
1353 get_area = file->f_op->get_unmapped_area;
1354 addr = get_area(file, addr, len, pgoff, flags);
1355 if (IS_ERR_VALUE(addr))
1356 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001359 if (addr > TASK_SIZE - len)
1360 return -ENOMEM;
1361 if (addr & ~PAGE_MASK)
1362 return -EINVAL;
1363 if (file && is_file_hugepages(file)) {
1364 /*
1365 * Check if the given range is hugepage aligned, and
1366 * can be made suitable for hugepages.
1367 */
1368 ret = prepare_hugepage_range(addr, len);
1369 } else {
1370 /*
1371 * Ensure that a normal request is not falling in a
1372 * reserved hugepage range. For some archs like IA-64,
1373 * there is a separate region for hugepages.
1374 */
1375 ret = is_hugepage_only_range(current->mm, addr, len);
1376 }
1377 if (ret)
1378 return -EINVAL;
1379 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
1382EXPORT_SYMBOL(get_unmapped_area);
1383
1384/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
1385struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr)
1386{
1387 struct vm_area_struct *vma = NULL;
1388
1389 if (mm) {
1390 /* Check the cache first. */
1391 /* (Cache hit rate is typically around 35%.) */
1392 vma = mm->mmap_cache;
1393 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1394 struct rb_node * rb_node;
1395
1396 rb_node = mm->mm_rb.rb_node;
1397 vma = NULL;
1398
1399 while (rb_node) {
1400 struct vm_area_struct * vma_tmp;
1401
1402 vma_tmp = rb_entry(rb_node,
1403 struct vm_area_struct, vm_rb);
1404
1405 if (vma_tmp->vm_end > addr) {
1406 vma = vma_tmp;
1407 if (vma_tmp->vm_start <= addr)
1408 break;
1409 rb_node = rb_node->rb_left;
1410 } else
1411 rb_node = rb_node->rb_right;
1412 }
1413 if (vma)
1414 mm->mmap_cache = vma;
1415 }
1416 }
1417 return vma;
1418}
1419
1420EXPORT_SYMBOL(find_vma);
1421
1422/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1423struct vm_area_struct *
1424find_vma_prev(struct mm_struct *mm, unsigned long addr,
1425 struct vm_area_struct **pprev)
1426{
1427 struct vm_area_struct *vma = NULL, *prev = NULL;
1428 struct rb_node * rb_node;
1429 if (!mm)
1430 goto out;
1431
1432 /* Guard against addr being lower than the first VMA */
1433 vma = mm->mmap;
1434
1435 /* Go through the RB tree quickly. */
1436 rb_node = mm->mm_rb.rb_node;
1437
1438 while (rb_node) {
1439 struct vm_area_struct *vma_tmp;
1440 vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1441
1442 if (addr < vma_tmp->vm_end) {
1443 rb_node = rb_node->rb_left;
1444 } else {
1445 prev = vma_tmp;
1446 if (!prev->vm_next || (addr < prev->vm_next->vm_end))
1447 break;
1448 rb_node = rb_node->rb_right;
1449 }
1450 }
1451
1452out:
1453 *pprev = prev;
1454 return prev ? prev->vm_next : vma;
1455}
1456
1457/*
1458 * Verify that the stack growth is acceptable and
1459 * update accounting. This is shared with both the
1460 * grow-up and grow-down cases.
1461 */
1462static int acct_stack_growth(struct vm_area_struct * vma, unsigned long size, unsigned long grow)
1463{
1464 struct mm_struct *mm = vma->vm_mm;
1465 struct rlimit *rlim = current->signal->rlim;
1466
1467 /* address space limit tests */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001468 if (!may_expand_vm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -ENOMEM;
1470
1471 /* Stack limit test */
1472 if (size > rlim[RLIMIT_STACK].rlim_cur)
1473 return -ENOMEM;
1474
1475 /* mlock limit tests */
1476 if (vma->vm_flags & VM_LOCKED) {
1477 unsigned long locked;
1478 unsigned long limit;
1479 locked = mm->locked_vm + grow;
1480 limit = rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT;
1481 if (locked > limit && !capable(CAP_IPC_LOCK))
1482 return -ENOMEM;
1483 }
1484
1485 /*
1486 * Overcommit.. This must be the final test, as it will
1487 * update security statistics.
1488 */
1489 if (security_vm_enough_memory(grow))
1490 return -ENOMEM;
1491
1492 /* Ok, everything looks good - let it rip */
1493 mm->total_vm += grow;
1494 if (vma->vm_flags & VM_LOCKED)
1495 mm->locked_vm += grow;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001496 vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 return 0;
1498}
1499
1500#ifdef CONFIG_STACK_GROWSUP
1501/*
1502 * vma is the first one with address > vma->vm_end. Have to extend vma.
1503 */
1504int expand_stack(struct vm_area_struct * vma, unsigned long address)
1505{
1506 int error;
1507
1508 if (!(vma->vm_flags & VM_GROWSUP))
1509 return -EFAULT;
1510
1511 /*
1512 * We must make sure the anon_vma is allocated
1513 * so that the anon_vma locking is not a noop.
1514 */
1515 if (unlikely(anon_vma_prepare(vma)))
1516 return -ENOMEM;
1517 anon_vma_lock(vma);
1518
1519 /*
1520 * vma->vm_start/vm_end cannot change under us because the caller
1521 * is required to hold the mmap_sem in read mode. We need the
1522 * anon_vma lock to serialize against concurrent expand_stacks.
1523 */
1524 address += 4 + PAGE_SIZE - 1;
1525 address &= PAGE_MASK;
1526 error = 0;
1527
1528 /* Somebody else might have raced and expanded it already */
1529 if (address > vma->vm_end) {
1530 unsigned long size, grow;
1531
1532 size = address - vma->vm_start;
1533 grow = (address - vma->vm_end) >> PAGE_SHIFT;
1534
1535 error = acct_stack_growth(vma, size, grow);
1536 if (!error)
1537 vma->vm_end = address;
1538 }
1539 anon_vma_unlock(vma);
1540 return error;
1541}
1542
1543struct vm_area_struct *
1544find_extend_vma(struct mm_struct *mm, unsigned long addr)
1545{
1546 struct vm_area_struct *vma, *prev;
1547
1548 addr &= PAGE_MASK;
1549 vma = find_vma_prev(mm, addr, &prev);
1550 if (vma && (vma->vm_start <= addr))
1551 return vma;
1552 if (!prev || expand_stack(prev, addr))
1553 return NULL;
1554 if (prev->vm_flags & VM_LOCKED) {
1555 make_pages_present(addr, prev->vm_end);
1556 }
1557 return prev;
1558}
1559#else
1560/*
1561 * vma is the first one with address < vma->vm_start. Have to extend vma.
1562 */
1563int expand_stack(struct vm_area_struct *vma, unsigned long address)
1564{
1565 int error;
1566
1567 /*
1568 * We must make sure the anon_vma is allocated
1569 * so that the anon_vma locking is not a noop.
1570 */
1571 if (unlikely(anon_vma_prepare(vma)))
1572 return -ENOMEM;
1573 anon_vma_lock(vma);
1574
1575 /*
1576 * vma->vm_start/vm_end cannot change under us because the caller
1577 * is required to hold the mmap_sem in read mode. We need the
1578 * anon_vma lock to serialize against concurrent expand_stacks.
1579 */
1580 address &= PAGE_MASK;
1581 error = 0;
1582
1583 /* Somebody else might have raced and expanded it already */
1584 if (address < vma->vm_start) {
1585 unsigned long size, grow;
1586
1587 size = vma->vm_end - address;
1588 grow = (vma->vm_start - address) >> PAGE_SHIFT;
1589
1590 error = acct_stack_growth(vma, size, grow);
1591 if (!error) {
1592 vma->vm_start = address;
1593 vma->vm_pgoff -= grow;
1594 }
1595 }
1596 anon_vma_unlock(vma);
1597 return error;
1598}
1599
1600struct vm_area_struct *
1601find_extend_vma(struct mm_struct * mm, unsigned long addr)
1602{
1603 struct vm_area_struct * vma;
1604 unsigned long start;
1605
1606 addr &= PAGE_MASK;
1607 vma = find_vma(mm,addr);
1608 if (!vma)
1609 return NULL;
1610 if (vma->vm_start <= addr)
1611 return vma;
1612 if (!(vma->vm_flags & VM_GROWSDOWN))
1613 return NULL;
1614 start = vma->vm_start;
1615 if (expand_stack(vma, addr))
1616 return NULL;
1617 if (vma->vm_flags & VM_LOCKED) {
1618 make_pages_present(addr, start);
1619 }
1620 return vma;
1621}
1622#endif
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001625 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001627 *
1628 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001630static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001633 long nrpages = vma_pages(vma);
1634
1635 mm->total_vm -= nrpages;
1636 if (vma->vm_flags & VM_LOCKED)
1637 mm->locked_vm -= nrpages;
1638 vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001639 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07001640 } while (vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 validate_mm(mm);
1642}
1643
1644/*
1645 * Get rid of page table information in the indicated region.
1646 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07001647 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 */
1649static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001650 struct vm_area_struct *vma, struct vm_area_struct *prev,
1651 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Hugh Dickinse0da3822005-04-19 13:29:15 -07001653 struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 struct mmu_gather *tlb;
1655 unsigned long nr_accounted = 0;
1656
1657 lru_add_drain();
Hugh Dickinse0da3822005-04-19 13:29:15 -07001658 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 tlb = tlb_gather_mmu(mm, 0);
1660 unmap_vmas(&tlb, mm, vma, start, end, &nr_accounted, NULL);
1661 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001662 free_pgtables(&tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001663 next? next->vm_start: 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 tlb_finish_mmu(tlb, start, end);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001665 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
1668/*
1669 * Create a list of vma's touched by the unmap, removing them from the mm's
1670 * vma list as we go..
1671 */
1672static void
1673detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
1674 struct vm_area_struct *prev, unsigned long end)
1675{
1676 struct vm_area_struct **insertion_point;
1677 struct vm_area_struct *tail_vma = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001678 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
1681 do {
1682 rb_erase(&vma->vm_rb, &mm->mm_rb);
1683 mm->map_count--;
1684 tail_vma = vma;
1685 vma = vma->vm_next;
1686 } while (vma && vma->vm_start < end);
1687 *insertion_point = vma;
1688 tail_vma->vm_next = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001689 if (mm->unmap_area == arch_unmap_area)
1690 addr = prev ? prev->vm_end : mm->mmap_base;
1691 else
1692 addr = vma ? vma->vm_start : mm->mmap_base;
1693 mm->unmap_area(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 mm->mmap_cache = NULL; /* Kill the cache. */
1695}
1696
1697/*
1698 * Split a vma into two pieces at address 'addr', a new vma is allocated
1699 * either for the first part or the the tail.
1700 */
1701int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
1702 unsigned long addr, int new_below)
1703{
1704 struct mempolicy *pol;
1705 struct vm_area_struct *new;
1706
1707 if (is_vm_hugetlb_page(vma) && (addr & ~HPAGE_MASK))
1708 return -EINVAL;
1709
1710 if (mm->map_count >= sysctl_max_map_count)
1711 return -ENOMEM;
1712
1713 new = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1714 if (!new)
1715 return -ENOMEM;
1716
1717 /* most fields are the same, copy all, and then fixup */
1718 *new = *vma;
1719
1720 if (new_below)
1721 new->vm_end = addr;
1722 else {
1723 new->vm_start = addr;
1724 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
1725 }
1726
1727 pol = mpol_copy(vma_policy(vma));
1728 if (IS_ERR(pol)) {
1729 kmem_cache_free(vm_area_cachep, new);
1730 return PTR_ERR(pol);
1731 }
1732 vma_set_policy(new, pol);
1733
1734 if (new->vm_file)
1735 get_file(new->vm_file);
1736
1737 if (new->vm_ops && new->vm_ops->open)
1738 new->vm_ops->open(new);
1739
1740 if (new_below)
1741 vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
1742 ((addr - new->vm_start) >> PAGE_SHIFT), new);
1743 else
1744 vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
1745
1746 return 0;
1747}
1748
1749/* Munmap is split into 2 main parts -- this part which finds
1750 * what needs doing, and the areas themselves, which do the
1751 * work. This now handles partial unmappings.
1752 * Jeremy Fitzhardinge <jeremy@goop.org>
1753 */
1754int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
1755{
1756 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07001757 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
1760 return -EINVAL;
1761
1762 if ((len = PAGE_ALIGN(len)) == 0)
1763 return -EINVAL;
1764
1765 /* Find the first overlapping VMA */
Hugh Dickins146425a2005-04-19 13:29:18 -07001766 vma = find_vma_prev(mm, start, &prev);
1767 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 return 0;
Hugh Dickins146425a2005-04-19 13:29:18 -07001769 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 /* if it doesn't overlap, we have nothing.. */
1772 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07001773 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return 0;
1775
1776 /*
1777 * If we need to split any vma, do it now to save pain later.
1778 *
1779 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
1780 * unmapped vm_area_struct will remain in use: so lower split_vma
1781 * places tmp vma above, and higher split_vma places tmp vma below.
1782 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001783 if (start > vma->vm_start) {
1784 int error = split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (error)
1786 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07001787 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
1790 /* Does it split the last one? */
1791 last = find_vma(mm, end);
1792 if (last && end > last->vm_start) {
1793 int error = split_vma(mm, last, end, 1);
1794 if (error)
1795 return error;
1796 }
Hugh Dickins146425a2005-04-19 13:29:18 -07001797 vma = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 /*
1800 * Remove the vma's, and unmap the actual pages
1801 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001802 detach_vmas_to_be_unmapped(mm, vma, prev, end);
1803 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001806 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 return 0;
1809}
1810
1811EXPORT_SYMBOL(do_munmap);
1812
1813asmlinkage long sys_munmap(unsigned long addr, size_t len)
1814{
1815 int ret;
1816 struct mm_struct *mm = current->mm;
1817
1818 profile_munmap(addr);
1819
1820 down_write(&mm->mmap_sem);
1821 ret = do_munmap(mm, addr, len);
1822 up_write(&mm->mmap_sem);
1823 return ret;
1824}
1825
1826static inline void verify_mm_writelocked(struct mm_struct *mm)
1827{
1828#ifdef CONFIG_DEBUG_KERNEL
1829 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
1830 WARN_ON(1);
1831 up_read(&mm->mmap_sem);
1832 }
1833#endif
1834}
1835
1836/*
1837 * this is really a simplified "do_mmap". it only handles
1838 * anonymous maps. eventually we may be able to do some
1839 * brk-specific accounting here.
1840 */
1841unsigned long do_brk(unsigned long addr, unsigned long len)
1842{
1843 struct mm_struct * mm = current->mm;
1844 struct vm_area_struct * vma, * prev;
1845 unsigned long flags;
1846 struct rb_node ** rb_link, * rb_parent;
1847 pgoff_t pgoff = addr >> PAGE_SHIFT;
1848
1849 len = PAGE_ALIGN(len);
1850 if (!len)
1851 return addr;
1852
1853 if ((addr + len) > TASK_SIZE || (addr + len) < addr)
1854 return -EINVAL;
1855
1856 /*
1857 * mlock MCL_FUTURE?
1858 */
1859 if (mm->def_flags & VM_LOCKED) {
1860 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07001861 locked = len >> PAGE_SHIFT;
1862 locked += mm->locked_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
Chris Wright93ea1d02005-05-01 08:58:38 -07001864 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1866 return -EAGAIN;
1867 }
1868
1869 /*
1870 * mm->mmap_sem is required to protect against another thread
1871 * changing the mappings in case we sleep.
1872 */
1873 verify_mm_writelocked(mm);
1874
1875 /*
1876 * Clear old maps. this also does some error checking for us
1877 */
1878 munmap_back:
1879 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1880 if (vma && vma->vm_start < addr + len) {
1881 if (do_munmap(mm, addr, len))
1882 return -ENOMEM;
1883 goto munmap_back;
1884 }
1885
1886 /* Check against address space limits *after* clearing old maps... */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001887 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -ENOMEM;
1889
1890 if (mm->map_count > sysctl_max_map_count)
1891 return -ENOMEM;
1892
1893 if (security_vm_enough_memory(len >> PAGE_SHIFT))
1894 return -ENOMEM;
1895
1896 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
1897
1898 /* Can we just expand an old private anonymous mapping? */
1899 if (vma_merge(mm, prev, addr, addr + len, flags,
1900 NULL, NULL, pgoff, NULL))
1901 goto out;
1902
1903 /*
1904 * create a vma struct for an anonymous mapping
1905 */
1906 vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1907 if (!vma) {
1908 vm_unacct_memory(len >> PAGE_SHIFT);
1909 return -ENOMEM;
1910 }
1911 memset(vma, 0, sizeof(*vma));
1912
1913 vma->vm_mm = mm;
1914 vma->vm_start = addr;
1915 vma->vm_end = addr + len;
1916 vma->vm_pgoff = pgoff;
1917 vma->vm_flags = flags;
1918 vma->vm_page_prot = protection_map[flags & 0x0f];
1919 vma_link(mm, vma, prev, rb_link, rb_parent);
1920out:
1921 mm->total_vm += len >> PAGE_SHIFT;
1922 if (flags & VM_LOCKED) {
1923 mm->locked_vm += len >> PAGE_SHIFT;
1924 make_pages_present(addr, addr + len);
1925 }
1926 return addr;
1927}
1928
1929EXPORT_SYMBOL(do_brk);
1930
1931/* Release all mmaps. */
1932void exit_mmap(struct mm_struct *mm)
1933{
1934 struct mmu_gather *tlb;
Hugh Dickinse0da3822005-04-19 13:29:15 -07001935 struct vm_area_struct *vma = mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 unsigned long nr_accounted = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -07001937 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 lru_add_drain();
1940
1941 spin_lock(&mm->page_table_lock);
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 flush_cache_mm(mm);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001944 tlb = tlb_gather_mmu(mm, 1);
1945 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Hugh Dickinsee39b372005-04-19 13:29:15 -07001946 end = unmap_vmas(&tlb, mm, vma, 0, -1, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001948 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
Hugh Dickinsee39b372005-04-19 13:29:15 -07001949 tlb_finish_mmu(tlb, 0, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 mm->mmap = mm->mmap_cache = NULL;
1952 mm->mm_rb = RB_ROOT;
1953 set_mm_counter(mm, rss, 0);
1954 mm->total_vm = 0;
1955 mm->locked_vm = 0;
1956
1957 spin_unlock(&mm->page_table_lock);
1958
1959 /*
1960 * Walk the list again, actually closing and freeing it
1961 * without holding any MM locks.
1962 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001963 while (vma)
1964 vma = remove_vma(vma);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001965
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001966 BUG_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
1969/* Insert vm structure into process list sorted by address
1970 * and into the inode's i_mmap tree. If vm_file is non-NULL
1971 * then i_mmap_lock is taken here.
1972 */
1973int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
1974{
1975 struct vm_area_struct * __vma, * prev;
1976 struct rb_node ** rb_link, * rb_parent;
1977
1978 /*
1979 * The vm_pgoff of a purely anonymous vma should be irrelevant
1980 * until its first write fault, when page's anon_vma and index
1981 * are set. But now set the vm_pgoff it will almost certainly
1982 * end up with (unless mremap moves it elsewhere before that
1983 * first wfault), so /proc/pid/maps tells a consistent story.
1984 *
1985 * By setting it to reflect the virtual start address of the
1986 * vma, merges and splits can happen in a seamless way, just
1987 * using the existing file pgoff checks and manipulations.
1988 * Similarly in do_mmap_pgoff and in do_brk.
1989 */
1990 if (!vma->vm_file) {
1991 BUG_ON(vma->anon_vma);
1992 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
1993 }
1994 __vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
1995 if (__vma && __vma->vm_start < vma->vm_end)
1996 return -ENOMEM;
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01001997 if ((vma->vm_flags & VM_ACCOUNT) &&
1998 security_vm_enough_memory(vma_pages(vma)))
1999 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 vma_link(mm, vma, prev, rb_link, rb_parent);
2001 return 0;
2002}
2003
2004/*
2005 * Copy the vma structure to a new location in the same mm,
2006 * prior to moving page table entries, to effect an mremap move.
2007 */
2008struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
2009 unsigned long addr, unsigned long len, pgoff_t pgoff)
2010{
2011 struct vm_area_struct *vma = *vmap;
2012 unsigned long vma_start = vma->vm_start;
2013 struct mm_struct *mm = vma->vm_mm;
2014 struct vm_area_struct *new_vma, *prev;
2015 struct rb_node **rb_link, *rb_parent;
2016 struct mempolicy *pol;
2017
2018 /*
2019 * If anonymous vma has not yet been faulted, update new pgoff
2020 * to match new location, to increase its chance of merging.
2021 */
2022 if (!vma->vm_file && !vma->anon_vma)
2023 pgoff = addr >> PAGE_SHIFT;
2024
2025 find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
2026 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
2027 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
2028 if (new_vma) {
2029 /*
2030 * Source vma may have been merged into new_vma
2031 */
2032 if (vma_start >= new_vma->vm_start &&
2033 vma_start < new_vma->vm_end)
2034 *vmap = new_vma;
2035 } else {
2036 new_vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
2037 if (new_vma) {
2038 *new_vma = *vma;
2039 pol = mpol_copy(vma_policy(vma));
2040 if (IS_ERR(pol)) {
2041 kmem_cache_free(vm_area_cachep, new_vma);
2042 return NULL;
2043 }
2044 vma_set_policy(new_vma, pol);
2045 new_vma->vm_start = addr;
2046 new_vma->vm_end = addr + len;
2047 new_vma->vm_pgoff = pgoff;
2048 if (new_vma->vm_file)
2049 get_file(new_vma->vm_file);
2050 if (new_vma->vm_ops && new_vma->vm_ops->open)
2051 new_vma->vm_ops->open(new_vma);
2052 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2053 }
2054 }
2055 return new_vma;
2056}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002057
2058/*
2059 * Return true if the calling process may expand its vm space by the passed
2060 * number of pages
2061 */
2062int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2063{
2064 unsigned long cur = mm->total_vm; /* pages */
2065 unsigned long lim;
2066
2067 lim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;
2068
2069 if (cur + npages > lim)
2070 return 0;
2071 return 1;
2072}