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