GNU Linux-libre 4.9.330-gnu1
[releases.git] / mm / mmap.c
1 /*
2  * mm/mmap.c
3  *
4  * Written by obz.
5  *
6  * Address space accounting code        <alan@lxorguk.ukuu.org.uk>
7  */
8
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
13 #include <linux/backing-dev.h>
14 #include <linux/mm.h>
15 #include <linux/vmacache.h>
16 #include <linux/shm.h>
17 #include <linux/mman.h>
18 #include <linux/pagemap.h>
19 #include <linux/swap.h>
20 #include <linux/syscalls.h>
21 #include <linux/capability.h>
22 #include <linux/init.h>
23 #include <linux/file.h>
24 #include <linux/fs.h>
25 #include <linux/personality.h>
26 #include <linux/security.h>
27 #include <linux/hugetlb.h>
28 #include <linux/shmem_fs.h>
29 #include <linux/profile.h>
30 #include <linux/export.h>
31 #include <linux/mount.h>
32 #include <linux/mempolicy.h>
33 #include <linux/rmap.h>
34 #include <linux/mmu_notifier.h>
35 #include <linux/mmdebug.h>
36 #include <linux/perf_event.h>
37 #include <linux/audit.h>
38 #include <linux/khugepaged.h>
39 #include <linux/uprobes.h>
40 #include <linux/rbtree_augmented.h>
41 #include <linux/notifier.h>
42 #include <linux/memory.h>
43 #include <linux/printk.h>
44 #include <linux/userfaultfd_k.h>
45 #include <linux/moduleparam.h>
46 #include <linux/pkeys.h>
47
48 #include <asm/uaccess.h>
49 #include <asm/cacheflush.h>
50 #include <asm/tlb.h>
51 #include <asm/mmu_context.h>
52
53 #include "internal.h"
54
55 #ifndef arch_mmap_check
56 #define arch_mmap_check(addr, len, flags)       (0)
57 #endif
58
59 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
60 const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN;
61 const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX;
62 int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS;
63 #endif
64 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
65 const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN;
66 const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX;
67 int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS;
68 #endif
69
70 static bool ignore_rlimit_data;
71 core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644);
72
73 static void unmap_region(struct mm_struct *mm,
74                 struct vm_area_struct *vma, struct vm_area_struct *prev,
75                 unsigned long start, unsigned long end);
76
77 /* description of effects of mapping type and prot in current implementation.
78  * this is due to the limited x86 page protection hardware.  The expected
79  * behavior is in parens:
80  *
81  * map_type     prot
82  *              PROT_NONE       PROT_READ       PROT_WRITE      PROT_EXEC
83  * MAP_SHARED   r: (no) no      r: (yes) yes    r: (no) yes     r: (no) yes
84  *              w: (no) no      w: (no) no      w: (yes) yes    w: (no) no
85  *              x: (no) no      x: (no) yes     x: (no) yes     x: (yes) yes
86  *
87  * MAP_PRIVATE  r: (no) no      r: (yes) yes    r: (no) yes     r: (no) yes
88  *              w: (no) no      w: (no) no      w: (copy) copy  w: (no) no
89  *              x: (no) no      x: (no) yes     x: (no) yes     x: (yes) yes
90  */
91 pgprot_t protection_map[16] = {
92         __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
93         __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
94 };
95
96 pgprot_t vm_get_page_prot(unsigned long vm_flags)
97 {
98         return __pgprot(pgprot_val(protection_map[vm_flags &
99                                 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
100                         pgprot_val(arch_vm_get_page_prot(vm_flags)));
101 }
102 EXPORT_SYMBOL(vm_get_page_prot);
103
104 static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
105 {
106         return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
107 }
108
109 /* Update vma->vm_page_prot to reflect vma->vm_flags. */
110 void vma_set_page_prot(struct vm_area_struct *vma)
111 {
112         unsigned long vm_flags = vma->vm_flags;
113         pgprot_t vm_page_prot;
114
115         vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
116         if (vma_wants_writenotify(vma, vm_page_prot)) {
117                 vm_flags &= ~VM_SHARED;
118                 vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
119         }
120         /* remove_protection_ptes reads vma->vm_page_prot without mmap_sem */
121         WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
122 }
123
124 /*
125  * Requires inode->i_mapping->i_mmap_rwsem
126  */
127 static void __remove_shared_vm_struct(struct vm_area_struct *vma,
128                 struct file *file, struct address_space *mapping)
129 {
130         if (vma->vm_flags & VM_DENYWRITE)
131                 atomic_inc(&file_inode(file)->i_writecount);
132         if (vma->vm_flags & VM_SHARED)
133                 mapping_unmap_writable(mapping);
134
135         flush_dcache_mmap_lock(mapping);
136         vma_interval_tree_remove(vma, &mapping->i_mmap);
137         flush_dcache_mmap_unlock(mapping);
138 }
139
140 /*
141  * Unlink a file-based vm structure from its interval tree, to hide
142  * vma from rmap and vmtruncate before freeing its page tables.
143  */
144 void unlink_file_vma(struct vm_area_struct *vma)
145 {
146         struct file *file = vma->vm_file;
147
148         if (file) {
149                 struct address_space *mapping = file->f_mapping;
150                 i_mmap_lock_write(mapping);
151                 __remove_shared_vm_struct(vma, file, mapping);
152                 i_mmap_unlock_write(mapping);
153         }
154 }
155
156 /*
157  * Close a vm structure and free it, returning the next.
158  */
159 static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
160 {
161         struct vm_area_struct *next = vma->vm_next;
162
163         might_sleep();
164         if (vma->vm_ops && vma->vm_ops->close)
165                 vma->vm_ops->close(vma);
166         if (vma->vm_file)
167                 fput(vma->vm_file);
168         mpol_put(vma_policy(vma));
169         kmem_cache_free(vm_area_cachep, vma);
170         return next;
171 }
172
173 static int do_brk(unsigned long addr, unsigned long len);
174
175 SYSCALL_DEFINE1(brk, unsigned long, brk)
176 {
177         unsigned long retval;
178         unsigned long newbrk, oldbrk;
179         struct mm_struct *mm = current->mm;
180         struct vm_area_struct *next;
181         unsigned long min_brk;
182         bool populate;
183
184         if (down_write_killable(&mm->mmap_sem))
185                 return -EINTR;
186
187 #ifdef CONFIG_COMPAT_BRK
188         /*
189          * CONFIG_COMPAT_BRK can still be overridden by setting
190          * randomize_va_space to 2, which will still cause mm->start_brk
191          * to be arbitrarily shifted
192          */
193         if (current->brk_randomized)
194                 min_brk = mm->start_brk;
195         else
196                 min_brk = mm->end_data;
197 #else
198         min_brk = mm->start_brk;
199 #endif
200         if (brk < min_brk)
201                 goto out;
202
203         /*
204          * Check against rlimit here. If this check is done later after the test
205          * of oldbrk with newbrk then it can escape the test and let the data
206          * segment grow beyond its set limit the in case where the limit is
207          * not page aligned -Ram Gupta
208          */
209         if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
210                               mm->end_data, mm->start_data))
211                 goto out;
212
213         newbrk = PAGE_ALIGN(brk);
214         oldbrk = PAGE_ALIGN(mm->brk);
215         if (oldbrk == newbrk)
216                 goto set_brk;
217
218         /* Always allow shrinking brk. */
219         if (brk <= mm->brk) {
220                 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
221                         goto set_brk;
222                 goto out;
223         }
224
225         /* Check against existing mmap mappings. */
226         next = find_vma(mm, oldbrk);
227         if (next && newbrk + PAGE_SIZE > vm_start_gap(next))
228                 goto out;
229
230         /* Ok, looks good - let it rip. */
231         if (do_brk(oldbrk, newbrk-oldbrk) < 0)
232                 goto out;
233
234 set_brk:
235         mm->brk = brk;
236         populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
237         up_write(&mm->mmap_sem);
238         if (populate)
239                 mm_populate(oldbrk, newbrk - oldbrk);
240         return brk;
241
242 out:
243         retval = mm->brk;
244         up_write(&mm->mmap_sem);
245         return retval;
246 }
247
248 static long vma_compute_subtree_gap(struct vm_area_struct *vma)
249 {
250         unsigned long max, prev_end, subtree_gap;
251
252         /*
253          * Note: in the rare case of a VM_GROWSDOWN above a VM_GROWSUP, we
254          * allow two stack_guard_gaps between them here, and when choosing
255          * an unmapped area; whereas when expanding we only require one.
256          * That's a little inconsistent, but keeps the code here simpler.
257          */
258         max = vm_start_gap(vma);
259         if (vma->vm_prev) {
260                 prev_end = vm_end_gap(vma->vm_prev);
261                 if (max > prev_end)
262                         max -= prev_end;
263                 else
264                         max = 0;
265         }
266         if (vma->vm_rb.rb_left) {
267                 subtree_gap = rb_entry(vma->vm_rb.rb_left,
268                                 struct vm_area_struct, vm_rb)->rb_subtree_gap;
269                 if (subtree_gap > max)
270                         max = subtree_gap;
271         }
272         if (vma->vm_rb.rb_right) {
273                 subtree_gap = rb_entry(vma->vm_rb.rb_right,
274                                 struct vm_area_struct, vm_rb)->rb_subtree_gap;
275                 if (subtree_gap > max)
276                         max = subtree_gap;
277         }
278         return max;
279 }
280
281 #ifdef CONFIG_DEBUG_VM_RB
282 static int browse_rb(struct mm_struct *mm)
283 {
284         struct rb_root *root = &mm->mm_rb;
285         int i = 0, j, bug = 0;
286         struct rb_node *nd, *pn = NULL;
287         unsigned long prev = 0, pend = 0;
288
289         for (nd = rb_first(root); nd; nd = rb_next(nd)) {
290                 struct vm_area_struct *vma;
291                 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
292                 if (vma->vm_start < prev) {
293                         pr_emerg("vm_start %lx < prev %lx\n",
294                                   vma->vm_start, prev);
295                         bug = 1;
296                 }
297                 if (vma->vm_start < pend) {
298                         pr_emerg("vm_start %lx < pend %lx\n",
299                                   vma->vm_start, pend);
300                         bug = 1;
301                 }
302                 if (vma->vm_start > vma->vm_end) {
303                         pr_emerg("vm_start %lx > vm_end %lx\n",
304                                   vma->vm_start, vma->vm_end);
305                         bug = 1;
306                 }
307                 spin_lock(&mm->page_table_lock);
308                 if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
309                         pr_emerg("free gap %lx, correct %lx\n",
310                                vma->rb_subtree_gap,
311                                vma_compute_subtree_gap(vma));
312                         bug = 1;
313                 }
314                 spin_unlock(&mm->page_table_lock);
315                 i++;
316                 pn = nd;
317                 prev = vma->vm_start;
318                 pend = vma->vm_end;
319         }
320         j = 0;
321         for (nd = pn; nd; nd = rb_prev(nd))
322                 j++;
323         if (i != j) {
324                 pr_emerg("backwards %d, forwards %d\n", j, i);
325                 bug = 1;
326         }
327         return bug ? -1 : i;
328 }
329
330 static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
331 {
332         struct rb_node *nd;
333
334         for (nd = rb_first(root); nd; nd = rb_next(nd)) {
335                 struct vm_area_struct *vma;
336                 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
337                 VM_BUG_ON_VMA(vma != ignore &&
338                         vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
339                         vma);
340         }
341 }
342
343 static void validate_mm(struct mm_struct *mm)
344 {
345         int bug = 0;
346         int i = 0;
347         unsigned long highest_address = 0;
348         struct vm_area_struct *vma = mm->mmap;
349
350         while (vma) {
351                 struct anon_vma *anon_vma = vma->anon_vma;
352                 struct anon_vma_chain *avc;
353
354                 if (anon_vma) {
355                         anon_vma_lock_read(anon_vma);
356                         list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
357                                 anon_vma_interval_tree_verify(avc);
358                         anon_vma_unlock_read(anon_vma);
359                 }
360
361                 highest_address = vm_end_gap(vma);
362                 vma = vma->vm_next;
363                 i++;
364         }
365         if (i != mm->map_count) {
366                 pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
367                 bug = 1;
368         }
369         if (highest_address != mm->highest_vm_end) {
370                 pr_emerg("mm->highest_vm_end %lx, found %lx\n",
371                           mm->highest_vm_end, highest_address);
372                 bug = 1;
373         }
374         i = browse_rb(mm);
375         if (i != mm->map_count) {
376                 if (i != -1)
377                         pr_emerg("map_count %d rb %d\n", mm->map_count, i);
378                 bug = 1;
379         }
380         VM_BUG_ON_MM(bug, mm);
381 }
382 #else
383 #define validate_mm_rb(root, ignore) do { } while (0)
384 #define validate_mm(mm) do { } while (0)
385 #endif
386
387 RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb,
388                      unsigned long, rb_subtree_gap, vma_compute_subtree_gap)
389
390 /*
391  * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
392  * vma->vm_prev->vm_end values changed, without modifying the vma's position
393  * in the rbtree.
394  */
395 static void vma_gap_update(struct vm_area_struct *vma)
396 {
397         /*
398          * As it turns out, RB_DECLARE_CALLBACKS() already created a callback
399          * function that does exacltly what we want.
400          */
401         vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
402 }
403
404 static inline void vma_rb_insert(struct vm_area_struct *vma,
405                                  struct rb_root *root)
406 {
407         /* All rb_subtree_gap values must be consistent prior to insertion */
408         validate_mm_rb(root, NULL);
409
410         rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
411 }
412
413 static void __vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
414 {
415         /*
416          * Note rb_erase_augmented is a fairly large inline function,
417          * so make sure we instantiate it only once with our desired
418          * augmented rbtree callbacks.
419          */
420         rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
421 }
422
423 static __always_inline void vma_rb_erase_ignore(struct vm_area_struct *vma,
424                                                 struct rb_root *root,
425                                                 struct vm_area_struct *ignore)
426 {
427         /*
428          * All rb_subtree_gap values must be consistent prior to erase,
429          * with the possible exception of the "next" vma being erased if
430          * next->vm_start was reduced.
431          */
432         validate_mm_rb(root, ignore);
433
434         __vma_rb_erase(vma, root);
435 }
436
437 static __always_inline void vma_rb_erase(struct vm_area_struct *vma,
438                                          struct rb_root *root)
439 {
440         /*
441          * All rb_subtree_gap values must be consistent prior to erase,
442          * with the possible exception of the vma being erased.
443          */
444         validate_mm_rb(root, vma);
445
446         __vma_rb_erase(vma, root);
447 }
448
449 /*
450  * vma has some anon_vma assigned, and is already inserted on that
451  * anon_vma's interval trees.
452  *
453  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
454  * vma must be removed from the anon_vma's interval trees using
455  * anon_vma_interval_tree_pre_update_vma().
456  *
457  * After the update, the vma will be reinserted using
458  * anon_vma_interval_tree_post_update_vma().
459  *
460  * The entire update must be protected by exclusive mmap_sem and by
461  * the root anon_vma's mutex.
462  */
463 static inline void
464 anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
465 {
466         struct anon_vma_chain *avc;
467
468         list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
469                 anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
470 }
471
472 static inline void
473 anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
474 {
475         struct anon_vma_chain *avc;
476
477         list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
478                 anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
479 }
480
481 static int find_vma_links(struct mm_struct *mm, unsigned long addr,
482                 unsigned long end, struct vm_area_struct **pprev,
483                 struct rb_node ***rb_link, struct rb_node **rb_parent)
484 {
485         struct rb_node **__rb_link, *__rb_parent, *rb_prev;
486
487         __rb_link = &mm->mm_rb.rb_node;
488         rb_prev = __rb_parent = NULL;
489
490         while (*__rb_link) {
491                 struct vm_area_struct *vma_tmp;
492
493                 __rb_parent = *__rb_link;
494                 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
495
496                 if (vma_tmp->vm_end > addr) {
497                         /* Fail if an existing vma overlaps the area */
498                         if (vma_tmp->vm_start < end)
499                                 return -ENOMEM;
500                         __rb_link = &__rb_parent->rb_left;
501                 } else {
502                         rb_prev = __rb_parent;
503                         __rb_link = &__rb_parent->rb_right;
504                 }
505         }
506
507         *pprev = NULL;
508         if (rb_prev)
509                 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
510         *rb_link = __rb_link;
511         *rb_parent = __rb_parent;
512         return 0;
513 }
514
515 static unsigned long count_vma_pages_range(struct mm_struct *mm,
516                 unsigned long addr, unsigned long end)
517 {
518         unsigned long nr_pages = 0;
519         struct vm_area_struct *vma;
520
521         /* Find first overlaping mapping */
522         vma = find_vma_intersection(mm, addr, end);
523         if (!vma)
524                 return 0;
525
526         nr_pages = (min(end, vma->vm_end) -
527                 max(addr, vma->vm_start)) >> PAGE_SHIFT;
528
529         /* Iterate over the rest of the overlaps */
530         for (vma = vma->vm_next; vma; vma = vma->vm_next) {
531                 unsigned long overlap_len;
532
533                 if (vma->vm_start > end)
534                         break;
535
536                 overlap_len = min(end, vma->vm_end) - vma->vm_start;
537                 nr_pages += overlap_len >> PAGE_SHIFT;
538         }
539
540         return nr_pages;
541 }
542
543 void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
544                 struct rb_node **rb_link, struct rb_node *rb_parent)
545 {
546         /* Update tracking information for the gap following the new vma. */
547         if (vma->vm_next)
548                 vma_gap_update(vma->vm_next);
549         else
550                 mm->highest_vm_end = vm_end_gap(vma);
551
552         /*
553          * vma->vm_prev wasn't known when we followed the rbtree to find the
554          * correct insertion point for that vma. As a result, we could not
555          * update the vma vm_rb parents rb_subtree_gap values on the way down.
556          * So, we first insert the vma with a zero rb_subtree_gap value
557          * (to be consistent with what we did on the way down), and then
558          * immediately update the gap to the correct value. Finally we
559          * rebalance the rbtree after all augmented values have been set.
560          */
561         rb_link_node(&vma->vm_rb, rb_parent, rb_link);
562         vma->rb_subtree_gap = 0;
563         vma_gap_update(vma);
564         vma_rb_insert(vma, &mm->mm_rb);
565 }
566
567 static void __vma_link_file(struct vm_area_struct *vma)
568 {
569         struct file *file;
570
571         file = vma->vm_file;
572         if (file) {
573                 struct address_space *mapping = file->f_mapping;
574
575                 if (vma->vm_flags & VM_DENYWRITE)
576                         atomic_dec(&file_inode(file)->i_writecount);
577                 if (vma->vm_flags & VM_SHARED)
578                         atomic_inc(&mapping->i_mmap_writable);
579
580                 flush_dcache_mmap_lock(mapping);
581                 vma_interval_tree_insert(vma, &mapping->i_mmap);
582                 flush_dcache_mmap_unlock(mapping);
583         }
584 }
585
586 static void
587 __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
588         struct vm_area_struct *prev, struct rb_node **rb_link,
589         struct rb_node *rb_parent)
590 {
591         __vma_link_list(mm, vma, prev, rb_parent);
592         __vma_link_rb(mm, vma, rb_link, rb_parent);
593 }
594
595 static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
596                         struct vm_area_struct *prev, struct rb_node **rb_link,
597                         struct rb_node *rb_parent)
598 {
599         struct address_space *mapping = NULL;
600
601         if (vma->vm_file) {
602                 mapping = vma->vm_file->f_mapping;
603                 i_mmap_lock_write(mapping);
604         }
605
606         __vma_link(mm, vma, prev, rb_link, rb_parent);
607         __vma_link_file(vma);
608
609         if (mapping)
610                 i_mmap_unlock_write(mapping);
611
612         mm->map_count++;
613         validate_mm(mm);
614 }
615
616 /*
617  * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
618  * mm's list and rbtree.  It has already been inserted into the interval tree.
619  */
620 static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
621 {
622         struct vm_area_struct *prev;
623         struct rb_node **rb_link, *rb_parent;
624
625         if (find_vma_links(mm, vma->vm_start, vma->vm_end,
626                            &prev, &rb_link, &rb_parent))
627                 BUG();
628         __vma_link(mm, vma, prev, rb_link, rb_parent);
629         mm->map_count++;
630 }
631
632 static __always_inline void __vma_unlink_common(struct mm_struct *mm,
633                                                 struct vm_area_struct *vma,
634                                                 struct vm_area_struct *prev,
635                                                 bool has_prev,
636                                                 struct vm_area_struct *ignore)
637 {
638         struct vm_area_struct *next;
639
640         vma_rb_erase_ignore(vma, &mm->mm_rb, ignore);
641         next = vma->vm_next;
642         if (has_prev)
643                 prev->vm_next = next;
644         else {
645                 prev = vma->vm_prev;
646                 if (prev)
647                         prev->vm_next = next;
648                 else
649                         mm->mmap = next;
650         }
651         if (next)
652                 next->vm_prev = prev;
653
654         /* Kill the cache */
655         vmacache_invalidate(mm);
656 }
657
658 static inline void __vma_unlink_prev(struct mm_struct *mm,
659                                      struct vm_area_struct *vma,
660                                      struct vm_area_struct *prev)
661 {
662         __vma_unlink_common(mm, vma, prev, true, vma);
663 }
664
665 /*
666  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
667  * is already present in an i_mmap tree without adjusting the tree.
668  * The following helper function should be used when such adjustments
669  * are necessary.  The "insert" vma (if any) is to be inserted
670  * before we drop the necessary locks.
671  */
672 int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
673         unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
674         struct vm_area_struct *expand)
675 {
676         struct mm_struct *mm = vma->vm_mm;
677         struct vm_area_struct *next = vma->vm_next, *orig_vma = vma;
678         struct address_space *mapping = NULL;
679         struct rb_root *root = NULL;
680         struct anon_vma *anon_vma = NULL;
681         struct file *file = vma->vm_file;
682         bool start_changed = false, end_changed = false;
683         long adjust_next = 0;
684         int remove_next = 0;
685
686         if (next && !insert) {
687                 struct vm_area_struct *exporter = NULL, *importer = NULL;
688
689                 if (end >= next->vm_end) {
690                         /*
691                          * vma expands, overlapping all the next, and
692                          * perhaps the one after too (mprotect case 6).
693                          * The only other cases that gets here are
694                          * case 1, case 7 and case 8.
695                          */
696                         if (next == expand) {
697                                 /*
698                                  * The only case where we don't expand "vma"
699                                  * and we expand "next" instead is case 8.
700                                  */
701                                 VM_WARN_ON(end != next->vm_end);
702                                 /*
703                                  * remove_next == 3 means we're
704                                  * removing "vma" and that to do so we
705                                  * swapped "vma" and "next".
706                                  */
707                                 remove_next = 3;
708                                 VM_WARN_ON(file != next->vm_file);
709                                 swap(vma, next);
710                         } else {
711                                 VM_WARN_ON(expand != vma);
712                                 /*
713                                  * case 1, 6, 7, remove_next == 2 is case 6,
714                                  * remove_next == 1 is case 1 or 7.
715                                  */
716                                 remove_next = 1 + (end > next->vm_end);
717                                 VM_WARN_ON(remove_next == 2 &&
718                                            end != next->vm_next->vm_end);
719                                 VM_WARN_ON(remove_next == 1 &&
720                                            end != next->vm_end);
721                                 /* trim end to next, for case 6 first pass */
722                                 end = next->vm_end;
723                         }
724
725                         exporter = next;
726                         importer = vma;
727
728                         /*
729                          * If next doesn't have anon_vma, import from vma after
730                          * next, if the vma overlaps with it.
731                          */
732                         if (remove_next == 2 && !next->anon_vma)
733                                 exporter = next->vm_next;
734
735                 } else if (end > next->vm_start) {
736                         /*
737                          * vma expands, overlapping part of the next:
738                          * mprotect case 5 shifting the boundary up.
739                          */
740                         adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
741                         exporter = next;
742                         importer = vma;
743                         VM_WARN_ON(expand != importer);
744                 } else if (end < vma->vm_end) {
745                         /*
746                          * vma shrinks, and !insert tells it's not
747                          * split_vma inserting another: so it must be
748                          * mprotect case 4 shifting the boundary down.
749                          */
750                         adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT);
751                         exporter = vma;
752                         importer = next;
753                         VM_WARN_ON(expand != importer);
754                 }
755
756                 /*
757                  * Easily overlooked: when mprotect shifts the boundary,
758                  * make sure the expanding vma has anon_vma set if the
759                  * shrinking vma had, to cover any anon pages imported.
760                  */
761                 if (exporter && exporter->anon_vma && !importer->anon_vma) {
762                         int error;
763
764                         importer->anon_vma = exporter->anon_vma;
765                         error = anon_vma_clone(importer, exporter);
766                         if (error)
767                                 return error;
768                 }
769         }
770 again:
771         vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
772
773         if (file) {
774                 mapping = file->f_mapping;
775                 root = &mapping->i_mmap;
776                 uprobe_munmap(vma, vma->vm_start, vma->vm_end);
777
778                 if (adjust_next)
779                         uprobe_munmap(next, next->vm_start, next->vm_end);
780
781                 i_mmap_lock_write(mapping);
782                 if (insert) {
783                         /*
784                          * Put into interval tree now, so instantiated pages
785                          * are visible to arm/parisc __flush_dcache_page
786                          * throughout; but we cannot insert into address
787                          * space until vma start or end is updated.
788                          */
789                         __vma_link_file(insert);
790                 }
791         }
792
793         anon_vma = vma->anon_vma;
794         if (!anon_vma && adjust_next)
795                 anon_vma = next->anon_vma;
796         if (anon_vma) {
797                 VM_WARN_ON(adjust_next && next->anon_vma &&
798                            anon_vma != next->anon_vma);
799                 anon_vma_lock_write(anon_vma);
800                 anon_vma_interval_tree_pre_update_vma(vma);
801                 if (adjust_next)
802                         anon_vma_interval_tree_pre_update_vma(next);
803         }
804
805         if (root) {
806                 flush_dcache_mmap_lock(mapping);
807                 vma_interval_tree_remove(vma, root);
808                 if (adjust_next)
809                         vma_interval_tree_remove(next, root);
810         }
811
812         if (start != vma->vm_start) {
813                 vma->vm_start = start;
814                 start_changed = true;
815         }
816         if (end != vma->vm_end) {
817                 vma->vm_end = end;
818                 end_changed = true;
819         }
820         vma->vm_pgoff = pgoff;
821         if (adjust_next) {
822                 next->vm_start += adjust_next << PAGE_SHIFT;
823                 next->vm_pgoff += adjust_next;
824         }
825
826         if (root) {
827                 if (adjust_next)
828                         vma_interval_tree_insert(next, root);
829                 vma_interval_tree_insert(vma, root);
830                 flush_dcache_mmap_unlock(mapping);
831         }
832
833         if (remove_next) {
834                 /*
835                  * vma_merge has merged next into vma, and needs
836                  * us to remove next before dropping the locks.
837                  */
838                 if (remove_next != 3)
839                         __vma_unlink_prev(mm, next, vma);
840                 else
841                         /*
842                          * vma is not before next if they've been
843                          * swapped.
844                          *
845                          * pre-swap() next->vm_start was reduced so
846                          * tell validate_mm_rb to ignore pre-swap()
847                          * "next" (which is stored in post-swap()
848                          * "vma").
849                          */
850                         __vma_unlink_common(mm, next, NULL, false, vma);
851                 if (file)
852                         __remove_shared_vm_struct(next, file, mapping);
853         } else if (insert) {
854                 /*
855                  * split_vma has split insert from vma, and needs
856                  * us to insert it before dropping the locks
857                  * (it may either follow vma or precede it).
858                  */
859                 __insert_vm_struct(mm, insert);
860         } else {
861                 if (start_changed)
862                         vma_gap_update(vma);
863                 if (end_changed) {
864                         if (!next)
865                                 mm->highest_vm_end = vm_end_gap(vma);
866                         else if (!adjust_next)
867                                 vma_gap_update(next);
868                 }
869         }
870
871         if (anon_vma) {
872                 anon_vma_interval_tree_post_update_vma(vma);
873                 if (adjust_next)
874                         anon_vma_interval_tree_post_update_vma(next);
875                 anon_vma_unlock_write(anon_vma);
876         }
877         if (mapping)
878                 i_mmap_unlock_write(mapping);
879
880         if (root) {
881                 uprobe_mmap(vma);
882
883                 if (adjust_next)
884                         uprobe_mmap(next);
885         }
886
887         if (remove_next) {
888                 if (file) {
889                         uprobe_munmap(next, next->vm_start, next->vm_end);
890                         fput(file);
891                 }
892                 if (next->anon_vma)
893                         anon_vma_merge(vma, next);
894                 mm->map_count--;
895                 mpol_put(vma_policy(next));
896                 kmem_cache_free(vm_area_cachep, next);
897                 /*
898                  * In mprotect's case 6 (see comments on vma_merge),
899                  * we must remove another next too. It would clutter
900                  * up the code too much to do both in one go.
901                  */
902                 if (remove_next != 3) {
903                         /*
904                          * If "next" was removed and vma->vm_end was
905                          * expanded (up) over it, in turn
906                          * "next->vm_prev->vm_end" changed and the
907                          * "vma->vm_next" gap must be updated.
908                          */
909                         next = vma->vm_next;
910                 } else {
911                         /*
912                          * For the scope of the comment "next" and
913                          * "vma" considered pre-swap(): if "vma" was
914                          * removed, next->vm_start was expanded (down)
915                          * over it and the "next" gap must be updated.
916                          * Because of the swap() the post-swap() "vma"
917                          * actually points to pre-swap() "next"
918                          * (post-swap() "next" as opposed is now a
919                          * dangling pointer).
920                          */
921                         next = vma;
922                 }
923                 if (remove_next == 2) {
924                         remove_next = 1;
925                         end = next->vm_end;
926                         goto again;
927                 }
928                 else if (next)
929                         vma_gap_update(next);
930                 else {
931                         /*
932                          * If remove_next == 2 we obviously can't
933                          * reach this path.
934                          *
935                          * If remove_next == 3 we can't reach this
936                          * path because pre-swap() next is always not
937                          * NULL. pre-swap() "next" is not being
938                          * removed and its next->vm_end is not altered
939                          * (and furthermore "end" already matches
940                          * next->vm_end in remove_next == 3).
941                          *
942                          * We reach this only in the remove_next == 1
943                          * case if the "next" vma that was removed was
944                          * the highest vma of the mm. However in such
945                          * case next->vm_end == "end" and the extended
946                          * "vma" has vma->vm_end == next->vm_end so
947                          * mm->highest_vm_end doesn't need any update
948                          * in remove_next == 1 case.
949                          */
950                         VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma));
951                 }
952         }
953         if (insert && file)
954                 uprobe_mmap(insert);
955
956         validate_mm(mm);
957
958         return 0;
959 }
960
961 /*
962  * If the vma has a ->close operation then the driver probably needs to release
963  * per-vma resources, so we don't attempt to merge those.
964  */
965 static inline int is_mergeable_vma(struct vm_area_struct *vma,
966                                 struct file *file, unsigned long vm_flags,
967                                 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
968 {
969         /*
970          * VM_SOFTDIRTY should not prevent from VMA merging, if we
971          * match the flags but dirty bit -- the caller should mark
972          * merged VMA as dirty. If dirty bit won't be excluded from
973          * comparison, we increase pressue on the memory system forcing
974          * the kernel to generate new VMAs when old one could be
975          * extended instead.
976          */
977         if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
978                 return 0;
979         if (vma->vm_file != file)
980                 return 0;
981         if (vma->vm_ops && vma->vm_ops->close)
982                 return 0;
983         if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
984                 return 0;
985         return 1;
986 }
987
988 static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
989                                         struct anon_vma *anon_vma2,
990                                         struct vm_area_struct *vma)
991 {
992         /*
993          * The list_is_singular() test is to avoid merging VMA cloned from
994          * parents. This can improve scalability caused by anon_vma lock.
995          */
996         if ((!anon_vma1 || !anon_vma2) && (!vma ||
997                 list_is_singular(&vma->anon_vma_chain)))
998                 return 1;
999         return anon_vma1 == anon_vma2;
1000 }
1001
1002 /*
1003  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
1004  * in front of (at a lower virtual address and file offset than) the vma.
1005  *
1006  * We cannot merge two vmas if they have differently assigned (non-NULL)
1007  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
1008  *
1009  * We don't check here for the merged mmap wrapping around the end of pagecache
1010  * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
1011  * wrap, nor mmaps which cover the final page at index -1UL.
1012  */
1013 static int
1014 can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
1015                      struct anon_vma *anon_vma, struct file *file,
1016                      pgoff_t vm_pgoff,
1017                      struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
1018 {
1019         if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
1020             is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
1021                 if (vma->vm_pgoff == vm_pgoff)
1022                         return 1;
1023         }
1024         return 0;
1025 }
1026
1027 /*
1028  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
1029  * beyond (at a higher virtual address and file offset than) the vma.
1030  *
1031  * We cannot merge two vmas if they have differently assigned (non-NULL)
1032  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
1033  */
1034 static int
1035 can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
1036                     struct anon_vma *anon_vma, struct file *file,
1037                     pgoff_t vm_pgoff,
1038                     struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
1039 {
1040         if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
1041             is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
1042                 pgoff_t vm_pglen;
1043                 vm_pglen = vma_pages(vma);
1044                 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
1045                         return 1;
1046         }
1047         return 0;
1048 }
1049
1050 /*
1051  * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
1052  * whether that can be merged with its predecessor or its successor.
1053  * Or both (it neatly fills a hole).
1054  *
1055  * In most cases - when called for mmap, brk or mremap - [addr,end) is
1056  * certain not to be mapped by the time vma_merge is called; but when
1057  * called for mprotect, it is certain to be already mapped (either at
1058  * an offset within prev, or at the start of next), and the flags of
1059  * this area are about to be changed to vm_flags - and the no-change
1060  * case has already been eliminated.
1061  *
1062  * The following mprotect cases have to be considered, where AAAA is
1063  * the area passed down from mprotect_fixup, never extending beyond one
1064  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
1065  *
1066  *     AAAA             AAAA                AAAA          AAAA
1067  *    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPNNNNXXXX
1068  *    cannot merge    might become    might become    might become
1069  *                    PPNNNNNNNNNN    PPPPPPPPPPNN    PPPPPPPPPPPP 6 or
1070  *    mmap, brk or    case 4 below    case 5 below    PPPPPPPPXXXX 7 or
1071  *    mremap move:                                    PPPPXXXXXXXX 8
1072  *        AAAA
1073  *    PPPP    NNNN    PPPPPPPPPPPP    PPPPPPPPNNNN    PPPPNNNNNNNN
1074  *    might become    case 1 below    case 2 below    case 3 below
1075  *
1076  * It is important for case 8 that the the vma NNNN overlapping the
1077  * region AAAA is never going to extended over XXXX. Instead XXXX must
1078  * be extended in region AAAA and NNNN must be removed. This way in
1079  * all cases where vma_merge succeeds, the moment vma_adjust drops the
1080  * rmap_locks, the properties of the merged vma will be already
1081  * correct for the whole merged range. Some of those properties like
1082  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
1083  * be correct for the whole merged range immediately after the
1084  * rmap_locks are released. Otherwise if XXXX would be removed and
1085  * NNNN would be extended over the XXXX range, remove_migration_ptes
1086  * or other rmap walkers (if working on addresses beyond the "end"
1087  * parameter) may establish ptes with the wrong permissions of NNNN
1088  * instead of the right permissions of XXXX.
1089  */
1090 struct vm_area_struct *vma_merge(struct mm_struct *mm,
1091                         struct vm_area_struct *prev, unsigned long addr,
1092                         unsigned long end, unsigned long vm_flags,
1093                         struct anon_vma *anon_vma, struct file *file,
1094                         pgoff_t pgoff, struct mempolicy *policy,
1095                         struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
1096 {
1097         pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
1098         struct vm_area_struct *area, *next;
1099         int err;
1100
1101         /*
1102          * We later require that vma->vm_flags == vm_flags,
1103          * so this tests vma->vm_flags & VM_SPECIAL, too.
1104          */
1105         if (vm_flags & VM_SPECIAL)
1106                 return NULL;
1107
1108         if (prev)
1109                 next = prev->vm_next;
1110         else
1111                 next = mm->mmap;
1112         area = next;
1113         if (area && area->vm_end == end)                /* cases 6, 7, 8 */
1114                 next = next->vm_next;
1115
1116         /* verify some invariant that must be enforced by the caller */
1117         VM_WARN_ON(prev && addr <= prev->vm_start);
1118         VM_WARN_ON(area && end > area->vm_end);
1119         VM_WARN_ON(addr >= end);
1120
1121         /*
1122          * Can it merge with the predecessor?
1123          */
1124         if (prev && prev->vm_end == addr &&
1125                         mpol_equal(vma_policy(prev), policy) &&
1126                         can_vma_merge_after(prev, vm_flags,
1127                                             anon_vma, file, pgoff,
1128                                             vm_userfaultfd_ctx)) {
1129                 /*
1130                  * OK, it can.  Can we now merge in the successor as well?
1131                  */
1132                 if (next && end == next->vm_start &&
1133                                 mpol_equal(policy, vma_policy(next)) &&
1134                                 can_vma_merge_before(next, vm_flags,
1135                                                      anon_vma, file,
1136                                                      pgoff+pglen,
1137                                                      vm_userfaultfd_ctx) &&
1138                                 is_mergeable_anon_vma(prev->anon_vma,
1139                                                       next->anon_vma, NULL)) {
1140                                                         /* cases 1, 6 */
1141                         err = __vma_adjust(prev, prev->vm_start,
1142                                          next->vm_end, prev->vm_pgoff, NULL,
1143                                          prev);
1144                 } else                                  /* cases 2, 5, 7 */
1145                         err = __vma_adjust(prev, prev->vm_start,
1146                                          end, prev->vm_pgoff, NULL, prev);
1147                 if (err)
1148                         return NULL;
1149                 khugepaged_enter_vma_merge(prev, vm_flags);
1150                 return prev;
1151         }
1152
1153         /*
1154          * Can this new request be merged in front of next?
1155          */
1156         if (next && end == next->vm_start &&
1157                         mpol_equal(policy, vma_policy(next)) &&
1158                         can_vma_merge_before(next, vm_flags,
1159                                              anon_vma, file, pgoff+pglen,
1160                                              vm_userfaultfd_ctx)) {
1161                 if (prev && addr < prev->vm_end)        /* case 4 */
1162                         err = __vma_adjust(prev, prev->vm_start,
1163                                          addr, prev->vm_pgoff, NULL, next);
1164                 else {                                  /* cases 3, 8 */
1165                         err = __vma_adjust(area, addr, next->vm_end,
1166                                          next->vm_pgoff - pglen, NULL, next);
1167                         /*
1168                          * In case 3 area is already equal to next and
1169                          * this is a noop, but in case 8 "area" has
1170                          * been removed and next was expanded over it.
1171                          */
1172                         area = next;
1173                 }
1174                 if (err)
1175                         return NULL;
1176                 khugepaged_enter_vma_merge(area, vm_flags);
1177                 return area;
1178         }
1179
1180         return NULL;
1181 }
1182
1183 /*
1184  * Rough compatbility check to quickly see if it's even worth looking
1185  * at sharing an anon_vma.
1186  *
1187  * They need to have the same vm_file, and the flags can only differ
1188  * in things that mprotect may change.
1189  *
1190  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1191  * we can merge the two vma's. For example, we refuse to merge a vma if
1192  * there is a vm_ops->close() function, because that indicates that the
1193  * driver is doing some kind of reference counting. But that doesn't
1194  * really matter for the anon_vma sharing case.
1195  */
1196 static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1197 {
1198         return a->vm_end == b->vm_start &&
1199                 mpol_equal(vma_policy(a), vma_policy(b)) &&
1200                 a->vm_file == b->vm_file &&
1201                 !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) &&
1202                 b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1203 }
1204
1205 /*
1206  * Do some basic sanity checking to see if we can re-use the anon_vma
1207  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1208  * the same as 'old', the other will be the new one that is trying
1209  * to share the anon_vma.
1210  *
1211  * NOTE! This runs with mm_sem held for reading, so it is possible that
1212  * the anon_vma of 'old' is concurrently in the process of being set up
1213  * by another page fault trying to merge _that_. But that's ok: if it
1214  * is being set up, that automatically means that it will be a singleton
1215  * acceptable for merging, so we can do all of this optimistically. But
1216  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1217  *
1218  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1219  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1220  * is to return an anon_vma that is "complex" due to having gone through
1221  * a fork).
1222  *
1223  * We also make sure that the two vma's are compatible (adjacent,
1224  * and with the same memory policies). That's all stable, even with just
1225  * a read lock on the mm_sem.
1226  */
1227 static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1228 {
1229         if (anon_vma_compatible(a, b)) {
1230                 struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1231
1232                 if (anon_vma && list_is_singular(&old->anon_vma_chain))
1233                         return anon_vma;
1234         }
1235         return NULL;
1236 }
1237
1238 /*
1239  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
1240  * neighbouring vmas for a suitable anon_vma, before it goes off
1241  * to allocate a new anon_vma.  It checks because a repetitive
1242  * sequence of mprotects and faults may otherwise lead to distinct
1243  * anon_vmas being allocated, preventing vma merge in subsequent
1244  * mprotect.
1245  */
1246 struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
1247 {
1248         struct anon_vma *anon_vma;
1249         struct vm_area_struct *near;
1250
1251         near = vma->vm_next;
1252         if (!near)
1253                 goto try_prev;
1254
1255         anon_vma = reusable_anon_vma(near, vma, near);
1256         if (anon_vma)
1257                 return anon_vma;
1258 try_prev:
1259         near = vma->vm_prev;
1260         if (!near)
1261                 goto none;
1262
1263         anon_vma = reusable_anon_vma(near, near, vma);
1264         if (anon_vma)
1265                 return anon_vma;
1266 none:
1267         /*
1268          * There's no absolute need to look only at touching neighbours:
1269          * we could search further afield for "compatible" anon_vmas.
1270          * But it would probably just be a waste of time searching,
1271          * or lead to too many vmas hanging off the same anon_vma.
1272          * We're trying to allow mprotect remerging later on,
1273          * not trying to minimize memory used for anon_vmas.
1274          */
1275         return NULL;
1276 }
1277
1278 /*
1279  * If a hint addr is less than mmap_min_addr change hint to be as
1280  * low as possible but still greater than mmap_min_addr
1281  */
1282 static inline unsigned long round_hint_to_min(unsigned long hint)
1283 {
1284         hint &= PAGE_MASK;
1285         if (((void *)hint != NULL) &&
1286             (hint < mmap_min_addr))
1287                 return PAGE_ALIGN(mmap_min_addr);
1288         return hint;
1289 }
1290
1291 static inline int mlock_future_check(struct mm_struct *mm,
1292                                      unsigned long flags,
1293                                      unsigned long len)
1294 {
1295         unsigned long locked, lock_limit;
1296
1297         /*  mlock MCL_FUTURE? */
1298         if (flags & VM_LOCKED) {
1299                 locked = len >> PAGE_SHIFT;
1300                 locked += mm->locked_vm;
1301                 lock_limit = rlimit(RLIMIT_MEMLOCK);
1302                 lock_limit >>= PAGE_SHIFT;
1303                 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1304                         return -EAGAIN;
1305         }
1306         return 0;
1307 }
1308
1309 static inline u64 file_mmap_size_max(struct file *file, struct inode *inode)
1310 {
1311         if (S_ISREG(inode->i_mode))
1312                 return MAX_LFS_FILESIZE;
1313
1314         if (S_ISBLK(inode->i_mode))
1315                 return MAX_LFS_FILESIZE;
1316
1317         /* Special "we do even unsigned file positions" case */
1318         if (file->f_mode & FMODE_UNSIGNED_OFFSET)
1319                 return 0;
1320
1321         /* Yes, random drivers might want more. But I'm tired of buggy drivers */
1322         return ULONG_MAX;
1323 }
1324
1325 static inline bool file_mmap_ok(struct file *file, struct inode *inode,
1326                                 unsigned long pgoff, unsigned long len)
1327 {
1328         u64 maxsize = file_mmap_size_max(file, inode);
1329
1330         if (maxsize && len > maxsize)
1331                 return false;
1332         maxsize -= len;
1333         if (pgoff > maxsize >> PAGE_SHIFT)
1334                 return false;
1335         return true;
1336 }
1337
1338 /*
1339  * The caller must hold down_write(&current->mm->mmap_sem).
1340  */
1341 unsigned long do_mmap(struct file *file, unsigned long addr,
1342                         unsigned long len, unsigned long prot,
1343                         unsigned long flags, vm_flags_t vm_flags,
1344                         unsigned long pgoff, unsigned long *populate)
1345 {
1346         struct mm_struct *mm = current->mm;
1347         int pkey = 0;
1348
1349         *populate = 0;
1350
1351         if (!len)
1352                 return -EINVAL;
1353
1354         /*
1355          * Does the application expect PROT_READ to imply PROT_EXEC?
1356          *
1357          * (the exception is when the underlying filesystem is noexec
1358          *  mounted, in which case we dont add PROT_EXEC.)
1359          */
1360         if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
1361                 if (!(file && path_noexec(&file->f_path)))
1362                         prot |= PROT_EXEC;
1363
1364         if (!(flags & MAP_FIXED))
1365                 addr = round_hint_to_min(addr);
1366
1367         /* Careful about overflows.. */
1368         len = PAGE_ALIGN(len);
1369         if (!len)
1370                 return -ENOMEM;
1371
1372         /* offset overflow? */
1373         if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
1374                 return -EOVERFLOW;
1375
1376         /* Too many mappings? */
1377         if (mm->map_count > sysctl_max_map_count)
1378                 return -ENOMEM;
1379
1380         /* Obtain the address to map to. we verify (or select) it and ensure
1381          * that it represents a valid section of the address space.
1382          */
1383         addr = get_unmapped_area(file, addr, len, pgoff, flags);
1384         if (offset_in_page(addr))
1385                 return addr;
1386
1387         if (prot == PROT_EXEC) {
1388                 pkey = execute_only_pkey(mm);
1389                 if (pkey < 0)
1390                         pkey = 0;
1391         }
1392
1393         /* Do simple checking here so the lower-level routines won't have
1394          * to. we assume access permissions have been handled by the open
1395          * of the memory object, so we don't do any here.
1396          */
1397         vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
1398                         mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1399
1400         if (flags & MAP_LOCKED)
1401                 if (!can_do_mlock())
1402                         return -EPERM;
1403
1404         if (mlock_future_check(mm, vm_flags, len))
1405                 return -EAGAIN;
1406
1407         if (file) {
1408                 struct inode *inode = file_inode(file);
1409
1410                 if (!file_mmap_ok(file, inode, pgoff, len))
1411                         return -EOVERFLOW;
1412
1413                 switch (flags & MAP_TYPE) {
1414                 case MAP_SHARED:
1415                         if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
1416                                 return -EACCES;
1417
1418                         /*
1419                          * Make sure we don't allow writing to an append-only
1420                          * file..
1421                          */
1422                         if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
1423                                 return -EACCES;
1424
1425                         /*
1426                          * Make sure there are no mandatory locks on the file.
1427                          */
1428                         if (locks_verify_locked(file))
1429                                 return -EAGAIN;
1430
1431                         vm_flags |= VM_SHARED | VM_MAYSHARE;
1432                         if (!(file->f_mode & FMODE_WRITE))
1433                                 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1434
1435                         /* fall through */
1436                 case MAP_PRIVATE:
1437                         if (!(file->f_mode & FMODE_READ))
1438                                 return -EACCES;
1439                         if (path_noexec(&file->f_path)) {
1440                                 if (vm_flags & VM_EXEC)
1441                                         return -EPERM;
1442                                 vm_flags &= ~VM_MAYEXEC;
1443                         }
1444
1445                         if (!file->f_op->mmap)
1446                                 return -ENODEV;
1447                         if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1448                                 return -EINVAL;
1449                         break;
1450
1451                 default:
1452                         return -EINVAL;
1453                 }
1454         } else {
1455                 switch (flags & MAP_TYPE) {
1456                 case MAP_SHARED:
1457                         if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1458                                 return -EINVAL;
1459                         /*
1460                          * Ignore pgoff.
1461                          */
1462                         pgoff = 0;
1463                         vm_flags |= VM_SHARED | VM_MAYSHARE;
1464                         break;
1465                 case MAP_PRIVATE:
1466                         /*
1467                          * Set pgoff according to addr for anon_vma.
1468                          */
1469                         pgoff = addr >> PAGE_SHIFT;
1470                         break;
1471                 default:
1472                         return -EINVAL;
1473                 }
1474         }
1475
1476         /*
1477          * Set 'VM_NORESERVE' if we should not account for the
1478          * memory use of this mapping.
1479          */
1480         if (flags & MAP_NORESERVE) {
1481                 /* We honor MAP_NORESERVE if allowed to overcommit */
1482                 if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1483                         vm_flags |= VM_NORESERVE;
1484
1485                 /* hugetlb applies strict overcommit unless MAP_NORESERVE */
1486                 if (file && is_file_hugepages(file))
1487                         vm_flags |= VM_NORESERVE;
1488         }
1489
1490         addr = mmap_region(file, addr, len, vm_flags, pgoff);
1491         if (!IS_ERR_VALUE(addr) &&
1492             ((vm_flags & VM_LOCKED) ||
1493              (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
1494                 *populate = len;
1495         return addr;
1496 }
1497
1498 SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1499                 unsigned long, prot, unsigned long, flags,
1500                 unsigned long, fd, unsigned long, pgoff)
1501 {
1502         struct file *file = NULL;
1503         unsigned long retval;
1504
1505         if (!(flags & MAP_ANONYMOUS)) {
1506                 audit_mmap_fd(fd, flags);
1507                 file = fget(fd);
1508                 if (!file)
1509                         return -EBADF;
1510                 if (is_file_hugepages(file))
1511                         len = ALIGN(len, huge_page_size(hstate_file(file)));
1512                 retval = -EINVAL;
1513                 if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file)))
1514                         goto out_fput;
1515         } else if (flags & MAP_HUGETLB) {
1516                 struct user_struct *user = NULL;
1517                 struct hstate *hs;
1518
1519                 hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK);
1520                 if (!hs)
1521                         return -EINVAL;
1522
1523                 len = ALIGN(len, huge_page_size(hs));
1524                 /*
1525                  * VM_NORESERVE is used because the reservations will be
1526                  * taken when vm_ops->mmap() is called
1527                  * A dummy user value is used because we are not locking
1528                  * memory so no accounting is necessary
1529                  */
1530                 file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
1531                                 VM_NORESERVE,
1532                                 &user, HUGETLB_ANONHUGE_INODE,
1533                                 (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
1534                 if (IS_ERR(file))
1535                         return PTR_ERR(file);
1536         }
1537
1538         flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1539
1540         retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1541 out_fput:
1542         if (file)
1543                 fput(file);
1544         return retval;
1545 }
1546
1547 #ifdef __ARCH_WANT_SYS_OLD_MMAP
1548 struct mmap_arg_struct {
1549         unsigned long addr;
1550         unsigned long len;
1551         unsigned long prot;
1552         unsigned long flags;
1553         unsigned long fd;
1554         unsigned long offset;
1555 };
1556
1557 SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1558 {
1559         struct mmap_arg_struct a;
1560
1561         if (copy_from_user(&a, arg, sizeof(a)))
1562                 return -EFAULT;
1563         if (offset_in_page(a.offset))
1564                 return -EINVAL;
1565
1566         return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1567                               a.offset >> PAGE_SHIFT);
1568 }
1569 #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1570
1571 /*
1572  * Some shared mappigns will want the pages marked read-only
1573  * to track write events. If so, we'll downgrade vm_page_prot
1574  * to the private version (using protection_map[] without the
1575  * VM_SHARED bit).
1576  */
1577 int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
1578 {
1579         vm_flags_t vm_flags = vma->vm_flags;
1580         const struct vm_operations_struct *vm_ops = vma->vm_ops;
1581
1582         /* If it was private or non-writable, the write bit is already clear */
1583         if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
1584                 return 0;
1585
1586         /* The backer wishes to know when pages are first written to? */
1587         if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
1588                 return 1;
1589
1590         /* The open routine did something to the protections that pgprot_modify
1591          * won't preserve? */
1592         if (pgprot_val(vm_page_prot) !=
1593             pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
1594                 return 0;
1595
1596         /*
1597          * Do we need to track softdirty? hugetlb does not support softdirty
1598          * tracking yet.
1599          */
1600         if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY) &&
1601             !is_vm_hugetlb_page(vma))
1602                 return 1;
1603
1604         /* Specialty mapping? */
1605         if (vm_flags & VM_PFNMAP)
1606                 return 0;
1607
1608         /* Can the mapping track the dirty pages? */
1609         return vma->vm_file && vma->vm_file->f_mapping &&
1610                 mapping_cap_account_dirty(vma->vm_file->f_mapping);
1611 }
1612
1613 /*
1614  * We account for memory if it's a private writeable mapping,
1615  * not hugepages and VM_NORESERVE wasn't set.
1616  */
1617 static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1618 {
1619         /*
1620          * hugetlb has its own accounting separate from the core VM
1621          * VM_HUGETLB may not be set yet so we cannot check for that flag.
1622          */
1623         if (file && is_file_hugepages(file))
1624                 return 0;
1625
1626         return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1627 }
1628
1629 unsigned long mmap_region(struct file *file, unsigned long addr,
1630                 unsigned long len, vm_flags_t vm_flags, unsigned long pgoff)
1631 {
1632         struct mm_struct *mm = current->mm;
1633         struct vm_area_struct *vma, *prev;
1634         int error;
1635         struct rb_node **rb_link, *rb_parent;
1636         unsigned long charged = 0;
1637
1638         /* Check against address space limit. */
1639         if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
1640                 unsigned long nr_pages;
1641
1642                 /*
1643                  * MAP_FIXED may remove pages of mappings that intersects with
1644                  * requested mapping. Account for the pages it would unmap.
1645                  */
1646                 nr_pages = count_vma_pages_range(mm, addr, addr + len);
1647
1648                 if (!may_expand_vm(mm, vm_flags,
1649                                         (len >> PAGE_SHIFT) - nr_pages))
1650                         return -ENOMEM;
1651         }
1652
1653         /* Clear old maps */
1654         while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
1655                               &rb_parent)) {
1656                 if (do_munmap(mm, addr, len))
1657                         return -ENOMEM;
1658         }
1659
1660         /*
1661          * Private writable mapping: check memory availability
1662          */
1663         if (accountable_mapping(file, vm_flags)) {
1664                 charged = len >> PAGE_SHIFT;
1665                 if (security_vm_enough_memory_mm(mm, charged))
1666                         return -ENOMEM;
1667                 vm_flags |= VM_ACCOUNT;
1668         }
1669
1670         /*
1671          * Can we just expand an old mapping?
1672          */
1673         vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
1674                         NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX);
1675         if (vma)
1676                 goto out;
1677
1678         /*
1679          * Determine the object being mapped and call the appropriate
1680          * specific mapper. the address has already been validated, but
1681          * not unmapped, but the maps are removed from the list.
1682          */
1683         vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
1684         if (!vma) {
1685                 error = -ENOMEM;
1686                 goto unacct_error;
1687         }
1688
1689         vma->vm_mm = mm;
1690         vma->vm_start = addr;
1691         vma->vm_end = addr + len;
1692         vma->vm_flags = vm_flags;
1693         vma->vm_page_prot = vm_get_page_prot(vm_flags);
1694         vma->vm_pgoff = pgoff;
1695         INIT_LIST_HEAD(&vma->anon_vma_chain);
1696
1697         if (file) {
1698                 if (vm_flags & VM_DENYWRITE) {
1699                         error = deny_write_access(file);
1700                         if (error)
1701                                 goto free_vma;
1702                 }
1703                 if (vm_flags & VM_SHARED) {
1704                         error = mapping_map_writable(file->f_mapping);
1705                         if (error)
1706                                 goto allow_write_and_free_vma;
1707                 }
1708
1709                 /* ->mmap() can change vma->vm_file, but must guarantee that
1710                  * vma_link() below can deny write-access if VM_DENYWRITE is set
1711                  * and map writably if VM_SHARED is set. This usually means the
1712                  * new file must not have been exposed to user-space, yet.
1713                  */
1714                 vma->vm_file = get_file(file);
1715                 error = file->f_op->mmap(file, vma);
1716                 if (error)
1717                         goto unmap_and_free_vma;
1718
1719                 /* Can addr have changed??
1720                  *
1721                  * Answer: Yes, several device drivers can do it in their
1722                  *         f_op->mmap method. -DaveM
1723                  * Bug: If addr is changed, prev, rb_link, rb_parent should
1724                  *      be updated for vma_link()
1725                  */
1726                 WARN_ON_ONCE(addr != vma->vm_start);
1727
1728                 addr = vma->vm_start;
1729                 vm_flags = vma->vm_flags;
1730         } else if (vm_flags & VM_SHARED) {
1731                 error = shmem_zero_setup(vma);
1732                 if (error)
1733                         goto free_vma;
1734         }
1735
1736         vma_link(mm, vma, prev, rb_link, rb_parent);
1737         /* Once vma denies write, undo our temporary denial count */
1738         if (file) {
1739                 if (vm_flags & VM_SHARED)
1740                         mapping_unmap_writable(file->f_mapping);
1741                 if (vm_flags & VM_DENYWRITE)
1742                         allow_write_access(file);
1743         }
1744         file = vma->vm_file;
1745 out:
1746         perf_event_mmap(vma);
1747
1748         vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
1749         if (vm_flags & VM_LOCKED) {
1750                 if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) ||
1751                                         vma == get_gate_vma(current->mm)))
1752                         mm->locked_vm += (len >> PAGE_SHIFT);
1753                 else
1754                         vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
1755         }
1756
1757         if (file)
1758                 uprobe_mmap(vma);
1759
1760         /*
1761          * New (or expanded) vma always get soft dirty status.
1762          * Otherwise user-space soft-dirty page tracker won't
1763          * be able to distinguish situation when vma area unmapped,
1764          * then new mapped in-place (which must be aimed as
1765          * a completely new data area).
1766          */
1767         vma->vm_flags |= VM_SOFTDIRTY;
1768
1769         vma_set_page_prot(vma);
1770
1771         return addr;
1772
1773 unmap_and_free_vma:
1774         vma->vm_file = NULL;
1775         fput(file);
1776
1777         /* Undo any partial mapping done by a device driver. */
1778         unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1779         charged = 0;
1780         if (vm_flags & VM_SHARED)
1781                 mapping_unmap_writable(file->f_mapping);
1782 allow_write_and_free_vma:
1783         if (vm_flags & VM_DENYWRITE)
1784                 allow_write_access(file);
1785 free_vma:
1786         kmem_cache_free(vm_area_cachep, vma);
1787 unacct_error:
1788         if (charged)
1789                 vm_unacct_memory(charged);
1790         return error;
1791 }
1792
1793 unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1794 {
1795         /*
1796          * We implement the search by looking for an rbtree node that
1797          * immediately follows a suitable gap. That is,
1798          * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1799          * - gap_end   = vma->vm_start        >= info->low_limit  + length;
1800          * - gap_end - gap_start >= length
1801          */
1802
1803         struct mm_struct *mm = current->mm;
1804         struct vm_area_struct *vma;
1805         unsigned long length, low_limit, high_limit, gap_start, gap_end;
1806
1807         /* Adjust search length to account for worst case alignment overhead */
1808         length = info->length + info->align_mask;
1809         if (length < info->length)
1810                 return -ENOMEM;
1811
1812         /* Adjust search limits by the desired length */
1813         if (info->high_limit < length)
1814                 return -ENOMEM;
1815         high_limit = info->high_limit - length;
1816
1817         if (info->low_limit > high_limit)
1818                 return -ENOMEM;
1819         low_limit = info->low_limit + length;
1820
1821         /* Check if rbtree root looks promising */
1822         if (RB_EMPTY_ROOT(&mm->mm_rb))
1823                 goto check_highest;
1824         vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1825         if (vma->rb_subtree_gap < length)
1826                 goto check_highest;
1827
1828         while (true) {
1829                 /* Visit left subtree if it looks promising */
1830                 gap_end = vm_start_gap(vma);
1831                 if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1832                         struct vm_area_struct *left =
1833                                 rb_entry(vma->vm_rb.rb_left,
1834                                          struct vm_area_struct, vm_rb);
1835                         if (left->rb_subtree_gap >= length) {
1836                                 vma = left;
1837                                 continue;
1838                         }
1839                 }
1840
1841                 gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0;
1842 check_current:
1843                 /* Check if current node has a suitable gap */
1844                 if (gap_start > high_limit)
1845                         return -ENOMEM;
1846                 if (gap_end >= low_limit &&
1847                     gap_end > gap_start && gap_end - gap_start >= length)
1848                         goto found;
1849
1850                 /* Visit right subtree if it looks promising */
1851                 if (vma->vm_rb.rb_right) {
1852                         struct vm_area_struct *right =
1853                                 rb_entry(vma->vm_rb.rb_right,
1854                                          struct vm_area_struct, vm_rb);
1855                         if (right->rb_subtree_gap >= length) {
1856                                 vma = right;
1857                                 continue;
1858                         }
1859                 }
1860
1861                 /* Go back up the rbtree to find next candidate node */
1862                 while (true) {
1863                         struct rb_node *prev = &vma->vm_rb;
1864                         if (!rb_parent(prev))
1865                                 goto check_highest;
1866                         vma = rb_entry(rb_parent(prev),
1867                                        struct vm_area_struct, vm_rb);
1868                         if (prev == vma->vm_rb.rb_left) {
1869                                 gap_start = vm_end_gap(vma->vm_prev);
1870                                 gap_end = vm_start_gap(vma);
1871                                 goto check_current;
1872                         }
1873                 }
1874         }
1875
1876 check_highest:
1877         /* Check highest gap, which does not precede any rbtree node */
1878         gap_start = mm->highest_vm_end;
1879         gap_end = ULONG_MAX;  /* Only for VM_BUG_ON below */
1880         if (gap_start > high_limit)
1881                 return -ENOMEM;
1882
1883 found:
1884         /* We found a suitable gap. Clip it with the original low_limit. */
1885         if (gap_start < info->low_limit)
1886                 gap_start = info->low_limit;
1887
1888         /* Adjust gap address to the desired alignment */
1889         gap_start += (info->align_offset - gap_start) & info->align_mask;
1890
1891         VM_BUG_ON(gap_start + info->length > info->high_limit);
1892         VM_BUG_ON(gap_start + info->length > gap_end);
1893         return gap_start;
1894 }
1895
1896 unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1897 {
1898         struct mm_struct *mm = current->mm;
1899         struct vm_area_struct *vma;
1900         unsigned long length, low_limit, high_limit, gap_start, gap_end;
1901
1902         /* Adjust search length to account for worst case alignment overhead */
1903         length = info->length + info->align_mask;
1904         if (length < info->length)
1905                 return -ENOMEM;
1906
1907         /*
1908          * Adjust search limits by the desired length.
1909          * See implementation comment at top of unmapped_area().
1910          */
1911         gap_end = info->high_limit;
1912         if (gap_end < length)
1913                 return -ENOMEM;
1914         high_limit = gap_end - length;
1915
1916         if (info->low_limit > high_limit)
1917                 return -ENOMEM;
1918         low_limit = info->low_limit + length;
1919
1920         /* Check highest gap, which does not precede any rbtree node */
1921         gap_start = mm->highest_vm_end;
1922         if (gap_start <= high_limit)
1923                 goto found_highest;
1924
1925         /* Check if rbtree root looks promising */
1926         if (RB_EMPTY_ROOT(&mm->mm_rb))
1927                 return -ENOMEM;
1928         vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1929         if (vma->rb_subtree_gap < length)
1930                 return -ENOMEM;
1931
1932         while (true) {
1933                 /* Visit right subtree if it looks promising */
1934                 gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0;
1935                 if (gap_start <= high_limit && vma->vm_rb.rb_right) {
1936                         struct vm_area_struct *right =
1937                                 rb_entry(vma->vm_rb.rb_right,
1938                                          struct vm_area_struct, vm_rb);
1939                         if (right->rb_subtree_gap >= length) {
1940                                 vma = right;
1941                                 continue;
1942                         }
1943                 }
1944
1945 check_current:
1946                 /* Check if current node has a suitable gap */
1947                 gap_end = vm_start_gap(vma);
1948                 if (gap_end < low_limit)
1949                         return -ENOMEM;
1950                 if (gap_start <= high_limit &&
1951                     gap_end > gap_start && gap_end - gap_start >= length)
1952                         goto found;
1953
1954                 /* Visit left subtree if it looks promising */
1955                 if (vma->vm_rb.rb_left) {
1956                         struct vm_area_struct *left =
1957                                 rb_entry(vma->vm_rb.rb_left,
1958                                          struct vm_area_struct, vm_rb);
1959                         if (left->rb_subtree_gap >= length) {
1960                                 vma = left;
1961                                 continue;
1962                         }
1963                 }
1964
1965                 /* Go back up the rbtree to find next candidate node */
1966                 while (true) {
1967                         struct rb_node *prev = &vma->vm_rb;
1968                         if (!rb_parent(prev))
1969                                 return -ENOMEM;
1970                         vma = rb_entry(rb_parent(prev),
1971                                        struct vm_area_struct, vm_rb);
1972                         if (prev == vma->vm_rb.rb_right) {
1973                                 gap_start = vma->vm_prev ?
1974                                         vm_end_gap(vma->vm_prev) : 0;
1975                                 goto check_current;
1976                         }
1977                 }
1978         }
1979
1980 found:
1981         /* We found a suitable gap. Clip it with the original high_limit. */
1982         if (gap_end > info->high_limit)
1983                 gap_end = info->high_limit;
1984
1985 found_highest:
1986         /* Compute highest gap address at the desired alignment */
1987         gap_end -= info->length;
1988         gap_end -= (gap_end - info->align_offset) & info->align_mask;
1989
1990         VM_BUG_ON(gap_end < info->low_limit);
1991         VM_BUG_ON(gap_end < gap_start);
1992         return gap_end;
1993 }
1994
1995 /* Get an address range which is currently unmapped.
1996  * For shmat() with addr=0.
1997  *
1998  * Ugly calling convention alert:
1999  * Return value with the low bits set means error value,
2000  * ie
2001  *      if (ret & ~PAGE_MASK)
2002  *              error = ret;
2003  *
2004  * This function "knows" that -ENOMEM has the bits set.
2005  */
2006 #ifndef HAVE_ARCH_UNMAPPED_AREA
2007 unsigned long
2008 arch_get_unmapped_area(struct file *filp, unsigned long addr,
2009                 unsigned long len, unsigned long pgoff, unsigned long flags)
2010 {
2011         struct mm_struct *mm = current->mm;
2012         struct vm_area_struct *vma, *prev;
2013         struct vm_unmapped_area_info info;
2014
2015         if (len > TASK_SIZE - mmap_min_addr)
2016                 return -ENOMEM;
2017
2018         if (flags & MAP_FIXED)
2019                 return addr;
2020
2021         if (addr) {
2022                 addr = PAGE_ALIGN(addr);
2023                 vma = find_vma_prev(mm, addr, &prev);
2024                 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
2025                     (!vma || addr + len <= vm_start_gap(vma)) &&
2026                     (!prev || addr >= vm_end_gap(prev)))
2027                         return addr;
2028         }
2029
2030         info.flags = 0;
2031         info.length = len;
2032         info.low_limit = mm->mmap_base;
2033         info.high_limit = TASK_SIZE;
2034         info.align_mask = 0;
2035         info.align_offset = 0;
2036         return vm_unmapped_area(&info);
2037 }
2038 #endif
2039
2040 /*
2041  * This mmap-allocator allocates new areas top-down from below the
2042  * stack's low limit (the base):
2043  */
2044 #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
2045 unsigned long
2046 arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
2047                           const unsigned long len, const unsigned long pgoff,
2048                           const unsigned long flags)
2049 {
2050         struct vm_area_struct *vma, *prev;
2051         struct mm_struct *mm = current->mm;
2052         unsigned long addr = addr0;
2053         struct vm_unmapped_area_info info;
2054
2055         /* requested length too big for entire address space */
2056         if (len > TASK_SIZE - mmap_min_addr)
2057                 return -ENOMEM;
2058
2059         if (flags & MAP_FIXED)
2060                 return addr;
2061
2062         /* requesting a specific address */
2063         if (addr) {
2064                 addr = PAGE_ALIGN(addr);
2065                 vma = find_vma_prev(mm, addr, &prev);
2066                 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
2067                                 (!vma || addr + len <= vm_start_gap(vma)) &&
2068                                 (!prev || addr >= vm_end_gap(prev)))
2069                         return addr;
2070         }
2071
2072         info.flags = VM_UNMAPPED_AREA_TOPDOWN;
2073         info.length = len;
2074         info.low_limit = max(PAGE_SIZE, mmap_min_addr);
2075         info.high_limit = mm->mmap_base;
2076         info.align_mask = 0;
2077         info.align_offset = 0;
2078         addr = vm_unmapped_area(&info);
2079
2080         /*
2081          * A failed mmap() very likely causes application failure,
2082          * so fall back to the bottom-up function here. This scenario
2083          * can happen with large stack limits and large mmap()
2084          * allocations.
2085          */
2086         if (offset_in_page(addr)) {
2087                 VM_BUG_ON(addr != -ENOMEM);
2088                 info.flags = 0;
2089                 info.low_limit = TASK_UNMAPPED_BASE;
2090                 info.high_limit = TASK_SIZE;
2091                 addr = vm_unmapped_area(&info);
2092         }
2093
2094         return addr;
2095 }
2096 #endif
2097
2098 unsigned long
2099 get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
2100                 unsigned long pgoff, unsigned long flags)
2101 {
2102         unsigned long (*get_area)(struct file *, unsigned long,
2103                                   unsigned long, unsigned long, unsigned long);
2104
2105         unsigned long error = arch_mmap_check(addr, len, flags);
2106         if (error)
2107                 return error;
2108
2109         /* Careful about overflows.. */
2110         if (len > TASK_SIZE)
2111                 return -ENOMEM;
2112
2113         get_area = current->mm->get_unmapped_area;
2114         if (file) {
2115                 if (file->f_op->get_unmapped_area)
2116                         get_area = file->f_op->get_unmapped_area;
2117         } else if (flags & MAP_SHARED) {
2118                 /*
2119                  * mmap_region() will call shmem_zero_setup() to create a file,
2120                  * so use shmem's get_unmapped_area in case it can be huge.
2121                  * do_mmap_pgoff() will clear pgoff, so match alignment.
2122                  */
2123                 pgoff = 0;
2124                 get_area = shmem_get_unmapped_area;
2125         }
2126
2127         addr = get_area(file, addr, len, pgoff, flags);
2128         if (IS_ERR_VALUE(addr))
2129                 return addr;
2130
2131         if (addr > TASK_SIZE - len)
2132                 return -ENOMEM;
2133         if (offset_in_page(addr))
2134                 return -EINVAL;
2135
2136         error = security_mmap_addr(addr);
2137         return error ? error : addr;
2138 }
2139
2140 EXPORT_SYMBOL(get_unmapped_area);
2141
2142 /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
2143 struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
2144 {
2145         struct rb_node *rb_node;
2146         struct vm_area_struct *vma;
2147
2148         /* Check the cache first. */
2149         vma = vmacache_find(mm, addr);
2150         if (likely(vma))
2151                 return vma;
2152
2153         rb_node = mm->mm_rb.rb_node;
2154
2155         while (rb_node) {
2156                 struct vm_area_struct *tmp;
2157
2158                 tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
2159
2160                 if (tmp->vm_end > addr) {
2161                         vma = tmp;
2162                         if (tmp->vm_start <= addr)
2163                                 break;
2164                         rb_node = rb_node->rb_left;
2165                 } else
2166                         rb_node = rb_node->rb_right;
2167         }
2168
2169         if (vma)
2170                 vmacache_update(addr, vma);
2171         return vma;
2172 }
2173
2174 EXPORT_SYMBOL(find_vma);
2175
2176 /*
2177  * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
2178  */
2179 struct vm_area_struct *
2180 find_vma_prev(struct mm_struct *mm, unsigned long addr,
2181                         struct vm_area_struct **pprev)
2182 {
2183         struct vm_area_struct *vma;
2184
2185         vma = find_vma(mm, addr);
2186         if (vma) {
2187                 *pprev = vma->vm_prev;
2188         } else {
2189                 struct rb_node *rb_node = mm->mm_rb.rb_node;
2190                 *pprev = NULL;
2191                 while (rb_node) {
2192                         *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
2193                         rb_node = rb_node->rb_right;
2194                 }
2195         }
2196         return vma;
2197 }
2198
2199 /*
2200  * Verify that the stack growth is acceptable and
2201  * update accounting. This is shared with both the
2202  * grow-up and grow-down cases.
2203  */
2204 static int acct_stack_growth(struct vm_area_struct *vma,
2205                              unsigned long size, unsigned long grow)
2206 {
2207         struct mm_struct *mm = vma->vm_mm;
2208         struct rlimit *rlim = current->signal->rlim;
2209         unsigned long new_start;
2210
2211         /* address space limit tests */
2212         if (!may_expand_vm(mm, vma->vm_flags, grow))
2213                 return -ENOMEM;
2214
2215         /* Stack limit test */
2216         if (size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur))
2217                 return -ENOMEM;
2218
2219         /* mlock limit tests */
2220         if (vma->vm_flags & VM_LOCKED) {
2221                 unsigned long locked;
2222                 unsigned long limit;
2223                 locked = mm->locked_vm + grow;
2224                 limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
2225                 limit >>= PAGE_SHIFT;
2226                 if (locked > limit && !capable(CAP_IPC_LOCK))
2227                         return -ENOMEM;
2228         }
2229
2230         /* Check to ensure the stack will not grow into a hugetlb-only region */
2231         new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
2232                         vma->vm_end - size;
2233         if (is_hugepage_only_range(vma->vm_mm, new_start, size))
2234                 return -EFAULT;
2235
2236         /*
2237          * Overcommit..  This must be the final test, as it will
2238          * update security statistics.
2239          */
2240         if (security_vm_enough_memory_mm(mm, grow))
2241                 return -ENOMEM;
2242
2243         return 0;
2244 }
2245
2246 #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
2247 /*
2248  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
2249  * vma is the last one with address > vma->vm_end.  Have to extend vma.
2250  */
2251 int expand_upwards(struct vm_area_struct *vma, unsigned long address)
2252 {
2253         struct mm_struct *mm = vma->vm_mm;
2254         struct vm_area_struct *next;
2255         unsigned long gap_addr;
2256         int error = 0;
2257
2258         if (!(vma->vm_flags & VM_GROWSUP))
2259                 return -EFAULT;
2260
2261         /* Guard against exceeding limits of the address space. */
2262         address &= PAGE_MASK;
2263         if (address >= (TASK_SIZE & PAGE_MASK))
2264                 return -ENOMEM;
2265         address += PAGE_SIZE;
2266
2267         /* Enforce stack_guard_gap */
2268         gap_addr = address + stack_guard_gap;
2269
2270         /* Guard against overflow */
2271         if (gap_addr < address || gap_addr > TASK_SIZE)
2272                 gap_addr = TASK_SIZE;
2273
2274         next = vma->vm_next;
2275         if (next && next->vm_start < gap_addr &&
2276                         (next->vm_flags & (VM_WRITE|VM_READ|VM_EXEC))) {
2277                 if (!(next->vm_flags & VM_GROWSUP))
2278                         return -ENOMEM;
2279                 /* Check that both stack segments have the same anon_vma? */
2280         }
2281
2282         /* We must make sure the anon_vma is allocated. */
2283         if (unlikely(anon_vma_prepare(vma)))
2284                 return -ENOMEM;
2285
2286         /*
2287          * vma->vm_start/vm_end cannot change under us because the caller
2288          * is required to hold the mmap_sem in read mode.  We need the
2289          * anon_vma lock to serialize against concurrent expand_stacks.
2290          */
2291         anon_vma_lock_write(vma->anon_vma);
2292
2293         /* Somebody else might have raced and expanded it already */
2294         if (address > vma->vm_end) {
2295                 unsigned long size, grow;
2296
2297                 size = address - vma->vm_start;
2298                 grow = (address - vma->vm_end) >> PAGE_SHIFT;
2299
2300                 error = -ENOMEM;
2301                 if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
2302                         error = acct_stack_growth(vma, size, grow);
2303                         if (!error) {
2304                                 /*
2305                                  * vma_gap_update() doesn't support concurrent
2306                                  * updates, but we only hold a shared mmap_sem
2307                                  * lock here, so we need to protect against
2308                                  * concurrent vma expansions.
2309                                  * anon_vma_lock_write() doesn't help here, as
2310                                  * we don't guarantee that all growable vmas
2311                                  * in a mm share the same root anon vma.
2312                                  * So, we reuse mm->page_table_lock to guard
2313                                  * against concurrent vma expansions.
2314                                  */
2315                                 spin_lock(&mm->page_table_lock);
2316                                 if (vma->vm_flags & VM_LOCKED)
2317                                         mm->locked_vm += grow;
2318                                 vm_stat_account(mm, vma->vm_flags, grow);
2319                                 anon_vma_interval_tree_pre_update_vma(vma);
2320                                 vma->vm_end = address;
2321                                 anon_vma_interval_tree_post_update_vma(vma);
2322                                 if (vma->vm_next)
2323                                         vma_gap_update(vma->vm_next);
2324                                 else
2325                                         mm->highest_vm_end = vm_end_gap(vma);
2326                                 spin_unlock(&mm->page_table_lock);
2327
2328                                 perf_event_mmap(vma);
2329                         }
2330                 }
2331         }
2332         anon_vma_unlock_write(vma->anon_vma);
2333         khugepaged_enter_vma_merge(vma, vma->vm_flags);
2334         validate_mm(mm);
2335         return error;
2336 }
2337 #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
2338
2339 /*
2340  * vma is the first one with address < vma->vm_start.  Have to extend vma.
2341  */
2342 int expand_downwards(struct vm_area_struct *vma,
2343                                    unsigned long address)
2344 {
2345         struct mm_struct *mm = vma->vm_mm;
2346         struct vm_area_struct *prev;
2347         unsigned long gap_addr;
2348         int error = 0;
2349
2350         address &= PAGE_MASK;
2351         if (address < mmap_min_addr)
2352                 return -EPERM;
2353
2354         /* Enforce stack_guard_gap */
2355         gap_addr = address - stack_guard_gap;
2356         if (gap_addr > address)
2357                 return -ENOMEM;
2358         prev = vma->vm_prev;
2359         if (prev && prev->vm_end > gap_addr &&
2360                         (prev->vm_flags & (VM_WRITE|VM_READ|VM_EXEC))) {
2361                 if (!(prev->vm_flags & VM_GROWSDOWN))
2362                         return -ENOMEM;
2363                 /* Check that both stack segments have the same anon_vma? */
2364         }
2365
2366         /* We must make sure the anon_vma is allocated. */
2367         if (unlikely(anon_vma_prepare(vma)))
2368                 return -ENOMEM;
2369
2370         /*
2371          * vma->vm_start/vm_end cannot change under us because the caller
2372          * is required to hold the mmap_sem in read mode.  We need the
2373          * anon_vma lock to serialize against concurrent expand_stacks.
2374          */
2375         anon_vma_lock_write(vma->anon_vma);
2376
2377         /* Somebody else might have raced and expanded it already */
2378         if (address < vma->vm_start) {
2379                 unsigned long size, grow;
2380
2381                 size = vma->vm_end - address;
2382                 grow = (vma->vm_start - address) >> PAGE_SHIFT;
2383
2384                 error = -ENOMEM;
2385                 if (grow <= vma->vm_pgoff) {
2386                         error = acct_stack_growth(vma, size, grow);
2387                         if (!error) {
2388                                 /*
2389                                  * vma_gap_update() doesn't support concurrent
2390                                  * updates, but we only hold a shared mmap_sem
2391                                  * lock here, so we need to protect against
2392                                  * concurrent vma expansions.
2393                                  * anon_vma_lock_write() doesn't help here, as
2394                                  * we don't guarantee that all growable vmas
2395                                  * in a mm share the same root anon vma.
2396                                  * So, we reuse mm->page_table_lock to guard
2397                                  * against concurrent vma expansions.
2398                                  */
2399                                 spin_lock(&mm->page_table_lock);
2400                                 if (vma->vm_flags & VM_LOCKED)
2401                                         mm->locked_vm += grow;
2402                                 vm_stat_account(mm, vma->vm_flags, grow);
2403                                 anon_vma_interval_tree_pre_update_vma(vma);
2404                                 vma->vm_start = address;
2405                                 vma->vm_pgoff -= grow;
2406                                 anon_vma_interval_tree_post_update_vma(vma);
2407                                 vma_gap_update(vma);
2408                                 spin_unlock(&mm->page_table_lock);
2409
2410                                 perf_event_mmap(vma);
2411                         }
2412                 }
2413         }
2414         anon_vma_unlock_write(vma->anon_vma);
2415         khugepaged_enter_vma_merge(vma, vma->vm_flags);
2416         validate_mm(mm);
2417         return error;
2418 }
2419
2420 /* enforced gap between the expanding stack and other mappings. */
2421 unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT;
2422
2423 static int __init cmdline_parse_stack_guard_gap(char *p)
2424 {
2425         unsigned long val;
2426         char *endptr;
2427
2428         val = simple_strtoul(p, &endptr, 10);
2429         if (!*endptr)
2430                 stack_guard_gap = val << PAGE_SHIFT;
2431
2432         return 1;
2433 }
2434 __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap);
2435
2436 #ifdef CONFIG_STACK_GROWSUP
2437 int expand_stack(struct vm_area_struct *vma, unsigned long address)
2438 {
2439         return expand_upwards(vma, address);
2440 }
2441
2442 struct vm_area_struct *
2443 find_extend_vma(struct mm_struct *mm, unsigned long addr)
2444 {
2445         struct vm_area_struct *vma, *prev;
2446
2447         addr &= PAGE_MASK;
2448         vma = find_vma_prev(mm, addr, &prev);
2449         if (vma && (vma->vm_start <= addr))
2450                 return vma;
2451         /* don't alter vm_end if the coredump is running */
2452         if (!prev || !mmget_still_valid(mm) || expand_stack(prev, addr))
2453                 return NULL;
2454         if (prev->vm_flags & VM_LOCKED)
2455                 populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2456         return prev;
2457 }
2458 #else
2459 int expand_stack(struct vm_area_struct *vma, unsigned long address)
2460 {
2461         return expand_downwards(vma, address);
2462 }
2463
2464 struct vm_area_struct *
2465 find_extend_vma(struct mm_struct *mm, unsigned long addr)
2466 {
2467         struct vm_area_struct *vma;
2468         unsigned long start;
2469
2470         addr &= PAGE_MASK;
2471         vma = find_vma(mm, addr);
2472         if (!vma)
2473                 return NULL;
2474         if (vma->vm_start <= addr)
2475                 return vma;
2476         if (!(vma->vm_flags & VM_GROWSDOWN))
2477                 return NULL;
2478         /* don't alter vm_start if the coredump is running */
2479         if (!mmget_still_valid(mm))
2480                 return NULL;
2481         start = vma->vm_start;
2482         if (expand_stack(vma, addr))
2483                 return NULL;
2484         if (vma->vm_flags & VM_LOCKED)
2485                 populate_vma_page_range(vma, addr, start, NULL);
2486         return vma;
2487 }
2488 #endif
2489
2490 EXPORT_SYMBOL_GPL(find_extend_vma);
2491
2492 /*
2493  * Ok - we have the memory areas we should free on the vma list,
2494  * so release them, and do the vma updates.
2495  *
2496  * Called with the mm semaphore held.
2497  */
2498 static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
2499 {
2500         unsigned long nr_accounted = 0;
2501
2502         /* Update high watermark before we lower total_vm */
2503         update_hiwater_vm(mm);
2504         do {
2505                 long nrpages = vma_pages(vma);
2506
2507                 if (vma->vm_flags & VM_ACCOUNT)
2508                         nr_accounted += nrpages;
2509                 vm_stat_account(mm, vma->vm_flags, -nrpages);
2510                 vma = remove_vma(vma);
2511         } while (vma);
2512         vm_unacct_memory(nr_accounted);
2513         validate_mm(mm);
2514 }
2515
2516 /*
2517  * Get rid of page table information in the indicated region.
2518  *
2519  * Called with the mm semaphore held.
2520  */
2521 static void unmap_region(struct mm_struct *mm,
2522                 struct vm_area_struct *vma, struct vm_area_struct *prev,
2523                 unsigned long start, unsigned long end)
2524 {
2525         struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap;
2526         struct mmu_gather tlb;
2527         struct vm_area_struct *cur_vma;
2528
2529         lru_add_drain();
2530         tlb_gather_mmu(&tlb, mm, start, end);
2531         update_hiwater_rss(mm);
2532         unmap_vmas(&tlb, vma, start, end);
2533
2534         /*
2535          * Ensure we have no stale TLB entries by the time this mapping is
2536          * removed from the rmap.
2537          * Note that we don't have to worry about nested flushes here because
2538          * we're holding the mm semaphore for removing the mapping - so any
2539          * concurrent flush in this region has to be coming through the rmap,
2540          * and we synchronize against that using the rmap lock.
2541          */
2542         for (cur_vma = vma; cur_vma; cur_vma = cur_vma->vm_next) {
2543                 if ((cur_vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) != 0) {
2544                         tlb_flush_mmu(&tlb);
2545                         break;
2546                 }
2547         }
2548
2549         free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
2550                                  next ? next->vm_start : USER_PGTABLES_CEILING);
2551         tlb_finish_mmu(&tlb, start, end);
2552 }
2553
2554 /*
2555  * Create a list of vma's touched by the unmap, removing them from the mm's
2556  * vma list as we go..
2557  */
2558 static void
2559 detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
2560         struct vm_area_struct *prev, unsigned long end)
2561 {
2562         struct vm_area_struct **insertion_point;
2563         struct vm_area_struct *tail_vma = NULL;
2564
2565         insertion_point = (prev ? &prev->vm_next : &mm->mmap);
2566         vma->vm_prev = NULL;
2567         do {
2568                 vma_rb_erase(vma, &mm->mm_rb);
2569                 mm->map_count--;
2570                 tail_vma = vma;
2571                 vma = vma->vm_next;
2572         } while (vma && vma->vm_start < end);
2573         *insertion_point = vma;
2574         if (vma) {
2575                 vma->vm_prev = prev;
2576                 vma_gap_update(vma);
2577         } else
2578                 mm->highest_vm_end = prev ? vm_end_gap(prev) : 0;
2579         tail_vma->vm_next = NULL;
2580
2581         /* Kill the cache */
2582         vmacache_invalidate(mm);
2583 }
2584
2585 /*
2586  * __split_vma() bypasses sysctl_max_map_count checking.  We use this on the
2587  * munmap path where it doesn't make sense to fail.
2588  */
2589 static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2590               unsigned long addr, int new_below)
2591 {
2592         struct vm_area_struct *new;
2593         int err;
2594
2595         if (vma->vm_ops && vma->vm_ops->split) {
2596                 err = vma->vm_ops->split(vma, addr);
2597                 if (err)
2598                         return err;
2599         }
2600
2601         new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
2602         if (!new)
2603                 return -ENOMEM;
2604
2605         /* most fields are the same, copy all, and then fixup */
2606         *new = *vma;
2607
2608         INIT_LIST_HEAD(&new->anon_vma_chain);
2609
2610         if (new_below)
2611                 new->vm_end = addr;
2612         else {
2613                 new->vm_start = addr;
2614                 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
2615         }
2616
2617         err = vma_dup_policy(vma, new);
2618         if (err)
2619                 goto out_free_vma;
2620
2621         err = anon_vma_clone(new, vma);
2622         if (err)
2623                 goto out_free_mpol;
2624
2625         if (new->vm_file)
2626                 get_file(new->vm_file);
2627
2628         if (new->vm_ops && new->vm_ops->open)
2629                 new->vm_ops->open(new);
2630
2631         if (new_below)
2632                 err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
2633                         ((addr - new->vm_start) >> PAGE_SHIFT), new);
2634         else
2635                 err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
2636
2637         /* Success. */
2638         if (!err)
2639                 return 0;
2640
2641         /* Clean everything up if vma_adjust failed. */
2642         if (new->vm_ops && new->vm_ops->close)
2643                 new->vm_ops->close(new);
2644         if (new->vm_file)
2645                 fput(new->vm_file);
2646         unlink_anon_vmas(new);
2647  out_free_mpol:
2648         mpol_put(vma_policy(new));
2649  out_free_vma:
2650         kmem_cache_free(vm_area_cachep, new);
2651         return err;
2652 }
2653
2654 /*
2655  * Split a vma into two pieces at address 'addr', a new vma is allocated
2656  * either for the first part or the tail.
2657  */
2658 int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2659               unsigned long addr, int new_below)
2660 {
2661         if (mm->map_count >= sysctl_max_map_count)
2662                 return -ENOMEM;
2663
2664         return __split_vma(mm, vma, addr, new_below);
2665 }
2666
2667 /* Munmap is split into 2 main parts -- this part which finds
2668  * what needs doing, and the areas themselves, which do the
2669  * work.  This now handles partial unmappings.
2670  * Jeremy Fitzhardinge <jeremy@goop.org>
2671  */
2672 int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
2673 {
2674         unsigned long end;
2675         struct vm_area_struct *vma, *prev, *last;
2676
2677         if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
2678                 return -EINVAL;
2679
2680         len = PAGE_ALIGN(len);
2681         if (len == 0)
2682                 return -EINVAL;
2683
2684         /* Find the first overlapping VMA */
2685         vma = find_vma(mm, start);
2686         if (!vma)
2687                 return 0;
2688         prev = vma->vm_prev;
2689         /* we have  start < vma->vm_end  */
2690
2691         /* if it doesn't overlap, we have nothing.. */
2692         end = start + len;
2693         if (vma->vm_start >= end)
2694                 return 0;
2695
2696         /*
2697          * If we need to split any vma, do it now to save pain later.
2698          *
2699          * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
2700          * unmapped vm_area_struct will remain in use: so lower split_vma
2701          * places tmp vma above, and higher split_vma places tmp vma below.
2702          */
2703         if (start > vma->vm_start) {
2704                 int error;
2705
2706                 /*
2707                  * Make sure that map_count on return from munmap() will
2708                  * not exceed its limit; but let map_count go just above
2709                  * its limit temporarily, to help free resources as expected.
2710                  */
2711                 if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2712                         return -ENOMEM;
2713
2714                 error = __split_vma(mm, vma, start, 0);
2715                 if (error)
2716                         return error;
2717                 prev = vma;
2718         }
2719
2720         /* Does it split the last one? */
2721         last = find_vma(mm, end);
2722         if (last && end > last->vm_start) {
2723                 int error = __split_vma(mm, last, end, 1);
2724                 if (error)
2725                         return error;
2726         }
2727         vma = prev ? prev->vm_next : mm->mmap;
2728
2729         /*
2730          * unlock any mlock()ed ranges before detaching vmas
2731          */
2732         if (mm->locked_vm) {
2733                 struct vm_area_struct *tmp = vma;
2734                 while (tmp && tmp->vm_start < end) {
2735                         if (tmp->vm_flags & VM_LOCKED) {
2736                                 mm->locked_vm -= vma_pages(tmp);
2737                                 munlock_vma_pages_all(tmp);
2738                         }
2739                         tmp = tmp->vm_next;
2740                 }
2741         }
2742
2743         /*
2744          * Remove the vma's, and unmap the actual pages
2745          */
2746         detach_vmas_to_be_unmapped(mm, vma, prev, end);
2747         unmap_region(mm, vma, prev, start, end);
2748
2749         arch_unmap(mm, vma, start, end);
2750
2751         /* Fix up all other VM information */
2752         remove_vma_list(mm, vma);
2753
2754         return 0;
2755 }
2756
2757 int vm_munmap(unsigned long start, size_t len)
2758 {
2759         int ret;
2760         struct mm_struct *mm = current->mm;
2761
2762         if (down_write_killable(&mm->mmap_sem))
2763                 return -EINTR;
2764
2765         ret = do_munmap(mm, start, len);
2766         up_write(&mm->mmap_sem);
2767         return ret;
2768 }
2769 EXPORT_SYMBOL(vm_munmap);
2770
2771 SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
2772 {
2773         int ret;
2774         struct mm_struct *mm = current->mm;
2775
2776         profile_munmap(addr);
2777         if (down_write_killable(&mm->mmap_sem))
2778                 return -EINTR;
2779         ret = do_munmap(mm, addr, len);
2780         up_write(&mm->mmap_sem);
2781         return ret;
2782 }
2783
2784
2785 /*
2786  * Emulation of deprecated remap_file_pages() syscall.
2787  */
2788 SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2789                 unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2790 {
2791
2792         struct mm_struct *mm = current->mm;
2793         struct vm_area_struct *vma;
2794         unsigned long populate = 0;
2795         unsigned long ret = -EINVAL;
2796         struct file *file;
2797
2798         pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n",
2799                      current->comm, current->pid);
2800
2801         if (prot)
2802                 return ret;
2803         start = start & PAGE_MASK;
2804         size = size & PAGE_MASK;
2805
2806         if (start + size <= start)
2807                 return ret;
2808
2809         /* Does pgoff wrap? */
2810         if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2811                 return ret;
2812
2813         if (down_write_killable(&mm->mmap_sem))
2814                 return -EINTR;
2815
2816         vma = find_vma(mm, start);
2817
2818         if (!vma || !(vma->vm_flags & VM_SHARED))
2819                 goto out;
2820
2821         if (start < vma->vm_start)
2822                 goto out;
2823
2824         if (start + size > vma->vm_end) {
2825                 struct vm_area_struct *next;
2826
2827                 for (next = vma->vm_next; next; next = next->vm_next) {
2828                         /* hole between vmas ? */
2829                         if (next->vm_start != next->vm_prev->vm_end)
2830                                 goto out;
2831
2832                         if (next->vm_file != vma->vm_file)
2833                                 goto out;
2834
2835                         if (next->vm_flags != vma->vm_flags)
2836                                 goto out;
2837
2838                         if (start + size <= next->vm_end)
2839                                 break;
2840                 }
2841
2842                 if (!next)
2843                         goto out;
2844         }
2845
2846         prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2847         prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2848         prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2849
2850         flags &= MAP_NONBLOCK;
2851         flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2852         if (vma->vm_flags & VM_LOCKED) {
2853                 struct vm_area_struct *tmp;
2854                 flags |= MAP_LOCKED;
2855
2856                 /* drop PG_Mlocked flag for over-mapped range */
2857                 for (tmp = vma; tmp->vm_start >= start + size;
2858                                 tmp = tmp->vm_next) {
2859                         /*
2860                          * Split pmd and munlock page on the border
2861                          * of the range.
2862                          */
2863                         vma_adjust_trans_huge(tmp, start, start + size, 0);
2864
2865                         munlock_vma_pages_range(tmp,
2866                                         max(tmp->vm_start, start),
2867                                         min(tmp->vm_end, start + size));
2868                 }
2869         }
2870
2871         file = get_file(vma->vm_file);
2872         ret = do_mmap_pgoff(vma->vm_file, start, size,
2873                         prot, flags, pgoff, &populate);
2874         fput(file);
2875 out:
2876         up_write(&mm->mmap_sem);
2877         if (populate)
2878                 mm_populate(ret, populate);
2879         if (!IS_ERR_VALUE(ret))
2880                 ret = 0;
2881         return ret;
2882 }
2883
2884 static inline void verify_mm_writelocked(struct mm_struct *mm)
2885 {
2886 #ifdef CONFIG_DEBUG_VM
2887         if (unlikely(down_read_trylock(&mm->mmap_sem))) {
2888                 WARN_ON(1);
2889                 up_read(&mm->mmap_sem);
2890         }
2891 #endif
2892 }
2893
2894 /*
2895  *  this is really a simplified "do_mmap".  it only handles
2896  *  anonymous maps.  eventually we may be able to do some
2897  *  brk-specific accounting here.
2898  */
2899 static int do_brk(unsigned long addr, unsigned long len)
2900 {
2901         struct mm_struct *mm = current->mm;
2902         struct vm_area_struct *vma, *prev;
2903         unsigned long flags;
2904         struct rb_node **rb_link, *rb_parent;
2905         pgoff_t pgoff = addr >> PAGE_SHIFT;
2906         int error;
2907
2908         flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
2909
2910         error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
2911         if (offset_in_page(error))
2912                 return error;
2913
2914         error = mlock_future_check(mm, mm->def_flags, len);
2915         if (error)
2916                 return error;
2917
2918         /*
2919          * mm->mmap_sem is required to protect against another thread
2920          * changing the mappings in case we sleep.
2921          */
2922         verify_mm_writelocked(mm);
2923
2924         /*
2925          * Clear old maps.  this also does some error checking for us
2926          */
2927         while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
2928                               &rb_parent)) {
2929                 if (do_munmap(mm, addr, len))
2930                         return -ENOMEM;
2931         }
2932
2933         /* Check against address space limits *after* clearing old maps... */
2934         if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
2935                 return -ENOMEM;
2936
2937         if (mm->map_count > sysctl_max_map_count)
2938                 return -ENOMEM;
2939
2940         if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
2941                 return -ENOMEM;
2942
2943         /* Can we just expand an old private anonymous mapping? */
2944         vma = vma_merge(mm, prev, addr, addr + len, flags,
2945                         NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX);
2946         if (vma)
2947                 goto out;
2948
2949         /*
2950          * create a vma struct for an anonymous mapping
2951          */
2952         vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
2953         if (!vma) {
2954                 vm_unacct_memory(len >> PAGE_SHIFT);
2955                 return -ENOMEM;
2956         }
2957
2958         INIT_LIST_HEAD(&vma->anon_vma_chain);
2959         vma->vm_mm = mm;
2960         vma->vm_start = addr;
2961         vma->vm_end = addr + len;
2962         vma->vm_pgoff = pgoff;
2963         vma->vm_flags = flags;
2964         vma->vm_page_prot = vm_get_page_prot(flags);
2965         vma_link(mm, vma, prev, rb_link, rb_parent);
2966 out:
2967         perf_event_mmap(vma);
2968         mm->total_vm += len >> PAGE_SHIFT;
2969         mm->data_vm += len >> PAGE_SHIFT;
2970         if (flags & VM_LOCKED)
2971                 mm->locked_vm += (len >> PAGE_SHIFT);
2972         vma->vm_flags |= VM_SOFTDIRTY;
2973         return 0;
2974 }
2975
2976 int vm_brk(unsigned long addr, unsigned long request)
2977 {
2978         struct mm_struct *mm = current->mm;
2979         unsigned long len;
2980         int ret;
2981         bool populate;
2982
2983         len = PAGE_ALIGN(request);
2984         if (len < request)
2985                 return -ENOMEM;
2986         if (!len)
2987                 return 0;
2988
2989         if (down_write_killable(&mm->mmap_sem))
2990                 return -EINTR;
2991
2992         ret = do_brk(addr, len);
2993         populate = ((mm->def_flags & VM_LOCKED) != 0);
2994         up_write(&mm->mmap_sem);
2995         if (populate && !ret)
2996                 mm_populate(addr, len);
2997         return ret;
2998 }
2999 EXPORT_SYMBOL(vm_brk);
3000
3001 /* Release all mmaps. */
3002 void exit_mmap(struct mm_struct *mm)
3003 {
3004         struct mmu_gather tlb;
3005         struct vm_area_struct *vma;
3006         unsigned long nr_accounted = 0;
3007
3008         /* mm's last user has gone, and its about to be pulled down */
3009         mmu_notifier_release(mm);
3010
3011         if (mm->locked_vm) {
3012                 vma = mm->mmap;
3013                 while (vma) {
3014                         if (vma->vm_flags & VM_LOCKED)
3015                                 munlock_vma_pages_all(vma);
3016                         vma = vma->vm_next;
3017                 }
3018         }
3019
3020         arch_exit_mmap(mm);
3021
3022         vma = mm->mmap;
3023         if (!vma)       /* Can happen if dup_mmap() received an OOM */
3024                 return;
3025
3026         lru_add_drain();
3027         flush_cache_mm(mm);
3028         tlb_gather_mmu(&tlb, mm, 0, -1);
3029         /* update_hiwater_rss(mm) here? but nobody should be looking */
3030         /* Use -1 here to ensure all VMAs in the mm are unmapped */
3031         unmap_vmas(&tlb, vma, 0, -1);
3032
3033         free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
3034         tlb_finish_mmu(&tlb, 0, -1);
3035
3036         /*
3037          * Walk the list again, actually closing and freeing it,
3038          * with preemption enabled, without holding any MM locks.
3039          */
3040         while (vma) {
3041                 if (vma->vm_flags & VM_ACCOUNT)
3042                         nr_accounted += vma_pages(vma);
3043                 vma = remove_vma(vma);
3044                 cond_resched();
3045         }
3046         vm_unacct_memory(nr_accounted);
3047 }
3048
3049 /* Insert vm structure into process list sorted by address
3050  * and into the inode's i_mmap tree.  If vm_file is non-NULL
3051  * then i_mmap_rwsem is taken here.
3052  */
3053 int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
3054 {
3055         struct vm_area_struct *prev;
3056         struct rb_node **rb_link, *rb_parent;
3057
3058         if (find_vma_links(mm, vma->vm_start, vma->vm_end,
3059                            &prev, &rb_link, &rb_parent))
3060                 return -ENOMEM;
3061         if ((vma->vm_flags & VM_ACCOUNT) &&
3062              security_vm_enough_memory_mm(mm, vma_pages(vma)))
3063                 return -ENOMEM;
3064
3065         /*
3066          * The vm_pgoff of a purely anonymous vma should be irrelevant
3067          * until its first write fault, when page's anon_vma and index
3068          * are set.  But now set the vm_pgoff it will almost certainly
3069          * end up with (unless mremap moves it elsewhere before that
3070          * first wfault), so /proc/pid/maps tells a consistent story.
3071          *
3072          * By setting it to reflect the virtual start address of the
3073          * vma, merges and splits can happen in a seamless way, just
3074          * using the existing file pgoff checks and manipulations.
3075          * Similarly in do_mmap_pgoff and in do_brk.
3076          */
3077         if (vma_is_anonymous(vma)) {
3078                 BUG_ON(vma->anon_vma);
3079                 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
3080         }
3081
3082         vma_link(mm, vma, prev, rb_link, rb_parent);
3083         return 0;
3084 }
3085
3086 /*
3087  * Copy the vma structure to a new location in the same mm,
3088  * prior to moving page table entries, to effect an mremap move.
3089  */
3090 struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
3091         unsigned long addr, unsigned long len, pgoff_t pgoff,
3092         bool *need_rmap_locks)
3093 {
3094         struct vm_area_struct *vma = *vmap;
3095         unsigned long vma_start = vma->vm_start;
3096         struct mm_struct *mm = vma->vm_mm;
3097         struct vm_area_struct *new_vma, *prev;
3098         struct rb_node **rb_link, *rb_parent;
3099         bool faulted_in_anon_vma = true;
3100
3101         /*
3102          * If anonymous vma has not yet been faulted, update new pgoff
3103          * to match new location, to increase its chance of merging.
3104          */
3105         if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
3106                 pgoff = addr >> PAGE_SHIFT;
3107                 faulted_in_anon_vma = false;
3108         }
3109
3110         if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
3111                 return NULL;    /* should never get here */
3112         new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
3113                             vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
3114                             vma->vm_userfaultfd_ctx);
3115         if (new_vma) {
3116                 /*
3117                  * Source vma may have been merged into new_vma
3118                  */
3119                 if (unlikely(vma_start >= new_vma->vm_start &&
3120                              vma_start < new_vma->vm_end)) {
3121                         /*
3122                          * The only way we can get a vma_merge with
3123                          * self during an mremap is if the vma hasn't
3124                          * been faulted in yet and we were allowed to
3125                          * reset the dst vma->vm_pgoff to the
3126                          * destination address of the mremap to allow
3127                          * the merge to happen. mremap must change the
3128                          * vm_pgoff linearity between src and dst vmas
3129                          * (in turn preventing a vma_merge) to be
3130                          * safe. It is only safe to keep the vm_pgoff
3131                          * linear if there are no pages mapped yet.
3132                          */
3133                         VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
3134                         *vmap = vma = new_vma;
3135                 }
3136                 *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
3137         } else {
3138                 new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
3139                 if (!new_vma)
3140                         goto out;
3141                 *new_vma = *vma;
3142                 new_vma->vm_start = addr;
3143                 new_vma->vm_end = addr + len;
3144                 new_vma->vm_pgoff = pgoff;
3145                 if (vma_dup_policy(vma, new_vma))
3146                         goto out_free_vma;
3147                 INIT_LIST_HEAD(&new_vma->anon_vma_chain);
3148                 if (anon_vma_clone(new_vma, vma))
3149                         goto out_free_mempol;
3150                 if (new_vma->vm_file)
3151                         get_file(new_vma->vm_file);
3152                 if (new_vma->vm_ops && new_vma->vm_ops->open)
3153                         new_vma->vm_ops->open(new_vma);
3154                 vma_link(mm, new_vma, prev, rb_link, rb_parent);
3155                 *need_rmap_locks = false;
3156         }
3157         return new_vma;
3158
3159 out_free_mempol:
3160         mpol_put(vma_policy(new_vma));
3161 out_free_vma:
3162         kmem_cache_free(vm_area_cachep, new_vma);
3163 out:
3164         return NULL;
3165 }
3166
3167 /*
3168  * Return true if the calling process may expand its vm space by the passed
3169  * number of pages
3170  */
3171 bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3172 {
3173         if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
3174                 return false;
3175
3176         if (is_data_mapping(flags) &&
3177             mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3178                 /* Workaround for Valgrind */
3179                 if (rlimit(RLIMIT_DATA) == 0 &&
3180                     mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3181                         return true;
3182                 if (!ignore_rlimit_data) {
3183                         pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits or use boot option ignore_rlimit_data.\n",
3184                                      current->comm, current->pid,
3185                                      (mm->data_vm + npages) << PAGE_SHIFT,
3186                                      rlimit(RLIMIT_DATA));
3187                         return false;
3188                 }
3189         }
3190
3191         return true;
3192 }
3193
3194 void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
3195 {
3196         mm->total_vm += npages;
3197
3198         if (is_exec_mapping(flags))
3199                 mm->exec_vm += npages;
3200         else if (is_stack_mapping(flags))
3201                 mm->stack_vm += npages;
3202         else if (is_data_mapping(flags))
3203                 mm->data_vm += npages;
3204 }
3205
3206 static int special_mapping_fault(struct vm_area_struct *vma,
3207                                  struct vm_fault *vmf);
3208
3209 /*
3210  * Having a close hook prevents vma merging regardless of flags.
3211  */
3212 static void special_mapping_close(struct vm_area_struct *vma)
3213 {
3214 }
3215
3216 static const char *special_mapping_name(struct vm_area_struct *vma)
3217 {
3218         return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3219 }
3220
3221 static int special_mapping_mremap(struct vm_area_struct *new_vma)
3222 {
3223         struct vm_special_mapping *sm = new_vma->vm_private_data;
3224
3225         if (sm->mremap)
3226                 return sm->mremap(sm, new_vma);
3227         return 0;
3228 }
3229
3230 static const struct vm_operations_struct special_mapping_vmops = {
3231         .close = special_mapping_close,
3232         .fault = special_mapping_fault,
3233         .mremap = special_mapping_mremap,
3234         .name = special_mapping_name,
3235 };
3236
3237 static const struct vm_operations_struct legacy_special_mapping_vmops = {
3238         .close = special_mapping_close,
3239         .fault = special_mapping_fault,
3240 };
3241
3242 static int special_mapping_fault(struct vm_area_struct *vma,
3243                                 struct vm_fault *vmf)
3244 {
3245         pgoff_t pgoff;
3246         struct page **pages;
3247
3248         if (vma->vm_ops == &legacy_special_mapping_vmops) {
3249                 pages = vma->vm_private_data;
3250         } else {
3251                 struct vm_special_mapping *sm = vma->vm_private_data;
3252
3253                 if (sm->fault)
3254                         return sm->fault(sm, vma, vmf);
3255
3256                 pages = sm->pages;
3257         }
3258
3259         for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3260                 pgoff--;
3261
3262         if (*pages) {
3263                 struct page *page = *pages;
3264                 get_page(page);
3265                 vmf->page = page;
3266                 return 0;
3267         }
3268
3269         return VM_FAULT_SIGBUS;
3270 }
3271
3272 static struct vm_area_struct *__install_special_mapping(
3273         struct mm_struct *mm,
3274         unsigned long addr, unsigned long len,
3275         unsigned long vm_flags, void *priv,
3276         const struct vm_operations_struct *ops)
3277 {
3278         int ret;
3279         struct vm_area_struct *vma;
3280
3281         vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
3282         if (unlikely(vma == NULL))
3283                 return ERR_PTR(-ENOMEM);
3284
3285         INIT_LIST_HEAD(&vma->anon_vma_chain);
3286         vma->vm_mm = mm;
3287         vma->vm_start = addr;
3288         vma->vm_end = addr + len;
3289
3290         vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
3291         vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3292
3293         vma->vm_ops = ops;
3294         vma->vm_private_data = priv;
3295
3296         ret = insert_vm_struct(mm, vma);
3297         if (ret)
3298                 goto out;
3299
3300         vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3301
3302         perf_event_mmap(vma);
3303
3304         return vma;
3305
3306 out:
3307         kmem_cache_free(vm_area_cachep, vma);
3308         return ERR_PTR(ret);
3309 }
3310
3311 bool vma_is_special_mapping(const struct vm_area_struct *vma,
3312         const struct vm_special_mapping *sm)
3313 {
3314         return vma->vm_private_data == sm &&
3315                 (vma->vm_ops == &special_mapping_vmops ||
3316                  vma->vm_ops == &legacy_special_mapping_vmops);
3317 }
3318
3319 /*
3320  * Called with mm->mmap_sem held for writing.
3321  * Insert a new vma covering the given region, with the given flags.
3322  * Its pages are supplied by the given array of struct page *.
3323  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3324  * The region past the last page supplied will always produce SIGBUS.
3325  * The array pointer and the pages it points to are assumed to stay alive
3326  * for as long as this mapping might exist.
3327  */
3328 struct vm_area_struct *_install_special_mapping(
3329         struct mm_struct *mm,
3330         unsigned long addr, unsigned long len,
3331         unsigned long vm_flags, const struct vm_special_mapping *spec)
3332 {
3333         return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
3334                                         &special_mapping_vmops);
3335 }
3336
3337 int install_special_mapping(struct mm_struct *mm,
3338                             unsigned long addr, unsigned long len,
3339                             unsigned long vm_flags, struct page **pages)
3340 {
3341         struct vm_area_struct *vma = __install_special_mapping(
3342                 mm, addr, len, vm_flags, (void *)pages,
3343                 &legacy_special_mapping_vmops);
3344
3345         return PTR_ERR_OR_ZERO(vma);
3346 }
3347
3348 static DEFINE_MUTEX(mm_all_locks_mutex);
3349
3350 static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
3351 {
3352         if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
3353                 /*
3354                  * The LSB of head.next can't change from under us
3355                  * because we hold the mm_all_locks_mutex.
3356                  */
3357                 down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem);
3358                 /*
3359                  * We can safely modify head.next after taking the
3360                  * anon_vma->root->rwsem. If some other vma in this mm shares
3361                  * the same anon_vma we won't take it again.
3362                  *
3363                  * No need of atomic instructions here, head.next
3364                  * can't change from under us thanks to the
3365                  * anon_vma->root->rwsem.
3366                  */
3367                 if (__test_and_set_bit(0, (unsigned long *)
3368                                        &anon_vma->root->rb_root.rb_node))
3369                         BUG();
3370         }
3371 }
3372
3373 static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
3374 {
3375         if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3376                 /*
3377                  * AS_MM_ALL_LOCKS can't change from under us because
3378                  * we hold the mm_all_locks_mutex.
3379                  *
3380                  * Operations on ->flags have to be atomic because
3381                  * even if AS_MM_ALL_LOCKS is stable thanks to the
3382                  * mm_all_locks_mutex, there may be other cpus
3383                  * changing other bitflags in parallel to us.
3384                  */
3385                 if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
3386                         BUG();
3387                 down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem);
3388         }
3389 }
3390
3391 /*
3392  * This operation locks against the VM for all pte/vma/mm related
3393  * operations that could ever happen on a certain mm. This includes
3394  * vmtruncate, try_to_unmap, and all page faults.
3395  *
3396  * The caller must take the mmap_sem in write mode before calling
3397  * mm_take_all_locks(). The caller isn't allowed to release the
3398  * mmap_sem until mm_drop_all_locks() returns.
3399  *
3400  * mmap_sem in write mode is required in order to block all operations
3401  * that could modify pagetables and free pages without need of
3402  * altering the vma layout. It's also needed in write mode to avoid new
3403  * anon_vmas to be associated with existing vmas.
3404  *
3405  * A single task can't take more than one mm_take_all_locks() in a row
3406  * or it would deadlock.
3407  *
3408  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
3409  * mapping->flags avoid to take the same lock twice, if more than one
3410  * vma in this mm is backed by the same anon_vma or address_space.
3411  *
3412  * We take locks in following order, accordingly to comment at beginning
3413  * of mm/rmap.c:
3414  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
3415  *     hugetlb mapping);
3416  *   - all i_mmap_rwsem locks;
3417  *   - all anon_vma->rwseml
3418  *
3419  * We can take all locks within these types randomly because the VM code
3420  * doesn't nest them and we protected from parallel mm_take_all_locks() by
3421  * mm_all_locks_mutex.
3422  *
3423  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
3424  * that may have to take thousand of locks.
3425  *
3426  * mm_take_all_locks() can fail if it's interrupted by signals.
3427  */
3428 int mm_take_all_locks(struct mm_struct *mm)
3429 {
3430         struct vm_area_struct *vma;
3431         struct anon_vma_chain *avc;
3432
3433         BUG_ON(down_read_trylock(&mm->mmap_sem));
3434
3435         mutex_lock(&mm_all_locks_mutex);
3436
3437         for (vma = mm->mmap; vma; vma = vma->vm_next) {
3438                 if (signal_pending(current))
3439                         goto out_unlock;
3440                 if (vma->vm_file && vma->vm_file->f_mapping &&
3441                                 is_vm_hugetlb_page(vma))
3442                         vm_lock_mapping(mm, vma->vm_file->f_mapping);
3443         }
3444
3445         for (vma = mm->mmap; vma; vma = vma->vm_next) {
3446                 if (signal_pending(current))
3447                         goto out_unlock;
3448                 if (vma->vm_file && vma->vm_file->f_mapping &&
3449                                 !is_vm_hugetlb_page(vma))
3450                         vm_lock_mapping(mm, vma->vm_file->f_mapping);
3451         }
3452
3453         for (vma = mm->mmap; vma; vma = vma->vm_next) {
3454                 if (signal_pending(current))
3455                         goto out_unlock;
3456                 if (vma->anon_vma)
3457                         list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3458                                 vm_lock_anon_vma(mm, avc->anon_vma);
3459         }
3460
3461         return 0;
3462
3463 out_unlock:
3464         mm_drop_all_locks(mm);
3465         return -EINTR;
3466 }
3467
3468 static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
3469 {
3470         if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
3471                 /*
3472                  * The LSB of head.next can't change to 0 from under
3473                  * us because we hold the mm_all_locks_mutex.
3474                  *
3475                  * We must however clear the bitflag before unlocking
3476                  * the vma so the users using the anon_vma->rb_root will
3477                  * never see our bitflag.
3478                  *
3479                  * No need of atomic instructions here, head.next
3480                  * can't change from under us until we release the
3481                  * anon_vma->root->rwsem.
3482                  */
3483                 if (!__test_and_clear_bit(0, (unsigned long *)
3484                                           &anon_vma->root->rb_root.rb_node))
3485                         BUG();
3486                 anon_vma_unlock_write(anon_vma);
3487         }
3488 }
3489
3490 static void vm_unlock_mapping(struct address_space *mapping)
3491 {
3492         if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3493                 /*
3494                  * AS_MM_ALL_LOCKS can't change to 0 from under us
3495                  * because we hold the mm_all_locks_mutex.
3496                  */
3497                 i_mmap_unlock_write(mapping);
3498                 if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
3499                                         &mapping->flags))
3500                         BUG();
3501         }
3502 }
3503
3504 /*
3505  * The mmap_sem cannot be released by the caller until
3506  * mm_drop_all_locks() returns.
3507  */
3508 void mm_drop_all_locks(struct mm_struct *mm)
3509 {
3510         struct vm_area_struct *vma;
3511         struct anon_vma_chain *avc;
3512
3513         BUG_ON(down_read_trylock(&mm->mmap_sem));
3514         BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
3515
3516         for (vma = mm->mmap; vma; vma = vma->vm_next) {
3517                 if (vma->anon_vma)
3518                         list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3519                                 vm_unlock_anon_vma(avc->anon_vma);
3520                 if (vma->vm_file && vma->vm_file->f_mapping)
3521                         vm_unlock_mapping(vma->vm_file->f_mapping);
3522         }
3523
3524         mutex_unlock(&mm_all_locks_mutex);
3525 }
3526
3527 /*
3528  * initialise the VMA slab
3529  */
3530 void __init mmap_init(void)
3531 {
3532         int ret;
3533
3534         ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
3535         VM_BUG_ON(ret);
3536 }
3537
3538 /*
3539  * Initialise sysctl_user_reserve_kbytes.
3540  *
3541  * This is intended to prevent a user from starting a single memory hogging
3542  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3543  * mode.
3544  *
3545  * The default value is min(3% of free memory, 128MB)
3546  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3547  */
3548 static int init_user_reserve(void)
3549 {
3550         unsigned long free_kbytes;
3551
3552         free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3553
3554         sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3555         return 0;
3556 }
3557 subsys_initcall(init_user_reserve);
3558
3559 /*
3560  * Initialise sysctl_admin_reserve_kbytes.
3561  *
3562  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
3563  * to log in and kill a memory hogging process.
3564  *
3565  * Systems with more than 256MB will reserve 8MB, enough to recover
3566  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
3567  * only reserve 3% of free pages by default.
3568  */
3569 static int init_admin_reserve(void)
3570 {
3571         unsigned long free_kbytes;
3572
3573         free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3574
3575         sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
3576         return 0;
3577 }
3578 subsys_initcall(init_admin_reserve);
3579
3580 /*
3581  * Reinititalise user and admin reserves if memory is added or removed.
3582  *
3583  * The default user reserve max is 128MB, and the default max for the
3584  * admin reserve is 8MB. These are usually, but not always, enough to
3585  * enable recovery from a memory hogging process using login/sshd, a shell,
3586  * and tools like top. It may make sense to increase or even disable the
3587  * reserve depending on the existence of swap or variations in the recovery
3588  * tools. So, the admin may have changed them.
3589  *
3590  * If memory is added and the reserves have been eliminated or increased above
3591  * the default max, then we'll trust the admin.
3592  *
3593  * If memory is removed and there isn't enough free memory, then we
3594  * need to reset the reserves.
3595  *
3596  * Otherwise keep the reserve set by the admin.
3597  */
3598 static int reserve_mem_notifier(struct notifier_block *nb,
3599                              unsigned long action, void *data)
3600 {
3601         unsigned long tmp, free_kbytes;
3602
3603         switch (action) {
3604         case MEM_ONLINE:
3605                 /* Default max is 128MB. Leave alone if modified by operator. */
3606                 tmp = sysctl_user_reserve_kbytes;
3607                 if (0 < tmp && tmp < (1UL << 17))
3608                         init_user_reserve();
3609
3610                 /* Default max is 8MB.  Leave alone if modified by operator. */
3611                 tmp = sysctl_admin_reserve_kbytes;
3612                 if (0 < tmp && tmp < (1UL << 13))
3613                         init_admin_reserve();
3614
3615                 break;
3616         case MEM_OFFLINE:
3617                 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3618
3619                 if (sysctl_user_reserve_kbytes > free_kbytes) {
3620                         init_user_reserve();
3621                         pr_info("vm.user_reserve_kbytes reset to %lu\n",
3622                                 sysctl_user_reserve_kbytes);
3623                 }
3624
3625                 if (sysctl_admin_reserve_kbytes > free_kbytes) {
3626                         init_admin_reserve();
3627                         pr_info("vm.admin_reserve_kbytes reset to %lu\n",
3628                                 sysctl_admin_reserve_kbytes);
3629                 }
3630                 break;
3631         default:
3632                 break;
3633         }
3634         return NOTIFY_OK;
3635 }
3636
3637 static struct notifier_block reserve_mem_nb = {
3638         .notifier_call = reserve_mem_notifier,
3639 };
3640
3641 static int __meminit init_reserve_notifier(void)
3642 {
3643         if (register_hotmemory_notifier(&reserve_mem_nb))
3644                 pr_err("Failed registering memory add/remove notifier for admin reserve\n");
3645
3646         return 0;
3647 }
3648 subsys_initcall(init_reserve_notifier);