blob: c43b284570070cb738fb8434dee7a30e406f912c [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;
Nick Pigginb5810032005-10-29 18:16:12 -07001091 if ((vma->vm_flags & (VM_SHARED | VM_WRITE | VM_RESERVED))
1092 == (VM_WRITE | VM_RESERVED)) {
1093 printk(KERN_WARNING "program %s is using MAP_PRIVATE, "
1094 "PROT_WRITE mmap of VM_RESERVED memory, which "
1095 "is deprecated. Please report this to "
1096 "linux-kernel@vger.kernel.org\n",current->comm);
1097 if (vma->vm_ops && vma->vm_ops->close)
1098 vma->vm_ops->close(vma);
1099 error = -EACCES;
1100 goto unmap_and_free_vma;
1101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 } else if (vm_flags & VM_SHARED) {
1103 error = shmem_zero_setup(vma);
1104 if (error)
1105 goto free_vma;
1106 }
1107
1108 /* We set VM_ACCOUNT in a shared mapping's vm_flags, to inform
1109 * shmem_zero_setup (perhaps called through /dev/zero's ->mmap)
1110 * that memory reservation must be checked; but that reservation
1111 * belongs to shared memory object, not to vma: so now clear it.
1112 */
1113 if ((vm_flags & (VM_SHARED|VM_ACCOUNT)) == (VM_SHARED|VM_ACCOUNT))
1114 vma->vm_flags &= ~VM_ACCOUNT;
1115
1116 /* Can addr have changed??
1117 *
1118 * Answer: Yes, several device drivers can do it in their
1119 * f_op->mmap method. -DaveM
1120 */
1121 addr = vma->vm_start;
1122 pgoff = vma->vm_pgoff;
1123 vm_flags = vma->vm_flags;
1124
1125 if (!file || !vma_merge(mm, prev, addr, vma->vm_end,
1126 vma->vm_flags, NULL, file, pgoff, vma_policy(vma))) {
1127 file = vma->vm_file;
1128 vma_link(mm, vma, prev, rb_link, rb_parent);
1129 if (correct_wcount)
1130 atomic_inc(&inode->i_writecount);
1131 } else {
1132 if (file) {
1133 if (correct_wcount)
1134 atomic_inc(&inode->i_writecount);
1135 fput(file);
1136 }
1137 mpol_free(vma_policy(vma));
1138 kmem_cache_free(vm_area_cachep, vma);
1139 }
1140out:
1141 mm->total_vm += len >> PAGE_SHIFT;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001142 vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (vm_flags & VM_LOCKED) {
1144 mm->locked_vm += len >> PAGE_SHIFT;
1145 make_pages_present(addr, addr + len);
1146 }
1147 if (flags & MAP_POPULATE) {
1148 up_write(&mm->mmap_sem);
1149 sys_remap_file_pages(addr, len, 0,
1150 pgoff, flags & MAP_NONBLOCK);
1151 down_write(&mm->mmap_sem);
1152 }
1153 return addr;
1154
1155unmap_and_free_vma:
1156 if (correct_wcount)
1157 atomic_inc(&inode->i_writecount);
1158 vma->vm_file = NULL;
1159 fput(file);
1160
1161 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001162 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1163 charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164free_vma:
1165 kmem_cache_free(vm_area_cachep, vma);
1166unacct_error:
1167 if (charged)
1168 vm_unacct_memory(charged);
1169 return error;
1170}
1171
1172EXPORT_SYMBOL(do_mmap_pgoff);
1173
1174/* Get an address range which is currently unmapped.
1175 * For shmat() with addr=0.
1176 *
1177 * Ugly calling convention alert:
1178 * Return value with the low bits set means error value,
1179 * ie
1180 * if (ret & ~PAGE_MASK)
1181 * error = ret;
1182 *
1183 * This function "knows" that -ENOMEM has the bits set.
1184 */
1185#ifndef HAVE_ARCH_UNMAPPED_AREA
1186unsigned long
1187arch_get_unmapped_area(struct file *filp, unsigned long addr,
1188 unsigned long len, unsigned long pgoff, unsigned long flags)
1189{
1190 struct mm_struct *mm = current->mm;
1191 struct vm_area_struct *vma;
1192 unsigned long start_addr;
1193
1194 if (len > TASK_SIZE)
1195 return -ENOMEM;
1196
1197 if (addr) {
1198 addr = PAGE_ALIGN(addr);
1199 vma = find_vma(mm, addr);
1200 if (TASK_SIZE - len >= addr &&
1201 (!vma || addr + len <= vma->vm_start))
1202 return addr;
1203 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001204 if (len > mm->cached_hole_size) {
1205 start_addr = addr = mm->free_area_cache;
1206 } else {
1207 start_addr = addr = TASK_UNMAPPED_BASE;
1208 mm->cached_hole_size = 0;
1209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211full_search:
1212 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
1213 /* At this point: (!vma || addr < vma->vm_end). */
1214 if (TASK_SIZE - len < addr) {
1215 /*
1216 * Start a new search - just in case we missed
1217 * some holes.
1218 */
1219 if (start_addr != TASK_UNMAPPED_BASE) {
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001220 addr = TASK_UNMAPPED_BASE;
1221 start_addr = addr;
1222 mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 goto full_search;
1224 }
1225 return -ENOMEM;
1226 }
1227 if (!vma || addr + len <= vma->vm_start) {
1228 /*
1229 * Remember the place where we stopped the search:
1230 */
1231 mm->free_area_cache = addr + len;
1232 return addr;
1233 }
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001234 if (addr + mm->cached_hole_size < vma->vm_start)
1235 mm->cached_hole_size = vma->vm_start - addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 addr = vma->vm_end;
1237 }
1238}
1239#endif
1240
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001241void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 /*
1244 * Is this a new hole at the lowest possible address?
1245 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001246 if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache) {
1247 mm->free_area_cache = addr;
1248 mm->cached_hole_size = ~0UL;
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
1252/*
1253 * This mmap-allocator allocates new areas top-down from below the
1254 * stack's low limit (the base):
1255 */
1256#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1257unsigned long
1258arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1259 const unsigned long len, const unsigned long pgoff,
1260 const unsigned long flags)
1261{
1262 struct vm_area_struct *vma;
1263 struct mm_struct *mm = current->mm;
1264 unsigned long addr = addr0;
1265
1266 /* requested length too big for entire address space */
1267 if (len > TASK_SIZE)
1268 return -ENOMEM;
1269
1270 /* requesting a specific address */
1271 if (addr) {
1272 addr = PAGE_ALIGN(addr);
1273 vma = find_vma(mm, addr);
1274 if (TASK_SIZE - len >= addr &&
1275 (!vma || addr + len <= vma->vm_start))
1276 return addr;
1277 }
1278
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001279 /* check if free_area_cache is useful for us */
1280 if (len <= mm->cached_hole_size) {
1281 mm->cached_hole_size = 0;
1282 mm->free_area_cache = mm->mmap_base;
1283 }
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 /* either no address requested or can't fit in requested address hole */
1286 addr = mm->free_area_cache;
1287
1288 /* make sure it can fit in the remaining address space */
Linus Torvalds49a43872005-05-18 15:39:33 -07001289 if (addr > len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 vma = find_vma(mm, addr-len);
1291 if (!vma || addr <= vma->vm_start)
1292 /* remember the address as a hint for next time */
1293 return (mm->free_area_cache = addr-len);
1294 }
1295
Chris Wright73219d12005-06-21 17:14:52 -07001296 if (mm->mmap_base < len)
1297 goto bottomup;
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 addr = mm->mmap_base-len;
1300
1301 do {
1302 /*
1303 * Lookup failure means no vma is above this address,
1304 * else if new region fits below vma->vm_start,
1305 * return with success:
1306 */
1307 vma = find_vma(mm, addr);
1308 if (!vma || addr+len <= vma->vm_start)
1309 /* remember the address as a hint for next time */
1310 return (mm->free_area_cache = addr);
1311
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001312 /* remember the largest hole we saw so far */
1313 if (addr + mm->cached_hole_size < vma->vm_start)
1314 mm->cached_hole_size = vma->vm_start - addr;
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 /* try just below the current vma->vm_start */
1317 addr = vma->vm_start-len;
Linus Torvalds49a43872005-05-18 15:39:33 -07001318 } while (len < vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Chris Wright73219d12005-06-21 17:14:52 -07001320bottomup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 /*
1322 * A failed mmap() very likely causes application failure,
1323 * so fall back to the bottom-up function here. This scenario
1324 * can happen with large stack limits and large mmap()
1325 * allocations.
1326 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001327 mm->cached_hole_size = ~0UL;
1328 mm->free_area_cache = TASK_UNMAPPED_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
1330 /*
1331 * Restore the topdown base:
1332 */
1333 mm->free_area_cache = mm->mmap_base;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001334 mm->cached_hole_size = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 return addr;
1337}
1338#endif
1339
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001340void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 /*
1343 * Is this a new hole at the highest possible address?
1344 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001345 if (addr > mm->free_area_cache)
1346 mm->free_area_cache = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 /* dont allow allocations above current base */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001349 if (mm->free_area_cache > mm->mmap_base)
1350 mm->free_area_cache = mm->mmap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
1353unsigned long
1354get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1355 unsigned long pgoff, unsigned long flags)
1356{
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001357 unsigned long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001359 if (!(flags & MAP_FIXED)) {
1360 unsigned long (*get_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
1361
1362 get_area = current->mm->get_unmapped_area;
1363 if (file && file->f_op && file->f_op->get_unmapped_area)
1364 get_area = file->f_op->get_unmapped_area;
1365 addr = get_area(file, addr, len, pgoff, flags);
1366 if (IS_ERR_VALUE(addr))
1367 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001370 if (addr > TASK_SIZE - len)
1371 return -ENOMEM;
1372 if (addr & ~PAGE_MASK)
1373 return -EINVAL;
1374 if (file && is_file_hugepages(file)) {
1375 /*
1376 * Check if the given range is hugepage aligned, and
1377 * can be made suitable for hugepages.
1378 */
1379 ret = prepare_hugepage_range(addr, len);
1380 } else {
1381 /*
1382 * Ensure that a normal request is not falling in a
1383 * reserved hugepage range. For some archs like IA-64,
1384 * there is a separate region for hugepages.
1385 */
1386 ret = is_hugepage_only_range(current->mm, addr, len);
1387 }
1388 if (ret)
1389 return -EINVAL;
1390 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
1393EXPORT_SYMBOL(get_unmapped_area);
1394
1395/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
1396struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr)
1397{
1398 struct vm_area_struct *vma = NULL;
1399
1400 if (mm) {
1401 /* Check the cache first. */
1402 /* (Cache hit rate is typically around 35%.) */
1403 vma = mm->mmap_cache;
1404 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1405 struct rb_node * rb_node;
1406
1407 rb_node = mm->mm_rb.rb_node;
1408 vma = NULL;
1409
1410 while (rb_node) {
1411 struct vm_area_struct * vma_tmp;
1412
1413 vma_tmp = rb_entry(rb_node,
1414 struct vm_area_struct, vm_rb);
1415
1416 if (vma_tmp->vm_end > addr) {
1417 vma = vma_tmp;
1418 if (vma_tmp->vm_start <= addr)
1419 break;
1420 rb_node = rb_node->rb_left;
1421 } else
1422 rb_node = rb_node->rb_right;
1423 }
1424 if (vma)
1425 mm->mmap_cache = vma;
1426 }
1427 }
1428 return vma;
1429}
1430
1431EXPORT_SYMBOL(find_vma);
1432
1433/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1434struct vm_area_struct *
1435find_vma_prev(struct mm_struct *mm, unsigned long addr,
1436 struct vm_area_struct **pprev)
1437{
1438 struct vm_area_struct *vma = NULL, *prev = NULL;
1439 struct rb_node * rb_node;
1440 if (!mm)
1441 goto out;
1442
1443 /* Guard against addr being lower than the first VMA */
1444 vma = mm->mmap;
1445
1446 /* Go through the RB tree quickly. */
1447 rb_node = mm->mm_rb.rb_node;
1448
1449 while (rb_node) {
1450 struct vm_area_struct *vma_tmp;
1451 vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1452
1453 if (addr < vma_tmp->vm_end) {
1454 rb_node = rb_node->rb_left;
1455 } else {
1456 prev = vma_tmp;
1457 if (!prev->vm_next || (addr < prev->vm_next->vm_end))
1458 break;
1459 rb_node = rb_node->rb_right;
1460 }
1461 }
1462
1463out:
1464 *pprev = prev;
1465 return prev ? prev->vm_next : vma;
1466}
1467
1468/*
1469 * Verify that the stack growth is acceptable and
1470 * update accounting. This is shared with both the
1471 * grow-up and grow-down cases.
1472 */
1473static int acct_stack_growth(struct vm_area_struct * vma, unsigned long size, unsigned long grow)
1474{
1475 struct mm_struct *mm = vma->vm_mm;
1476 struct rlimit *rlim = current->signal->rlim;
1477
1478 /* address space limit tests */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001479 if (!may_expand_vm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return -ENOMEM;
1481
1482 /* Stack limit test */
1483 if (size > rlim[RLIMIT_STACK].rlim_cur)
1484 return -ENOMEM;
1485
1486 /* mlock limit tests */
1487 if (vma->vm_flags & VM_LOCKED) {
1488 unsigned long locked;
1489 unsigned long limit;
1490 locked = mm->locked_vm + grow;
1491 limit = rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT;
1492 if (locked > limit && !capable(CAP_IPC_LOCK))
1493 return -ENOMEM;
1494 }
1495
1496 /*
1497 * Overcommit.. This must be the final test, as it will
1498 * update security statistics.
1499 */
1500 if (security_vm_enough_memory(grow))
1501 return -ENOMEM;
1502
1503 /* Ok, everything looks good - let it rip */
1504 mm->total_vm += grow;
1505 if (vma->vm_flags & VM_LOCKED)
1506 mm->locked_vm += grow;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001507 vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return 0;
1509}
1510
1511#ifdef CONFIG_STACK_GROWSUP
1512/*
1513 * vma is the first one with address > vma->vm_end. Have to extend vma.
1514 */
1515int expand_stack(struct vm_area_struct * vma, unsigned long address)
1516{
1517 int error;
1518
1519 if (!(vma->vm_flags & VM_GROWSUP))
1520 return -EFAULT;
1521
1522 /*
1523 * We must make sure the anon_vma is allocated
1524 * so that the anon_vma locking is not a noop.
1525 */
1526 if (unlikely(anon_vma_prepare(vma)))
1527 return -ENOMEM;
1528 anon_vma_lock(vma);
1529
1530 /*
1531 * vma->vm_start/vm_end cannot change under us because the caller
1532 * is required to hold the mmap_sem in read mode. We need the
1533 * anon_vma lock to serialize against concurrent expand_stacks.
1534 */
1535 address += 4 + PAGE_SIZE - 1;
1536 address &= PAGE_MASK;
1537 error = 0;
1538
1539 /* Somebody else might have raced and expanded it already */
1540 if (address > vma->vm_end) {
1541 unsigned long size, grow;
1542
1543 size = address - vma->vm_start;
1544 grow = (address - vma->vm_end) >> PAGE_SHIFT;
1545
1546 error = acct_stack_growth(vma, size, grow);
1547 if (!error)
1548 vma->vm_end = address;
1549 }
1550 anon_vma_unlock(vma);
1551 return error;
1552}
1553
1554struct vm_area_struct *
1555find_extend_vma(struct mm_struct *mm, unsigned long addr)
1556{
1557 struct vm_area_struct *vma, *prev;
1558
1559 addr &= PAGE_MASK;
1560 vma = find_vma_prev(mm, addr, &prev);
1561 if (vma && (vma->vm_start <= addr))
1562 return vma;
1563 if (!prev || expand_stack(prev, addr))
1564 return NULL;
1565 if (prev->vm_flags & VM_LOCKED) {
1566 make_pages_present(addr, prev->vm_end);
1567 }
1568 return prev;
1569}
1570#else
1571/*
1572 * vma is the first one with address < vma->vm_start. Have to extend vma.
1573 */
1574int expand_stack(struct vm_area_struct *vma, unsigned long address)
1575{
1576 int error;
1577
1578 /*
1579 * We must make sure the anon_vma is allocated
1580 * so that the anon_vma locking is not a noop.
1581 */
1582 if (unlikely(anon_vma_prepare(vma)))
1583 return -ENOMEM;
1584 anon_vma_lock(vma);
1585
1586 /*
1587 * vma->vm_start/vm_end cannot change under us because the caller
1588 * is required to hold the mmap_sem in read mode. We need the
1589 * anon_vma lock to serialize against concurrent expand_stacks.
1590 */
1591 address &= PAGE_MASK;
1592 error = 0;
1593
1594 /* Somebody else might have raced and expanded it already */
1595 if (address < vma->vm_start) {
1596 unsigned long size, grow;
1597
1598 size = vma->vm_end - address;
1599 grow = (vma->vm_start - address) >> PAGE_SHIFT;
1600
1601 error = acct_stack_growth(vma, size, grow);
1602 if (!error) {
1603 vma->vm_start = address;
1604 vma->vm_pgoff -= grow;
1605 }
1606 }
1607 anon_vma_unlock(vma);
1608 return error;
1609}
1610
1611struct vm_area_struct *
1612find_extend_vma(struct mm_struct * mm, unsigned long addr)
1613{
1614 struct vm_area_struct * vma;
1615 unsigned long start;
1616
1617 addr &= PAGE_MASK;
1618 vma = find_vma(mm,addr);
1619 if (!vma)
1620 return NULL;
1621 if (vma->vm_start <= addr)
1622 return vma;
1623 if (!(vma->vm_flags & VM_GROWSDOWN))
1624 return NULL;
1625 start = vma->vm_start;
1626 if (expand_stack(vma, addr))
1627 return NULL;
1628 if (vma->vm_flags & VM_LOCKED) {
1629 make_pages_present(addr, start);
1630 }
1631 return vma;
1632}
1633#endif
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001636 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001638 *
1639 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001641static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Hugh Dickins365e9c872005-10-29 18:16:18 -07001643 /* Update high watermark before we lower total_vm */
1644 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001646 long nrpages = vma_pages(vma);
1647
1648 mm->total_vm -= nrpages;
1649 if (vma->vm_flags & VM_LOCKED)
1650 mm->locked_vm -= nrpages;
1651 vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001652 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07001653 } while (vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 validate_mm(mm);
1655}
1656
1657/*
1658 * Get rid of page table information in the indicated region.
1659 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07001660 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 */
1662static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001663 struct vm_area_struct *vma, struct vm_area_struct *prev,
1664 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Hugh Dickinse0da3822005-04-19 13:29:15 -07001666 struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 struct mmu_gather *tlb;
1668 unsigned long nr_accounted = 0;
1669
1670 lru_add_drain();
Hugh Dickinse0da3822005-04-19 13:29:15 -07001671 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 tlb = tlb_gather_mmu(mm, 0);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001673 update_hiwater_rss(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 unmap_vmas(&tlb, mm, vma, start, end, &nr_accounted, NULL);
1675 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001676 free_pgtables(&tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001677 next? next->vm_start: 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 tlb_finish_mmu(tlb, start, end);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001679 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
1682/*
1683 * Create a list of vma's touched by the unmap, removing them from the mm's
1684 * vma list as we go..
1685 */
1686static void
1687detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
1688 struct vm_area_struct *prev, unsigned long end)
1689{
1690 struct vm_area_struct **insertion_point;
1691 struct vm_area_struct *tail_vma = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001692 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
1695 do {
1696 rb_erase(&vma->vm_rb, &mm->mm_rb);
1697 mm->map_count--;
1698 tail_vma = vma;
1699 vma = vma->vm_next;
1700 } while (vma && vma->vm_start < end);
1701 *insertion_point = vma;
1702 tail_vma->vm_next = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001703 if (mm->unmap_area == arch_unmap_area)
1704 addr = prev ? prev->vm_end : mm->mmap_base;
1705 else
1706 addr = vma ? vma->vm_start : mm->mmap_base;
1707 mm->unmap_area(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 mm->mmap_cache = NULL; /* Kill the cache. */
1709}
1710
1711/*
1712 * Split a vma into two pieces at address 'addr', a new vma is allocated
1713 * either for the first part or the the tail.
1714 */
1715int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
1716 unsigned long addr, int new_below)
1717{
1718 struct mempolicy *pol;
1719 struct vm_area_struct *new;
1720
1721 if (is_vm_hugetlb_page(vma) && (addr & ~HPAGE_MASK))
1722 return -EINVAL;
1723
1724 if (mm->map_count >= sysctl_max_map_count)
1725 return -ENOMEM;
1726
1727 new = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1728 if (!new)
1729 return -ENOMEM;
1730
1731 /* most fields are the same, copy all, and then fixup */
1732 *new = *vma;
1733
1734 if (new_below)
1735 new->vm_end = addr;
1736 else {
1737 new->vm_start = addr;
1738 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
1739 }
1740
1741 pol = mpol_copy(vma_policy(vma));
1742 if (IS_ERR(pol)) {
1743 kmem_cache_free(vm_area_cachep, new);
1744 return PTR_ERR(pol);
1745 }
1746 vma_set_policy(new, pol);
1747
1748 if (new->vm_file)
1749 get_file(new->vm_file);
1750
1751 if (new->vm_ops && new->vm_ops->open)
1752 new->vm_ops->open(new);
1753
1754 if (new_below)
1755 vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
1756 ((addr - new->vm_start) >> PAGE_SHIFT), new);
1757 else
1758 vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
1759
1760 return 0;
1761}
1762
1763/* Munmap is split into 2 main parts -- this part which finds
1764 * what needs doing, and the areas themselves, which do the
1765 * work. This now handles partial unmappings.
1766 * Jeremy Fitzhardinge <jeremy@goop.org>
1767 */
1768int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
1769{
1770 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07001771 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
1774 return -EINVAL;
1775
1776 if ((len = PAGE_ALIGN(len)) == 0)
1777 return -EINVAL;
1778
1779 /* Find the first overlapping VMA */
Hugh Dickins146425a2005-04-19 13:29:18 -07001780 vma = find_vma_prev(mm, start, &prev);
1781 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return 0;
Hugh Dickins146425a2005-04-19 13:29:18 -07001783 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 /* if it doesn't overlap, we have nothing.. */
1786 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07001787 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return 0;
1789
1790 /*
1791 * If we need to split any vma, do it now to save pain later.
1792 *
1793 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
1794 * unmapped vm_area_struct will remain in use: so lower split_vma
1795 * places tmp vma above, and higher split_vma places tmp vma below.
1796 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001797 if (start > vma->vm_start) {
1798 int error = split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (error)
1800 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07001801 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
1804 /* Does it split the last one? */
1805 last = find_vma(mm, end);
1806 if (last && end > last->vm_start) {
1807 int error = split_vma(mm, last, end, 1);
1808 if (error)
1809 return error;
1810 }
Hugh Dickins146425a2005-04-19 13:29:18 -07001811 vma = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 /*
1814 * Remove the vma's, and unmap the actual pages
1815 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001816 detach_vmas_to_be_unmapped(mm, vma, prev, end);
1817 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
1819 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07001820 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 return 0;
1823}
1824
1825EXPORT_SYMBOL(do_munmap);
1826
1827asmlinkage long sys_munmap(unsigned long addr, size_t len)
1828{
1829 int ret;
1830 struct mm_struct *mm = current->mm;
1831
1832 profile_munmap(addr);
1833
1834 down_write(&mm->mmap_sem);
1835 ret = do_munmap(mm, addr, len);
1836 up_write(&mm->mmap_sem);
1837 return ret;
1838}
1839
1840static inline void verify_mm_writelocked(struct mm_struct *mm)
1841{
1842#ifdef CONFIG_DEBUG_KERNEL
1843 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
1844 WARN_ON(1);
1845 up_read(&mm->mmap_sem);
1846 }
1847#endif
1848}
1849
1850/*
1851 * this is really a simplified "do_mmap". it only handles
1852 * anonymous maps. eventually we may be able to do some
1853 * brk-specific accounting here.
1854 */
1855unsigned long do_brk(unsigned long addr, unsigned long len)
1856{
1857 struct mm_struct * mm = current->mm;
1858 struct vm_area_struct * vma, * prev;
1859 unsigned long flags;
1860 struct rb_node ** rb_link, * rb_parent;
1861 pgoff_t pgoff = addr >> PAGE_SHIFT;
1862
1863 len = PAGE_ALIGN(len);
1864 if (!len)
1865 return addr;
1866
1867 if ((addr + len) > TASK_SIZE || (addr + len) < addr)
1868 return -EINVAL;
1869
1870 /*
1871 * mlock MCL_FUTURE?
1872 */
1873 if (mm->def_flags & VM_LOCKED) {
1874 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07001875 locked = len >> PAGE_SHIFT;
1876 locked += mm->locked_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
Chris Wright93ea1d02005-05-01 08:58:38 -07001878 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1880 return -EAGAIN;
1881 }
1882
1883 /*
1884 * mm->mmap_sem is required to protect against another thread
1885 * changing the mappings in case we sleep.
1886 */
1887 verify_mm_writelocked(mm);
1888
1889 /*
1890 * Clear old maps. this also does some error checking for us
1891 */
1892 munmap_back:
1893 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1894 if (vma && vma->vm_start < addr + len) {
1895 if (do_munmap(mm, addr, len))
1896 return -ENOMEM;
1897 goto munmap_back;
1898 }
1899
1900 /* Check against address space limits *after* clearing old maps... */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001901 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return -ENOMEM;
1903
1904 if (mm->map_count > sysctl_max_map_count)
1905 return -ENOMEM;
1906
1907 if (security_vm_enough_memory(len >> PAGE_SHIFT))
1908 return -ENOMEM;
1909
1910 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
1911
1912 /* Can we just expand an old private anonymous mapping? */
1913 if (vma_merge(mm, prev, addr, addr + len, flags,
1914 NULL, NULL, pgoff, NULL))
1915 goto out;
1916
1917 /*
1918 * create a vma struct for an anonymous mapping
1919 */
1920 vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1921 if (!vma) {
1922 vm_unacct_memory(len >> PAGE_SHIFT);
1923 return -ENOMEM;
1924 }
1925 memset(vma, 0, sizeof(*vma));
1926
1927 vma->vm_mm = mm;
1928 vma->vm_start = addr;
1929 vma->vm_end = addr + len;
1930 vma->vm_pgoff = pgoff;
1931 vma->vm_flags = flags;
1932 vma->vm_page_prot = protection_map[flags & 0x0f];
1933 vma_link(mm, vma, prev, rb_link, rb_parent);
1934out:
1935 mm->total_vm += len >> PAGE_SHIFT;
1936 if (flags & VM_LOCKED) {
1937 mm->locked_vm += len >> PAGE_SHIFT;
1938 make_pages_present(addr, addr + len);
1939 }
1940 return addr;
1941}
1942
1943EXPORT_SYMBOL(do_brk);
1944
1945/* Release all mmaps. */
1946void exit_mmap(struct mm_struct *mm)
1947{
1948 struct mmu_gather *tlb;
Hugh Dickinse0da3822005-04-19 13:29:15 -07001949 struct vm_area_struct *vma = mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 unsigned long nr_accounted = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -07001951 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 lru_add_drain();
1954
1955 spin_lock(&mm->page_table_lock);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 flush_cache_mm(mm);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001958 tlb = tlb_gather_mmu(mm, 1);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001959 /* Don't update_hiwater_rss(mm) here, do_exit already did */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001960 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Hugh Dickinsee39b372005-04-19 13:29:15 -07001961 end = unmap_vmas(&tlb, mm, vma, 0, -1, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001963 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
Hugh Dickinsee39b372005-04-19 13:29:15 -07001964 tlb_finish_mmu(tlb, 0, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 spin_unlock(&mm->page_table_lock);
1967
1968 /*
1969 * Walk the list again, actually closing and freeing it
1970 * without holding any MM locks.
1971 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07001972 while (vma)
1973 vma = remove_vma(vma);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001974
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001975 BUG_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
1978/* Insert vm structure into process list sorted by address
1979 * and into the inode's i_mmap tree. If vm_file is non-NULL
1980 * then i_mmap_lock is taken here.
1981 */
1982int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
1983{
1984 struct vm_area_struct * __vma, * prev;
1985 struct rb_node ** rb_link, * rb_parent;
1986
1987 /*
1988 * The vm_pgoff of a purely anonymous vma should be irrelevant
1989 * until its first write fault, when page's anon_vma and index
1990 * are set. But now set the vm_pgoff it will almost certainly
1991 * end up with (unless mremap moves it elsewhere before that
1992 * first wfault), so /proc/pid/maps tells a consistent story.
1993 *
1994 * By setting it to reflect the virtual start address of the
1995 * vma, merges and splits can happen in a seamless way, just
1996 * using the existing file pgoff checks and manipulations.
1997 * Similarly in do_mmap_pgoff and in do_brk.
1998 */
1999 if (!vma->vm_file) {
2000 BUG_ON(vma->anon_vma);
2001 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2002 }
2003 __vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
2004 if (__vma && __vma->vm_start < vma->vm_end)
2005 return -ENOMEM;
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01002006 if ((vma->vm_flags & VM_ACCOUNT) &&
2007 security_vm_enough_memory(vma_pages(vma)))
2008 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 vma_link(mm, vma, prev, rb_link, rb_parent);
2010 return 0;
2011}
2012
2013/*
2014 * Copy the vma structure to a new location in the same mm,
2015 * prior to moving page table entries, to effect an mremap move.
2016 */
2017struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
2018 unsigned long addr, unsigned long len, pgoff_t pgoff)
2019{
2020 struct vm_area_struct *vma = *vmap;
2021 unsigned long vma_start = vma->vm_start;
2022 struct mm_struct *mm = vma->vm_mm;
2023 struct vm_area_struct *new_vma, *prev;
2024 struct rb_node **rb_link, *rb_parent;
2025 struct mempolicy *pol;
2026
2027 /*
2028 * If anonymous vma has not yet been faulted, update new pgoff
2029 * to match new location, to increase its chance of merging.
2030 */
2031 if (!vma->vm_file && !vma->anon_vma)
2032 pgoff = addr >> PAGE_SHIFT;
2033
2034 find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
2035 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
2036 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
2037 if (new_vma) {
2038 /*
2039 * Source vma may have been merged into new_vma
2040 */
2041 if (vma_start >= new_vma->vm_start &&
2042 vma_start < new_vma->vm_end)
2043 *vmap = new_vma;
2044 } else {
2045 new_vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
2046 if (new_vma) {
2047 *new_vma = *vma;
2048 pol = mpol_copy(vma_policy(vma));
2049 if (IS_ERR(pol)) {
2050 kmem_cache_free(vm_area_cachep, new_vma);
2051 return NULL;
2052 }
2053 vma_set_policy(new_vma, pol);
2054 new_vma->vm_start = addr;
2055 new_vma->vm_end = addr + len;
2056 new_vma->vm_pgoff = pgoff;
2057 if (new_vma->vm_file)
2058 get_file(new_vma->vm_file);
2059 if (new_vma->vm_ops && new_vma->vm_ops->open)
2060 new_vma->vm_ops->open(new_vma);
2061 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2062 }
2063 }
2064 return new_vma;
2065}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002066
2067/*
2068 * Return true if the calling process may expand its vm space by the passed
2069 * number of pages
2070 */
2071int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2072{
2073 unsigned long cur = mm->total_vm; /* pages */
2074 unsigned long lim;
2075
2076 lim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;
2077
2078 if (cur + npages > lim)
2079 return 0;
2080 return 1;
2081}