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