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