68ea8ab1f72fdf8054d56fbd963f6ebec6930182
[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/shm.h>
11 #include <linux/mman.h>
12 #include <linux/pagemap.h>
13 #include <linux/swap.h>
14 #include <linux/syscalls.h>
15 #include <linux/init.h>
16 #include <linux/file.h>
17 #include <linux/fs.h>
18 #include <linux/personality.h>
19 #include <linux/security.h>
20 #include <linux/hugetlb.h>
21 #include <linux/profile.h>
22 #include <linux/module.h>
23 #include <linux/mount.h>
24 #include <linux/mempolicy.h>
25 #include <linux/rmap.h>
26
27 #include <asm/uaccess.h>
28 #include <asm/cacheflush.h>
29 #include <asm/tlb.h>
30
31 /*
32  * WARNING: the debugging will use recursive algorithms so never enable this
33  * unless you know what you are doing.
34  */
35 #undef DEBUG_MM_RB
36
37 /* description of effects of mapping type and prot in current implementation.
38  * this is due to the limited x86 page protection hardware.  The expected
39  * behavior is in parens:
40  *
41  * map_type     prot
42  *              PROT_NONE       PROT_READ       PROT_WRITE      PROT_EXEC
43  * MAP_SHARED   r: (no) no      r: (yes) yes    r: (no) yes     r: (no) yes
44  *              w: (no) no      w: (no) no      w: (yes) yes    w: (no) no
45  *              x: (no) no      x: (no) yes     x: (no) yes     x: (yes) yes
46  *              
47  * MAP_PRIVATE  r: (no) no      r: (yes) yes    r: (no) yes     r: (no) yes
48  *              w: (no) no      w: (no) no      w: (copy) copy  w: (no) no
49  *              x: (no) no      x: (no) yes     x: (no) yes     x: (yes) yes
50  *
51  */
52 pgprot_t protection_map[16] = {
53         __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
54         __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
55 };
56
57 int sysctl_overcommit_memory = 0;       /* default is heuristic overcommit */
58 int sysctl_overcommit_ratio = 50;       /* default is 50% */
59 int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
60 atomic_t vm_committed_space = ATOMIC_INIT(0);
61
62 EXPORT_SYMBOL(sysctl_overcommit_memory);
63 EXPORT_SYMBOL(sysctl_overcommit_ratio);
64 EXPORT_SYMBOL(sysctl_max_map_count);
65 EXPORT_SYMBOL(vm_committed_space);
66
67 /*
68  * Requires inode->i_mapping->i_mmap_lock
69  */
70 static void __remove_shared_vm_struct(struct vm_area_struct *vma,
71                 struct file *file, struct address_space *mapping)
72 {
73         if (vma->vm_flags & VM_DENYWRITE)
74                 atomic_inc(&file->f_dentry->d_inode->i_writecount);
75         if (vma->vm_flags & VM_SHARED)
76                 mapping->i_mmap_writable--;
77
78         flush_dcache_mmap_lock(mapping);
79         if (unlikely(vma->vm_flags & VM_NONLINEAR))
80                 list_del_init(&vma->shared.vm_set.list);
81         else
82                 vma_prio_tree_remove(vma, &mapping->i_mmap);
83         flush_dcache_mmap_unlock(mapping);
84 }
85
86 /*
87  * Remove one vm structure and free it.
88  */
89 static void remove_vm_struct(struct vm_area_struct *vma)
90 {
91         struct file *file = vma->vm_file;
92
93         if (file) {
94                 struct address_space *mapping = file->f_mapping;
95                 spin_lock(&mapping->i_mmap_lock);
96                 __remove_shared_vm_struct(vma, file, mapping);
97                 spin_unlock(&mapping->i_mmap_lock);
98         }
99         if (vma->vm_ops && vma->vm_ops->close)
100                 vma->vm_ops->close(vma);
101         if (file)
102                 fput(file);
103         anon_vma_unlink(vma);
104         mpol_free(vma_policy(vma));
105         kmem_cache_free(vm_area_cachep, vma);
106 }
107
108 /*
109  *  sys_brk() for the most part doesn't need the global kernel
110  *  lock, except when an application is doing something nasty
111  *  like trying to un-brk an area that has already been mapped
112  *  to a regular file.  in this case, the unmapping will need
113  *  to invoke file system routines that need the global lock.
114  */
115 asmlinkage unsigned long sys_brk(unsigned long brk)
116 {
117         unsigned long rlim, retval;
118         unsigned long newbrk, oldbrk;
119         struct mm_struct *mm = current->mm;
120
121         down_write(&mm->mmap_sem);
122
123         if (brk < mm->end_code)
124                 goto out;
125         newbrk = PAGE_ALIGN(brk);
126         oldbrk = PAGE_ALIGN(mm->brk);
127         if (oldbrk == newbrk)
128                 goto set_brk;
129
130         /* Always allow shrinking brk. */
131         if (brk <= mm->brk) {
132                 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
133                         goto set_brk;
134                 goto out;
135         }
136
137         /* Check against rlimit.. */
138         rlim = current->rlim[RLIMIT_DATA].rlim_cur;
139         if (rlim < RLIM_INFINITY && brk - mm->start_data > rlim)
140                 goto out;
141
142         /* Check against existing mmap mappings. */
143         if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
144                 goto out;
145
146         /* Ok, looks good - let it rip. */
147         if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
148                 goto out;
149 set_brk:
150         mm->brk = brk;
151 out:
152         retval = mm->brk;
153         up_write(&mm->mmap_sem);
154         return retval;
155 }
156
157 #ifdef DEBUG_MM_RB
158 static int browse_rb(struct rb_root *root)
159 {
160         int i = 0, j;
161         struct rb_node *nd, *pn = NULL;
162         unsigned long prev = 0, pend = 0;
163
164         for (nd = rb_first(root); nd; nd = rb_next(nd)) {
165                 struct vm_area_struct *vma;
166                 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
167                 if (vma->vm_start < prev)
168                         printk("vm_start %lx prev %lx\n", vma->vm_start, prev), i = -1;
169                 if (vma->vm_start < pend)
170                         printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
171                 if (vma->vm_start > vma->vm_end)
172                         printk("vm_end %lx < vm_start %lx\n", vma->vm_end, vma->vm_start);
173                 i++;
174                 pn = nd;
175         }
176         j = 0;
177         for (nd = pn; nd; nd = rb_prev(nd)) {
178                 j++;
179         }
180         if (i != j)
181                 printk("backwards %d, forwards %d\n", j, i), i = 0;
182         return i;
183 }
184
185 void validate_mm(struct mm_struct *mm)
186 {
187         int bug = 0;
188         int i = 0;
189         struct vm_area_struct *tmp = mm->mmap;
190         while (tmp) {
191                 tmp = tmp->vm_next;
192                 i++;
193         }
194         if (i != mm->map_count)
195                 printk("map_count %d vm_next %d\n", mm->map_count, i), bug = 1;
196         i = browse_rb(&mm->mm_rb);
197         if (i != mm->map_count)
198                 printk("map_count %d rb %d\n", mm->map_count, i), bug = 1;
199         if (bug)
200                 BUG();
201 }
202 #else
203 #define validate_mm(mm) do { } while (0)
204 #endif
205
206 static struct vm_area_struct *
207 find_vma_prepare(struct mm_struct *mm, unsigned long addr,
208                 struct vm_area_struct **pprev, struct rb_node ***rb_link,
209                 struct rb_node ** rb_parent)
210 {
211         struct vm_area_struct * vma;
212         struct rb_node ** __rb_link, * __rb_parent, * rb_prev;
213
214         __rb_link = &mm->mm_rb.rb_node;
215         rb_prev = __rb_parent = NULL;
216         vma = NULL;
217
218         while (*__rb_link) {
219                 struct vm_area_struct *vma_tmp;
220
221                 __rb_parent = *__rb_link;
222                 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
223
224                 if (vma_tmp->vm_end > addr) {
225                         vma = vma_tmp;
226                         if (vma_tmp->vm_start <= addr)
227                                 return vma;
228                         __rb_link = &__rb_parent->rb_left;
229                 } else {
230                         rb_prev = __rb_parent;
231                         __rb_link = &__rb_parent->rb_right;
232                 }
233         }
234
235         *pprev = NULL;
236         if (rb_prev)
237                 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
238         *rb_link = __rb_link;
239         *rb_parent = __rb_parent;
240         return vma;
241 }
242
243 static inline void
244 __vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
245                 struct vm_area_struct *prev, struct rb_node *rb_parent)
246 {
247         if (prev) {
248                 vma->vm_next = prev->vm_next;
249                 prev->vm_next = vma;
250         } else {
251                 mm->mmap = vma;
252                 if (rb_parent)
253                         vma->vm_next = rb_entry(rb_parent,
254                                         struct vm_area_struct, vm_rb);
255                 else
256                         vma->vm_next = NULL;
257         }
258 }
259
260 void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
261                 struct rb_node **rb_link, struct rb_node *rb_parent)
262 {
263         rb_link_node(&vma->vm_rb, rb_parent, rb_link);
264         rb_insert_color(&vma->vm_rb, &mm->mm_rb);
265 }
266
267 static inline void __vma_link_file(struct vm_area_struct *vma)
268 {
269         struct file * file;
270
271         file = vma->vm_file;
272         if (file) {
273                 struct address_space *mapping = file->f_mapping;
274
275                 if (vma->vm_flags & VM_DENYWRITE)
276                         atomic_dec(&file->f_dentry->d_inode->i_writecount);
277                 if (vma->vm_flags & VM_SHARED)
278                         mapping->i_mmap_writable++;
279
280                 flush_dcache_mmap_lock(mapping);
281                 if (unlikely(vma->vm_flags & VM_NONLINEAR))
282                         list_add_tail(&vma->shared.vm_set.list,
283                                         &mapping->i_mmap_nonlinear);
284                 else
285                         vma_prio_tree_insert(vma, &mapping->i_mmap);
286                 flush_dcache_mmap_unlock(mapping);
287         }
288 }
289
290 static void
291 __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
292         struct vm_area_struct *prev, struct rb_node **rb_link,
293         struct rb_node *rb_parent)
294 {
295         __vma_link_list(mm, vma, prev, rb_parent);
296         __vma_link_rb(mm, vma, rb_link, rb_parent);
297         __anon_vma_link(vma);
298 }
299
300 static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
301                         struct vm_area_struct *prev, struct rb_node **rb_link,
302                         struct rb_node *rb_parent)
303 {
304         struct address_space *mapping = NULL;
305
306         if (vma->vm_file)
307                 mapping = vma->vm_file->f_mapping;
308
309         if (mapping)
310                 spin_lock(&mapping->i_mmap_lock);
311         anon_vma_lock(vma);
312
313         __vma_link(mm, vma, prev, rb_link, rb_parent);
314         __vma_link_file(vma);
315
316         anon_vma_unlock(vma);
317         if (mapping)
318                 spin_unlock(&mapping->i_mmap_lock);
319
320         mm->map_count++;
321         validate_mm(mm);
322 }
323
324 /*
325  * Helper for vma_adjust in the split_vma insert case:
326  * insert vm structure into list and rbtree and anon_vma,
327  * but it has already been inserted into prio_tree earlier.
328  */
329 static void
330 __insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
331 {
332         struct vm_area_struct * __vma, * prev;
333         struct rb_node ** rb_link, * rb_parent;
334
335         __vma = find_vma_prepare(mm, vma->vm_start,&prev, &rb_link, &rb_parent);
336         if (__vma && __vma->vm_start < vma->vm_end)
337                 BUG();
338         __vma_link(mm, vma, prev, rb_link, rb_parent);
339         mm->map_count++;
340 }
341
342 static inline void
343 __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
344                 struct vm_area_struct *prev)
345 {
346         prev->vm_next = vma->vm_next;
347         rb_erase(&vma->vm_rb, &mm->mm_rb);
348         if (mm->mmap_cache == vma)
349                 mm->mmap_cache = prev;
350 }
351
352 /*
353  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
354  * is already present in an i_mmap tree without adjusting the tree.
355  * The following helper function should be used when such adjustments
356  * are necessary.  The "insert" vma (if any) is to be inserted
357  * before we drop the necessary locks.
358  */
359 void vma_adjust(struct vm_area_struct *vma, unsigned long start,
360         unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
361 {
362         struct mm_struct *mm = vma->vm_mm;
363         struct vm_area_struct *next = vma->vm_next;
364         struct vm_area_struct *importer = NULL;
365         struct address_space *mapping = NULL;
366         struct prio_tree_root *root = NULL;
367         struct file *file = vma->vm_file;
368         struct anon_vma *anon_vma = NULL;
369         long adjust_next = 0;
370         int remove_next = 0;
371
372         if (next && !insert) {
373                 if (end >= next->vm_end) {
374                         /*
375                          * vma expands, overlapping all the next, and
376                          * perhaps the one after too (mprotect case 6).
377                          */
378 again:                  remove_next = 1 + (end > next->vm_end);
379                         end = next->vm_end;
380                         anon_vma = next->anon_vma;
381                 } else if (end > next->vm_start) {
382                         /*
383                          * vma expands, overlapping part of the next:
384                          * mprotect case 5 shifting the boundary up.
385                          */
386                         adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
387                         anon_vma = next->anon_vma;
388                         importer = vma;
389                 } else if (end < vma->vm_end) {
390                         /*
391                          * vma shrinks, and !insert tells it's not
392                          * split_vma inserting another: so it must be
393                          * mprotect case 4 shifting the boundary down.
394                          */
395                         adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
396                         anon_vma = next->anon_vma;
397                         importer = next;
398                 }
399         }
400
401         if (file) {
402                 mapping = file->f_mapping;
403                 if (!(vma->vm_flags & VM_NONLINEAR))
404                         root = &mapping->i_mmap;
405                 spin_lock(&mapping->i_mmap_lock);
406                 if (insert) {
407                         /*
408                          * Put into prio_tree now, so instantiated pages
409                          * are visible to arm/parisc __flush_dcache_page
410                          * throughout; but we cannot insert into address
411                          * space until vma start or end is updated.
412                          */
413                         __vma_link_file(insert);
414                 }
415         }
416
417         /*
418          * When changing only vma->vm_end, we don't really need
419          * anon_vma lock: but is that case worth optimizing out?
420          */
421         if (vma->anon_vma)
422                 anon_vma = vma->anon_vma;
423         if (anon_vma) {
424                 spin_lock(&anon_vma->lock);
425                 /*
426                  * Easily overlooked: when mprotect shifts the boundary,
427                  * make sure the expanding vma has anon_vma set if the
428                  * shrinking vma had, to cover any anon pages imported.
429                  */
430                 if (importer && !importer->anon_vma) {
431                         importer->anon_vma = anon_vma;
432                         __anon_vma_link(importer);
433                 }
434         }
435
436         if (root) {
437                 flush_dcache_mmap_lock(mapping);
438                 vma_prio_tree_remove(vma, root);
439                 if (adjust_next)
440                         vma_prio_tree_remove(next, root);
441         }
442
443         vma->vm_start = start;
444         vma->vm_end = end;
445         vma->vm_pgoff = pgoff;
446         if (adjust_next) {
447                 next->vm_start += adjust_next << PAGE_SHIFT;
448                 next->vm_pgoff += adjust_next;
449         }
450
451         if (root) {
452                 if (adjust_next) {
453                         vma_prio_tree_init(next);
454                         vma_prio_tree_insert(next, root);
455                 }
456                 vma_prio_tree_init(vma);
457                 vma_prio_tree_insert(vma, root);
458                 flush_dcache_mmap_unlock(mapping);
459         }
460
461         if (remove_next) {
462                 /*
463                  * vma_merge has merged next into vma, and needs
464                  * us to remove next before dropping the locks.
465                  */
466                 __vma_unlink(mm, next, vma);
467                 if (file)
468                         __remove_shared_vm_struct(next, file, mapping);
469                 if (next->anon_vma)
470                         __anon_vma_merge(vma, next);
471         } else if (insert) {
472                 /*
473                  * split_vma has split insert from vma, and needs
474                  * us to insert it before dropping the locks
475                  * (it may either follow vma or precede it).
476                  */
477                 __insert_vm_struct(mm, insert);
478         }
479
480         if (anon_vma)
481                 spin_unlock(&anon_vma->lock);
482         if (mapping)
483                 spin_unlock(&mapping->i_mmap_lock);
484
485         if (remove_next) {
486                 if (file)
487                         fput(file);
488                 mm->map_count--;
489                 mpol_free(vma_policy(next));
490                 kmem_cache_free(vm_area_cachep, next);
491                 /*
492                  * In mprotect's case 6 (see comments on vma_merge),
493                  * we must remove another next too. It would clutter
494                  * up the code too much to do both in one go.
495                  */
496                 if (remove_next == 2) {
497                         next = vma->vm_next;
498                         goto again;
499                 }
500         }
501
502         validate_mm(mm);
503 }
504
505 /*
506  * If the vma has a ->close operation then the driver probably needs to release
507  * per-vma resources, so we don't attempt to merge those.
508  */
509 #define VM_SPECIAL (VM_IO | VM_DONTCOPY | VM_DONTEXPAND | VM_RESERVED)
510
511 static inline int is_mergeable_vma(struct vm_area_struct *vma,
512                         struct file *file, unsigned long vm_flags)
513 {
514         if (vma->vm_flags != vm_flags)
515                 return 0;
516         if (vma->vm_file != file)
517                 return 0;
518         if (vma->vm_ops && vma->vm_ops->close)
519                 return 0;
520         return 1;
521 }
522
523 static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
524                                         struct anon_vma *anon_vma2)
525 {
526         return !anon_vma1 || !anon_vma2 || (anon_vma1 == anon_vma2);
527 }
528
529 /*
530  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
531  * in front of (at a lower virtual address and file offset than) the vma.
532  *
533  * We cannot merge two vmas if they have differently assigned (non-NULL)
534  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
535  *
536  * We don't check here for the merged mmap wrapping around the end of pagecache
537  * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
538  * wrap, nor mmaps which cover the final page at index -1UL.
539  */
540 static int
541 can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
542         struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
543 {
544         if (is_mergeable_vma(vma, file, vm_flags) &&
545             is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
546                 if (vma->vm_pgoff == vm_pgoff)
547                         return 1;
548         }
549         return 0;
550 }
551
552 /*
553  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
554  * beyond (at a higher virtual address and file offset than) the vma.
555  *
556  * We cannot merge two vmas if they have differently assigned (non-NULL)
557  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
558  */
559 static int
560 can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
561         struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
562 {
563         if (is_mergeable_vma(vma, file, vm_flags) &&
564             is_mergeable_anon_vma(anon_vma, vma->anon_vma)) {
565                 pgoff_t vm_pglen;
566                 vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
567                 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
568                         return 1;
569         }
570         return 0;
571 }
572
573 /*
574  * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
575  * whether that can be merged with its predecessor or its successor.
576  * Or both (it neatly fills a hole).
577  *
578  * In most cases - when called for mmap, brk or mremap - [addr,end) is
579  * certain not to be mapped by the time vma_merge is called; but when
580  * called for mprotect, it is certain to be already mapped (either at
581  * an offset within prev, or at the start of next), and the flags of
582  * this area are about to be changed to vm_flags - and the no-change
583  * case has already been eliminated.
584  *
585  * The following mprotect cases have to be considered, where AAAA is
586  * the area passed down from mprotect_fixup, never extending beyond one
587  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
588  *
589  *     AAAA             AAAA                AAAA          AAAA
590  *    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPNNNNXXXX
591  *    cannot merge    might become    might become    might become
592  *                    PPNNNNNNNNNN    PPPPPPPPPPNN    PPPPPPPPPPPP 6 or
593  *    mmap, brk or    case 4 below    case 5 below    PPPPPPPPXXXX 7 or
594  *    mremap move:                                    PPPPNNNNNNNN 8
595  *        AAAA
596  *    PPPP    NNNN    PPPPPPPPPPPP    PPPPPPPPNNNN    PPPPNNNNNNNN
597  *    might become    case 1 below    case 2 below    case 3 below
598  *
599  * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
600  * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
601  */
602 struct vm_area_struct *vma_merge(struct mm_struct *mm,
603                         struct vm_area_struct *prev, unsigned long addr,
604                         unsigned long end, unsigned long vm_flags,
605                         struct anon_vma *anon_vma, struct file *file,
606                         pgoff_t pgoff, struct mempolicy *policy)
607 {
608         pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
609         struct vm_area_struct *area, *next;
610
611         /*
612          * We later require that vma->vm_flags == vm_flags,
613          * so this tests vma->vm_flags & VM_SPECIAL, too.
614          */
615         if (vm_flags & VM_SPECIAL)
616                 return NULL;
617
618         if (prev)
619                 next = prev->vm_next;
620         else
621                 next = mm->mmap;
622         area = next;
623         if (next && next->vm_end == end)                /* cases 6, 7, 8 */
624                 next = next->vm_next;
625
626         /*
627          * Can it merge with the predecessor?
628          */
629         if (prev && prev->vm_end == addr &&
630                         mpol_equal(vma_policy(prev), policy) &&
631                         can_vma_merge_after(prev, vm_flags,
632                                                 anon_vma, file, pgoff)) {
633                 /*
634                  * OK, it can.  Can we now merge in the successor as well?
635                  */
636                 if (next && end == next->vm_start &&
637                                 mpol_equal(policy, vma_policy(next)) &&
638                                 can_vma_merge_before(next, vm_flags,
639                                         anon_vma, file, pgoff+pglen) &&
640                                 is_mergeable_anon_vma(prev->anon_vma,
641                                                       next->anon_vma)) {
642                                                         /* cases 1, 6 */
643                         vma_adjust(prev, prev->vm_start,
644                                 next->vm_end, prev->vm_pgoff, NULL);
645                 } else                                  /* cases 2, 5, 7 */
646                         vma_adjust(prev, prev->vm_start,
647                                 end, prev->vm_pgoff, NULL);
648                 return prev;
649         }
650
651         /*
652          * Can this new request be merged in front of next?
653          */
654         if (next && end == next->vm_start &&
655                         mpol_equal(policy, vma_policy(next)) &&
656                         can_vma_merge_before(next, vm_flags,
657                                         anon_vma, file, pgoff+pglen)) {
658                 if (prev && addr < prev->vm_end)        /* case 4 */
659                         vma_adjust(prev, prev->vm_start,
660                                 addr, prev->vm_pgoff, NULL);
661                 else                                    /* cases 3, 8 */
662                         vma_adjust(area, addr, next->vm_end,
663                                 next->vm_pgoff - pglen, NULL);
664                 return area;
665         }
666
667         return NULL;
668 }
669
670 /*
671  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
672  * neighbouring vmas for a suitable anon_vma, before it goes off
673  * to allocate a new anon_vma.  It checks because a repetitive
674  * sequence of mprotects and faults may otherwise lead to distinct
675  * anon_vmas being allocated, preventing vma merge in subsequent
676  * mprotect.
677  */
678 struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
679 {
680         struct vm_area_struct *near;
681         unsigned long vm_flags;
682
683         near = vma->vm_next;
684         if (!near)
685                 goto try_prev;
686
687         /*
688          * Since only mprotect tries to remerge vmas, match flags
689          * which might be mprotected into each other later on.
690          * Neither mlock nor madvise tries to remerge at present,
691          * so leave their flags as obstructing a merge.
692          */
693         vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
694         vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
695
696         if (near->anon_vma && vma->vm_end == near->vm_start &&
697                         mpol_equal(vma_policy(vma), vma_policy(near)) &&
698                         can_vma_merge_before(near, vm_flags,
699                                 NULL, vma->vm_file, vma->vm_pgoff +
700                                 ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT)))
701                 return near->anon_vma;
702 try_prev:
703         /*
704          * It is potentially slow to have to call find_vma_prev here.
705          * But it's only on the first write fault on the vma, not
706          * every time, and we could devise a way to avoid it later
707          * (e.g. stash info in next's anon_vma_node when assigning
708          * an anon_vma, or when trying vma_merge).  Another time.
709          */
710         if (find_vma_prev(vma->vm_mm, vma->vm_start, &near) != vma)
711                 BUG();
712         if (!near)
713                 goto none;
714
715         vm_flags = vma->vm_flags & ~(VM_READ|VM_WRITE|VM_EXEC);
716         vm_flags |= near->vm_flags & (VM_READ|VM_WRITE|VM_EXEC);
717
718         if (near->anon_vma && near->vm_end == vma->vm_start &&
719                         mpol_equal(vma_policy(near), vma_policy(vma)) &&
720                         can_vma_merge_after(near, vm_flags,
721                                 NULL, vma->vm_file, vma->vm_pgoff))
722                 return near->anon_vma;
723 none:
724         /*
725          * There's no absolute need to look only at touching neighbours:
726          * we could search further afield for "compatible" anon_vmas.
727          * But it would probably just be a waste of time searching,
728          * or lead to too many vmas hanging off the same anon_vma.
729          * We're trying to allow mprotect remerging later on,
730          * not trying to minimize memory used for anon_vmas.
731          */
732         return NULL;
733 }
734
735 /*
736  * The caller must hold down_write(current->mm->mmap_sem).
737  */
738
739 unsigned long do_mmap_pgoff(struct file * file, unsigned long addr,
740                         unsigned long len, unsigned long prot,
741                         unsigned long flags, unsigned long pgoff)
742 {
743         struct mm_struct * mm = current->mm;
744         struct vm_area_struct * vma, * prev;
745         struct inode *inode;
746         unsigned int vm_flags;
747         int correct_wcount = 0;
748         int error;
749         struct rb_node ** rb_link, * rb_parent;
750         int accountable = 1;
751         unsigned long charged = 0;
752
753         /*
754          * Does the application expect PROT_READ to imply PROT_EXEC:
755          */
756         if (unlikely((prot & PROT_READ) &&
757                         (current->personality & READ_IMPLIES_EXEC)))
758                 prot |= PROT_EXEC;
759
760         if (file) {
761                 if (is_file_hugepages(file))
762                         accountable = 0;
763
764                 if (!file->f_op || !file->f_op->mmap)
765                         return -ENODEV;
766
767                 if ((prot & PROT_EXEC) &&
768                     (file->f_vfsmnt->mnt_flags & MNT_NOEXEC))
769                         return -EPERM;
770         }
771
772         if (!len)
773                 return addr;
774
775         /* Careful about overflows.. */
776         len = PAGE_ALIGN(len);
777         if (!len || len > TASK_SIZE)
778                 return -EINVAL;
779
780         /* offset overflow? */
781         if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
782                 return -EINVAL;
783
784         /* Too many mappings? */
785         if (mm->map_count > sysctl_max_map_count)
786                 return -ENOMEM;
787
788         /* Obtain the address to map to. we verify (or select) it and ensure
789          * that it represents a valid section of the address space.
790          */
791         addr = get_unmapped_area(file, addr, len, pgoff, flags);
792         if (addr & ~PAGE_MASK)
793                 return addr;
794
795         /* Do simple checking here so the lower-level routines won't have
796          * to. we assume access permissions have been handled by the open
797          * of the memory object, so we don't do any here.
798          */
799         vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
800                         mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
801
802         if (flags & MAP_LOCKED) {
803                 if (!capable(CAP_IPC_LOCK))
804                         return -EPERM;
805                 vm_flags |= VM_LOCKED;
806         }
807         /* mlock MCL_FUTURE? */
808         if (vm_flags & VM_LOCKED) {
809                 unsigned long locked = mm->locked_vm << PAGE_SHIFT;
810                 locked += len;
811                 if (locked > current->rlim[RLIMIT_MEMLOCK].rlim_cur)
812                         return -EAGAIN;
813         }
814
815         inode = file ? file->f_dentry->d_inode : NULL;
816
817         if (file) {
818                 switch (flags & MAP_TYPE) {
819                 case MAP_SHARED:
820                         if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
821                                 return -EACCES;
822
823                         /*
824                          * Make sure we don't allow writing to an append-only
825                          * file..
826                          */
827                         if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
828                                 return -EACCES;
829
830                         /*
831                          * Make sure there are no mandatory locks on the file.
832                          */
833                         if (locks_verify_locked(inode))
834                                 return -EAGAIN;
835
836                         vm_flags |= VM_SHARED | VM_MAYSHARE;
837                         if (!(file->f_mode & FMODE_WRITE))
838                                 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
839
840                         /* fall through */
841                 case MAP_PRIVATE:
842                         if (!(file->f_mode & FMODE_READ))
843                                 return -EACCES;
844                         break;
845
846                 default:
847                         return -EINVAL;
848                 }
849         } else {
850                 switch (flags & MAP_TYPE) {
851                 case MAP_SHARED:
852                         vm_flags |= VM_SHARED | VM_MAYSHARE;
853                         break;
854                 case MAP_PRIVATE:
855                         /*
856                          * Set pgoff according to addr for anon_vma.
857                          */
858                         pgoff = addr >> PAGE_SHIFT;
859                         break;
860                 default:
861                         return -EINVAL;
862                 }
863         }
864
865         error = security_file_mmap(file, prot, flags);
866         if (error)
867                 return error;
868                 
869         /* Clear old maps */
870         error = -ENOMEM;
871 munmap_back:
872         vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
873         if (vma && vma->vm_start < addr + len) {
874                 if (do_munmap(mm, addr, len))
875                         return -ENOMEM;
876                 goto munmap_back;
877         }
878
879         /* Check against address space limit. */
880         if ((mm->total_vm << PAGE_SHIFT) + len
881             > current->rlim[RLIMIT_AS].rlim_cur)
882                 return -ENOMEM;
883
884         if (accountable && (!(flags & MAP_NORESERVE) ||
885                         sysctl_overcommit_memory > 1)) {
886                 if (vm_flags & VM_SHARED) {
887                         /* Check memory availability in shmem_file_setup? */
888                         vm_flags |= VM_ACCOUNT;
889                 } else if (vm_flags & VM_WRITE) {
890                         /*
891                          * Private writable mapping: check memory availability
892                          */
893                         charged = len >> PAGE_SHIFT;
894                         if (security_vm_enough_memory(charged))
895                                 return -ENOMEM;
896                         vm_flags |= VM_ACCOUNT;
897                 }
898         }
899
900         /*
901          * Can we just expand an old private anonymous mapping?
902          * The VM_SHARED test is necessary because shmem_zero_setup
903          * will create the file object for a shared anonymous map below.
904          */
905         if (!file && !(vm_flags & VM_SHARED) &&
906             vma_merge(mm, prev, addr, addr + len, vm_flags,
907                                         NULL, NULL, pgoff, NULL))
908                 goto out;
909
910         /*
911          * Determine the object being mapped and call the appropriate
912          * specific mapper. the address has already been validated, but
913          * not unmapped, but the maps are removed from the list.
914          */
915         vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
916         if (!vma) {
917                 error = -ENOMEM;
918                 goto unacct_error;
919         }
920         memset(vma, 0, sizeof(*vma));
921
922         vma->vm_mm = mm;
923         vma->vm_start = addr;
924         vma->vm_end = addr + len;
925         vma->vm_flags = vm_flags;
926         vma->vm_page_prot = protection_map[vm_flags & 0x0f];
927         vma->vm_pgoff = pgoff;
928
929         if (file) {
930                 error = -EINVAL;
931                 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
932                         goto free_vma;
933                 if (vm_flags & VM_DENYWRITE) {
934                         error = deny_write_access(file);
935                         if (error)
936                                 goto free_vma;
937                         correct_wcount = 1;
938                 }
939                 vma->vm_file = file;
940                 get_file(file);
941                 error = file->f_op->mmap(file, vma);
942                 if (error)
943                         goto unmap_and_free_vma;
944         } else if (vm_flags & VM_SHARED) {
945                 error = shmem_zero_setup(vma);
946                 if (error)
947                         goto free_vma;
948         }
949
950         /* We set VM_ACCOUNT in a shared mapping's vm_flags, to inform
951          * shmem_zero_setup (perhaps called through /dev/zero's ->mmap)
952          * that memory reservation must be checked; but that reservation
953          * belongs to shared memory object, not to vma: so now clear it.
954          */
955         if ((vm_flags & (VM_SHARED|VM_ACCOUNT)) == (VM_SHARED|VM_ACCOUNT))
956                 vma->vm_flags &= ~VM_ACCOUNT;
957
958         /* Can addr have changed??
959          *
960          * Answer: Yes, several device drivers can do it in their
961          *         f_op->mmap method. -DaveM
962          */
963         addr = vma->vm_start;
964
965         if (!file || !vma_merge(mm, prev, addr, vma->vm_end,
966                         vma->vm_flags, NULL, file, pgoff, vma_policy(vma))) {
967                 vma_link(mm, vma, prev, rb_link, rb_parent);
968                 if (correct_wcount)
969                         atomic_inc(&inode->i_writecount);
970         } else {
971                 if (file) {
972                         if (correct_wcount)
973                                 atomic_inc(&inode->i_writecount);
974                         fput(file);
975                 }
976                 mpol_free(vma_policy(vma));
977                 kmem_cache_free(vm_area_cachep, vma);
978         }
979 out:    
980         mm->total_vm += len >> PAGE_SHIFT;
981         if (vm_flags & VM_LOCKED) {
982                 mm->locked_vm += len >> PAGE_SHIFT;
983                 make_pages_present(addr, addr + len);
984         }
985         if (flags & MAP_POPULATE) {
986                 up_write(&mm->mmap_sem);
987                 sys_remap_file_pages(addr, len, 0,
988                                         pgoff, flags & MAP_NONBLOCK);
989                 down_write(&mm->mmap_sem);
990         }
991         return addr;
992
993 unmap_and_free_vma:
994         if (correct_wcount)
995                 atomic_inc(&inode->i_writecount);
996         vma->vm_file = NULL;
997         fput(file);
998
999         /* Undo any partial mapping done by a device driver. */
1000         zap_page_range(vma, vma->vm_start, vma->vm_end - vma->vm_start, NULL);
1001 free_vma:
1002         kmem_cache_free(vm_area_cachep, vma);
1003 unacct_error:
1004         if (charged)
1005                 vm_unacct_memory(charged);
1006         return error;
1007 }
1008
1009 EXPORT_SYMBOL(do_mmap_pgoff);
1010
1011 /* Get an address range which is currently unmapped.
1012  * For shmat() with addr=0.
1013  *
1014  * Ugly calling convention alert:
1015  * Return value with the low bits set means error value,
1016  * ie
1017  *      if (ret & ~PAGE_MASK)
1018  *              error = ret;
1019  *
1020  * This function "knows" that -ENOMEM has the bits set.
1021  */
1022 #ifndef HAVE_ARCH_UNMAPPED_AREA
1023 static inline unsigned long
1024 arch_get_unmapped_area(struct file *filp, unsigned long addr,
1025                 unsigned long len, unsigned long pgoff, unsigned long flags)
1026 {
1027         struct mm_struct *mm = current->mm;
1028         struct vm_area_struct *vma;
1029         unsigned long start_addr;
1030
1031         if (len > TASK_SIZE)
1032                 return -ENOMEM;
1033
1034         if (addr) {
1035                 addr = PAGE_ALIGN(addr);
1036                 vma = find_vma(mm, addr);
1037                 if (TASK_SIZE - len >= addr &&
1038                     (!vma || addr + len <= vma->vm_start))
1039                         return addr;
1040         }
1041         start_addr = addr = mm->free_area_cache;
1042
1043 full_search:
1044         for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
1045                 /* At this point:  (!vma || addr < vma->vm_end). */
1046                 if (TASK_SIZE - len < addr) {
1047                         /*
1048                          * Start a new search - just in case we missed
1049                          * some holes.
1050                          */
1051                         if (start_addr != TASK_UNMAPPED_BASE) {
1052                                 start_addr = addr = TASK_UNMAPPED_BASE;
1053                                 goto full_search;
1054                         }
1055                         return -ENOMEM;
1056                 }
1057                 if (!vma || addr + len <= vma->vm_start) {
1058                         /*
1059                          * Remember the place where we stopped the search:
1060                          */
1061                         mm->free_area_cache = addr + len;
1062                         return addr;
1063                 }
1064                 addr = vma->vm_end;
1065         }
1066 }
1067 #else
1068 extern unsigned long
1069 arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
1070                         unsigned long, unsigned long);
1071 #endif  
1072
1073 unsigned long
1074 get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1075                 unsigned long pgoff, unsigned long flags)
1076 {
1077         if (flags & MAP_FIXED) {
1078                 unsigned long ret;
1079
1080                 if (addr > TASK_SIZE - len)
1081                         return -ENOMEM;
1082                 if (addr & ~PAGE_MASK)
1083                         return -EINVAL;
1084                 if (file && is_file_hugepages(file))  {
1085                         /*
1086                          * Check if the given range is hugepage aligned, and
1087                          * can be made suitable for hugepages.
1088                          */
1089                         ret = prepare_hugepage_range(addr, len);
1090                 } else {
1091                         /*
1092                          * Ensure that a normal request is not falling in a
1093                          * reserved hugepage range.  For some archs like IA-64,
1094                          * there is a separate region for hugepages.
1095                          */
1096                         ret = is_hugepage_only_range(addr, len);
1097                 }
1098                 if (ret)
1099                         return -EINVAL;
1100                 return addr;
1101         }
1102
1103         if (file && file->f_op && file->f_op->get_unmapped_area)
1104                 return file->f_op->get_unmapped_area(file, addr, len,
1105                                                 pgoff, flags);
1106
1107         return arch_get_unmapped_area(file, addr, len, pgoff, flags);
1108 }
1109
1110 EXPORT_SYMBOL(get_unmapped_area);
1111
1112 /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
1113 struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr)
1114 {
1115         struct vm_area_struct *vma = NULL;
1116
1117         if (mm) {
1118                 /* Check the cache first. */
1119                 /* (Cache hit rate is typically around 35%.) */
1120                 vma = mm->mmap_cache;
1121                 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1122                         struct rb_node * rb_node;
1123
1124                         rb_node = mm->mm_rb.rb_node;
1125                         vma = NULL;
1126
1127                         while (rb_node) {
1128                                 struct vm_area_struct * vma_tmp;
1129
1130                                 vma_tmp = rb_entry(rb_node,
1131                                                 struct vm_area_struct, vm_rb);
1132
1133                                 if (vma_tmp->vm_end > addr) {
1134                                         vma = vma_tmp;
1135                                         if (vma_tmp->vm_start <= addr)
1136                                                 break;
1137                                         rb_node = rb_node->rb_left;
1138                                 } else
1139                                         rb_node = rb_node->rb_right;
1140                         }
1141                         if (vma)
1142                                 mm->mmap_cache = vma;
1143                 }
1144         }
1145         return vma;
1146 }
1147
1148 EXPORT_SYMBOL(find_vma);
1149
1150 /* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1151 struct vm_area_struct *
1152 find_vma_prev(struct mm_struct *mm, unsigned long addr,
1153                         struct vm_area_struct **pprev)
1154 {
1155         struct vm_area_struct *vma = NULL, *prev = NULL;
1156         struct rb_node * rb_node;
1157         if (!mm)
1158                 goto out;
1159
1160         /* Guard against addr being lower than the first VMA */
1161         vma = mm->mmap;
1162
1163         /* Go through the RB tree quickly. */
1164         rb_node = mm->mm_rb.rb_node;
1165
1166         while (rb_node) {
1167                 struct vm_area_struct *vma_tmp;
1168                 vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1169
1170                 if (addr < vma_tmp->vm_end) {
1171                         rb_node = rb_node->rb_left;
1172                 } else {
1173                         prev = vma_tmp;
1174                         if (!prev->vm_next || (addr < prev->vm_next->vm_end))
1175                                 break;
1176                         rb_node = rb_node->rb_right;
1177                 }
1178         }
1179
1180 out:
1181         *pprev = prev;
1182         return prev ? prev->vm_next : vma;
1183 }
1184
1185 #ifdef CONFIG_STACK_GROWSUP
1186 /*
1187  * vma is the first one with address > vma->vm_end.  Have to extend vma.
1188  */
1189 int expand_stack(struct vm_area_struct * vma, unsigned long address)
1190 {
1191         unsigned long grow;
1192
1193         if (!(vma->vm_flags & VM_GROWSUP))
1194                 return -EFAULT;
1195
1196         /*
1197          * We must make sure the anon_vma is allocated
1198          * so that the anon_vma locking is not a noop.
1199          */
1200         if (unlikely(anon_vma_prepare(vma)))
1201                 return -ENOMEM;
1202         anon_vma_lock(vma);
1203
1204         /*
1205          * vma->vm_start/vm_end cannot change under us because the caller
1206          * is required to hold the mmap_sem in read mode.  We need the
1207          * anon_vma lock to serialize against concurrent expand_stacks.
1208          */
1209         address += 4 + PAGE_SIZE - 1;
1210         address &= PAGE_MASK;
1211         grow = (address - vma->vm_end) >> PAGE_SHIFT;
1212
1213         /* Overcommit.. */
1214         if (security_vm_enough_memory(grow)) {
1215                 anon_vma_unlock(vma);
1216                 return -ENOMEM;
1217         }
1218         
1219         if (address - vma->vm_start > current->rlim[RLIMIT_STACK].rlim_cur ||
1220                         ((vma->vm_mm->total_vm + grow) << PAGE_SHIFT) >
1221                         current->rlim[RLIMIT_AS].rlim_cur) {
1222                 anon_vma_unlock(vma);
1223                 vm_unacct_memory(grow);
1224                 return -ENOMEM;
1225         }
1226         vma->vm_end = address;
1227         vma->vm_mm->total_vm += grow;
1228         if (vma->vm_flags & VM_LOCKED)
1229                 vma->vm_mm->locked_vm += grow;
1230         anon_vma_unlock(vma);
1231         return 0;
1232 }
1233
1234 struct vm_area_struct *
1235 find_extend_vma(struct mm_struct *mm, unsigned long addr)
1236 {
1237         struct vm_area_struct *vma, *prev;
1238
1239         addr &= PAGE_MASK;
1240         vma = find_vma_prev(mm, addr, &prev);
1241         if (vma && (vma->vm_start <= addr))
1242                 return vma;
1243         if (!prev || expand_stack(prev, addr))
1244                 return NULL;
1245         if (prev->vm_flags & VM_LOCKED) {
1246                 make_pages_present(addr, prev->vm_end);
1247         }
1248         return prev;
1249 }
1250 #else
1251 /*
1252  * vma is the first one with address < vma->vm_start.  Have to extend vma.
1253  */
1254 int expand_stack(struct vm_area_struct *vma, unsigned long address)
1255 {
1256         unsigned long grow;
1257
1258         /*
1259          * We must make sure the anon_vma is allocated
1260          * so that the anon_vma locking is not a noop.
1261          */
1262         if (unlikely(anon_vma_prepare(vma)))
1263                 return -ENOMEM;
1264         anon_vma_lock(vma);
1265
1266         /*
1267          * vma->vm_start/vm_end cannot change under us because the caller
1268          * is required to hold the mmap_sem in read mode.  We need the
1269          * anon_vma lock to serialize against concurrent expand_stacks.
1270          */
1271         address &= PAGE_MASK;
1272         grow = (vma->vm_start - address) >> PAGE_SHIFT;
1273
1274         /* Overcommit.. */
1275         if (security_vm_enough_memory(grow)) {
1276                 anon_vma_unlock(vma);
1277                 return -ENOMEM;
1278         }
1279         
1280         if (vma->vm_end - address > current->rlim[RLIMIT_STACK].rlim_cur ||
1281                         ((vma->vm_mm->total_vm + grow) << PAGE_SHIFT) >
1282                         current->rlim[RLIMIT_AS].rlim_cur) {
1283                 anon_vma_unlock(vma);
1284                 vm_unacct_memory(grow);
1285                 return -ENOMEM;
1286         }
1287         vma->vm_start = address;
1288         vma->vm_pgoff -= grow;
1289         vma->vm_mm->total_vm += grow;
1290         if (vma->vm_flags & VM_LOCKED)
1291                 vma->vm_mm->locked_vm += grow;
1292         anon_vma_unlock(vma);
1293         return 0;
1294 }
1295
1296 struct vm_area_struct *
1297 find_extend_vma(struct mm_struct * mm, unsigned long addr)
1298 {
1299         struct vm_area_struct * vma;
1300         unsigned long start;
1301
1302         addr &= PAGE_MASK;
1303         vma = find_vma(mm,addr);
1304         if (!vma)
1305                 return NULL;
1306         if (vma->vm_start <= addr)
1307                 return vma;
1308         if (!(vma->vm_flags & VM_GROWSDOWN))
1309                 return NULL;
1310         start = vma->vm_start;
1311         if (expand_stack(vma, addr))
1312                 return NULL;
1313         if (vma->vm_flags & VM_LOCKED) {
1314                 make_pages_present(addr, start);
1315         }
1316         return vma;
1317 }
1318 #endif
1319
1320 /*
1321  * Try to free as many page directory entries as we can,
1322  * without having to work very hard at actually scanning
1323  * the page tables themselves.
1324  *
1325  * Right now we try to free page tables if we have a nice
1326  * PGDIR-aligned area that got free'd up. We could be more
1327  * granular if we want to, but this is fast and simple,
1328  * and covers the bad cases.
1329  *
1330  * "prev", if it exists, points to a vma before the one
1331  * we just free'd - but there's no telling how much before.
1332  */
1333 static void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *prev,
1334         unsigned long start, unsigned long end)
1335 {
1336         unsigned long first = start & PGDIR_MASK;
1337         unsigned long last = end + PGDIR_SIZE - 1;
1338         unsigned long start_index, end_index;
1339         struct mm_struct *mm = tlb->mm;
1340
1341         if (!prev) {
1342                 prev = mm->mmap;
1343                 if (!prev)
1344                         goto no_mmaps;
1345                 if (prev->vm_end > start) {
1346                         if (last > prev->vm_start)
1347                                 last = prev->vm_start;
1348                         goto no_mmaps;
1349                 }
1350         }
1351         for (;;) {
1352                 struct vm_area_struct *next = prev->vm_next;
1353
1354                 if (next) {
1355                         if (next->vm_start < start) {
1356                                 prev = next;
1357                                 continue;
1358                         }
1359                         if (last > next->vm_start)
1360                                 last = next->vm_start;
1361                 }
1362                 if (prev->vm_end > first)
1363                         first = prev->vm_end + PGDIR_SIZE - 1;
1364                 break;
1365         }
1366 no_mmaps:
1367         if (last < first)       /* for arches with discontiguous pgd indices */
1368                 return;
1369         /*
1370          * If the PGD bits are not consecutive in the virtual address, the
1371          * old method of shifting the VA >> by PGDIR_SHIFT doesn't work.
1372          */
1373         start_index = pgd_index(first);
1374         if (start_index < FIRST_USER_PGD_NR)
1375                 start_index = FIRST_USER_PGD_NR;
1376         end_index = pgd_index(last);
1377         if (end_index > start_index) {
1378                 clear_page_tables(tlb, start_index, end_index - start_index);
1379                 flush_tlb_pgtables(mm, first & PGDIR_MASK, last & PGDIR_MASK);
1380         }
1381 }
1382
1383 /* Normal function to fix up a mapping
1384  * This function is the default for when an area has no specific
1385  * function.  This may be used as part of a more specific routine.
1386  *
1387  * By the time this function is called, the area struct has been
1388  * removed from the process mapping list.
1389  */
1390 static void unmap_vma(struct mm_struct *mm, struct vm_area_struct *area)
1391 {
1392         size_t len = area->vm_end - area->vm_start;
1393
1394         area->vm_mm->total_vm -= len >> PAGE_SHIFT;
1395         if (area->vm_flags & VM_LOCKED)
1396                 area->vm_mm->locked_vm -= len >> PAGE_SHIFT;
1397         /*
1398          * Is this a new hole at the lowest possible address?
1399          */
1400         if (area->vm_start >= TASK_UNMAPPED_BASE &&
1401                                 area->vm_start < area->vm_mm->free_area_cache)
1402               area->vm_mm->free_area_cache = area->vm_start;
1403
1404         remove_vm_struct(area);
1405 }
1406
1407 /*
1408  * Update the VMA and inode share lists.
1409  *
1410  * Ok - we have the memory areas we should free on the 'free' list,
1411  * so release them, and do the vma updates.
1412  */
1413 static void unmap_vma_list(struct mm_struct *mm,
1414         struct vm_area_struct *mpnt)
1415 {
1416         do {
1417                 struct vm_area_struct *next = mpnt->vm_next;
1418                 unmap_vma(mm, mpnt);
1419                 mpnt = next;
1420         } while (mpnt != NULL);
1421         validate_mm(mm);
1422 }
1423
1424 /*
1425  * Get rid of page table information in the indicated region.
1426  *
1427  * Called with the page table lock held.
1428  */
1429 static void unmap_region(struct mm_struct *mm,
1430         struct vm_area_struct *vma,
1431         struct vm_area_struct *prev,
1432         unsigned long start,
1433         unsigned long end)
1434 {
1435         struct mmu_gather *tlb;
1436         unsigned long nr_accounted = 0;
1437
1438         lru_add_drain();
1439         tlb = tlb_gather_mmu(mm, 0);
1440         unmap_vmas(&tlb, mm, vma, start, end, &nr_accounted, NULL);
1441         vm_unacct_memory(nr_accounted);
1442
1443         if (is_hugepage_only_range(start, end - start))
1444                 hugetlb_free_pgtables(tlb, prev, start, end);
1445         else
1446                 free_pgtables(tlb, prev, start, end);
1447         tlb_finish_mmu(tlb, start, end);
1448 }
1449
1450 /*
1451  * Create a list of vma's touched by the unmap, removing them from the mm's
1452  * vma list as we go..
1453  */
1454 static void
1455 detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
1456         struct vm_area_struct *prev, unsigned long end)
1457 {
1458         struct vm_area_struct **insertion_point;
1459         struct vm_area_struct *tail_vma = NULL;
1460
1461         insertion_point = (prev ? &prev->vm_next : &mm->mmap);
1462         do {
1463                 rb_erase(&vma->vm_rb, &mm->mm_rb);
1464                 mm->map_count--;
1465                 tail_vma = vma;
1466                 vma = vma->vm_next;
1467         } while (vma && vma->vm_start < end);
1468         *insertion_point = vma;
1469         tail_vma->vm_next = NULL;
1470         mm->mmap_cache = NULL;          /* Kill the cache. */
1471 }
1472
1473 /*
1474  * Split a vma into two pieces at address 'addr', a new vma is allocated
1475  * either for the first part or the the tail.
1476  */
1477 int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
1478               unsigned long addr, int new_below)
1479 {
1480         struct mempolicy *pol;
1481         struct vm_area_struct *new;
1482
1483         if (mm->map_count >= sysctl_max_map_count)
1484                 return -ENOMEM;
1485
1486         new = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1487         if (!new)
1488                 return -ENOMEM;
1489
1490         /* most fields are the same, copy all, and then fixup */
1491         *new = *vma;
1492         vma_prio_tree_init(new);
1493
1494         if (new_below)
1495                 new->vm_end = addr;
1496         else {
1497                 new->vm_start = addr;
1498                 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
1499         }
1500
1501         pol = mpol_copy(vma_policy(vma));
1502         if (IS_ERR(pol)) {
1503                 kmem_cache_free(vm_area_cachep, new);
1504                 return PTR_ERR(pol);
1505         }
1506         vma_set_policy(new, pol);
1507
1508         if (new->vm_file)
1509                 get_file(new->vm_file);
1510
1511         if (new->vm_ops && new->vm_ops->open)
1512                 new->vm_ops->open(new);
1513
1514         if (new_below)
1515                 vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
1516                         ((addr - new->vm_start) >> PAGE_SHIFT), new);
1517         else
1518                 vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
1519
1520         return 0;
1521 }
1522
1523 /* Munmap is split into 2 main parts -- this part which finds
1524  * what needs doing, and the areas themselves, which do the
1525  * work.  This now handles partial unmappings.
1526  * Jeremy Fitzhardinge <jeremy@goop.org>
1527  */
1528 int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
1529 {
1530         unsigned long end;
1531         struct vm_area_struct *mpnt, *prev, *last;
1532
1533         if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
1534                 return -EINVAL;
1535
1536         if ((len = PAGE_ALIGN(len)) == 0)
1537                 return -EINVAL;
1538
1539         /* Find the first overlapping VMA */
1540         mpnt = find_vma_prev(mm, start, &prev);
1541         if (!mpnt)
1542                 return 0;
1543         /* we have  start < mpnt->vm_end  */
1544
1545         if (is_vm_hugetlb_page(mpnt)) {
1546                 int ret = is_aligned_hugepage_range(start, len);
1547
1548                 if (ret)
1549                         return ret;
1550         }
1551
1552         /* if it doesn't overlap, we have nothing.. */
1553         end = start + len;
1554         if (mpnt->vm_start >= end)
1555                 return 0;
1556
1557         /* Something will probably happen, so notify. */
1558         if (mpnt->vm_file && (mpnt->vm_flags & VM_EXEC))
1559                 profile_exec_unmap(mm);
1560  
1561         /*
1562          * If we need to split any vma, do it now to save pain later.
1563          *
1564          * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
1565          * unmapped vm_area_struct will remain in use: so lower split_vma
1566          * places tmp vma above, and higher split_vma places tmp vma below.
1567          */
1568         if (start > mpnt->vm_start) {
1569                 if (split_vma(mm, mpnt, start, 0))
1570                         return -ENOMEM;
1571                 prev = mpnt;
1572         }
1573
1574         /* Does it split the last one? */
1575         last = find_vma(mm, end);
1576         if (last && end > last->vm_start) {
1577                 if (split_vma(mm, last, end, 1))
1578                         return -ENOMEM;
1579         }
1580         mpnt = prev? prev->vm_next: mm->mmap;
1581
1582         /*
1583          * Remove the vma's, and unmap the actual pages
1584          */
1585         detach_vmas_to_be_unmapped(mm, mpnt, prev, end);
1586         spin_lock(&mm->page_table_lock);
1587         unmap_region(mm, mpnt, prev, start, end);
1588         spin_unlock(&mm->page_table_lock);
1589
1590         /* Fix up all other VM information */
1591         unmap_vma_list(mm, mpnt);
1592
1593         return 0;
1594 }
1595
1596 EXPORT_SYMBOL(do_munmap);
1597
1598 asmlinkage long sys_munmap(unsigned long addr, size_t len)
1599 {
1600         int ret;
1601         struct mm_struct *mm = current->mm;
1602
1603         down_write(&mm->mmap_sem);
1604         ret = do_munmap(mm, addr, len);
1605         up_write(&mm->mmap_sem);
1606         return ret;
1607 }
1608
1609 /*
1610  *  this is really a simplified "do_mmap".  it only handles
1611  *  anonymous maps.  eventually we may be able to do some
1612  *  brk-specific accounting here.
1613  */
1614 unsigned long do_brk(unsigned long addr, unsigned long len)
1615 {
1616         struct mm_struct * mm = current->mm;
1617         struct vm_area_struct * vma, * prev;
1618         unsigned long flags;
1619         struct rb_node ** rb_link, * rb_parent;
1620         pgoff_t pgoff = addr >> PAGE_SHIFT;
1621
1622         len = PAGE_ALIGN(len);
1623         if (!len)
1624                 return addr;
1625
1626         if ((addr + len) > TASK_SIZE || (addr + len) < addr)
1627                 return -EINVAL;
1628
1629         /*
1630          * mlock MCL_FUTURE?
1631          */
1632         if (mm->def_flags & VM_LOCKED) {
1633                 unsigned long locked = mm->locked_vm << PAGE_SHIFT;
1634                 locked += len;
1635                 if (locked > current->rlim[RLIMIT_MEMLOCK].rlim_cur)
1636                         return -EAGAIN;
1637         }
1638
1639         /*
1640          * Clear old maps.  this also does some error checking for us
1641          */
1642  munmap_back:
1643         vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1644         if (vma && vma->vm_start < addr + len) {
1645                 if (do_munmap(mm, addr, len))
1646                         return -ENOMEM;
1647                 goto munmap_back;
1648         }
1649
1650         /* Check against address space limits *after* clearing old maps... */
1651         if ((mm->total_vm << PAGE_SHIFT) + len
1652             > current->rlim[RLIMIT_AS].rlim_cur)
1653                 return -ENOMEM;
1654
1655         if (mm->map_count > sysctl_max_map_count)
1656                 return -ENOMEM;
1657
1658         if (security_vm_enough_memory(len >> PAGE_SHIFT))
1659                 return -ENOMEM;
1660
1661         flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
1662
1663         /* Can we just expand an old private anonymous mapping? */
1664         if (vma_merge(mm, prev, addr, addr + len, flags,
1665                                         NULL, NULL, pgoff, NULL))
1666                 goto out;
1667
1668         /*
1669          * create a vma struct for an anonymous mapping
1670          */
1671         vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1672         if (!vma) {
1673                 vm_unacct_memory(len >> PAGE_SHIFT);
1674                 return -ENOMEM;
1675         }
1676         memset(vma, 0, sizeof(*vma));
1677
1678         vma->vm_mm = mm;
1679         vma->vm_start = addr;
1680         vma->vm_end = addr + len;
1681         vma->vm_pgoff = pgoff;
1682         vma->vm_flags = flags;
1683         vma->vm_page_prot = protection_map[flags & 0x0f];
1684         vma_link(mm, vma, prev, rb_link, rb_parent);
1685 out:
1686         mm->total_vm += len >> PAGE_SHIFT;
1687         if (flags & VM_LOCKED) {
1688                 mm->locked_vm += len >> PAGE_SHIFT;
1689                 make_pages_present(addr, addr + len);
1690         }
1691         return addr;
1692 }
1693
1694 EXPORT_SYMBOL(do_brk);
1695
1696 /* Release all mmaps. */
1697 void exit_mmap(struct mm_struct *mm)
1698 {
1699         struct mmu_gather *tlb;
1700         struct vm_area_struct *vma;
1701         unsigned long nr_accounted = 0;
1702
1703         profile_exit_mmap(mm);
1704  
1705         lru_add_drain();
1706
1707         spin_lock(&mm->page_table_lock);
1708
1709         tlb = tlb_gather_mmu(mm, 1);
1710         flush_cache_mm(mm);
1711         /* Use ~0UL here to ensure all VMAs in the mm are unmapped */
1712         mm->map_count -= unmap_vmas(&tlb, mm, mm->mmap, 0,
1713                                         ~0UL, &nr_accounted, NULL);
1714         vm_unacct_memory(nr_accounted);
1715         BUG_ON(mm->map_count);  /* This is just debugging */
1716         clear_page_tables(tlb, FIRST_USER_PGD_NR, USER_PTRS_PER_PGD);
1717         tlb_finish_mmu(tlb, 0, MM_VM_SIZE(mm));
1718
1719         vma = mm->mmap;
1720         mm->mmap = mm->mmap_cache = NULL;
1721         mm->mm_rb = RB_ROOT;
1722         mm->rss = 0;
1723         mm->total_vm = 0;
1724         mm->locked_vm = 0;
1725
1726         spin_unlock(&mm->page_table_lock);
1727
1728         /*
1729          * Walk the list again, actually closing and freeing it
1730          * without holding any MM locks.
1731          */
1732         while (vma) {
1733                 struct vm_area_struct *next = vma->vm_next;
1734                 remove_vm_struct(vma);
1735                 vma = next;
1736         }
1737 }
1738
1739 /* Insert vm structure into process list sorted by address
1740  * and into the inode's i_mmap tree.  If vm_file is non-NULL
1741  * then i_mmap_lock is taken here.
1742  */
1743 void insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
1744 {
1745         struct vm_area_struct * __vma, * prev;
1746         struct rb_node ** rb_link, * rb_parent;
1747
1748         /*
1749          * The vm_pgoff of a purely anonymous vma should be irrelevant
1750          * until its first write fault, when page's anon_vma and index
1751          * are set.  But now set the vm_pgoff it will almost certainly
1752          * end up with (unless mremap moves it elsewhere before that
1753          * first wfault), so /proc/pid/maps tells a consistent story.
1754          *
1755          * By setting it to reflect the virtual start address of the
1756          * vma, merges and splits can happen in a seamless way, just
1757          * using the existing file pgoff checks and manipulations.
1758          * Similarly in do_mmap_pgoff and in do_brk.
1759          */
1760         if (!vma->vm_file) {
1761                 BUG_ON(vma->anon_vma);
1762                 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
1763         }
1764         __vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
1765         if (__vma && __vma->vm_start < vma->vm_end)
1766                 BUG();
1767         vma_link(mm, vma, prev, rb_link, rb_parent);
1768 }
1769
1770 /*
1771  * Copy the vma structure to a new location in the same mm,
1772  * prior to moving page table entries, to effect an mremap move.
1773  */
1774 struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
1775         unsigned long addr, unsigned long len, pgoff_t pgoff)
1776 {
1777         struct vm_area_struct *vma = *vmap;
1778         unsigned long vma_start = vma->vm_start;
1779         struct mm_struct *mm = vma->vm_mm;
1780         struct vm_area_struct *new_vma, *prev;
1781         struct rb_node **rb_link, *rb_parent;
1782         struct mempolicy *pol;
1783
1784         /*
1785          * If anonymous vma has not yet been faulted, update new pgoff
1786          * to match new location, to increase its chance of merging.
1787          */
1788         if (!vma->vm_file && !vma->anon_vma)
1789                 pgoff = addr >> PAGE_SHIFT;
1790
1791         find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
1792         new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
1793                         vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
1794         if (new_vma) {
1795                 /*
1796                  * Source vma may have been merged into new_vma
1797                  */
1798                 if (vma_start >= new_vma->vm_start &&
1799                     vma_start < new_vma->vm_end)
1800                         *vmap = new_vma;
1801         } else {
1802                 new_vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
1803                 if (new_vma) {
1804                         *new_vma = *vma;
1805                         vma_prio_tree_init(new_vma);
1806                         pol = mpol_copy(vma_policy(vma));
1807                         if (IS_ERR(pol)) {
1808                                 kmem_cache_free(vm_area_cachep, new_vma);
1809                                 return NULL;
1810                         }
1811                         vma_set_policy(new_vma, pol);
1812                         new_vma->vm_start = addr;
1813                         new_vma->vm_end = addr + len;
1814                         new_vma->vm_pgoff = pgoff;
1815                         if (new_vma->vm_file)
1816                                 get_file(new_vma->vm_file);
1817                         if (new_vma->vm_ops && new_vma->vm_ops->open)
1818                                 new_vma->vm_ops->open(new_vma);
1819                         vma_link(mm, new_vma, prev, rb_link, rb_parent);
1820                 }
1821         }
1822         return new_vma;
1823 }