xref: /openbmc/linux/mm/mmap.c (revision 29417d29)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  * mm/mmap.c
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  * Written by obz.
61da177e4SLinus Torvalds  *
7046c6884SAlan Cox  * Address space accounting code	<alan@lxorguk.ukuu.org.uk>
81da177e4SLinus Torvalds  */
91da177e4SLinus Torvalds 
10b1de0d13SMitchel Humpherys #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11b1de0d13SMitchel Humpherys 
12e8420a8eSCyril Hrubis #include <linux/kernel.h>
131da177e4SLinus Torvalds #include <linux/slab.h>
144af3c9ccSAlexey Dobriyan #include <linux/backing-dev.h>
151da177e4SLinus Torvalds #include <linux/mm.h>
1617fca131SArnd Bergmann #include <linux/mm_inline.h>
171da177e4SLinus Torvalds #include <linux/shm.h>
181da177e4SLinus Torvalds #include <linux/mman.h>
191da177e4SLinus Torvalds #include <linux/pagemap.h>
201da177e4SLinus Torvalds #include <linux/swap.h>
211da177e4SLinus Torvalds #include <linux/syscalls.h>
22c59ede7bSRandy.Dunlap #include <linux/capability.h>
231da177e4SLinus Torvalds #include <linux/init.h>
241da177e4SLinus Torvalds #include <linux/file.h>
251da177e4SLinus Torvalds #include <linux/fs.h>
261da177e4SLinus Torvalds #include <linux/personality.h>
271da177e4SLinus Torvalds #include <linux/security.h>
281da177e4SLinus Torvalds #include <linux/hugetlb.h>
29c01d5b30SHugh Dickins #include <linux/shmem_fs.h>
301da177e4SLinus Torvalds #include <linux/profile.h>
31b95f1b31SPaul Gortmaker #include <linux/export.h>
321da177e4SLinus Torvalds #include <linux/mount.h>
331da177e4SLinus Torvalds #include <linux/mempolicy.h>
341da177e4SLinus Torvalds #include <linux/rmap.h>
35cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
3682f71ae4SKonstantin Khlebnikov #include <linux/mmdebug.h>
37cdd6c482SIngo Molnar #include <linux/perf_event.h>
38120a795dSAl Viro #include <linux/audit.h>
39b15d00b6SAndrea Arcangeli #include <linux/khugepaged.h>
402b144498SSrikar Dronamraju #include <linux/uprobes.h>
411640879aSAndrew Shewmaker #include <linux/notifier.h>
421640879aSAndrew Shewmaker #include <linux/memory.h>
43b1de0d13SMitchel Humpherys #include <linux/printk.h>
4419a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h>
45d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h>
4662b5f7d0SDave Hansen #include <linux/pkeys.h>
4721292580SAndrea Arcangeli #include <linux/oom.h>
4804f5866eSAndrea Arcangeli #include <linux/sched/mm.h>
49d7597f59SStefan Roesch #include <linux/ksm.h>
501da177e4SLinus Torvalds 
517c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
521da177e4SLinus Torvalds #include <asm/cacheflush.h>
531da177e4SLinus Torvalds #include <asm/tlb.h>
54d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h>
551da177e4SLinus Torvalds 
56df529cabSJaewon Kim #define CREATE_TRACE_POINTS
57df529cabSJaewon Kim #include <trace/events/mmap.h>
58df529cabSJaewon Kim 
5942b77728SJan Beulich #include "internal.h"
6042b77728SJan Beulich 
613a459756SKirill Korotaev #ifndef arch_mmap_check
623a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags)	(0)
633a459756SKirill Korotaev #endif
643a459756SKirill Korotaev 
65d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
66d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN;
67d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX;
68d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS;
69d07e2259SDaniel Cashman #endif
70d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
71d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN;
72d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX;
73d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS;
74d07e2259SDaniel Cashman #endif
75d07e2259SDaniel Cashman 
76f4fcd558SKonstantin Khlebnikov static bool ignore_rlimit_data;
77d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644);
78d07e2259SDaniel Cashman 
79763ecb03SLiam R. Howlett static void unmap_region(struct mm_struct *mm, struct maple_tree *mt,
80e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
81763ecb03SLiam R. Howlett 		struct vm_area_struct *next, unsigned long start,
8268f48381SSuren Baghdasaryan 		unsigned long end, bool mm_wr_locked);
83e0da382cSHugh Dickins 
8464e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
8564e45507SPeter Feiner {
8664e45507SPeter Feiner 	return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
8764e45507SPeter Feiner }
8864e45507SPeter Feiner 
8964e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */
9064e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma)
9164e45507SPeter Feiner {
9264e45507SPeter Feiner 	unsigned long vm_flags = vma->vm_flags;
936d2329f8SAndrea Arcangeli 	pgprot_t vm_page_prot;
9464e45507SPeter Feiner 
956d2329f8SAndrea Arcangeli 	vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
966d2329f8SAndrea Arcangeli 	if (vma_wants_writenotify(vma, vm_page_prot)) {
9764e45507SPeter Feiner 		vm_flags &= ~VM_SHARED;
986d2329f8SAndrea Arcangeli 		vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
9964e45507SPeter Feiner 	}
100c1e8d7c6SMichel Lespinasse 	/* remove_protection_ptes reads vma->vm_page_prot without mmap_lock */
1016d2329f8SAndrea Arcangeli 	WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
10264e45507SPeter Feiner }
10364e45507SPeter Feiner 
1041da177e4SLinus Torvalds /*
105c8c06efaSDavidlohr Bueso  * Requires inode->i_mapping->i_mmap_rwsem
1061da177e4SLinus Torvalds  */
1071da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma,
1081da177e4SLinus Torvalds 		struct file *file, struct address_space *mapping)
1091da177e4SLinus Torvalds {
1101da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
1114bb5f5d9SDavid Herrmann 		mapping_unmap_writable(mapping);
1121da177e4SLinus Torvalds 
1131da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
1146b2dbba8SMichel Lespinasse 	vma_interval_tree_remove(vma, &mapping->i_mmap);
1151da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
1161da177e4SLinus Torvalds }
1171da177e4SLinus Torvalds 
1181da177e4SLinus Torvalds /*
1196b2dbba8SMichel Lespinasse  * Unlink a file-based vm structure from its interval tree, to hide
120a8fb5618SHugh Dickins  * vma from rmap and vmtruncate before freeing its page tables.
1211da177e4SLinus Torvalds  */
122a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma)
1231da177e4SLinus Torvalds {
1241da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
1251da177e4SLinus Torvalds 
1261da177e4SLinus Torvalds 	if (file) {
1271da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
12883cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
1291da177e4SLinus Torvalds 		__remove_shared_vm_struct(vma, file, mapping);
13083cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
1311da177e4SLinus Torvalds 	}
132a8fb5618SHugh Dickins }
133a8fb5618SHugh Dickins 
134a8fb5618SHugh Dickins /*
135763ecb03SLiam R. Howlett  * Close a vm structure and free it.
136a8fb5618SHugh Dickins  */
1370d2ebf9cSSuren Baghdasaryan static void remove_vma(struct vm_area_struct *vma, bool unreachable)
138a8fb5618SHugh Dickins {
139a8fb5618SHugh Dickins 	might_sleep();
1401da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
1411da177e4SLinus Torvalds 		vma->vm_ops->close(vma);
142e9714acfSKonstantin Khlebnikov 	if (vma->vm_file)
143a8fb5618SHugh Dickins 		fput(vma->vm_file);
144f0be3d32SLee Schermerhorn 	mpol_put(vma_policy(vma));
1450d2ebf9cSSuren Baghdasaryan 	if (unreachable)
1460d2ebf9cSSuren Baghdasaryan 		__vm_area_free(vma);
1470d2ebf9cSSuren Baghdasaryan 	else
1483928d4f5SLinus Torvalds 		vm_area_free(vma);
1491da177e4SLinus Torvalds }
1501da177e4SLinus Torvalds 
151b62b633eSLiam R. Howlett static inline struct vm_area_struct *vma_prev_limit(struct vma_iterator *vmi,
152b62b633eSLiam R. Howlett 						    unsigned long min)
153b62b633eSLiam R. Howlett {
154b62b633eSLiam R. Howlett 	return mas_prev(&vmi->mas, min);
155b62b633eSLiam R. Howlett }
156b62b633eSLiam R. Howlett 
157b62b633eSLiam R. Howlett static inline int vma_iter_clear_gfp(struct vma_iterator *vmi,
158b62b633eSLiam R. Howlett 			unsigned long start, unsigned long end, gfp_t gfp)
159b62b633eSLiam R. Howlett {
160b62b633eSLiam R. Howlett 	vmi->mas.index = start;
161b62b633eSLiam R. Howlett 	vmi->mas.last = end - 1;
162b62b633eSLiam R. Howlett 	mas_store_gfp(&vmi->mas, NULL, gfp);
163b62b633eSLiam R. Howlett 	if (unlikely(mas_is_err(&vmi->mas)))
164b62b633eSLiam R. Howlett 		return -ENOMEM;
165b62b633eSLiam R. Howlett 
166b62b633eSLiam R. Howlett 	return 0;
167b62b633eSLiam R. Howlett }
168b62b633eSLiam R. Howlett 
1692e7ce7d3SLiam R. Howlett /*
1702e7ce7d3SLiam R. Howlett  * check_brk_limits() - Use platform specific check of range & verify mlock
1712e7ce7d3SLiam R. Howlett  * limits.
1722e7ce7d3SLiam R. Howlett  * @addr: The address to check
1732e7ce7d3SLiam R. Howlett  * @len: The size of increase.
1742e7ce7d3SLiam R. Howlett  *
1752e7ce7d3SLiam R. Howlett  * Return: 0 on success.
1762e7ce7d3SLiam R. Howlett  */
1772e7ce7d3SLiam R. Howlett static int check_brk_limits(unsigned long addr, unsigned long len)
1782e7ce7d3SLiam R. Howlett {
1792e7ce7d3SLiam R. Howlett 	unsigned long mapped_addr;
1802e7ce7d3SLiam R. Howlett 
1812e7ce7d3SLiam R. Howlett 	mapped_addr = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
1822e7ce7d3SLiam R. Howlett 	if (IS_ERR_VALUE(mapped_addr))
1832e7ce7d3SLiam R. Howlett 		return mapped_addr;
1842e7ce7d3SLiam R. Howlett 
1852e7ce7d3SLiam R. Howlett 	return mlock_future_check(current->mm, current->mm->def_flags, len);
1862e7ce7d3SLiam R. Howlett }
18792fed820SLiam R. Howlett static int do_brk_flags(struct vma_iterator *vmi, struct vm_area_struct *brkvma,
188763ecb03SLiam R. Howlett 		unsigned long addr, unsigned long request, unsigned long flags);
1896a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
1901da177e4SLinus Torvalds {
1919bc8039eSYang Shi 	unsigned long newbrk, oldbrk, origbrk;
1921da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1932e7ce7d3SLiam R. Howlett 	struct vm_area_struct *brkvma, *next = NULL;
194a5b4592cSJiri Kosina 	unsigned long min_brk;
195128557ffSMichel Lespinasse 	bool populate;
1969bc8039eSYang Shi 	bool downgraded = false;
197897ab3e0SMike Rapoport 	LIST_HEAD(uf);
19892fed820SLiam R. Howlett 	struct vma_iterator vmi;
1991da177e4SLinus Torvalds 
200d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
201dc0ef0dfSMichal Hocko 		return -EINTR;
2021da177e4SLinus Torvalds 
2039bc8039eSYang Shi 	origbrk = mm->brk;
2049bc8039eSYang Shi 
205a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
2065520e894SJiri Kosina 	/*
2075520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
2085520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
2095520e894SJiri Kosina 	 * to be arbitrarily shifted
2105520e894SJiri Kosina 	 */
2114471a675SJiri Kosina 	if (current->brk_randomized)
2125520e894SJiri Kosina 		min_brk = mm->start_brk;
2135520e894SJiri Kosina 	else
2145520e894SJiri Kosina 		min_brk = mm->end_data;
215a5b4592cSJiri Kosina #else
216a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
217a5b4592cSJiri Kosina #endif
218a5b4592cSJiri Kosina 	if (brk < min_brk)
2191da177e4SLinus Torvalds 		goto out;
2201e624196SRam Gupta 
2211e624196SRam Gupta 	/*
2221e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
2231e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
2241e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
2251e624196SRam Gupta 	 * not page aligned -Ram Gupta
2261e624196SRam Gupta 	 */
2278764b338SCyrill Gorcunov 	if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
2288764b338SCyrill Gorcunov 			      mm->end_data, mm->start_data))
2291e624196SRam Gupta 		goto out;
2301e624196SRam Gupta 
2311da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
2321da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
2339bc8039eSYang Shi 	if (oldbrk == newbrk) {
2349bc8039eSYang Shi 		mm->brk = brk;
2359bc8039eSYang Shi 		goto success;
2369bc8039eSYang Shi 	}
2371da177e4SLinus Torvalds 
2389bc8039eSYang Shi 	/*
2399bc8039eSYang Shi 	 * Always allow shrinking brk.
24027b26701SLiam R. Howlett 	 * do_vma_munmap() may downgrade mmap_lock to read.
2419bc8039eSYang Shi 	 */
2421da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2439bc8039eSYang Shi 		int ret;
2449bc8039eSYang Shi 
2452e7ce7d3SLiam R. Howlett 		/* Search one past newbrk */
24692fed820SLiam R. Howlett 		vma_iter_init(&vmi, mm, newbrk);
24792fed820SLiam R. Howlett 		brkvma = vma_find(&vmi, oldbrk);
248f5ad5083SJason A. Donenfeld 		if (!brkvma || brkvma->vm_start >= oldbrk)
2492e7ce7d3SLiam R. Howlett 			goto out; /* mapping intersects with an existing non-brk vma. */
2509bc8039eSYang Shi 		/*
2512e7ce7d3SLiam R. Howlett 		 * mm->brk must be protected by write mmap_lock.
25227b26701SLiam R. Howlett 		 * do_vma_munmap() may downgrade the lock,  so update it
25327b26701SLiam R. Howlett 		 * before calling do_vma_munmap().
2549bc8039eSYang Shi 		 */
2559bc8039eSYang Shi 		mm->brk = brk;
25627b26701SLiam R. Howlett 		ret = do_vma_munmap(&vmi, brkvma, newbrk, oldbrk, &uf, true);
2572e7ce7d3SLiam R. Howlett 		if (ret == 1)  {
2582e7ce7d3SLiam R. Howlett 			downgraded = true;
2592e7ce7d3SLiam R. Howlett 			goto success;
2602e7ce7d3SLiam R. Howlett 		} else if (!ret)
2612e7ce7d3SLiam R. Howlett 			goto success;
2622e7ce7d3SLiam R. Howlett 
2639bc8039eSYang Shi 		mm->brk = origbrk;
2641da177e4SLinus Torvalds 		goto out;
2651da177e4SLinus Torvalds 	}
2661da177e4SLinus Torvalds 
2672e7ce7d3SLiam R. Howlett 	if (check_brk_limits(oldbrk, newbrk - oldbrk))
2682e7ce7d3SLiam R. Howlett 		goto out;
2692e7ce7d3SLiam R. Howlett 
2702e7ce7d3SLiam R. Howlett 	/*
2712e7ce7d3SLiam R. Howlett 	 * Only check if the next VMA is within the stack_guard_gap of the
2722e7ce7d3SLiam R. Howlett 	 * expansion area
2732e7ce7d3SLiam R. Howlett 	 */
27492fed820SLiam R. Howlett 	vma_iter_init(&vmi, mm, oldbrk);
27592fed820SLiam R. Howlett 	next = vma_find(&vmi, newbrk + PAGE_SIZE + stack_guard_gap);
2761be7107fSHugh Dickins 	if (next && newbrk + PAGE_SIZE > vm_start_gap(next))
2771da177e4SLinus Torvalds 		goto out;
2781da177e4SLinus Torvalds 
27992fed820SLiam R. Howlett 	brkvma = vma_prev_limit(&vmi, mm->start_brk);
2801da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
28192fed820SLiam R. Howlett 	if (do_brk_flags(&vmi, brkvma, oldbrk, newbrk - oldbrk, 0) < 0)
2821da177e4SLinus Torvalds 		goto out;
2832e7ce7d3SLiam R. Howlett 
2841da177e4SLinus Torvalds 	mm->brk = brk;
2859bc8039eSYang Shi 
2869bc8039eSYang Shi success:
287128557ffSMichel Lespinasse 	populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
2889bc8039eSYang Shi 	if (downgraded)
289d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2909bc8039eSYang Shi 	else
291d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
292897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
293128557ffSMichel Lespinasse 	if (populate)
294128557ffSMichel Lespinasse 		mm_populate(oldbrk, newbrk - oldbrk);
295128557ffSMichel Lespinasse 	return brk;
296128557ffSMichel Lespinasse 
2971da177e4SLinus Torvalds out:
298d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
299b7204006SAdrian Huang 	return origbrk;
3001da177e4SLinus Torvalds }
3011da177e4SLinus Torvalds 
302d4af56c5SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
303d4af56c5SLiam R. Howlett extern void mt_validate(struct maple_tree *mt);
304d4af56c5SLiam R. Howlett extern void mt_dump(const struct maple_tree *mt);
3051da177e4SLinus Torvalds 
306d4af56c5SLiam R. Howlett /* Validate the maple tree */
307d4af56c5SLiam R. Howlett static void validate_mm_mt(struct mm_struct *mm)
308d4af56c5SLiam R. Howlett {
309d4af56c5SLiam R. Howlett 	struct maple_tree *mt = &mm->mm_mt;
310763ecb03SLiam R. Howlett 	struct vm_area_struct *vma_mt;
311d4af56c5SLiam R. Howlett 
312d4af56c5SLiam R. Howlett 	MA_STATE(mas, mt, 0, 0);
313d4af56c5SLiam R. Howlett 
314d4af56c5SLiam R. Howlett 	mt_validate(&mm->mm_mt);
315d4af56c5SLiam R. Howlett 	mas_for_each(&mas, vma_mt, ULONG_MAX) {
316763ecb03SLiam R. Howlett 		if ((vma_mt->vm_start != mas.index) ||
317763ecb03SLiam R. Howlett 		    (vma_mt->vm_end - 1 != mas.last)) {
318d4af56c5SLiam R. Howlett 			pr_emerg("issue in %s\n", current->comm);
319d4af56c5SLiam R. Howlett 			dump_stack();
320d4af56c5SLiam R. Howlett 			dump_vma(vma_mt);
321d4af56c5SLiam R. Howlett 			pr_emerg("mt piv: %p %lu - %lu\n", vma_mt,
322d4af56c5SLiam R. Howlett 				 mas.index, mas.last);
323d4af56c5SLiam R. Howlett 			pr_emerg("mt vma: %p %lu - %lu\n", vma_mt,
324d4af56c5SLiam R. Howlett 				 vma_mt->vm_start, vma_mt->vm_end);
325d4af56c5SLiam R. Howlett 
326d4af56c5SLiam R. Howlett 			mt_dump(mas.tree);
327d4af56c5SLiam R. Howlett 			if (vma_mt->vm_end != mas.last + 1) {
328d4af56c5SLiam R. Howlett 				pr_err("vma: %p vma_mt %lu-%lu\tmt %lu-%lu\n",
329d4af56c5SLiam R. Howlett 						mm, vma_mt->vm_start, vma_mt->vm_end,
330d4af56c5SLiam R. Howlett 						mas.index, mas.last);
331d4af56c5SLiam R. Howlett 				mt_dump(mas.tree);
332d4af56c5SLiam R. Howlett 			}
333d4af56c5SLiam R. Howlett 			VM_BUG_ON_MM(vma_mt->vm_end != mas.last + 1, mm);
334d4af56c5SLiam R. Howlett 			if (vma_mt->vm_start != mas.index) {
335d4af56c5SLiam R. Howlett 				pr_err("vma: %p vma_mt %p %lu - %lu doesn't match\n",
336d4af56c5SLiam R. Howlett 						mm, vma_mt, vma_mt->vm_start, vma_mt->vm_end);
337d4af56c5SLiam R. Howlett 				mt_dump(mas.tree);
338d4af56c5SLiam R. Howlett 			}
339d4af56c5SLiam R. Howlett 			VM_BUG_ON_MM(vma_mt->vm_start != mas.index, mm);
340d4af56c5SLiam R. Howlett 		}
341d4af56c5SLiam R. Howlett 	}
342d4af56c5SLiam R. Howlett }
3431da177e4SLinus Torvalds 
344eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm)
3451da177e4SLinus Torvalds {
3461da177e4SLinus Torvalds 	int bug = 0;
3471da177e4SLinus Torvalds 	int i = 0;
348763ecb03SLiam R. Howlett 	struct vm_area_struct *vma;
349763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
350ff26f70fSAndrew Morton 
351524e00b3SLiam R. Howlett 	validate_mm_mt(mm);
352524e00b3SLiam R. Howlett 
353763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
354524e00b3SLiam R. Howlett #ifdef CONFIG_DEBUG_VM_RB
35512352d3cSKonstantin Khlebnikov 		struct anon_vma *anon_vma = vma->anon_vma;
356ed8ea815SMichel Lespinasse 		struct anon_vma_chain *avc;
357ff26f70fSAndrew Morton 
35812352d3cSKonstantin Khlebnikov 		if (anon_vma) {
35912352d3cSKonstantin Khlebnikov 			anon_vma_lock_read(anon_vma);
360ed8ea815SMichel Lespinasse 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
361ed8ea815SMichel Lespinasse 				anon_vma_interval_tree_verify(avc);
36212352d3cSKonstantin Khlebnikov 			anon_vma_unlock_read(anon_vma);
36312352d3cSKonstantin Khlebnikov 		}
364524e00b3SLiam R. Howlett #endif
3651da177e4SLinus Torvalds 		i++;
3661da177e4SLinus Torvalds 	}
3675a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
368763ecb03SLiam R. Howlett 		pr_emerg("map_count %d mas_for_each %d\n", mm->map_count, i);
3695a0768f6SMichel Lespinasse 		bug = 1;
3705a0768f6SMichel Lespinasse 	}
37196dad67fSSasha Levin 	VM_BUG_ON_MM(bug, mm);
3721da177e4SLinus Torvalds }
373524e00b3SLiam R. Howlett 
374524e00b3SLiam R. Howlett #else /* !CONFIG_DEBUG_VM_MAPLE_TREE */
375d4af56c5SLiam R. Howlett #define validate_mm_mt(root) do { } while (0)
3761da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
377524e00b3SLiam R. Howlett #endif /* CONFIG_DEBUG_VM_MAPLE_TREE */
378d3737187SMichel Lespinasse 
379bf181b9fSMichel Lespinasse /*
380bf181b9fSMichel Lespinasse  * vma has some anon_vma assigned, and is already inserted on that
381bf181b9fSMichel Lespinasse  * anon_vma's interval trees.
382bf181b9fSMichel Lespinasse  *
383bf181b9fSMichel Lespinasse  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
384bf181b9fSMichel Lespinasse  * vma must be removed from the anon_vma's interval trees using
385bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_pre_update_vma().
386bf181b9fSMichel Lespinasse  *
387bf181b9fSMichel Lespinasse  * After the update, the vma will be reinserted using
388bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_post_update_vma().
389bf181b9fSMichel Lespinasse  *
390c1e8d7c6SMichel Lespinasse  * The entire update must be protected by exclusive mmap_lock and by
391bf181b9fSMichel Lespinasse  * the root anon_vma's mutex.
392bf181b9fSMichel Lespinasse  */
393bf181b9fSMichel Lespinasse static inline void
394bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
395bf181b9fSMichel Lespinasse {
396bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
397bf181b9fSMichel Lespinasse 
398bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
399bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
400bf181b9fSMichel Lespinasse }
401bf181b9fSMichel Lespinasse 
402bf181b9fSMichel Lespinasse static inline void
403bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
404bf181b9fSMichel Lespinasse {
405bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
406bf181b9fSMichel Lespinasse 
407bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
408bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
409bf181b9fSMichel Lespinasse }
410bf181b9fSMichel Lespinasse 
411e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm,
412e8420a8eSCyril Hrubis 		unsigned long addr, unsigned long end)
413e8420a8eSCyril Hrubis {
4142e3af1dbSMatthew Wilcox (Oracle) 	VMA_ITERATOR(vmi, mm, addr);
415e8420a8eSCyril Hrubis 	struct vm_area_struct *vma;
4162e3af1dbSMatthew Wilcox (Oracle) 	unsigned long nr_pages = 0;
417e8420a8eSCyril Hrubis 
4182e3af1dbSMatthew Wilcox (Oracle) 	for_each_vma_range(vmi, vma, end) {
4192e3af1dbSMatthew Wilcox (Oracle) 		unsigned long vm_start = max(addr, vma->vm_start);
4202e3af1dbSMatthew Wilcox (Oracle) 		unsigned long vm_end = min(end, vma->vm_end);
421e8420a8eSCyril Hrubis 
4222e3af1dbSMatthew Wilcox (Oracle) 		nr_pages += PHYS_PFN(vm_end - vm_start);
423e8420a8eSCyril Hrubis 	}
424e8420a8eSCyril Hrubis 
425e8420a8eSCyril Hrubis 	return nr_pages;
426e8420a8eSCyril Hrubis }
427e8420a8eSCyril Hrubis 
428c154124fSLiam R. Howlett static void __vma_link_file(struct vm_area_struct *vma,
429c154124fSLiam R. Howlett 			    struct address_space *mapping)
4301da177e4SLinus Torvalds {
4311da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
432cf508b58SMiaohe Lin 		mapping_allow_writable(mapping);
4331da177e4SLinus Torvalds 
4341da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
4356b2dbba8SMichel Lespinasse 	vma_interval_tree_insert(vma, &mapping->i_mmap);
4361da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
4371da177e4SLinus Torvalds }
4381da177e4SLinus Torvalds 
439763ecb03SLiam R. Howlett static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma)
4401da177e4SLinus Torvalds {
44179e4f2caSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, 0);
4421da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
4431da177e4SLinus Torvalds 
44479e4f2caSLiam R. Howlett 	if (vma_iter_prealloc(&vmi))
445d4af56c5SLiam R. Howlett 		return -ENOMEM;
446d4af56c5SLiam R. Howlett 
44764ac4940SHuang Shijie 	if (vma->vm_file) {
4481da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
44983cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
45064ac4940SHuang Shijie 	}
4511da177e4SLinus Torvalds 
45279e4f2caSLiam R. Howlett 	vma_iter_store(&vmi, vma);
4531da177e4SLinus Torvalds 
454c154124fSLiam R. Howlett 	if (mapping) {
455c154124fSLiam R. Howlett 		__vma_link_file(vma, mapping);
45683cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
457c154124fSLiam R. Howlett 	}
4581da177e4SLinus Torvalds 
4591da177e4SLinus Torvalds 	mm->map_count++;
4601da177e4SLinus Torvalds 	validate_mm(mm);
461d4af56c5SLiam R. Howlett 	return 0;
4621da177e4SLinus Torvalds }
4631da177e4SLinus Torvalds 
4641da177e4SLinus Torvalds /*
46568cefec5SLiam R. Howlett  * init_multi_vma_prep() - Initializer for struct vma_prepare
46668cefec5SLiam R. Howlett  * @vp: The vma_prepare struct
46768cefec5SLiam R. Howlett  * @vma: The vma that will be altered once locked
46868cefec5SLiam R. Howlett  * @next: The next vma if it is to be adjusted
46968cefec5SLiam R. Howlett  * @remove: The first vma to be removed
47068cefec5SLiam R. Howlett  * @remove2: The second vma to be removed
47168cefec5SLiam R. Howlett  */
47268cefec5SLiam R. Howlett static inline void init_multi_vma_prep(struct vma_prepare *vp,
47368cefec5SLiam R. Howlett 		struct vm_area_struct *vma, struct vm_area_struct *next,
47468cefec5SLiam R. Howlett 		struct vm_area_struct *remove, struct vm_area_struct *remove2)
47568cefec5SLiam R. Howlett {
47668cefec5SLiam R. Howlett 	memset(vp, 0, sizeof(struct vma_prepare));
47768cefec5SLiam R. Howlett 	vp->vma = vma;
47868cefec5SLiam R. Howlett 	vp->anon_vma = vma->anon_vma;
47968cefec5SLiam R. Howlett 	vp->remove = remove;
48068cefec5SLiam R. Howlett 	vp->remove2 = remove2;
48168cefec5SLiam R. Howlett 	vp->adj_next = next;
48268cefec5SLiam R. Howlett 	if (!vp->anon_vma && next)
48368cefec5SLiam R. Howlett 		vp->anon_vma = next->anon_vma;
48468cefec5SLiam R. Howlett 
48568cefec5SLiam R. Howlett 	vp->file = vma->vm_file;
48668cefec5SLiam R. Howlett 	if (vp->file)
48768cefec5SLiam R. Howlett 		vp->mapping = vma->vm_file->f_mapping;
48868cefec5SLiam R. Howlett 
48968cefec5SLiam R. Howlett }
49068cefec5SLiam R. Howlett 
49168cefec5SLiam R. Howlett /*
49268cefec5SLiam R. Howlett  * init_vma_prep() - Initializer wrapper for vma_prepare struct
49368cefec5SLiam R. Howlett  * @vp: The vma_prepare struct
49468cefec5SLiam R. Howlett  * @vma: The vma that will be altered once locked
49568cefec5SLiam R. Howlett  */
49668cefec5SLiam R. Howlett static inline void init_vma_prep(struct vma_prepare *vp,
49768cefec5SLiam R. Howlett 				 struct vm_area_struct *vma)
49868cefec5SLiam R. Howlett {
49968cefec5SLiam R. Howlett 	init_multi_vma_prep(vp, vma, NULL, NULL, NULL);
50068cefec5SLiam R. Howlett }
50168cefec5SLiam R. Howlett 
50268cefec5SLiam R. Howlett 
50368cefec5SLiam R. Howlett /*
504440703e0SLiam R. Howlett  * vma_prepare() - Helper function for handling locking VMAs prior to altering
505440703e0SLiam R. Howlett  * @vp: The initialized vma_prepare struct
506440703e0SLiam R. Howlett  */
507440703e0SLiam R. Howlett static inline void vma_prepare(struct vma_prepare *vp)
508440703e0SLiam R. Howlett {
50910fca64aSSuren Baghdasaryan 	vma_start_write(vp->vma);
51010fca64aSSuren Baghdasaryan 	if (vp->adj_next)
51110fca64aSSuren Baghdasaryan 		vma_start_write(vp->adj_next);
51210fca64aSSuren Baghdasaryan 	/* vp->insert is always a newly created VMA, no need for locking */
51310fca64aSSuren Baghdasaryan 	if (vp->remove)
51410fca64aSSuren Baghdasaryan 		vma_start_write(vp->remove);
51510fca64aSSuren Baghdasaryan 	if (vp->remove2)
51610fca64aSSuren Baghdasaryan 		vma_start_write(vp->remove2);
51710fca64aSSuren Baghdasaryan 
518440703e0SLiam R. Howlett 	if (vp->file) {
519440703e0SLiam R. Howlett 		uprobe_munmap(vp->vma, vp->vma->vm_start, vp->vma->vm_end);
520440703e0SLiam R. Howlett 
521440703e0SLiam R. Howlett 		if (vp->adj_next)
522440703e0SLiam R. Howlett 			uprobe_munmap(vp->adj_next, vp->adj_next->vm_start,
523440703e0SLiam R. Howlett 				      vp->adj_next->vm_end);
524440703e0SLiam R. Howlett 
525440703e0SLiam R. Howlett 		i_mmap_lock_write(vp->mapping);
526440703e0SLiam R. Howlett 		if (vp->insert && vp->insert->vm_file) {
527440703e0SLiam R. Howlett 			/*
528440703e0SLiam R. Howlett 			 * Put into interval tree now, so instantiated pages
529440703e0SLiam R. Howlett 			 * are visible to arm/parisc __flush_dcache_page
530440703e0SLiam R. Howlett 			 * throughout; but we cannot insert into address
531440703e0SLiam R. Howlett 			 * space until vma start or end is updated.
532440703e0SLiam R. Howlett 			 */
533440703e0SLiam R. Howlett 			__vma_link_file(vp->insert,
534440703e0SLiam R. Howlett 					vp->insert->vm_file->f_mapping);
535440703e0SLiam R. Howlett 		}
536440703e0SLiam R. Howlett 	}
537440703e0SLiam R. Howlett 
538440703e0SLiam R. Howlett 	if (vp->anon_vma) {
539440703e0SLiam R. Howlett 		anon_vma_lock_write(vp->anon_vma);
540440703e0SLiam R. Howlett 		anon_vma_interval_tree_pre_update_vma(vp->vma);
541440703e0SLiam R. Howlett 		if (vp->adj_next)
542440703e0SLiam R. Howlett 			anon_vma_interval_tree_pre_update_vma(vp->adj_next);
543440703e0SLiam R. Howlett 	}
544440703e0SLiam R. Howlett 
545440703e0SLiam R. Howlett 	if (vp->file) {
546440703e0SLiam R. Howlett 		flush_dcache_mmap_lock(vp->mapping);
547440703e0SLiam R. Howlett 		vma_interval_tree_remove(vp->vma, &vp->mapping->i_mmap);
548440703e0SLiam R. Howlett 		if (vp->adj_next)
549440703e0SLiam R. Howlett 			vma_interval_tree_remove(vp->adj_next,
550440703e0SLiam R. Howlett 						 &vp->mapping->i_mmap);
551440703e0SLiam R. Howlett 	}
552440703e0SLiam R. Howlett 
553440703e0SLiam R. Howlett }
554440703e0SLiam R. Howlett 
555440703e0SLiam R. Howlett /*
556440703e0SLiam R. Howlett  * vma_complete- Helper function for handling the unlocking after altering VMAs,
557440703e0SLiam R. Howlett  * or for inserting a VMA.
558440703e0SLiam R. Howlett  *
559440703e0SLiam R. Howlett  * @vp: The vma_prepare struct
560440703e0SLiam R. Howlett  * @vmi: The vma iterator
561440703e0SLiam R. Howlett  * @mm: The mm_struct
562440703e0SLiam R. Howlett  */
563440703e0SLiam R. Howlett static inline void vma_complete(struct vma_prepare *vp,
564440703e0SLiam R. Howlett 				struct vma_iterator *vmi, struct mm_struct *mm)
565440703e0SLiam R. Howlett {
566440703e0SLiam R. Howlett 	if (vp->file) {
567440703e0SLiam R. Howlett 		if (vp->adj_next)
568440703e0SLiam R. Howlett 			vma_interval_tree_insert(vp->adj_next,
569440703e0SLiam R. Howlett 						 &vp->mapping->i_mmap);
570440703e0SLiam R. Howlett 		vma_interval_tree_insert(vp->vma, &vp->mapping->i_mmap);
571440703e0SLiam R. Howlett 		flush_dcache_mmap_unlock(vp->mapping);
572440703e0SLiam R. Howlett 	}
573440703e0SLiam R. Howlett 
574440703e0SLiam R. Howlett 	if (vp->remove && vp->file) {
575440703e0SLiam R. Howlett 		__remove_shared_vm_struct(vp->remove, vp->file, vp->mapping);
576440703e0SLiam R. Howlett 		if (vp->remove2)
577440703e0SLiam R. Howlett 			__remove_shared_vm_struct(vp->remove2, vp->file,
578440703e0SLiam R. Howlett 						  vp->mapping);
579440703e0SLiam R. Howlett 	} else if (vp->insert) {
580440703e0SLiam R. Howlett 		/*
581440703e0SLiam R. Howlett 		 * split_vma has split insert from vma, and needs
582440703e0SLiam R. Howlett 		 * us to insert it before dropping the locks
583440703e0SLiam R. Howlett 		 * (it may either follow vma or precede it).
584440703e0SLiam R. Howlett 		 */
585440703e0SLiam R. Howlett 		vma_iter_store(vmi, vp->insert);
586440703e0SLiam R. Howlett 		mm->map_count++;
587440703e0SLiam R. Howlett 	}
588440703e0SLiam R. Howlett 
589440703e0SLiam R. Howlett 	if (vp->anon_vma) {
590440703e0SLiam R. Howlett 		anon_vma_interval_tree_post_update_vma(vp->vma);
591440703e0SLiam R. Howlett 		if (vp->adj_next)
592440703e0SLiam R. Howlett 			anon_vma_interval_tree_post_update_vma(vp->adj_next);
593440703e0SLiam R. Howlett 		anon_vma_unlock_write(vp->anon_vma);
594440703e0SLiam R. Howlett 	}
595440703e0SLiam R. Howlett 
596440703e0SLiam R. Howlett 	if (vp->file) {
597440703e0SLiam R. Howlett 		i_mmap_unlock_write(vp->mapping);
598440703e0SLiam R. Howlett 		uprobe_mmap(vp->vma);
599440703e0SLiam R. Howlett 
600440703e0SLiam R. Howlett 		if (vp->adj_next)
601440703e0SLiam R. Howlett 			uprobe_mmap(vp->adj_next);
602440703e0SLiam R. Howlett 	}
603440703e0SLiam R. Howlett 
604440703e0SLiam R. Howlett 	if (vp->remove) {
605440703e0SLiam R. Howlett again:
606457f67beSSuren Baghdasaryan 		vma_mark_detached(vp->remove, true);
607440703e0SLiam R. Howlett 		if (vp->file) {
608440703e0SLiam R. Howlett 			uprobe_munmap(vp->remove, vp->remove->vm_start,
609440703e0SLiam R. Howlett 				      vp->remove->vm_end);
610440703e0SLiam R. Howlett 			fput(vp->file);
611440703e0SLiam R. Howlett 		}
612440703e0SLiam R. Howlett 		if (vp->remove->anon_vma)
613440703e0SLiam R. Howlett 			anon_vma_merge(vp->vma, vp->remove);
614440703e0SLiam R. Howlett 		mm->map_count--;
615440703e0SLiam R. Howlett 		mpol_put(vma_policy(vp->remove));
616440703e0SLiam R. Howlett 		if (!vp->remove2)
617440703e0SLiam R. Howlett 			WARN_ON_ONCE(vp->vma->vm_end < vp->remove->vm_end);
618440703e0SLiam R. Howlett 		vm_area_free(vp->remove);
619440703e0SLiam R. Howlett 
620440703e0SLiam R. Howlett 		/*
621440703e0SLiam R. Howlett 		 * In mprotect's case 6 (see comments on vma_merge),
6225ff783f1SVlastimil Babka 		 * we are removing both mid and next vmas
623440703e0SLiam R. Howlett 		 */
624440703e0SLiam R. Howlett 		if (vp->remove2) {
625440703e0SLiam R. Howlett 			vp->remove = vp->remove2;
626440703e0SLiam R. Howlett 			vp->remove2 = NULL;
627440703e0SLiam R. Howlett 			goto again;
628440703e0SLiam R. Howlett 		}
629440703e0SLiam R. Howlett 	}
630440703e0SLiam R. Howlett 	if (vp->insert && vp->file)
631440703e0SLiam R. Howlett 		uprobe_mmap(vp->insert);
632440703e0SLiam R. Howlett }
633440703e0SLiam R. Howlett 
634440703e0SLiam R. Howlett /*
63504241ffeSLiam R. Howlett  * dup_anon_vma() - Helper function to duplicate anon_vma
63604241ffeSLiam R. Howlett  * @dst: The destination VMA
63704241ffeSLiam R. Howlett  * @src: The source VMA
63804241ffeSLiam R. Howlett  *
63904241ffeSLiam R. Howlett  * Returns: 0 on success.
64004241ffeSLiam R. Howlett  */
64104241ffeSLiam R. Howlett static inline int dup_anon_vma(struct vm_area_struct *dst,
64204241ffeSLiam R. Howlett 			       struct vm_area_struct *src)
64304241ffeSLiam R. Howlett {
64404241ffeSLiam R. Howlett 	/*
64504241ffeSLiam R. Howlett 	 * Easily overlooked: when mprotect shifts the boundary, make sure the
64604241ffeSLiam R. Howlett 	 * expanding vma has anon_vma set if the shrinking vma had, to cover any
64704241ffeSLiam R. Howlett 	 * anon pages imported.
64804241ffeSLiam R. Howlett 	 */
64904241ffeSLiam R. Howlett 	if (src->anon_vma && !dst->anon_vma) {
65004241ffeSLiam R. Howlett 		dst->anon_vma = src->anon_vma;
65104241ffeSLiam R. Howlett 		return anon_vma_clone(dst, src);
65204241ffeSLiam R. Howlett 	}
65304241ffeSLiam R. Howlett 
65404241ffeSLiam R. Howlett 	return 0;
65504241ffeSLiam R. Howlett }
65604241ffeSLiam R. Howlett 
65704241ffeSLiam R. Howlett /*
6589303d3e1SLiam R. Howlett  * vma_expand - Expand an existing VMA
6599303d3e1SLiam R. Howlett  *
6609303d3e1SLiam R. Howlett  * @vmi: The vma iterator
6619303d3e1SLiam R. Howlett  * @vma: The vma to expand
6629303d3e1SLiam R. Howlett  * @start: The start of the vma
6639303d3e1SLiam R. Howlett  * @end: The exclusive end of the vma
6649303d3e1SLiam R. Howlett  * @pgoff: The page offset of vma
6659303d3e1SLiam R. Howlett  * @next: The current of next vma.
6669303d3e1SLiam R. Howlett  *
6679303d3e1SLiam R. Howlett  * Expand @vma to @start and @end.  Can expand off the start and end.  Will
6689303d3e1SLiam R. Howlett  * expand over @next if it's different from @vma and @end == @next->vm_end.
6699303d3e1SLiam R. Howlett  * Checking if the @vma can expand and merge with @next needs to be handled by
6709303d3e1SLiam R. Howlett  * the caller.
6719303d3e1SLiam R. Howlett  *
6729303d3e1SLiam R. Howlett  * Returns: 0 on success
6739303d3e1SLiam R. Howlett  */
6747c9813e8SLiam R. Howlett int vma_expand(struct vma_iterator *vmi, struct vm_area_struct *vma,
6759303d3e1SLiam R. Howlett 	       unsigned long start, unsigned long end, pgoff_t pgoff,
6769303d3e1SLiam R. Howlett 	       struct vm_area_struct *next)
6779303d3e1SLiam R. Howlett {
67868cefec5SLiam R. Howlett 	bool remove_next = false;
6799303d3e1SLiam R. Howlett 	struct vma_prepare vp;
6809303d3e1SLiam R. Howlett 
6819303d3e1SLiam R. Howlett 	if (next && (vma != next) && (end == next->vm_end)) {
68204241ffeSLiam R. Howlett 		int ret;
6839303d3e1SLiam R. Howlett 
68404241ffeSLiam R. Howlett 		remove_next = true;
68504241ffeSLiam R. Howlett 		ret = dup_anon_vma(vma, next);
68604241ffeSLiam R. Howlett 		if (ret)
68704241ffeSLiam R. Howlett 			return ret;
6889303d3e1SLiam R. Howlett 	}
6899303d3e1SLiam R. Howlett 
69068cefec5SLiam R. Howlett 	init_multi_vma_prep(&vp, vma, NULL, remove_next ? next : NULL, NULL);
6919303d3e1SLiam R. Howlett 	/* Not merging but overwriting any part of next is not handled. */
6929303d3e1SLiam R. Howlett 	VM_WARN_ON(next && !vp.remove &&
6939303d3e1SLiam R. Howlett 		  next != vma && end > next->vm_start);
6949303d3e1SLiam R. Howlett 	/* Only handles expanding */
6959303d3e1SLiam R. Howlett 	VM_WARN_ON(vma->vm_start < start || vma->vm_end > end);
6969303d3e1SLiam R. Howlett 
6979303d3e1SLiam R. Howlett 	if (vma_iter_prealloc(vmi))
6989303d3e1SLiam R. Howlett 		goto nomem;
6999303d3e1SLiam R. Howlett 
700ccf1d78dSSuren Baghdasaryan 	vma_prepare(&vp);
7019303d3e1SLiam R. Howlett 	vma_adjust_trans_huge(vma, start, end, 0);
7029303d3e1SLiam R. Howlett 	/* VMA iterator points to previous, so set to start if necessary */
7039303d3e1SLiam R. Howlett 	if (vma_iter_addr(vmi) != start)
7049303d3e1SLiam R. Howlett 		vma_iter_set(vmi, start);
7059303d3e1SLiam R. Howlett 
7069303d3e1SLiam R. Howlett 	vma->vm_start = start;
7079303d3e1SLiam R. Howlett 	vma->vm_end = end;
7089303d3e1SLiam R. Howlett 	vma->vm_pgoff = pgoff;
7099303d3e1SLiam R. Howlett 	/* Note: mas must be pointing to the expanding VMA */
7109303d3e1SLiam R. Howlett 	vma_iter_store(vmi, vma);
7119303d3e1SLiam R. Howlett 
7129303d3e1SLiam R. Howlett 	vma_complete(&vp, vmi, vma->vm_mm);
7139303d3e1SLiam R. Howlett 	validate_mm(vma->vm_mm);
7149303d3e1SLiam R. Howlett 	return 0;
7159303d3e1SLiam R. Howlett 
7169303d3e1SLiam R. Howlett nomem:
7179303d3e1SLiam R. Howlett 	return -ENOMEM;
7189303d3e1SLiam R. Howlett }
719cf51e86dSLiam R. Howlett 
720cf51e86dSLiam R. Howlett /*
721cf51e86dSLiam R. Howlett  * vma_shrink() - Reduce an existing VMAs memory area
722cf51e86dSLiam R. Howlett  * @vmi: The vma iterator
723cf51e86dSLiam R. Howlett  * @vma: The VMA to modify
724cf51e86dSLiam R. Howlett  * @start: The new start
725cf51e86dSLiam R. Howlett  * @end: The new end
726cf51e86dSLiam R. Howlett  *
727cf51e86dSLiam R. Howlett  * Returns: 0 on success, -ENOMEM otherwise
728cf51e86dSLiam R. Howlett  */
729cf51e86dSLiam R. Howlett int vma_shrink(struct vma_iterator *vmi, struct vm_area_struct *vma,
730cf51e86dSLiam R. Howlett 	       unsigned long start, unsigned long end, pgoff_t pgoff)
731cf51e86dSLiam R. Howlett {
732cf51e86dSLiam R. Howlett 	struct vma_prepare vp;
733cf51e86dSLiam R. Howlett 
734cf51e86dSLiam R. Howlett 	WARN_ON((vma->vm_start != start) && (vma->vm_end != end));
735cf51e86dSLiam R. Howlett 
736cf51e86dSLiam R. Howlett 	if (vma_iter_prealloc(vmi))
737cf51e86dSLiam R. Howlett 		return -ENOMEM;
738cf51e86dSLiam R. Howlett 
739cf51e86dSLiam R. Howlett 	init_vma_prep(&vp, vma);
740cf51e86dSLiam R. Howlett 	vma_prepare(&vp);
741ccf1d78dSSuren Baghdasaryan 	vma_adjust_trans_huge(vma, start, end, 0);
742cf51e86dSLiam R. Howlett 
743cf51e86dSLiam R. Howlett 	if (vma->vm_start < start)
744cf51e86dSLiam R. Howlett 		vma_iter_clear(vmi, vma->vm_start, start);
745cf51e86dSLiam R. Howlett 
746cf51e86dSLiam R. Howlett 	if (vma->vm_end > end)
747cf51e86dSLiam R. Howlett 		vma_iter_clear(vmi, end, vma->vm_end);
748cf51e86dSLiam R. Howlett 
749cf51e86dSLiam R. Howlett 	vma->vm_start = start;
750cf51e86dSLiam R. Howlett 	vma->vm_end = end;
751cf51e86dSLiam R. Howlett 	vma->vm_pgoff = pgoff;
752cf51e86dSLiam R. Howlett 	vma_complete(&vp, vmi, vma->vm_mm);
753cf51e86dSLiam R. Howlett 	validate_mm(vma->vm_mm);
754cf51e86dSLiam R. Howlett 	return 0;
755cf51e86dSLiam R. Howlett }
756cf51e86dSLiam R. Howlett 
7579303d3e1SLiam R. Howlett /*
7581da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
759714965caSVlastimil Babka  * per-vma resources, so we don't attempt to merge those if the caller indicates
760714965caSVlastimil Babka  * the current vma may be removed as part of the merge.
7611da177e4SLinus Torvalds  */
7622dbf4010SVlastimil Babka static inline bool is_mergeable_vma(struct vm_area_struct *vma,
76319a809afSAndrea Arcangeli 		struct file *file, unsigned long vm_flags,
7649a10064fSColin Cross 		struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
765714965caSVlastimil Babka 		struct anon_vma_name *anon_name, bool may_remove_vma)
7661da177e4SLinus Torvalds {
76734228d47SCyrill Gorcunov 	/*
76834228d47SCyrill Gorcunov 	 * VM_SOFTDIRTY should not prevent from VMA merging, if we
76934228d47SCyrill Gorcunov 	 * match the flags but dirty bit -- the caller should mark
77034228d47SCyrill Gorcunov 	 * merged VMA as dirty. If dirty bit won't be excluded from
7718bb4e7a2SWei Yang 	 * comparison, we increase pressure on the memory system forcing
77234228d47SCyrill Gorcunov 	 * the kernel to generate new VMAs when old one could be
77334228d47SCyrill Gorcunov 	 * extended instead.
77434228d47SCyrill Gorcunov 	 */
77534228d47SCyrill Gorcunov 	if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
7762dbf4010SVlastimil Babka 		return false;
7771da177e4SLinus Torvalds 	if (vma->vm_file != file)
7782dbf4010SVlastimil Babka 		return false;
779714965caSVlastimil Babka 	if (may_remove_vma && vma->vm_ops && vma->vm_ops->close)
7802dbf4010SVlastimil Babka 		return false;
78119a809afSAndrea Arcangeli 	if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
7822dbf4010SVlastimil Babka 		return false;
7835c26f6acSSuren Baghdasaryan 	if (!anon_vma_name_eq(anon_vma_name(vma), anon_name))
7842dbf4010SVlastimil Babka 		return false;
7852dbf4010SVlastimil Babka 	return true;
7861da177e4SLinus Torvalds }
7871da177e4SLinus Torvalds 
7882dbf4010SVlastimil Babka static inline bool is_mergeable_anon_vma(struct anon_vma *anon_vma1,
7892dbf4010SVlastimil Babka 		 struct anon_vma *anon_vma2, struct vm_area_struct *vma)
7901da177e4SLinus Torvalds {
791965f55deSShaohua Li 	/*
792965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
793965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
794965f55deSShaohua Li 	 */
795965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
796965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
7972dbf4010SVlastimil Babka 		return true;
798965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
7991da177e4SLinus Torvalds }
8001da177e4SLinus Torvalds 
8011da177e4SLinus Torvalds /*
8021da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
8031da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
8041da177e4SLinus Torvalds  *
8051da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
8061da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
8071da177e4SLinus Torvalds  *
8081da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
80945e55300SPeter Collingbourne  * indices (16TB on ia32) because do_mmap() does not permit mmap's which
8101da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
811714965caSVlastimil Babka  *
812714965caSVlastimil Babka  * We assume the vma may be removed as part of the merge.
8131da177e4SLinus Torvalds  */
8142dbf4010SVlastimil Babka static bool
8151da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
81619a809afSAndrea Arcangeli 		struct anon_vma *anon_vma, struct file *file,
8172dbf4010SVlastimil Babka 		pgoff_t vm_pgoff, struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
8185c26f6acSSuren Baghdasaryan 		struct anon_vma_name *anon_name)
8191da177e4SLinus Torvalds {
820714965caSVlastimil Babka 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name, true) &&
821965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
8221da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
8232dbf4010SVlastimil Babka 			return true;
8241da177e4SLinus Torvalds 	}
8252dbf4010SVlastimil Babka 	return false;
8261da177e4SLinus Torvalds }
8271da177e4SLinus Torvalds 
8281da177e4SLinus Torvalds /*
8291da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
8301da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
8311da177e4SLinus Torvalds  *
8321da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
8331da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
834714965caSVlastimil Babka  *
835714965caSVlastimil Babka  * We assume that vma is not removed as part of the merge.
8361da177e4SLinus Torvalds  */
8372dbf4010SVlastimil Babka static bool
8381da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
83919a809afSAndrea Arcangeli 		struct anon_vma *anon_vma, struct file *file,
8402dbf4010SVlastimil Babka 		pgoff_t vm_pgoff, struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
8415c26f6acSSuren Baghdasaryan 		struct anon_vma_name *anon_name)
8421da177e4SLinus Torvalds {
843714965caSVlastimil Babka 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name, false) &&
844965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
8451da177e4SLinus Torvalds 		pgoff_t vm_pglen;
846d6e93217SLibin 		vm_pglen = vma_pages(vma);
8471da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
8482dbf4010SVlastimil Babka 			return true;
8491da177e4SLinus Torvalds 	}
8502dbf4010SVlastimil Babka 	return false;
8511da177e4SLinus Torvalds }
8521da177e4SLinus Torvalds 
8531da177e4SLinus Torvalds /*
8549a10064fSColin Cross  * Given a mapping request (addr,end,vm_flags,file,pgoff,anon_name),
8559a10064fSColin Cross  * figure out whether that can be merged with its predecessor or its
8569a10064fSColin Cross  * successor.  Or both (it neatly fills a hole).
8571da177e4SLinus Torvalds  *
8581da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
8591da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
8601da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
8611da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
8621da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
8631da177e4SLinus Torvalds  * case has already been eliminated.
8641da177e4SLinus Torvalds  *
865fcfccd91SLorenzo Stoakes  * The following mprotect cases have to be considered, where **** is
8661da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
867fcfccd91SLorenzo Stoakes  * vma, PPPP is the previous vma, CCCC is a concurrent vma that starts
868fcfccd91SLorenzo Stoakes  * at the same address as **** and is of the same or larger span, and
869fcfccd91SLorenzo Stoakes  * NNNN the next vma after ****:
8701da177e4SLinus Torvalds  *
871fcfccd91SLorenzo Stoakes  *     ****             ****                   ****
872fcfccd91SLorenzo Stoakes  *    PPPPPPNNNNNN    PPPPPPNNNNNN       PPPPPPCCCCCC
8735d42ab29SWei Yang  *    cannot merge    might become       might become
874fcfccd91SLorenzo Stoakes  *                    PPNNNNNNNNNN       PPPPPPPPPPCC
8755d42ab29SWei Yang  *    mmap, brk or    case 4 below       case 5 below
8765d42ab29SWei Yang  *    mremap move:
877fcfccd91SLorenzo Stoakes  *                        ****               ****
878fcfccd91SLorenzo Stoakes  *                    PPPP    NNNN       PPPPCCCCNNNN
8795d42ab29SWei Yang  *                    might become       might become
8805d42ab29SWei Yang  *                    PPPPPPPPPPPP 1 or  PPPPPPPPPPPP 6 or
881fcfccd91SLorenzo Stoakes  *                    PPPPPPPPNNNN 2 or  PPPPPPPPNNNN 7 or
882fcfccd91SLorenzo Stoakes  *                    PPPPNNNNNNNN 3     PPPPNNNNNNNN 8
8831da177e4SLinus Torvalds  *
884fcfccd91SLorenzo Stoakes  * It is important for case 8 that the vma CCCC overlapping the
885fcfccd91SLorenzo Stoakes  * region **** is never going to extended over NNNN. Instead NNNN must
886fcfccd91SLorenzo Stoakes  * be extended in region **** and CCCC must be removed. This way in
8870503ea8fSLiam R. Howlett  * all cases where vma_merge succeeds, the moment vma_merge drops the
888e86f15eeSAndrea Arcangeli  * rmap_locks, the properties of the merged vma will be already
889e86f15eeSAndrea Arcangeli  * correct for the whole merged range. Some of those properties like
890e86f15eeSAndrea Arcangeli  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
891e86f15eeSAndrea Arcangeli  * be correct for the whole merged range immediately after the
892fcfccd91SLorenzo Stoakes  * rmap_locks are released. Otherwise if NNNN would be removed and
893fcfccd91SLorenzo Stoakes  * CCCC would be extended over the NNNN range, remove_migration_ptes
894e86f15eeSAndrea Arcangeli  * or other rmap walkers (if working on addresses beyond the "end"
895fcfccd91SLorenzo Stoakes  * parameter) may establish ptes with the wrong permissions of CCCC
896fcfccd91SLorenzo Stoakes  * instead of the right permissions of NNNN.
8970503ea8fSLiam R. Howlett  *
8980503ea8fSLiam R. Howlett  * In the code below:
8990503ea8fSLiam R. Howlett  * PPPP is represented by *prev
900fcfccd91SLorenzo Stoakes  * CCCC is represented by *curr or not represented at all (NULL)
901fcfccd91SLorenzo Stoakes  * NNNN is represented by *next or not represented at all (NULL)
902fcfccd91SLorenzo Stoakes  * **** is not represented - it will be merged and the vma containing the
9039e8a39d2SVlastimil Babka  *      area is returned, or the function will return NULL
9041da177e4SLinus Torvalds  */
9059760ebffSLiam R. Howlett struct vm_area_struct *vma_merge(struct vma_iterator *vmi, struct mm_struct *mm,
9061da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
9071da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
9081da177e4SLinus Torvalds 			struct anon_vma *anon_vma, struct file *file,
90919a809afSAndrea Arcangeli 			pgoff_t pgoff, struct mempolicy *policy,
9109a10064fSColin Cross 			struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
9115c26f6acSSuren Baghdasaryan 			struct anon_vma_name *anon_name)
9121da177e4SLinus Torvalds {
913b0729ae0SLorenzo Stoakes 	struct vm_area_struct *curr, *next, *res;
9140503ea8fSLiam R. Howlett 	struct vm_area_struct *vma, *adjust, *remove, *remove2;
9150173db4fSLorenzo Stoakes 	struct vma_prepare vp;
9160173db4fSLorenzo Stoakes 	pgoff_t vma_pgoff;
9170173db4fSLorenzo Stoakes 	int err = 0;
918eef19944SJakub Matěna 	bool merge_prev = false;
919eef19944SJakub Matěna 	bool merge_next = false;
9200503ea8fSLiam R. Howlett 	bool vma_expanded = false;
9210503ea8fSLiam R. Howlett 	unsigned long vma_start = addr;
9220173db4fSLorenzo Stoakes 	unsigned long vma_end = end;
9230173db4fSLorenzo Stoakes 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
9240173db4fSLorenzo Stoakes 	long adj_start = 0;
9251da177e4SLinus Torvalds 
9260503ea8fSLiam R. Howlett 	validate_mm(mm);
9271da177e4SLinus Torvalds 	/*
9281da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
9291da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
9301da177e4SLinus Torvalds 	 */
9311da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
9321da177e4SLinus Torvalds 		return NULL;
9331da177e4SLinus Torvalds 
93400cd00a6SLorenzo Stoakes 	/* Does the input range span an existing VMA? (cases 5 - 8) */
93500cd00a6SLorenzo Stoakes 	curr = find_vma_intersection(mm, prev ? prev->vm_end : 0, end);
9361da177e4SLinus Torvalds 
93700cd00a6SLorenzo Stoakes 	if (!curr ||			/* cases 1 - 4 */
93800cd00a6SLorenzo Stoakes 	    end == curr->vm_end)	/* cases 6 - 8, adjacent VMA */
93900cd00a6SLorenzo Stoakes 		next = vma_lookup(mm, end);
94000cd00a6SLorenzo Stoakes 	else
94100cd00a6SLorenzo Stoakes 		next = NULL;		/* case 5 */
942e86f15eeSAndrea Arcangeli 
9430503ea8fSLiam R. Howlett 	if (prev) {
9440503ea8fSLiam R. Howlett 		vma_start = prev->vm_start;
9450503ea8fSLiam R. Howlett 		vma_pgoff = prev->vm_pgoff;
9460173db4fSLorenzo Stoakes 
947eef19944SJakub Matěna 		/* Can we merge the predecessor? */
9480173db4fSLorenzo Stoakes 		if (addr == prev->vm_end && mpol_equal(vma_policy(prev), policy)
9490503ea8fSLiam R. Howlett 		    && can_vma_merge_after(prev, vm_flags, anon_vma, file,
9500503ea8fSLiam R. Howlett 					   pgoff, vm_userfaultfd_ctx, anon_name)) {
951eef19944SJakub Matěna 			merge_prev = true;
95218b098afSLiam R. Howlett 			vma_prev(vmi);
9531da177e4SLinus Torvalds 		}
9540503ea8fSLiam R. Howlett 	}
955b0729ae0SLorenzo Stoakes 
956eef19944SJakub Matěna 	/* Can we merge the successor? */
95700cd00a6SLorenzo Stoakes 	if (next && mpol_equal(policy, vma_policy(next)) &&
9580173db4fSLorenzo Stoakes 	    can_vma_merge_before(next, vm_flags, anon_vma, file, pgoff+pglen,
9599a10064fSColin Cross 				 vm_userfaultfd_ctx, anon_name)) {
960eef19944SJakub Matěna 		merge_next = true;
961eef19944SJakub Matěna 	}
9620503ea8fSLiam R. Howlett 
963*29417d29SLorenzo Stoakes 	/* Verify some invariant that must be enforced by the caller. */
964*29417d29SLorenzo Stoakes 	VM_WARN_ON(prev && addr <= prev->vm_start);
965*29417d29SLorenzo Stoakes 	VM_WARN_ON(curr && (addr != curr->vm_start || end > curr->vm_end));
966*29417d29SLorenzo Stoakes 	VM_WARN_ON(addr >= end);
967*29417d29SLorenzo Stoakes 
9680173db4fSLorenzo Stoakes 	if (!merge_prev && !merge_next)
9690173db4fSLorenzo Stoakes 		return NULL; /* Not mergeable. */
9700173db4fSLorenzo Stoakes 
9710173db4fSLorenzo Stoakes 	res = vma = prev;
9720503ea8fSLiam R. Howlett 	remove = remove2 = adjust = NULL;
9730173db4fSLorenzo Stoakes 
974eef19944SJakub Matěna 	/* Can we merge both the predecessor and the successor? */
975eef19944SJakub Matěna 	if (merge_prev && merge_next &&
9760503ea8fSLiam R. Howlett 	    is_mergeable_anon_vma(prev->anon_vma, next->anon_vma, NULL)) {
9775ff783f1SVlastimil Babka 		remove = next;				/* case 1 */
9780503ea8fSLiam R. Howlett 		vma_end = next->vm_end;
97950dac011SVlastimil Babka 		err = dup_anon_vma(prev, next);
980fcfccd91SLorenzo Stoakes 		if (curr) {				/* case 6 */
981fcfccd91SLorenzo Stoakes 			remove = curr;
9820503ea8fSLiam R. Howlett 			remove2 = next;
9835ff783f1SVlastimil Babka 			if (!next->anon_vma)
984fcfccd91SLorenzo Stoakes 				err = dup_anon_vma(prev, curr);
9850503ea8fSLiam R. Howlett 		}
9860173db4fSLorenzo Stoakes 	} else if (merge_prev) {			/* case 2 */
987fcfccd91SLorenzo Stoakes 		if (curr) {
988fcfccd91SLorenzo Stoakes 			err = dup_anon_vma(prev, curr);
989fcfccd91SLorenzo Stoakes 			if (end == curr->vm_end) {	/* case 7 */
990fcfccd91SLorenzo Stoakes 				remove = curr;
9910503ea8fSLiam R. Howlett 			} else {			/* case 5 */
992fcfccd91SLorenzo Stoakes 				adjust = curr;
993fcfccd91SLorenzo Stoakes 				adj_start = (end - curr->vm_start);
9940503ea8fSLiam R. Howlett 			}
9950503ea8fSLiam R. Howlett 		}
9960173db4fSLorenzo Stoakes 	} else { /* merge_next */
997eef19944SJakub Matěna 		res = next;
9980503ea8fSLiam R. Howlett 		if (prev && addr < prev->vm_end) {	/* case 4 */
9990503ea8fSLiam R. Howlett 			vma_end = addr;
1000183b7a60SVlastimil Babka 			adjust = next;
10011e76454fSVlastimil Babka 			adj_start = -(prev->vm_end - addr);
1002183b7a60SVlastimil Babka 			err = dup_anon_vma(next, prev);
10030503ea8fSLiam R. Howlett 		} else {
1004b0729ae0SLorenzo Stoakes 			/*
1005b0729ae0SLorenzo Stoakes 			 * Note that cases 3 and 8 are the ONLY ones where prev
1006b0729ae0SLorenzo Stoakes 			 * is permitted to be (but is not necessarily) NULL.
1007b0729ae0SLorenzo Stoakes 			 */
10080503ea8fSLiam R. Howlett 			vma = next;			/* case 3 */
10090503ea8fSLiam R. Howlett 			vma_start = addr;
10100503ea8fSLiam R. Howlett 			vma_end = next->vm_end;
10117e775787SVlastimil Babka 			vma_pgoff = next->vm_pgoff - pglen;
1012fcfccd91SLorenzo Stoakes 			if (curr) {			/* case 8 */
1013fcfccd91SLorenzo Stoakes 				vma_pgoff = curr->vm_pgoff;
1014fcfccd91SLorenzo Stoakes 				remove = curr;
1015fcfccd91SLorenzo Stoakes 				err = dup_anon_vma(next, curr);
10160503ea8fSLiam R. Howlett 			}
10170503ea8fSLiam R. Howlett 		}
10181da177e4SLinus Torvalds 	}
10191da177e4SLinus Torvalds 
10200173db4fSLorenzo Stoakes 	/* Error in anon_vma clone. */
1021eef19944SJakub Matěna 	if (err)
10221da177e4SLinus Torvalds 		return NULL;
10230503ea8fSLiam R. Howlett 
10240503ea8fSLiam R. Howlett 	if (vma_iter_prealloc(vmi))
10250503ea8fSLiam R. Howlett 		return NULL;
10260503ea8fSLiam R. Howlett 
10270503ea8fSLiam R. Howlett 	init_multi_vma_prep(&vp, vma, adjust, remove, remove2);
10280503ea8fSLiam R. Howlett 	VM_WARN_ON(vp.anon_vma && adjust && adjust->anon_vma &&
10290503ea8fSLiam R. Howlett 		   vp.anon_vma != adjust->anon_vma);
10300503ea8fSLiam R. Howlett 
10310503ea8fSLiam R. Howlett 	vma_prepare(&vp);
1032ccf1d78dSSuren Baghdasaryan 	vma_adjust_trans_huge(vma, vma_start, vma_end, adj_start);
10330503ea8fSLiam R. Howlett 	if (vma_start < vma->vm_start || vma_end > vma->vm_end)
10340503ea8fSLiam R. Howlett 		vma_expanded = true;
10350503ea8fSLiam R. Howlett 
10360503ea8fSLiam R. Howlett 	vma->vm_start = vma_start;
10370503ea8fSLiam R. Howlett 	vma->vm_end = vma_end;
10380503ea8fSLiam R. Howlett 	vma->vm_pgoff = vma_pgoff;
10390503ea8fSLiam R. Howlett 
10400503ea8fSLiam R. Howlett 	if (vma_expanded)
10410503ea8fSLiam R. Howlett 		vma_iter_store(vmi, vma);
10420503ea8fSLiam R. Howlett 
10431e76454fSVlastimil Babka 	if (adj_start) {
10441e76454fSVlastimil Babka 		adjust->vm_start += adj_start;
10451e76454fSVlastimil Babka 		adjust->vm_pgoff += adj_start >> PAGE_SHIFT;
10461e76454fSVlastimil Babka 		if (adj_start < 0) {
10470503ea8fSLiam R. Howlett 			WARN_ON(vma_expanded);
10480503ea8fSLiam R. Howlett 			vma_iter_store(vmi, next);
10490503ea8fSLiam R. Howlett 		}
10500503ea8fSLiam R. Howlett 	}
10510503ea8fSLiam R. Howlett 
10520503ea8fSLiam R. Howlett 	vma_complete(&vp, vmi, mm);
10530503ea8fSLiam R. Howlett 	vma_iter_free(vmi);
10540503ea8fSLiam R. Howlett 	validate_mm(mm);
1055eef19944SJakub Matěna 	khugepaged_enter_vma(res, vm_flags);
10561da177e4SLinus Torvalds 
10579760ebffSLiam R. Howlett 	return res;
1058f2ebfe43SLiam R. Howlett }
1059f2ebfe43SLiam R. Howlett 
10601da177e4SLinus Torvalds /*
1061b4f315b4SEthon Paul  * Rough compatibility check to quickly see if it's even worth looking
1062d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
1063d0e9fe17SLinus Torvalds  *
1064d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
1065d0e9fe17SLinus Torvalds  * in things that mprotect may change.
1066d0e9fe17SLinus Torvalds  *
1067d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1068d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
1069d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
1070d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
1071d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
1072d0e9fe17SLinus Torvalds  */
1073d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1074d0e9fe17SLinus Torvalds {
1075d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
1076d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
1077d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
10786cb4d9a2SAnshuman Khandual 		!((a->vm_flags ^ b->vm_flags) & ~(VM_ACCESS_FLAGS | VM_SOFTDIRTY)) &&
1079d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1080d0e9fe17SLinus Torvalds }
1081d0e9fe17SLinus Torvalds 
1082d0e9fe17SLinus Torvalds /*
1083d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
1084d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1085d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
1086d0e9fe17SLinus Torvalds  * to share the anon_vma.
1087d0e9fe17SLinus Torvalds  *
10885b449489SFlorian Rommel  * NOTE! This runs with mmap_lock held for reading, so it is possible that
1089d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
1090d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
1091d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
1092d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
10934db0c3c2SJason Low  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1094d0e9fe17SLinus Torvalds  *
1095d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1096d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1097d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
1098d0e9fe17SLinus Torvalds  * a fork).
1099d0e9fe17SLinus Torvalds  *
1100d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
1101d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
11025b449489SFlorian Rommel  * a read lock on the mmap_lock.
1103d0e9fe17SLinus Torvalds  */
1104d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1105d0e9fe17SLinus Torvalds {
1106d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
11074db0c3c2SJason Low 		struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1108d0e9fe17SLinus Torvalds 
1109d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
1110d0e9fe17SLinus Torvalds 			return anon_vma;
1111d0e9fe17SLinus Torvalds 	}
1112d0e9fe17SLinus Torvalds 	return NULL;
1113d0e9fe17SLinus Torvalds }
1114d0e9fe17SLinus Torvalds 
1115d0e9fe17SLinus Torvalds /*
11161da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
11171da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
11181da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
11191da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
11201da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
11211da177e4SLinus Torvalds  * mprotect.
11221da177e4SLinus Torvalds  */
11231da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
11241da177e4SLinus Torvalds {
1125763ecb03SLiam R. Howlett 	MA_STATE(mas, &vma->vm_mm->mm_mt, vma->vm_end, vma->vm_end);
1126a67c8caaSMiaohe Lin 	struct anon_vma *anon_vma = NULL;
1127763ecb03SLiam R. Howlett 	struct vm_area_struct *prev, *next;
11281da177e4SLinus Torvalds 
1129a67c8caaSMiaohe Lin 	/* Try next first. */
1130763ecb03SLiam R. Howlett 	next = mas_walk(&mas);
1131763ecb03SLiam R. Howlett 	if (next) {
1132763ecb03SLiam R. Howlett 		anon_vma = reusable_anon_vma(next, vma, next);
1133d0e9fe17SLinus Torvalds 		if (anon_vma)
1134d0e9fe17SLinus Torvalds 			return anon_vma;
1135a67c8caaSMiaohe Lin 	}
11361da177e4SLinus Torvalds 
1137763ecb03SLiam R. Howlett 	prev = mas_prev(&mas, 0);
1138763ecb03SLiam R. Howlett 	VM_BUG_ON_VMA(prev != vma, vma);
1139763ecb03SLiam R. Howlett 	prev = mas_prev(&mas, 0);
1140a67c8caaSMiaohe Lin 	/* Try prev next. */
1141763ecb03SLiam R. Howlett 	if (prev)
1142763ecb03SLiam R. Howlett 		anon_vma = reusable_anon_vma(prev, prev, vma);
1143a67c8caaSMiaohe Lin 
11441da177e4SLinus Torvalds 	/*
1145a67c8caaSMiaohe Lin 	 * We might reach here with anon_vma == NULL if we can't find
1146a67c8caaSMiaohe Lin 	 * any reusable anon_vma.
11471da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
11481da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
11491da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
11501da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
11511da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
11521da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
11531da177e4SLinus Torvalds 	 */
1154a67c8caaSMiaohe Lin 	return anon_vma;
11551da177e4SLinus Torvalds }
11561da177e4SLinus Torvalds 
11571da177e4SLinus Torvalds /*
115840401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
115940401530SAl Viro  * low as possible but still greater than mmap_min_addr
116040401530SAl Viro  */
116140401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
116240401530SAl Viro {
116340401530SAl Viro 	hint &= PAGE_MASK;
116440401530SAl Viro 	if (((void *)hint != NULL) &&
116540401530SAl Viro 	    (hint < mmap_min_addr))
116640401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
116740401530SAl Viro 	return hint;
116840401530SAl Viro }
116940401530SAl Viro 
11706aeb2542SMike Rapoport int mlock_future_check(struct mm_struct *mm, unsigned long flags,
1171363ee17fSDavidlohr Bueso 		       unsigned long len)
1172363ee17fSDavidlohr Bueso {
1173363ee17fSDavidlohr Bueso 	unsigned long locked, lock_limit;
1174363ee17fSDavidlohr Bueso 
1175363ee17fSDavidlohr Bueso 	/*  mlock MCL_FUTURE? */
1176363ee17fSDavidlohr Bueso 	if (flags & VM_LOCKED) {
1177363ee17fSDavidlohr Bueso 		locked = len >> PAGE_SHIFT;
1178363ee17fSDavidlohr Bueso 		locked += mm->locked_vm;
1179363ee17fSDavidlohr Bueso 		lock_limit = rlimit(RLIMIT_MEMLOCK);
1180363ee17fSDavidlohr Bueso 		lock_limit >>= PAGE_SHIFT;
1181363ee17fSDavidlohr Bueso 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1182363ee17fSDavidlohr Bueso 			return -EAGAIN;
1183363ee17fSDavidlohr Bueso 	}
1184363ee17fSDavidlohr Bueso 	return 0;
1185363ee17fSDavidlohr Bueso }
1186363ee17fSDavidlohr Bueso 
1187be83bbf8SLinus Torvalds static inline u64 file_mmap_size_max(struct file *file, struct inode *inode)
1188be83bbf8SLinus Torvalds {
1189be83bbf8SLinus Torvalds 	if (S_ISREG(inode->i_mode))
1190423913adSLinus Torvalds 		return MAX_LFS_FILESIZE;
1191be83bbf8SLinus Torvalds 
1192be83bbf8SLinus Torvalds 	if (S_ISBLK(inode->i_mode))
1193be83bbf8SLinus Torvalds 		return MAX_LFS_FILESIZE;
1194be83bbf8SLinus Torvalds 
119576f34950SIvan Khoronzhuk 	if (S_ISSOCK(inode->i_mode))
119676f34950SIvan Khoronzhuk 		return MAX_LFS_FILESIZE;
119776f34950SIvan Khoronzhuk 
1198be83bbf8SLinus Torvalds 	/* Special "we do even unsigned file positions" case */
1199be83bbf8SLinus Torvalds 	if (file->f_mode & FMODE_UNSIGNED_OFFSET)
1200be83bbf8SLinus Torvalds 		return 0;
1201be83bbf8SLinus Torvalds 
1202be83bbf8SLinus Torvalds 	/* Yes, random drivers might want more. But I'm tired of buggy drivers */
1203be83bbf8SLinus Torvalds 	return ULONG_MAX;
1204be83bbf8SLinus Torvalds }
1205be83bbf8SLinus Torvalds 
1206be83bbf8SLinus Torvalds static inline bool file_mmap_ok(struct file *file, struct inode *inode,
1207be83bbf8SLinus Torvalds 				unsigned long pgoff, unsigned long len)
1208be83bbf8SLinus Torvalds {
1209be83bbf8SLinus Torvalds 	u64 maxsize = file_mmap_size_max(file, inode);
1210be83bbf8SLinus Torvalds 
1211be83bbf8SLinus Torvalds 	if (maxsize && len > maxsize)
1212be83bbf8SLinus Torvalds 		return false;
1213be83bbf8SLinus Torvalds 	maxsize -= len;
1214be83bbf8SLinus Torvalds 	if (pgoff > maxsize >> PAGE_SHIFT)
1215be83bbf8SLinus Torvalds 		return false;
1216be83bbf8SLinus Torvalds 	return true;
1217be83bbf8SLinus Torvalds }
1218be83bbf8SLinus Torvalds 
121940401530SAl Viro /*
12203e4e28c5SMichel Lespinasse  * The caller must write-lock current->mm->mmap_lock.
12211da177e4SLinus Torvalds  */
12221fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr,
12231da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
122445e55300SPeter Collingbourne 			unsigned long flags, unsigned long pgoff,
122545e55300SPeter Collingbourne 			unsigned long *populate, struct list_head *uf)
12261da177e4SLinus Torvalds {
12271da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
122845e55300SPeter Collingbourne 	vm_flags_t vm_flags;
122962b5f7d0SDave Hansen 	int pkey = 0;
12301da177e4SLinus Torvalds 
1231524e00b3SLiam R. Howlett 	validate_mm(mm);
123241badc15SMichel Lespinasse 	*populate = 0;
1233bebeb3d6SMichel Lespinasse 
1234e37609bbSPiotr Kwapulinski 	if (!len)
1235e37609bbSPiotr Kwapulinski 		return -EINVAL;
1236e37609bbSPiotr Kwapulinski 
12371da177e4SLinus Torvalds 	/*
12381da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
12391da177e4SLinus Torvalds 	 *
12401da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
12411da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
12421da177e4SLinus Torvalds 	 */
12431da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
124490f8572bSEric W. Biederman 		if (!(file && path_noexec(&file->f_path)))
12451da177e4SLinus Torvalds 			prot |= PROT_EXEC;
12461da177e4SLinus Torvalds 
1247a4ff8e86SMichal Hocko 	/* force arch specific MAP_FIXED handling in get_unmapped_area */
1248a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE)
1249a4ff8e86SMichal Hocko 		flags |= MAP_FIXED;
1250a4ff8e86SMichal Hocko 
12517cd94146SEric Paris 	if (!(flags & MAP_FIXED))
12527cd94146SEric Paris 		addr = round_hint_to_min(addr);
12537cd94146SEric Paris 
12541da177e4SLinus Torvalds 	/* Careful about overflows.. */
12551da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
12569206de95SAl Viro 	if (!len)
12571da177e4SLinus Torvalds 		return -ENOMEM;
12581da177e4SLinus Torvalds 
12591da177e4SLinus Torvalds 	/* offset overflow? */
12601da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
12611da177e4SLinus Torvalds 		return -EOVERFLOW;
12621da177e4SLinus Torvalds 
12631da177e4SLinus Torvalds 	/* Too many mappings? */
12641da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
12651da177e4SLinus Torvalds 		return -ENOMEM;
12661da177e4SLinus Torvalds 
12671da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
12681da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
12691da177e4SLinus Torvalds 	 */
12701da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
1271ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(addr))
12721da177e4SLinus Torvalds 		return addr;
12731da177e4SLinus Torvalds 
1274a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE) {
127535e43c5fSLiam Howlett 		if (find_vma_intersection(mm, addr, addr + len))
1276a4ff8e86SMichal Hocko 			return -EEXIST;
1277a4ff8e86SMichal Hocko 	}
1278a4ff8e86SMichal Hocko 
127962b5f7d0SDave Hansen 	if (prot == PROT_EXEC) {
128062b5f7d0SDave Hansen 		pkey = execute_only_pkey(mm);
128162b5f7d0SDave Hansen 		if (pkey < 0)
128262b5f7d0SDave Hansen 			pkey = 0;
128362b5f7d0SDave Hansen 	}
128462b5f7d0SDave Hansen 
12851da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
12861da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
12871da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
12881da177e4SLinus Torvalds 	 */
128945e55300SPeter Collingbourne 	vm_flags = calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
12901da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
12911da177e4SLinus Torvalds 
1292cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
12931da177e4SLinus Torvalds 		if (!can_do_mlock())
12941da177e4SLinus Torvalds 			return -EPERM;
1295ba470de4SRik van Riel 
1296363ee17fSDavidlohr Bueso 	if (mlock_future_check(mm, vm_flags, len))
12971da177e4SLinus Torvalds 		return -EAGAIN;
12981da177e4SLinus Torvalds 
12991da177e4SLinus Torvalds 	if (file) {
1300077bf22bSOleg Nesterov 		struct inode *inode = file_inode(file);
13011c972597SDan Williams 		unsigned long flags_mask;
13021c972597SDan Williams 
1303be83bbf8SLinus Torvalds 		if (!file_mmap_ok(file, inode, pgoff, len))
1304be83bbf8SLinus Torvalds 			return -EOVERFLOW;
1305be83bbf8SLinus Torvalds 
13061c972597SDan Williams 		flags_mask = LEGACY_MAP_MASK | file->f_op->mmap_supported_flags;
1307077bf22bSOleg Nesterov 
13081da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
13091da177e4SLinus Torvalds 		case MAP_SHARED:
13101c972597SDan Williams 			/*
13111c972597SDan Williams 			 * Force use of MAP_SHARED_VALIDATE with non-legacy
13121c972597SDan Williams 			 * flags. E.g. MAP_SYNC is dangerous to use with
13131c972597SDan Williams 			 * MAP_SHARED as you don't know which consistency model
13141c972597SDan Williams 			 * you will get. We silently ignore unsupported flags
13151c972597SDan Williams 			 * with MAP_SHARED to preserve backward compatibility.
13161c972597SDan Williams 			 */
13171c972597SDan Williams 			flags &= LEGACY_MAP_MASK;
1318e4a9bc58SJoe Perches 			fallthrough;
13191c972597SDan Williams 		case MAP_SHARED_VALIDATE:
13201c972597SDan Williams 			if (flags & ~flags_mask)
13211c972597SDan Williams 				return -EOPNOTSUPP;
1322dc617f29SDarrick J. Wong 			if (prot & PROT_WRITE) {
1323dc617f29SDarrick J. Wong 				if (!(file->f_mode & FMODE_WRITE))
13241da177e4SLinus Torvalds 					return -EACCES;
1325dc617f29SDarrick J. Wong 				if (IS_SWAPFILE(file->f_mapping->host))
1326dc617f29SDarrick J. Wong 					return -ETXTBSY;
1327dc617f29SDarrick J. Wong 			}
13281da177e4SLinus Torvalds 
13291da177e4SLinus Torvalds 			/*
13301da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
13311da177e4SLinus Torvalds 			 * file..
13321da177e4SLinus Torvalds 			 */
13331da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
13341da177e4SLinus Torvalds 				return -EACCES;
13351da177e4SLinus Torvalds 
13361da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
13371da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
13381da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1339e4a9bc58SJoe Perches 			fallthrough;
13401da177e4SLinus Torvalds 		case MAP_PRIVATE:
13411da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
13421da177e4SLinus Torvalds 				return -EACCES;
134390f8572bSEric W. Biederman 			if (path_noexec(&file->f_path)) {
134480c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
134580c5606cSLinus Torvalds 					return -EPERM;
134680c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
134780c5606cSLinus Torvalds 			}
134880c5606cSLinus Torvalds 
134972c2d531SAl Viro 			if (!file->f_op->mmap)
135080c5606cSLinus Torvalds 				return -ENODEV;
1351b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1352b2c56e4fSOleg Nesterov 				return -EINVAL;
13531da177e4SLinus Torvalds 			break;
13541da177e4SLinus Torvalds 
13551da177e4SLinus Torvalds 		default:
13561da177e4SLinus Torvalds 			return -EINVAL;
13571da177e4SLinus Torvalds 		}
13581da177e4SLinus Torvalds 	} else {
13591da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
13601da177e4SLinus Torvalds 		case MAP_SHARED:
1361b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1362b2c56e4fSOleg Nesterov 				return -EINVAL;
1363ce363942STejun Heo 			/*
1364ce363942STejun Heo 			 * Ignore pgoff.
1365ce363942STejun Heo 			 */
1366ce363942STejun Heo 			pgoff = 0;
13671da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
13681da177e4SLinus Torvalds 			break;
13691da177e4SLinus Torvalds 		case MAP_PRIVATE:
13701da177e4SLinus Torvalds 			/*
13711da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
13721da177e4SLinus Torvalds 			 */
13731da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
13741da177e4SLinus Torvalds 			break;
13751da177e4SLinus Torvalds 		default:
13761da177e4SLinus Torvalds 			return -EINVAL;
13771da177e4SLinus Torvalds 		}
13781da177e4SLinus Torvalds 	}
13791da177e4SLinus Torvalds 
1380c22c0d63SMichel Lespinasse 	/*
1381c22c0d63SMichel Lespinasse 	 * Set 'VM_NORESERVE' if we should not account for the
1382c22c0d63SMichel Lespinasse 	 * memory use of this mapping.
1383c22c0d63SMichel Lespinasse 	 */
1384c22c0d63SMichel Lespinasse 	if (flags & MAP_NORESERVE) {
1385c22c0d63SMichel Lespinasse 		/* We honor MAP_NORESERVE if allowed to overcommit */
1386c22c0d63SMichel Lespinasse 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1387c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1388c22c0d63SMichel Lespinasse 
1389c22c0d63SMichel Lespinasse 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
1390c22c0d63SMichel Lespinasse 		if (file && is_file_hugepages(file))
1391c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1392c22c0d63SMichel Lespinasse 	}
1393c22c0d63SMichel Lespinasse 
1394897ab3e0SMike Rapoport 	addr = mmap_region(file, addr, len, vm_flags, pgoff, uf);
139509a9f1d2SMichel Lespinasse 	if (!IS_ERR_VALUE(addr) &&
139609a9f1d2SMichel Lespinasse 	    ((vm_flags & VM_LOCKED) ||
139709a9f1d2SMichel Lespinasse 	     (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
139841badc15SMichel Lespinasse 		*populate = len;
1399bebeb3d6SMichel Lespinasse 	return addr;
14000165ab44SMiklos Szeredi }
14016be5ceb0SLinus Torvalds 
1402a90f590aSDominik Brodowski unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
1403a90f590aSDominik Brodowski 			      unsigned long prot, unsigned long flags,
1404a90f590aSDominik Brodowski 			      unsigned long fd, unsigned long pgoff)
140566f0dc48SHugh Dickins {
140666f0dc48SHugh Dickins 	struct file *file = NULL;
14071e3ee14bSChen Gang 	unsigned long retval;
140866f0dc48SHugh Dickins 
140966f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1410120a795dSAl Viro 		audit_mmap_fd(fd, flags);
141166f0dc48SHugh Dickins 		file = fget(fd);
141266f0dc48SHugh Dickins 		if (!file)
14131e3ee14bSChen Gang 			return -EBADF;
14147bba8f0eSZhen Lei 		if (is_file_hugepages(file)) {
1415af73e4d9SNaoya Horiguchi 			len = ALIGN(len, huge_page_size(hstate_file(file)));
14167bba8f0eSZhen Lei 		} else if (unlikely(flags & MAP_HUGETLB)) {
1417493af578SJörn Engel 			retval = -EINVAL;
1418493af578SJörn Engel 			goto out_fput;
14197bba8f0eSZhen Lei 		}
142066f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
1421c103a4dcSAndrew Morton 		struct hstate *hs;
1422af73e4d9SNaoya Horiguchi 
142320ac2893SAnshuman Khandual 		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
1424091d0d55SLi Zefan 		if (!hs)
1425091d0d55SLi Zefan 			return -EINVAL;
1426091d0d55SLi Zefan 
1427091d0d55SLi Zefan 		len = ALIGN(len, huge_page_size(hs));
142866f0dc48SHugh Dickins 		/*
142966f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
143066f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
143166f0dc48SHugh Dickins 		 */
1432af73e4d9SNaoya Horiguchi 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
143342d7395fSAndi Kleen 				VM_NORESERVE,
143483c1fd76Szhangyiru 				HUGETLB_ANONHUGE_INODE,
143542d7395fSAndi Kleen 				(flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
143666f0dc48SHugh Dickins 		if (IS_ERR(file))
143766f0dc48SHugh Dickins 			return PTR_ERR(file);
143866f0dc48SHugh Dickins 	}
143966f0dc48SHugh Dickins 
14409fbeb5abSMichal Hocko 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1441493af578SJörn Engel out_fput:
144266f0dc48SHugh Dickins 	if (file)
144366f0dc48SHugh Dickins 		fput(file);
144466f0dc48SHugh Dickins 	return retval;
144566f0dc48SHugh Dickins }
144666f0dc48SHugh Dickins 
1447a90f590aSDominik Brodowski SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1448a90f590aSDominik Brodowski 		unsigned long, prot, unsigned long, flags,
1449a90f590aSDominik Brodowski 		unsigned long, fd, unsigned long, pgoff)
1450a90f590aSDominik Brodowski {
1451a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
1452a90f590aSDominik Brodowski }
1453a90f590aSDominik Brodowski 
1454a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1455a4679373SChristoph Hellwig struct mmap_arg_struct {
1456a4679373SChristoph Hellwig 	unsigned long addr;
1457a4679373SChristoph Hellwig 	unsigned long len;
1458a4679373SChristoph Hellwig 	unsigned long prot;
1459a4679373SChristoph Hellwig 	unsigned long flags;
1460a4679373SChristoph Hellwig 	unsigned long fd;
1461a4679373SChristoph Hellwig 	unsigned long offset;
1462a4679373SChristoph Hellwig };
1463a4679373SChristoph Hellwig 
1464a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1465a4679373SChristoph Hellwig {
1466a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1467a4679373SChristoph Hellwig 
1468a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1469a4679373SChristoph Hellwig 		return -EFAULT;
1470de1741a1SAlexander Kuleshov 	if (offset_in_page(a.offset))
1471a4679373SChristoph Hellwig 		return -EINVAL;
1472a4679373SChristoph Hellwig 
1473a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1474a4679373SChristoph Hellwig 			       a.offset >> PAGE_SHIFT);
1475a4679373SChristoph Hellwig }
1476a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1477a4679373SChristoph Hellwig 
14784e950f6fSAlexey Dobriyan /*
14798bb4e7a2SWei Yang  * Some shared mappings will want the pages marked read-only
14804e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
14814e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
14824e950f6fSAlexey Dobriyan  * VM_SHARED bit).
14834e950f6fSAlexey Dobriyan  */
14846d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
14854e950f6fSAlexey Dobriyan {
1486ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags = vma->vm_flags;
14878a04446aSKirill A. Shutemov 	const struct vm_operations_struct *vm_ops = vma->vm_ops;
14884e950f6fSAlexey Dobriyan 
14894e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
14904e950f6fSAlexey Dobriyan 	if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
14914e950f6fSAlexey Dobriyan 		return 0;
14924e950f6fSAlexey Dobriyan 
14934e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
14948a04446aSKirill A. Shutemov 	if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
14954e950f6fSAlexey Dobriyan 		return 1;
14964e950f6fSAlexey Dobriyan 
149764e45507SPeter Feiner 	/* The open routine did something to the protections that pgprot_modify
149864e45507SPeter Feiner 	 * won't preserve? */
14996d2329f8SAndrea Arcangeli 	if (pgprot_val(vm_page_prot) !=
15006d2329f8SAndrea Arcangeli 	    pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
15014e950f6fSAlexey Dobriyan 		return 0;
15024e950f6fSAlexey Dobriyan 
1503f96f7a40SDavid Hildenbrand 	/*
1504f96f7a40SDavid Hildenbrand 	 * Do we need to track softdirty? hugetlb does not support softdirty
1505f96f7a40SDavid Hildenbrand 	 * tracking yet.
1506f96f7a40SDavid Hildenbrand 	 */
1507f96f7a40SDavid Hildenbrand 	if (vma_soft_dirty_enabled(vma) && !is_vm_hugetlb_page(vma))
150864e45507SPeter Feiner 		return 1;
150964e45507SPeter Feiner 
151051d3d5ebSDavid Hildenbrand 	/* Do we need write faults for uffd-wp tracking? */
151151d3d5ebSDavid Hildenbrand 	if (userfaultfd_wp(vma))
151251d3d5ebSDavid Hildenbrand 		return 1;
151351d3d5ebSDavid Hildenbrand 
15144e950f6fSAlexey Dobriyan 	/* Specialty mapping? */
15154b6e1e37SKonstantin Khlebnikov 	if (vm_flags & VM_PFNMAP)
15164e950f6fSAlexey Dobriyan 		return 0;
15174e950f6fSAlexey Dobriyan 
15184e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
15194e950f6fSAlexey Dobriyan 	return vma->vm_file && vma->vm_file->f_mapping &&
1520f56753acSChristoph Hellwig 		mapping_can_writeback(vma->vm_file->f_mapping);
15214e950f6fSAlexey Dobriyan }
15224e950f6fSAlexey Dobriyan 
1523fc8744adSLinus Torvalds /*
1524fc8744adSLinus Torvalds  * We account for memory if it's a private writeable mapping,
15255a6fe125SMel Gorman  * not hugepages and VM_NORESERVE wasn't set.
1526fc8744adSLinus Torvalds  */
1527ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1528fc8744adSLinus Torvalds {
15295a6fe125SMel Gorman 	/*
15305a6fe125SMel Gorman 	 * hugetlb has its own accounting separate from the core VM
15315a6fe125SMel Gorman 	 * VM_HUGETLB may not be set yet so we cannot check for that flag.
15325a6fe125SMel Gorman 	 */
15335a6fe125SMel Gorman 	if (file && is_file_hugepages(file))
15345a6fe125SMel Gorman 		return 0;
15355a6fe125SMel Gorman 
1536fc8744adSLinus Torvalds 	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1537fc8744adSLinus Torvalds }
1538fc8744adSLinus Torvalds 
15393499a131SLiam R. Howlett /**
15403499a131SLiam R. Howlett  * unmapped_area() - Find an area between the low_limit and the high_limit with
15413499a131SLiam R. Howlett  * the correct alignment and offset, all from @info. Note: current->mm is used
15423499a131SLiam R. Howlett  * for the search.
15433499a131SLiam R. Howlett  *
154482b24936SVernon Yang  * @info: The unmapped area information including the range [low_limit -
154582b24936SVernon Yang  * high_limit), the alignment offset and mask.
15463499a131SLiam R. Howlett  *
15473499a131SLiam R. Howlett  * Return: A memory address or -ENOMEM.
15483499a131SLiam R. Howlett  */
1549baceaf1cSJaewon Kim static unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1550db4fbfb9SMichel Lespinasse {
15516b008640SLinus Torvalds 	unsigned long length, gap;
15526b008640SLinus Torvalds 	unsigned long low_limit, high_limit;
155358c5d0d6SLiam R. Howlett 	struct vm_area_struct *tmp;
1554db4fbfb9SMichel Lespinasse 
15553499a131SLiam R. Howlett 	MA_STATE(mas, &current->mm->mm_mt, 0, 0);
1556db4fbfb9SMichel Lespinasse 
1557db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1558db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1559db4fbfb9SMichel Lespinasse 	if (length < info->length)
1560db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1561db4fbfb9SMichel Lespinasse 
156258c5d0d6SLiam R. Howlett 	low_limit = info->low_limit;
15636b008640SLinus Torvalds 	if (low_limit < mmap_min_addr)
15646b008640SLinus Torvalds 		low_limit = mmap_min_addr;
15656b008640SLinus Torvalds 	high_limit = info->high_limit;
156658c5d0d6SLiam R. Howlett retry:
15676b008640SLinus Torvalds 	if (mas_empty_area(&mas, low_limit, high_limit - 1, length))
15683499a131SLiam R. Howlett 		return -ENOMEM;
15693499a131SLiam R. Howlett 
1570d4af56c5SLiam R. Howlett 	gap = mas.index;
1571d4af56c5SLiam R. Howlett 	gap += (info->align_offset - gap) & info->align_mask;
157258c5d0d6SLiam R. Howlett 	tmp = mas_next(&mas, ULONG_MAX);
157358c5d0d6SLiam R. Howlett 	if (tmp && (tmp->vm_flags & VM_GROWSDOWN)) { /* Avoid prev check if possible */
157458c5d0d6SLiam R. Howlett 		if (vm_start_gap(tmp) < gap + length - 1) {
157558c5d0d6SLiam R. Howlett 			low_limit = tmp->vm_end;
157658c5d0d6SLiam R. Howlett 			mas_reset(&mas);
157758c5d0d6SLiam R. Howlett 			goto retry;
157858c5d0d6SLiam R. Howlett 		}
157958c5d0d6SLiam R. Howlett 	} else {
158058c5d0d6SLiam R. Howlett 		tmp = mas_prev(&mas, 0);
158158c5d0d6SLiam R. Howlett 		if (tmp && vm_end_gap(tmp) > gap) {
158258c5d0d6SLiam R. Howlett 			low_limit = vm_end_gap(tmp);
158358c5d0d6SLiam R. Howlett 			mas_reset(&mas);
158458c5d0d6SLiam R. Howlett 			goto retry;
158558c5d0d6SLiam R. Howlett 		}
158658c5d0d6SLiam R. Howlett 	}
158758c5d0d6SLiam R. Howlett 
15883499a131SLiam R. Howlett 	return gap;
1589db4fbfb9SMichel Lespinasse }
1590db4fbfb9SMichel Lespinasse 
15913499a131SLiam R. Howlett /**
15923499a131SLiam R. Howlett  * unmapped_area_topdown() - Find an area between the low_limit and the
159382b24936SVernon Yang  * high_limit with the correct alignment and offset at the highest available
15943499a131SLiam R. Howlett  * address, all from @info. Note: current->mm is used for the search.
15953499a131SLiam R. Howlett  *
159682b24936SVernon Yang  * @info: The unmapped area information including the range [low_limit -
159782b24936SVernon Yang  * high_limit), the alignment offset and mask.
15983499a131SLiam R. Howlett  *
15993499a131SLiam R. Howlett  * Return: A memory address or -ENOMEM.
16003499a131SLiam R. Howlett  */
1601baceaf1cSJaewon Kim static unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1602db4fbfb9SMichel Lespinasse {
16036b008640SLinus Torvalds 	unsigned long length, gap, gap_end;
16046b008640SLinus Torvalds 	unsigned long low_limit, high_limit;
160558c5d0d6SLiam R. Howlett 	struct vm_area_struct *tmp;
1606d4af56c5SLiam R. Howlett 
16073499a131SLiam R. Howlett 	MA_STATE(mas, &current->mm->mm_mt, 0, 0);
1608db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1609db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1610db4fbfb9SMichel Lespinasse 	if (length < info->length)
1611db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1612db4fbfb9SMichel Lespinasse 
16136b008640SLinus Torvalds 	low_limit = info->low_limit;
16146b008640SLinus Torvalds 	if (low_limit < mmap_min_addr)
16156b008640SLinus Torvalds 		low_limit = mmap_min_addr;
161658c5d0d6SLiam R. Howlett 	high_limit = info->high_limit;
161758c5d0d6SLiam R. Howlett retry:
16186b008640SLinus Torvalds 	if (mas_empty_area_rev(&mas, low_limit, high_limit - 1, length))
16193499a131SLiam R. Howlett 		return -ENOMEM;
16203499a131SLiam R. Howlett 
1621d4af56c5SLiam R. Howlett 	gap = mas.last + 1 - info->length;
1622d4af56c5SLiam R. Howlett 	gap -= (gap - info->align_offset) & info->align_mask;
162358c5d0d6SLiam R. Howlett 	gap_end = mas.last;
162458c5d0d6SLiam R. Howlett 	tmp = mas_next(&mas, ULONG_MAX);
162558c5d0d6SLiam R. Howlett 	if (tmp && (tmp->vm_flags & VM_GROWSDOWN)) { /* Avoid prev check if possible */
162658c5d0d6SLiam R. Howlett 		if (vm_start_gap(tmp) <= gap_end) {
162758c5d0d6SLiam R. Howlett 			high_limit = vm_start_gap(tmp);
162858c5d0d6SLiam R. Howlett 			mas_reset(&mas);
162958c5d0d6SLiam R. Howlett 			goto retry;
163058c5d0d6SLiam R. Howlett 		}
163158c5d0d6SLiam R. Howlett 	} else {
163258c5d0d6SLiam R. Howlett 		tmp = mas_prev(&mas, 0);
163358c5d0d6SLiam R. Howlett 		if (tmp && vm_end_gap(tmp) > gap) {
163458c5d0d6SLiam R. Howlett 			high_limit = tmp->vm_start;
163558c5d0d6SLiam R. Howlett 			mas_reset(&mas);
163658c5d0d6SLiam R. Howlett 			goto retry;
163758c5d0d6SLiam R. Howlett 		}
163858c5d0d6SLiam R. Howlett 	}
163958c5d0d6SLiam R. Howlett 
16403499a131SLiam R. Howlett 	return gap;
1641db4fbfb9SMichel Lespinasse }
1642db4fbfb9SMichel Lespinasse 
1643baceaf1cSJaewon Kim /*
1644baceaf1cSJaewon Kim  * Search for an unmapped address range.
1645baceaf1cSJaewon Kim  *
1646baceaf1cSJaewon Kim  * We are looking for a range that:
1647baceaf1cSJaewon Kim  * - does not intersect with any VMA;
1648baceaf1cSJaewon Kim  * - is contained within the [low_limit, high_limit) interval;
1649baceaf1cSJaewon Kim  * - is at least the desired size.
1650baceaf1cSJaewon Kim  * - satisfies (begin_addr & align_mask) == (align_offset & align_mask)
1651baceaf1cSJaewon Kim  */
1652baceaf1cSJaewon Kim unsigned long vm_unmapped_area(struct vm_unmapped_area_info *info)
1653baceaf1cSJaewon Kim {
1654df529cabSJaewon Kim 	unsigned long addr;
1655df529cabSJaewon Kim 
1656baceaf1cSJaewon Kim 	if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
1657df529cabSJaewon Kim 		addr = unmapped_area_topdown(info);
1658baceaf1cSJaewon Kim 	else
1659df529cabSJaewon Kim 		addr = unmapped_area(info);
1660df529cabSJaewon Kim 
1661df529cabSJaewon Kim 	trace_vm_unmapped_area(addr, info);
1662df529cabSJaewon Kim 	return addr;
1663baceaf1cSJaewon Kim }
1664f6795053SSteve Capper 
16651da177e4SLinus Torvalds /* Get an address range which is currently unmapped.
16661da177e4SLinus Torvalds  * For shmat() with addr=0.
16671da177e4SLinus Torvalds  *
16681da177e4SLinus Torvalds  * Ugly calling convention alert:
16691da177e4SLinus Torvalds  * Return value with the low bits set means error value,
16701da177e4SLinus Torvalds  * ie
16711da177e4SLinus Torvalds  *	if (ret & ~PAGE_MASK)
16721da177e4SLinus Torvalds  *		error = ret;
16731da177e4SLinus Torvalds  *
16741da177e4SLinus Torvalds  * This function "knows" that -ENOMEM has the bits set.
16751da177e4SLinus Torvalds  */
16761da177e4SLinus Torvalds unsigned long
16774b439e25SChristophe Leroy generic_get_unmapped_area(struct file *filp, unsigned long addr,
16784b439e25SChristophe Leroy 			  unsigned long len, unsigned long pgoff,
16794b439e25SChristophe Leroy 			  unsigned long flags)
16801da177e4SLinus Torvalds {
16811da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
16821be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
1683db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
16842cb4de08SChristophe Leroy 	const unsigned long mmap_end = arch_get_mmap_end(addr, len, flags);
16851da177e4SLinus Torvalds 
1686f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
16871da177e4SLinus Torvalds 		return -ENOMEM;
16881da177e4SLinus Torvalds 
168906abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
169006abdfb4SBenjamin Herrenschmidt 		return addr;
169106abdfb4SBenjamin Herrenschmidt 
16921da177e4SLinus Torvalds 	if (addr) {
16931da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
16941be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
1695f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
16961be7107fSHugh Dickins 		    (!vma || addr + len <= vm_start_gap(vma)) &&
16971be7107fSHugh Dickins 		    (!prev || addr >= vm_end_gap(prev)))
16981da177e4SLinus Torvalds 			return addr;
16991da177e4SLinus Torvalds 	}
17001da177e4SLinus Torvalds 
1701db4fbfb9SMichel Lespinasse 	info.flags = 0;
1702db4fbfb9SMichel Lespinasse 	info.length = len;
17034e99b021SHeiko Carstens 	info.low_limit = mm->mmap_base;
1704f6795053SSteve Capper 	info.high_limit = mmap_end;
1705db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
170609ef5283SJaewon Kim 	info.align_offset = 0;
1707db4fbfb9SMichel Lespinasse 	return vm_unmapped_area(&info);
17081da177e4SLinus Torvalds }
17094b439e25SChristophe Leroy 
17104b439e25SChristophe Leroy #ifndef HAVE_ARCH_UNMAPPED_AREA
17114b439e25SChristophe Leroy unsigned long
17124b439e25SChristophe Leroy arch_get_unmapped_area(struct file *filp, unsigned long addr,
17134b439e25SChristophe Leroy 		       unsigned long len, unsigned long pgoff,
17144b439e25SChristophe Leroy 		       unsigned long flags)
17154b439e25SChristophe Leroy {
17164b439e25SChristophe Leroy 	return generic_get_unmapped_area(filp, addr, len, pgoff, flags);
17174b439e25SChristophe Leroy }
17181da177e4SLinus Torvalds #endif
17191da177e4SLinus Torvalds 
17201da177e4SLinus Torvalds /*
17211da177e4SLinus Torvalds  * This mmap-allocator allocates new areas top-down from below the
17221da177e4SLinus Torvalds  * stack's low limit (the base):
17231da177e4SLinus Torvalds  */
17241da177e4SLinus Torvalds unsigned long
17254b439e25SChristophe Leroy generic_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
172643cca0b1SYang Fan 				  unsigned long len, unsigned long pgoff,
172743cca0b1SYang Fan 				  unsigned long flags)
17281da177e4SLinus Torvalds {
17291be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
17301da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1731db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
17322cb4de08SChristophe Leroy 	const unsigned long mmap_end = arch_get_mmap_end(addr, len, flags);
17331da177e4SLinus Torvalds 
17341da177e4SLinus Torvalds 	/* requested length too big for entire address space */
1735f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
17361da177e4SLinus Torvalds 		return -ENOMEM;
17371da177e4SLinus Torvalds 
173806abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
173906abdfb4SBenjamin Herrenschmidt 		return addr;
174006abdfb4SBenjamin Herrenschmidt 
17411da177e4SLinus Torvalds 	/* requesting a specific address */
17421da177e4SLinus Torvalds 	if (addr) {
17431da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
17441be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
1745f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
17461be7107fSHugh Dickins 				(!vma || addr + len <= vm_start_gap(vma)) &&
17471be7107fSHugh Dickins 				(!prev || addr >= vm_end_gap(prev)))
17481da177e4SLinus Torvalds 			return addr;
17491da177e4SLinus Torvalds 	}
17501da177e4SLinus Torvalds 
1751db4fbfb9SMichel Lespinasse 	info.flags = VM_UNMAPPED_AREA_TOPDOWN;
1752db4fbfb9SMichel Lespinasse 	info.length = len;
17536b008640SLinus Torvalds 	info.low_limit = PAGE_SIZE;
1754f6795053SSteve Capper 	info.high_limit = arch_get_mmap_base(addr, mm->mmap_base);
1755db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
175609ef5283SJaewon Kim 	info.align_offset = 0;
1757db4fbfb9SMichel Lespinasse 	addr = vm_unmapped_area(&info);
1758b716ad95SXiao Guangrong 
17591da177e4SLinus Torvalds 	/*
17601da177e4SLinus Torvalds 	 * A failed mmap() very likely causes application failure,
17611da177e4SLinus Torvalds 	 * so fall back to the bottom-up function here. This scenario
17621da177e4SLinus Torvalds 	 * can happen with large stack limits and large mmap()
17631da177e4SLinus Torvalds 	 * allocations.
17641da177e4SLinus Torvalds 	 */
1765de1741a1SAlexander Kuleshov 	if (offset_in_page(addr)) {
1766db4fbfb9SMichel Lespinasse 		VM_BUG_ON(addr != -ENOMEM);
1767db4fbfb9SMichel Lespinasse 		info.flags = 0;
1768db4fbfb9SMichel Lespinasse 		info.low_limit = TASK_UNMAPPED_BASE;
1769f6795053SSteve Capper 		info.high_limit = mmap_end;
1770db4fbfb9SMichel Lespinasse 		addr = vm_unmapped_area(&info);
1771db4fbfb9SMichel Lespinasse 	}
17721da177e4SLinus Torvalds 
17731da177e4SLinus Torvalds 	return addr;
17741da177e4SLinus Torvalds }
17754b439e25SChristophe Leroy 
17764b439e25SChristophe Leroy #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
17774b439e25SChristophe Leroy unsigned long
17784b439e25SChristophe Leroy arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
17794b439e25SChristophe Leroy 			       unsigned long len, unsigned long pgoff,
17804b439e25SChristophe Leroy 			       unsigned long flags)
17814b439e25SChristophe Leroy {
17824b439e25SChristophe Leroy 	return generic_get_unmapped_area_topdown(filp, addr, len, pgoff, flags);
17834b439e25SChristophe Leroy }
17841da177e4SLinus Torvalds #endif
17851da177e4SLinus Torvalds 
17861da177e4SLinus Torvalds unsigned long
17871da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
17881da177e4SLinus Torvalds 		unsigned long pgoff, unsigned long flags)
17891da177e4SLinus Torvalds {
179006abdfb4SBenjamin Herrenschmidt 	unsigned long (*get_area)(struct file *, unsigned long,
179106abdfb4SBenjamin Herrenschmidt 				  unsigned long, unsigned long, unsigned long);
179207ab67c8SLinus Torvalds 
17939206de95SAl Viro 	unsigned long error = arch_mmap_check(addr, len, flags);
17949206de95SAl Viro 	if (error)
17959206de95SAl Viro 		return error;
17969206de95SAl Viro 
17979206de95SAl Viro 	/* Careful about overflows.. */
17989206de95SAl Viro 	if (len > TASK_SIZE)
17999206de95SAl Viro 		return -ENOMEM;
18009206de95SAl Viro 
180107ab67c8SLinus Torvalds 	get_area = current->mm->get_unmapped_area;
1802c01d5b30SHugh Dickins 	if (file) {
1803c01d5b30SHugh Dickins 		if (file->f_op->get_unmapped_area)
180407ab67c8SLinus Torvalds 			get_area = file->f_op->get_unmapped_area;
1805c01d5b30SHugh Dickins 	} else if (flags & MAP_SHARED) {
1806c01d5b30SHugh Dickins 		/*
1807c01d5b30SHugh Dickins 		 * mmap_region() will call shmem_zero_setup() to create a file,
1808c01d5b30SHugh Dickins 		 * so use shmem's get_unmapped_area in case it can be huge.
180945e55300SPeter Collingbourne 		 * do_mmap() will clear pgoff, so match alignment.
1810c01d5b30SHugh Dickins 		 */
1811c01d5b30SHugh Dickins 		pgoff = 0;
1812c01d5b30SHugh Dickins 		get_area = shmem_get_unmapped_area;
1813c01d5b30SHugh Dickins 	}
1814c01d5b30SHugh Dickins 
181507ab67c8SLinus Torvalds 	addr = get_area(file, addr, len, pgoff, flags);
181607ab67c8SLinus Torvalds 	if (IS_ERR_VALUE(addr))
181707ab67c8SLinus Torvalds 		return addr;
181807ab67c8SLinus Torvalds 
18191da177e4SLinus Torvalds 	if (addr > TASK_SIZE - len)
18201da177e4SLinus Torvalds 		return -ENOMEM;
1821de1741a1SAlexander Kuleshov 	if (offset_in_page(addr))
18221da177e4SLinus Torvalds 		return -EINVAL;
182306abdfb4SBenjamin Herrenschmidt 
18249ac4ed4bSAl Viro 	error = security_mmap_addr(addr);
18259ac4ed4bSAl Viro 	return error ? error : addr;
18261da177e4SLinus Torvalds }
18271da177e4SLinus Torvalds 
18281da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area);
18291da177e4SLinus Torvalds 
1830be8432e7SLiam R. Howlett /**
1831abdba2ddSLiam R. Howlett  * find_vma_intersection() - Look up the first VMA which intersects the interval
1832abdba2ddSLiam R. Howlett  * @mm: The process address space.
1833abdba2ddSLiam R. Howlett  * @start_addr: The inclusive start user address.
1834abdba2ddSLiam R. Howlett  * @end_addr: The exclusive end user address.
1835abdba2ddSLiam R. Howlett  *
1836abdba2ddSLiam R. Howlett  * Returns: The first VMA within the provided range, %NULL otherwise.  Assumes
1837abdba2ddSLiam R. Howlett  * start_addr < end_addr.
1838abdba2ddSLiam R. Howlett  */
1839abdba2ddSLiam R. Howlett struct vm_area_struct *find_vma_intersection(struct mm_struct *mm,
1840abdba2ddSLiam R. Howlett 					     unsigned long start_addr,
1841abdba2ddSLiam R. Howlett 					     unsigned long end_addr)
1842abdba2ddSLiam R. Howlett {
1843abdba2ddSLiam R. Howlett 	unsigned long index = start_addr;
1844abdba2ddSLiam R. Howlett 
1845abdba2ddSLiam R. Howlett 	mmap_assert_locked(mm);
18467964cf8cSLiam R. Howlett 	return mt_find(&mm->mm_mt, &index, end_addr - 1);
1847abdba2ddSLiam R. Howlett }
1848abdba2ddSLiam R. Howlett EXPORT_SYMBOL(find_vma_intersection);
1849abdba2ddSLiam R. Howlett 
1850abdba2ddSLiam R. Howlett /**
1851be8432e7SLiam R. Howlett  * find_vma() - Find the VMA for a given address, or the next VMA.
1852be8432e7SLiam R. Howlett  * @mm: The mm_struct to check
1853be8432e7SLiam R. Howlett  * @addr: The address
1854be8432e7SLiam R. Howlett  *
1855be8432e7SLiam R. Howlett  * Returns: The VMA associated with addr, or the next VMA.
1856be8432e7SLiam R. Howlett  * May return %NULL in the case of no VMA at addr or above.
1857be8432e7SLiam R. Howlett  */
18581da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
18591da177e4SLinus Torvalds {
1860be8432e7SLiam R. Howlett 	unsigned long index = addr;
18611da177e4SLinus Torvalds 
18625b78ed24SLuigi Rizzo 	mmap_assert_locked(mm);
18637964cf8cSLiam R. Howlett 	return mt_find(&mm->mm_mt, &index, ULONG_MAX);
18641da177e4SLinus Torvalds }
18651da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma);
18661da177e4SLinus Torvalds 
18677fdbd37dSLiam R. Howlett /**
18687fdbd37dSLiam R. Howlett  * find_vma_prev() - Find the VMA for a given address, or the next vma and
18697fdbd37dSLiam R. Howlett  * set %pprev to the previous VMA, if any.
18707fdbd37dSLiam R. Howlett  * @mm: The mm_struct to check
18717fdbd37dSLiam R. Howlett  * @addr: The address
18727fdbd37dSLiam R. Howlett  * @pprev: The pointer to set to the previous VMA
18737fdbd37dSLiam R. Howlett  *
18747fdbd37dSLiam R. Howlett  * Note that RCU lock is missing here since the external mmap_lock() is used
18757fdbd37dSLiam R. Howlett  * instead.
18767fdbd37dSLiam R. Howlett  *
18777fdbd37dSLiam R. Howlett  * Returns: The VMA associated with @addr, or the next vma.
18787fdbd37dSLiam R. Howlett  * May return %NULL in the case of no vma at addr or above.
18796bd4837dSKOSAKI Motohiro  */
18801da177e4SLinus Torvalds struct vm_area_struct *
18811da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr,
18821da177e4SLinus Torvalds 			struct vm_area_struct **pprev)
18831da177e4SLinus Torvalds {
18846bd4837dSKOSAKI Motohiro 	struct vm_area_struct *vma;
18857fdbd37dSLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, addr, addr);
18861da177e4SLinus Torvalds 
18877fdbd37dSLiam R. Howlett 	vma = mas_walk(&mas);
18887fdbd37dSLiam R. Howlett 	*pprev = mas_prev(&mas, 0);
18897fdbd37dSLiam R. Howlett 	if (!vma)
18907fdbd37dSLiam R. Howlett 		vma = mas_next(&mas, ULONG_MAX);
18916bd4837dSKOSAKI Motohiro 	return vma;
18921da177e4SLinus Torvalds }
18931da177e4SLinus Torvalds 
18941da177e4SLinus Torvalds /*
18951da177e4SLinus Torvalds  * Verify that the stack growth is acceptable and
18961da177e4SLinus Torvalds  * update accounting. This is shared with both the
18971da177e4SLinus Torvalds  * grow-up and grow-down cases.
18981da177e4SLinus Torvalds  */
18991be7107fSHugh Dickins static int acct_stack_growth(struct vm_area_struct *vma,
19001be7107fSHugh Dickins 			     unsigned long size, unsigned long grow)
19011da177e4SLinus Torvalds {
19021da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
19031be7107fSHugh Dickins 	unsigned long new_start;
19041da177e4SLinus Torvalds 
19051da177e4SLinus Torvalds 	/* address space limit tests */
190684638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vma->vm_flags, grow))
19071da177e4SLinus Torvalds 		return -ENOMEM;
19081da177e4SLinus Torvalds 
19091da177e4SLinus Torvalds 	/* Stack limit test */
191024c79d8eSKrzysztof Opasiak 	if (size > rlimit(RLIMIT_STACK))
19111da177e4SLinus Torvalds 		return -ENOMEM;
19121da177e4SLinus Torvalds 
19131da177e4SLinus Torvalds 	/* mlock limit tests */
1914c5d8a364SMiaohe Lin 	if (mlock_future_check(mm, vma->vm_flags, grow << PAGE_SHIFT))
19151da177e4SLinus Torvalds 		return -ENOMEM;
19161da177e4SLinus Torvalds 
19170d59a01bSAdam Litke 	/* Check to ensure the stack will not grow into a hugetlb-only region */
19180d59a01bSAdam Litke 	new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
19190d59a01bSAdam Litke 			vma->vm_end - size;
19200d59a01bSAdam Litke 	if (is_hugepage_only_range(vma->vm_mm, new_start, size))
19210d59a01bSAdam Litke 		return -EFAULT;
19220d59a01bSAdam Litke 
19231da177e4SLinus Torvalds 	/*
19241da177e4SLinus Torvalds 	 * Overcommit..  This must be the final test, as it will
19251da177e4SLinus Torvalds 	 * update security statistics.
19261da177e4SLinus Torvalds 	 */
192705fa199dSHugh Dickins 	if (security_vm_enough_memory_mm(mm, grow))
19281da177e4SLinus Torvalds 		return -ENOMEM;
19291da177e4SLinus Torvalds 
19301da177e4SLinus Torvalds 	return 0;
19311da177e4SLinus Torvalds }
19321da177e4SLinus Torvalds 
193346dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
19341da177e4SLinus Torvalds /*
193546dea3d0SHugh Dickins  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
193646dea3d0SHugh Dickins  * vma is the last one with address > vma->vm_end.  Have to extend vma.
19371da177e4SLinus Torvalds  */
193846dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address)
19391da177e4SLinus Torvalds {
194009357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
19411be7107fSHugh Dickins 	struct vm_area_struct *next;
19421be7107fSHugh Dickins 	unsigned long gap_addr;
194312352d3cSKonstantin Khlebnikov 	int error = 0;
1944d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
19451da177e4SLinus Torvalds 
19461da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSUP))
19471da177e4SLinus Torvalds 		return -EFAULT;
19481da177e4SLinus Torvalds 
1949bd726c90SHelge Deller 	/* Guard against exceeding limits of the address space. */
19501be7107fSHugh Dickins 	address &= PAGE_MASK;
195137511fb5SHelge Deller 	if (address >= (TASK_SIZE & PAGE_MASK))
195212352d3cSKonstantin Khlebnikov 		return -ENOMEM;
1953bd726c90SHelge Deller 	address += PAGE_SIZE;
195412352d3cSKonstantin Khlebnikov 
19551be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
19561be7107fSHugh Dickins 	gap_addr = address + stack_guard_gap;
1957bd726c90SHelge Deller 
1958bd726c90SHelge Deller 	/* Guard against overflow */
1959bd726c90SHelge Deller 	if (gap_addr < address || gap_addr > TASK_SIZE)
1960bd726c90SHelge Deller 		gap_addr = TASK_SIZE;
1961bd726c90SHelge Deller 
1962763ecb03SLiam R. Howlett 	next = find_vma_intersection(mm, vma->vm_end, gap_addr);
1963763ecb03SLiam R. Howlett 	if (next && vma_is_accessible(next)) {
19641be7107fSHugh Dickins 		if (!(next->vm_flags & VM_GROWSUP))
19651be7107fSHugh Dickins 			return -ENOMEM;
19661be7107fSHugh Dickins 		/* Check that both stack segments have the same anon_vma? */
19671be7107fSHugh Dickins 	}
19681be7107fSHugh Dickins 
1969c5d5546eSVernon Yang 	if (mas_preallocate(&mas, GFP_KERNEL))
19701da177e4SLinus Torvalds 		return -ENOMEM;
19711da177e4SLinus Torvalds 
1972d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
1973d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
1974d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
1975d4af56c5SLiam R. Howlett 		return -ENOMEM;
1976d4af56c5SLiam R. Howlett 	}
1977d4af56c5SLiam R. Howlett 
19781da177e4SLinus Torvalds 	/*
19791da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
1980c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
19811da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
19821da177e4SLinus Torvalds 	 */
198312352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
19841da177e4SLinus Torvalds 
19851da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
19861da177e4SLinus Torvalds 	if (address > vma->vm_end) {
19871da177e4SLinus Torvalds 		unsigned long size, grow;
19881da177e4SLinus Torvalds 
19891da177e4SLinus Torvalds 		size = address - vma->vm_start;
19901da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
19911da177e4SLinus Torvalds 
199242c36f63SHugh Dickins 		error = -ENOMEM;
199342c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
19941da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
19953af9e859SEric B Munson 			if (!error) {
19964128997bSMichel Lespinasse 				/*
1997524e00b3SLiam R. Howlett 				 * We only hold a shared mmap_lock lock here, so
1998524e00b3SLiam R. Howlett 				 * we need to protect against concurrent vma
1999524e00b3SLiam R. Howlett 				 * expansions.  anon_vma_lock_write() doesn't
2000524e00b3SLiam R. Howlett 				 * help here, as we don't guarantee that all
2001524e00b3SLiam R. Howlett 				 * growable vmas in a mm share the same root
2002524e00b3SLiam R. Howlett 				 * anon vma.  So, we reuse mm->page_table_lock
2003524e00b3SLiam R. Howlett 				 * to guard against concurrent vma expansions.
20044128997bSMichel Lespinasse 				 */
200509357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
200687e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
200709357814SOleg Nesterov 					mm->locked_vm += grow;
200884638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2009bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
20101da177e4SLinus Torvalds 				vma->vm_end = address;
2011d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2012fbcc3104SLiam R. Howlett 				mas_set_range(&mas, vma->vm_start, address - 1);
2013fbcc3104SLiam R. Howlett 				mas_store_prealloc(&mas, vma);
2014bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
201509357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
20164128997bSMichel Lespinasse 
20173af9e859SEric B Munson 				perf_event_mmap(vma);
20183af9e859SEric B Munson 			}
20191da177e4SLinus Torvalds 		}
202042c36f63SHugh Dickins 	}
202112352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2022c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
2023d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
20241da177e4SLinus Torvalds 	return error;
20251da177e4SLinus Torvalds }
202646dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
202746dea3d0SHugh Dickins 
20281da177e4SLinus Torvalds /*
20291da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
20301da177e4SLinus Torvalds  */
2031524e00b3SLiam R. Howlett int expand_downwards(struct vm_area_struct *vma, unsigned long address)
20321da177e4SLinus Torvalds {
203309357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
2034763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, vma->vm_start, vma->vm_start);
20351be7107fSHugh Dickins 	struct vm_area_struct *prev;
20360a1d5299SJann Horn 	int error = 0;
20371da177e4SLinus Torvalds 
20388869477aSEric Paris 	address &= PAGE_MASK;
20390a1d5299SJann Horn 	if (address < mmap_min_addr)
20400a1d5299SJann Horn 		return -EPERM;
20418869477aSEric Paris 
20421be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
2043763ecb03SLiam R. Howlett 	prev = mas_prev(&mas, 0);
20441be7107fSHugh Dickins 	/* Check that both stack segments have the same anon_vma? */
204532e4e6d5SOleg Nesterov 	if (prev && !(prev->vm_flags & VM_GROWSDOWN) &&
20463122e80eSAnshuman Khandual 			vma_is_accessible(prev)) {
204732e4e6d5SOleg Nesterov 		if (address - prev->vm_end < stack_guard_gap)
204832e4e6d5SOleg Nesterov 			return -ENOMEM;
20491be7107fSHugh Dickins 	}
20501be7107fSHugh Dickins 
2051c5d5546eSVernon Yang 	if (mas_preallocate(&mas, GFP_KERNEL))
205212352d3cSKonstantin Khlebnikov 		return -ENOMEM;
20531da177e4SLinus Torvalds 
2054d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
2055d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
2056d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
2057d4af56c5SLiam R. Howlett 		return -ENOMEM;
2058d4af56c5SLiam R. Howlett 	}
2059d4af56c5SLiam R. Howlett 
20601da177e4SLinus Torvalds 	/*
20611da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2062c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
20631da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
20641da177e4SLinus Torvalds 	 */
206512352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
20661da177e4SLinus Torvalds 
20671da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
20681da177e4SLinus Torvalds 	if (address < vma->vm_start) {
20691da177e4SLinus Torvalds 		unsigned long size, grow;
20701da177e4SLinus Torvalds 
20711da177e4SLinus Torvalds 		size = vma->vm_end - address;
20721da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
20731da177e4SLinus Torvalds 
2074a626ca6aSLinus Torvalds 		error = -ENOMEM;
2075a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
20761da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
20771da177e4SLinus Torvalds 			if (!error) {
20784128997bSMichel Lespinasse 				/*
2079524e00b3SLiam R. Howlett 				 * We only hold a shared mmap_lock lock here, so
2080524e00b3SLiam R. Howlett 				 * we need to protect against concurrent vma
2081524e00b3SLiam R. Howlett 				 * expansions.  anon_vma_lock_write() doesn't
2082524e00b3SLiam R. Howlett 				 * help here, as we don't guarantee that all
2083524e00b3SLiam R. Howlett 				 * growable vmas in a mm share the same root
2084524e00b3SLiam R. Howlett 				 * anon vma.  So, we reuse mm->page_table_lock
2085524e00b3SLiam R. Howlett 				 * to guard against concurrent vma expansions.
20864128997bSMichel Lespinasse 				 */
208709357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
208887e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
208909357814SOleg Nesterov 					mm->locked_vm += grow;
209084638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2091bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
20921da177e4SLinus Torvalds 				vma->vm_start = address;
20931da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
2094d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2095fbcc3104SLiam R. Howlett 				mas_set_range(&mas, address, vma->vm_end - 1);
2096fbcc3104SLiam R. Howlett 				mas_store_prealloc(&mas, vma);
2097bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
209809357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
20994128997bSMichel Lespinasse 
21003af9e859SEric B Munson 				perf_event_mmap(vma);
21011da177e4SLinus Torvalds 			}
21021da177e4SLinus Torvalds 		}
2103a626ca6aSLinus Torvalds 	}
210412352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2105c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
2106d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
21071da177e4SLinus Torvalds 	return error;
21081da177e4SLinus Torvalds }
21091da177e4SLinus Torvalds 
21101be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */
21111be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT;
21121be7107fSHugh Dickins 
21131be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p)
21141be7107fSHugh Dickins {
21151be7107fSHugh Dickins 	unsigned long val;
21161be7107fSHugh Dickins 	char *endptr;
21171be7107fSHugh Dickins 
21181be7107fSHugh Dickins 	val = simple_strtoul(p, &endptr, 10);
21191be7107fSHugh Dickins 	if (!*endptr)
21201be7107fSHugh Dickins 		stack_guard_gap = val << PAGE_SHIFT;
21211be7107fSHugh Dickins 
2122e6d09493SRandy Dunlap 	return 1;
21231be7107fSHugh Dickins }
21241be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap);
21251be7107fSHugh Dickins 
2126b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
2127b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2128b6a2fea3SOllie Wild {
2129b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
2130b6a2fea3SOllie Wild }
2131b6a2fea3SOllie Wild 
2132b6a2fea3SOllie Wild struct vm_area_struct *
2133b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr)
2134b6a2fea3SOllie Wild {
2135b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
2136b6a2fea3SOllie Wild 
2137b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
2138b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
2139b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
2140b6a2fea3SOllie Wild 		return vma;
21414d45e75aSJann Horn 	if (!prev || expand_stack(prev, addr))
2142b6a2fea3SOllie Wild 		return NULL;
2143cea10a19SMichel Lespinasse 	if (prev->vm_flags & VM_LOCKED)
2144fc05f566SKirill A. Shutemov 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2145b6a2fea3SOllie Wild 	return prev;
2146b6a2fea3SOllie Wild }
2147b6a2fea3SOllie Wild #else
2148b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2149b6a2fea3SOllie Wild {
2150b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
2151b6a2fea3SOllie Wild }
2152b6a2fea3SOllie Wild 
21531da177e4SLinus Torvalds struct vm_area_struct *
21541da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr)
21551da177e4SLinus Torvalds {
21561da177e4SLinus Torvalds 	struct vm_area_struct *vma;
21571da177e4SLinus Torvalds 	unsigned long start;
21581da177e4SLinus Torvalds 
21591da177e4SLinus Torvalds 	addr &= PAGE_MASK;
21601da177e4SLinus Torvalds 	vma = find_vma(mm, addr);
21611da177e4SLinus Torvalds 	if (!vma)
21621da177e4SLinus Torvalds 		return NULL;
21631da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
21641da177e4SLinus Torvalds 		return vma;
21651da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
21661da177e4SLinus Torvalds 		return NULL;
21671da177e4SLinus Torvalds 	start = vma->vm_start;
21681da177e4SLinus Torvalds 	if (expand_stack(vma, addr))
21691da177e4SLinus Torvalds 		return NULL;
2170cea10a19SMichel Lespinasse 	if (vma->vm_flags & VM_LOCKED)
2171fc05f566SKirill A. Shutemov 		populate_vma_page_range(vma, addr, start, NULL);
21721da177e4SLinus Torvalds 	return vma;
21731da177e4SLinus Torvalds }
21741da177e4SLinus Torvalds #endif
21751da177e4SLinus Torvalds 
2176e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma);
2177e1d6d01aSJesse Barnes 
21782c0b3814SHugh Dickins /*
2179763ecb03SLiam R. Howlett  * Ok - we have the memory areas we should free on a maple tree so release them,
2180763ecb03SLiam R. Howlett  * and do the vma updates.
21811da177e4SLinus Torvalds  *
21822c0b3814SHugh Dickins  * Called with the mm semaphore held.
21831da177e4SLinus Torvalds  */
2184763ecb03SLiam R. Howlett static inline void remove_mt(struct mm_struct *mm, struct ma_state *mas)
21851da177e4SLinus Torvalds {
21864f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
2187763ecb03SLiam R. Howlett 	struct vm_area_struct *vma;
21884f74d2c8SLinus Torvalds 
2189365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
2190365e9c87SHugh Dickins 	update_hiwater_vm(mm);
2191763ecb03SLiam R. Howlett 	mas_for_each(mas, vma, ULONG_MAX) {
2192ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
21931da177e4SLinus Torvalds 
21944f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
21954f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
219684638335SKonstantin Khlebnikov 		vm_stat_account(mm, vma->vm_flags, -nrpages);
21970d2ebf9cSSuren Baghdasaryan 		remove_vma(vma, false);
2198763ecb03SLiam R. Howlett 	}
21994f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
22001da177e4SLinus Torvalds 	validate_mm(mm);
22011da177e4SLinus Torvalds }
22021da177e4SLinus Torvalds 
22031da177e4SLinus Torvalds /*
22041da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
22051da177e4SLinus Torvalds  *
2206f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
22071da177e4SLinus Torvalds  */
2208763ecb03SLiam R. Howlett static void unmap_region(struct mm_struct *mm, struct maple_tree *mt,
2209e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
2210763ecb03SLiam R. Howlett 		struct vm_area_struct *next,
221168f48381SSuren Baghdasaryan 		unsigned long start, unsigned long end, bool mm_wr_locked)
22121da177e4SLinus Torvalds {
2213d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
22141da177e4SLinus Torvalds 
22151da177e4SLinus Torvalds 	lru_add_drain();
2216a72afd87SWill Deacon 	tlb_gather_mmu(&tlb, mm);
2217365e9c87SHugh Dickins 	update_hiwater_rss(mm);
221868f48381SSuren Baghdasaryan 	unmap_vmas(&tlb, mt, vma, start, end, mm_wr_locked);
2219763ecb03SLiam R. Howlett 	free_pgtables(&tlb, mt, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
222098e51a22SSuren Baghdasaryan 				 next ? next->vm_start : USER_PGTABLES_CEILING,
222198e51a22SSuren Baghdasaryan 				 mm_wr_locked);
2222ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
22231da177e4SLinus Torvalds }
22241da177e4SLinus Torvalds 
22251da177e4SLinus Torvalds /*
2226def5efe0SDavid Rientjes  * __split_vma() bypasses sysctl_max_map_count checking.  We use this where it
2227def5efe0SDavid Rientjes  * has already been checked or doesn't make sense to fail.
22280fd5a9e2SLiam R. Howlett  * VMA Iterator will point to the end VMA.
22291da177e4SLinus Torvalds  */
22309760ebffSLiam R. Howlett int __split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
22311da177e4SLinus Torvalds 		unsigned long addr, int new_below)
22321da177e4SLinus Torvalds {
2233b2b3b886SLiam R. Howlett 	struct vma_prepare vp;
22341da177e4SLinus Torvalds 	struct vm_area_struct *new;
2235e3975891SChen Gang 	int err;
22369760ebffSLiam R. Howlett 
22379760ebffSLiam R. Howlett 	validate_mm_mt(vma->vm_mm);
22381da177e4SLinus Torvalds 
2239b2b3b886SLiam R. Howlett 	WARN_ON(vma->vm_start >= addr);
2240b2b3b886SLiam R. Howlett 	WARN_ON(vma->vm_end <= addr);
2241b2b3b886SLiam R. Howlett 
2242dd3b614fSDmitry Safonov 	if (vma->vm_ops && vma->vm_ops->may_split) {
2243dd3b614fSDmitry Safonov 		err = vma->vm_ops->may_split(vma, addr);
224431383c68SDan Williams 		if (err)
224531383c68SDan Williams 			return err;
224631383c68SDan Williams 	}
22471da177e4SLinus Torvalds 
22483928d4f5SLinus Torvalds 	new = vm_area_dup(vma);
22491da177e4SLinus Torvalds 	if (!new)
2250e3975891SChen Gang 		return -ENOMEM;
22511da177e4SLinus Torvalds 
2252b2b3b886SLiam R. Howlett 	err = -ENOMEM;
2253b2b3b886SLiam R. Howlett 	if (vma_iter_prealloc(vmi))
2254b2b3b886SLiam R. Howlett 		goto out_free_vma;
2255b2b3b886SLiam R. Howlett 
2256b2b3b886SLiam R. Howlett 	if (new_below) {
22571da177e4SLinus Torvalds 		new->vm_end = addr;
2258b2b3b886SLiam R. Howlett 	} else {
22591da177e4SLinus Torvalds 		new->vm_start = addr;
22601da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
22611da177e4SLinus Torvalds 	}
22621da177e4SLinus Torvalds 
2263ef0855d3SOleg Nesterov 	err = vma_dup_policy(vma, new);
2264ef0855d3SOleg Nesterov 	if (err)
2265b2b3b886SLiam R. Howlett 		goto out_free_vmi;
22661da177e4SLinus Torvalds 
2267c4ea95d7SDaniel Forrest 	err = anon_vma_clone(new, vma);
2268c4ea95d7SDaniel Forrest 	if (err)
22695beb4930SRik van Riel 		goto out_free_mpol;
22705beb4930SRik van Riel 
2271e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
22721da177e4SLinus Torvalds 		get_file(new->vm_file);
22731da177e4SLinus Torvalds 
22741da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
22751da177e4SLinus Torvalds 		new->vm_ops->open(new);
22761da177e4SLinus Torvalds 
2277b2b3b886SLiam R. Howlett 	init_vma_prep(&vp, vma);
2278b2b3b886SLiam R. Howlett 	vp.insert = new;
2279b2b3b886SLiam R. Howlett 	vma_prepare(&vp);
2280ccf1d78dSSuren Baghdasaryan 	vma_adjust_trans_huge(vma, vma->vm_start, addr, 0);
22811da177e4SLinus Torvalds 
2282b2b3b886SLiam R. Howlett 	if (new_below) {
2283b2b3b886SLiam R. Howlett 		vma->vm_start = addr;
2284b2b3b886SLiam R. Howlett 		vma->vm_pgoff += (addr - new->vm_start) >> PAGE_SHIFT;
2285b2b3b886SLiam R. Howlett 	} else {
2286b2b3b886SLiam R. Howlett 		vma->vm_end = addr;
22879760ebffSLiam R. Howlett 	}
22885beb4930SRik van Riel 
2289b2b3b886SLiam R. Howlett 	/* vma_complete stores the new vma */
2290b2b3b886SLiam R. Howlett 	vma_complete(&vp, vmi, vma->vm_mm);
2291b2b3b886SLiam R. Howlett 
2292b2b3b886SLiam R. Howlett 	/* Success. */
2293b2b3b886SLiam R. Howlett 	if (new_below)
2294b2b3b886SLiam R. Howlett 		vma_next(vmi);
2295b2b3b886SLiam R. Howlett 	validate_mm_mt(vma->vm_mm);
2296b2b3b886SLiam R. Howlett 	return 0;
2297b2b3b886SLiam R. Howlett 
22985beb4930SRik van Riel out_free_mpol:
2299ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new));
2300b2b3b886SLiam R. Howlett out_free_vmi:
2301b2b3b886SLiam R. Howlett 	vma_iter_free(vmi);
23025beb4930SRik van Riel out_free_vma:
23033928d4f5SLinus Torvalds 	vm_area_free(new);
23049760ebffSLiam R. Howlett 	validate_mm_mt(vma->vm_mm);
23055beb4930SRik van Riel 	return err;
23061da177e4SLinus Torvalds }
23071da177e4SLinus Torvalds 
2308659ace58SKOSAKI Motohiro /*
2309659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2310659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2311659ace58SKOSAKI Motohiro  */
23129760ebffSLiam R. Howlett int split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
2313659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2314659ace58SKOSAKI Motohiro {
23159760ebffSLiam R. Howlett 	if (vma->vm_mm->map_count >= sysctl_max_map_count)
2316659ace58SKOSAKI Motohiro 		return -ENOMEM;
2317659ace58SKOSAKI Motohiro 
23189760ebffSLiam R. Howlett 	return __split_vma(vmi, vma, addr, new_below);
2319f2ebfe43SLiam R. Howlett }
2320f2ebfe43SLiam R. Howlett 
2321763ecb03SLiam R. Howlett static inline int munmap_sidetree(struct vm_area_struct *vma,
2322763ecb03SLiam R. Howlett 				   struct ma_state *mas_detach)
23231da177e4SLinus Torvalds {
232473046fd0SSuren Baghdasaryan 	vma_start_write(vma);
2325763ecb03SLiam R. Howlett 	mas_set_range(mas_detach, vma->vm_start, vma->vm_end - 1);
2326763ecb03SLiam R. Howlett 	if (mas_store_gfp(mas_detach, vma, GFP_KERNEL))
2327763ecb03SLiam R. Howlett 		return -ENOMEM;
232811f9a21aSLiam R. Howlett 
2329457f67beSSuren Baghdasaryan 	vma_mark_detached(vma, true);
2330763ecb03SLiam R. Howlett 	if (vma->vm_flags & VM_LOCKED)
2331763ecb03SLiam R. Howlett 		vma->vm_mm->locked_vm -= vma_pages(vma);
233211f9a21aSLiam R. Howlett 
2333763ecb03SLiam R. Howlett 	return 0;
233411f9a21aSLiam R. Howlett }
233511f9a21aSLiam R. Howlett 
233611f9a21aSLiam R. Howlett /*
2337183654ceSLiam R. Howlett  * do_vmi_align_munmap() - munmap the aligned region from @start to @end.
2338183654ceSLiam R. Howlett  * @vmi: The vma iterator
233911f9a21aSLiam R. Howlett  * @vma: The starting vm_area_struct
234011f9a21aSLiam R. Howlett  * @mm: The mm_struct
234111f9a21aSLiam R. Howlett  * @start: The aligned start address to munmap.
234211f9a21aSLiam R. Howlett  * @end: The aligned end address to munmap.
234311f9a21aSLiam R. Howlett  * @uf: The userfaultfd list_head
23448651a137SLorenzo Stoakes  * @downgrade: Set to true to attempt a write downgrade of the mmap_lock
234511f9a21aSLiam R. Howlett  *
234611f9a21aSLiam R. Howlett  * If @downgrade is true, check return code for potential release of the lock.
234711f9a21aSLiam R. Howlett  */
234811f9a21aSLiam R. Howlett static int
2349183654ceSLiam R. Howlett do_vmi_align_munmap(struct vma_iterator *vmi, struct vm_area_struct *vma,
235011f9a21aSLiam R. Howlett 		    struct mm_struct *mm, unsigned long start,
235111f9a21aSLiam R. Howlett 		    unsigned long end, struct list_head *uf, bool downgrade)
235211f9a21aSLiam R. Howlett {
2353763ecb03SLiam R. Howlett 	struct vm_area_struct *prev, *next = NULL;
2354763ecb03SLiam R. Howlett 	struct maple_tree mt_detach;
2355763ecb03SLiam R. Howlett 	int count = 0;
2356d4af56c5SLiam R. Howlett 	int error = -ENOMEM;
2357763ecb03SLiam R. Howlett 	MA_STATE(mas_detach, &mt_detach, 0, 0);
23583dd44325SLiam R. Howlett 	mt_init_flags(&mt_detach, vmi->mas.tree->ma_flags & MT_FLAGS_LOCK_MASK);
2359763ecb03SLiam R. Howlett 	mt_set_external_lock(&mt_detach, &mm->mmap_lock);
2360524e00b3SLiam R. Howlett 
23611da177e4SLinus Torvalds 	/*
23621da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
23631da177e4SLinus Torvalds 	 *
23641da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
23651da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
23661da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
23671da177e4SLinus Torvalds 	 */
2368763ecb03SLiam R. Howlett 
2369763ecb03SLiam R. Howlett 	/* Does it split the first one? */
2370146425a3SHugh Dickins 	if (start > vma->vm_start) {
2371659ace58SKOSAKI Motohiro 
2372659ace58SKOSAKI Motohiro 		/*
2373659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
2374659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
2375659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
2376659ace58SKOSAKI Motohiro 		 */
2377659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2378d4af56c5SLiam R. Howlett 			goto map_count_exceeded;
2379659ace58SKOSAKI Motohiro 
23809760ebffSLiam R. Howlett 		error = __split_vma(vmi, vma, start, 0);
23811da177e4SLinus Torvalds 		if (error)
2382763ecb03SLiam R. Howlett 			goto start_split_failed;
238311f9a21aSLiam R. Howlett 
23840fd5a9e2SLiam R. Howlett 		vma = vma_iter_load(vmi);
23851da177e4SLinus Torvalds 	}
23861da177e4SLinus Torvalds 
2387183654ceSLiam R. Howlett 	prev = vma_prev(vmi);
2388763ecb03SLiam R. Howlett 	if (unlikely((!prev)))
2389183654ceSLiam R. Howlett 		vma_iter_set(vmi, start);
239011f9a21aSLiam R. Howlett 
2391763ecb03SLiam R. Howlett 	/*
2392763ecb03SLiam R. Howlett 	 * Detach a range of VMAs from the mm. Using next as a temp variable as
2393763ecb03SLiam R. Howlett 	 * it is always overwritten.
2394763ecb03SLiam R. Howlett 	 */
2395183654ceSLiam R. Howlett 	for_each_vma_range(*vmi, next, end) {
2396763ecb03SLiam R. Howlett 		/* Does it split the end? */
2397763ecb03SLiam R. Howlett 		if (next->vm_end > end) {
23986b73cff2SLiam R. Howlett 			error = __split_vma(vmi, next, end, 0);
23991da177e4SLinus Torvalds 			if (error)
2400763ecb03SLiam R. Howlett 				goto end_split_failed;
240111f9a21aSLiam R. Howlett 		}
2402763ecb03SLiam R. Howlett 		error = munmap_sidetree(next, &mas_detach);
2403763ecb03SLiam R. Howlett 		if (error)
2404763ecb03SLiam R. Howlett 			goto munmap_sidetree_failed;
2405763ecb03SLiam R. Howlett 
2406763ecb03SLiam R. Howlett 		count++;
2407763ecb03SLiam R. Howlett #ifdef CONFIG_DEBUG_VM_MAPLE_TREE
2408763ecb03SLiam R. Howlett 		BUG_ON(next->vm_start < start);
2409763ecb03SLiam R. Howlett 		BUG_ON(next->vm_start > end);
2410763ecb03SLiam R. Howlett #endif
2411763ecb03SLiam R. Howlett 	}
2412763ecb03SLiam R. Howlett 
2413183654ceSLiam R. Howlett 	next = vma_next(vmi);
24142376dd7cSAndrea Arcangeli 	if (unlikely(uf)) {
24152376dd7cSAndrea Arcangeli 		/*
24162376dd7cSAndrea Arcangeli 		 * If userfaultfd_unmap_prep returns an error the vmas
2417f0953a1bSIngo Molnar 		 * will remain split, but userland will get a
24182376dd7cSAndrea Arcangeli 		 * highly unexpected error anyway. This is no
24192376dd7cSAndrea Arcangeli 		 * different than the case where the first of the two
24202376dd7cSAndrea Arcangeli 		 * __split_vma fails, but we don't undo the first
24212376dd7cSAndrea Arcangeli 		 * split, despite we could. This is unlikely enough
24222376dd7cSAndrea Arcangeli 		 * failure that it's not worth optimizing it for.
24232376dd7cSAndrea Arcangeli 		 */
242469dbe6daSLiam R. Howlett 		error = userfaultfd_unmap_prep(mm, start, end, uf);
242511f9a21aSLiam R. Howlett 
24262376dd7cSAndrea Arcangeli 		if (error)
2427d4af56c5SLiam R. Howlett 			goto userfaultfd_error;
24282376dd7cSAndrea Arcangeli 	}
24292376dd7cSAndrea Arcangeli 
2430763ecb03SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
2431763ecb03SLiam R. Howlett 	/* Make sure no VMAs are about to be lost. */
2432763ecb03SLiam R. Howlett 	{
2433763ecb03SLiam R. Howlett 		MA_STATE(test, &mt_detach, start, end - 1);
2434763ecb03SLiam R. Howlett 		struct vm_area_struct *vma_mas, *vma_test;
2435763ecb03SLiam R. Howlett 		int test_count = 0;
2436763ecb03SLiam R. Howlett 
2437183654ceSLiam R. Howlett 		vma_iter_set(vmi, start);
2438763ecb03SLiam R. Howlett 		rcu_read_lock();
2439763ecb03SLiam R. Howlett 		vma_test = mas_find(&test, end - 1);
2440183654ceSLiam R. Howlett 		for_each_vma_range(*vmi, vma_mas, end) {
2441763ecb03SLiam R. Howlett 			BUG_ON(vma_mas != vma_test);
2442763ecb03SLiam R. Howlett 			test_count++;
2443763ecb03SLiam R. Howlett 			vma_test = mas_next(&test, end - 1);
2444763ecb03SLiam R. Howlett 		}
2445763ecb03SLiam R. Howlett 		rcu_read_unlock();
2446763ecb03SLiam R. Howlett 		BUG_ON(count != test_count);
2447763ecb03SLiam R. Howlett 	}
2448763ecb03SLiam R. Howlett #endif
24490378c0a0SLiam R. Howlett 	/* Point of no return */
2450183654ceSLiam R. Howlett 	vma_iter_set(vmi, start);
2451183654ceSLiam R. Howlett 	if (vma_iter_clear_gfp(vmi, start, end, GFP_KERNEL))
24520378c0a0SLiam R. Howlett 		return -ENOMEM;
24530378c0a0SLiam R. Howlett 
2454763ecb03SLiam R. Howlett 	mm->map_count -= count;
245511f9a21aSLiam R. Howlett 	/*
245611f9a21aSLiam R. Howlett 	 * Do not downgrade mmap_lock if we are next to VM_GROWSDOWN or
245711f9a21aSLiam R. Howlett 	 * VM_GROWSUP VMA. Such VMAs can change their size under
245811f9a21aSLiam R. Howlett 	 * down_read(mmap_lock) and collide with the VMA we are about to unmap.
245911f9a21aSLiam R. Howlett 	 */
246011f9a21aSLiam R. Howlett 	if (downgrade) {
2461763ecb03SLiam R. Howlett 		if (next && (next->vm_flags & VM_GROWSDOWN))
246211f9a21aSLiam R. Howlett 			downgrade = false;
246311f9a21aSLiam R. Howlett 		else if (prev && (prev->vm_flags & VM_GROWSUP))
246411f9a21aSLiam R. Howlett 			downgrade = false;
246511f9a21aSLiam R. Howlett 		else
2466d8ed45c5SMichel Lespinasse 			mmap_write_downgrade(mm);
246711f9a21aSLiam R. Howlett 	}
2468dd2283f2SYang Shi 
246968f48381SSuren Baghdasaryan 	/*
247068f48381SSuren Baghdasaryan 	 * We can free page tables without write-locking mmap_lock because VMAs
247168f48381SSuren Baghdasaryan 	 * were isolated before we downgraded mmap_lock.
247268f48381SSuren Baghdasaryan 	 */
247368f48381SSuren Baghdasaryan 	unmap_region(mm, &mt_detach, vma, prev, next, start, end, !downgrade);
2474763ecb03SLiam R. Howlett 	/* Statistics and freeing VMAs */
2475763ecb03SLiam R. Howlett 	mas_set(&mas_detach, start);
2476763ecb03SLiam R. Howlett 	remove_mt(mm, &mas_detach);
2477763ecb03SLiam R. Howlett 	__mt_destroy(&mt_detach);
24781da177e4SLinus Torvalds 
2479524e00b3SLiam R. Howlett 
2480524e00b3SLiam R. Howlett 	validate_mm(mm);
2481dd2283f2SYang Shi 	return downgrade ? 1 : 0;
2482d4af56c5SLiam R. Howlett 
2483d4af56c5SLiam R. Howlett userfaultfd_error:
2484763ecb03SLiam R. Howlett munmap_sidetree_failed:
2485763ecb03SLiam R. Howlett end_split_failed:
2486763ecb03SLiam R. Howlett 	__mt_destroy(&mt_detach);
2487763ecb03SLiam R. Howlett start_split_failed:
2488763ecb03SLiam R. Howlett map_count_exceeded:
2489d4af56c5SLiam R. Howlett 	return error;
24901da177e4SLinus Torvalds }
24911da177e4SLinus Torvalds 
249211f9a21aSLiam R. Howlett /*
2493183654ceSLiam R. Howlett  * do_vmi_munmap() - munmap a given range.
2494183654ceSLiam R. Howlett  * @vmi: The vma iterator
249511f9a21aSLiam R. Howlett  * @mm: The mm_struct
249611f9a21aSLiam R. Howlett  * @start: The start address to munmap
249711f9a21aSLiam R. Howlett  * @len: The length of the range to munmap
249811f9a21aSLiam R. Howlett  * @uf: The userfaultfd list_head
249911f9a21aSLiam R. Howlett  * @downgrade: set to true if the user wants to attempt to write_downgrade the
25008651a137SLorenzo Stoakes  * mmap_lock
250111f9a21aSLiam R. Howlett  *
250211f9a21aSLiam R. Howlett  * This function takes a @mas that is either pointing to the previous VMA or set
250311f9a21aSLiam R. Howlett  * to MA_START and sets it up to remove the mapping(s).  The @len will be
250411f9a21aSLiam R. Howlett  * aligned and any arch_unmap work will be preformed.
250511f9a21aSLiam R. Howlett  *
250611f9a21aSLiam R. Howlett  * Returns: -EINVAL on failure, 1 on success and unlock, 0 otherwise.
250711f9a21aSLiam R. Howlett  */
2508183654ceSLiam R. Howlett int do_vmi_munmap(struct vma_iterator *vmi, struct mm_struct *mm,
250911f9a21aSLiam R. Howlett 		  unsigned long start, size_t len, struct list_head *uf,
251011f9a21aSLiam R. Howlett 		  bool downgrade)
251111f9a21aSLiam R. Howlett {
251211f9a21aSLiam R. Howlett 	unsigned long end;
251311f9a21aSLiam R. Howlett 	struct vm_area_struct *vma;
251411f9a21aSLiam R. Howlett 
251511f9a21aSLiam R. Howlett 	if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
251611f9a21aSLiam R. Howlett 		return -EINVAL;
251711f9a21aSLiam R. Howlett 
251811f9a21aSLiam R. Howlett 	end = start + PAGE_ALIGN(len);
251911f9a21aSLiam R. Howlett 	if (end == start)
252011f9a21aSLiam R. Howlett 		return -EINVAL;
252111f9a21aSLiam R. Howlett 
252211f9a21aSLiam R. Howlett 	 /* arch_unmap() might do unmaps itself.  */
252311f9a21aSLiam R. Howlett 	arch_unmap(mm, start, end);
252411f9a21aSLiam R. Howlett 
252511f9a21aSLiam R. Howlett 	/* Find the first overlapping VMA */
2526183654ceSLiam R. Howlett 	vma = vma_find(vmi, end);
252711f9a21aSLiam R. Howlett 	if (!vma)
252811f9a21aSLiam R. Howlett 		return 0;
252911f9a21aSLiam R. Howlett 
2530183654ceSLiam R. Howlett 	return do_vmi_align_munmap(vmi, vma, mm, start, end, uf, downgrade);
253111f9a21aSLiam R. Howlett }
253211f9a21aSLiam R. Howlett 
253311f9a21aSLiam R. Howlett /* do_munmap() - Wrapper function for non-maple tree aware do_munmap() calls.
253411f9a21aSLiam R. Howlett  * @mm: The mm_struct
253511f9a21aSLiam R. Howlett  * @start: The start address to munmap
253611f9a21aSLiam R. Howlett  * @len: The length to be munmapped.
253711f9a21aSLiam R. Howlett  * @uf: The userfaultfd list_head
253811f9a21aSLiam R. Howlett  */
2539dd2283f2SYang Shi int do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2540dd2283f2SYang Shi 	      struct list_head *uf)
2541dd2283f2SYang Shi {
2542183654ceSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, start);
254311f9a21aSLiam R. Howlett 
2544183654ceSLiam R. Howlett 	return do_vmi_munmap(&vmi, mm, start, len, uf, false);
2545dd2283f2SYang Shi }
2546dd2283f2SYang Shi 
2547e99668a5SLiam R. Howlett unsigned long mmap_region(struct file *file, unsigned long addr,
2548e99668a5SLiam R. Howlett 		unsigned long len, vm_flags_t vm_flags, unsigned long pgoff,
2549e99668a5SLiam R. Howlett 		struct list_head *uf)
2550e99668a5SLiam R. Howlett {
2551e99668a5SLiam R. Howlett 	struct mm_struct *mm = current->mm;
2552e99668a5SLiam R. Howlett 	struct vm_area_struct *vma = NULL;
2553e99668a5SLiam R. Howlett 	struct vm_area_struct *next, *prev, *merge;
2554e99668a5SLiam R. Howlett 	pgoff_t pglen = len >> PAGE_SHIFT;
2555e99668a5SLiam R. Howlett 	unsigned long charged = 0;
2556e99668a5SLiam R. Howlett 	unsigned long end = addr + len;
2557e99668a5SLiam R. Howlett 	unsigned long merge_start = addr, merge_end = end;
2558e99668a5SLiam R. Howlett 	pgoff_t vm_pgoff;
2559e99668a5SLiam R. Howlett 	int error;
2560183654ceSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, addr);
2561e99668a5SLiam R. Howlett 
2562e99668a5SLiam R. Howlett 	/* Check against address space limit. */
2563e99668a5SLiam R. Howlett 	if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
2564e99668a5SLiam R. Howlett 		unsigned long nr_pages;
2565e99668a5SLiam R. Howlett 
2566e99668a5SLiam R. Howlett 		/*
2567e99668a5SLiam R. Howlett 		 * MAP_FIXED may remove pages of mappings that intersects with
2568e99668a5SLiam R. Howlett 		 * requested mapping. Account for the pages it would unmap.
2569e99668a5SLiam R. Howlett 		 */
2570e99668a5SLiam R. Howlett 		nr_pages = count_vma_pages_range(mm, addr, end);
2571e99668a5SLiam R. Howlett 
2572e99668a5SLiam R. Howlett 		if (!may_expand_vm(mm, vm_flags,
2573e99668a5SLiam R. Howlett 					(len >> PAGE_SHIFT) - nr_pages))
2574e99668a5SLiam R. Howlett 			return -ENOMEM;
2575e99668a5SLiam R. Howlett 	}
2576e99668a5SLiam R. Howlett 
2577e99668a5SLiam R. Howlett 	/* Unmap any existing mapping in the area */
2578183654ceSLiam R. Howlett 	if (do_vmi_munmap(&vmi, mm, addr, len, uf, false))
2579e99668a5SLiam R. Howlett 		return -ENOMEM;
2580e99668a5SLiam R. Howlett 
2581e99668a5SLiam R. Howlett 	/*
2582e99668a5SLiam R. Howlett 	 * Private writable mapping: check memory availability
2583e99668a5SLiam R. Howlett 	 */
2584e99668a5SLiam R. Howlett 	if (accountable_mapping(file, vm_flags)) {
2585e99668a5SLiam R. Howlett 		charged = len >> PAGE_SHIFT;
2586e99668a5SLiam R. Howlett 		if (security_vm_enough_memory_mm(mm, charged))
2587e99668a5SLiam R. Howlett 			return -ENOMEM;
2588e99668a5SLiam R. Howlett 		vm_flags |= VM_ACCOUNT;
2589e99668a5SLiam R. Howlett 	}
2590e99668a5SLiam R. Howlett 
2591183654ceSLiam R. Howlett 	next = vma_next(&vmi);
2592183654ceSLiam R. Howlett 	prev = vma_prev(&vmi);
2593e99668a5SLiam R. Howlett 	if (vm_flags & VM_SPECIAL)
2594e99668a5SLiam R. Howlett 		goto cannot_expand;
2595e99668a5SLiam R. Howlett 
2596e99668a5SLiam R. Howlett 	/* Attempt to expand an old mapping */
2597e99668a5SLiam R. Howlett 	/* Check next */
2598e99668a5SLiam R. Howlett 	if (next && next->vm_start == end && !vma_policy(next) &&
2599e99668a5SLiam R. Howlett 	    can_vma_merge_before(next, vm_flags, NULL, file, pgoff+pglen,
2600e99668a5SLiam R. Howlett 				 NULL_VM_UFFD_CTX, NULL)) {
2601e99668a5SLiam R. Howlett 		merge_end = next->vm_end;
2602e99668a5SLiam R. Howlett 		vma = next;
2603e99668a5SLiam R. Howlett 		vm_pgoff = next->vm_pgoff - pglen;
2604e99668a5SLiam R. Howlett 	}
2605e99668a5SLiam R. Howlett 
2606e99668a5SLiam R. Howlett 	/* Check prev */
2607e99668a5SLiam R. Howlett 	if (prev && prev->vm_end == addr && !vma_policy(prev) &&
2608e99668a5SLiam R. Howlett 	    (vma ? can_vma_merge_after(prev, vm_flags, vma->anon_vma, file,
2609e99668a5SLiam R. Howlett 				       pgoff, vma->vm_userfaultfd_ctx, NULL) :
2610e99668a5SLiam R. Howlett 		   can_vma_merge_after(prev, vm_flags, NULL, file, pgoff,
2611e99668a5SLiam R. Howlett 				       NULL_VM_UFFD_CTX, NULL))) {
2612e99668a5SLiam R. Howlett 		merge_start = prev->vm_start;
2613e99668a5SLiam R. Howlett 		vma = prev;
2614e99668a5SLiam R. Howlett 		vm_pgoff = prev->vm_pgoff;
2615e99668a5SLiam R. Howlett 	}
2616e99668a5SLiam R. Howlett 
2617e99668a5SLiam R. Howlett 
2618e99668a5SLiam R. Howlett 	/* Actually expand, if possible */
2619e99668a5SLiam R. Howlett 	if (vma &&
26203c441ab7SLiam R. Howlett 	    !vma_expand(&vmi, vma, merge_start, merge_end, vm_pgoff, next)) {
2621e99668a5SLiam R. Howlett 		khugepaged_enter_vma(vma, vm_flags);
2622e99668a5SLiam R. Howlett 		goto expanded;
2623e99668a5SLiam R. Howlett 	}
2624e99668a5SLiam R. Howlett 
2625e99668a5SLiam R. Howlett cannot_expand:
2626e99668a5SLiam R. Howlett 	/*
2627e99668a5SLiam R. Howlett 	 * Determine the object being mapped and call the appropriate
2628e99668a5SLiam R. Howlett 	 * specific mapper. the address has already been validated, but
2629e99668a5SLiam R. Howlett 	 * not unmapped, but the maps are removed from the list.
2630e99668a5SLiam R. Howlett 	 */
2631e99668a5SLiam R. Howlett 	vma = vm_area_alloc(mm);
2632e99668a5SLiam R. Howlett 	if (!vma) {
2633e99668a5SLiam R. Howlett 		error = -ENOMEM;
2634e99668a5SLiam R. Howlett 		goto unacct_error;
2635e99668a5SLiam R. Howlett 	}
2636e99668a5SLiam R. Howlett 
26370fd5a9e2SLiam R. Howlett 	vma_iter_set(&vmi, addr);
2638e99668a5SLiam R. Howlett 	vma->vm_start = addr;
2639e99668a5SLiam R. Howlett 	vma->vm_end = end;
26401c71222eSSuren Baghdasaryan 	vm_flags_init(vma, vm_flags);
2641e99668a5SLiam R. Howlett 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
2642e99668a5SLiam R. Howlett 	vma->vm_pgoff = pgoff;
2643e99668a5SLiam R. Howlett 
2644e99668a5SLiam R. Howlett 	if (file) {
2645e99668a5SLiam R. Howlett 		if (vm_flags & VM_SHARED) {
2646e99668a5SLiam R. Howlett 			error = mapping_map_writable(file->f_mapping);
2647e99668a5SLiam R. Howlett 			if (error)
2648e99668a5SLiam R. Howlett 				goto free_vma;
2649e99668a5SLiam R. Howlett 		}
2650e99668a5SLiam R. Howlett 
2651e99668a5SLiam R. Howlett 		vma->vm_file = get_file(file);
2652e99668a5SLiam R. Howlett 		error = call_mmap(file, vma);
2653e99668a5SLiam R. Howlett 		if (error)
2654e99668a5SLiam R. Howlett 			goto unmap_and_free_vma;
2655e99668a5SLiam R. Howlett 
2656a57b7051SLiam Howlett 		/*
2657a57b7051SLiam Howlett 		 * Expansion is handled above, merging is handled below.
2658a57b7051SLiam Howlett 		 * Drivers should not alter the address of the VMA.
2659e99668a5SLiam R. Howlett 		 */
2660a57b7051SLiam Howlett 		error = -EINVAL;
2661cc8d1b09SLiam R. Howlett 		if (WARN_ON((addr != vma->vm_start)))
2662a57b7051SLiam Howlett 			goto close_and_free_vma;
2663e99668a5SLiam R. Howlett 
2664cc8d1b09SLiam R. Howlett 		vma_iter_set(&vmi, addr);
2665e99668a5SLiam R. Howlett 		/*
2666e99668a5SLiam R. Howlett 		 * If vm_flags changed after call_mmap(), we should try merge
2667e99668a5SLiam R. Howlett 		 * vma again as we may succeed this time.
2668e99668a5SLiam R. Howlett 		 */
2669e99668a5SLiam R. Howlett 		if (unlikely(vm_flags != vma->vm_flags && prev)) {
26709760ebffSLiam R. Howlett 			merge = vma_merge(&vmi, mm, prev, vma->vm_start,
26719760ebffSLiam R. Howlett 				    vma->vm_end, vma->vm_flags, NULL,
26729760ebffSLiam R. Howlett 				    vma->vm_file, vma->vm_pgoff, NULL,
26739760ebffSLiam R. Howlett 				    NULL_VM_UFFD_CTX, NULL);
2674e99668a5SLiam R. Howlett 			if (merge) {
2675e99668a5SLiam R. Howlett 				/*
2676e99668a5SLiam R. Howlett 				 * ->mmap() can change vma->vm_file and fput
2677e99668a5SLiam R. Howlett 				 * the original file. So fput the vma->vm_file
2678e99668a5SLiam R. Howlett 				 * here or we would add an extra fput for file
2679e99668a5SLiam R. Howlett 				 * and cause general protection fault
2680e99668a5SLiam R. Howlett 				 * ultimately.
2681e99668a5SLiam R. Howlett 				 */
2682e99668a5SLiam R. Howlett 				fput(vma->vm_file);
2683e99668a5SLiam R. Howlett 				vm_area_free(vma);
2684e99668a5SLiam R. Howlett 				vma = merge;
2685e99668a5SLiam R. Howlett 				/* Update vm_flags to pick up the change. */
2686e99668a5SLiam R. Howlett 				vm_flags = vma->vm_flags;
2687e99668a5SLiam R. Howlett 				goto unmap_writable;
2688e99668a5SLiam R. Howlett 			}
2689e99668a5SLiam R. Howlett 		}
2690e99668a5SLiam R. Howlett 
2691e99668a5SLiam R. Howlett 		vm_flags = vma->vm_flags;
2692e99668a5SLiam R. Howlett 	} else if (vm_flags & VM_SHARED) {
2693e99668a5SLiam R. Howlett 		error = shmem_zero_setup(vma);
2694e99668a5SLiam R. Howlett 		if (error)
2695e99668a5SLiam R. Howlett 			goto free_vma;
2696e99668a5SLiam R. Howlett 	} else {
2697e99668a5SLiam R. Howlett 		vma_set_anonymous(vma);
2698e99668a5SLiam R. Howlett 	}
2699e99668a5SLiam R. Howlett 
2700b507808eSJoey Gouly 	if (map_deny_write_exec(vma, vma->vm_flags)) {
2701b507808eSJoey Gouly 		error = -EACCES;
2702b507808eSJoey Gouly 		goto close_and_free_vma;
2703b507808eSJoey Gouly 	}
2704b507808eSJoey Gouly 
2705e99668a5SLiam R. Howlett 	/* Allow architectures to sanity-check the vm_flags */
2706e99668a5SLiam R. Howlett 	error = -EINVAL;
2707cc8d1b09SLiam R. Howlett 	if (!arch_validate_flags(vma->vm_flags))
2708deb0f656SCarlos Llamas 		goto close_and_free_vma;
2709e99668a5SLiam R. Howlett 
2710e99668a5SLiam R. Howlett 	error = -ENOMEM;
2711cc8d1b09SLiam R. Howlett 	if (vma_iter_prealloc(&vmi))
27125789151eSMike Kravetz 		goto close_and_free_vma;
2713e99668a5SLiam R. Howlett 
2714e99668a5SLiam R. Howlett 	if (vma->vm_file)
2715e99668a5SLiam R. Howlett 		i_mmap_lock_write(vma->vm_file->f_mapping);
2716e99668a5SLiam R. Howlett 
2717183654ceSLiam R. Howlett 	vma_iter_store(&vmi, vma);
2718e99668a5SLiam R. Howlett 	mm->map_count++;
2719e99668a5SLiam R. Howlett 	if (vma->vm_file) {
2720e99668a5SLiam R. Howlett 		if (vma->vm_flags & VM_SHARED)
2721e99668a5SLiam R. Howlett 			mapping_allow_writable(vma->vm_file->f_mapping);
2722e99668a5SLiam R. Howlett 
2723e99668a5SLiam R. Howlett 		flush_dcache_mmap_lock(vma->vm_file->f_mapping);
2724e99668a5SLiam R. Howlett 		vma_interval_tree_insert(vma, &vma->vm_file->f_mapping->i_mmap);
2725e99668a5SLiam R. Howlett 		flush_dcache_mmap_unlock(vma->vm_file->f_mapping);
2726e99668a5SLiam R. Howlett 		i_mmap_unlock_write(vma->vm_file->f_mapping);
2727e99668a5SLiam R. Howlett 	}
2728e99668a5SLiam R. Howlett 
2729e99668a5SLiam R. Howlett 	/*
2730e99668a5SLiam R. Howlett 	 * vma_merge() calls khugepaged_enter_vma() either, the below
2731e99668a5SLiam R. Howlett 	 * call covers the non-merge case.
2732e99668a5SLiam R. Howlett 	 */
2733e99668a5SLiam R. Howlett 	khugepaged_enter_vma(vma, vma->vm_flags);
2734e99668a5SLiam R. Howlett 
2735e99668a5SLiam R. Howlett 	/* Once vma denies write, undo our temporary denial count */
2736e99668a5SLiam R. Howlett unmap_writable:
2737e99668a5SLiam R. Howlett 	if (file && vm_flags & VM_SHARED)
2738e99668a5SLiam R. Howlett 		mapping_unmap_writable(file->f_mapping);
2739e99668a5SLiam R. Howlett 	file = vma->vm_file;
2740d7597f59SStefan Roesch 	ksm_add_vma(vma);
2741e99668a5SLiam R. Howlett expanded:
2742e99668a5SLiam R. Howlett 	perf_event_mmap(vma);
2743e99668a5SLiam R. Howlett 
2744e99668a5SLiam R. Howlett 	vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
2745e99668a5SLiam R. Howlett 	if (vm_flags & VM_LOCKED) {
2746e99668a5SLiam R. Howlett 		if ((vm_flags & VM_SPECIAL) || vma_is_dax(vma) ||
2747e99668a5SLiam R. Howlett 					is_vm_hugetlb_page(vma) ||
2748e99668a5SLiam R. Howlett 					vma == get_gate_vma(current->mm))
2749e430a95aSSuren Baghdasaryan 			vm_flags_clear(vma, VM_LOCKED_MASK);
2750e99668a5SLiam R. Howlett 		else
2751e99668a5SLiam R. Howlett 			mm->locked_vm += (len >> PAGE_SHIFT);
2752e99668a5SLiam R. Howlett 	}
2753e99668a5SLiam R. Howlett 
2754e99668a5SLiam R. Howlett 	if (file)
2755e99668a5SLiam R. Howlett 		uprobe_mmap(vma);
2756e99668a5SLiam R. Howlett 
2757e99668a5SLiam R. Howlett 	/*
2758e99668a5SLiam R. Howlett 	 * New (or expanded) vma always get soft dirty status.
2759e99668a5SLiam R. Howlett 	 * Otherwise user-space soft-dirty page tracker won't
2760e99668a5SLiam R. Howlett 	 * be able to distinguish situation when vma area unmapped,
2761e99668a5SLiam R. Howlett 	 * then new mapped in-place (which must be aimed as
2762e99668a5SLiam R. Howlett 	 * a completely new data area).
2763e99668a5SLiam R. Howlett 	 */
27641c71222eSSuren Baghdasaryan 	vm_flags_set(vma, VM_SOFTDIRTY);
2765e99668a5SLiam R. Howlett 
2766e99668a5SLiam R. Howlett 	vma_set_page_prot(vma);
2767e99668a5SLiam R. Howlett 
2768e99668a5SLiam R. Howlett 	validate_mm(mm);
2769e99668a5SLiam R. Howlett 	return addr;
2770e99668a5SLiam R. Howlett 
2771deb0f656SCarlos Llamas close_and_free_vma:
2772cc8d1b09SLiam R. Howlett 	if (file && vma->vm_ops && vma->vm_ops->close)
2773deb0f656SCarlos Llamas 		vma->vm_ops->close(vma);
2774cc8d1b09SLiam R. Howlett 
2775cc8d1b09SLiam R. Howlett 	if (file || vma->vm_file) {
2776e99668a5SLiam R. Howlett unmap_and_free_vma:
2777e99668a5SLiam R. Howlett 		fput(vma->vm_file);
2778e99668a5SLiam R. Howlett 		vma->vm_file = NULL;
2779e99668a5SLiam R. Howlett 
2780e99668a5SLiam R. Howlett 		/* Undo any partial mapping done by a device driver. */
2781cc8d1b09SLiam R. Howlett 		unmap_region(mm, &mm->mm_mt, vma, prev, next, vma->vm_start,
278268f48381SSuren Baghdasaryan 			     vma->vm_end, true);
2783cc8d1b09SLiam R. Howlett 	}
2784cc674ab3SLi Zetao 	if (file && (vm_flags & VM_SHARED))
2785e99668a5SLiam R. Howlett 		mapping_unmap_writable(file->f_mapping);
2786e99668a5SLiam R. Howlett free_vma:
2787e99668a5SLiam R. Howlett 	vm_area_free(vma);
2788e99668a5SLiam R. Howlett unacct_error:
2789e99668a5SLiam R. Howlett 	if (charged)
2790e99668a5SLiam R. Howlett 		vm_unacct_memory(charged);
2791e99668a5SLiam R. Howlett 	validate_mm(mm);
2792e99668a5SLiam R. Howlett 	return error;
2793e99668a5SLiam R. Howlett }
2794e99668a5SLiam R. Howlett 
2795dd2283f2SYang Shi static int __vm_munmap(unsigned long start, size_t len, bool downgrade)
2796a46ef99dSLinus Torvalds {
2797a46ef99dSLinus Torvalds 	int ret;
2798bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
2799897ab3e0SMike Rapoport 	LIST_HEAD(uf);
2800183654ceSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, start);
2801a46ef99dSLinus Torvalds 
2802d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2803ae798783SMichal Hocko 		return -EINTR;
2804ae798783SMichal Hocko 
2805183654ceSLiam R. Howlett 	ret = do_vmi_munmap(&vmi, mm, start, len, &uf, downgrade);
2806dd2283f2SYang Shi 	/*
2807c1e8d7c6SMichel Lespinasse 	 * Returning 1 indicates mmap_lock is downgraded.
2808dd2283f2SYang Shi 	 * But 1 is not legal return value of vm_munmap() and munmap(), reset
2809dd2283f2SYang Shi 	 * it to 0 before return.
2810dd2283f2SYang Shi 	 */
2811dd2283f2SYang Shi 	if (ret == 1) {
2812d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2813dd2283f2SYang Shi 		ret = 0;
2814dd2283f2SYang Shi 	} else
2815d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
2816dd2283f2SYang Shi 
2817897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
2818a46ef99dSLinus Torvalds 	return ret;
2819a46ef99dSLinus Torvalds }
2820dd2283f2SYang Shi 
2821dd2283f2SYang Shi int vm_munmap(unsigned long start, size_t len)
2822dd2283f2SYang Shi {
2823dd2283f2SYang Shi 	return __vm_munmap(start, len, false);
2824dd2283f2SYang Shi }
2825a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
2826a46ef99dSLinus Torvalds 
28276a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
28281da177e4SLinus Torvalds {
2829ce18d171SCatalin Marinas 	addr = untagged_addr(addr);
2830dd2283f2SYang Shi 	return __vm_munmap(addr, len, true);
28311da177e4SLinus Torvalds }
28321da177e4SLinus Torvalds 
2833c8d78c18SKirill A. Shutemov 
2834c8d78c18SKirill A. Shutemov /*
2835c8d78c18SKirill A. Shutemov  * Emulation of deprecated remap_file_pages() syscall.
2836c8d78c18SKirill A. Shutemov  */
2837c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2838c8d78c18SKirill A. Shutemov 		unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2839c8d78c18SKirill A. Shutemov {
2840c8d78c18SKirill A. Shutemov 
2841c8d78c18SKirill A. Shutemov 	struct mm_struct *mm = current->mm;
2842c8d78c18SKirill A. Shutemov 	struct vm_area_struct *vma;
2843c8d78c18SKirill A. Shutemov 	unsigned long populate = 0;
2844c8d78c18SKirill A. Shutemov 	unsigned long ret = -EINVAL;
2845c8d78c18SKirill A. Shutemov 	struct file *file;
2846c8d78c18SKirill A. Shutemov 
2847ee65728eSMike Rapoport 	pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/mm/remap_file_pages.rst.\n",
2848c8d78c18SKirill A. Shutemov 		     current->comm, current->pid);
2849c8d78c18SKirill A. Shutemov 
2850c8d78c18SKirill A. Shutemov 	if (prot)
2851c8d78c18SKirill A. Shutemov 		return ret;
2852c8d78c18SKirill A. Shutemov 	start = start & PAGE_MASK;
2853c8d78c18SKirill A. Shutemov 	size = size & PAGE_MASK;
2854c8d78c18SKirill A. Shutemov 
2855c8d78c18SKirill A. Shutemov 	if (start + size <= start)
2856c8d78c18SKirill A. Shutemov 		return ret;
2857c8d78c18SKirill A. Shutemov 
2858c8d78c18SKirill A. Shutemov 	/* Does pgoff wrap? */
2859c8d78c18SKirill A. Shutemov 	if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2860c8d78c18SKirill A. Shutemov 		return ret;
2861c8d78c18SKirill A. Shutemov 
2862d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2863dc0ef0dfSMichal Hocko 		return -EINTR;
2864dc0ef0dfSMichal Hocko 
28659b593cb2SLiam R. Howlett 	vma = vma_lookup(mm, start);
2866c8d78c18SKirill A. Shutemov 
2867c8d78c18SKirill A. Shutemov 	if (!vma || !(vma->vm_flags & VM_SHARED))
2868c8d78c18SKirill A. Shutemov 		goto out;
2869c8d78c18SKirill A. Shutemov 
287048f7df32SKirill A. Shutemov 	if (start + size > vma->vm_end) {
2871763ecb03SLiam R. Howlett 		VMA_ITERATOR(vmi, mm, vma->vm_end);
2872763ecb03SLiam R. Howlett 		struct vm_area_struct *next, *prev = vma;
287348f7df32SKirill A. Shutemov 
2874763ecb03SLiam R. Howlett 		for_each_vma_range(vmi, next, start + size) {
287548f7df32SKirill A. Shutemov 			/* hole between vmas ? */
2876763ecb03SLiam R. Howlett 			if (next->vm_start != prev->vm_end)
287748f7df32SKirill A. Shutemov 				goto out;
287848f7df32SKirill A. Shutemov 
287948f7df32SKirill A. Shutemov 			if (next->vm_file != vma->vm_file)
288048f7df32SKirill A. Shutemov 				goto out;
288148f7df32SKirill A. Shutemov 
288248f7df32SKirill A. Shutemov 			if (next->vm_flags != vma->vm_flags)
288348f7df32SKirill A. Shutemov 				goto out;
288448f7df32SKirill A. Shutemov 
28851db43d3fSLiam Howlett 			if (start + size <= next->vm_end)
28861db43d3fSLiam Howlett 				break;
28871db43d3fSLiam Howlett 
2888763ecb03SLiam R. Howlett 			prev = next;
288948f7df32SKirill A. Shutemov 		}
289048f7df32SKirill A. Shutemov 
289148f7df32SKirill A. Shutemov 		if (!next)
2892c8d78c18SKirill A. Shutemov 			goto out;
2893c8d78c18SKirill A. Shutemov 	}
2894c8d78c18SKirill A. Shutemov 
2895c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2896c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2897c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2898c8d78c18SKirill A. Shutemov 
2899c8d78c18SKirill A. Shutemov 	flags &= MAP_NONBLOCK;
2900c8d78c18SKirill A. Shutemov 	flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2901fce000b1SLiam Howlett 	if (vma->vm_flags & VM_LOCKED)
2902c8d78c18SKirill A. Shutemov 		flags |= MAP_LOCKED;
290348f7df32SKirill A. Shutemov 
2904c8d78c18SKirill A. Shutemov 	file = get_file(vma->vm_file);
290545e55300SPeter Collingbourne 	ret = do_mmap(vma->vm_file, start, size,
2906897ab3e0SMike Rapoport 			prot, flags, pgoff, &populate, NULL);
2907c8d78c18SKirill A. Shutemov 	fput(file);
2908c8d78c18SKirill A. Shutemov out:
2909d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
2910c8d78c18SKirill A. Shutemov 	if (populate)
2911c8d78c18SKirill A. Shutemov 		mm_populate(ret, populate);
2912c8d78c18SKirill A. Shutemov 	if (!IS_ERR_VALUE(ret))
2913c8d78c18SKirill A. Shutemov 		ret = 0;
2914c8d78c18SKirill A. Shutemov 	return ret;
2915c8d78c18SKirill A. Shutemov }
2916c8d78c18SKirill A. Shutemov 
29171da177e4SLinus Torvalds /*
291827b26701SLiam R. Howlett  * do_vma_munmap() - Unmap a full or partial vma.
291927b26701SLiam R. Howlett  * @vmi: The vma iterator pointing at the vma
292027b26701SLiam R. Howlett  * @vma: The first vma to be munmapped
292127b26701SLiam R. Howlett  * @start: the start of the address to unmap
292227b26701SLiam R. Howlett  * @end: The end of the address to unmap
29232e7ce7d3SLiam R. Howlett  * @uf: The userfaultfd list_head
292427b26701SLiam R. Howlett  * @downgrade: Attempt to downgrade or not
29252e7ce7d3SLiam R. Howlett  *
292627b26701SLiam R. Howlett  * Returns: 0 on success and not downgraded, 1 on success and downgraded.
292727b26701SLiam R. Howlett  * unmaps a VMA mapping when the vma iterator is already in position.
292827b26701SLiam R. Howlett  * Does not handle alignment.
29291da177e4SLinus Torvalds  */
293027b26701SLiam R. Howlett int do_vma_munmap(struct vma_iterator *vmi, struct vm_area_struct *vma,
293127b26701SLiam R. Howlett 		  unsigned long start, unsigned long end,
293227b26701SLiam R. Howlett 		  struct list_head *uf, bool downgrade)
29332e7ce7d3SLiam R. Howlett {
29342e7ce7d3SLiam R. Howlett 	struct mm_struct *mm = vma->vm_mm;
29352e7ce7d3SLiam R. Howlett 	int ret;
29362e7ce7d3SLiam R. Howlett 
293727b26701SLiam R. Howlett 	arch_unmap(mm, start, end);
293827b26701SLiam R. Howlett 	ret = do_vmi_align_munmap(vmi, vma, mm, start, end, uf, downgrade);
29392e7ce7d3SLiam R. Howlett 	validate_mm_mt(mm);
29402e7ce7d3SLiam R. Howlett 	return ret;
29412e7ce7d3SLiam R. Howlett }
29422e7ce7d3SLiam R. Howlett 
29432e7ce7d3SLiam R. Howlett /*
29442e7ce7d3SLiam R. Howlett  * do_brk_flags() - Increase the brk vma if the flags match.
294592fed820SLiam R. Howlett  * @vmi: The vma iterator
29462e7ce7d3SLiam R. Howlett  * @addr: The start address
29472e7ce7d3SLiam R. Howlett  * @len: The length of the increase
29482e7ce7d3SLiam R. Howlett  * @vma: The vma,
29492e7ce7d3SLiam R. Howlett  * @flags: The VMA Flags
29502e7ce7d3SLiam R. Howlett  *
29512e7ce7d3SLiam R. Howlett  * Extend the brk VMA from addr to addr + len.  If the VMA is NULL or the flags
29522e7ce7d3SLiam R. Howlett  * do not match then create a new anonymous VMA.  Eventually we may be able to
29532e7ce7d3SLiam R. Howlett  * do some brk-specific accounting here.
29542e7ce7d3SLiam R. Howlett  */
295592fed820SLiam R. Howlett static int do_brk_flags(struct vma_iterator *vmi, struct vm_area_struct *vma,
2956763ecb03SLiam R. Howlett 		unsigned long addr, unsigned long len, unsigned long flags)
29571da177e4SLinus Torvalds {
29581da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
2959287051b1SLiam R. Howlett 	struct vma_prepare vp;
29602e7ce7d3SLiam R. Howlett 
2961d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
29622e7ce7d3SLiam R. Howlett 	/*
29632e7ce7d3SLiam R. Howlett 	 * Check against address space limits by the changed size
29642e7ce7d3SLiam R. Howlett 	 * Note: This happens *after* clearing old mappings in some code paths.
29652e7ce7d3SLiam R. Howlett 	 */
296616e72e9bSDenys Vlasenko 	flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
296784638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
29681da177e4SLinus Torvalds 		return -ENOMEM;
29691da177e4SLinus Torvalds 
29701da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
29711da177e4SLinus Torvalds 		return -ENOMEM;
29721da177e4SLinus Torvalds 
2973191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
29741da177e4SLinus Torvalds 		return -ENOMEM;
29751da177e4SLinus Torvalds 
29761da177e4SLinus Torvalds 	/*
29772e7ce7d3SLiam R. Howlett 	 * Expand the existing vma if possible; Note that singular lists do not
29782e7ce7d3SLiam R. Howlett 	 * occur after forking, so the expand will only happen on new VMAs.
29791da177e4SLinus Torvalds 	 */
29806c28ca64SLiam Howlett 	if (vma && vma->vm_end == addr && !vma_policy(vma) &&
29816c28ca64SLiam Howlett 	    can_vma_merge_after(vma, flags, NULL, NULL,
29826c28ca64SLiam Howlett 				addr >> PAGE_SHIFT, NULL_VM_UFFD_CTX, NULL)) {
298392fed820SLiam R. Howlett 		if (vma_iter_prealloc(vmi))
2984675eaca1SAlistair Popple 			goto unacct_fail;
298528c5609fSLiam Howlett 
2986287051b1SLiam R. Howlett 		init_vma_prep(&vp, vma);
2987287051b1SLiam R. Howlett 		vma_prepare(&vp);
2988ccf1d78dSSuren Baghdasaryan 		vma_adjust_trans_huge(vma, vma->vm_start, addr + len, 0);
29892e7ce7d3SLiam R. Howlett 		vma->vm_end = addr + len;
29901c71222eSSuren Baghdasaryan 		vm_flags_set(vma, VM_SOFTDIRTY);
299192fed820SLiam R. Howlett 		vma_iter_store(vmi, vma);
29922e7ce7d3SLiam R. Howlett 
2993287051b1SLiam R. Howlett 		vma_complete(&vp, vmi, mm);
29942e7ce7d3SLiam R. Howlett 		khugepaged_enter_vma(vma, flags);
29952e7ce7d3SLiam R. Howlett 		goto out;
29962e7ce7d3SLiam R. Howlett 	}
29972e7ce7d3SLiam R. Howlett 
29982e7ce7d3SLiam R. Howlett 	/* create a vma struct for an anonymous mapping */
29992e7ce7d3SLiam R. Howlett 	vma = vm_area_alloc(mm);
30002e7ce7d3SLiam R. Howlett 	if (!vma)
3001675eaca1SAlistair Popple 		goto unacct_fail;
30021da177e4SLinus Torvalds 
3003bfd40eafSKirill A. Shutemov 	vma_set_anonymous(vma);
30041da177e4SLinus Torvalds 	vma->vm_start = addr;
30051da177e4SLinus Torvalds 	vma->vm_end = addr + len;
30062e7ce7d3SLiam R. Howlett 	vma->vm_pgoff = addr >> PAGE_SHIFT;
30071c71222eSSuren Baghdasaryan 	vm_flags_init(vma, flags);
30083ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
300992fed820SLiam R. Howlett 	if (vma_iter_store_gfp(vmi, vma, GFP_KERNEL))
30102e7ce7d3SLiam R. Howlett 		goto mas_store_fail;
3011d4af56c5SLiam R. Howlett 
30122e7ce7d3SLiam R. Howlett 	mm->map_count++;
3013d7597f59SStefan Roesch 	ksm_add_vma(vma);
30141da177e4SLinus Torvalds out:
30153af9e859SEric B Munson 	perf_event_mmap(vma);
30161da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
301784638335SKonstantin Khlebnikov 	mm->data_vm += len >> PAGE_SHIFT;
3018128557ffSMichel Lespinasse 	if (flags & VM_LOCKED)
3019ba470de4SRik van Riel 		mm->locked_vm += (len >> PAGE_SHIFT);
30201c71222eSSuren Baghdasaryan 	vm_flags_set(vma, VM_SOFTDIRTY);
3021763ecb03SLiam R. Howlett 	validate_mm(mm);
30225d22fc25SLinus Torvalds 	return 0;
3023d4af56c5SLiam R. Howlett 
30242e7ce7d3SLiam R. Howlett mas_store_fail:
3025d4af56c5SLiam R. Howlett 	vm_area_free(vma);
3026675eaca1SAlistair Popple unacct_fail:
30272e7ce7d3SLiam R. Howlett 	vm_unacct_memory(len >> PAGE_SHIFT);
30282e7ce7d3SLiam R. Howlett 	return -ENOMEM;
30291da177e4SLinus Torvalds }
30301da177e4SLinus Torvalds 
3031bb177a73SMichal Hocko int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags)
3032e4eb1ff6SLinus Torvalds {
3033e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
30342e7ce7d3SLiam R. Howlett 	struct vm_area_struct *vma = NULL;
3035bb177a73SMichal Hocko 	unsigned long len;
30365d22fc25SLinus Torvalds 	int ret;
3037128557ffSMichel Lespinasse 	bool populate;
3038897ab3e0SMike Rapoport 	LIST_HEAD(uf);
303992fed820SLiam R. Howlett 	VMA_ITERATOR(vmi, mm, addr);
3040e4eb1ff6SLinus Torvalds 
3041bb177a73SMichal Hocko 	len = PAGE_ALIGN(request);
3042bb177a73SMichal Hocko 	if (len < request)
3043bb177a73SMichal Hocko 		return -ENOMEM;
3044bb177a73SMichal Hocko 	if (!len)
3045bb177a73SMichal Hocko 		return 0;
3046bb177a73SMichal Hocko 
3047d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
30482d6c9282SMichal Hocko 		return -EINTR;
30492d6c9282SMichal Hocko 
30502e7ce7d3SLiam R. Howlett 	/* Until we need other flags, refuse anything except VM_EXEC. */
30512e7ce7d3SLiam R. Howlett 	if ((flags & (~VM_EXEC)) != 0)
30522e7ce7d3SLiam R. Howlett 		return -EINVAL;
30532e7ce7d3SLiam R. Howlett 
30542e7ce7d3SLiam R. Howlett 	ret = check_brk_limits(addr, len);
30552e7ce7d3SLiam R. Howlett 	if (ret)
30562e7ce7d3SLiam R. Howlett 		goto limits_failed;
30572e7ce7d3SLiam R. Howlett 
3058183654ceSLiam R. Howlett 	ret = do_vmi_munmap(&vmi, mm, addr, len, &uf, 0);
30592e7ce7d3SLiam R. Howlett 	if (ret)
30602e7ce7d3SLiam R. Howlett 		goto munmap_failed;
30612e7ce7d3SLiam R. Howlett 
306292fed820SLiam R. Howlett 	vma = vma_prev(&vmi);
306392fed820SLiam R. Howlett 	ret = do_brk_flags(&vmi, vma, addr, len, flags);
3064128557ffSMichel Lespinasse 	populate = ((mm->def_flags & VM_LOCKED) != 0);
3065d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3066897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
30675d22fc25SLinus Torvalds 	if (populate && !ret)
3068128557ffSMichel Lespinasse 		mm_populate(addr, len);
3069e4eb1ff6SLinus Torvalds 	return ret;
30702e7ce7d3SLiam R. Howlett 
30712e7ce7d3SLiam R. Howlett munmap_failed:
30722e7ce7d3SLiam R. Howlett limits_failed:
30732e7ce7d3SLiam R. Howlett 	mmap_write_unlock(mm);
30742e7ce7d3SLiam R. Howlett 	return ret;
3075e4eb1ff6SLinus Torvalds }
307616e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags);
307716e72e9bSDenys Vlasenko 
307816e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len)
307916e72e9bSDenys Vlasenko {
308016e72e9bSDenys Vlasenko 	return vm_brk_flags(addr, len, 0);
308116e72e9bSDenys Vlasenko }
3082e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
30831da177e4SLinus Torvalds 
30841da177e4SLinus Torvalds /* Release all mmaps. */
30851da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
30861da177e4SLinus Torvalds {
3087d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
3088ba470de4SRik van Riel 	struct vm_area_struct *vma;
30891da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
3090763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
3091763ecb03SLiam R. Howlett 	int count = 0;
30921da177e4SLinus Torvalds 
3093d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
3094cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
3095d6dd61c8SJeremy Fitzhardinge 
3096bf3980c8SSuren Baghdasaryan 	mmap_read_lock(mm);
30979480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
30989480c53eSJeremy Fitzhardinge 
3099763ecb03SLiam R. Howlett 	vma = mas_find(&mas, ULONG_MAX);
310064591e86SSuren Baghdasaryan 	if (!vma) {
310164591e86SSuren Baghdasaryan 		/* Can happen if dup_mmap() received an OOM */
3102bf3980c8SSuren Baghdasaryan 		mmap_read_unlock(mm);
31039480c53eSJeremy Fitzhardinge 		return;
310464591e86SSuren Baghdasaryan 	}
31059480c53eSJeremy Fitzhardinge 
31061da177e4SLinus Torvalds 	lru_add_drain();
31071da177e4SLinus Torvalds 	flush_cache_mm(mm);
3108d8b45053SWill Deacon 	tlb_gather_mmu_fullmm(&tlb, mm);
3109901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
3110763ecb03SLiam R. Howlett 	/* Use ULONG_MAX here to ensure all VMAs in the mm are unmapped */
311168f48381SSuren Baghdasaryan 	unmap_vmas(&tlb, &mm->mm_mt, vma, 0, ULONG_MAX, false);
3112bf3980c8SSuren Baghdasaryan 	mmap_read_unlock(mm);
3113bf3980c8SSuren Baghdasaryan 
3114bf3980c8SSuren Baghdasaryan 	/*
3115bf3980c8SSuren Baghdasaryan 	 * Set MMF_OOM_SKIP to hide this task from the oom killer/reaper
3116b3541d91SSuren Baghdasaryan 	 * because the memory has been already freed.
3117bf3980c8SSuren Baghdasaryan 	 */
3118bf3980c8SSuren Baghdasaryan 	set_bit(MMF_OOM_SKIP, &mm->flags);
3119bf3980c8SSuren Baghdasaryan 	mmap_write_lock(mm);
31203dd44325SLiam R. Howlett 	mt_clear_in_rcu(&mm->mm_mt);
3121763ecb03SLiam R. Howlett 	free_pgtables(&tlb, &mm->mm_mt, vma, FIRST_USER_ADDRESS,
312298e51a22SSuren Baghdasaryan 		      USER_PGTABLES_CEILING, true);
3123ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
31241da177e4SLinus Torvalds 
3125763ecb03SLiam R. Howlett 	/*
3126763ecb03SLiam R. Howlett 	 * Walk the list again, actually closing and freeing it, with preemption
3127763ecb03SLiam R. Howlett 	 * enabled, without holding any MM locks besides the unreachable
3128763ecb03SLiam R. Howlett 	 * mmap_write_lock.
3129763ecb03SLiam R. Howlett 	 */
3130763ecb03SLiam R. Howlett 	do {
31314f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
31324f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
31330d2ebf9cSSuren Baghdasaryan 		remove_vma(vma, true);
3134763ecb03SLiam R. Howlett 		count++;
31350a3b3c25SPaul E. McKenney 		cond_resched();
3136763ecb03SLiam R. Howlett 	} while ((vma = mas_find(&mas, ULONG_MAX)) != NULL);
3137763ecb03SLiam R. Howlett 
3138763ecb03SLiam R. Howlett 	BUG_ON(count != mm->map_count);
3139d4af56c5SLiam R. Howlett 
3140d4af56c5SLiam R. Howlett 	trace_exit_mmap(mm);
3141d4af56c5SLiam R. Howlett 	__mt_destroy(&mm->mm_mt);
314264591e86SSuren Baghdasaryan 	mmap_write_unlock(mm);
31434f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
31441da177e4SLinus Torvalds }
31451da177e4SLinus Torvalds 
31461da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
31471da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
3148c8c06efaSDavidlohr Bueso  * then i_mmap_rwsem is taken here.
31491da177e4SLinus Torvalds  */
31501da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
31511da177e4SLinus Torvalds {
3152d4af56c5SLiam R. Howlett 	unsigned long charged = vma_pages(vma);
31531da177e4SLinus Torvalds 
3154d4af56c5SLiam R. Howlett 
3155d0601a50SLiam R. Howlett 	if (find_vma_intersection(mm, vma->vm_start, vma->vm_end))
3156c9d13f5fSChen Gang 		return -ENOMEM;
3157d4af56c5SLiam R. Howlett 
3158c9d13f5fSChen Gang 	if ((vma->vm_flags & VM_ACCOUNT) &&
3159d4af56c5SLiam R. Howlett 	     security_vm_enough_memory_mm(mm, charged))
3160c9d13f5fSChen Gang 		return -ENOMEM;
3161c9d13f5fSChen Gang 
31621da177e4SLinus Torvalds 	/*
31631da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
31641da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
31651da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
31661da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
31671da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
31681da177e4SLinus Torvalds 	 *
31691da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
31701da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
31711da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
31728332326eSLiao Pingfang 	 * Similarly in do_mmap and in do_brk_flags.
31731da177e4SLinus Torvalds 	 */
31748a9cc3b5SOleg Nesterov 	if (vma_is_anonymous(vma)) {
31751da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
31761da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
31771da177e4SLinus Torvalds 	}
31782b144498SSrikar Dronamraju 
3179763ecb03SLiam R. Howlett 	if (vma_link(mm, vma)) {
3180d4af56c5SLiam R. Howlett 		vm_unacct_memory(charged);
3181d4af56c5SLiam R. Howlett 		return -ENOMEM;
3182d4af56c5SLiam R. Howlett 	}
3183d4af56c5SLiam R. Howlett 
31841da177e4SLinus Torvalds 	return 0;
31851da177e4SLinus Torvalds }
31861da177e4SLinus Torvalds 
31871da177e4SLinus Torvalds /*
31881da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
31891da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
31901da177e4SLinus Torvalds  */
31911da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
319238a76013SMichel Lespinasse 	unsigned long addr, unsigned long len, pgoff_t pgoff,
319338a76013SMichel Lespinasse 	bool *need_rmap_locks)
31941da177e4SLinus Torvalds {
31951da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
31961da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
31971da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
31981da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
3199948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
3200076f16bfSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, addr);
32011da177e4SLinus Torvalds 
3202d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
32031da177e4SLinus Torvalds 	/*
32041da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
32051da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
32061da177e4SLinus Torvalds 	 */
3207ce75799bSOleg Nesterov 	if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
32081da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
3209948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
3210948f017bSAndrea Arcangeli 	}
32111da177e4SLinus Torvalds 
3212763ecb03SLiam R. Howlett 	new_vma = find_vma_prev(mm, addr, &prev);
3213763ecb03SLiam R. Howlett 	if (new_vma && new_vma->vm_start < addr + len)
32146597d783SHugh Dickins 		return NULL;	/* should never get here */
3215524e00b3SLiam R. Howlett 
32169760ebffSLiam R. Howlett 	new_vma = vma_merge(&vmi, mm, prev, addr, addr + len, vma->vm_flags,
321719a809afSAndrea Arcangeli 			    vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
32185c26f6acSSuren Baghdasaryan 			    vma->vm_userfaultfd_ctx, anon_vma_name(vma));
32191da177e4SLinus Torvalds 	if (new_vma) {
32201da177e4SLinus Torvalds 		/*
32211da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
32221da177e4SLinus Torvalds 		 */
3223948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
3224948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
3225948f017bSAndrea Arcangeli 			/*
3226948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
3227948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
3228948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
3229948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
3230948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
3231948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
3232948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
3233948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
3234948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
3235948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
3236948f017bSAndrea Arcangeli 			 */
323781d1b09cSSasha Levin 			VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
323838a76013SMichel Lespinasse 			*vmap = vma = new_vma;
3239108d6642SMichel Lespinasse 		}
324038a76013SMichel Lespinasse 		*need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
32411da177e4SLinus Torvalds 	} else {
32423928d4f5SLinus Torvalds 		new_vma = vm_area_dup(vma);
3243e3975891SChen Gang 		if (!new_vma)
3244e3975891SChen Gang 			goto out;
32451da177e4SLinus Torvalds 		new_vma->vm_start = addr;
32461da177e4SLinus Torvalds 		new_vma->vm_end = addr + len;
32471da177e4SLinus Torvalds 		new_vma->vm_pgoff = pgoff;
3248ef0855d3SOleg Nesterov 		if (vma_dup_policy(vma, new_vma))
3249523d4e20SMichel Lespinasse 			goto out_free_vma;
3250523d4e20SMichel Lespinasse 		if (anon_vma_clone(new_vma, vma))
3251523d4e20SMichel Lespinasse 			goto out_free_mempol;
3252e9714acfSKonstantin Khlebnikov 		if (new_vma->vm_file)
32531da177e4SLinus Torvalds 			get_file(new_vma->vm_file);
32541da177e4SLinus Torvalds 		if (new_vma->vm_ops && new_vma->vm_ops->open)
32551da177e4SLinus Torvalds 			new_vma->vm_ops->open(new_vma);
3256d6ac235dSSuren Baghdasaryan 		vma_start_write(new_vma);
3257763ecb03SLiam R. Howlett 		if (vma_link(mm, new_vma))
3258524e00b3SLiam R. Howlett 			goto out_vma_link;
325938a76013SMichel Lespinasse 		*need_rmap_locks = false;
32601da177e4SLinus Torvalds 	}
3261d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
32621da177e4SLinus Torvalds 	return new_vma;
32635beb4930SRik van Riel 
3264524e00b3SLiam R. Howlett out_vma_link:
3265524e00b3SLiam R. Howlett 	if (new_vma->vm_ops && new_vma->vm_ops->close)
3266524e00b3SLiam R. Howlett 		new_vma->vm_ops->close(new_vma);
326792b73996SLiam Howlett 
326892b73996SLiam Howlett 	if (new_vma->vm_file)
326992b73996SLiam Howlett 		fput(new_vma->vm_file);
327092b73996SLiam Howlett 
327192b73996SLiam Howlett 	unlink_anon_vmas(new_vma);
32725beb4930SRik van Riel out_free_mempol:
3273ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new_vma));
32745beb4930SRik van Riel out_free_vma:
32753928d4f5SLinus Torvalds 	vm_area_free(new_vma);
3276e3975891SChen Gang out:
3277d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
32785beb4930SRik van Riel 	return NULL;
32791da177e4SLinus Torvalds }
3280119f657cSakpm@osdl.org 
3281119f657cSakpm@osdl.org /*
3282119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
3283119f657cSakpm@osdl.org  * number of pages
3284119f657cSakpm@osdl.org  */
328584638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3286119f657cSakpm@osdl.org {
328784638335SKonstantin Khlebnikov 	if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
328884638335SKonstantin Khlebnikov 		return false;
3289119f657cSakpm@osdl.org 
3290d977d56cSKonstantin Khlebnikov 	if (is_data_mapping(flags) &&
3291d977d56cSKonstantin Khlebnikov 	    mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3292f4fcd558SKonstantin Khlebnikov 		/* Workaround for Valgrind */
3293f4fcd558SKonstantin Khlebnikov 		if (rlimit(RLIMIT_DATA) == 0 &&
3294f4fcd558SKonstantin Khlebnikov 		    mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3295f4fcd558SKonstantin Khlebnikov 			return true;
329657a7702bSDavid Woodhouse 
329757a7702bSDavid Woodhouse 		pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits%s.\n",
3298d977d56cSKonstantin Khlebnikov 			     current->comm, current->pid,
3299d977d56cSKonstantin Khlebnikov 			     (mm->data_vm + npages) << PAGE_SHIFT,
330057a7702bSDavid Woodhouse 			     rlimit(RLIMIT_DATA),
330157a7702bSDavid Woodhouse 			     ignore_rlimit_data ? "" : " or use boot option ignore_rlimit_data");
330257a7702bSDavid Woodhouse 
330357a7702bSDavid Woodhouse 		if (!ignore_rlimit_data)
3304d977d56cSKonstantin Khlebnikov 			return false;
3305d977d56cSKonstantin Khlebnikov 	}
3306119f657cSakpm@osdl.org 
330784638335SKonstantin Khlebnikov 	return true;
330884638335SKonstantin Khlebnikov }
330984638335SKonstantin Khlebnikov 
331084638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
331184638335SKonstantin Khlebnikov {
33127866076bSPeng Liu 	WRITE_ONCE(mm->total_vm, READ_ONCE(mm->total_vm)+npages);
331384638335SKonstantin Khlebnikov 
3314d977d56cSKonstantin Khlebnikov 	if (is_exec_mapping(flags))
331584638335SKonstantin Khlebnikov 		mm->exec_vm += npages;
3316d977d56cSKonstantin Khlebnikov 	else if (is_stack_mapping(flags))
331784638335SKonstantin Khlebnikov 		mm->stack_vm += npages;
3318d977d56cSKonstantin Khlebnikov 	else if (is_data_mapping(flags))
331984638335SKonstantin Khlebnikov 		mm->data_vm += npages;
3320119f657cSakpm@osdl.org }
3321fa5dc22fSRoland McGrath 
3322b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf);
3323a62c34bdSAndy Lutomirski 
3324a62c34bdSAndy Lutomirski /*
3325a62c34bdSAndy Lutomirski  * Having a close hook prevents vma merging regardless of flags.
3326a62c34bdSAndy Lutomirski  */
3327a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma)
3328a62c34bdSAndy Lutomirski {
3329a62c34bdSAndy Lutomirski }
3330a62c34bdSAndy Lutomirski 
3331a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma)
3332a62c34bdSAndy Lutomirski {
3333a62c34bdSAndy Lutomirski 	return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3334a62c34bdSAndy Lutomirski }
3335a62c34bdSAndy Lutomirski 
333614d07113SBrian Geffon static int special_mapping_mremap(struct vm_area_struct *new_vma)
3337b059a453SDmitry Safonov {
3338b059a453SDmitry Safonov 	struct vm_special_mapping *sm = new_vma->vm_private_data;
3339b059a453SDmitry Safonov 
3340280e87e9SDmitry Safonov 	if (WARN_ON_ONCE(current->mm != new_vma->vm_mm))
3341280e87e9SDmitry Safonov 		return -EFAULT;
3342280e87e9SDmitry Safonov 
3343b059a453SDmitry Safonov 	if (sm->mremap)
3344b059a453SDmitry Safonov 		return sm->mremap(sm, new_vma);
3345280e87e9SDmitry Safonov 
3346b059a453SDmitry Safonov 	return 0;
3347b059a453SDmitry Safonov }
3348b059a453SDmitry Safonov 
3349871402e0SDmitry Safonov static int special_mapping_split(struct vm_area_struct *vma, unsigned long addr)
3350871402e0SDmitry Safonov {
3351871402e0SDmitry Safonov 	/*
3352871402e0SDmitry Safonov 	 * Forbid splitting special mappings - kernel has expectations over
3353871402e0SDmitry Safonov 	 * the number of pages in mapping. Together with VM_DONTEXPAND
3354871402e0SDmitry Safonov 	 * the size of vma should stay the same over the special mapping's
3355871402e0SDmitry Safonov 	 * lifetime.
3356871402e0SDmitry Safonov 	 */
3357871402e0SDmitry Safonov 	return -EINVAL;
3358871402e0SDmitry Safonov }
3359871402e0SDmitry Safonov 
3360a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = {
3361a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3362a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3363b059a453SDmitry Safonov 	.mremap = special_mapping_mremap,
3364a62c34bdSAndy Lutomirski 	.name = special_mapping_name,
3365af34ebebSDmitry Safonov 	/* vDSO code relies that VVAR can't be accessed remotely */
3366af34ebebSDmitry Safonov 	.access = NULL,
3367871402e0SDmitry Safonov 	.may_split = special_mapping_split,
3368a62c34bdSAndy Lutomirski };
3369a62c34bdSAndy Lutomirski 
3370a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = {
3371a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3372a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3373a62c34bdSAndy Lutomirski };
3374fa5dc22fSRoland McGrath 
3375b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf)
3376fa5dc22fSRoland McGrath {
337711bac800SDave Jiang 	struct vm_area_struct *vma = vmf->vma;
3378b1d0e4f5SNick Piggin 	pgoff_t pgoff;
3379fa5dc22fSRoland McGrath 	struct page **pages;
3380fa5dc22fSRoland McGrath 
3381f872f540SAndy Lutomirski 	if (vma->vm_ops == &legacy_special_mapping_vmops) {
3382a62c34bdSAndy Lutomirski 		pages = vma->vm_private_data;
3383f872f540SAndy Lutomirski 	} else {
3384f872f540SAndy Lutomirski 		struct vm_special_mapping *sm = vma->vm_private_data;
3385f872f540SAndy Lutomirski 
3386f872f540SAndy Lutomirski 		if (sm->fault)
338711bac800SDave Jiang 			return sm->fault(sm, vmf->vma, vmf);
3388f872f540SAndy Lutomirski 
3389f872f540SAndy Lutomirski 		pages = sm->pages;
3390f872f540SAndy Lutomirski 	}
3391a62c34bdSAndy Lutomirski 
33928a9cc3b5SOleg Nesterov 	for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3393b1d0e4f5SNick Piggin 		pgoff--;
3394fa5dc22fSRoland McGrath 
3395fa5dc22fSRoland McGrath 	if (*pages) {
3396fa5dc22fSRoland McGrath 		struct page *page = *pages;
3397fa5dc22fSRoland McGrath 		get_page(page);
3398b1d0e4f5SNick Piggin 		vmf->page = page;
3399b1d0e4f5SNick Piggin 		return 0;
3400fa5dc22fSRoland McGrath 	}
3401fa5dc22fSRoland McGrath 
3402b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
3403fa5dc22fSRoland McGrath }
3404fa5dc22fSRoland McGrath 
3405a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping(
3406a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3407fa5dc22fSRoland McGrath 	unsigned long addr, unsigned long len,
340827f28b97SChen Gang 	unsigned long vm_flags, void *priv,
340927f28b97SChen Gang 	const struct vm_operations_struct *ops)
3410fa5dc22fSRoland McGrath {
3411462e635eSTavis Ormandy 	int ret;
3412fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
3413fa5dc22fSRoland McGrath 
3414d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
3415490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
3416fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
34173935ed6aSStefani Seibold 		return ERR_PTR(-ENOMEM);
3418fa5dc22fSRoland McGrath 
3419fa5dc22fSRoland McGrath 	vma->vm_start = addr;
3420fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
3421fa5dc22fSRoland McGrath 
3422e430a95aSSuren Baghdasaryan 	vm_flags_init(vma, (vm_flags | mm->def_flags |
3423e430a95aSSuren Baghdasaryan 		      VM_DONTEXPAND | VM_SOFTDIRTY) & ~VM_LOCKED_MASK);
34243ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3425fa5dc22fSRoland McGrath 
3426a62c34bdSAndy Lutomirski 	vma->vm_ops = ops;
3427a62c34bdSAndy Lutomirski 	vma->vm_private_data = priv;
3428fa5dc22fSRoland McGrath 
3429462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
3430462e635eSTavis Ormandy 	if (ret)
3431462e635eSTavis Ormandy 		goto out;
3432fa5dc22fSRoland McGrath 
343384638335SKonstantin Khlebnikov 	vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3434fa5dc22fSRoland McGrath 
3435cdd6c482SIngo Molnar 	perf_event_mmap(vma);
3436089dd79dSPeter Zijlstra 
3437d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
34383935ed6aSStefani Seibold 	return vma;
3439462e635eSTavis Ormandy 
3440462e635eSTavis Ormandy out:
34413928d4f5SLinus Torvalds 	vm_area_free(vma);
3442d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
34433935ed6aSStefani Seibold 	return ERR_PTR(ret);
34443935ed6aSStefani Seibold }
34453935ed6aSStefani Seibold 
34462eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma,
34472eefd878SDmitry Safonov 	const struct vm_special_mapping *sm)
34482eefd878SDmitry Safonov {
34492eefd878SDmitry Safonov 	return vma->vm_private_data == sm &&
34502eefd878SDmitry Safonov 		(vma->vm_ops == &special_mapping_vmops ||
34512eefd878SDmitry Safonov 		 vma->vm_ops == &legacy_special_mapping_vmops);
34522eefd878SDmitry Safonov }
34532eefd878SDmitry Safonov 
3454a62c34bdSAndy Lutomirski /*
3455c1e8d7c6SMichel Lespinasse  * Called with mm->mmap_lock held for writing.
3456a62c34bdSAndy Lutomirski  * Insert a new vma covering the given region, with the given flags.
3457a62c34bdSAndy Lutomirski  * Its pages are supplied by the given array of struct page *.
3458a62c34bdSAndy Lutomirski  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3459a62c34bdSAndy Lutomirski  * The region past the last page supplied will always produce SIGBUS.
3460a62c34bdSAndy Lutomirski  * The array pointer and the pages it points to are assumed to stay alive
3461a62c34bdSAndy Lutomirski  * for as long as this mapping might exist.
3462a62c34bdSAndy Lutomirski  */
3463a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping(
3464a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3465a62c34bdSAndy Lutomirski 	unsigned long addr, unsigned long len,
3466a62c34bdSAndy Lutomirski 	unsigned long vm_flags, const struct vm_special_mapping *spec)
3467a62c34bdSAndy Lutomirski {
346827f28b97SChen Gang 	return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
346927f28b97SChen Gang 					&special_mapping_vmops);
3470a62c34bdSAndy Lutomirski }
3471a62c34bdSAndy Lutomirski 
34723935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm,
34733935ed6aSStefani Seibold 			    unsigned long addr, unsigned long len,
34743935ed6aSStefani Seibold 			    unsigned long vm_flags, struct page **pages)
34753935ed6aSStefani Seibold {
3476a62c34bdSAndy Lutomirski 	struct vm_area_struct *vma = __install_special_mapping(
347727f28b97SChen Gang 		mm, addr, len, vm_flags, (void *)pages,
347827f28b97SChen Gang 		&legacy_special_mapping_vmops);
34793935ed6aSStefani Seibold 
348014bd5b45SDuan Jiong 	return PTR_ERR_OR_ZERO(vma);
3481fa5dc22fSRoland McGrath }
34827906d00cSAndrea Arcangeli 
34837906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
34847906d00cSAndrea Arcangeli 
3485454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
34867906d00cSAndrea Arcangeli {
3487f808c13fSDavidlohr Bueso 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
34887906d00cSAndrea Arcangeli 		/*
34897906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
34907906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
34917906d00cSAndrea Arcangeli 		 */
3492da1c55f1SMichel Lespinasse 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
34937906d00cSAndrea Arcangeli 		/*
34947906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
34955a505085SIngo Molnar 		 * anon_vma->root->rwsem. If some other vma in this mm shares
34967906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
34977906d00cSAndrea Arcangeli 		 *
34987906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
34997906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
35005a505085SIngo Molnar 		 * anon_vma->root->rwsem.
35017906d00cSAndrea Arcangeli 		 */
35027906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
3503f808c13fSDavidlohr Bueso 				       &anon_vma->root->rb_root.rb_root.rb_node))
35047906d00cSAndrea Arcangeli 			BUG();
35057906d00cSAndrea Arcangeli 	}
35067906d00cSAndrea Arcangeli }
35077906d00cSAndrea Arcangeli 
3508454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
35097906d00cSAndrea Arcangeli {
35107906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
35117906d00cSAndrea Arcangeli 		/*
35127906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
35137906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
35147906d00cSAndrea Arcangeli 		 *
35157906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
35167906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
35177906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
35187906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
35197906d00cSAndrea Arcangeli 		 */
35207906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
35217906d00cSAndrea Arcangeli 			BUG();
3522da1c55f1SMichel Lespinasse 		down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_lock);
35237906d00cSAndrea Arcangeli 	}
35247906d00cSAndrea Arcangeli }
35257906d00cSAndrea Arcangeli 
35267906d00cSAndrea Arcangeli /*
35277906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
35287906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
35297906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
35307906d00cSAndrea Arcangeli  *
3531c1e8d7c6SMichel Lespinasse  * The caller must take the mmap_lock in write mode before calling
35327906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
3533c1e8d7c6SMichel Lespinasse  * mmap_lock until mm_drop_all_locks() returns.
35347906d00cSAndrea Arcangeli  *
3535c1e8d7c6SMichel Lespinasse  * mmap_lock in write mode is required in order to block all operations
35367906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
353727ba0644SKirill A. Shutemov  * altering the vma layout. It's also needed in write mode to avoid new
35387906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
35397906d00cSAndrea Arcangeli  *
35407906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
35417906d00cSAndrea Arcangeli  * or it would deadlock.
35427906d00cSAndrea Arcangeli  *
3543bf181b9fSMichel Lespinasse  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
35447906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
35457906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
35467906d00cSAndrea Arcangeli  *
354788f306b6SKirill A. Shutemov  * We take locks in following order, accordingly to comment at beginning
354888f306b6SKirill A. Shutemov  * of mm/rmap.c:
354988f306b6SKirill A. Shutemov  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
355088f306b6SKirill A. Shutemov  *     hugetlb mapping);
3551eeff9a5dSSuren Baghdasaryan  *   - all vmas marked locked
355288f306b6SKirill A. Shutemov  *   - all i_mmap_rwsem locks;
355388f306b6SKirill A. Shutemov  *   - all anon_vma->rwseml
355488f306b6SKirill A. Shutemov  *
355588f306b6SKirill A. Shutemov  * We can take all locks within these types randomly because the VM code
355688f306b6SKirill A. Shutemov  * doesn't nest them and we protected from parallel mm_take_all_locks() by
355788f306b6SKirill A. Shutemov  * mm_all_locks_mutex.
35587906d00cSAndrea Arcangeli  *
35597906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
35607906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
35617906d00cSAndrea Arcangeli  *
35627906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
35637906d00cSAndrea Arcangeli  */
35647906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
35657906d00cSAndrea Arcangeli {
35667906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
35675beb4930SRik van Riel 	struct anon_vma_chain *avc;
3568763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
35697906d00cSAndrea Arcangeli 
3570325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
35717906d00cSAndrea Arcangeli 
35727906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
35737906d00cSAndrea Arcangeli 
3574763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
35757906d00cSAndrea Arcangeli 		if (signal_pending(current))
35767906d00cSAndrea Arcangeli 			goto out_unlock;
3577eeff9a5dSSuren Baghdasaryan 		vma_start_write(vma);
3578eeff9a5dSSuren Baghdasaryan 	}
3579eeff9a5dSSuren Baghdasaryan 
3580eeff9a5dSSuren Baghdasaryan 	mas_set(&mas, 0);
3581eeff9a5dSSuren Baghdasaryan 	mas_for_each(&mas, vma, ULONG_MAX) {
3582eeff9a5dSSuren Baghdasaryan 		if (signal_pending(current))
3583eeff9a5dSSuren Baghdasaryan 			goto out_unlock;
358488f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
358588f306b6SKirill A. Shutemov 				is_vm_hugetlb_page(vma))
358688f306b6SKirill A. Shutemov 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
358788f306b6SKirill A. Shutemov 	}
358888f306b6SKirill A. Shutemov 
3589763ecb03SLiam R. Howlett 	mas_set(&mas, 0);
3590763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
359188f306b6SKirill A. Shutemov 		if (signal_pending(current))
359288f306b6SKirill A. Shutemov 			goto out_unlock;
359388f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
359488f306b6SKirill A. Shutemov 				!is_vm_hugetlb_page(vma))
3595454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
35967906d00cSAndrea Arcangeli 	}
35977cd5a02fSPeter Zijlstra 
3598763ecb03SLiam R. Howlett 	mas_set(&mas, 0);
3599763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
36007cd5a02fSPeter Zijlstra 		if (signal_pending(current))
36017cd5a02fSPeter Zijlstra 			goto out_unlock;
36027cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
36035beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
36045beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
36057cd5a02fSPeter Zijlstra 	}
36067cd5a02fSPeter Zijlstra 
3607584cff54SKautuk Consul 	return 0;
36087906d00cSAndrea Arcangeli 
36097906d00cSAndrea Arcangeli out_unlock:
36107906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
3611584cff54SKautuk Consul 	return -EINTR;
36127906d00cSAndrea Arcangeli }
36137906d00cSAndrea Arcangeli 
36147906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
36157906d00cSAndrea Arcangeli {
3616f808c13fSDavidlohr Bueso 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
36177906d00cSAndrea Arcangeli 		/*
36187906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
36197906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
36207906d00cSAndrea Arcangeli 		 *
36217906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
3622bf181b9fSMichel Lespinasse 		 * the vma so the users using the anon_vma->rb_root will
36237906d00cSAndrea Arcangeli 		 * never see our bitflag.
36247906d00cSAndrea Arcangeli 		 *
36257906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
36267906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
36275a505085SIngo Molnar 		 * anon_vma->root->rwsem.
36287906d00cSAndrea Arcangeli 		 */
36297906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
3630f808c13fSDavidlohr Bueso 					  &anon_vma->root->rb_root.rb_root.rb_node))
36317906d00cSAndrea Arcangeli 			BUG();
363208b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
36337906d00cSAndrea Arcangeli 	}
36347906d00cSAndrea Arcangeli }
36357906d00cSAndrea Arcangeli 
36367906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
36377906d00cSAndrea Arcangeli {
36387906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
36397906d00cSAndrea Arcangeli 		/*
36407906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
36417906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
36427906d00cSAndrea Arcangeli 		 */
364383cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
36447906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
36457906d00cSAndrea Arcangeli 					&mapping->flags))
36467906d00cSAndrea Arcangeli 			BUG();
36477906d00cSAndrea Arcangeli 	}
36487906d00cSAndrea Arcangeli }
36497906d00cSAndrea Arcangeli 
36507906d00cSAndrea Arcangeli /*
3651c1e8d7c6SMichel Lespinasse  * The mmap_lock cannot be released by the caller until
36527906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
36537906d00cSAndrea Arcangeli  */
36547906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
36557906d00cSAndrea Arcangeli {
36567906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
36575beb4930SRik van Riel 	struct anon_vma_chain *avc;
3658763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
36597906d00cSAndrea Arcangeli 
3660325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
36617906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
36627906d00cSAndrea Arcangeli 
3663763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
36647906d00cSAndrea Arcangeli 		if (vma->anon_vma)
36655beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
36665beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
36677906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
36687906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
36697906d00cSAndrea Arcangeli 	}
3670eeff9a5dSSuren Baghdasaryan 	vma_end_write_all(mm);
36717906d00cSAndrea Arcangeli 
36727906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
36737906d00cSAndrea Arcangeli }
36748feae131SDavid Howells 
36758feae131SDavid Howells /*
36763edf41d8Sseokhoon.yoon  * initialise the percpu counter for VM
36778feae131SDavid Howells  */
36788feae131SDavid Howells void __init mmap_init(void)
36798feae131SDavid Howells {
368000a62ce9SKOSAKI Motohiro 	int ret;
368100a62ce9SKOSAKI Motohiro 
3682908c7f19STejun Heo 	ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
368300a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
36848feae131SDavid Howells }
3685c9b1d098SAndrew Shewmaker 
3686c9b1d098SAndrew Shewmaker /*
3687c9b1d098SAndrew Shewmaker  * Initialise sysctl_user_reserve_kbytes.
3688c9b1d098SAndrew Shewmaker  *
3689c9b1d098SAndrew Shewmaker  * This is intended to prevent a user from starting a single memory hogging
3690c9b1d098SAndrew Shewmaker  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3691c9b1d098SAndrew Shewmaker  * mode.
3692c9b1d098SAndrew Shewmaker  *
3693c9b1d098SAndrew Shewmaker  * The default value is min(3% of free memory, 128MB)
3694c9b1d098SAndrew Shewmaker  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3695c9b1d098SAndrew Shewmaker  */
36961640879aSAndrew Shewmaker static int init_user_reserve(void)
3697c9b1d098SAndrew Shewmaker {
3698c9b1d098SAndrew Shewmaker 	unsigned long free_kbytes;
3699c9b1d098SAndrew Shewmaker 
3700c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3701c9b1d098SAndrew Shewmaker 
3702c9b1d098SAndrew Shewmaker 	sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3703c9b1d098SAndrew Shewmaker 	return 0;
3704c9b1d098SAndrew Shewmaker }
3705a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve);
37064eeab4f5SAndrew Shewmaker 
37074eeab4f5SAndrew Shewmaker /*
37084eeab4f5SAndrew Shewmaker  * Initialise sysctl_admin_reserve_kbytes.
37094eeab4f5SAndrew Shewmaker  *
37104eeab4f5SAndrew Shewmaker  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
37114eeab4f5SAndrew Shewmaker  * to log in and kill a memory hogging process.
37124eeab4f5SAndrew Shewmaker  *
37134eeab4f5SAndrew Shewmaker  * Systems with more than 256MB will reserve 8MB, enough to recover
37144eeab4f5SAndrew Shewmaker  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
37154eeab4f5SAndrew Shewmaker  * only reserve 3% of free pages by default.
37164eeab4f5SAndrew Shewmaker  */
37171640879aSAndrew Shewmaker static int init_admin_reserve(void)
37184eeab4f5SAndrew Shewmaker {
37194eeab4f5SAndrew Shewmaker 	unsigned long free_kbytes;
37204eeab4f5SAndrew Shewmaker 
3721c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
37224eeab4f5SAndrew Shewmaker 
37234eeab4f5SAndrew Shewmaker 	sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
37244eeab4f5SAndrew Shewmaker 	return 0;
37254eeab4f5SAndrew Shewmaker }
3726a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve);
37271640879aSAndrew Shewmaker 
37281640879aSAndrew Shewmaker /*
37291640879aSAndrew Shewmaker  * Reinititalise user and admin reserves if memory is added or removed.
37301640879aSAndrew Shewmaker  *
37311640879aSAndrew Shewmaker  * The default user reserve max is 128MB, and the default max for the
37321640879aSAndrew Shewmaker  * admin reserve is 8MB. These are usually, but not always, enough to
37331640879aSAndrew Shewmaker  * enable recovery from a memory hogging process using login/sshd, a shell,
37341640879aSAndrew Shewmaker  * and tools like top. It may make sense to increase or even disable the
37351640879aSAndrew Shewmaker  * reserve depending on the existence of swap or variations in the recovery
37361640879aSAndrew Shewmaker  * tools. So, the admin may have changed them.
37371640879aSAndrew Shewmaker  *
37381640879aSAndrew Shewmaker  * If memory is added and the reserves have been eliminated or increased above
37391640879aSAndrew Shewmaker  * the default max, then we'll trust the admin.
37401640879aSAndrew Shewmaker  *
37411640879aSAndrew Shewmaker  * If memory is removed and there isn't enough free memory, then we
37421640879aSAndrew Shewmaker  * need to reset the reserves.
37431640879aSAndrew Shewmaker  *
37441640879aSAndrew Shewmaker  * Otherwise keep the reserve set by the admin.
37451640879aSAndrew Shewmaker  */
37461640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb,
37471640879aSAndrew Shewmaker 			     unsigned long action, void *data)
37481640879aSAndrew Shewmaker {
37491640879aSAndrew Shewmaker 	unsigned long tmp, free_kbytes;
37501640879aSAndrew Shewmaker 
37511640879aSAndrew Shewmaker 	switch (action) {
37521640879aSAndrew Shewmaker 	case MEM_ONLINE:
37531640879aSAndrew Shewmaker 		/* Default max is 128MB. Leave alone if modified by operator. */
37541640879aSAndrew Shewmaker 		tmp = sysctl_user_reserve_kbytes;
37551640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 17))
37561640879aSAndrew Shewmaker 			init_user_reserve();
37571640879aSAndrew Shewmaker 
37581640879aSAndrew Shewmaker 		/* Default max is 8MB.  Leave alone if modified by operator. */
37591640879aSAndrew Shewmaker 		tmp = sysctl_admin_reserve_kbytes;
37601640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 13))
37611640879aSAndrew Shewmaker 			init_admin_reserve();
37621640879aSAndrew Shewmaker 
37631640879aSAndrew Shewmaker 		break;
37641640879aSAndrew Shewmaker 	case MEM_OFFLINE:
3765c41f012aSMichal Hocko 		free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
37661640879aSAndrew Shewmaker 
37671640879aSAndrew Shewmaker 		if (sysctl_user_reserve_kbytes > free_kbytes) {
37681640879aSAndrew Shewmaker 			init_user_reserve();
37691640879aSAndrew Shewmaker 			pr_info("vm.user_reserve_kbytes reset to %lu\n",
37701640879aSAndrew Shewmaker 				sysctl_user_reserve_kbytes);
37711640879aSAndrew Shewmaker 		}
37721640879aSAndrew Shewmaker 
37731640879aSAndrew Shewmaker 		if (sysctl_admin_reserve_kbytes > free_kbytes) {
37741640879aSAndrew Shewmaker 			init_admin_reserve();
37751640879aSAndrew Shewmaker 			pr_info("vm.admin_reserve_kbytes reset to %lu\n",
37761640879aSAndrew Shewmaker 				sysctl_admin_reserve_kbytes);
37771640879aSAndrew Shewmaker 		}
37781640879aSAndrew Shewmaker 		break;
37791640879aSAndrew Shewmaker 	default:
37801640879aSAndrew Shewmaker 		break;
37811640879aSAndrew Shewmaker 	}
37821640879aSAndrew Shewmaker 	return NOTIFY_OK;
37831640879aSAndrew Shewmaker }
37841640879aSAndrew Shewmaker 
37851640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void)
37861640879aSAndrew Shewmaker {
37871eeaa4fdSLiu Shixin 	if (hotplug_memory_notifier(reserve_mem_notifier, DEFAULT_CALLBACK_PRI))
3788b1de0d13SMitchel Humpherys 		pr_err("Failed registering memory add/remove notifier for admin reserve\n");
37891640879aSAndrew Shewmaker 
37901640879aSAndrew Shewmaker 	return 0;
37911640879aSAndrew Shewmaker }
3792a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier);
3793