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