blob: 1ec0f6e9c0d86a4f9d523f9f497a0a0ea720a255 [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% */
64int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
65atomic_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
146 if (atomic_read(&vm_committed_space) < allowed)
147 return 0;
148
149 vm_unacct_memory(pages);
150
151 return -ENOMEM;
152}
153
154EXPORT_SYMBOL(sysctl_overcommit_memory);
155EXPORT_SYMBOL(sysctl_overcommit_ratio);
156EXPORT_SYMBOL(sysctl_max_map_count);
157EXPORT_SYMBOL(vm_committed_space);
158EXPORT_SYMBOL(__vm_enough_memory);
159
160/*
161 * Requires inode->i_mapping->i_mmap_lock
162 */
163static void __remove_shared_vm_struct(struct vm_area_struct *vma,
164 struct file *file, struct address_space *mapping)
165{
166 if (vma->vm_flags & VM_DENYWRITE)
167 atomic_inc(&file->f_dentry->d_inode->i_writecount);
168 if (vma->vm_flags & VM_SHARED)
169 mapping->i_mmap_writable--;
170
171 flush_dcache_mmap_lock(mapping);
172 if (unlikely(vma->vm_flags & VM_NONLINEAR))
173 list_del_init(&vma->shared.vm_set.list);
174 else
175 vma_prio_tree_remove(vma, &mapping->i_mmap);
176 flush_dcache_mmap_unlock(mapping);
177}
178
179/*
180 * Remove one vm structure and free it.
181 */
182static void remove_vm_struct(struct vm_area_struct *vma)
183{
184 struct file *file = vma->vm_file;
185
186 might_sleep();
187 if (file) {
188 struct address_space *mapping = file->f_mapping;
189 spin_lock(&mapping->i_mmap_lock);
190 __remove_shared_vm_struct(vma, file, mapping);
191 spin_unlock(&mapping->i_mmap_lock);
192 }
193 if (vma->vm_ops && vma->vm_ops->close)
194 vma->vm_ops->close(vma);
195 if (file)
196 fput(file);
197 anon_vma_unlink(vma);
198 mpol_free(vma_policy(vma));
199 kmem_cache_free(vm_area_cachep, vma);
200}
201
202/*
203 * sys_brk() for the most part doesn't need the global kernel
204 * lock, except when an application is doing something nasty
205 * like trying to un-brk an area that has already been mapped
206 * to a regular file. in this case, the unmapping will need
207 * to invoke file system routines that need the global lock.
208 */
209asmlinkage unsigned long sys_brk(unsigned long brk)
210{
211 unsigned long rlim, retval;
212 unsigned long newbrk, oldbrk;
213 struct mm_struct *mm = current->mm;
214
215 down_write(&mm->mmap_sem);
216
217 if (brk < mm->end_code)
218 goto out;
219 newbrk = PAGE_ALIGN(brk);
220 oldbrk = PAGE_ALIGN(mm->brk);
221 if (oldbrk == newbrk)
222 goto set_brk;
223
224 /* Always allow shrinking brk. */
225 if (brk <= mm->brk) {
226 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
227 goto set_brk;
228 goto out;
229 }
230
231 /* Check against rlimit.. */
232 rlim = current->signal->rlim[RLIMIT_DATA].rlim_cur;
233 if (rlim < RLIM_INFINITY && brk - mm->start_data > rlim)
234 goto out;
235
236 /* Check against existing mmap mappings. */
237 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
238 goto out;
239
240 /* Ok, looks good - let it rip. */
241 if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
242 goto out;
243set_brk:
244 mm->brk = brk;
245out:
246 retval = mm->brk;
247 up_write(&mm->mmap_sem);
248 return retval;
249}
250
251#ifdef DEBUG_MM_RB
252static int browse_rb(struct rb_root *root)
253{
254 int i = 0, j;
255 struct rb_node *nd, *pn = NULL;
256 unsigned long prev = 0, pend = 0;
257
258 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
259 struct vm_area_struct *vma;
260 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
261 if (vma->vm_start < prev)
262 printk("vm_start %lx prev %lx\n", vma->vm_start, prev), i = -1;
263 if (vma->vm_start < pend)
264 printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
265 if (vma->vm_start > vma->vm_end)
266 printk("vm_end %lx < vm_start %lx\n", vma->vm_end, vma->vm_start);
267 i++;
268 pn = nd;
269 }
270 j = 0;
271 for (nd = pn; nd; nd = rb_prev(nd)) {
272 j++;
273 }
274 if (i != j)
275 printk("backwards %d, forwards %d\n", j, i), i = 0;
276 return i;
277}
278
279void validate_mm(struct mm_struct *mm)
280{
281 int bug = 0;
282 int i = 0;
283 struct vm_area_struct *tmp = mm->mmap;
284 while (tmp) {
285 tmp = tmp->vm_next;
286 i++;
287 }
288 if (i != mm->map_count)
289 printk("map_count %d vm_next %d\n", mm->map_count, i), bug = 1;
290 i = browse_rb(&mm->mm_rb);
291 if (i != mm->map_count)
292 printk("map_count %d rb %d\n", mm->map_count, i), bug = 1;
293 if (bug)
294 BUG();
295}
296#else
297#define validate_mm(mm) do { } while (0)
298#endif
299
300static struct vm_area_struct *
301find_vma_prepare(struct mm_struct *mm, unsigned long addr,
302 struct vm_area_struct **pprev, struct rb_node ***rb_link,
303 struct rb_node ** rb_parent)
304{
305 struct vm_area_struct * vma;
306 struct rb_node ** __rb_link, * __rb_parent, * rb_prev;
307
308 __rb_link = &mm->mm_rb.rb_node;
309 rb_prev = __rb_parent = NULL;
310 vma = NULL;
311
312 while (*__rb_link) {
313 struct vm_area_struct *vma_tmp;
314
315 __rb_parent = *__rb_link;
316 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
317
318 if (vma_tmp->vm_end > addr) {
319 vma = vma_tmp;
320 if (vma_tmp->vm_start <= addr)
321 return vma;
322 __rb_link = &__rb_parent->rb_left;
323 } else {
324 rb_prev = __rb_parent;
325 __rb_link = &__rb_parent->rb_right;
326 }
327 }
328
329 *pprev = NULL;
330 if (rb_prev)
331 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
332 *rb_link = __rb_link;
333 *rb_parent = __rb_parent;
334 return vma;
335}
336
337static inline void
338__vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
339 struct vm_area_struct *prev, struct rb_node *rb_parent)
340{
341 if (prev) {
342 vma->vm_next = prev->vm_next;
343 prev->vm_next = vma;
344 } else {
345 mm->mmap = vma;
346 if (rb_parent)
347 vma->vm_next = rb_entry(rb_parent,
348 struct vm_area_struct, vm_rb);
349 else
350 vma->vm_next = NULL;
351 }
352}
353
354void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
355 struct rb_node **rb_link, struct rb_node *rb_parent)
356{
357 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
358 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
359}
360
361static inline void __vma_link_file(struct vm_area_struct *vma)
362{
363 struct file * file;
364
365 file = vma->vm_file;
366 if (file) {
367 struct address_space *mapping = file->f_mapping;
368
369 if (vma->vm_flags & VM_DENYWRITE)
370 atomic_dec(&file->f_dentry->d_inode->i_writecount);
371 if (vma->vm_flags & VM_SHARED)
372 mapping->i_mmap_writable++;
373
374 flush_dcache_mmap_lock(mapping);
375 if (unlikely(vma->vm_flags & VM_NONLINEAR))
376 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
377 else
378 vma_prio_tree_insert(vma, &mapping->i_mmap);
379 flush_dcache_mmap_unlock(mapping);
380 }
381}
382
383static void
384__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
385 struct vm_area_struct *prev, struct rb_node **rb_link,
386 struct rb_node *rb_parent)
387{
388 __vma_link_list(mm, vma, prev, rb_parent);
389 __vma_link_rb(mm, vma, rb_link, rb_parent);
390 __anon_vma_link(vma);
391}
392
393static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
394 struct vm_area_struct *prev, struct rb_node **rb_link,
395 struct rb_node *rb_parent)
396{
397 struct address_space *mapping = NULL;
398
399 if (vma->vm_file)
400 mapping = vma->vm_file->f_mapping;
401
402 if (mapping) {
403 spin_lock(&mapping->i_mmap_lock);
404 vma->vm_truncate_count = mapping->truncate_count;
405 }
406 anon_vma_lock(vma);
407
408 __vma_link(mm, vma, prev, rb_link, rb_parent);
409 __vma_link_file(vma);
410
411 anon_vma_unlock(vma);
412 if (mapping)
413 spin_unlock(&mapping->i_mmap_lock);
414
415 mm->map_count++;
416 validate_mm(mm);
417}
418
419/*
420 * Helper for vma_adjust in the split_vma insert case:
421 * insert vm structure into list and rbtree and anon_vma,
422 * but it has already been inserted into prio_tree earlier.
423 */
424static void
425__insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
426{
427 struct vm_area_struct * __vma, * prev;
428 struct rb_node ** rb_link, * rb_parent;
429
430 __vma = find_vma_prepare(mm, vma->vm_start,&prev, &rb_link, &rb_parent);
431 if (__vma && __vma->vm_start < vma->vm_end)
432 BUG();
433 __vma_link(mm, vma, prev, rb_link, rb_parent);
434 mm->map_count++;
435}
436
437static inline void
438__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
439 struct vm_area_struct *prev)
440{
441 prev->vm_next = vma->vm_next;
442 rb_erase(&vma->vm_rb, &mm->mm_rb);
443 if (mm->mmap_cache == vma)
444 mm->mmap_cache = prev;
445}
446
447/*
448 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
449 * is already present in an i_mmap tree without adjusting the tree.
450 * The following helper function should be used when such adjustments
451 * are necessary. The "insert" vma (if any) is to be inserted
452 * before we drop the necessary locks.
453 */
454void vma_adjust(struct vm_area_struct *vma, unsigned long start,
455 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
456{
457 struct mm_struct *mm = vma->vm_mm;
458 struct vm_area_struct *next = vma->vm_next;
459 struct vm_area_struct *importer = NULL;
460 struct address_space *mapping = NULL;
461 struct prio_tree_root *root = NULL;
462 struct file *file = vma->vm_file;
463 struct anon_vma *anon_vma = NULL;
464 long adjust_next = 0;
465 int remove_next = 0;
466
467 if (next && !insert) {
468 if (end >= next->vm_end) {
469 /*
470 * vma expands, overlapping all the next, and
471 * perhaps the one after too (mprotect case 6).
472 */
473again: remove_next = 1 + (end > next->vm_end);
474 end = next->vm_end;
475 anon_vma = next->anon_vma;
476 importer = vma;
477 } else if (end > next->vm_start) {
478 /*
479 * vma expands, overlapping part of the next:
480 * mprotect case 5 shifting the boundary up.
481 */
482 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
483 anon_vma = next->anon_vma;
484 importer = vma;
485 } else if (end < vma->vm_end) {
486 /*
487 * vma shrinks, and !insert tells it's not
488 * split_vma inserting another: so it must be
489 * mprotect case 4 shifting the boundary down.
490 */
491 adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
492 anon_vma = next->anon_vma;
493 importer = next;
494 }
495 }
496
497 if (file) {
498 mapping = file->f_mapping;
499 if (!(vma->vm_flags & VM_NONLINEAR))
500 root = &mapping->i_mmap;
501 spin_lock(&mapping->i_mmap_lock);
502 if (importer &&
503 vma->vm_truncate_count != next->vm_truncate_count) {
504 /*
505 * unmap_mapping_range might be in progress:
506 * ensure that the expanding vma is rescanned.
507 */
508 importer->vm_truncate_count = 0;
509 }
510 if (insert) {
511 insert->vm_truncate_count = vma->vm_truncate_count;
512 /*
513 * Put into prio_tree now, so instantiated pages
514 * are visible to arm/parisc __flush_dcache_page
515 * throughout; but we cannot insert into address
516 * space until vma start or end is updated.
517 */
518 __vma_link_file(insert);
519 }
520 }
521
522 /*
523 * When changing only vma->vm_end, we don't really need
524 * anon_vma lock: but is that case worth optimizing out?
525 */
526 if (vma->anon_vma)
527 anon_vma = vma->anon_vma;
528 if (anon_vma) {
529 spin_lock(&anon_vma->lock);
530 /*
531 * Easily overlooked: when mprotect shifts the boundary,
532 * make sure the expanding vma has anon_vma set if the
533 * shrinking vma had, to cover any anon pages imported.
534 */
535 if (importer && !importer->anon_vma) {
536 importer->anon_vma = anon_vma;
537 __anon_vma_link(importer);
538 }
539 }
540
541 if (root) {
542 flush_dcache_mmap_lock(mapping);
543 vma_prio_tree_remove(vma, root);
544 if (adjust_next)
545 vma_prio_tree_remove(next, root);
546 }
547
548 vma->vm_start = start;
549 vma->vm_end = end;
550 vma->vm_pgoff = pgoff;
551 if (adjust_next) {
552 next->vm_start += adjust_next << PAGE_SHIFT;
553 next->vm_pgoff += adjust_next;
554 }
555
556 if (root) {
557 if (adjust_next)
558 vma_prio_tree_insert(next, root);
559 vma_prio_tree_insert(vma, root);
560 flush_dcache_mmap_unlock(mapping);
561 }
562
563 if (remove_next) {
564 /*
565 * vma_merge has merged next into vma, and needs
566 * us to remove next before dropping the locks.
567 */
568 __vma_unlink(mm, next, vma);
569 if (file)
570 __remove_shared_vm_struct(next, file, mapping);
571 if (next->anon_vma)
572 __anon_vma_merge(vma, next);
573 } else if (insert) {
574 /*
575 * split_vma has split insert from vma, and needs
576 * us to insert it before dropping the locks
577 * (it may either follow vma or precede it).
578 */
579 __insert_vm_struct(mm, insert);
580 }
581
582 if (anon_vma)
583 spin_unlock(&anon_vma->lock);
584 if (mapping)
585 spin_unlock(&mapping->i_mmap_lock);
586
587 if (remove_next) {
588 if (file)
589 fput(file);
590 mm->map_count--;
591 mpol_free(vma_policy(next));
592 kmem_cache_free(vm_area_cachep, next);
593 /*
594 * In mprotect's case 6 (see comments on vma_merge),
595 * we must remove another next too. It would clutter
596 * up the code too much to do both in one go.
597 */
598 if (remove_next == 2) {
599 next = vma->vm_next;
600 goto again;
601 }
602 }
603
604 validate_mm(mm);
605}
606
607/*
608 * If the vma has a ->close operation then the driver probably needs to release
609 * per-vma resources, so we don't attempt to merge those.
610 */
611#define VM_SPECIAL (VM_IO | VM_DONTCOPY | VM_DONTEXPAND | VM_RESERVED)
612
613static inline int is_mergeable_vma(struct vm_area_struct *vma,
614 struct file *file, unsigned long vm_flags)
615{
616 if (vma->vm_flags != vm_flags)
617 return 0;
618 if (vma->vm_file != file)
619 return 0;
620 if (vma->vm_ops && vma->vm_ops->close)
621 return 0;
622 return 1;
623}
624
625static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
626 struct anon_vma *anon_vma2)
627{
628 return !anon_vma1 || !anon_vma2 || (anon_vma1 == anon_vma2);
629}
630
631/*
632 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
633 * in front of (at a lower virtual address and file offset than) the vma.
634 *
635 * We cannot merge two vmas if they have differently assigned (non-NULL)
636 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
637 *
638 * We don't check here for the merged mmap wrapping around the end of pagecache
639 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
640 * wrap, nor mmaps which cover the final page at index -1UL.
641 */
642static int
643can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
644 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
645{
646 if (is_mergeable_vma(vma, file, vm_flags) &&
647 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
648 if (vma->vm_pgoff == vm_pgoff)
649 return 1;
650 }
651 return 0;
652}
653
654/*
655 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
656 * beyond (at a higher virtual address and file offset than) the vma.
657 *
658 * We cannot merge two vmas if they have differently assigned (non-NULL)
659 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
660 */
661static int
662can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
663 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
664{
665 if (is_mergeable_vma(vma, file, vm_flags) &&
666 is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
667 pgoff_t vm_pglen;
668 vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
669 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
670 return 1;
671 }
672 return 0;
673}
674
675/*
676 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
677 * whether that can be merged with its predecessor or its successor.
678 * Or both (it neatly fills a hole).
679 *
680 * In most cases - when called for mmap, brk or mremap - [addr,end) is
681 * certain not to be mapped by the time vma_merge is called; but when
682 * called for mprotect, it is certain to be already mapped (either at
683 * an offset within prev, or at the start of next), and the flags of
684 * this area are about to be changed to vm_flags - and the no-change
685 * case has already been eliminated.
686 *
687 * The following mprotect cases have to be considered, where AAAA is
688 * the area passed down from mprotect_fixup, never extending beyond one
689 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
690 *
691 * AAAA AAAA AAAA AAAA
692 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
693 * cannot merge might become might become might become
694 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
695 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
696 * mremap move: PPPPNNNNNNNN 8
697 * AAAA
698 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
699 * might become case 1 below case 2 below case 3 below
700 *
701 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
702 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
703 */
704struct vm_area_struct *vma_merge(struct mm_struct *mm,
705 struct vm_area_struct *prev, unsigned long addr,
706 unsigned long end, unsigned long vm_flags,
707 struct anon_vma *anon_vma, struct file *file,
708 pgoff_t pgoff, struct mempolicy *policy)
709{
710 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
711 struct vm_area_struct *area, *next;
712
713 /*
714 * We later require that vma->vm_flags == vm_flags,
715 * so this tests vma->vm_flags & VM_SPECIAL, too.
716 */
717 if (vm_flags & VM_SPECIAL)
718 return NULL;
719
720 if (prev)
721 next = prev->vm_next;
722 else
723 next = mm->mmap;
724 area = next;
725 if (next && next->vm_end == end) /* cases 6, 7, 8 */
726 next = next->vm_next;
727
728 /*
729 * Can it merge with the predecessor?
730 */
731 if (prev && prev->vm_end == addr &&
732 mpol_equal(vma_policy(prev), policy) &&
733 can_vma_merge_after(prev, vm_flags,
734 anon_vma, file, pgoff)) {
735 /*
736 * OK, it can. Can we now merge in the successor as well?
737 */
738 if (next && end == next->vm_start &&
739 mpol_equal(policy, vma_policy(next)) &&
740 can_vma_merge_before(next, vm_flags,
741 anon_vma, file, pgoff+pglen) &&
742 is_mergeable_anon_vma(prev->anon_vma,
743 next->anon_vma)) {
744 /* cases 1, 6 */
745 vma_adjust(prev, prev->vm_start,
746 next->vm_end, prev->vm_pgoff, NULL);
747 } else /* cases 2, 5, 7 */
748 vma_adjust(prev, prev->vm_start,
749 end, prev->vm_pgoff, NULL);
750 return prev;
751 }
752
753 /*
754 * Can this new request be merged in front of next?
755 */
756 if (next && end == next->vm_start &&
757 mpol_equal(policy, vma_policy(next)) &&
758 can_vma_merge_before(next, vm_flags,
759 anon_vma, file, pgoff+pglen)) {
760 if (prev && addr < prev->vm_end) /* case 4 */
761 vma_adjust(prev, prev->vm_start,
762 addr, prev->vm_pgoff, NULL);
763 else /* cases 3, 8 */
764 vma_adjust(area, addr, next->vm_end,
765 next->vm_pgoff - pglen, NULL);
766 return area;
767 }
768
769 return NULL;
770}
771
772/*
773 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
774 * neighbouring vmas for a suitable anon_vma, before it goes off
775 * to allocate a new anon_vma. It checks because a repetitive
776 * sequence of mprotects and faults may otherwise lead to distinct
777 * anon_vmas being allocated, preventing vma merge in subsequent
778 * mprotect.
779 */
780struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
781{
782 struct vm_area_struct *near;
783 unsigned long vm_flags;
784
785 near = vma->vm_next;
786 if (!near)
787 goto try_prev;
788
789 /*
790 * Since only mprotect tries to remerge vmas, match flags
791 * which might be mprotected into each other later on.
792 * Neither mlock nor madvise tries to remerge at present,
793 * so leave their flags as obstructing a merge.
794 */
795 vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
796 vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
797
798 if (near->anon_vma && vma->vm_end == near->vm_start &&
799 mpol_equal(vma_policy(vma), vma_policy(near)) &&
800 can_vma_merge_before(near, vm_flags,
801 NULL, vma->vm_file, vma->vm_pgoff +
802 ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT)))
803 return near->anon_vma;
804try_prev:
805 /*
806 * It is potentially slow to have to call find_vma_prev here.
807 * But it's only on the first write fault on the vma, not
808 * every time, and we could devise a way to avoid it later
809 * (e.g. stash info in next's anon_vma_node when assigning
810 * an anon_vma, or when trying vma_merge). Another time.
811 */
812 if (find_vma_prev(vma->vm_mm, vma->vm_start, &near) != vma)
813 BUG();
814 if (!near)
815 goto none;
816
817 vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
818 vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
819
820 if (near->anon_vma && near->vm_end == vma->vm_start &&
821 mpol_equal(vma_policy(near), vma_policy(vma)) &&
822 can_vma_merge_after(near, vm_flags,
823 NULL, vma->vm_file, vma->vm_pgoff))
824 return near->anon_vma;
825none:
826 /*
827 * There's no absolute need to look only at touching neighbours:
828 * we could search further afield for "compatible" anon_vmas.
829 * But it would probably just be a waste of time searching,
830 * or lead to too many vmas hanging off the same anon_vma.
831 * We're trying to allow mprotect remerging later on,
832 * not trying to minimize memory used for anon_vmas.
833 */
834 return NULL;
835}
836
837#ifdef CONFIG_PROC_FS
838void __vm_stat_account(struct mm_struct *mm, unsigned long flags,
839 struct file *file, long pages)
840{
841 const unsigned long stack_flags
842 = VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN);
843
844#ifdef CONFIG_HUGETLB
845 if (flags & VM_HUGETLB) {
846 if (!(flags & VM_DONTCOPY))
847 mm->shared_vm += pages;
848 return;
849 }
850#endif /* CONFIG_HUGETLB */
851
852 if (file) {
853 mm->shared_vm += pages;
854 if ((flags & (VM_EXEC|VM_WRITE)) == VM_EXEC)
855 mm->exec_vm += pages;
856 } else if (flags & stack_flags)
857 mm->stack_vm += pages;
858 if (flags & (VM_RESERVED|VM_IO))
859 mm->reserved_vm += pages;
860}
861#endif /* CONFIG_PROC_FS */
862
863/*
864 * The caller must hold down_write(current->mm->mmap_sem).
865 */
866
867unsigned long do_mmap_pgoff(struct file * file, unsigned long addr,
868 unsigned long len, unsigned long prot,
869 unsigned long flags, unsigned long pgoff)
870{
871 struct mm_struct * mm = current->mm;
872 struct vm_area_struct * vma, * prev;
873 struct inode *inode;
874 unsigned int vm_flags;
875 int correct_wcount = 0;
876 int error;
877 struct rb_node ** rb_link, * rb_parent;
878 int accountable = 1;
879 unsigned long charged = 0, reqprot = prot;
880
881 if (file) {
882 if (is_file_hugepages(file))
883 accountable = 0;
884
885 if (!file->f_op || !file->f_op->mmap)
886 return -ENODEV;
887
888 if ((prot & PROT_EXEC) &&
889 (file->f_vfsmnt->mnt_flags & MNT_NOEXEC))
890 return -EPERM;
891 }
892 /*
893 * Does the application expect PROT_READ to imply PROT_EXEC?
894 *
895 * (the exception is when the underlying filesystem is noexec
896 * mounted, in which case we dont add PROT_EXEC.)
897 */
898 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
899 if (!(file && (file->f_vfsmnt->mnt_flags & MNT_NOEXEC)))
900 prot |= PROT_EXEC;
901
902 if (!len)
903 return -EINVAL;
904
905 /* Careful about overflows.. */
906 len = PAGE_ALIGN(len);
907 if (!len || len > TASK_SIZE)
908 return -ENOMEM;
909
910 /* offset overflow? */
911 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
912 return -EOVERFLOW;
913
914 /* Too many mappings? */
915 if (mm->map_count > sysctl_max_map_count)
916 return -ENOMEM;
917
918 /* Obtain the address to map to. we verify (or select) it and ensure
919 * that it represents a valid section of the address space.
920 */
921 addr = get_unmapped_area(file, addr, len, pgoff, flags);
922 if (addr & ~PAGE_MASK)
923 return addr;
924
925 /* Do simple checking here so the lower-level routines won't have
926 * to. we assume access permissions have been handled by the open
927 * of the memory object, so we don't do any here.
928 */
929 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
930 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
931
932 if (flags & MAP_LOCKED) {
933 if (!can_do_mlock())
934 return -EPERM;
935 vm_flags |= VM_LOCKED;
936 }
937 /* mlock MCL_FUTURE? */
938 if (vm_flags & VM_LOCKED) {
939 unsigned long locked, lock_limit;
940 locked = mm->locked_vm << PAGE_SHIFT;
941 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
942 locked += len;
943 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
944 return -EAGAIN;
945 }
946
947 inode = file ? file->f_dentry->d_inode : NULL;
948
949 if (file) {
950 switch (flags & MAP_TYPE) {
951 case MAP_SHARED:
952 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
953 return -EACCES;
954
955 /*
956 * Make sure we don't allow writing to an append-only
957 * file..
958 */
959 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
960 return -EACCES;
961
962 /*
963 * Make sure there are no mandatory locks on the file.
964 */
965 if (locks_verify_locked(inode))
966 return -EAGAIN;
967
968 vm_flags |= VM_SHARED | VM_MAYSHARE;
969 if (!(file->f_mode & FMODE_WRITE))
970 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
971
972 /* fall through */
973 case MAP_PRIVATE:
974 if (!(file->f_mode & FMODE_READ))
975 return -EACCES;
976 break;
977
978 default:
979 return -EINVAL;
980 }
981 } else {
982 switch (flags & MAP_TYPE) {
983 case MAP_SHARED:
984 vm_flags |= VM_SHARED | VM_MAYSHARE;
985 break;
986 case MAP_PRIVATE:
987 /*
988 * Set pgoff according to addr for anon_vma.
989 */
990 pgoff = addr >> PAGE_SHIFT;
991 break;
992 default:
993 return -EINVAL;
994 }
995 }
996
997 error = security_file_mmap(file, reqprot, prot, flags);
998 if (error)
999 return error;
1000
1001 /* Clear old maps */
1002 error = -ENOMEM;
1003munmap_back:
1004 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1005 if (vma && vma->vm_start < addr + len) {
1006 if (do_munmap(mm, addr, len))
1007 return -ENOMEM;
1008 goto munmap_back;
1009 }
1010
1011 /* Check against address space limit. */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001012 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return -ENOMEM;
1014
1015 if (accountable && (!(flags & MAP_NORESERVE) ||
1016 sysctl_overcommit_memory == OVERCOMMIT_NEVER)) {
1017 if (vm_flags & VM_SHARED) {
1018 /* Check memory availability in shmem_file_setup? */
1019 vm_flags |= VM_ACCOUNT;
1020 } else if (vm_flags & VM_WRITE) {
1021 /*
1022 * Private writable mapping: check memory availability
1023 */
1024 charged = len >> PAGE_SHIFT;
1025 if (security_vm_enough_memory(charged))
1026 return -ENOMEM;
1027 vm_flags |= VM_ACCOUNT;
1028 }
1029 }
1030
1031 /*
1032 * Can we just expand an old private anonymous mapping?
1033 * The VM_SHARED test is necessary because shmem_zero_setup
1034 * will create the file object for a shared anonymous map below.
1035 */
1036 if (!file && !(vm_flags & VM_SHARED) &&
1037 vma_merge(mm, prev, addr, addr + len, vm_flags,
1038 NULL, NULL, pgoff, NULL))
1039 goto out;
1040
1041 /*
1042 * Determine the object being mapped and call the appropriate
1043 * specific mapper. the address has already been validated, but
1044 * not unmapped, but the maps are removed from the list.
1045 */
1046 vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1047 if (!vma) {
1048 error = -ENOMEM;
1049 goto unacct_error;
1050 }
1051 memset(vma, 0, sizeof(*vma));
1052
1053 vma->vm_mm = mm;
1054 vma->vm_start = addr;
1055 vma->vm_end = addr + len;
1056 vma->vm_flags = vm_flags;
1057 vma->vm_page_prot = protection_map[vm_flags & 0x0f];
1058 vma->vm_pgoff = pgoff;
1059
1060 if (file) {
1061 error = -EINVAL;
1062 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1063 goto free_vma;
1064 if (vm_flags & VM_DENYWRITE) {
1065 error = deny_write_access(file);
1066 if (error)
1067 goto free_vma;
1068 correct_wcount = 1;
1069 }
1070 vma->vm_file = file;
1071 get_file(file);
1072 error = file->f_op->mmap(file, vma);
1073 if (error)
1074 goto unmap_and_free_vma;
1075 } else if (vm_flags & VM_SHARED) {
1076 error = shmem_zero_setup(vma);
1077 if (error)
1078 goto free_vma;
1079 }
1080
1081 /* We set VM_ACCOUNT in a shared mapping's vm_flags, to inform
1082 * shmem_zero_setup (perhaps called through /dev/zero's ->mmap)
1083 * that memory reservation must be checked; but that reservation
1084 * belongs to shared memory object, not to vma: so now clear it.
1085 */
1086 if ((vm_flags & (VM_SHARED|VM_ACCOUNT)) == (VM_SHARED|VM_ACCOUNT))
1087 vma->vm_flags &= ~VM_ACCOUNT;
1088
1089 /* Can addr have changed??
1090 *
1091 * Answer: Yes, several device drivers can do it in their
1092 * f_op->mmap method. -DaveM
1093 */
1094 addr = vma->vm_start;
1095 pgoff = vma->vm_pgoff;
1096 vm_flags = vma->vm_flags;
1097
1098 if (!file || !vma_merge(mm, prev, addr, vma->vm_end,
1099 vma->vm_flags, NULL, file, pgoff, vma_policy(vma))) {
1100 file = vma->vm_file;
1101 vma_link(mm, vma, prev, rb_link, rb_parent);
1102 if (correct_wcount)
1103 atomic_inc(&inode->i_writecount);
1104 } else {
1105 if (file) {
1106 if (correct_wcount)
1107 atomic_inc(&inode->i_writecount);
1108 fput(file);
1109 }
1110 mpol_free(vma_policy(vma));
1111 kmem_cache_free(vm_area_cachep, vma);
1112 }
1113out:
1114 mm->total_vm += len >> PAGE_SHIFT;
1115 __vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
1116 if (vm_flags & VM_LOCKED) {
1117 mm->locked_vm += len >> PAGE_SHIFT;
1118 make_pages_present(addr, addr + len);
1119 }
1120 if (flags & MAP_POPULATE) {
1121 up_write(&mm->mmap_sem);
1122 sys_remap_file_pages(addr, len, 0,
1123 pgoff, flags & MAP_NONBLOCK);
1124 down_write(&mm->mmap_sem);
1125 }
1126 return addr;
1127
1128unmap_and_free_vma:
1129 if (correct_wcount)
1130 atomic_inc(&inode->i_writecount);
1131 vma->vm_file = NULL;
1132 fput(file);
1133
1134 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001135 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1136 charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137free_vma:
1138 kmem_cache_free(vm_area_cachep, vma);
1139unacct_error:
1140 if (charged)
1141 vm_unacct_memory(charged);
1142 return error;
1143}
1144
1145EXPORT_SYMBOL(do_mmap_pgoff);
1146
1147/* Get an address range which is currently unmapped.
1148 * For shmat() with addr=0.
1149 *
1150 * Ugly calling convention alert:
1151 * Return value with the low bits set means error value,
1152 * ie
1153 * if (ret & ~PAGE_MASK)
1154 * error = ret;
1155 *
1156 * This function "knows" that -ENOMEM has the bits set.
1157 */
1158#ifndef HAVE_ARCH_UNMAPPED_AREA
1159unsigned long
1160arch_get_unmapped_area(struct file *filp, unsigned long addr,
1161 unsigned long len, unsigned long pgoff, unsigned long flags)
1162{
1163 struct mm_struct *mm = current->mm;
1164 struct vm_area_struct *vma;
1165 unsigned long start_addr;
1166
1167 if (len > TASK_SIZE)
1168 return -ENOMEM;
1169
1170 if (addr) {
1171 addr = PAGE_ALIGN(addr);
1172 vma = find_vma(mm, addr);
1173 if (TASK_SIZE - len >= addr &&
1174 (!vma || addr + len <= vma->vm_start))
1175 return addr;
1176 }
1177 start_addr = addr = mm->free_area_cache;
1178
1179full_search:
1180 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
1181 /* At this point: (!vma || addr < vma->vm_end). */
1182 if (TASK_SIZE - len < addr) {
1183 /*
1184 * Start a new search - just in case we missed
1185 * some holes.
1186 */
1187 if (start_addr != TASK_UNMAPPED_BASE) {
1188 start_addr = addr = TASK_UNMAPPED_BASE;
1189 goto full_search;
1190 }
1191 return -ENOMEM;
1192 }
1193 if (!vma || addr + len <= vma->vm_start) {
1194 /*
1195 * Remember the place where we stopped the search:
1196 */
1197 mm->free_area_cache = addr + len;
1198 return addr;
1199 }
1200 addr = vma->vm_end;
1201 }
1202}
1203#endif
1204
1205void arch_unmap_area(struct vm_area_struct *area)
1206{
1207 /*
1208 * Is this a new hole at the lowest possible address?
1209 */
1210 if (area->vm_start >= TASK_UNMAPPED_BASE &&
1211 area->vm_start < area->vm_mm->free_area_cache)
1212 area->vm_mm->free_area_cache = area->vm_start;
1213}
1214
1215/*
1216 * This mmap-allocator allocates new areas top-down from below the
1217 * stack's low limit (the base):
1218 */
1219#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1220unsigned long
1221arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1222 const unsigned long len, const unsigned long pgoff,
1223 const unsigned long flags)
1224{
1225 struct vm_area_struct *vma;
1226 struct mm_struct *mm = current->mm;
1227 unsigned long addr = addr0;
1228
1229 /* requested length too big for entire address space */
1230 if (len > TASK_SIZE)
1231 return -ENOMEM;
1232
1233 /* requesting a specific address */
1234 if (addr) {
1235 addr = PAGE_ALIGN(addr);
1236 vma = find_vma(mm, addr);
1237 if (TASK_SIZE - len >= addr &&
1238 (!vma || addr + len <= vma->vm_start))
1239 return addr;
1240 }
1241
1242 /* either no address requested or can't fit in requested address hole */
1243 addr = mm->free_area_cache;
1244
1245 /* make sure it can fit in the remaining address space */
1246 if (addr >= len) {
1247 vma = find_vma(mm, addr-len);
1248 if (!vma || addr <= vma->vm_start)
1249 /* remember the address as a hint for next time */
1250 return (mm->free_area_cache = addr-len);
1251 }
1252
1253 addr = mm->mmap_base-len;
1254
1255 do {
1256 /*
1257 * Lookup failure means no vma is above this address,
1258 * else if new region fits below vma->vm_start,
1259 * return with success:
1260 */
1261 vma = find_vma(mm, addr);
1262 if (!vma || addr+len <= vma->vm_start)
1263 /* remember the address as a hint for next time */
1264 return (mm->free_area_cache = addr);
1265
1266 /* try just below the current vma->vm_start */
1267 addr = vma->vm_start-len;
1268 } while (len <= vma->vm_start);
1269
1270 /*
1271 * A failed mmap() very likely causes application failure,
1272 * so fall back to the bottom-up function here. This scenario
1273 * can happen with large stack limits and large mmap()
1274 * allocations.
1275 */
1276 mm->free_area_cache = TASK_UNMAPPED_BASE;
1277 addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
1278 /*
1279 * Restore the topdown base:
1280 */
1281 mm->free_area_cache = mm->mmap_base;
1282
1283 return addr;
1284}
1285#endif
1286
1287void arch_unmap_area_topdown(struct vm_area_struct *area)
1288{
1289 /*
1290 * Is this a new hole at the highest possible address?
1291 */
1292 if (area->vm_end > area->vm_mm->free_area_cache)
1293 area->vm_mm->free_area_cache = area->vm_end;
1294
1295 /* dont allow allocations above current base */
1296 if (area->vm_mm->free_area_cache > area->vm_mm->mmap_base)
1297 area->vm_mm->free_area_cache = area->vm_mm->mmap_base;
1298}
1299
1300unsigned long
1301get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1302 unsigned long pgoff, unsigned long flags)
1303{
1304 if (flags & MAP_FIXED) {
1305 unsigned long ret;
1306
1307 if (addr > TASK_SIZE - len)
1308 return -ENOMEM;
1309 if (addr & ~PAGE_MASK)
1310 return -EINVAL;
1311 if (file && is_file_hugepages(file)) {
1312 /*
1313 * Check if the given range is hugepage aligned, and
1314 * can be made suitable for hugepages.
1315 */
1316 ret = prepare_hugepage_range(addr, len);
1317 } else {
1318 /*
1319 * Ensure that a normal request is not falling in a
1320 * reserved hugepage range. For some archs like IA-64,
1321 * there is a separate region for hugepages.
1322 */
1323 ret = is_hugepage_only_range(current->mm, addr, len);
1324 }
1325 if (ret)
1326 return -EINVAL;
1327 return addr;
1328 }
1329
1330 if (file && file->f_op && file->f_op->get_unmapped_area)
1331 return file->f_op->get_unmapped_area(file, addr, len,
1332 pgoff, flags);
1333
1334 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
1335}
1336
1337EXPORT_SYMBOL(get_unmapped_area);
1338
1339/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
1340struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr)
1341{
1342 struct vm_area_struct *vma = NULL;
1343
1344 if (mm) {
1345 /* Check the cache first. */
1346 /* (Cache hit rate is typically around 35%.) */
1347 vma = mm->mmap_cache;
1348 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1349 struct rb_node * rb_node;
1350
1351 rb_node = mm->mm_rb.rb_node;
1352 vma = NULL;
1353
1354 while (rb_node) {
1355 struct vm_area_struct * vma_tmp;
1356
1357 vma_tmp = rb_entry(rb_node,
1358 struct vm_area_struct, vm_rb);
1359
1360 if (vma_tmp->vm_end > addr) {
1361 vma = vma_tmp;
1362 if (vma_tmp->vm_start <= addr)
1363 break;
1364 rb_node = rb_node->rb_left;
1365 } else
1366 rb_node = rb_node->rb_right;
1367 }
1368 if (vma)
1369 mm->mmap_cache = vma;
1370 }
1371 }
1372 return vma;
1373}
1374
1375EXPORT_SYMBOL(find_vma);
1376
1377/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1378struct vm_area_struct *
1379find_vma_prev(struct mm_struct *mm, unsigned long addr,
1380 struct vm_area_struct **pprev)
1381{
1382 struct vm_area_struct *vma = NULL, *prev = NULL;
1383 struct rb_node * rb_node;
1384 if (!mm)
1385 goto out;
1386
1387 /* Guard against addr being lower than the first VMA */
1388 vma = mm->mmap;
1389
1390 /* Go through the RB tree quickly. */
1391 rb_node = mm->mm_rb.rb_node;
1392
1393 while (rb_node) {
1394 struct vm_area_struct *vma_tmp;
1395 vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1396
1397 if (addr < vma_tmp->vm_end) {
1398 rb_node = rb_node->rb_left;
1399 } else {
1400 prev = vma_tmp;
1401 if (!prev->vm_next || (addr < prev->vm_next->vm_end))
1402 break;
1403 rb_node = rb_node->rb_right;
1404 }
1405 }
1406
1407out:
1408 *pprev = prev;
1409 return prev ? prev->vm_next : vma;
1410}
1411
1412/*
1413 * Verify that the stack growth is acceptable and
1414 * update accounting. This is shared with both the
1415 * grow-up and grow-down cases.
1416 */
1417static int acct_stack_growth(struct vm_area_struct * vma, unsigned long size, unsigned long grow)
1418{
1419 struct mm_struct *mm = vma->vm_mm;
1420 struct rlimit *rlim = current->signal->rlim;
1421
1422 /* address space limit tests */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001423 if (!may_expand_vm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return -ENOMEM;
1425
1426 /* Stack limit test */
1427 if (size > rlim[RLIMIT_STACK].rlim_cur)
1428 return -ENOMEM;
1429
1430 /* mlock limit tests */
1431 if (vma->vm_flags & VM_LOCKED) {
1432 unsigned long locked;
1433 unsigned long limit;
1434 locked = mm->locked_vm + grow;
1435 limit = rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT;
1436 if (locked > limit && !capable(CAP_IPC_LOCK))
1437 return -ENOMEM;
1438 }
1439
1440 /*
1441 * Overcommit.. This must be the final test, as it will
1442 * update security statistics.
1443 */
1444 if (security_vm_enough_memory(grow))
1445 return -ENOMEM;
1446
1447 /* Ok, everything looks good - let it rip */
1448 mm->total_vm += grow;
1449 if (vma->vm_flags & VM_LOCKED)
1450 mm->locked_vm += grow;
1451 __vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
1452 return 0;
1453}
1454
1455#ifdef CONFIG_STACK_GROWSUP
1456/*
1457 * vma is the first one with address > vma->vm_end. Have to extend vma.
1458 */
1459int expand_stack(struct vm_area_struct * vma, unsigned long address)
1460{
1461 int error;
1462
1463 if (!(vma->vm_flags & VM_GROWSUP))
1464 return -EFAULT;
1465
1466 /*
1467 * We must make sure the anon_vma is allocated
1468 * so that the anon_vma locking is not a noop.
1469 */
1470 if (unlikely(anon_vma_prepare(vma)))
1471 return -ENOMEM;
1472 anon_vma_lock(vma);
1473
1474 /*
1475 * vma->vm_start/vm_end cannot change under us because the caller
1476 * is required to hold the mmap_sem in read mode. We need the
1477 * anon_vma lock to serialize against concurrent expand_stacks.
1478 */
1479 address += 4 + PAGE_SIZE - 1;
1480 address &= PAGE_MASK;
1481 error = 0;
1482
1483 /* Somebody else might have raced and expanded it already */
1484 if (address > vma->vm_end) {
1485 unsigned long size, grow;
1486
1487 size = address - vma->vm_start;
1488 grow = (address - vma->vm_end) >> PAGE_SHIFT;
1489
1490 error = acct_stack_growth(vma, size, grow);
1491 if (!error)
1492 vma->vm_end = address;
1493 }
1494 anon_vma_unlock(vma);
1495 return error;
1496}
1497
1498struct vm_area_struct *
1499find_extend_vma(struct mm_struct *mm, unsigned long addr)
1500{
1501 struct vm_area_struct *vma, *prev;
1502
1503 addr &= PAGE_MASK;
1504 vma = find_vma_prev(mm, addr, &prev);
1505 if (vma && (vma->vm_start <= addr))
1506 return vma;
1507 if (!prev || expand_stack(prev, addr))
1508 return NULL;
1509 if (prev->vm_flags & VM_LOCKED) {
1510 make_pages_present(addr, prev->vm_end);
1511 }
1512 return prev;
1513}
1514#else
1515/*
1516 * vma is the first one with address < vma->vm_start. Have to extend vma.
1517 */
1518int expand_stack(struct vm_area_struct *vma, unsigned long address)
1519{
1520 int error;
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 &= PAGE_MASK;
1536 error = 0;
1537
1538 /* Somebody else might have raced and expanded it already */
1539 if (address < vma->vm_start) {
1540 unsigned long size, grow;
1541
1542 size = vma->vm_end - address;
1543 grow = (vma->vm_start - address) >> PAGE_SHIFT;
1544
1545 error = acct_stack_growth(vma, size, grow);
1546 if (!error) {
1547 vma->vm_start = address;
1548 vma->vm_pgoff -= grow;
1549 }
1550 }
1551 anon_vma_unlock(vma);
1552 return error;
1553}
1554
1555struct vm_area_struct *
1556find_extend_vma(struct mm_struct * mm, unsigned long addr)
1557{
1558 struct vm_area_struct * vma;
1559 unsigned long start;
1560
1561 addr &= PAGE_MASK;
1562 vma = find_vma(mm,addr);
1563 if (!vma)
1564 return NULL;
1565 if (vma->vm_start <= addr)
1566 return vma;
1567 if (!(vma->vm_flags & VM_GROWSDOWN))
1568 return NULL;
1569 start = vma->vm_start;
1570 if (expand_stack(vma, addr))
1571 return NULL;
1572 if (vma->vm_flags & VM_LOCKED) {
1573 make_pages_present(addr, start);
1574 }
1575 return vma;
1576}
1577#endif
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579/* Normal function to fix up a mapping
1580 * This function is the default for when an area has no specific
1581 * function. This may be used as part of a more specific routine.
1582 *
1583 * By the time this function is called, the area struct has been
1584 * removed from the process mapping list.
1585 */
1586static void unmap_vma(struct mm_struct *mm, struct vm_area_struct *area)
1587{
1588 size_t len = area->vm_end - area->vm_start;
1589
1590 area->vm_mm->total_vm -= len >> PAGE_SHIFT;
1591 if (area->vm_flags & VM_LOCKED)
1592 area->vm_mm->locked_vm -= len >> PAGE_SHIFT;
1593 vm_stat_unaccount(area);
1594 area->vm_mm->unmap_area(area);
1595 remove_vm_struct(area);
1596}
1597
1598/*
1599 * Update the VMA and inode share lists.
1600 *
1601 * Ok - we have the memory areas we should free on the 'free' list,
1602 * so release them, and do the vma updates.
1603 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001604static void unmap_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 do {
Hugh Dickins146425a2005-04-19 13:29:18 -07001607 struct vm_area_struct *next = vma->vm_next;
1608 unmap_vma(mm, vma);
1609 vma = next;
1610 } while (vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 validate_mm(mm);
1612}
1613
1614/*
1615 * Get rid of page table information in the indicated region.
1616 *
1617 * Called with the page table lock held.
1618 */
1619static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001620 struct vm_area_struct *vma, struct vm_area_struct *prev,
1621 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Hugh Dickinse0da3822005-04-19 13:29:15 -07001623 struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 struct mmu_gather *tlb;
1625 unsigned long nr_accounted = 0;
1626
1627 lru_add_drain();
Hugh Dickinse0da3822005-04-19 13:29:15 -07001628 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 tlb = tlb_gather_mmu(mm, 0);
1630 unmap_vmas(&tlb, mm, vma, start, end, &nr_accounted, NULL);
1631 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001632 free_pgtables(&tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
Hugh Dickinse0da3822005-04-19 13:29:15 -07001633 next? next->vm_start: 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 tlb_finish_mmu(tlb, start, end);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001635 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
1638/*
1639 * Create a list of vma's touched by the unmap, removing them from the mm's
1640 * vma list as we go..
1641 */
1642static void
1643detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
1644 struct vm_area_struct *prev, unsigned long end)
1645{
1646 struct vm_area_struct **insertion_point;
1647 struct vm_area_struct *tail_vma = NULL;
1648
1649 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
1650 do {
1651 rb_erase(&vma->vm_rb, &mm->mm_rb);
1652 mm->map_count--;
1653 tail_vma = vma;
1654 vma = vma->vm_next;
1655 } while (vma && vma->vm_start < end);
1656 *insertion_point = vma;
1657 tail_vma->vm_next = NULL;
1658 mm->mmap_cache = NULL; /* Kill the cache. */
1659}
1660
1661/*
1662 * Split a vma into two pieces at address 'addr', a new vma is allocated
1663 * either for the first part or the the tail.
1664 */
1665int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
1666 unsigned long addr, int new_below)
1667{
1668 struct mempolicy *pol;
1669 struct vm_area_struct *new;
1670
1671 if (is_vm_hugetlb_page(vma) && (addr & ~HPAGE_MASK))
1672 return -EINVAL;
1673
1674 if (mm->map_count >= sysctl_max_map_count)
1675 return -ENOMEM;
1676
1677 new = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1678 if (!new)
1679 return -ENOMEM;
1680
1681 /* most fields are the same, copy all, and then fixup */
1682 *new = *vma;
1683
1684 if (new_below)
1685 new->vm_end = addr;
1686 else {
1687 new->vm_start = addr;
1688 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
1689 }
1690
1691 pol = mpol_copy(vma_policy(vma));
1692 if (IS_ERR(pol)) {
1693 kmem_cache_free(vm_area_cachep, new);
1694 return PTR_ERR(pol);
1695 }
1696 vma_set_policy(new, pol);
1697
1698 if (new->vm_file)
1699 get_file(new->vm_file);
1700
1701 if (new->vm_ops && new->vm_ops->open)
1702 new->vm_ops->open(new);
1703
1704 if (new_below)
1705 vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
1706 ((addr - new->vm_start) >> PAGE_SHIFT), new);
1707 else
1708 vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
1709
1710 return 0;
1711}
1712
1713/* Munmap is split into 2 main parts -- this part which finds
1714 * what needs doing, and the areas themselves, which do the
1715 * work. This now handles partial unmappings.
1716 * Jeremy Fitzhardinge <jeremy@goop.org>
1717 */
1718int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
1719{
1720 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07001721 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
1724 return -EINVAL;
1725
1726 if ((len = PAGE_ALIGN(len)) == 0)
1727 return -EINVAL;
1728
1729 /* Find the first overlapping VMA */
Hugh Dickins146425a2005-04-19 13:29:18 -07001730 vma = find_vma_prev(mm, start, &prev);
1731 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return 0;
Hugh Dickins146425a2005-04-19 13:29:18 -07001733 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 /* if it doesn't overlap, we have nothing.. */
1736 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07001737 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return 0;
1739
1740 /*
1741 * If we need to split any vma, do it now to save pain later.
1742 *
1743 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
1744 * unmapped vm_area_struct will remain in use: so lower split_vma
1745 * places tmp vma above, and higher split_vma places tmp vma below.
1746 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001747 if (start > vma->vm_start) {
1748 int error = split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (error)
1750 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07001751 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753
1754 /* Does it split the last one? */
1755 last = find_vma(mm, end);
1756 if (last && end > last->vm_start) {
1757 int error = split_vma(mm, last, end, 1);
1758 if (error)
1759 return error;
1760 }
Hugh Dickins146425a2005-04-19 13:29:18 -07001761 vma = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 /*
1764 * Remove the vma's, and unmap the actual pages
1765 */
Hugh Dickins146425a2005-04-19 13:29:18 -07001766 detach_vmas_to_be_unmapped(mm, vma, prev, end);
1767 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 /* Fix up all other VM information */
Hugh Dickins146425a2005-04-19 13:29:18 -07001770 unmap_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 return 0;
1773}
1774
1775EXPORT_SYMBOL(do_munmap);
1776
1777asmlinkage long sys_munmap(unsigned long addr, size_t len)
1778{
1779 int ret;
1780 struct mm_struct *mm = current->mm;
1781
1782 profile_munmap(addr);
1783
1784 down_write(&mm->mmap_sem);
1785 ret = do_munmap(mm, addr, len);
1786 up_write(&mm->mmap_sem);
1787 return ret;
1788}
1789
1790static inline void verify_mm_writelocked(struct mm_struct *mm)
1791{
1792#ifdef CONFIG_DEBUG_KERNEL
1793 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
1794 WARN_ON(1);
1795 up_read(&mm->mmap_sem);
1796 }
1797#endif
1798}
1799
1800/*
1801 * this is really a simplified "do_mmap". it only handles
1802 * anonymous maps. eventually we may be able to do some
1803 * brk-specific accounting here.
1804 */
1805unsigned long do_brk(unsigned long addr, unsigned long len)
1806{
1807 struct mm_struct * mm = current->mm;
1808 struct vm_area_struct * vma, * prev;
1809 unsigned long flags;
1810 struct rb_node ** rb_link, * rb_parent;
1811 pgoff_t pgoff = addr >> PAGE_SHIFT;
1812
1813 len = PAGE_ALIGN(len);
1814 if (!len)
1815 return addr;
1816
1817 if ((addr + len) > TASK_SIZE || (addr + len) < addr)
1818 return -EINVAL;
1819
1820 /*
1821 * mlock MCL_FUTURE?
1822 */
1823 if (mm->def_flags & VM_LOCKED) {
1824 unsigned long locked, lock_limit;
1825 locked = mm->locked_vm << PAGE_SHIFT;
1826 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
1827 locked += len;
1828 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1829 return -EAGAIN;
1830 }
1831
1832 /*
1833 * mm->mmap_sem is required to protect against another thread
1834 * changing the mappings in case we sleep.
1835 */
1836 verify_mm_writelocked(mm);
1837
1838 /*
1839 * Clear old maps. this also does some error checking for us
1840 */
1841 munmap_back:
1842 vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1843 if (vma && vma->vm_start < addr + len) {
1844 if (do_munmap(mm, addr, len))
1845 return -ENOMEM;
1846 goto munmap_back;
1847 }
1848
1849 /* Check against address space limits *after* clearing old maps... */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001850 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return -ENOMEM;
1852
1853 if (mm->map_count > sysctl_max_map_count)
1854 return -ENOMEM;
1855
1856 if (security_vm_enough_memory(len >> PAGE_SHIFT))
1857 return -ENOMEM;
1858
1859 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
1860
1861 /* Can we just expand an old private anonymous mapping? */
1862 if (vma_merge(mm, prev, addr, addr + len, flags,
1863 NULL, NULL, pgoff, NULL))
1864 goto out;
1865
1866 /*
1867 * create a vma struct for an anonymous mapping
1868 */
1869 vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1870 if (!vma) {
1871 vm_unacct_memory(len >> PAGE_SHIFT);
1872 return -ENOMEM;
1873 }
1874 memset(vma, 0, sizeof(*vma));
1875
1876 vma->vm_mm = mm;
1877 vma->vm_start = addr;
1878 vma->vm_end = addr + len;
1879 vma->vm_pgoff = pgoff;
1880 vma->vm_flags = flags;
1881 vma->vm_page_prot = protection_map[flags & 0x0f];
1882 vma_link(mm, vma, prev, rb_link, rb_parent);
1883out:
1884 mm->total_vm += len >> PAGE_SHIFT;
1885 if (flags & VM_LOCKED) {
1886 mm->locked_vm += len >> PAGE_SHIFT;
1887 make_pages_present(addr, addr + len);
1888 }
1889 return addr;
1890}
1891
1892EXPORT_SYMBOL(do_brk);
1893
1894/* Release all mmaps. */
1895void exit_mmap(struct mm_struct *mm)
1896{
1897 struct mmu_gather *tlb;
Hugh Dickinse0da3822005-04-19 13:29:15 -07001898 struct vm_area_struct *vma = mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 unsigned long nr_accounted = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -07001900 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 lru_add_drain();
1903
1904 spin_lock(&mm->page_table_lock);
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 flush_cache_mm(mm);
Hugh Dickinse0da3822005-04-19 13:29:15 -07001907 tlb = tlb_gather_mmu(mm, 1);
1908 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Hugh Dickinsee39b372005-04-19 13:29:15 -07001909 end = unmap_vmas(&tlb, mm, vma, 0, -1, &nr_accounted, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 vm_unacct_memory(nr_accounted);
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001911 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
Hugh Dickinsee39b372005-04-19 13:29:15 -07001912 tlb_finish_mmu(tlb, 0, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 mm->mmap = mm->mmap_cache = NULL;
1915 mm->mm_rb = RB_ROOT;
1916 set_mm_counter(mm, rss, 0);
1917 mm->total_vm = 0;
1918 mm->locked_vm = 0;
1919
1920 spin_unlock(&mm->page_table_lock);
1921
1922 /*
1923 * Walk the list again, actually closing and freeing it
1924 * without holding any MM locks.
1925 */
1926 while (vma) {
1927 struct vm_area_struct *next = vma->vm_next;
1928 remove_vm_struct(vma);
1929 vma = next;
1930 }
Hugh Dickinse0da3822005-04-19 13:29:15 -07001931
Hugh Dickinse2cdef82005-04-19 13:29:19 -07001932 BUG_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
1935/* Insert vm structure into process list sorted by address
1936 * and into the inode's i_mmap tree. If vm_file is non-NULL
1937 * then i_mmap_lock is taken here.
1938 */
1939int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
1940{
1941 struct vm_area_struct * __vma, * prev;
1942 struct rb_node ** rb_link, * rb_parent;
1943
1944 /*
1945 * The vm_pgoff of a purely anonymous vma should be irrelevant
1946 * until its first write fault, when page's anon_vma and index
1947 * are set. But now set the vm_pgoff it will almost certainly
1948 * end up with (unless mremap moves it elsewhere before that
1949 * first wfault), so /proc/pid/maps tells a consistent story.
1950 *
1951 * By setting it to reflect the virtual start address of the
1952 * vma, merges and splits can happen in a seamless way, just
1953 * using the existing file pgoff checks and manipulations.
1954 * Similarly in do_mmap_pgoff and in do_brk.
1955 */
1956 if (!vma->vm_file) {
1957 BUG_ON(vma->anon_vma);
1958 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
1959 }
1960 __vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
1961 if (__vma && __vma->vm_start < vma->vm_end)
1962 return -ENOMEM;
1963 vma_link(mm, vma, prev, rb_link, rb_parent);
1964 return 0;
1965}
1966
1967/*
1968 * Copy the vma structure to a new location in the same mm,
1969 * prior to moving page table entries, to effect an mremap move.
1970 */
1971struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
1972 unsigned long addr, unsigned long len, pgoff_t pgoff)
1973{
1974 struct vm_area_struct *vma = *vmap;
1975 unsigned long vma_start = vma->vm_start;
1976 struct mm_struct *mm = vma->vm_mm;
1977 struct vm_area_struct *new_vma, *prev;
1978 struct rb_node **rb_link, *rb_parent;
1979 struct mempolicy *pol;
1980
1981 /*
1982 * If anonymous vma has not yet been faulted, update new pgoff
1983 * to match new location, to increase its chance of merging.
1984 */
1985 if (!vma->vm_file && !vma->anon_vma)
1986 pgoff = addr >> PAGE_SHIFT;
1987
1988 find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1989 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
1990 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
1991 if (new_vma) {
1992 /*
1993 * Source vma may have been merged into new_vma
1994 */
1995 if (vma_start >= new_vma->vm_start &&
1996 vma_start < new_vma->vm_end)
1997 *vmap = new_vma;
1998 } else {
1999 new_vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
2000 if (new_vma) {
2001 *new_vma = *vma;
2002 pol = mpol_copy(vma_policy(vma));
2003 if (IS_ERR(pol)) {
2004 kmem_cache_free(vm_area_cachep, new_vma);
2005 return NULL;
2006 }
2007 vma_set_policy(new_vma, pol);
2008 new_vma->vm_start = addr;
2009 new_vma->vm_end = addr + len;
2010 new_vma->vm_pgoff = pgoff;
2011 if (new_vma->vm_file)
2012 get_file(new_vma->vm_file);
2013 if (new_vma->vm_ops && new_vma->vm_ops->open)
2014 new_vma->vm_ops->open(new_vma);
2015 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2016 }
2017 }
2018 return new_vma;
2019}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002020
2021/*
2022 * Return true if the calling process may expand its vm space by the passed
2023 * number of pages
2024 */
2025int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2026{
2027 unsigned long cur = mm->total_vm; /* pages */
2028 unsigned long lim;
2029
2030 lim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;
2031
2032 if (cur + npages > lim)
2033 return 0;
2034 return 1;
2035}