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