6 * Address space accounting code <alan@redhat.com>
9 #include <linux/slab.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/capability.h>
17 #include <linux/init.h>
18 #include <linux/file.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>
29 #include <asm/uaccess.h>
30 #include <asm/cacheflush.h>
33 #ifndef arch_mmap_check
34 #define arch_mmap_check(addr, len, flags) (0)
37 static 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
);
42 * WARNING: the debugging will use recursive algorithms so never enable this
43 * unless you know what you are doing.
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:
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
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
62 pgprot_t protection_map
[16] = {
63 __P000
, __P001
, __P010
, __P011
, __P100
, __P101
, __P110
, __P111
,
64 __S000
, __S001
, __S010
, __S011
, __S100
, __S101
, __S110
, __S111
67 int sysctl_overcommit_memory
= OVERCOMMIT_GUESS
; /* heuristic overcommit */
68 int sysctl_overcommit_ratio
= 50; /* default is 50% */
69 int sysctl_max_map_count __read_mostly
= DEFAULT_MAX_MAP_COUNT
;
70 atomic_t vm_committed_space
= ATOMIC_INIT(0);
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.
77 * We currently support three overcommit policies, which are set via the
78 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
80 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
81 * Additional code 2002 Jul 20 by Robert Love.
83 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
85 * Note this is a helper function intended to be used by LSMs which
86 * wish to use this logic.
88 int __vm_enough_memory(long pages
, int cap_sys_admin
)
90 unsigned long free
, allowed
;
92 vm_acct_memory(pages
);
95 * Sometimes we want to use more memory than we have
97 if (sysctl_overcommit_memory
== OVERCOMMIT_ALWAYS
)
100 if (sysctl_overcommit_memory
== OVERCOMMIT_GUESS
) {
103 free
= global_page_state(NR_FILE_PAGES
);
104 free
+= nr_swap_pages
;
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
112 free
+= atomic_read(&slab_reclaim_pages
);
115 * Leave the last 3% for root
124 * nr_free_pages() is very expensive on large systems,
125 * only call if we're about to fail.
130 * Leave reserved pages. The pages are not for anonymous pages.
132 if (n
<= totalreserve_pages
)
135 n
-= totalreserve_pages
;
138 * Leave the last 3% for root
150 allowed
= (totalram_pages
- hugetlb_total_pages())
151 * sysctl_overcommit_ratio
/ 100;
153 * Leave the last 3% for root
156 allowed
-= allowed
/ 32;
157 allowed
+= total_swap_pages
;
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;
164 * cast `allowed' as a signed long because vm_committed_space
165 * sometimes has a negative value
167 if (atomic_read(&vm_committed_space
) < (long)allowed
)
170 vm_unacct_memory(pages
);
175 EXPORT_SYMBOL(__vm_enough_memory
);
178 * Requires inode->i_mapping->i_mmap_lock
180 static void __remove_shared_vm_struct(struct vm_area_struct
*vma
,
181 struct file
*file
, struct address_space
*mapping
)
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
--;
188 flush_dcache_mmap_lock(mapping
);
189 if (unlikely(vma
->vm_flags
& VM_NONLINEAR
))
190 list_del_init(&vma
->shared
.vm_set
.list
);
192 vma_prio_tree_remove(vma
, &mapping
->i_mmap
);
193 flush_dcache_mmap_unlock(mapping
);
197 * Unlink a file-based vm structure from its prio_tree, to hide
198 * vma from rmap and vmtruncate before freeing its page tables.
200 void unlink_file_vma(struct vm_area_struct
*vma
)
202 struct file
*file
= vma
->vm_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
);
213 * Close a vm structure and free it, returning the next.
215 static struct vm_area_struct
*remove_vma(struct vm_area_struct
*vma
)
217 struct vm_area_struct
*next
= vma
->vm_next
;
220 if (vma
->vm_ops
&& vma
->vm_ops
->close
)
221 vma
->vm_ops
->close(vma
);
224 mpol_free(vma_policy(vma
));
225 kmem_cache_free(vm_area_cachep
, vma
);
229 asmlinkage
unsigned long sys_brk(unsigned long brk
)
231 unsigned long rlim
, retval
;
232 unsigned long newbrk
, oldbrk
;
233 struct mm_struct
*mm
= current
->mm
;
235 down_write(&mm
->mmap_sem
);
237 if (brk
< mm
->end_code
)
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
246 rlim
= current
->signal
->rlim
[RLIMIT_DATA
].rlim_cur
;
247 if (rlim
< RLIM_INFINITY
&& brk
- mm
->start_data
> rlim
)
250 newbrk
= PAGE_ALIGN(brk
);
251 oldbrk
= PAGE_ALIGN(mm
->brk
);
252 if (oldbrk
== newbrk
)
255 /* Always allow shrinking brk. */
256 if (brk
<= mm
->brk
) {
257 if (!do_munmap(mm
, newbrk
, oldbrk
-newbrk
))
262 /* Check against existing mmap mappings. */
263 if (find_vma_intersection(mm
, oldbrk
, newbrk
+PAGE_SIZE
))
266 /* Ok, looks good - let it rip. */
267 if (do_brk(oldbrk
, newbrk
-oldbrk
) != oldbrk
)
273 up_write(&mm
->mmap_sem
);
278 static int browse_rb(struct rb_root
*root
)
281 struct rb_node
*nd
, *pn
= NULL
;
282 unsigned long prev
= 0, pend
= 0;
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
);
297 for (nd
= pn
; nd
; nd
= rb_prev(nd
)) {
301 printk("backwards %d, forwards %d\n", j
, i
), i
= 0;
305 void validate_mm(struct mm_struct
*mm
)
309 struct vm_area_struct
*tmp
= mm
->mmap
;
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;
322 #define validate_mm(mm) do { } while (0)
325 static struct vm_area_struct
*
326 find_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
)
330 struct vm_area_struct
* vma
;
331 struct rb_node
** __rb_link
, * __rb_parent
, * rb_prev
;
333 __rb_link
= &mm
->mm_rb
.rb_node
;
334 rb_prev
= __rb_parent
= NULL
;
338 struct vm_area_struct
*vma_tmp
;
340 __rb_parent
= *__rb_link
;
341 vma_tmp
= rb_entry(__rb_parent
, struct vm_area_struct
, vm_rb
);
343 if (vma_tmp
->vm_end
> addr
) {
345 if (vma_tmp
->vm_start
<= addr
)
347 __rb_link
= &__rb_parent
->rb_left
;
349 rb_prev
= __rb_parent
;
350 __rb_link
= &__rb_parent
->rb_right
;
356 *pprev
= rb_entry(rb_prev
, struct vm_area_struct
, vm_rb
);
357 *rb_link
= __rb_link
;
358 *rb_parent
= __rb_parent
;
363 __vma_link_list(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
364 struct vm_area_struct
*prev
, struct rb_node
*rb_parent
)
367 vma
->vm_next
= prev
->vm_next
;
372 vma
->vm_next
= rb_entry(rb_parent
,
373 struct vm_area_struct
, vm_rb
);
379 void __vma_link_rb(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
380 struct rb_node
**rb_link
, struct rb_node
*rb_parent
)
382 rb_link_node(&vma
->vm_rb
, rb_parent
, rb_link
);
383 rb_insert_color(&vma
->vm_rb
, &mm
->mm_rb
);
386 static inline void __vma_link_file(struct vm_area_struct
*vma
)
392 struct address_space
*mapping
= file
->f_mapping
;
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
++;
399 flush_dcache_mmap_lock(mapping
);
400 if (unlikely(vma
->vm_flags
& VM_NONLINEAR
))
401 vma_nonlinear_insert(vma
, &mapping
->i_mmap_nonlinear
);
403 vma_prio_tree_insert(vma
, &mapping
->i_mmap
);
404 flush_dcache_mmap_unlock(mapping
);
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
)
413 __vma_link_list(mm
, vma
, prev
, rb_parent
);
414 __vma_link_rb(mm
, vma
, rb_link
, rb_parent
);
415 __anon_vma_link(vma
);
418 static 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
)
422 struct address_space
*mapping
= NULL
;
425 mapping
= vma
->vm_file
->f_mapping
;
428 spin_lock(&mapping
->i_mmap_lock
);
429 vma
->vm_truncate_count
= mapping
->truncate_count
;
433 __vma_link(mm
, vma
, prev
, rb_link
, rb_parent
);
434 __vma_link_file(vma
);
436 anon_vma_unlock(vma
);
438 spin_unlock(&mapping
->i_mmap_lock
);
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.
450 __insert_vm_struct(struct mm_struct
* mm
, struct vm_area_struct
* vma
)
452 struct vm_area_struct
* __vma
, * prev
;
453 struct rb_node
** rb_link
, * rb_parent
;
455 __vma
= find_vma_prepare(mm
, vma
->vm_start
,&prev
, &rb_link
, &rb_parent
);
456 BUG_ON(__vma
&& __vma
->vm_start
< vma
->vm_end
);
457 __vma_link(mm
, vma
, prev
, rb_link
, rb_parent
);
462 __vma_unlink(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
463 struct vm_area_struct
*prev
)
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
;
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.
478 void vma_adjust(struct vm_area_struct
*vma
, unsigned long start
,
479 unsigned long end
, pgoff_t pgoff
, struct vm_area_struct
*insert
)
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;
491 if (next
&& !insert
) {
492 if (end
>= next
->vm_end
) {
494 * vma expands, overlapping all the next, and
495 * perhaps the one after too (mprotect case 6).
497 again
: remove_next
= 1 + (end
> next
->vm_end
);
499 anon_vma
= next
->anon_vma
;
501 } else if (end
> next
->vm_start
) {
503 * vma expands, overlapping part of the next:
504 * mprotect case 5 shifting the boundary up.
506 adjust_next
= (end
- next
->vm_start
) >> PAGE_SHIFT
;
507 anon_vma
= next
->anon_vma
;
509 } else if (end
< vma
->vm_end
) {
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.
515 adjust_next
= - ((vma
->vm_end
- end
) >> PAGE_SHIFT
);
516 anon_vma
= next
->anon_vma
;
522 mapping
= file
->f_mapping
;
523 if (!(vma
->vm_flags
& VM_NONLINEAR
))
524 root
= &mapping
->i_mmap
;
525 spin_lock(&mapping
->i_mmap_lock
);
527 vma
->vm_truncate_count
!= next
->vm_truncate_count
) {
529 * unmap_mapping_range might be in progress:
530 * ensure that the expanding vma is rescanned.
532 importer
->vm_truncate_count
= 0;
535 insert
->vm_truncate_count
= vma
->vm_truncate_count
;
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.
542 __vma_link_file(insert
);
547 * When changing only vma->vm_end, we don't really need
548 * anon_vma lock: but is that case worth optimizing out?
551 anon_vma
= vma
->anon_vma
;
553 spin_lock(&anon_vma
->lock
);
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.
559 if (importer
&& !importer
->anon_vma
) {
560 importer
->anon_vma
= anon_vma
;
561 __anon_vma_link(importer
);
566 flush_dcache_mmap_lock(mapping
);
567 vma_prio_tree_remove(vma
, root
);
569 vma_prio_tree_remove(next
, root
);
572 vma
->vm_start
= start
;
574 vma
->vm_pgoff
= pgoff
;
576 next
->vm_start
+= adjust_next
<< PAGE_SHIFT
;
577 next
->vm_pgoff
+= adjust_next
;
582 vma_prio_tree_insert(next
, root
);
583 vma_prio_tree_insert(vma
, root
);
584 flush_dcache_mmap_unlock(mapping
);
589 * vma_merge has merged next into vma, and needs
590 * us to remove next before dropping the locks.
592 __vma_unlink(mm
, next
, vma
);
594 __remove_shared_vm_struct(next
, file
, mapping
);
596 __anon_vma_merge(vma
, next
);
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).
603 __insert_vm_struct(mm
, insert
);
607 spin_unlock(&anon_vma
->lock
);
609 spin_unlock(&mapping
->i_mmap_lock
);
615 mpol_free(vma_policy(next
));
616 kmem_cache_free(vm_area_cachep
, next
);
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.
622 if (remove_next
== 2) {
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.
635 #define VM_SPECIAL (VM_IO | VM_DONTEXPAND | VM_RESERVED | VM_PFNMAP)
637 static inline int is_mergeable_vma(struct vm_area_struct
*vma
,
638 struct file
*file
, unsigned long vm_flags
)
640 if (vma
->vm_flags
!= vm_flags
)
642 if (vma
->vm_file
!= file
)
644 if (vma
->vm_ops
&& vma
->vm_ops
->close
)
649 static inline int is_mergeable_anon_vma(struct anon_vma
*anon_vma1
,
650 struct anon_vma
*anon_vma2
)
652 return !anon_vma1
|| !anon_vma2
|| (anon_vma1
== anon_vma2
);
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.
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.
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.
667 can_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
)
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
)
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.
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.
686 can_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
)
689 if (is_mergeable_vma(vma
, file
, vm_flags
) &&
690 is_mergeable_anon_vma(anon_vma
, vma
->anon_vma
)) {
692 vm_pglen
= (vma
->vm_end
- vma
->vm_start
) >> PAGE_SHIFT
;
693 if (vma
->vm_pgoff
+ vm_pglen
== vm_pgoff
)
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).
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.
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:
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
722 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
723 * might become case 1 below case 2 below case 3 below
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.
728 struct 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
)
734 pgoff_t pglen
= (end
- addr
) >> PAGE_SHIFT
;
735 struct vm_area_struct
*area
, *next
;
738 * We later require that vma->vm_flags == vm_flags,
739 * so this tests vma->vm_flags & VM_SPECIAL, too.
741 if (vm_flags
& VM_SPECIAL
)
745 next
= prev
->vm_next
;
749 if (next
&& next
->vm_end
== end
) /* cases 6, 7, 8 */
750 next
= next
->vm_next
;
753 * Can it merge with the predecessor?
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
)) {
760 * OK, it can. Can we now merge in the successor as well?
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
,
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
);
778 * Can this new request be merged in front of next?
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
);
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
804 struct anon_vma
*find_mergeable_anon_vma(struct vm_area_struct
*vma
)
806 struct vm_area_struct
*near
;
807 unsigned long vm_flags
;
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.
819 vm_flags
= vma
->vm_flags
& ~(VM_READ
|VM_WRITE
|VM_EXEC
);
820 vm_flags
|= near
->vm_flags
& (VM_READ
|VM_WRITE
|VM_EXEC
);
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
;
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.
836 BUG_ON(find_vma_prev(vma
->vm_mm
, vma
->vm_start
, &near
) != vma
);
840 vm_flags
= vma
->vm_flags
& ~(VM_READ
|VM_WRITE
|VM_EXEC
);
841 vm_flags
|= near
->vm_flags
& (VM_READ
|VM_WRITE
|VM_EXEC
);
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
;
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.
860 #ifdef CONFIG_PROC_FS
861 void vm_stat_account(struct mm_struct
*mm
, unsigned long flags
,
862 struct file
*file
, long pages
)
864 const unsigned long stack_flags
865 = VM_STACK_FLAGS
& (VM_GROWSUP
|VM_GROWSDOWN
);
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
;
876 #endif /* CONFIG_PROC_FS */
879 * The caller must hold down_write(current->mm->mmap_sem).
882 unsigned long do_mmap_pgoff(struct file
* file
, unsigned long addr
,
883 unsigned long len
, unsigned long prot
,
884 unsigned long flags
, unsigned long pgoff
)
886 struct mm_struct
* mm
= current
->mm
;
887 struct vm_area_struct
* vma
, * prev
;
889 unsigned int vm_flags
;
890 int correct_wcount
= 0;
892 struct rb_node
** rb_link
, * rb_parent
;
894 unsigned long charged
= 0, reqprot
= prot
;
897 if (is_file_hugepages(file
))
900 if (!file
->f_op
|| !file
->f_op
->mmap
)
903 if ((prot
& PROT_EXEC
) &&
904 (file
->f_vfsmnt
->mnt_flags
& MNT_NOEXEC
))
908 * Does the application expect PROT_READ to imply PROT_EXEC?
910 * (the exception is when the underlying filesystem is noexec
911 * mounted, in which case we dont add PROT_EXEC.)
913 if ((prot
& PROT_READ
) && (current
->personality
& READ_IMPLIES_EXEC
))
914 if (!(file
&& (file
->f_vfsmnt
->mnt_flags
& MNT_NOEXEC
)))
920 error
= arch_mmap_check(addr
, len
, flags
);
924 /* Careful about overflows.. */
925 len
= PAGE_ALIGN(len
);
926 if (!len
|| len
> TASK_SIZE
)
929 /* offset overflow? */
930 if ((pgoff
+ (len
>> PAGE_SHIFT
)) < pgoff
)
933 /* Too many mappings? */
934 if (mm
->map_count
> sysctl_max_map_count
)
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.
940 addr
= get_unmapped_area(file
, addr
, len
, pgoff
, flags
);
941 if (addr
& ~PAGE_MASK
)
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.
948 vm_flags
= calc_vm_prot_bits(prot
) | calc_vm_flag_bits(flags
) |
949 mm
->def_flags
| VM_MAYREAD
| VM_MAYWRITE
| VM_MAYEXEC
;
951 if (flags
& MAP_LOCKED
) {
954 vm_flags
|= VM_LOCKED
;
956 /* mlock MCL_FUTURE? */
957 if (vm_flags
& VM_LOCKED
) {
958 unsigned long locked
, lock_limit
;
959 locked
= len
>> PAGE_SHIFT
;
960 locked
+= mm
->locked_vm
;
961 lock_limit
= current
->signal
->rlim
[RLIMIT_MEMLOCK
].rlim_cur
;
962 lock_limit
>>= PAGE_SHIFT
;
963 if (locked
> lock_limit
&& !capable(CAP_IPC_LOCK
))
967 inode
= file
? file
->f_dentry
->d_inode
: NULL
;
970 switch (flags
& MAP_TYPE
) {
972 if ((prot
&PROT_WRITE
) && !(file
->f_mode
&FMODE_WRITE
))
976 * Make sure we don't allow writing to an append-only
979 if (IS_APPEND(inode
) && (file
->f_mode
& FMODE_WRITE
))
983 * Make sure there are no mandatory locks on the file.
985 if (locks_verify_locked(inode
))
988 vm_flags
|= VM_SHARED
| VM_MAYSHARE
;
989 if (!(file
->f_mode
& FMODE_WRITE
))
990 vm_flags
&= ~(VM_MAYWRITE
| VM_SHARED
);
994 if (!(file
->f_mode
& FMODE_READ
))
1002 switch (flags
& MAP_TYPE
) {
1004 vm_flags
|= VM_SHARED
| VM_MAYSHARE
;
1008 * Set pgoff according to addr for anon_vma.
1010 pgoff
= addr
>> PAGE_SHIFT
;
1017 error
= security_file_mmap(file
, reqprot
, prot
, flags
);
1021 /* Clear old maps */
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
))
1031 /* Check against address space limit. */
1032 if (!may_expand_vm(mm
, len
>> PAGE_SHIFT
))
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
) {
1042 * Private writable mapping: check memory availability
1044 charged
= len
>> PAGE_SHIFT
;
1045 if (security_vm_enough_memory(charged
))
1047 vm_flags
|= VM_ACCOUNT
;
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.
1056 if (!file
&& !(vm_flags
& VM_SHARED
) &&
1057 vma_merge(mm
, prev
, addr
, addr
+ len
, vm_flags
,
1058 NULL
, NULL
, pgoff
, NULL
))
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.
1066 vma
= kmem_cache_zalloc(vm_area_cachep
, GFP_KERNEL
);
1073 vma
->vm_start
= addr
;
1074 vma
->vm_end
= addr
+ len
;
1075 vma
->vm_flags
= vm_flags
;
1076 vma
->vm_page_prot
= protection_map
[vm_flags
&
1077 (VM_READ
|VM_WRITE
|VM_EXEC
|VM_SHARED
)];
1078 vma
->vm_pgoff
= pgoff
;
1082 if (vm_flags
& (VM_GROWSDOWN
|VM_GROWSUP
))
1084 if (vm_flags
& VM_DENYWRITE
) {
1085 error
= deny_write_access(file
);
1090 vma
->vm_file
= file
;
1092 error
= file
->f_op
->mmap(file
, vma
);
1094 goto unmap_and_free_vma
;
1095 } else if (vm_flags
& VM_SHARED
) {
1096 error
= shmem_zero_setup(vma
);
1101 /* 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
)
1105 protection_map
[vm_flags
& (VM_READ
|VM_WRITE
|VM_EXEC
)];
1107 /* 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.
1112 if ((vm_flags
& (VM_SHARED
|VM_ACCOUNT
)) == (VM_SHARED
|VM_ACCOUNT
))
1113 vma
->vm_flags
&= ~VM_ACCOUNT
;
1115 /* Can addr have changed??
1117 * Answer: Yes, several device drivers can do it in their
1118 * f_op->mmap method. -DaveM
1120 addr
= vma
->vm_start
;
1121 pgoff
= vma
->vm_pgoff
;
1122 vm_flags
= vma
->vm_flags
;
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
);
1129 atomic_inc(&inode
->i_writecount
);
1133 atomic_inc(&inode
->i_writecount
);
1136 mpol_free(vma_policy(vma
));
1137 kmem_cache_free(vm_area_cachep
, vma
);
1140 mm
->total_vm
+= len
>> PAGE_SHIFT
;
1141 vm_stat_account(mm
, vm_flags
, file
, len
>> PAGE_SHIFT
);
1142 if (vm_flags
& VM_LOCKED
) {
1143 mm
->locked_vm
+= len
>> PAGE_SHIFT
;
1144 make_pages_present(addr
, addr
+ len
);
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
);
1156 atomic_inc(&inode
->i_writecount
);
1157 vma
->vm_file
= NULL
;
1160 /* Undo any partial mapping done by a device driver. */
1161 unmap_region(mm
, vma
, prev
, vma
->vm_start
, vma
->vm_end
);
1164 kmem_cache_free(vm_area_cachep
, vma
);
1167 vm_unacct_memory(charged
);
1171 EXPORT_SYMBOL(do_mmap_pgoff
);
1173 /* Get an address range which is currently unmapped.
1174 * For shmat() with addr=0.
1176 * Ugly calling convention alert:
1177 * Return value with the low bits set means error value,
1179 * if (ret & ~PAGE_MASK)
1182 * This function "knows" that -ENOMEM has the bits set.
1184 #ifndef HAVE_ARCH_UNMAPPED_AREA
1186 arch_get_unmapped_area(struct file
*filp
, unsigned long addr
,
1187 unsigned long len
, unsigned long pgoff
, unsigned long flags
)
1189 struct mm_struct
*mm
= current
->mm
;
1190 struct vm_area_struct
*vma
;
1191 unsigned long start_addr
;
1193 if (len
> TASK_SIZE
)
1197 addr
= PAGE_ALIGN(addr
);
1198 vma
= find_vma(mm
, addr
);
1199 if (TASK_SIZE
- len
>= addr
&&
1200 (!vma
|| addr
+ len
<= vma
->vm_start
))
1203 if (len
> mm
->cached_hole_size
) {
1204 start_addr
= addr
= mm
->free_area_cache
;
1206 start_addr
= addr
= TASK_UNMAPPED_BASE
;
1207 mm
->cached_hole_size
= 0;
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
) {
1215 * Start a new search - just in case we missed
1218 if (start_addr
!= TASK_UNMAPPED_BASE
) {
1219 addr
= TASK_UNMAPPED_BASE
;
1221 mm
->cached_hole_size
= 0;
1226 if (!vma
|| addr
+ len
<= vma
->vm_start
) {
1228 * Remember the place where we stopped the search:
1230 mm
->free_area_cache
= addr
+ len
;
1233 if (addr
+ mm
->cached_hole_size
< vma
->vm_start
)
1234 mm
->cached_hole_size
= vma
->vm_start
- addr
;
1240 void arch_unmap_area(struct mm_struct
*mm
, unsigned long addr
)
1243 * Is this a new hole at the lowest possible address?
1245 if (addr
>= TASK_UNMAPPED_BASE
&& addr
< mm
->free_area_cache
) {
1246 mm
->free_area_cache
= addr
;
1247 mm
->cached_hole_size
= ~0UL;
1252 * This mmap-allocator allocates new areas top-down from below the
1253 * stack's low limit (the base):
1255 #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1257 arch_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
)
1261 struct vm_area_struct
*vma
;
1262 struct mm_struct
*mm
= current
->mm
;
1263 unsigned long addr
= addr0
;
1265 /* requested length too big for entire address space */
1266 if (len
> TASK_SIZE
)
1269 /* requesting a specific address */
1271 addr
= PAGE_ALIGN(addr
);
1272 vma
= find_vma(mm
, addr
);
1273 if (TASK_SIZE
- len
>= addr
&&
1274 (!vma
|| addr
+ len
<= vma
->vm_start
))
1278 /* 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
;
1284 /* either no address requested or can't fit in requested address hole */
1285 addr
= mm
->free_area_cache
;
1287 /* make sure it can fit in the remaining address space */
1289 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
);
1295 if (mm
->mmap_base
< len
)
1298 addr
= mm
->mmap_base
-len
;
1302 * Lookup failure means no vma is above this address,
1303 * else if new region fits below vma->vm_start,
1304 * return with success:
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
);
1311 /* 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
;
1315 /* try just below the current vma->vm_start */
1316 addr
= vma
->vm_start
-len
;
1317 } while (len
< vma
->vm_start
);
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()
1326 mm
->cached_hole_size
= ~0UL;
1327 mm
->free_area_cache
= TASK_UNMAPPED_BASE
;
1328 addr
= arch_get_unmapped_area(filp
, addr0
, len
, pgoff
, flags
);
1330 * Restore the topdown base:
1332 mm
->free_area_cache
= mm
->mmap_base
;
1333 mm
->cached_hole_size
= ~0UL;
1339 void arch_unmap_area_topdown(struct mm_struct
*mm
, unsigned long addr
)
1342 * Is this a new hole at the highest possible address?
1344 if (addr
> mm
->free_area_cache
)
1345 mm
->free_area_cache
= addr
;
1347 /* dont allow allocations above current base */
1348 if (mm
->free_area_cache
> mm
->mmap_base
)
1349 mm
->free_area_cache
= mm
->mmap_base
;
1353 get_unmapped_area(struct file
*file
, unsigned long addr
, unsigned long len
,
1354 unsigned long pgoff
, unsigned long flags
)
1358 if (!(flags
& MAP_FIXED
)) {
1359 unsigned long (*get_area
)(struct file
*, unsigned long, unsigned long, unsigned long, unsigned long);
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
))
1369 if (addr
> TASK_SIZE
- len
)
1371 if (addr
& ~PAGE_MASK
)
1373 if (file
&& is_file_hugepages(file
)) {
1375 * Check if the given range is hugepage aligned, and
1376 * can be made suitable for hugepages.
1378 ret
= prepare_hugepage_range(addr
, len
);
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.
1385 ret
= is_hugepage_only_range(current
->mm
, addr
, len
);
1392 EXPORT_SYMBOL(get_unmapped_area
);
1394 /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
1395 struct vm_area_struct
* find_vma(struct mm_struct
* mm
, unsigned long addr
)
1397 struct vm_area_struct
*vma
= NULL
;
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
;
1406 rb_node
= mm
->mm_rb
.rb_node
;
1410 struct vm_area_struct
* vma_tmp
;
1412 vma_tmp
= rb_entry(rb_node
,
1413 struct vm_area_struct
, vm_rb
);
1415 if (vma_tmp
->vm_end
> addr
) {
1417 if (vma_tmp
->vm_start
<= addr
)
1419 rb_node
= rb_node
->rb_left
;
1421 rb_node
= rb_node
->rb_right
;
1424 mm
->mmap_cache
= vma
;
1430 EXPORT_SYMBOL(find_vma
);
1432 /* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1433 struct vm_area_struct
*
1434 find_vma_prev(struct mm_struct
*mm
, unsigned long addr
,
1435 struct vm_area_struct
**pprev
)
1437 struct vm_area_struct
*vma
= NULL
, *prev
= NULL
;
1438 struct rb_node
* rb_node
;
1442 /* Guard against addr being lower than the first VMA */
1445 /* Go through the RB tree quickly. */
1446 rb_node
= mm
->mm_rb
.rb_node
;
1449 struct vm_area_struct
*vma_tmp
;
1450 vma_tmp
= rb_entry(rb_node
, struct vm_area_struct
, vm_rb
);
1452 if (addr
< vma_tmp
->vm_end
) {
1453 rb_node
= rb_node
->rb_left
;
1456 if (!prev
->vm_next
|| (addr
< prev
->vm_next
->vm_end
))
1458 rb_node
= rb_node
->rb_right
;
1464 return prev
? prev
->vm_next
: vma
;
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.
1472 static int acct_stack_growth(struct vm_area_struct
* vma
, unsigned long size
, unsigned long grow
)
1474 struct mm_struct
*mm
= vma
->vm_mm
;
1475 struct rlimit
*rlim
= current
->signal
->rlim
;
1477 /* address space limit tests */
1478 if (!may_expand_vm(mm
, grow
))
1481 /* Stack limit test */
1482 if (size
> rlim
[RLIMIT_STACK
].rlim_cur
)
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
))
1496 * Overcommit.. This must be the final test, as it will
1497 * update security statistics.
1499 if (security_vm_enough_memory(grow
))
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
;
1506 vm_stat_account(mm
, vma
->vm_flags
, vma
->vm_file
, grow
);
1510 #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
1512 * 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.
1518 int expand_upwards(struct vm_area_struct
*vma
, unsigned long address
)
1522 if (!(vma
->vm_flags
& VM_GROWSUP
))
1526 * We must make sure the anon_vma is allocated
1527 * so that the anon_vma locking is not a noop.
1529 if (unlikely(anon_vma_prepare(vma
)))
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.
1538 address
+= 4 + PAGE_SIZE
- 1;
1539 address
&= PAGE_MASK
;
1542 /* Somebody else might have raced and expanded it already */
1543 if (address
> vma
->vm_end
) {
1544 unsigned long size
, grow
;
1546 size
= address
- vma
->vm_start
;
1547 grow
= (address
- vma
->vm_end
) >> PAGE_SHIFT
;
1549 error
= acct_stack_growth(vma
, size
, grow
);
1551 vma
->vm_end
= address
;
1553 anon_vma_unlock(vma
);
1556 #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
1558 #ifdef CONFIG_STACK_GROWSUP
1559 int expand_stack(struct vm_area_struct
*vma
, unsigned long address
)
1561 return expand_upwards(vma
, address
);
1564 struct vm_area_struct
*
1565 find_extend_vma(struct mm_struct
*mm
, unsigned long addr
)
1567 struct vm_area_struct
*vma
, *prev
;
1570 vma
= find_vma_prev(mm
, addr
, &prev
);
1571 if (vma
&& (vma
->vm_start
<= addr
))
1573 if (!prev
|| expand_stack(prev
, addr
))
1575 if (prev
->vm_flags
& VM_LOCKED
) {
1576 make_pages_present(addr
, prev
->vm_end
);
1582 * vma is the first one with address < vma->vm_start. Have to extend vma.
1584 int expand_stack(struct vm_area_struct
*vma
, unsigned long address
)
1589 * We must make sure the anon_vma is allocated
1590 * so that the anon_vma locking is not a noop.
1592 if (unlikely(anon_vma_prepare(vma
)))
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.
1601 address
&= PAGE_MASK
;
1604 /* Somebody else might have raced and expanded it already */
1605 if (address
< vma
->vm_start
) {
1606 unsigned long size
, grow
;
1608 size
= vma
->vm_end
- address
;
1609 grow
= (vma
->vm_start
- address
) >> PAGE_SHIFT
;
1611 error
= acct_stack_growth(vma
, size
, grow
);
1613 vma
->vm_start
= address
;
1614 vma
->vm_pgoff
-= grow
;
1617 anon_vma_unlock(vma
);
1621 struct vm_area_struct
*
1622 find_extend_vma(struct mm_struct
* mm
, unsigned long addr
)
1624 struct vm_area_struct
* vma
;
1625 unsigned long start
;
1628 vma
= find_vma(mm
,addr
);
1631 if (vma
->vm_start
<= addr
)
1633 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
1635 start
= vma
->vm_start
;
1636 if (expand_stack(vma
, addr
))
1638 if (vma
->vm_flags
& VM_LOCKED
) {
1639 make_pages_present(addr
, start
);
1646 * Ok - we have the memory areas we should free on the vma list,
1647 * so release them, and do the vma updates.
1649 * Called with the mm semaphore held.
1651 static void remove_vma_list(struct mm_struct
*mm
, struct vm_area_struct
*vma
)
1653 /* Update high watermark before we lower total_vm */
1654 update_hiwater_vm(mm
);
1656 long nrpages
= vma_pages(vma
);
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
);
1662 vma
= remove_vma(vma
);
1668 * Get rid of page table information in the indicated region.
1670 * Called with the mm semaphore held.
1672 static void unmap_region(struct mm_struct
*mm
,
1673 struct vm_area_struct
*vma
, struct vm_area_struct
*prev
,
1674 unsigned long start
, unsigned long end
)
1676 struct vm_area_struct
*next
= prev
? prev
->vm_next
: mm
->mmap
;
1677 struct mmu_gather
*tlb
;
1678 unsigned long nr_accounted
= 0;
1681 tlb
= tlb_gather_mmu(mm
, 0);
1682 update_hiwater_rss(mm
);
1683 unmap_vmas(&tlb
, vma
, start
, end
, &nr_accounted
, NULL
);
1684 vm_unacct_memory(nr_accounted
);
1685 free_pgtables(&tlb
, vma
, prev
? prev
->vm_end
: FIRST_USER_ADDRESS
,
1686 next
? next
->vm_start
: 0);
1687 tlb_finish_mmu(tlb
, start
, end
);
1691 * Create a list of vma's touched by the unmap, removing them from the mm's
1692 * vma list as we go..
1695 detach_vmas_to_be_unmapped(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
1696 struct vm_area_struct
*prev
, unsigned long end
)
1698 struct vm_area_struct
**insertion_point
;
1699 struct vm_area_struct
*tail_vma
= NULL
;
1702 insertion_point
= (prev
? &prev
->vm_next
: &mm
->mmap
);
1704 rb_erase(&vma
->vm_rb
, &mm
->mm_rb
);
1708 } while (vma
&& vma
->vm_start
< end
);
1709 *insertion_point
= vma
;
1710 tail_vma
->vm_next
= NULL
;
1711 if (mm
->unmap_area
== arch_unmap_area
)
1712 addr
= prev
? prev
->vm_end
: mm
->mmap_base
;
1714 addr
= vma
? vma
->vm_start
: mm
->mmap_base
;
1715 mm
->unmap_area(mm
, addr
);
1716 mm
->mmap_cache
= NULL
; /* Kill the cache. */
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.
1723 int split_vma(struct mm_struct
* mm
, struct vm_area_struct
* vma
,
1724 unsigned long addr
, int new_below
)
1726 struct mempolicy
*pol
;
1727 struct vm_area_struct
*new;
1729 if (is_vm_hugetlb_page(vma
) && (addr
& ~HPAGE_MASK
))
1732 if (mm
->map_count
>= sysctl_max_map_count
)
1735 new = kmem_cache_alloc(vm_area_cachep
, SLAB_KERNEL
);
1739 /* most fields are the same, copy all, and then fixup */
1745 new->vm_start
= addr
;
1746 new->vm_pgoff
+= ((addr
- vma
->vm_start
) >> PAGE_SHIFT
);
1749 pol
= mpol_copy(vma_policy(vma
));
1751 kmem_cache_free(vm_area_cachep
, new);
1752 return PTR_ERR(pol
);
1754 vma_set_policy(new, pol
);
1757 get_file(new->vm_file
);
1759 if (new->vm_ops
&& new->vm_ops
->open
)
1760 new->vm_ops
->open(new);
1763 vma_adjust(vma
, addr
, vma
->vm_end
, vma
->vm_pgoff
+
1764 ((addr
- new->vm_start
) >> PAGE_SHIFT
), new);
1766 vma_adjust(vma
, vma
->vm_start
, addr
, vma
->vm_pgoff
, new);
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>
1776 int do_munmap(struct mm_struct
*mm
, unsigned long start
, size_t len
)
1779 struct vm_area_struct
*vma
, *prev
, *last
;
1781 if ((start
& ~PAGE_MASK
) || start
> TASK_SIZE
|| len
> TASK_SIZE
-start
)
1784 if ((len
= PAGE_ALIGN(len
)) == 0)
1787 /* Find the first overlapping VMA */
1788 vma
= find_vma_prev(mm
, start
, &prev
);
1791 /* we have start < vma->vm_end */
1793 /* if it doesn't overlap, we have nothing.. */
1795 if (vma
->vm_start
>= end
)
1799 * If we need to split any vma, do it now to save pain later.
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.
1805 if (start
> vma
->vm_start
) {
1806 int error
= split_vma(mm
, vma
, start
, 0);
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);
1819 vma
= prev
? prev
->vm_next
: mm
->mmap
;
1822 * Remove the vma's, and unmap the actual pages
1824 detach_vmas_to_be_unmapped(mm
, vma
, prev
, end
);
1825 unmap_region(mm
, vma
, prev
, start
, end
);
1827 /* Fix up all other VM information */
1828 remove_vma_list(mm
, vma
);
1833 EXPORT_SYMBOL(do_munmap
);
1835 asmlinkage
long sys_munmap(unsigned long addr
, size_t len
)
1838 struct mm_struct
*mm
= current
->mm
;
1840 profile_munmap(addr
);
1842 down_write(&mm
->mmap_sem
);
1843 ret
= do_munmap(mm
, addr
, len
);
1844 up_write(&mm
->mmap_sem
);
1848 static inline void verify_mm_writelocked(struct mm_struct
*mm
)
1850 #ifdef CONFIG_DEBUG_VM
1851 if (unlikely(down_read_trylock(&mm
->mmap_sem
))) {
1853 up_read(&mm
->mmap_sem
);
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.
1863 unsigned long do_brk(unsigned long addr
, unsigned long len
)
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
;
1872 len
= PAGE_ALIGN(len
);
1876 if ((addr
+ len
) > TASK_SIZE
|| (addr
+ len
) < addr
)
1879 flags
= VM_DATA_DEFAULT_FLAGS
| VM_ACCOUNT
| mm
->def_flags
;
1881 error
= arch_mmap_check(addr
, len
, flags
);
1888 if (mm
->def_flags
& VM_LOCKED
) {
1889 unsigned long locked
, lock_limit
;
1890 locked
= len
>> PAGE_SHIFT
;
1891 locked
+= mm
->locked_vm
;
1892 lock_limit
= current
->signal
->rlim
[RLIMIT_MEMLOCK
].rlim_cur
;
1893 lock_limit
>>= PAGE_SHIFT
;
1894 if (locked
> lock_limit
&& !capable(CAP_IPC_LOCK
))
1899 * mm->mmap_sem is required to protect against another thread
1900 * changing the mappings in case we sleep.
1902 verify_mm_writelocked(mm
);
1905 * Clear old maps. this also does some error checking for us
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
))
1915 /* Check against address space limits *after* clearing old maps... */
1916 if (!may_expand_vm(mm
, len
>> PAGE_SHIFT
))
1919 if (mm
->map_count
> sysctl_max_map_count
)
1922 if (security_vm_enough_memory(len
>> PAGE_SHIFT
))
1925 /* Can we just expand an old private anonymous mapping? */
1926 if (vma_merge(mm
, prev
, addr
, addr
+ len
, flags
,
1927 NULL
, NULL
, pgoff
, NULL
))
1931 * create a vma struct for an anonymous mapping
1933 vma
= kmem_cache_zalloc(vm_area_cachep
, GFP_KERNEL
);
1935 vm_unacct_memory(len
>> PAGE_SHIFT
);
1940 vma
->vm_start
= addr
;
1941 vma
->vm_end
= addr
+ len
;
1942 vma
->vm_pgoff
= pgoff
;
1943 vma
->vm_flags
= flags
;
1944 vma
->vm_page_prot
= protection_map
[flags
&
1945 (VM_READ
|VM_WRITE
|VM_EXEC
|VM_SHARED
)];
1946 vma_link(mm
, vma
, prev
, rb_link
, rb_parent
);
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
);
1956 EXPORT_SYMBOL(do_brk
);
1958 /* Release all mmaps. */
1959 void exit_mmap(struct mm_struct
*mm
)
1961 struct mmu_gather
*tlb
;
1962 struct vm_area_struct
*vma
= mm
->mmap
;
1963 unsigned long nr_accounted
= 0;
1968 tlb
= tlb_gather_mmu(mm
, 1);
1969 /* Don't update_hiwater_rss(mm) here, do_exit already did */
1970 /* Use -1 here to ensure all VMAs in the mm are unmapped */
1971 end
= unmap_vmas(&tlb
, vma
, 0, -1, &nr_accounted
, NULL
);
1972 vm_unacct_memory(nr_accounted
);
1973 free_pgtables(&tlb
, vma
, FIRST_USER_ADDRESS
, 0);
1974 tlb_finish_mmu(tlb
, 0, end
);
1977 * Walk the list again, actually closing and freeing it,
1978 * with preemption enabled, without holding any MM locks.
1981 vma
= remove_vma(vma
);
1983 BUG_ON(mm
->nr_ptes
> (FIRST_USER_ADDRESS
+PMD_SIZE
-1)>>PMD_SHIFT
);
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.
1990 int insert_vm_struct(struct mm_struct
* mm
, struct vm_area_struct
* vma
)
1992 struct vm_area_struct
* __vma
, * prev
;
1993 struct rb_node
** rb_link
, * rb_parent
;
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.
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.
2007 if (!vma
->vm_file
) {
2008 BUG_ON(vma
->anon_vma
);
2009 vma
->vm_pgoff
= vma
->vm_start
>> PAGE_SHIFT
;
2011 __vma
= find_vma_prepare(mm
,vma
->vm_start
,&prev
,&rb_link
,&rb_parent
);
2012 if (__vma
&& __vma
->vm_start
< vma
->vm_end
)
2014 if ((vma
->vm_flags
& VM_ACCOUNT
) &&
2015 security_vm_enough_memory(vma_pages(vma
)))
2017 vma_link(mm
, vma
, prev
, rb_link
, rb_parent
);
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.
2025 struct vm_area_struct
*copy_vma(struct vm_area_struct
**vmap
,
2026 unsigned long addr
, unsigned long len
, pgoff_t pgoff
)
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
;
2036 * If anonymous vma has not yet been faulted, update new pgoff
2037 * to match new location, to increase its chance of merging.
2039 if (!vma
->vm_file
&& !vma
->anon_vma
)
2040 pgoff
= addr
>> PAGE_SHIFT
;
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
));
2047 * Source vma may have been merged into new_vma
2049 if (vma_start
>= new_vma
->vm_start
&&
2050 vma_start
< new_vma
->vm_end
)
2053 new_vma
= kmem_cache_alloc(vm_area_cachep
, SLAB_KERNEL
);
2056 pol
= mpol_copy(vma_policy(vma
));
2058 kmem_cache_free(vm_area_cachep
, new_vma
);
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
);
2076 * Return true if the calling process may expand its vm space by the passed
2079 int may_expand_vm(struct mm_struct
*mm
, unsigned long npages
)
2081 unsigned long cur
= mm
->total_vm
; /* pages */
2084 lim
= current
->signal
->rlim
[RLIMIT_AS
].rlim_cur
>> PAGE_SHIFT
;
2086 if (cur
+ npages
> lim
)