xref: /linux/mm/mmap.c (revision 1419430c8abb5a00590169068590dd54d86590ba)
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 
79fd892593SLiam R. Howlett static void unmap_region(struct mm_struct *mm, struct ma_state *mas,
80e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
81763ecb03SLiam R. Howlett 		struct vm_area_struct *next, unsigned long start,
82fd892593SLiam R. Howlett 		unsigned long end, unsigned long tree_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 
1572e7ce7d3SLiam R. Howlett /*
1582e7ce7d3SLiam R. Howlett  * check_brk_limits() - Use platform specific check of range & verify mlock
1592e7ce7d3SLiam R. Howlett  * limits.
1602e7ce7d3SLiam R. Howlett  * @addr: The address to check
1612e7ce7d3SLiam R. Howlett  * @len: The size of increase.
1622e7ce7d3SLiam R. Howlett  *
1632e7ce7d3SLiam R. Howlett  * Return: 0 on success.
1642e7ce7d3SLiam R. Howlett  */
1652e7ce7d3SLiam R. Howlett static int check_brk_limits(unsigned long addr, unsigned long len)
1662e7ce7d3SLiam R. Howlett {
1672e7ce7d3SLiam R. Howlett 	unsigned long mapped_addr;
1682e7ce7d3SLiam R. Howlett 
1692e7ce7d3SLiam R. Howlett 	mapped_addr = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
1702e7ce7d3SLiam R. Howlett 	if (IS_ERR_VALUE(mapped_addr))
1712e7ce7d3SLiam R. Howlett 		return mapped_addr;
1722e7ce7d3SLiam R. Howlett 
173b0cc5e89SAndrew Morton 	return mlock_future_ok(current->mm, current->mm->def_flags, len)
1743c54a298SLorenzo Stoakes 		? 0 : -EAGAIN;
1752e7ce7d3SLiam R. Howlett }
17692fed820SLiam R. Howlett static int do_brk_flags(struct vma_iterator *vmi, struct vm_area_struct *brkvma,
177763ecb03SLiam R. Howlett 		unsigned long addr, unsigned long request, unsigned long flags);
1786a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
1791da177e4SLinus Torvalds {
1809bc8039eSYang Shi 	unsigned long newbrk, oldbrk, origbrk;
1811da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1822e7ce7d3SLiam R. Howlett 	struct vm_area_struct *brkvma, *next = NULL;
183a5b4592cSJiri Kosina 	unsigned long min_brk;
184408579cdSLiam R. Howlett 	bool populate = false;
185897ab3e0SMike Rapoport 	LIST_HEAD(uf);
18692fed820SLiam R. Howlett 	struct vma_iterator vmi;
1871da177e4SLinus Torvalds 
188d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
189dc0ef0dfSMichal Hocko 		return -EINTR;
1901da177e4SLinus Torvalds 
1919bc8039eSYang Shi 	origbrk = mm->brk;
1929bc8039eSYang Shi 
193a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
1945520e894SJiri Kosina 	/*
1955520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
1965520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
1975520e894SJiri Kosina 	 * to be arbitrarily shifted
1985520e894SJiri Kosina 	 */
1994471a675SJiri Kosina 	if (current->brk_randomized)
2005520e894SJiri Kosina 		min_brk = mm->start_brk;
2015520e894SJiri Kosina 	else
2025520e894SJiri Kosina 		min_brk = mm->end_data;
203a5b4592cSJiri Kosina #else
204a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
205a5b4592cSJiri Kosina #endif
206a5b4592cSJiri Kosina 	if (brk < min_brk)
2071da177e4SLinus Torvalds 		goto out;
2081e624196SRam Gupta 
2091e624196SRam Gupta 	/*
2101e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
2111e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
2121e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
2131e624196SRam Gupta 	 * not page aligned -Ram Gupta
2141e624196SRam Gupta 	 */
2158764b338SCyrill Gorcunov 	if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
2168764b338SCyrill Gorcunov 			      mm->end_data, mm->start_data))
2171e624196SRam Gupta 		goto out;
2181e624196SRam Gupta 
2191da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
2201da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
2219bc8039eSYang Shi 	if (oldbrk == newbrk) {
2229bc8039eSYang Shi 		mm->brk = brk;
2239bc8039eSYang Shi 		goto success;
2249bc8039eSYang Shi 	}
2251da177e4SLinus Torvalds 
226408579cdSLiam R. Howlett 	/* Always allow shrinking brk. */
2271da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2282e7ce7d3SLiam R. Howlett 		/* Search one past newbrk */
22992fed820SLiam R. Howlett 		vma_iter_init(&vmi, mm, newbrk);
23092fed820SLiam R. Howlett 		brkvma = vma_find(&vmi, oldbrk);
231f5ad5083SJason A. Donenfeld 		if (!brkvma || brkvma->vm_start >= oldbrk)
2322e7ce7d3SLiam R. Howlett 			goto out; /* mapping intersects with an existing non-brk vma. */
2339bc8039eSYang Shi 		/*
2342e7ce7d3SLiam R. Howlett 		 * mm->brk must be protected by write mmap_lock.
235408579cdSLiam R. Howlett 		 * do_vma_munmap() will drop the lock on success,  so update it
23627b26701SLiam R. Howlett 		 * before calling do_vma_munmap().
2379bc8039eSYang Shi 		 */
2389bc8039eSYang Shi 		mm->brk = brk;
239408579cdSLiam R. Howlett 		if (do_vma_munmap(&vmi, brkvma, newbrk, oldbrk, &uf, true))
2401da177e4SLinus Torvalds 			goto out;
241408579cdSLiam R. Howlett 
242408579cdSLiam R. Howlett 		goto success_unlocked;
2431da177e4SLinus Torvalds 	}
2441da177e4SLinus Torvalds 
2452e7ce7d3SLiam R. Howlett 	if (check_brk_limits(oldbrk, newbrk - oldbrk))
2462e7ce7d3SLiam R. Howlett 		goto out;
2472e7ce7d3SLiam R. Howlett 
2482e7ce7d3SLiam R. Howlett 	/*
2492e7ce7d3SLiam R. Howlett 	 * Only check if the next VMA is within the stack_guard_gap of the
2502e7ce7d3SLiam R. Howlett 	 * expansion area
2512e7ce7d3SLiam R. Howlett 	 */
25292fed820SLiam R. Howlett 	vma_iter_init(&vmi, mm, oldbrk);
25392fed820SLiam R. Howlett 	next = vma_find(&vmi, newbrk + PAGE_SIZE + stack_guard_gap);
2541be7107fSHugh Dickins 	if (next && newbrk + PAGE_SIZE > vm_start_gap(next))
2551da177e4SLinus Torvalds 		goto out;
2561da177e4SLinus Torvalds 
25792fed820SLiam R. Howlett 	brkvma = vma_prev_limit(&vmi, mm->start_brk);
2581da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
25992fed820SLiam R. Howlett 	if (do_brk_flags(&vmi, brkvma, oldbrk, newbrk - oldbrk, 0) < 0)
2601da177e4SLinus Torvalds 		goto out;
2612e7ce7d3SLiam R. Howlett 
2621da177e4SLinus Torvalds 	mm->brk = brk;
263408579cdSLiam R. Howlett 	if (mm->def_flags & VM_LOCKED)
264408579cdSLiam R. Howlett 		populate = true;
2659bc8039eSYang Shi 
2669bc8039eSYang Shi success:
267d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
268408579cdSLiam R. Howlett success_unlocked:
269897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
270128557ffSMichel Lespinasse 	if (populate)
271128557ffSMichel Lespinasse 		mm_populate(oldbrk, newbrk - oldbrk);
272128557ffSMichel Lespinasse 	return brk;
273128557ffSMichel Lespinasse 
2741da177e4SLinus Torvalds out:
275408579cdSLiam R. Howlett 	mm->brk = origbrk;
276d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
277b7204006SAdrian Huang 	return origbrk;
2781da177e4SLinus Torvalds }
2791da177e4SLinus Torvalds 
280d4af56c5SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
281eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm)
2821da177e4SLinus Torvalds {
2831da177e4SLinus Torvalds 	int bug = 0;
2841da177e4SLinus Torvalds 	int i = 0;
285763ecb03SLiam R. Howlett 	struct vm_area_struct *vma;
286b50e195fSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, 0);
287ff26f70fSAndrew Morton 
288b50e195fSLiam R. Howlett 	mt_validate(&mm->mm_mt);
289b50e195fSLiam R. Howlett 	for_each_vma(vmi, vma) {
290524e00b3SLiam R. Howlett #ifdef CONFIG_DEBUG_VM_RB
29112352d3cSKonstantin Khlebnikov 		struct anon_vma *anon_vma = vma->anon_vma;
292ed8ea815SMichel Lespinasse 		struct anon_vma_chain *avc;
293b50e195fSLiam R. Howlett #endif
294b50e195fSLiam R. Howlett 		unsigned long vmi_start, vmi_end;
295b50e195fSLiam R. Howlett 		bool warn = 0;
296ff26f70fSAndrew Morton 
297b50e195fSLiam R. Howlett 		vmi_start = vma_iter_addr(&vmi);
298b50e195fSLiam R. Howlett 		vmi_end = vma_iter_end(&vmi);
299b50e195fSLiam R. Howlett 		if (VM_WARN_ON_ONCE_MM(vma->vm_end != vmi_end, mm))
300b50e195fSLiam R. Howlett 			warn = 1;
301b50e195fSLiam R. Howlett 
302b50e195fSLiam R. Howlett 		if (VM_WARN_ON_ONCE_MM(vma->vm_start != vmi_start, mm))
303b50e195fSLiam R. Howlett 			warn = 1;
304b50e195fSLiam R. Howlett 
305b50e195fSLiam R. Howlett 		if (warn) {
306b50e195fSLiam R. Howlett 			pr_emerg("issue in %s\n", current->comm);
307b50e195fSLiam R. Howlett 			dump_stack();
308b50e195fSLiam R. Howlett 			dump_vma(vma);
309b50e195fSLiam R. Howlett 			pr_emerg("tree range: %px start %lx end %lx\n", vma,
310b50e195fSLiam R. Howlett 				 vmi_start, vmi_end - 1);
311b50e195fSLiam R. Howlett 			vma_iter_dump_tree(&vmi);
312b50e195fSLiam R. Howlett 		}
313b50e195fSLiam R. Howlett 
314b50e195fSLiam R. Howlett #ifdef CONFIG_DEBUG_VM_RB
31512352d3cSKonstantin Khlebnikov 		if (anon_vma) {
31612352d3cSKonstantin Khlebnikov 			anon_vma_lock_read(anon_vma);
317ed8ea815SMichel Lespinasse 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
318ed8ea815SMichel Lespinasse 				anon_vma_interval_tree_verify(avc);
31912352d3cSKonstantin Khlebnikov 			anon_vma_unlock_read(anon_vma);
32012352d3cSKonstantin Khlebnikov 		}
321524e00b3SLiam R. Howlett #endif
3221da177e4SLinus Torvalds 		i++;
3231da177e4SLinus Torvalds 	}
3245a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
325b50e195fSLiam R. Howlett 		pr_emerg("map_count %d vma iterator %d\n", mm->map_count, i);
3265a0768f6SMichel Lespinasse 		bug = 1;
3275a0768f6SMichel Lespinasse 	}
32896dad67fSSasha Levin 	VM_BUG_ON_MM(bug, mm);
3291da177e4SLinus Torvalds }
330524e00b3SLiam R. Howlett 
331524e00b3SLiam R. Howlett #else /* !CONFIG_DEBUG_VM_MAPLE_TREE */
3321da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
333524e00b3SLiam R. Howlett #endif /* CONFIG_DEBUG_VM_MAPLE_TREE */
334d3737187SMichel Lespinasse 
335bf181b9fSMichel Lespinasse /*
336bf181b9fSMichel Lespinasse  * vma has some anon_vma assigned, and is already inserted on that
337bf181b9fSMichel Lespinasse  * anon_vma's interval trees.
338bf181b9fSMichel Lespinasse  *
339bf181b9fSMichel Lespinasse  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
340bf181b9fSMichel Lespinasse  * vma must be removed from the anon_vma's interval trees using
341bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_pre_update_vma().
342bf181b9fSMichel Lespinasse  *
343bf181b9fSMichel Lespinasse  * After the update, the vma will be reinserted using
344bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_post_update_vma().
345bf181b9fSMichel Lespinasse  *
346c1e8d7c6SMichel Lespinasse  * The entire update must be protected by exclusive mmap_lock and by
347bf181b9fSMichel Lespinasse  * the root anon_vma's mutex.
348bf181b9fSMichel Lespinasse  */
349bf181b9fSMichel Lespinasse static inline void
350bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
351bf181b9fSMichel Lespinasse {
352bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
353bf181b9fSMichel Lespinasse 
354bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
355bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
356bf181b9fSMichel Lespinasse }
357bf181b9fSMichel Lespinasse 
358bf181b9fSMichel Lespinasse static inline void
359bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
360bf181b9fSMichel Lespinasse {
361bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
362bf181b9fSMichel Lespinasse 
363bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
364bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
365bf181b9fSMichel Lespinasse }
366bf181b9fSMichel Lespinasse 
367e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm,
368e8420a8eSCyril Hrubis 		unsigned long addr, unsigned long end)
369e8420a8eSCyril Hrubis {
3702e3af1dbSMatthew Wilcox (Oracle) 	VMA_ITERATOR(vmi, mm, addr);
371e8420a8eSCyril Hrubis 	struct vm_area_struct *vma;
3722e3af1dbSMatthew Wilcox (Oracle) 	unsigned long nr_pages = 0;
373e8420a8eSCyril Hrubis 
3742e3af1dbSMatthew Wilcox (Oracle) 	for_each_vma_range(vmi, vma, end) {
3752e3af1dbSMatthew Wilcox (Oracle) 		unsigned long vm_start = max(addr, vma->vm_start);
3762e3af1dbSMatthew Wilcox (Oracle) 		unsigned long vm_end = min(end, vma->vm_end);
377e8420a8eSCyril Hrubis 
3782e3af1dbSMatthew Wilcox (Oracle) 		nr_pages += PHYS_PFN(vm_end - vm_start);
379e8420a8eSCyril Hrubis 	}
380e8420a8eSCyril Hrubis 
381e8420a8eSCyril Hrubis 	return nr_pages;
382e8420a8eSCyril Hrubis }
383e8420a8eSCyril Hrubis 
384c154124fSLiam R. Howlett static void __vma_link_file(struct vm_area_struct *vma,
385c154124fSLiam R. Howlett 			    struct address_space *mapping)
3861da177e4SLinus Torvalds {
3871da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
388cf508b58SMiaohe Lin 		mapping_allow_writable(mapping);
3891da177e4SLinus Torvalds 
3901da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
3916b2dbba8SMichel Lespinasse 	vma_interval_tree_insert(vma, &mapping->i_mmap);
3921da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
3931da177e4SLinus Torvalds }
3941da177e4SLinus Torvalds 
395763ecb03SLiam R. Howlett static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma)
3961da177e4SLinus Torvalds {
39779e4f2caSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, 0);
3981da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
3991da177e4SLinus Torvalds 
400b5df0922SLiam R. Howlett 	vma_iter_config(&vmi, vma->vm_start, vma->vm_end);
401b5df0922SLiam R. Howlett 	if (vma_iter_prealloc(&vmi, vma))
402d4af56c5SLiam R. Howlett 		return -ENOMEM;
403d4af56c5SLiam R. Howlett 
404ad9f0063SSuren Baghdasaryan 	vma_start_write(vma);
405ad9f0063SSuren Baghdasaryan 
4066852c46cSYu Ma 	vma_iter_store(&vmi, vma);
4076852c46cSYu Ma 
40864ac4940SHuang Shijie 	if (vma->vm_file) {
4091da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
41083cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
411c154124fSLiam R. Howlett 		__vma_link_file(vma, mapping);
41283cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
413c154124fSLiam R. Howlett 	}
4141da177e4SLinus Torvalds 
4151da177e4SLinus Torvalds 	mm->map_count++;
4161da177e4SLinus Torvalds 	validate_mm(mm);
417d4af56c5SLiam R. Howlett 	return 0;
4181da177e4SLinus Torvalds }
4191da177e4SLinus Torvalds 
4201da177e4SLinus Torvalds /*
42168cefec5SLiam R. Howlett  * init_multi_vma_prep() - Initializer for struct vma_prepare
42268cefec5SLiam R. Howlett  * @vp: The vma_prepare struct
42368cefec5SLiam R. Howlett  * @vma: The vma that will be altered once locked
42468cefec5SLiam R. Howlett  * @next: The next vma if it is to be adjusted
42568cefec5SLiam R. Howlett  * @remove: The first vma to be removed
42668cefec5SLiam R. Howlett  * @remove2: The second vma to be removed
42768cefec5SLiam R. Howlett  */
42868cefec5SLiam R. Howlett static inline void init_multi_vma_prep(struct vma_prepare *vp,
42968cefec5SLiam R. Howlett 		struct vm_area_struct *vma, struct vm_area_struct *next,
43068cefec5SLiam R. Howlett 		struct vm_area_struct *remove, struct vm_area_struct *remove2)
43168cefec5SLiam R. Howlett {
43268cefec5SLiam R. Howlett 	memset(vp, 0, sizeof(struct vma_prepare));
43368cefec5SLiam R. Howlett 	vp->vma = vma;
43468cefec5SLiam R. Howlett 	vp->anon_vma = vma->anon_vma;
43568cefec5SLiam R. Howlett 	vp->remove = remove;
43668cefec5SLiam R. Howlett 	vp->remove2 = remove2;
43768cefec5SLiam R. Howlett 	vp->adj_next = next;
43868cefec5SLiam R. Howlett 	if (!vp->anon_vma && next)
43968cefec5SLiam R. Howlett 		vp->anon_vma = next->anon_vma;
44068cefec5SLiam R. Howlett 
44168cefec5SLiam R. Howlett 	vp->file = vma->vm_file;
44268cefec5SLiam R. Howlett 	if (vp->file)
44368cefec5SLiam R. Howlett 		vp->mapping = vma->vm_file->f_mapping;
44468cefec5SLiam R. Howlett 
44568cefec5SLiam R. Howlett }
44668cefec5SLiam R. Howlett 
44768cefec5SLiam R. Howlett /*
44868cefec5SLiam R. Howlett  * init_vma_prep() - Initializer wrapper for vma_prepare struct
44968cefec5SLiam R. Howlett  * @vp: The vma_prepare struct
45068cefec5SLiam R. Howlett  * @vma: The vma that will be altered once locked
45168cefec5SLiam R. Howlett  */
45268cefec5SLiam R. Howlett static inline void init_vma_prep(struct vma_prepare *vp,
45368cefec5SLiam R. Howlett 				 struct vm_area_struct *vma)
45468cefec5SLiam R. Howlett {
45568cefec5SLiam R. Howlett 	init_multi_vma_prep(vp, vma, NULL, NULL, NULL);
45668cefec5SLiam R. Howlett }
45768cefec5SLiam R. Howlett 
45868cefec5SLiam R. Howlett 
45968cefec5SLiam R. Howlett /*
460440703e0SLiam R. Howlett  * vma_prepare() - Helper function for handling locking VMAs prior to altering
461440703e0SLiam R. Howlett  * @vp: The initialized vma_prepare struct
462440703e0SLiam R. Howlett  */
463440703e0SLiam R. Howlett static inline void vma_prepare(struct vma_prepare *vp)
464440703e0SLiam R. Howlett {
465440703e0SLiam R. Howlett 	if (vp->file) {
466440703e0SLiam R. Howlett 		uprobe_munmap(vp->vma, vp->vma->vm_start, vp->vma->vm_end);
467440703e0SLiam R. Howlett 
468440703e0SLiam R. Howlett 		if (vp->adj_next)
469440703e0SLiam R. Howlett 			uprobe_munmap(vp->adj_next, vp->adj_next->vm_start,
470440703e0SLiam R. Howlett 				      vp->adj_next->vm_end);
471440703e0SLiam R. Howlett 
472440703e0SLiam R. Howlett 		i_mmap_lock_write(vp->mapping);
473440703e0SLiam R. Howlett 		if (vp->insert && vp->insert->vm_file) {
474440703e0SLiam R. Howlett 			/*
475440703e0SLiam R. Howlett 			 * Put into interval tree now, so instantiated pages
476440703e0SLiam R. Howlett 			 * are visible to arm/parisc __flush_dcache_page
477440703e0SLiam R. Howlett 			 * throughout; but we cannot insert into address
478440703e0SLiam R. Howlett 			 * space until vma start or end is updated.
479440703e0SLiam R. Howlett 			 */
480440703e0SLiam R. Howlett 			__vma_link_file(vp->insert,
481440703e0SLiam R. Howlett 					vp->insert->vm_file->f_mapping);
482440703e0SLiam R. Howlett 		}
483440703e0SLiam R. Howlett 	}
484440703e0SLiam R. Howlett 
485440703e0SLiam R. Howlett 	if (vp->anon_vma) {
486440703e0SLiam R. Howlett 		anon_vma_lock_write(vp->anon_vma);
487440703e0SLiam R. Howlett 		anon_vma_interval_tree_pre_update_vma(vp->vma);
488440703e0SLiam R. Howlett 		if (vp->adj_next)
489440703e0SLiam R. Howlett 			anon_vma_interval_tree_pre_update_vma(vp->adj_next);
490440703e0SLiam R. Howlett 	}
491440703e0SLiam R. Howlett 
492440703e0SLiam R. Howlett 	if (vp->file) {
493440703e0SLiam R. Howlett 		flush_dcache_mmap_lock(vp->mapping);
494440703e0SLiam R. Howlett 		vma_interval_tree_remove(vp->vma, &vp->mapping->i_mmap);
495440703e0SLiam R. Howlett 		if (vp->adj_next)
496440703e0SLiam R. Howlett 			vma_interval_tree_remove(vp->adj_next,
497440703e0SLiam R. Howlett 						 &vp->mapping->i_mmap);
498440703e0SLiam R. Howlett 	}
499440703e0SLiam R. Howlett 
500440703e0SLiam R. Howlett }
501440703e0SLiam R. Howlett 
502440703e0SLiam R. Howlett /*
503440703e0SLiam R. Howlett  * vma_complete- Helper function for handling the unlocking after altering VMAs,
504440703e0SLiam R. Howlett  * or for inserting a VMA.
505440703e0SLiam R. Howlett  *
506440703e0SLiam R. Howlett  * @vp: The vma_prepare struct
507440703e0SLiam R. Howlett  * @vmi: The vma iterator
508440703e0SLiam R. Howlett  * @mm: The mm_struct
509440703e0SLiam R. Howlett  */
510440703e0SLiam R. Howlett static inline void vma_complete(struct vma_prepare *vp,
511440703e0SLiam R. Howlett 				struct vma_iterator *vmi, struct mm_struct *mm)
512440703e0SLiam R. Howlett {
513440703e0SLiam R. Howlett 	if (vp->file) {
514440703e0SLiam R. Howlett 		if (vp->adj_next)
515440703e0SLiam R. Howlett 			vma_interval_tree_insert(vp->adj_next,
516440703e0SLiam R. Howlett 						 &vp->mapping->i_mmap);
517440703e0SLiam R. Howlett 		vma_interval_tree_insert(vp->vma, &vp->mapping->i_mmap);
518440703e0SLiam R. Howlett 		flush_dcache_mmap_unlock(vp->mapping);
519440703e0SLiam R. Howlett 	}
520440703e0SLiam R. Howlett 
521440703e0SLiam R. Howlett 	if (vp->remove && vp->file) {
522440703e0SLiam R. Howlett 		__remove_shared_vm_struct(vp->remove, vp->file, vp->mapping);
523440703e0SLiam R. Howlett 		if (vp->remove2)
524440703e0SLiam R. Howlett 			__remove_shared_vm_struct(vp->remove2, vp->file,
525440703e0SLiam R. Howlett 						  vp->mapping);
526440703e0SLiam R. Howlett 	} else if (vp->insert) {
527440703e0SLiam R. Howlett 		/*
528440703e0SLiam R. Howlett 		 * split_vma has split insert from vma, and needs
529440703e0SLiam R. Howlett 		 * us to insert it before dropping the locks
530440703e0SLiam R. Howlett 		 * (it may either follow vma or precede it).
531440703e0SLiam R. Howlett 		 */
532440703e0SLiam R. Howlett 		vma_iter_store(vmi, vp->insert);
533440703e0SLiam R. Howlett 		mm->map_count++;
534440703e0SLiam R. Howlett 	}
535440703e0SLiam R. Howlett 
536440703e0SLiam R. Howlett 	if (vp->anon_vma) {
537440703e0SLiam R. Howlett 		anon_vma_interval_tree_post_update_vma(vp->vma);
538440703e0SLiam R. Howlett 		if (vp->adj_next)
539440703e0SLiam R. Howlett 			anon_vma_interval_tree_post_update_vma(vp->adj_next);
540440703e0SLiam R. Howlett 		anon_vma_unlock_write(vp->anon_vma);
541440703e0SLiam R. Howlett 	}
542440703e0SLiam R. Howlett 
543440703e0SLiam R. Howlett 	if (vp->file) {
544440703e0SLiam R. Howlett 		i_mmap_unlock_write(vp->mapping);
545440703e0SLiam R. Howlett 		uprobe_mmap(vp->vma);
546440703e0SLiam R. Howlett 
547440703e0SLiam R. Howlett 		if (vp->adj_next)
548440703e0SLiam R. Howlett 			uprobe_mmap(vp->adj_next);
549440703e0SLiam R. Howlett 	}
550440703e0SLiam R. Howlett 
551440703e0SLiam R. Howlett 	if (vp->remove) {
552440703e0SLiam R. Howlett again:
553457f67beSSuren Baghdasaryan 		vma_mark_detached(vp->remove, true);
554440703e0SLiam R. Howlett 		if (vp->file) {
555440703e0SLiam R. Howlett 			uprobe_munmap(vp->remove, vp->remove->vm_start,
556440703e0SLiam R. Howlett 				      vp->remove->vm_end);
557440703e0SLiam R. Howlett 			fput(vp->file);
558440703e0SLiam R. Howlett 		}
559440703e0SLiam R. Howlett 		if (vp->remove->anon_vma)
560440703e0SLiam R. Howlett 			anon_vma_merge(vp->vma, vp->remove);
561440703e0SLiam R. Howlett 		mm->map_count--;
562440703e0SLiam R. Howlett 		mpol_put(vma_policy(vp->remove));
563440703e0SLiam R. Howlett 		if (!vp->remove2)
564440703e0SLiam R. Howlett 			WARN_ON_ONCE(vp->vma->vm_end < vp->remove->vm_end);
565440703e0SLiam R. Howlett 		vm_area_free(vp->remove);
566440703e0SLiam R. Howlett 
567440703e0SLiam R. Howlett 		/*
568440703e0SLiam R. Howlett 		 * In mprotect's case 6 (see comments on vma_merge),
5695ff783f1SVlastimil Babka 		 * we are removing both mid and next vmas
570440703e0SLiam R. Howlett 		 */
571440703e0SLiam R. Howlett 		if (vp->remove2) {
572440703e0SLiam R. Howlett 			vp->remove = vp->remove2;
573440703e0SLiam R. Howlett 			vp->remove2 = NULL;
574440703e0SLiam R. Howlett 			goto again;
575440703e0SLiam R. Howlett 		}
576440703e0SLiam R. Howlett 	}
577440703e0SLiam R. Howlett 	if (vp->insert && vp->file)
578440703e0SLiam R. Howlett 		uprobe_mmap(vp->insert);
5792574d5e4SLiam R. Howlett 	validate_mm(mm);
580440703e0SLiam R. Howlett }
581440703e0SLiam R. Howlett 
582440703e0SLiam R. Howlett /*
58304241ffeSLiam R. Howlett  * dup_anon_vma() - Helper function to duplicate anon_vma
58404241ffeSLiam R. Howlett  * @dst: The destination VMA
58504241ffeSLiam R. Howlett  * @src: The source VMA
58604241ffeSLiam R. Howlett  *
58704241ffeSLiam R. Howlett  * Returns: 0 on success.
58804241ffeSLiam R. Howlett  */
58904241ffeSLiam R. Howlett static inline int dup_anon_vma(struct vm_area_struct *dst,
59004241ffeSLiam R. Howlett 			       struct vm_area_struct *src)
59104241ffeSLiam R. Howlett {
59204241ffeSLiam R. Howlett 	/*
59304241ffeSLiam R. Howlett 	 * Easily overlooked: when mprotect shifts the boundary, make sure the
59404241ffeSLiam R. Howlett 	 * expanding vma has anon_vma set if the shrinking vma had, to cover any
59504241ffeSLiam R. Howlett 	 * anon pages imported.
59604241ffeSLiam R. Howlett 	 */
59704241ffeSLiam R. Howlett 	if (src->anon_vma && !dst->anon_vma) {
598c9d6e982SSuren Baghdasaryan 		vma_assert_write_locked(dst);
59904241ffeSLiam R. Howlett 		dst->anon_vma = src->anon_vma;
60004241ffeSLiam R. Howlett 		return anon_vma_clone(dst, src);
60104241ffeSLiam R. Howlett 	}
60204241ffeSLiam R. Howlett 
60304241ffeSLiam R. Howlett 	return 0;
60404241ffeSLiam R. Howlett }
60504241ffeSLiam R. Howlett 
60604241ffeSLiam R. Howlett /*
6079303d3e1SLiam R. Howlett  * vma_expand - Expand an existing VMA
6089303d3e1SLiam R. Howlett  *
6099303d3e1SLiam R. Howlett  * @vmi: The vma iterator
6109303d3e1SLiam R. Howlett  * @vma: The vma to expand
6119303d3e1SLiam R. Howlett  * @start: The start of the vma
6129303d3e1SLiam R. Howlett  * @end: The exclusive end of the vma
6139303d3e1SLiam R. Howlett  * @pgoff: The page offset of vma
6149303d3e1SLiam R. Howlett  * @next: The current of next vma.
6159303d3e1SLiam R. Howlett  *
6169303d3e1SLiam R. Howlett  * Expand @vma to @start and @end.  Can expand off the start and end.  Will
6179303d3e1SLiam R. Howlett  * expand over @next if it's different from @vma and @end == @next->vm_end.
6189303d3e1SLiam R. Howlett  * Checking if the @vma can expand and merge with @next needs to be handled by
6199303d3e1SLiam R. Howlett  * the caller.
6209303d3e1SLiam R. Howlett  *
6219303d3e1SLiam R. Howlett  * Returns: 0 on success
6229303d3e1SLiam R. Howlett  */
6237c9813e8SLiam R. Howlett int vma_expand(struct vma_iterator *vmi, struct vm_area_struct *vma,
6249303d3e1SLiam R. Howlett 	       unsigned long start, unsigned long end, pgoff_t pgoff,
6259303d3e1SLiam R. Howlett 	       struct vm_area_struct *next)
6269303d3e1SLiam R. Howlett {
62768cefec5SLiam R. Howlett 	bool remove_next = false;
6289303d3e1SLiam R. Howlett 	struct vma_prepare vp;
6299303d3e1SLiam R. Howlett 
630c9d6e982SSuren Baghdasaryan 	vma_start_write(vma);
6319303d3e1SLiam R. Howlett 	if (next && (vma != next) && (end == next->vm_end)) {
63204241ffeSLiam R. Howlett 		int ret;
6339303d3e1SLiam R. Howlett 
63404241ffeSLiam R. Howlett 		remove_next = true;
635c9d6e982SSuren Baghdasaryan 		vma_start_write(next);
63604241ffeSLiam R. Howlett 		ret = dup_anon_vma(vma, next);
63704241ffeSLiam R. Howlett 		if (ret)
63804241ffeSLiam R. Howlett 			return ret;
6399303d3e1SLiam R. Howlett 	}
6409303d3e1SLiam R. Howlett 
64168cefec5SLiam R. Howlett 	init_multi_vma_prep(&vp, vma, NULL, remove_next ? next : NULL, NULL);
6429303d3e1SLiam R. Howlett 	/* Not merging but overwriting any part of next is not handled. */
6439303d3e1SLiam R. Howlett 	VM_WARN_ON(next && !vp.remove &&
6449303d3e1SLiam R. Howlett 		  next != vma && end > next->vm_start);
6459303d3e1SLiam R. Howlett 	/* Only handles expanding */
6469303d3e1SLiam R. Howlett 	VM_WARN_ON(vma->vm_start < start || vma->vm_end > end);
6479303d3e1SLiam R. Howlett 
648b5df0922SLiam R. Howlett 	/* Note: vma iterator must be pointing to 'start' */
649b5df0922SLiam R. Howlett 	vma_iter_config(vmi, start, end);
650b5df0922SLiam R. Howlett 	if (vma_iter_prealloc(vmi, vma))
6519303d3e1SLiam R. Howlett 		goto nomem;
6529303d3e1SLiam R. Howlett 
653ccf1d78dSSuren Baghdasaryan 	vma_prepare(&vp);
6549303d3e1SLiam R. Howlett 	vma_adjust_trans_huge(vma, start, end, 0);
6559303d3e1SLiam R. Howlett 	vma->vm_start = start;
6569303d3e1SLiam R. Howlett 	vma->vm_end = end;
6579303d3e1SLiam R. Howlett 	vma->vm_pgoff = pgoff;
6589303d3e1SLiam R. Howlett 	vma_iter_store(vmi, vma);
6599303d3e1SLiam R. Howlett 
6609303d3e1SLiam R. Howlett 	vma_complete(&vp, vmi, vma->vm_mm);
6619303d3e1SLiam R. Howlett 	return 0;
6629303d3e1SLiam R. Howlett 
6639303d3e1SLiam R. Howlett nomem:
6649303d3e1SLiam R. Howlett 	return -ENOMEM;
6659303d3e1SLiam R. Howlett }
666cf51e86dSLiam R. Howlett 
667cf51e86dSLiam R. Howlett /*
668cf51e86dSLiam R. Howlett  * vma_shrink() - Reduce an existing VMAs memory area
669cf51e86dSLiam R. Howlett  * @vmi: The vma iterator
670cf51e86dSLiam R. Howlett  * @vma: The VMA to modify
671cf51e86dSLiam R. Howlett  * @start: The new start
672cf51e86dSLiam R. Howlett  * @end: The new end
673cf51e86dSLiam R. Howlett  *
674cf51e86dSLiam R. Howlett  * Returns: 0 on success, -ENOMEM otherwise
675cf51e86dSLiam R. Howlett  */
676cf51e86dSLiam R. Howlett int vma_shrink(struct vma_iterator *vmi, struct vm_area_struct *vma,
677cf51e86dSLiam R. Howlett 	       unsigned long start, unsigned long end, pgoff_t pgoff)
678cf51e86dSLiam R. Howlett {
679cf51e86dSLiam R. Howlett 	struct vma_prepare vp;
680cf51e86dSLiam R. Howlett 
681cf51e86dSLiam R. Howlett 	WARN_ON((vma->vm_start != start) && (vma->vm_end != end));
682cf51e86dSLiam R. Howlett 
683b5df0922SLiam R. Howlett 	if (vma->vm_start < start)
684b5df0922SLiam R. Howlett 		vma_iter_config(vmi, vma->vm_start, start);
685b5df0922SLiam R. Howlett 	else
686b5df0922SLiam R. Howlett 		vma_iter_config(vmi, end, vma->vm_end);
687b5df0922SLiam R. Howlett 
688b5df0922SLiam R. Howlett 	if (vma_iter_prealloc(vmi, NULL))
689cf51e86dSLiam R. Howlett 		return -ENOMEM;
690cf51e86dSLiam R. Howlett 
691c9d6e982SSuren Baghdasaryan 	vma_start_write(vma);
692c9d6e982SSuren Baghdasaryan 
693cf51e86dSLiam R. Howlett 	init_vma_prep(&vp, vma);
694cf51e86dSLiam R. Howlett 	vma_prepare(&vp);
695ccf1d78dSSuren Baghdasaryan 	vma_adjust_trans_huge(vma, start, end, 0);
696cf51e86dSLiam R. Howlett 
697b5df0922SLiam R. Howlett 	vma_iter_clear(vmi);
698cf51e86dSLiam R. Howlett 	vma->vm_start = start;
699cf51e86dSLiam R. Howlett 	vma->vm_end = end;
700cf51e86dSLiam R. Howlett 	vma->vm_pgoff = pgoff;
701cf51e86dSLiam R. Howlett 	vma_complete(&vp, vmi, vma->vm_mm);
702cf51e86dSLiam R. Howlett 	return 0;
703cf51e86dSLiam R. Howlett }
704cf51e86dSLiam R. Howlett 
7059303d3e1SLiam R. Howlett /*
7061da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
707714965caSVlastimil Babka  * per-vma resources, so we don't attempt to merge those if the caller indicates
708714965caSVlastimil Babka  * the current vma may be removed as part of the merge.
7091da177e4SLinus Torvalds  */
7102dbf4010SVlastimil Babka static inline bool is_mergeable_vma(struct vm_area_struct *vma,
71119a809afSAndrea Arcangeli 		struct file *file, unsigned long vm_flags,
7129a10064fSColin Cross 		struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
713714965caSVlastimil Babka 		struct anon_vma_name *anon_name, bool may_remove_vma)
7141da177e4SLinus Torvalds {
71534228d47SCyrill Gorcunov 	/*
71634228d47SCyrill Gorcunov 	 * VM_SOFTDIRTY should not prevent from VMA merging, if we
71734228d47SCyrill Gorcunov 	 * match the flags but dirty bit -- the caller should mark
71834228d47SCyrill Gorcunov 	 * merged VMA as dirty. If dirty bit won't be excluded from
7198bb4e7a2SWei Yang 	 * comparison, we increase pressure on the memory system forcing
72034228d47SCyrill Gorcunov 	 * the kernel to generate new VMAs when old one could be
72134228d47SCyrill Gorcunov 	 * extended instead.
72234228d47SCyrill Gorcunov 	 */
72334228d47SCyrill Gorcunov 	if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
7242dbf4010SVlastimil Babka 		return false;
7251da177e4SLinus Torvalds 	if (vma->vm_file != file)
7262dbf4010SVlastimil Babka 		return false;
727714965caSVlastimil Babka 	if (may_remove_vma && vma->vm_ops && vma->vm_ops->close)
7282dbf4010SVlastimil Babka 		return false;
72919a809afSAndrea Arcangeli 	if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
7302dbf4010SVlastimil Babka 		return false;
7315c26f6acSSuren Baghdasaryan 	if (!anon_vma_name_eq(anon_vma_name(vma), anon_name))
7322dbf4010SVlastimil Babka 		return false;
7332dbf4010SVlastimil Babka 	return true;
7341da177e4SLinus Torvalds }
7351da177e4SLinus Torvalds 
7362dbf4010SVlastimil Babka static inline bool is_mergeable_anon_vma(struct anon_vma *anon_vma1,
7372dbf4010SVlastimil Babka 		 struct anon_vma *anon_vma2, struct vm_area_struct *vma)
7381da177e4SLinus Torvalds {
739965f55deSShaohua Li 	/*
740965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
741965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
742965f55deSShaohua Li 	 */
743965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
744965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
7452dbf4010SVlastimil Babka 		return true;
746965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
7471da177e4SLinus Torvalds }
7481da177e4SLinus Torvalds 
7491da177e4SLinus Torvalds /*
7501da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
7511da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
7521da177e4SLinus Torvalds  *
7531da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
7541da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
7551da177e4SLinus Torvalds  *
7561da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
75745e55300SPeter Collingbourne  * indices (16TB on ia32) because do_mmap() does not permit mmap's which
7581da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
759714965caSVlastimil Babka  *
760714965caSVlastimil Babka  * We assume the vma may be removed as part of the merge.
7611da177e4SLinus Torvalds  */
7622dbf4010SVlastimil Babka static bool
7631da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
76419a809afSAndrea Arcangeli 		struct anon_vma *anon_vma, struct file *file,
7652dbf4010SVlastimil Babka 		pgoff_t vm_pgoff, struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
7665c26f6acSSuren Baghdasaryan 		struct anon_vma_name *anon_name)
7671da177e4SLinus Torvalds {
768714965caSVlastimil Babka 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name, true) &&
769965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
7701da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
7712dbf4010SVlastimil Babka 			return true;
7721da177e4SLinus Torvalds 	}
7732dbf4010SVlastimil Babka 	return false;
7741da177e4SLinus Torvalds }
7751da177e4SLinus Torvalds 
7761da177e4SLinus Torvalds /*
7771da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
7781da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
7791da177e4SLinus Torvalds  *
7801da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
7811da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
782714965caSVlastimil Babka  *
783714965caSVlastimil Babka  * We assume that vma is not removed as part of the merge.
7841da177e4SLinus Torvalds  */
7852dbf4010SVlastimil Babka static bool
7861da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
78719a809afSAndrea Arcangeli 		struct anon_vma *anon_vma, struct file *file,
7882dbf4010SVlastimil Babka 		pgoff_t vm_pgoff, struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
7895c26f6acSSuren Baghdasaryan 		struct anon_vma_name *anon_name)
7901da177e4SLinus Torvalds {
791714965caSVlastimil Babka 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name, false) &&
792965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
7931da177e4SLinus Torvalds 		pgoff_t vm_pglen;
794d6e93217SLibin 		vm_pglen = vma_pages(vma);
7951da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
7962dbf4010SVlastimil Babka 			return true;
7971da177e4SLinus Torvalds 	}
7982dbf4010SVlastimil Babka 	return false;
7991da177e4SLinus Torvalds }
8001da177e4SLinus Torvalds 
8011da177e4SLinus Torvalds /*
8029a10064fSColin Cross  * Given a mapping request (addr,end,vm_flags,file,pgoff,anon_name),
8039a10064fSColin Cross  * figure out whether that can be merged with its predecessor or its
8049a10064fSColin Cross  * successor.  Or both (it neatly fills a hole).
8051da177e4SLinus Torvalds  *
8061da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
8071da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
8081da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
8091da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
8101da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
8111da177e4SLinus Torvalds  * case has already been eliminated.
8121da177e4SLinus Torvalds  *
813fcfccd91SLorenzo Stoakes  * The following mprotect cases have to be considered, where **** is
8141da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
815fcfccd91SLorenzo Stoakes  * vma, PPPP is the previous vma, CCCC is a concurrent vma that starts
816fcfccd91SLorenzo Stoakes  * at the same address as **** and is of the same or larger span, and
817fcfccd91SLorenzo Stoakes  * NNNN the next vma after ****:
8181da177e4SLinus Torvalds  *
819fcfccd91SLorenzo Stoakes  *     ****             ****                   ****
820fcfccd91SLorenzo Stoakes  *    PPPPPPNNNNNN    PPPPPPNNNNNN       PPPPPPCCCCCC
8215d42ab29SWei Yang  *    cannot merge    might become       might become
822fcfccd91SLorenzo Stoakes  *                    PPNNNNNNNNNN       PPPPPPPPPPCC
8235d42ab29SWei Yang  *    mmap, brk or    case 4 below       case 5 below
8245d42ab29SWei Yang  *    mremap move:
825fcfccd91SLorenzo Stoakes  *                        ****               ****
826fcfccd91SLorenzo Stoakes  *                    PPPP    NNNN       PPPPCCCCNNNN
8275d42ab29SWei Yang  *                    might become       might become
8285d42ab29SWei Yang  *                    PPPPPPPPPPPP 1 or  PPPPPPPPPPPP 6 or
829fcfccd91SLorenzo Stoakes  *                    PPPPPPPPNNNN 2 or  PPPPPPPPNNNN 7 or
830fcfccd91SLorenzo Stoakes  *                    PPPPNNNNNNNN 3     PPPPNNNNNNNN 8
8311da177e4SLinus Torvalds  *
832fcfccd91SLorenzo Stoakes  * It is important for case 8 that the vma CCCC overlapping the
833fcfccd91SLorenzo Stoakes  * region **** is never going to extended over NNNN. Instead NNNN must
834fcfccd91SLorenzo Stoakes  * be extended in region **** and CCCC must be removed. This way in
8350503ea8fSLiam R. Howlett  * all cases where vma_merge succeeds, the moment vma_merge drops the
836e86f15eeSAndrea Arcangeli  * rmap_locks, the properties of the merged vma will be already
837e86f15eeSAndrea Arcangeli  * correct for the whole merged range. Some of those properties like
838e86f15eeSAndrea Arcangeli  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
839e86f15eeSAndrea Arcangeli  * be correct for the whole merged range immediately after the
840fcfccd91SLorenzo Stoakes  * rmap_locks are released. Otherwise if NNNN would be removed and
841fcfccd91SLorenzo Stoakes  * CCCC would be extended over the NNNN range, remove_migration_ptes
842e86f15eeSAndrea Arcangeli  * or other rmap walkers (if working on addresses beyond the "end"
843fcfccd91SLorenzo Stoakes  * parameter) may establish ptes with the wrong permissions of CCCC
844fcfccd91SLorenzo Stoakes  * instead of the right permissions of NNNN.
8450503ea8fSLiam R. Howlett  *
8460503ea8fSLiam R. Howlett  * In the code below:
8470503ea8fSLiam R. Howlett  * PPPP is represented by *prev
848fcfccd91SLorenzo Stoakes  * CCCC is represented by *curr or not represented at all (NULL)
849fcfccd91SLorenzo Stoakes  * NNNN is represented by *next or not represented at all (NULL)
850fcfccd91SLorenzo Stoakes  * **** is not represented - it will be merged and the vma containing the
8519e8a39d2SVlastimil Babka  *      area is returned, or the function will return NULL
8521da177e4SLinus Torvalds  */
8539760ebffSLiam R. Howlett struct vm_area_struct *vma_merge(struct vma_iterator *vmi, struct mm_struct *mm,
8541da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
8551da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
8561da177e4SLinus Torvalds 			struct anon_vma *anon_vma, struct file *file,
85719a809afSAndrea Arcangeli 			pgoff_t pgoff, struct mempolicy *policy,
8589a10064fSColin Cross 			struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
8595c26f6acSSuren Baghdasaryan 			struct anon_vma_name *anon_name)
8601da177e4SLinus Torvalds {
861b0729ae0SLorenzo Stoakes 	struct vm_area_struct *curr, *next, *res;
8620503ea8fSLiam R. Howlett 	struct vm_area_struct *vma, *adjust, *remove, *remove2;
8630173db4fSLorenzo Stoakes 	struct vma_prepare vp;
8640173db4fSLorenzo Stoakes 	pgoff_t vma_pgoff;
8650173db4fSLorenzo Stoakes 	int err = 0;
866eef19944SJakub Matěna 	bool merge_prev = false;
867eef19944SJakub Matěna 	bool merge_next = false;
8680503ea8fSLiam R. Howlett 	bool vma_expanded = false;
8690503ea8fSLiam R. Howlett 	unsigned long vma_start = addr;
8700173db4fSLorenzo Stoakes 	unsigned long vma_end = end;
8710173db4fSLorenzo Stoakes 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
8720173db4fSLorenzo Stoakes 	long adj_start = 0;
8731da177e4SLinus Torvalds 
8741da177e4SLinus Torvalds 	/*
8751da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
8761da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
8771da177e4SLinus Torvalds 	 */
8781da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
8791da177e4SLinus Torvalds 		return NULL;
8801da177e4SLinus Torvalds 
88100cd00a6SLorenzo Stoakes 	/* Does the input range span an existing VMA? (cases 5 - 8) */
88200cd00a6SLorenzo Stoakes 	curr = find_vma_intersection(mm, prev ? prev->vm_end : 0, end);
8831da177e4SLinus Torvalds 
88400cd00a6SLorenzo Stoakes 	if (!curr ||			/* cases 1 - 4 */
88500cd00a6SLorenzo Stoakes 	    end == curr->vm_end)	/* cases 6 - 8, adjacent VMA */
88600cd00a6SLorenzo Stoakes 		next = vma_lookup(mm, end);
88700cd00a6SLorenzo Stoakes 	else
88800cd00a6SLorenzo Stoakes 		next = NULL;		/* case 5 */
889e86f15eeSAndrea Arcangeli 
8900503ea8fSLiam R. Howlett 	if (prev) {
8910503ea8fSLiam R. Howlett 		vma_start = prev->vm_start;
8920503ea8fSLiam R. Howlett 		vma_pgoff = prev->vm_pgoff;
8930173db4fSLorenzo Stoakes 
894eef19944SJakub Matěna 		/* Can we merge the predecessor? */
8950173db4fSLorenzo Stoakes 		if (addr == prev->vm_end && mpol_equal(vma_policy(prev), policy)
8960503ea8fSLiam R. Howlett 		    && can_vma_merge_after(prev, vm_flags, anon_vma, file,
8970503ea8fSLiam R. Howlett 					   pgoff, vm_userfaultfd_ctx, anon_name)) {
898eef19944SJakub Matěna 			merge_prev = true;
89918b098afSLiam R. Howlett 			vma_prev(vmi);
9001da177e4SLinus Torvalds 		}
9010503ea8fSLiam R. Howlett 	}
902b0729ae0SLorenzo Stoakes 
903eef19944SJakub Matěna 	/* Can we merge the successor? */
90400cd00a6SLorenzo Stoakes 	if (next && mpol_equal(policy, vma_policy(next)) &&
9050173db4fSLorenzo Stoakes 	    can_vma_merge_before(next, vm_flags, anon_vma, file, pgoff+pglen,
9069a10064fSColin Cross 				 vm_userfaultfd_ctx, anon_name)) {
907eef19944SJakub Matěna 		merge_next = true;
908eef19944SJakub Matěna 	}
9090503ea8fSLiam R. Howlett 
91029417d29SLorenzo Stoakes 	/* Verify some invariant that must be enforced by the caller. */
91129417d29SLorenzo Stoakes 	VM_WARN_ON(prev && addr <= prev->vm_start);
91229417d29SLorenzo Stoakes 	VM_WARN_ON(curr && (addr != curr->vm_start || end > curr->vm_end));
91329417d29SLorenzo Stoakes 	VM_WARN_ON(addr >= end);
91429417d29SLorenzo Stoakes 
9150173db4fSLorenzo Stoakes 	if (!merge_prev && !merge_next)
9160173db4fSLorenzo Stoakes 		return NULL; /* Not mergeable. */
9170173db4fSLorenzo Stoakes 
918c9d6e982SSuren Baghdasaryan 	if (merge_prev)
919c9d6e982SSuren Baghdasaryan 		vma_start_write(prev);
920c9d6e982SSuren Baghdasaryan 
9210173db4fSLorenzo Stoakes 	res = vma = prev;
9220503ea8fSLiam R. Howlett 	remove = remove2 = adjust = NULL;
9230173db4fSLorenzo Stoakes 
924eef19944SJakub Matěna 	/* Can we merge both the predecessor and the successor? */
925eef19944SJakub Matěna 	if (merge_prev && merge_next &&
9260503ea8fSLiam R. Howlett 	    is_mergeable_anon_vma(prev->anon_vma, next->anon_vma, NULL)) {
927c9d6e982SSuren Baghdasaryan 		vma_start_write(next);
9285ff783f1SVlastimil Babka 		remove = next;				/* case 1 */
9290503ea8fSLiam R. Howlett 		vma_end = next->vm_end;
93050dac011SVlastimil Babka 		err = dup_anon_vma(prev, next);
931fcfccd91SLorenzo Stoakes 		if (curr) {				/* case 6 */
932c9d6e982SSuren Baghdasaryan 			vma_start_write(curr);
933fcfccd91SLorenzo Stoakes 			remove = curr;
9340503ea8fSLiam R. Howlett 			remove2 = next;
9355ff783f1SVlastimil Babka 			if (!next->anon_vma)
936fcfccd91SLorenzo Stoakes 				err = dup_anon_vma(prev, curr);
9370503ea8fSLiam R. Howlett 		}
9380173db4fSLorenzo Stoakes 	} else if (merge_prev) {			/* case 2 */
939fcfccd91SLorenzo Stoakes 		if (curr) {
940c9d6e982SSuren Baghdasaryan 			vma_start_write(curr);
941fcfccd91SLorenzo Stoakes 			err = dup_anon_vma(prev, curr);
942fcfccd91SLorenzo Stoakes 			if (end == curr->vm_end) {	/* case 7 */
943fcfccd91SLorenzo Stoakes 				remove = curr;
9440503ea8fSLiam R. Howlett 			} else {			/* case 5 */
945fcfccd91SLorenzo Stoakes 				adjust = curr;
946fcfccd91SLorenzo Stoakes 				adj_start = (end - curr->vm_start);
9470503ea8fSLiam R. Howlett 			}
9480503ea8fSLiam R. Howlett 		}
9490173db4fSLorenzo Stoakes 	} else { /* merge_next */
950c9d6e982SSuren Baghdasaryan 		vma_start_write(next);
951eef19944SJakub Matěna 		res = next;
9520503ea8fSLiam R. Howlett 		if (prev && addr < prev->vm_end) {	/* case 4 */
953c9d6e982SSuren Baghdasaryan 			vma_start_write(prev);
9540503ea8fSLiam R. Howlett 			vma_end = addr;
955183b7a60SVlastimil Babka 			adjust = next;
9561e76454fSVlastimil Babka 			adj_start = -(prev->vm_end - addr);
957183b7a60SVlastimil Babka 			err = dup_anon_vma(next, prev);
9580503ea8fSLiam R. Howlett 		} else {
959b0729ae0SLorenzo Stoakes 			/*
960b0729ae0SLorenzo Stoakes 			 * Note that cases 3 and 8 are the ONLY ones where prev
961b0729ae0SLorenzo Stoakes 			 * is permitted to be (but is not necessarily) NULL.
962b0729ae0SLorenzo Stoakes 			 */
9630503ea8fSLiam R. Howlett 			vma = next;			/* case 3 */
9640503ea8fSLiam R. Howlett 			vma_start = addr;
9650503ea8fSLiam R. Howlett 			vma_end = next->vm_end;
9667e775787SVlastimil Babka 			vma_pgoff = next->vm_pgoff - pglen;
967fcfccd91SLorenzo Stoakes 			if (curr) {			/* case 8 */
968fcfccd91SLorenzo Stoakes 				vma_pgoff = curr->vm_pgoff;
969c9d6e982SSuren Baghdasaryan 				vma_start_write(curr);
970fcfccd91SLorenzo Stoakes 				remove = curr;
971fcfccd91SLorenzo Stoakes 				err = dup_anon_vma(next, curr);
9720503ea8fSLiam R. Howlett 			}
9730503ea8fSLiam R. Howlett 		}
9741da177e4SLinus Torvalds 	}
9751da177e4SLinus Torvalds 
9760173db4fSLorenzo Stoakes 	/* Error in anon_vma clone. */
977eef19944SJakub Matěna 	if (err)
978*1419430cSLiam R. Howlett 		goto anon_vma_fail;
9790503ea8fSLiam R. Howlett 
980b5df0922SLiam R. Howlett 	if (vma_start < vma->vm_start || vma_end > vma->vm_end)
981b5df0922SLiam R. Howlett 		vma_expanded = true;
982b5df0922SLiam R. Howlett 
983b5df0922SLiam R. Howlett 	if (vma_expanded) {
984b5df0922SLiam R. Howlett 		vma_iter_config(vmi, vma_start, vma_end);
985b5df0922SLiam R. Howlett 	} else {
986b5df0922SLiam R. Howlett 		vma_iter_config(vmi, adjust->vm_start + adj_start,
987b5df0922SLiam R. Howlett 				adjust->vm_end);
988b5df0922SLiam R. Howlett 	}
989b5df0922SLiam R. Howlett 
990b5df0922SLiam R. Howlett 	if (vma_iter_prealloc(vmi, vma))
991*1419430cSLiam R. Howlett 		goto prealloc_fail;
9920503ea8fSLiam R. Howlett 
9930503ea8fSLiam R. Howlett 	init_multi_vma_prep(&vp, vma, adjust, remove, remove2);
9940503ea8fSLiam R. Howlett 	VM_WARN_ON(vp.anon_vma && adjust && adjust->anon_vma &&
9950503ea8fSLiam R. Howlett 		   vp.anon_vma != adjust->anon_vma);
9960503ea8fSLiam R. Howlett 
9970503ea8fSLiam R. Howlett 	vma_prepare(&vp);
998ccf1d78dSSuren Baghdasaryan 	vma_adjust_trans_huge(vma, vma_start, vma_end, adj_start);
9990503ea8fSLiam R. Howlett 
10000503ea8fSLiam R. Howlett 	vma->vm_start = vma_start;
10010503ea8fSLiam R. Howlett 	vma->vm_end = vma_end;
10020503ea8fSLiam R. Howlett 	vma->vm_pgoff = vma_pgoff;
10030503ea8fSLiam R. Howlett 
10040503ea8fSLiam R. Howlett 	if (vma_expanded)
10050503ea8fSLiam R. Howlett 		vma_iter_store(vmi, vma);
10060503ea8fSLiam R. Howlett 
10071e76454fSVlastimil Babka 	if (adj_start) {
10081e76454fSVlastimil Babka 		adjust->vm_start += adj_start;
10091e76454fSVlastimil Babka 		adjust->vm_pgoff += adj_start >> PAGE_SHIFT;
10101e76454fSVlastimil Babka 		if (adj_start < 0) {
10110503ea8fSLiam R. Howlett 			WARN_ON(vma_expanded);
10120503ea8fSLiam R. Howlett 			vma_iter_store(vmi, next);
10130503ea8fSLiam R. Howlett 		}
10140503ea8fSLiam R. Howlett 	}
10150503ea8fSLiam R. Howlett 
10160503ea8fSLiam R. Howlett 	vma_complete(&vp, vmi, mm);
1017eef19944SJakub Matěna 	khugepaged_enter_vma(res, vm_flags);
10189760ebffSLiam R. Howlett 	return res;
1019*1419430cSLiam R. Howlett 
1020*1419430cSLiam R. Howlett prealloc_fail:
1021*1419430cSLiam R. Howlett anon_vma_fail:
1022*1419430cSLiam R. Howlett 	vma_iter_set(vmi, addr);
1023*1419430cSLiam R. Howlett 	vma_iter_load(vmi);
1024*1419430cSLiam R. Howlett 	return NULL;
1025f2ebfe43SLiam R. Howlett }
1026f2ebfe43SLiam R. Howlett 
10271da177e4SLinus Torvalds /*
1028b4f315b4SEthon Paul  * Rough compatibility check to quickly see if it's even worth looking
1029d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
1030d0e9fe17SLinus Torvalds  *
1031d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
1032d0e9fe17SLinus Torvalds  * in things that mprotect may change.
1033d0e9fe17SLinus Torvalds  *
1034d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1035d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
1036d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
1037d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
1038d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
1039d0e9fe17SLinus Torvalds  */
1040d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1041d0e9fe17SLinus Torvalds {
1042d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
1043d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
1044d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
10456cb4d9a2SAnshuman Khandual 		!((a->vm_flags ^ b->vm_flags) & ~(VM_ACCESS_FLAGS | VM_SOFTDIRTY)) &&
1046d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1047d0e9fe17SLinus Torvalds }
1048d0e9fe17SLinus Torvalds 
1049d0e9fe17SLinus Torvalds /*
1050d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
1051d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1052d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
1053d0e9fe17SLinus Torvalds  * to share the anon_vma.
1054d0e9fe17SLinus Torvalds  *
10555b449489SFlorian Rommel  * NOTE! This runs with mmap_lock held for reading, so it is possible that
1056d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
1057d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
1058d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
1059d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
10604db0c3c2SJason Low  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1061d0e9fe17SLinus Torvalds  *
1062d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1063d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1064d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
1065d0e9fe17SLinus Torvalds  * a fork).
1066d0e9fe17SLinus Torvalds  *
1067d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
1068d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
10695b449489SFlorian Rommel  * a read lock on the mmap_lock.
1070d0e9fe17SLinus Torvalds  */
1071d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1072d0e9fe17SLinus Torvalds {
1073d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
10744db0c3c2SJason Low 		struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1075d0e9fe17SLinus Torvalds 
1076d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
1077d0e9fe17SLinus Torvalds 			return anon_vma;
1078d0e9fe17SLinus Torvalds 	}
1079d0e9fe17SLinus Torvalds 	return NULL;
1080d0e9fe17SLinus Torvalds }
1081d0e9fe17SLinus Torvalds 
1082d0e9fe17SLinus Torvalds /*
10831da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
10841da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
10851da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
10861da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
10871da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
10881da177e4SLinus Torvalds  * mprotect.
10891da177e4SLinus Torvalds  */
10901da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
10911da177e4SLinus Torvalds {
1092763ecb03SLiam R. Howlett 	MA_STATE(mas, &vma->vm_mm->mm_mt, vma->vm_end, vma->vm_end);
1093a67c8caaSMiaohe Lin 	struct anon_vma *anon_vma = NULL;
1094763ecb03SLiam R. Howlett 	struct vm_area_struct *prev, *next;
10951da177e4SLinus Torvalds 
1096a67c8caaSMiaohe Lin 	/* Try next first. */
1097763ecb03SLiam R. Howlett 	next = mas_walk(&mas);
1098763ecb03SLiam R. Howlett 	if (next) {
1099763ecb03SLiam R. Howlett 		anon_vma = reusable_anon_vma(next, vma, next);
1100d0e9fe17SLinus Torvalds 		if (anon_vma)
1101d0e9fe17SLinus Torvalds 			return anon_vma;
1102a67c8caaSMiaohe Lin 	}
11031da177e4SLinus Torvalds 
1104763ecb03SLiam R. Howlett 	prev = mas_prev(&mas, 0);
1105763ecb03SLiam R. Howlett 	VM_BUG_ON_VMA(prev != vma, vma);
1106763ecb03SLiam R. Howlett 	prev = mas_prev(&mas, 0);
1107a67c8caaSMiaohe Lin 	/* Try prev next. */
1108763ecb03SLiam R. Howlett 	if (prev)
1109763ecb03SLiam R. Howlett 		anon_vma = reusable_anon_vma(prev, prev, vma);
1110a67c8caaSMiaohe Lin 
11111da177e4SLinus Torvalds 	/*
1112a67c8caaSMiaohe Lin 	 * We might reach here with anon_vma == NULL if we can't find
1113a67c8caaSMiaohe Lin 	 * any reusable anon_vma.
11141da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
11151da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
11161da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
11171da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
11181da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
11191da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
11201da177e4SLinus Torvalds 	 */
1121a67c8caaSMiaohe Lin 	return anon_vma;
11221da177e4SLinus Torvalds }
11231da177e4SLinus Torvalds 
11241da177e4SLinus Torvalds /*
112540401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
112640401530SAl Viro  * low as possible but still greater than mmap_min_addr
112740401530SAl Viro  */
112840401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
112940401530SAl Viro {
113040401530SAl Viro 	hint &= PAGE_MASK;
113140401530SAl Viro 	if (((void *)hint != NULL) &&
113240401530SAl Viro 	    (hint < mmap_min_addr))
113340401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
113440401530SAl Viro 	return hint;
113540401530SAl Viro }
113640401530SAl Viro 
1137b0cc5e89SAndrew Morton bool mlock_future_ok(struct mm_struct *mm, unsigned long flags,
11383c54a298SLorenzo Stoakes 			unsigned long bytes)
1139363ee17fSDavidlohr Bueso {
11403c54a298SLorenzo Stoakes 	unsigned long locked_pages, limit_pages;
1141363ee17fSDavidlohr Bueso 
11423c54a298SLorenzo Stoakes 	if (!(flags & VM_LOCKED) || capable(CAP_IPC_LOCK))
11433c54a298SLorenzo Stoakes 		return true;
11443c54a298SLorenzo Stoakes 
11453c54a298SLorenzo Stoakes 	locked_pages = bytes >> PAGE_SHIFT;
11463c54a298SLorenzo Stoakes 	locked_pages += mm->locked_vm;
11473c54a298SLorenzo Stoakes 
11483c54a298SLorenzo Stoakes 	limit_pages = rlimit(RLIMIT_MEMLOCK);
11493c54a298SLorenzo Stoakes 	limit_pages >>= PAGE_SHIFT;
11503c54a298SLorenzo Stoakes 
11513c54a298SLorenzo Stoakes 	return locked_pages <= limit_pages;
1152363ee17fSDavidlohr Bueso }
1153363ee17fSDavidlohr Bueso 
1154be83bbf8SLinus Torvalds static inline u64 file_mmap_size_max(struct file *file, struct inode *inode)
1155be83bbf8SLinus Torvalds {
1156be83bbf8SLinus Torvalds 	if (S_ISREG(inode->i_mode))
1157423913adSLinus Torvalds 		return MAX_LFS_FILESIZE;
1158be83bbf8SLinus Torvalds 
1159be83bbf8SLinus Torvalds 	if (S_ISBLK(inode->i_mode))
1160be83bbf8SLinus Torvalds 		return MAX_LFS_FILESIZE;
1161be83bbf8SLinus Torvalds 
116276f34950SIvan Khoronzhuk 	if (S_ISSOCK(inode->i_mode))
116376f34950SIvan Khoronzhuk 		return MAX_LFS_FILESIZE;
116476f34950SIvan Khoronzhuk 
1165be83bbf8SLinus Torvalds 	/* Special "we do even unsigned file positions" case */
1166be83bbf8SLinus Torvalds 	if (file->f_mode & FMODE_UNSIGNED_OFFSET)
1167be83bbf8SLinus Torvalds 		return 0;
1168be83bbf8SLinus Torvalds 
1169be83bbf8SLinus Torvalds 	/* Yes, random drivers might want more. But I'm tired of buggy drivers */
1170be83bbf8SLinus Torvalds 	return ULONG_MAX;
1171be83bbf8SLinus Torvalds }
1172be83bbf8SLinus Torvalds 
1173be83bbf8SLinus Torvalds static inline bool file_mmap_ok(struct file *file, struct inode *inode,
1174be83bbf8SLinus Torvalds 				unsigned long pgoff, unsigned long len)
1175be83bbf8SLinus Torvalds {
1176be83bbf8SLinus Torvalds 	u64 maxsize = file_mmap_size_max(file, inode);
1177be83bbf8SLinus Torvalds 
1178be83bbf8SLinus Torvalds 	if (maxsize && len > maxsize)
1179be83bbf8SLinus Torvalds 		return false;
1180be83bbf8SLinus Torvalds 	maxsize -= len;
1181be83bbf8SLinus Torvalds 	if (pgoff > maxsize >> PAGE_SHIFT)
1182be83bbf8SLinus Torvalds 		return false;
1183be83bbf8SLinus Torvalds 	return true;
1184be83bbf8SLinus Torvalds }
1185be83bbf8SLinus Torvalds 
118640401530SAl Viro /*
11873e4e28c5SMichel Lespinasse  * The caller must write-lock current->mm->mmap_lock.
11881da177e4SLinus Torvalds  */
11891fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr,
11901da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
1191592b5fadSYu-cheng Yu 			unsigned long flags, vm_flags_t vm_flags,
1192592b5fadSYu-cheng Yu 			unsigned long pgoff, unsigned long *populate,
1193592b5fadSYu-cheng Yu 			struct list_head *uf)
11941da177e4SLinus Torvalds {
11951da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
119662b5f7d0SDave Hansen 	int pkey = 0;
11971da177e4SLinus Torvalds 
119841badc15SMichel Lespinasse 	*populate = 0;
1199bebeb3d6SMichel Lespinasse 
1200e37609bbSPiotr Kwapulinski 	if (!len)
1201e37609bbSPiotr Kwapulinski 		return -EINVAL;
1202e37609bbSPiotr Kwapulinski 
12031da177e4SLinus Torvalds 	/*
12041da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
12051da177e4SLinus Torvalds 	 *
12061da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
12071da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
12081da177e4SLinus Torvalds 	 */
12091da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
121090f8572bSEric W. Biederman 		if (!(file && path_noexec(&file->f_path)))
12111da177e4SLinus Torvalds 			prot |= PROT_EXEC;
12121da177e4SLinus Torvalds 
1213a4ff8e86SMichal Hocko 	/* force arch specific MAP_FIXED handling in get_unmapped_area */
1214a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE)
1215a4ff8e86SMichal Hocko 		flags |= MAP_FIXED;
1216a4ff8e86SMichal Hocko 
12177cd94146SEric Paris 	if (!(flags & MAP_FIXED))
12187cd94146SEric Paris 		addr = round_hint_to_min(addr);
12197cd94146SEric Paris 
12201da177e4SLinus Torvalds 	/* Careful about overflows.. */
12211da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
12229206de95SAl Viro 	if (!len)
12231da177e4SLinus Torvalds 		return -ENOMEM;
12241da177e4SLinus Torvalds 
12251da177e4SLinus Torvalds 	/* offset overflow? */
12261da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
12271da177e4SLinus Torvalds 		return -EOVERFLOW;
12281da177e4SLinus Torvalds 
12291da177e4SLinus Torvalds 	/* Too many mappings? */
12301da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
12311da177e4SLinus Torvalds 		return -ENOMEM;
12321da177e4SLinus Torvalds 
12331da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
12341da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
12351da177e4SLinus Torvalds 	 */
12361da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
1237ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(addr))
12381da177e4SLinus Torvalds 		return addr;
12391da177e4SLinus Torvalds 
1240a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE) {
124135e43c5fSLiam Howlett 		if (find_vma_intersection(mm, addr, addr + len))
1242a4ff8e86SMichal Hocko 			return -EEXIST;
1243a4ff8e86SMichal Hocko 	}
1244a4ff8e86SMichal Hocko 
124562b5f7d0SDave Hansen 	if (prot == PROT_EXEC) {
124662b5f7d0SDave Hansen 		pkey = execute_only_pkey(mm);
124762b5f7d0SDave Hansen 		if (pkey < 0)
124862b5f7d0SDave Hansen 			pkey = 0;
124962b5f7d0SDave Hansen 	}
125062b5f7d0SDave Hansen 
12511da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
12521da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
12531da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
12541da177e4SLinus Torvalds 	 */
1255592b5fadSYu-cheng Yu 	vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
12561da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
12571da177e4SLinus Torvalds 
1258cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
12591da177e4SLinus Torvalds 		if (!can_do_mlock())
12601da177e4SLinus Torvalds 			return -EPERM;
1261ba470de4SRik van Riel 
1262b0cc5e89SAndrew Morton 	if (!mlock_future_ok(mm, vm_flags, len))
12631da177e4SLinus Torvalds 		return -EAGAIN;
12641da177e4SLinus Torvalds 
12651da177e4SLinus Torvalds 	if (file) {
1266077bf22bSOleg Nesterov 		struct inode *inode = file_inode(file);
12671c972597SDan Williams 		unsigned long flags_mask;
12681c972597SDan Williams 
1269be83bbf8SLinus Torvalds 		if (!file_mmap_ok(file, inode, pgoff, len))
1270be83bbf8SLinus Torvalds 			return -EOVERFLOW;
1271be83bbf8SLinus Torvalds 
12721c972597SDan Williams 		flags_mask = LEGACY_MAP_MASK | file->f_op->mmap_supported_flags;
1273077bf22bSOleg Nesterov 
12741da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
12751da177e4SLinus Torvalds 		case MAP_SHARED:
12761c972597SDan Williams 			/*
12771c972597SDan Williams 			 * Force use of MAP_SHARED_VALIDATE with non-legacy
12781c972597SDan Williams 			 * flags. E.g. MAP_SYNC is dangerous to use with
12791c972597SDan Williams 			 * MAP_SHARED as you don't know which consistency model
12801c972597SDan Williams 			 * you will get. We silently ignore unsupported flags
12811c972597SDan Williams 			 * with MAP_SHARED to preserve backward compatibility.
12821c972597SDan Williams 			 */
12831c972597SDan Williams 			flags &= LEGACY_MAP_MASK;
1284e4a9bc58SJoe Perches 			fallthrough;
12851c972597SDan Williams 		case MAP_SHARED_VALIDATE:
12861c972597SDan Williams 			if (flags & ~flags_mask)
12871c972597SDan Williams 				return -EOPNOTSUPP;
1288dc617f29SDarrick J. Wong 			if (prot & PROT_WRITE) {
1289dc617f29SDarrick J. Wong 				if (!(file->f_mode & FMODE_WRITE))
12901da177e4SLinus Torvalds 					return -EACCES;
1291dc617f29SDarrick J. Wong 				if (IS_SWAPFILE(file->f_mapping->host))
1292dc617f29SDarrick J. Wong 					return -ETXTBSY;
1293dc617f29SDarrick J. Wong 			}
12941da177e4SLinus Torvalds 
12951da177e4SLinus Torvalds 			/*
12961da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
12971da177e4SLinus Torvalds 			 * file..
12981da177e4SLinus Torvalds 			 */
12991da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
13001da177e4SLinus Torvalds 				return -EACCES;
13011da177e4SLinus Torvalds 
13021da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
13031da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
13041da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1305e4a9bc58SJoe Perches 			fallthrough;
13061da177e4SLinus Torvalds 		case MAP_PRIVATE:
13071da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
13081da177e4SLinus Torvalds 				return -EACCES;
130990f8572bSEric W. Biederman 			if (path_noexec(&file->f_path)) {
131080c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
131180c5606cSLinus Torvalds 					return -EPERM;
131280c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
131380c5606cSLinus Torvalds 			}
131480c5606cSLinus Torvalds 
131572c2d531SAl Viro 			if (!file->f_op->mmap)
131680c5606cSLinus Torvalds 				return -ENODEV;
1317b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1318b2c56e4fSOleg Nesterov 				return -EINVAL;
13191da177e4SLinus Torvalds 			break;
13201da177e4SLinus Torvalds 
13211da177e4SLinus Torvalds 		default:
13221da177e4SLinus Torvalds 			return -EINVAL;
13231da177e4SLinus Torvalds 		}
13241da177e4SLinus Torvalds 	} else {
13251da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
13261da177e4SLinus Torvalds 		case MAP_SHARED:
1327b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1328b2c56e4fSOleg Nesterov 				return -EINVAL;
1329ce363942STejun Heo 			/*
1330ce363942STejun Heo 			 * Ignore pgoff.
1331ce363942STejun Heo 			 */
1332ce363942STejun Heo 			pgoff = 0;
13331da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
13341da177e4SLinus Torvalds 			break;
13351da177e4SLinus Torvalds 		case MAP_PRIVATE:
13361da177e4SLinus Torvalds 			/*
13371da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
13381da177e4SLinus Torvalds 			 */
13391da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
13401da177e4SLinus Torvalds 			break;
13411da177e4SLinus Torvalds 		default:
13421da177e4SLinus Torvalds 			return -EINVAL;
13431da177e4SLinus Torvalds 		}
13441da177e4SLinus Torvalds 	}
13451da177e4SLinus Torvalds 
1346c22c0d63SMichel Lespinasse 	/*
1347c22c0d63SMichel Lespinasse 	 * Set 'VM_NORESERVE' if we should not account for the
1348c22c0d63SMichel Lespinasse 	 * memory use of this mapping.
1349c22c0d63SMichel Lespinasse 	 */
1350c22c0d63SMichel Lespinasse 	if (flags & MAP_NORESERVE) {
1351c22c0d63SMichel Lespinasse 		/* We honor MAP_NORESERVE if allowed to overcommit */
1352c22c0d63SMichel Lespinasse 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1353c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1354c22c0d63SMichel Lespinasse 
1355c22c0d63SMichel Lespinasse 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
1356c22c0d63SMichel Lespinasse 		if (file && is_file_hugepages(file))
1357c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1358c22c0d63SMichel Lespinasse 	}
1359c22c0d63SMichel Lespinasse 
1360897ab3e0SMike Rapoport 	addr = mmap_region(file, addr, len, vm_flags, pgoff, uf);
136109a9f1d2SMichel Lespinasse 	if (!IS_ERR_VALUE(addr) &&
136209a9f1d2SMichel Lespinasse 	    ((vm_flags & VM_LOCKED) ||
136309a9f1d2SMichel Lespinasse 	     (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
136441badc15SMichel Lespinasse 		*populate = len;
1365bebeb3d6SMichel Lespinasse 	return addr;
13660165ab44SMiklos Szeredi }
13676be5ceb0SLinus Torvalds 
1368a90f590aSDominik Brodowski unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
1369a90f590aSDominik Brodowski 			      unsigned long prot, unsigned long flags,
1370a90f590aSDominik Brodowski 			      unsigned long fd, unsigned long pgoff)
137166f0dc48SHugh Dickins {
137266f0dc48SHugh Dickins 	struct file *file = NULL;
13731e3ee14bSChen Gang 	unsigned long retval;
137466f0dc48SHugh Dickins 
137566f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1376120a795dSAl Viro 		audit_mmap_fd(fd, flags);
137766f0dc48SHugh Dickins 		file = fget(fd);
137866f0dc48SHugh Dickins 		if (!file)
13791e3ee14bSChen Gang 			return -EBADF;
13807bba8f0eSZhen Lei 		if (is_file_hugepages(file)) {
1381af73e4d9SNaoya Horiguchi 			len = ALIGN(len, huge_page_size(hstate_file(file)));
13827bba8f0eSZhen Lei 		} else if (unlikely(flags & MAP_HUGETLB)) {
1383493af578SJörn Engel 			retval = -EINVAL;
1384493af578SJörn Engel 			goto out_fput;
13857bba8f0eSZhen Lei 		}
138666f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
1387c103a4dcSAndrew Morton 		struct hstate *hs;
1388af73e4d9SNaoya Horiguchi 
138920ac2893SAnshuman Khandual 		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
1390091d0d55SLi Zefan 		if (!hs)
1391091d0d55SLi Zefan 			return -EINVAL;
1392091d0d55SLi Zefan 
1393091d0d55SLi Zefan 		len = ALIGN(len, huge_page_size(hs));
139466f0dc48SHugh Dickins 		/*
139566f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
139666f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
139766f0dc48SHugh Dickins 		 */
1398af73e4d9SNaoya Horiguchi 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
139942d7395fSAndi Kleen 				VM_NORESERVE,
140083c1fd76Szhangyiru 				HUGETLB_ANONHUGE_INODE,
140142d7395fSAndi Kleen 				(flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
140266f0dc48SHugh Dickins 		if (IS_ERR(file))
140366f0dc48SHugh Dickins 			return PTR_ERR(file);
140466f0dc48SHugh Dickins 	}
140566f0dc48SHugh Dickins 
14069fbeb5abSMichal Hocko 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1407493af578SJörn Engel out_fput:
140866f0dc48SHugh Dickins 	if (file)
140966f0dc48SHugh Dickins 		fput(file);
141066f0dc48SHugh Dickins 	return retval;
141166f0dc48SHugh Dickins }
141266f0dc48SHugh Dickins 
1413a90f590aSDominik Brodowski SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1414a90f590aSDominik Brodowski 		unsigned long, prot, unsigned long, flags,
1415a90f590aSDominik Brodowski 		unsigned long, fd, unsigned long, pgoff)
1416a90f590aSDominik Brodowski {
1417a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
1418a90f590aSDominik Brodowski }
1419a90f590aSDominik Brodowski 
1420a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1421a4679373SChristoph Hellwig struct mmap_arg_struct {
1422a4679373SChristoph Hellwig 	unsigned long addr;
1423a4679373SChristoph Hellwig 	unsigned long len;
1424a4679373SChristoph Hellwig 	unsigned long prot;
1425a4679373SChristoph Hellwig 	unsigned long flags;
1426a4679373SChristoph Hellwig 	unsigned long fd;
1427a4679373SChristoph Hellwig 	unsigned long offset;
1428a4679373SChristoph Hellwig };
1429a4679373SChristoph Hellwig 
1430a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1431a4679373SChristoph Hellwig {
1432a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1433a4679373SChristoph Hellwig 
1434a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1435a4679373SChristoph Hellwig 		return -EFAULT;
1436de1741a1SAlexander Kuleshov 	if (offset_in_page(a.offset))
1437a4679373SChristoph Hellwig 		return -EINVAL;
1438a4679373SChristoph Hellwig 
1439a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1440a4679373SChristoph Hellwig 			       a.offset >> PAGE_SHIFT);
1441a4679373SChristoph Hellwig }
1442a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1443a4679373SChristoph Hellwig 
144454cbbbf3SLorenzo Stoakes static bool vm_ops_needs_writenotify(const struct vm_operations_struct *vm_ops)
144554cbbbf3SLorenzo Stoakes {
144654cbbbf3SLorenzo Stoakes 	return vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite);
144754cbbbf3SLorenzo Stoakes }
144854cbbbf3SLorenzo Stoakes 
144954cbbbf3SLorenzo Stoakes static bool vma_is_shared_writable(struct vm_area_struct *vma)
145054cbbbf3SLorenzo Stoakes {
145154cbbbf3SLorenzo Stoakes 	return (vma->vm_flags & (VM_WRITE | VM_SHARED)) ==
145254cbbbf3SLorenzo Stoakes 		(VM_WRITE | VM_SHARED);
145354cbbbf3SLorenzo Stoakes }
145454cbbbf3SLorenzo Stoakes 
145554cbbbf3SLorenzo Stoakes static bool vma_fs_can_writeback(struct vm_area_struct *vma)
145654cbbbf3SLorenzo Stoakes {
145754cbbbf3SLorenzo Stoakes 	/* No managed pages to writeback. */
145854cbbbf3SLorenzo Stoakes 	if (vma->vm_flags & VM_PFNMAP)
145954cbbbf3SLorenzo Stoakes 		return false;
146054cbbbf3SLorenzo Stoakes 
146154cbbbf3SLorenzo Stoakes 	return vma->vm_file && vma->vm_file->f_mapping &&
146254cbbbf3SLorenzo Stoakes 		mapping_can_writeback(vma->vm_file->f_mapping);
146354cbbbf3SLorenzo Stoakes }
146454cbbbf3SLorenzo Stoakes 
146554cbbbf3SLorenzo Stoakes /*
146654cbbbf3SLorenzo Stoakes  * Does this VMA require the underlying folios to have their dirty state
146754cbbbf3SLorenzo Stoakes  * tracked?
146854cbbbf3SLorenzo Stoakes  */
146954cbbbf3SLorenzo Stoakes bool vma_needs_dirty_tracking(struct vm_area_struct *vma)
147054cbbbf3SLorenzo Stoakes {
147154cbbbf3SLorenzo Stoakes 	/* Only shared, writable VMAs require dirty tracking. */
147254cbbbf3SLorenzo Stoakes 	if (!vma_is_shared_writable(vma))
147354cbbbf3SLorenzo Stoakes 		return false;
147454cbbbf3SLorenzo Stoakes 
147554cbbbf3SLorenzo Stoakes 	/* Does the filesystem need to be notified? */
147654cbbbf3SLorenzo Stoakes 	if (vm_ops_needs_writenotify(vma->vm_ops))
147754cbbbf3SLorenzo Stoakes 		return true;
147854cbbbf3SLorenzo Stoakes 
147954cbbbf3SLorenzo Stoakes 	/*
148054cbbbf3SLorenzo Stoakes 	 * Even if the filesystem doesn't indicate a need for writenotify, if it
148154cbbbf3SLorenzo Stoakes 	 * can writeback, dirty tracking is still required.
148254cbbbf3SLorenzo Stoakes 	 */
148354cbbbf3SLorenzo Stoakes 	return vma_fs_can_writeback(vma);
148454cbbbf3SLorenzo Stoakes }
148554cbbbf3SLorenzo Stoakes 
14864e950f6fSAlexey Dobriyan /*
14878bb4e7a2SWei Yang  * Some shared mappings will want the pages marked read-only
14884e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
14894e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
14904e950f6fSAlexey Dobriyan  * VM_SHARED bit).
14914e950f6fSAlexey Dobriyan  */
14926d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
14934e950f6fSAlexey Dobriyan {
14944e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
149554cbbbf3SLorenzo Stoakes 	if (!vma_is_shared_writable(vma))
14964e950f6fSAlexey Dobriyan 		return 0;
14974e950f6fSAlexey Dobriyan 
14984e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
149954cbbbf3SLorenzo Stoakes 	if (vm_ops_needs_writenotify(vma->vm_ops))
15004e950f6fSAlexey Dobriyan 		return 1;
15014e950f6fSAlexey Dobriyan 
150264e45507SPeter Feiner 	/* The open routine did something to the protections that pgprot_modify
150364e45507SPeter Feiner 	 * won't preserve? */
15046d2329f8SAndrea Arcangeli 	if (pgprot_val(vm_page_prot) !=
150554cbbbf3SLorenzo Stoakes 	    pgprot_val(vm_pgprot_modify(vm_page_prot, vma->vm_flags)))
15064e950f6fSAlexey Dobriyan 		return 0;
15074e950f6fSAlexey Dobriyan 
1508f96f7a40SDavid Hildenbrand 	/*
1509f96f7a40SDavid Hildenbrand 	 * Do we need to track softdirty? hugetlb does not support softdirty
1510f96f7a40SDavid Hildenbrand 	 * tracking yet.
1511f96f7a40SDavid Hildenbrand 	 */
1512f96f7a40SDavid Hildenbrand 	if (vma_soft_dirty_enabled(vma) && !is_vm_hugetlb_page(vma))
151364e45507SPeter Feiner 		return 1;
151464e45507SPeter Feiner 
151551d3d5ebSDavid Hildenbrand 	/* Do we need write faults for uffd-wp tracking? */
151651d3d5ebSDavid Hildenbrand 	if (userfaultfd_wp(vma))
151751d3d5ebSDavid Hildenbrand 		return 1;
151851d3d5ebSDavid Hildenbrand 
15194e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
152054cbbbf3SLorenzo Stoakes 	return vma_fs_can_writeback(vma);
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);
15730266e7c5SRick Edgecombe 	if (tmp && (tmp->vm_flags & VM_STARTGAP_FLAGS)) { /* 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);
16250266e7c5SRick Edgecombe 	if (tmp && (tmp->vm_flags & VM_STARTGAP_FLAGS)) { /* 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 */
1914b0cc5e89SAndrew Morton 	if (!mlock_future_ok(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  */
19388d7071afSLinus Torvalds static 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;
1944b5df0922SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, vma->vm_start, address);
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 
1969b5df0922SLiam R. Howlett 	if (next)
1970b5df0922SLiam R. Howlett 		mas_prev_range(&mas, address);
1971b5df0922SLiam R. Howlett 
1972b5df0922SLiam R. Howlett 	__mas_set_range(&mas, vma->vm_start, address - 1);
1973da089254SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
19741da177e4SLinus Torvalds 		return -ENOMEM;
19751da177e4SLinus Torvalds 
1976d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
1977d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
1978d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
1979d4af56c5SLiam R. Howlett 		return -ENOMEM;
1980d4af56c5SLiam R. Howlett 	}
1981d4af56c5SLiam R. Howlett 
1982c137381fSSuren Baghdasaryan 	/* Lock the VMA before expanding to prevent concurrent page faults */
1983c137381fSSuren Baghdasaryan 	vma_start_write(vma);
19841da177e4SLinus Torvalds 	/*
19851da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
1986c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
19871da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
19881da177e4SLinus Torvalds 	 */
198912352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
19901da177e4SLinus Torvalds 
19911da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
19921da177e4SLinus Torvalds 	if (address > vma->vm_end) {
19931da177e4SLinus Torvalds 		unsigned long size, grow;
19941da177e4SLinus Torvalds 
19951da177e4SLinus Torvalds 		size = address - vma->vm_start;
19961da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
19971da177e4SLinus Torvalds 
199842c36f63SHugh Dickins 		error = -ENOMEM;
199942c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
20001da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
20013af9e859SEric B Munson 			if (!error) {
20024128997bSMichel Lespinasse 				/*
2003524e00b3SLiam R. Howlett 				 * We only hold a shared mmap_lock lock here, so
2004524e00b3SLiam R. Howlett 				 * we need to protect against concurrent vma
2005524e00b3SLiam R. Howlett 				 * expansions.  anon_vma_lock_write() doesn't
2006524e00b3SLiam R. Howlett 				 * help here, as we don't guarantee that all
2007524e00b3SLiam R. Howlett 				 * growable vmas in a mm share the same root
2008524e00b3SLiam R. Howlett 				 * anon vma.  So, we reuse mm->page_table_lock
2009524e00b3SLiam R. Howlett 				 * to guard against concurrent vma expansions.
20104128997bSMichel Lespinasse 				 */
201109357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
201287e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
201309357814SOleg Nesterov 					mm->locked_vm += grow;
201484638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2015bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
20161da177e4SLinus Torvalds 				vma->vm_end = address;
2017d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2018fbcc3104SLiam R. Howlett 				mas_store_prealloc(&mas, vma);
2019bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
202009357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
20214128997bSMichel Lespinasse 
20223af9e859SEric B Munson 				perf_event_mmap(vma);
20233af9e859SEric B Munson 			}
20241da177e4SLinus Torvalds 		}
202542c36f63SHugh Dickins 	}
202612352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2027c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
2028d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
20292574d5e4SLiam R. Howlett 	validate_mm(mm);
20301da177e4SLinus Torvalds 	return error;
20311da177e4SLinus Torvalds }
203246dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
203346dea3d0SHugh Dickins 
20341da177e4SLinus Torvalds /*
20351da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
20368d7071afSLinus Torvalds  * mmap_lock held for writing.
20371da177e4SLinus Torvalds  */
2038524e00b3SLiam R. Howlett int expand_downwards(struct vm_area_struct *vma, unsigned long address)
20391da177e4SLinus Torvalds {
204009357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
2041763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, vma->vm_start, vma->vm_start);
20421be7107fSHugh Dickins 	struct vm_area_struct *prev;
20430a1d5299SJann Horn 	int error = 0;
20441da177e4SLinus Torvalds 
20458d7071afSLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
20468d7071afSLinus Torvalds 		return -EFAULT;
20478d7071afSLinus Torvalds 
20488869477aSEric Paris 	address &= PAGE_MASK;
20498b35ca3eSBen Hutchings 	if (address < mmap_min_addr || address < FIRST_USER_ADDRESS)
20500a1d5299SJann Horn 		return -EPERM;
20518869477aSEric Paris 
20521be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
2053763ecb03SLiam R. Howlett 	prev = mas_prev(&mas, 0);
20541be7107fSHugh Dickins 	/* Check that both stack segments have the same anon_vma? */
2055f440fa1aSLiam R. Howlett 	if (prev) {
2056f440fa1aSLiam R. Howlett 		if (!(prev->vm_flags & VM_GROWSDOWN) &&
2057f440fa1aSLiam R. Howlett 		    vma_is_accessible(prev) &&
2058f440fa1aSLiam R. Howlett 		    (address - prev->vm_end < stack_guard_gap))
205932e4e6d5SOleg Nesterov 			return -ENOMEM;
20601be7107fSHugh Dickins 	}
20611be7107fSHugh Dickins 
2062b5df0922SLiam R. Howlett 	if (prev)
2063b5df0922SLiam R. Howlett 		mas_next_range(&mas, vma->vm_start);
2064b5df0922SLiam R. Howlett 
2065b5df0922SLiam R. Howlett 	__mas_set_range(&mas, address, vma->vm_end - 1);
2066da089254SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
206712352d3cSKonstantin Khlebnikov 		return -ENOMEM;
20681da177e4SLinus Torvalds 
2069d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
2070d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
2071d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
2072d4af56c5SLiam R. Howlett 		return -ENOMEM;
2073d4af56c5SLiam R. Howlett 	}
2074d4af56c5SLiam R. Howlett 
2075c137381fSSuren Baghdasaryan 	/* Lock the VMA before expanding to prevent concurrent page faults */
2076c137381fSSuren Baghdasaryan 	vma_start_write(vma);
20771da177e4SLinus Torvalds 	/*
20781da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2079c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
20801da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
20811da177e4SLinus Torvalds 	 */
208212352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
20831da177e4SLinus Torvalds 
20841da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
20851da177e4SLinus Torvalds 	if (address < vma->vm_start) {
20861da177e4SLinus Torvalds 		unsigned long size, grow;
20871da177e4SLinus Torvalds 
20881da177e4SLinus Torvalds 		size = vma->vm_end - address;
20891da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
20901da177e4SLinus Torvalds 
2091a626ca6aSLinus Torvalds 		error = -ENOMEM;
2092a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
20931da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
20941da177e4SLinus Torvalds 			if (!error) {
20954128997bSMichel Lespinasse 				/*
2096524e00b3SLiam R. Howlett 				 * We only hold a shared mmap_lock lock here, so
2097524e00b3SLiam R. Howlett 				 * we need to protect against concurrent vma
2098524e00b3SLiam R. Howlett 				 * expansions.  anon_vma_lock_write() doesn't
2099524e00b3SLiam R. Howlett 				 * help here, as we don't guarantee that all
2100524e00b3SLiam R. Howlett 				 * growable vmas in a mm share the same root
2101524e00b3SLiam R. Howlett 				 * anon vma.  So, we reuse mm->page_table_lock
2102524e00b3SLiam R. Howlett 				 * to guard against concurrent vma expansions.
21034128997bSMichel Lespinasse 				 */
210409357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
210587e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
210609357814SOleg Nesterov 					mm->locked_vm += grow;
210784638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2108bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
21091da177e4SLinus Torvalds 				vma->vm_start = address;
21101da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
2111d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2112fbcc3104SLiam R. Howlett 				mas_store_prealloc(&mas, vma);
2113bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
211409357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
21154128997bSMichel Lespinasse 
21163af9e859SEric B Munson 				perf_event_mmap(vma);
21171da177e4SLinus Torvalds 			}
21181da177e4SLinus Torvalds 		}
2119a626ca6aSLinus Torvalds 	}
212012352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2121c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
2122d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
21232574d5e4SLiam R. Howlett 	validate_mm(mm);
21241da177e4SLinus Torvalds 	return error;
21251da177e4SLinus Torvalds }
21261da177e4SLinus Torvalds 
21271be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */
21281be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT;
21291be7107fSHugh Dickins 
21301be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p)
21311be7107fSHugh Dickins {
21321be7107fSHugh Dickins 	unsigned long val;
21331be7107fSHugh Dickins 	char *endptr;
21341be7107fSHugh Dickins 
21351be7107fSHugh Dickins 	val = simple_strtoul(p, &endptr, 10);
21361be7107fSHugh Dickins 	if (!*endptr)
21371be7107fSHugh Dickins 		stack_guard_gap = val << PAGE_SHIFT;
21381be7107fSHugh Dickins 
2139e6d09493SRandy Dunlap 	return 1;
21401be7107fSHugh Dickins }
21411be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap);
21421be7107fSHugh Dickins 
2143b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
21448d7071afSLinus Torvalds int expand_stack_locked(struct vm_area_struct *vma, unsigned long address)
2145b6a2fea3SOllie Wild {
2146b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
2147b6a2fea3SOllie Wild }
2148b6a2fea3SOllie Wild 
21498d7071afSLinus Torvalds struct vm_area_struct *find_extend_vma_locked(struct mm_struct *mm, unsigned long addr)
2150b6a2fea3SOllie Wild {
2151b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
2152b6a2fea3SOllie Wild 
2153b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
2154b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
2155b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
2156b6a2fea3SOllie Wild 		return vma;
2157f440fa1aSLiam R. Howlett 	if (!prev)
2158f440fa1aSLiam R. Howlett 		return NULL;
21598d7071afSLinus Torvalds 	if (expand_stack_locked(prev, addr))
2160b6a2fea3SOllie Wild 		return NULL;
2161cea10a19SMichel Lespinasse 	if (prev->vm_flags & VM_LOCKED)
2162fc05f566SKirill A. Shutemov 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2163b6a2fea3SOllie Wild 	return prev;
2164b6a2fea3SOllie Wild }
2165b6a2fea3SOllie Wild #else
21668d7071afSLinus Torvalds int expand_stack_locked(struct vm_area_struct *vma, unsigned long address)
2167b6a2fea3SOllie Wild {
2168f440fa1aSLiam R. Howlett 	if (unlikely(!(vma->vm_flags & VM_GROWSDOWN)))
2169f440fa1aSLiam R. Howlett 		return -EINVAL;
2170b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
2171b6a2fea3SOllie Wild }
2172b6a2fea3SOllie Wild 
21738d7071afSLinus Torvalds struct vm_area_struct *find_extend_vma_locked(struct mm_struct *mm, unsigned long addr)
21741da177e4SLinus Torvalds {
21751da177e4SLinus Torvalds 	struct vm_area_struct *vma;
21761da177e4SLinus Torvalds 	unsigned long start;
21771da177e4SLinus Torvalds 
21781da177e4SLinus Torvalds 	addr &= PAGE_MASK;
21791da177e4SLinus Torvalds 	vma = find_vma(mm, addr);
21801da177e4SLinus Torvalds 	if (!vma)
21811da177e4SLinus Torvalds 		return NULL;
21821da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
21831da177e4SLinus Torvalds 		return vma;
21841da177e4SLinus Torvalds 	start = vma->vm_start;
21858d7071afSLinus Torvalds 	if (expand_stack_locked(vma, addr))
21861da177e4SLinus Torvalds 		return NULL;
2187cea10a19SMichel Lespinasse 	if (vma->vm_flags & VM_LOCKED)
2188fc05f566SKirill A. Shutemov 		populate_vma_page_range(vma, addr, start, NULL);
21891da177e4SLinus Torvalds 	return vma;
21901da177e4SLinus Torvalds }
21911da177e4SLinus Torvalds #endif
21921da177e4SLinus Torvalds 
21938d7071afSLinus Torvalds /*
21948d7071afSLinus Torvalds  * IA64 has some horrid mapping rules: it can expand both up and down,
21958d7071afSLinus Torvalds  * but with various special rules.
21968d7071afSLinus Torvalds  *
21978d7071afSLinus Torvalds  * We'll get rid of this architecture eventually, so the ugliness is
21988d7071afSLinus Torvalds  * temporary.
21998d7071afSLinus Torvalds  */
22008d7071afSLinus Torvalds #ifdef CONFIG_IA64
22018d7071afSLinus Torvalds static inline bool vma_expand_ok(struct vm_area_struct *vma, unsigned long addr)
2202f440fa1aSLiam R. Howlett {
22038d7071afSLinus Torvalds 	return REGION_NUMBER(addr) == REGION_NUMBER(vma->vm_start) &&
22048d7071afSLinus Torvalds 		REGION_OFFSET(addr) < RGN_MAP_LIMIT;
2205f440fa1aSLiam R. Howlett }
22068d7071afSLinus Torvalds 
22078d7071afSLinus Torvalds /*
22088d7071afSLinus Torvalds  * IA64 stacks grow down, but there's a special register backing store
22098d7071afSLinus Torvalds  * that can grow up. Only sequentially, though, so the new address must
22108d7071afSLinus Torvalds  * match vm_end.
22118d7071afSLinus Torvalds  */
22128d7071afSLinus Torvalds static inline int vma_expand_up(struct vm_area_struct *vma, unsigned long addr)
22138d7071afSLinus Torvalds {
22148d7071afSLinus Torvalds 	if (!vma_expand_ok(vma, addr))
22158d7071afSLinus Torvalds 		return -EFAULT;
22168d7071afSLinus Torvalds 	if (vma->vm_end != (addr & PAGE_MASK))
22178d7071afSLinus Torvalds 		return -EFAULT;
22188d7071afSLinus Torvalds 	return expand_upwards(vma, addr);
22198d7071afSLinus Torvalds }
22208d7071afSLinus Torvalds 
22218d7071afSLinus Torvalds static inline bool vma_expand_down(struct vm_area_struct *vma, unsigned long addr)
22228d7071afSLinus Torvalds {
22238d7071afSLinus Torvalds 	if (!vma_expand_ok(vma, addr))
22248d7071afSLinus Torvalds 		return -EFAULT;
22258d7071afSLinus Torvalds 	return expand_downwards(vma, addr);
22268d7071afSLinus Torvalds }
22278d7071afSLinus Torvalds 
22288d7071afSLinus Torvalds #elif defined(CONFIG_STACK_GROWSUP)
22298d7071afSLinus Torvalds 
22308d7071afSLinus Torvalds #define vma_expand_up(vma,addr) expand_upwards(vma, addr)
22318d7071afSLinus Torvalds #define vma_expand_down(vma, addr) (-EFAULT)
22328d7071afSLinus Torvalds 
22338d7071afSLinus Torvalds #else
22348d7071afSLinus Torvalds 
22358d7071afSLinus Torvalds #define vma_expand_up(vma,addr) (-EFAULT)
22368d7071afSLinus Torvalds #define vma_expand_down(vma, addr) expand_downwards(vma, addr)
22378d7071afSLinus Torvalds 
22388d7071afSLinus Torvalds #endif
22398d7071afSLinus Torvalds 
22408d7071afSLinus Torvalds /*
22418d7071afSLinus Torvalds  * expand_stack(): legacy interface for page faulting. Don't use unless
22428d7071afSLinus Torvalds  * you have to.
22438d7071afSLinus Torvalds  *
22448d7071afSLinus Torvalds  * This is called with the mm locked for reading, drops the lock, takes
22458d7071afSLinus Torvalds  * the lock for writing, tries to look up a vma again, expands it if
22468d7071afSLinus Torvalds  * necessary, and downgrades the lock to reading again.
22478d7071afSLinus Torvalds  *
22488d7071afSLinus Torvalds  * If no vma is found or it can't be expanded, it returns NULL and has
22498d7071afSLinus Torvalds  * dropped the lock.
22508d7071afSLinus Torvalds  */
22518d7071afSLinus Torvalds struct vm_area_struct *expand_stack(struct mm_struct *mm, unsigned long addr)
22528d7071afSLinus Torvalds {
22538d7071afSLinus Torvalds 	struct vm_area_struct *vma, *prev;
22548d7071afSLinus Torvalds 
22558d7071afSLinus Torvalds 	mmap_read_unlock(mm);
22568d7071afSLinus Torvalds 	if (mmap_write_lock_killable(mm))
22578d7071afSLinus Torvalds 		return NULL;
22588d7071afSLinus Torvalds 
22598d7071afSLinus Torvalds 	vma = find_vma_prev(mm, addr, &prev);
22608d7071afSLinus Torvalds 	if (vma && vma->vm_start <= addr)
22618d7071afSLinus Torvalds 		goto success;
22628d7071afSLinus Torvalds 
22638d7071afSLinus Torvalds 	if (prev && !vma_expand_up(prev, addr)) {
22648d7071afSLinus Torvalds 		vma = prev;
22658d7071afSLinus Torvalds 		goto success;
22668d7071afSLinus Torvalds 	}
22678d7071afSLinus Torvalds 
22688d7071afSLinus Torvalds 	if (vma && !vma_expand_down(vma, addr))
22698d7071afSLinus Torvalds 		goto success;
22708d7071afSLinus Torvalds 
22718d7071afSLinus Torvalds 	mmap_write_unlock(mm);
22728d7071afSLinus Torvalds 	return NULL;
22738d7071afSLinus Torvalds 
22748d7071afSLinus Torvalds success:
22758d7071afSLinus Torvalds 	mmap_write_downgrade(mm);
22768d7071afSLinus Torvalds 	return vma;
22778d7071afSLinus Torvalds }
2278e1d6d01aSJesse Barnes 
22792c0b3814SHugh Dickins /*
2280763ecb03SLiam R. Howlett  * Ok - we have the memory areas we should free on a maple tree so release them,
2281763ecb03SLiam R. Howlett  * and do the vma updates.
22821da177e4SLinus Torvalds  *
22832c0b3814SHugh Dickins  * Called with the mm semaphore held.
22841da177e4SLinus Torvalds  */
2285763ecb03SLiam R. Howlett static inline void remove_mt(struct mm_struct *mm, struct ma_state *mas)
22861da177e4SLinus Torvalds {
22874f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
2288763ecb03SLiam R. Howlett 	struct vm_area_struct *vma;
22894f74d2c8SLinus Torvalds 
2290365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
2291365e9c87SHugh Dickins 	update_hiwater_vm(mm);
2292763ecb03SLiam R. Howlett 	mas_for_each(mas, vma, ULONG_MAX) {
2293ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
22941da177e4SLinus Torvalds 
22954f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
22964f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
229784638335SKonstantin Khlebnikov 		vm_stat_account(mm, vma->vm_flags, -nrpages);
22980d2ebf9cSSuren Baghdasaryan 		remove_vma(vma, false);
2299763ecb03SLiam R. Howlett 	}
23004f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
23011da177e4SLinus Torvalds }
23021da177e4SLinus Torvalds 
23031da177e4SLinus Torvalds /*
23041da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
23051da177e4SLinus Torvalds  *
2306f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
23071da177e4SLinus Torvalds  */
2308fd892593SLiam R. Howlett static void unmap_region(struct mm_struct *mm, struct ma_state *mas,
2309e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
2310fd892593SLiam R. Howlett 		struct vm_area_struct *next, unsigned long start,
2311fd892593SLiam R. Howlett 		unsigned long end, unsigned long tree_end, bool mm_wr_locked)
23121da177e4SLinus Torvalds {
2313d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
2314fd892593SLiam R. Howlett 	unsigned long mt_start = mas->index;
23151da177e4SLinus Torvalds 
23161da177e4SLinus Torvalds 	lru_add_drain();
2317a72afd87SWill Deacon 	tlb_gather_mmu(&tlb, mm);
2318365e9c87SHugh Dickins 	update_hiwater_rss(mm);
2319fd892593SLiam R. Howlett 	unmap_vmas(&tlb, mas, vma, start, end, tree_end, mm_wr_locked);
2320fd892593SLiam R. Howlett 	mas_set(mas, mt_start);
2321fd892593SLiam R. Howlett 	free_pgtables(&tlb, mas, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
232298e51a22SSuren Baghdasaryan 				 next ? next->vm_start : USER_PGTABLES_CEILING,
232398e51a22SSuren Baghdasaryan 				 mm_wr_locked);
2324ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
23251da177e4SLinus Torvalds }
23261da177e4SLinus Torvalds 
23271da177e4SLinus Torvalds /*
2328def5efe0SDavid Rientjes  * __split_vma() bypasses sysctl_max_map_count checking.  We use this where it
2329def5efe0SDavid Rientjes  * has already been checked or doesn't make sense to fail.
23300fd5a9e2SLiam R. Howlett  * VMA Iterator will point to the end VMA.
23311da177e4SLinus Torvalds  */
23329760ebffSLiam R. Howlett int __split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
23331da177e4SLinus Torvalds 		unsigned long addr, int new_below)
23341da177e4SLinus Torvalds {
2335b2b3b886SLiam R. Howlett 	struct vma_prepare vp;
23361da177e4SLinus Torvalds 	struct vm_area_struct *new;
2337e3975891SChen Gang 	int err;
23389760ebffSLiam R. Howlett 
2339b2b3b886SLiam R. Howlett 	WARN_ON(vma->vm_start >= addr);
2340b2b3b886SLiam R. Howlett 	WARN_ON(vma->vm_end <= addr);
2341b2b3b886SLiam R. Howlett 
2342dd3b614fSDmitry Safonov 	if (vma->vm_ops && vma->vm_ops->may_split) {
2343dd3b614fSDmitry Safonov 		err = vma->vm_ops->may_split(vma, addr);
234431383c68SDan Williams 		if (err)
234531383c68SDan Williams 			return err;
234631383c68SDan Williams 	}
23471da177e4SLinus Torvalds 
23483928d4f5SLinus Torvalds 	new = vm_area_dup(vma);
23491da177e4SLinus Torvalds 	if (!new)
2350e3975891SChen Gang 		return -ENOMEM;
23511da177e4SLinus Torvalds 
2352b2b3b886SLiam R. Howlett 	if (new_below) {
23531da177e4SLinus Torvalds 		new->vm_end = addr;
2354b2b3b886SLiam R. Howlett 	} else {
23551da177e4SLinus Torvalds 		new->vm_start = addr;
23561da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
23571da177e4SLinus Torvalds 	}
23581da177e4SLinus Torvalds 
2359b5df0922SLiam R. Howlett 	err = -ENOMEM;
2360b5df0922SLiam R. Howlett 	vma_iter_config(vmi, new->vm_start, new->vm_end);
2361b5df0922SLiam R. Howlett 	if (vma_iter_prealloc(vmi, new))
2362b5df0922SLiam R. Howlett 		goto out_free_vma;
2363b5df0922SLiam R. Howlett 
2364ef0855d3SOleg Nesterov 	err = vma_dup_policy(vma, new);
2365ef0855d3SOleg Nesterov 	if (err)
2366b2b3b886SLiam R. Howlett 		goto out_free_vmi;
23671da177e4SLinus Torvalds 
2368c4ea95d7SDaniel Forrest 	err = anon_vma_clone(new, vma);
2369c4ea95d7SDaniel Forrest 	if (err)
23705beb4930SRik van Riel 		goto out_free_mpol;
23715beb4930SRik van Riel 
2372e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
23731da177e4SLinus Torvalds 		get_file(new->vm_file);
23741da177e4SLinus Torvalds 
23751da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
23761da177e4SLinus Torvalds 		new->vm_ops->open(new);
23771da177e4SLinus Torvalds 
2378c9d6e982SSuren Baghdasaryan 	vma_start_write(vma);
2379c9d6e982SSuren Baghdasaryan 	vma_start_write(new);
2380c9d6e982SSuren Baghdasaryan 
2381b2b3b886SLiam R. Howlett 	init_vma_prep(&vp, vma);
2382b2b3b886SLiam R. Howlett 	vp.insert = new;
2383b2b3b886SLiam R. Howlett 	vma_prepare(&vp);
2384ccf1d78dSSuren Baghdasaryan 	vma_adjust_trans_huge(vma, vma->vm_start, addr, 0);
23851da177e4SLinus Torvalds 
2386b2b3b886SLiam R. Howlett 	if (new_below) {
2387b2b3b886SLiam R. Howlett 		vma->vm_start = addr;
2388b2b3b886SLiam R. Howlett 		vma->vm_pgoff += (addr - new->vm_start) >> PAGE_SHIFT;
2389b2b3b886SLiam R. Howlett 	} else {
2390b2b3b886SLiam R. Howlett 		vma->vm_end = addr;
23919760ebffSLiam R. Howlett 	}
23925beb4930SRik van Riel 
2393b2b3b886SLiam R. Howlett 	/* vma_complete stores the new vma */
2394b2b3b886SLiam R. Howlett 	vma_complete(&vp, vmi, vma->vm_mm);
2395b2b3b886SLiam R. Howlett 
2396b2b3b886SLiam R. Howlett 	/* Success. */
2397b2b3b886SLiam R. Howlett 	if (new_below)
2398b2b3b886SLiam R. Howlett 		vma_next(vmi);
2399b2b3b886SLiam R. Howlett 	return 0;
2400b2b3b886SLiam R. Howlett 
24015beb4930SRik van Riel out_free_mpol:
2402ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new));
2403b2b3b886SLiam R. Howlett out_free_vmi:
2404b2b3b886SLiam R. Howlett 	vma_iter_free(vmi);
24055beb4930SRik van Riel out_free_vma:
24063928d4f5SLinus Torvalds 	vm_area_free(new);
24075beb4930SRik van Riel 	return err;
24081da177e4SLinus Torvalds }
24091da177e4SLinus Torvalds 
2410659ace58SKOSAKI Motohiro /*
2411659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2412659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2413659ace58SKOSAKI Motohiro  */
24149760ebffSLiam R. Howlett int split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
2415659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2416659ace58SKOSAKI Motohiro {
24179760ebffSLiam R. Howlett 	if (vma->vm_mm->map_count >= sysctl_max_map_count)
2418659ace58SKOSAKI Motohiro 		return -ENOMEM;
2419659ace58SKOSAKI Motohiro 
24209760ebffSLiam R. Howlett 	return __split_vma(vmi, vma, addr, new_below);
2421f2ebfe43SLiam R. Howlett }
2422f2ebfe43SLiam R. Howlett 
242311f9a21aSLiam R. Howlett /*
2424183654ceSLiam R. Howlett  * do_vmi_align_munmap() - munmap the aligned region from @start to @end.
2425183654ceSLiam R. Howlett  * @vmi: The vma iterator
242611f9a21aSLiam R. Howlett  * @vma: The starting vm_area_struct
242711f9a21aSLiam R. Howlett  * @mm: The mm_struct
242811f9a21aSLiam R. Howlett  * @start: The aligned start address to munmap.
242911f9a21aSLiam R. Howlett  * @end: The aligned end address to munmap.
243011f9a21aSLiam R. Howlett  * @uf: The userfaultfd list_head
2431408579cdSLiam R. Howlett  * @unlock: Set to true to drop the mmap_lock.  unlocking only happens on
2432408579cdSLiam R. Howlett  * success.
243311f9a21aSLiam R. Howlett  *
2434408579cdSLiam R. Howlett  * Return: 0 on success and drops the lock if so directed, error and leaves the
2435408579cdSLiam R. Howlett  * lock held otherwise.
243611f9a21aSLiam R. Howlett  */
243711f9a21aSLiam R. Howlett static int
2438183654ceSLiam R. Howlett do_vmi_align_munmap(struct vma_iterator *vmi, struct vm_area_struct *vma,
243911f9a21aSLiam R. Howlett 		    struct mm_struct *mm, unsigned long start,
2440408579cdSLiam R. Howlett 		    unsigned long end, struct list_head *uf, bool unlock)
244111f9a21aSLiam R. Howlett {
2442763ecb03SLiam R. Howlett 	struct vm_area_struct *prev, *next = NULL;
2443763ecb03SLiam R. Howlett 	struct maple_tree mt_detach;
2444763ecb03SLiam R. Howlett 	int count = 0;
2445d4af56c5SLiam R. Howlett 	int error = -ENOMEM;
2446606c812eSLiam R. Howlett 	unsigned long locked_vm = 0;
2447763ecb03SLiam R. Howlett 	MA_STATE(mas_detach, &mt_detach, 0, 0);
24483dd44325SLiam R. Howlett 	mt_init_flags(&mt_detach, vmi->mas.tree->ma_flags & MT_FLAGS_LOCK_MASK);
244902fdb25fSLiam R. Howlett 	mt_on_stack(mt_detach);
2450524e00b3SLiam R. Howlett 
24511da177e4SLinus Torvalds 	/*
24521da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
24531da177e4SLinus Torvalds 	 *
24541da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
24551da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
24561da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
24571da177e4SLinus Torvalds 	 */
2458763ecb03SLiam R. Howlett 
2459763ecb03SLiam R. Howlett 	/* Does it split the first one? */
2460146425a3SHugh Dickins 	if (start > vma->vm_start) {
2461659ace58SKOSAKI Motohiro 
2462659ace58SKOSAKI Motohiro 		/*
2463659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
2464659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
2465659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
2466659ace58SKOSAKI Motohiro 		 */
2467659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2468d4af56c5SLiam R. Howlett 			goto map_count_exceeded;
2469659ace58SKOSAKI Motohiro 
24706935e052SLiam R. Howlett 		error = __split_vma(vmi, vma, start, 1);
24711da177e4SLinus Torvalds 		if (error)
2472763ecb03SLiam R. Howlett 			goto start_split_failed;
24731da177e4SLinus Torvalds 	}
24741da177e4SLinus Torvalds 
2475763ecb03SLiam R. Howlett 	/*
2476763ecb03SLiam R. Howlett 	 * Detach a range of VMAs from the mm. Using next as a temp variable as
2477763ecb03SLiam R. Howlett 	 * it is always overwritten.
2478763ecb03SLiam R. Howlett 	 */
24796935e052SLiam R. Howlett 	next = vma;
24806935e052SLiam R. Howlett 	do {
2481763ecb03SLiam R. Howlett 		/* Does it split the end? */
2482763ecb03SLiam R. Howlett 		if (next->vm_end > end) {
24836b73cff2SLiam R. Howlett 			error = __split_vma(vmi, next, end, 0);
24841da177e4SLinus Torvalds 			if (error)
2485763ecb03SLiam R. Howlett 				goto end_split_failed;
248611f9a21aSLiam R. Howlett 		}
2487606c812eSLiam R. Howlett 		vma_start_write(next);
2488fd892593SLiam R. Howlett 		mas_set(&mas_detach, count);
24896c26bd43SDavid Woodhouse 		error = mas_store_gfp(&mas_detach, next, GFP_KERNEL);
24906c26bd43SDavid Woodhouse 		if (error)
2491606c812eSLiam R. Howlett 			goto munmap_gather_failed;
2492606c812eSLiam R. Howlett 		vma_mark_detached(next, true);
2493606c812eSLiam R. Howlett 		if (next->vm_flags & VM_LOCKED)
2494606c812eSLiam R. Howlett 			locked_vm += vma_pages(next);
2495763ecb03SLiam R. Howlett 
2496763ecb03SLiam R. Howlett 		count++;
24972376dd7cSAndrea Arcangeli 		if (unlikely(uf)) {
24982376dd7cSAndrea Arcangeli 			/*
24992376dd7cSAndrea Arcangeli 			 * If userfaultfd_unmap_prep returns an error the vmas
2500f0953a1bSIngo Molnar 			 * will remain split, but userland will get a
25012376dd7cSAndrea Arcangeli 			 * highly unexpected error anyway. This is no
25022376dd7cSAndrea Arcangeli 			 * different than the case where the first of the two
25032376dd7cSAndrea Arcangeli 			 * __split_vma fails, but we don't undo the first
25042376dd7cSAndrea Arcangeli 			 * split, despite we could. This is unlikely enough
25052376dd7cSAndrea Arcangeli 			 * failure that it's not worth optimizing it for.
25062376dd7cSAndrea Arcangeli 			 */
250765ac1320SLiam R. Howlett 			error = userfaultfd_unmap_prep(next, start, end, uf);
250811f9a21aSLiam R. Howlett 
25092376dd7cSAndrea Arcangeli 			if (error)
2510d4af56c5SLiam R. Howlett 				goto userfaultfd_error;
25112376dd7cSAndrea Arcangeli 		}
2512ba470de4SRik van Riel #ifdef CONFIG_DEBUG_VM_MAPLE_TREE
2513ba470de4SRik van Riel 		BUG_ON(next->vm_start < start);
2514ba470de4SRik van Riel 		BUG_ON(next->vm_start > end);
25151da177e4SLinus Torvalds #endif
25166935e052SLiam R. Howlett 	} for_each_vma_range(*vmi, next, end);
25172376dd7cSAndrea Arcangeli 
2518763ecb03SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
2519763ecb03SLiam R. Howlett 	/* Make sure no VMAs are about to be lost. */
2520763ecb03SLiam R. Howlett 	{
2521fd892593SLiam R. Howlett 		MA_STATE(test, &mt_detach, 0, 0);
2522763ecb03SLiam R. Howlett 		struct vm_area_struct *vma_mas, *vma_test;
2523763ecb03SLiam R. Howlett 		int test_count = 0;
2524763ecb03SLiam R. Howlett 
2525183654ceSLiam R. Howlett 		vma_iter_set(vmi, start);
2526763ecb03SLiam R. Howlett 		rcu_read_lock();
2527fd892593SLiam R. Howlett 		vma_test = mas_find(&test, count - 1);
2528183654ceSLiam R. Howlett 		for_each_vma_range(*vmi, vma_mas, end) {
2529763ecb03SLiam R. Howlett 			BUG_ON(vma_mas != vma_test);
2530763ecb03SLiam R. Howlett 			test_count++;
2531fd892593SLiam R. Howlett 			vma_test = mas_next(&test, count - 1);
2532763ecb03SLiam R. Howlett 		}
2533763ecb03SLiam R. Howlett 		rcu_read_unlock();
2534763ecb03SLiam R. Howlett 		BUG_ON(count != test_count);
2535763ecb03SLiam R. Howlett 	}
2536763ecb03SLiam R. Howlett #endif
25376935e052SLiam R. Howlett 
25386935e052SLiam R. Howlett 	while (vma_iter_addr(vmi) > start)
25396935e052SLiam R. Howlett 		vma_iter_prev_range(vmi);
25406935e052SLiam R. Howlett 
25416c26bd43SDavid Woodhouse 	error = vma_iter_clear_gfp(vmi, start, end, GFP_KERNEL);
25426c26bd43SDavid Woodhouse 	if (error)
2543606c812eSLiam R. Howlett 		goto clear_tree_failed;
25440378c0a0SLiam R. Howlett 
25456c26bd43SDavid Woodhouse 	/* Point of no return */
2546606c812eSLiam R. Howlett 	mm->locked_vm -= locked_vm;
2547763ecb03SLiam R. Howlett 	mm->map_count -= count;
2548408579cdSLiam R. Howlett 	if (unlock)
2549d8ed45c5SMichel Lespinasse 		mmap_write_downgrade(mm);
2550dd2283f2SYang Shi 
25516935e052SLiam R. Howlett 	prev = vma_iter_prev_range(vmi);
25526935e052SLiam R. Howlett 	next = vma_next(vmi);
25536935e052SLiam R. Howlett 	if (next)
25546935e052SLiam R. Howlett 		vma_iter_prev_range(vmi);
25556935e052SLiam R. Howlett 
255668f48381SSuren Baghdasaryan 	/*
255768f48381SSuren Baghdasaryan 	 * We can free page tables without write-locking mmap_lock because VMAs
255868f48381SSuren Baghdasaryan 	 * were isolated before we downgraded mmap_lock.
255968f48381SSuren Baghdasaryan 	 */
2560fd892593SLiam R. Howlett 	mas_set(&mas_detach, 1);
2561fd892593SLiam R. Howlett 	unmap_region(mm, &mas_detach, vma, prev, next, start, end, count,
2562fd892593SLiam R. Howlett 		     !unlock);
2563763ecb03SLiam R. Howlett 	/* Statistics and freeing VMAs */
2564fd892593SLiam R. Howlett 	mas_set(&mas_detach, 0);
2565763ecb03SLiam R. Howlett 	remove_mt(mm, &mas_detach);
2566ae80b404SLinus Torvalds 	validate_mm(mm);
2567408579cdSLiam R. Howlett 	if (unlock)
2568408579cdSLiam R. Howlett 		mmap_read_unlock(mm);
25691da177e4SLinus Torvalds 
257002fdb25fSLiam R. Howlett 	__mt_destroy(&mt_detach);
2571408579cdSLiam R. Howlett 	return 0;
2572d4af56c5SLiam R. Howlett 
2573606c812eSLiam R. Howlett clear_tree_failed:
2574d4af56c5SLiam R. Howlett userfaultfd_error:
2575606c812eSLiam R. Howlett munmap_gather_failed:
2576763ecb03SLiam R. Howlett end_split_failed:
2577606c812eSLiam R. Howlett 	mas_set(&mas_detach, 0);
2578606c812eSLiam R. Howlett 	mas_for_each(&mas_detach, next, end)
2579606c812eSLiam R. Howlett 		vma_mark_detached(next, false);
2580606c812eSLiam R. Howlett 
2581763ecb03SLiam R. Howlett 	__mt_destroy(&mt_detach);
2582763ecb03SLiam R. Howlett start_split_failed:
2583763ecb03SLiam R. Howlett map_count_exceeded:
2584b5641a5dSLinus Torvalds 	validate_mm(mm);
2585d4af56c5SLiam R. Howlett 	return error;
25861da177e4SLinus Torvalds }
25871da177e4SLinus Torvalds 
258811f9a21aSLiam R. Howlett /*
2589183654ceSLiam R. Howlett  * do_vmi_munmap() - munmap a given range.
2590183654ceSLiam R. Howlett  * @vmi: The vma iterator
259111f9a21aSLiam R. Howlett  * @mm: The mm_struct
259211f9a21aSLiam R. Howlett  * @start: The start address to munmap
259311f9a21aSLiam R. Howlett  * @len: The length of the range to munmap
259411f9a21aSLiam R. Howlett  * @uf: The userfaultfd list_head
2595408579cdSLiam R. Howlett  * @unlock: set to true if the user wants to drop the mmap_lock on success
259611f9a21aSLiam R. Howlett  *
259711f9a21aSLiam R. Howlett  * This function takes a @mas that is either pointing to the previous VMA or set
259811f9a21aSLiam R. Howlett  * to MA_START and sets it up to remove the mapping(s).  The @len will be
259911f9a21aSLiam R. Howlett  * aligned and any arch_unmap work will be preformed.
260011f9a21aSLiam R. Howlett  *
2601408579cdSLiam R. Howlett  * Return: 0 on success and drops the lock if so directed, error and leaves the
2602408579cdSLiam R. Howlett  * lock held otherwise.
260311f9a21aSLiam R. Howlett  */
2604183654ceSLiam R. Howlett int do_vmi_munmap(struct vma_iterator *vmi, struct mm_struct *mm,
260511f9a21aSLiam R. Howlett 		  unsigned long start, size_t len, struct list_head *uf,
2606408579cdSLiam R. Howlett 		  bool unlock)
260711f9a21aSLiam R. Howlett {
260811f9a21aSLiam R. Howlett 	unsigned long end;
260911f9a21aSLiam R. Howlett 	struct vm_area_struct *vma;
261011f9a21aSLiam R. Howlett 
261111f9a21aSLiam R. Howlett 	if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
261211f9a21aSLiam R. Howlett 		return -EINVAL;
261311f9a21aSLiam R. Howlett 
261411f9a21aSLiam R. Howlett 	end = start + PAGE_ALIGN(len);
261511f9a21aSLiam R. Howlett 	if (end == start)
261611f9a21aSLiam R. Howlett 		return -EINVAL;
261711f9a21aSLiam R. Howlett 
261811f9a21aSLiam R. Howlett 	 /* arch_unmap() might do unmaps itself.  */
261911f9a21aSLiam R. Howlett 	arch_unmap(mm, start, end);
262011f9a21aSLiam R. Howlett 
262111f9a21aSLiam R. Howlett 	/* Find the first overlapping VMA */
2622183654ceSLiam R. Howlett 	vma = vma_find(vmi, end);
2623408579cdSLiam R. Howlett 	if (!vma) {
2624408579cdSLiam R. Howlett 		if (unlock)
2625408579cdSLiam R. Howlett 			mmap_write_unlock(mm);
262611f9a21aSLiam R. Howlett 		return 0;
2627408579cdSLiam R. Howlett 	}
262811f9a21aSLiam R. Howlett 
2629408579cdSLiam R. Howlett 	return do_vmi_align_munmap(vmi, vma, mm, start, end, uf, unlock);
263011f9a21aSLiam R. Howlett }
263111f9a21aSLiam R. Howlett 
263211f9a21aSLiam R. Howlett /* do_munmap() - Wrapper function for non-maple tree aware do_munmap() calls.
263311f9a21aSLiam R. Howlett  * @mm: The mm_struct
263411f9a21aSLiam R. Howlett  * @start: The start address to munmap
263511f9a21aSLiam R. Howlett  * @len: The length to be munmapped.
263611f9a21aSLiam R. Howlett  * @uf: The userfaultfd list_head
2637408579cdSLiam R. Howlett  *
2638408579cdSLiam R. Howlett  * Return: 0 on success, error otherwise.
263911f9a21aSLiam R. Howlett  */
2640dd2283f2SYang Shi int do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2641dd2283f2SYang Shi 	      struct list_head *uf)
2642dd2283f2SYang Shi {
2643183654ceSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, start);
264411f9a21aSLiam R. Howlett 
2645183654ceSLiam R. Howlett 	return do_vmi_munmap(&vmi, mm, start, len, uf, false);
2646dd2283f2SYang Shi }
2647dd2283f2SYang Shi 
2648e99668a5SLiam R. Howlett unsigned long mmap_region(struct file *file, unsigned long addr,
2649e99668a5SLiam R. Howlett 		unsigned long len, vm_flags_t vm_flags, unsigned long pgoff,
2650e99668a5SLiam R. Howlett 		struct list_head *uf)
2651e99668a5SLiam R. Howlett {
2652e99668a5SLiam R. Howlett 	struct mm_struct *mm = current->mm;
2653e99668a5SLiam R. Howlett 	struct vm_area_struct *vma = NULL;
2654e99668a5SLiam R. Howlett 	struct vm_area_struct *next, *prev, *merge;
2655e99668a5SLiam R. Howlett 	pgoff_t pglen = len >> PAGE_SHIFT;
2656e99668a5SLiam R. Howlett 	unsigned long charged = 0;
2657e99668a5SLiam R. Howlett 	unsigned long end = addr + len;
2658e99668a5SLiam R. Howlett 	unsigned long merge_start = addr, merge_end = end;
2659e99668a5SLiam R. Howlett 	pgoff_t vm_pgoff;
2660e99668a5SLiam R. Howlett 	int error;
2661183654ceSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, addr);
2662e99668a5SLiam R. Howlett 
2663e99668a5SLiam R. Howlett 	/* Check against address space limit. */
2664e99668a5SLiam R. Howlett 	if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
2665e99668a5SLiam R. Howlett 		unsigned long nr_pages;
2666e99668a5SLiam R. Howlett 
2667e99668a5SLiam R. Howlett 		/*
2668e99668a5SLiam R. Howlett 		 * MAP_FIXED may remove pages of mappings that intersects with
2669e99668a5SLiam R. Howlett 		 * requested mapping. Account for the pages it would unmap.
2670e99668a5SLiam R. Howlett 		 */
2671e99668a5SLiam R. Howlett 		nr_pages = count_vma_pages_range(mm, addr, end);
2672e99668a5SLiam R. Howlett 
2673e99668a5SLiam R. Howlett 		if (!may_expand_vm(mm, vm_flags,
2674e99668a5SLiam R. Howlett 					(len >> PAGE_SHIFT) - nr_pages))
2675e99668a5SLiam R. Howlett 			return -ENOMEM;
2676e99668a5SLiam R. Howlett 	}
2677e99668a5SLiam R. Howlett 
2678e99668a5SLiam R. Howlett 	/* Unmap any existing mapping in the area */
2679183654ceSLiam R. Howlett 	if (do_vmi_munmap(&vmi, mm, addr, len, uf, false))
2680e99668a5SLiam R. Howlett 		return -ENOMEM;
2681e99668a5SLiam R. Howlett 
2682e99668a5SLiam R. Howlett 	/*
2683e99668a5SLiam R. Howlett 	 * Private writable mapping: check memory availability
2684e99668a5SLiam R. Howlett 	 */
2685e99668a5SLiam R. Howlett 	if (accountable_mapping(file, vm_flags)) {
2686e99668a5SLiam R. Howlett 		charged = len >> PAGE_SHIFT;
2687e99668a5SLiam R. Howlett 		if (security_vm_enough_memory_mm(mm, charged))
2688e99668a5SLiam R. Howlett 			return -ENOMEM;
2689e99668a5SLiam R. Howlett 		vm_flags |= VM_ACCOUNT;
2690e99668a5SLiam R. Howlett 	}
2691e99668a5SLiam R. Howlett 
2692183654ceSLiam R. Howlett 	next = vma_next(&vmi);
2693183654ceSLiam R. Howlett 	prev = vma_prev(&vmi);
269453bee98dSLiam R. Howlett 	if (vm_flags & VM_SPECIAL) {
269553bee98dSLiam R. Howlett 		if (prev)
269653bee98dSLiam R. Howlett 			vma_iter_next_range(&vmi);
2697e99668a5SLiam R. Howlett 		goto cannot_expand;
269853bee98dSLiam R. Howlett 	}
2699e99668a5SLiam R. Howlett 
2700e99668a5SLiam R. Howlett 	/* Attempt to expand an old mapping */
2701e99668a5SLiam R. Howlett 	/* Check next */
2702e99668a5SLiam R. Howlett 	if (next && next->vm_start == end && !vma_policy(next) &&
2703e99668a5SLiam R. Howlett 	    can_vma_merge_before(next, vm_flags, NULL, file, pgoff+pglen,
2704e99668a5SLiam R. Howlett 				 NULL_VM_UFFD_CTX, NULL)) {
2705e99668a5SLiam R. Howlett 		merge_end = next->vm_end;
2706e99668a5SLiam R. Howlett 		vma = next;
2707e99668a5SLiam R. Howlett 		vm_pgoff = next->vm_pgoff - pglen;
2708e99668a5SLiam R. Howlett 	}
2709e99668a5SLiam R. Howlett 
2710e99668a5SLiam R. Howlett 	/* Check prev */
2711e99668a5SLiam R. Howlett 	if (prev && prev->vm_end == addr && !vma_policy(prev) &&
2712e99668a5SLiam R. Howlett 	    (vma ? can_vma_merge_after(prev, vm_flags, vma->anon_vma, file,
2713e99668a5SLiam R. Howlett 				       pgoff, vma->vm_userfaultfd_ctx, NULL) :
2714e99668a5SLiam R. Howlett 		   can_vma_merge_after(prev, vm_flags, NULL, file, pgoff,
2715e99668a5SLiam R. Howlett 				       NULL_VM_UFFD_CTX, NULL))) {
2716e99668a5SLiam R. Howlett 		merge_start = prev->vm_start;
2717e99668a5SLiam R. Howlett 		vma = prev;
2718e99668a5SLiam R. Howlett 		vm_pgoff = prev->vm_pgoff;
271953bee98dSLiam R. Howlett 	} else if (prev) {
272053bee98dSLiam R. Howlett 		vma_iter_next_range(&vmi);
2721e99668a5SLiam R. Howlett 	}
2722e99668a5SLiam R. Howlett 
2723e99668a5SLiam R. Howlett 	/* Actually expand, if possible */
2724e99668a5SLiam R. Howlett 	if (vma &&
27253c441ab7SLiam R. Howlett 	    !vma_expand(&vmi, vma, merge_start, merge_end, vm_pgoff, next)) {
2726e99668a5SLiam R. Howlett 		khugepaged_enter_vma(vma, vm_flags);
2727e99668a5SLiam R. Howlett 		goto expanded;
2728e99668a5SLiam R. Howlett 	}
2729e99668a5SLiam R. Howlett 
273053bee98dSLiam R. Howlett 	if (vma == prev)
273153bee98dSLiam R. Howlett 		vma_iter_set(&vmi, addr);
2732e99668a5SLiam R. Howlett cannot_expand:
27335c1c03deSLiam R. Howlett 
2734e99668a5SLiam R. Howlett 	/*
2735e99668a5SLiam R. Howlett 	 * Determine the object being mapped and call the appropriate
2736e99668a5SLiam R. Howlett 	 * specific mapper. the address has already been validated, but
2737e99668a5SLiam R. Howlett 	 * not unmapped, but the maps are removed from the list.
2738e99668a5SLiam R. Howlett 	 */
2739e99668a5SLiam R. Howlett 	vma = vm_area_alloc(mm);
2740e99668a5SLiam R. Howlett 	if (!vma) {
2741e99668a5SLiam R. Howlett 		error = -ENOMEM;
2742e99668a5SLiam R. Howlett 		goto unacct_error;
2743e99668a5SLiam R. Howlett 	}
2744e99668a5SLiam R. Howlett 
274553bee98dSLiam R. Howlett 	vma_iter_config(&vmi, addr, end);
2746e99668a5SLiam R. Howlett 	vma->vm_start = addr;
2747e99668a5SLiam R. Howlett 	vma->vm_end = end;
27481c71222eSSuren Baghdasaryan 	vm_flags_init(vma, vm_flags);
2749e99668a5SLiam R. Howlett 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
2750e99668a5SLiam R. Howlett 	vma->vm_pgoff = pgoff;
2751e99668a5SLiam R. Howlett 
2752e99668a5SLiam R. Howlett 	if (file) {
2753e99668a5SLiam R. Howlett 		if (vm_flags & VM_SHARED) {
2754e99668a5SLiam R. Howlett 			error = mapping_map_writable(file->f_mapping);
2755e99668a5SLiam R. Howlett 			if (error)
2756e99668a5SLiam R. Howlett 				goto free_vma;
2757e99668a5SLiam R. Howlett 		}
2758e99668a5SLiam R. Howlett 
2759e99668a5SLiam R. Howlett 		vma->vm_file = get_file(file);
2760e99668a5SLiam R. Howlett 		error = call_mmap(file, vma);
2761e99668a5SLiam R. Howlett 		if (error)
2762e99668a5SLiam R. Howlett 			goto unmap_and_free_vma;
2763e99668a5SLiam R. Howlett 
2764a57b7051SLiam Howlett 		/*
2765a57b7051SLiam Howlett 		 * Expansion is handled above, merging is handled below.
2766a57b7051SLiam Howlett 		 * Drivers should not alter the address of the VMA.
2767e99668a5SLiam R. Howlett 		 */
2768a57b7051SLiam Howlett 		error = -EINVAL;
2769cc8d1b09SLiam R. Howlett 		if (WARN_ON((addr != vma->vm_start)))
2770a57b7051SLiam Howlett 			goto close_and_free_vma;
2771e99668a5SLiam R. Howlett 
277253bee98dSLiam R. Howlett 		vma_iter_config(&vmi, addr, end);
2773e99668a5SLiam R. Howlett 		/*
2774e99668a5SLiam R. Howlett 		 * If vm_flags changed after call_mmap(), we should try merge
2775e99668a5SLiam R. Howlett 		 * vma again as we may succeed this time.
2776e99668a5SLiam R. Howlett 		 */
2777e99668a5SLiam R. Howlett 		if (unlikely(vm_flags != vma->vm_flags && prev)) {
27789760ebffSLiam R. Howlett 			merge = vma_merge(&vmi, mm, prev, vma->vm_start,
27799760ebffSLiam R. Howlett 				    vma->vm_end, vma->vm_flags, NULL,
27809760ebffSLiam R. Howlett 				    vma->vm_file, vma->vm_pgoff, NULL,
27819760ebffSLiam R. Howlett 				    NULL_VM_UFFD_CTX, NULL);
2782e99668a5SLiam R. Howlett 			if (merge) {
2783e99668a5SLiam R. Howlett 				/*
2784e99668a5SLiam R. Howlett 				 * ->mmap() can change vma->vm_file and fput
2785e99668a5SLiam R. Howlett 				 * the original file. So fput the vma->vm_file
2786e99668a5SLiam R. Howlett 				 * here or we would add an extra fput for file
2787e99668a5SLiam R. Howlett 				 * and cause general protection fault
2788e99668a5SLiam R. Howlett 				 * ultimately.
2789e99668a5SLiam R. Howlett 				 */
2790e99668a5SLiam R. Howlett 				fput(vma->vm_file);
2791e99668a5SLiam R. Howlett 				vm_area_free(vma);
2792e99668a5SLiam R. Howlett 				vma = merge;
2793e99668a5SLiam R. Howlett 				/* Update vm_flags to pick up the change. */
2794e99668a5SLiam R. Howlett 				vm_flags = vma->vm_flags;
2795e99668a5SLiam R. Howlett 				goto unmap_writable;
2796e99668a5SLiam R. Howlett 			}
2797e99668a5SLiam R. Howlett 		}
2798e99668a5SLiam R. Howlett 
2799e99668a5SLiam R. Howlett 		vm_flags = vma->vm_flags;
2800e99668a5SLiam R. Howlett 	} else if (vm_flags & VM_SHARED) {
2801e99668a5SLiam R. Howlett 		error = shmem_zero_setup(vma);
2802e99668a5SLiam R. Howlett 		if (error)
2803e99668a5SLiam R. Howlett 			goto free_vma;
2804e99668a5SLiam R. Howlett 	} else {
2805e99668a5SLiam R. Howlett 		vma_set_anonymous(vma);
2806e99668a5SLiam R. Howlett 	}
2807e99668a5SLiam R. Howlett 
2808b507808eSJoey Gouly 	if (map_deny_write_exec(vma, vma->vm_flags)) {
2809b507808eSJoey Gouly 		error = -EACCES;
2810b507808eSJoey Gouly 		goto close_and_free_vma;
2811b507808eSJoey Gouly 	}
2812b507808eSJoey Gouly 
2813e99668a5SLiam R. Howlett 	/* Allow architectures to sanity-check the vm_flags */
2814e99668a5SLiam R. Howlett 	error = -EINVAL;
2815cc8d1b09SLiam R. Howlett 	if (!arch_validate_flags(vma->vm_flags))
2816deb0f656SCarlos Llamas 		goto close_and_free_vma;
2817e99668a5SLiam R. Howlett 
2818e99668a5SLiam R. Howlett 	error = -ENOMEM;
2819b5df0922SLiam R. Howlett 	if (vma_iter_prealloc(&vmi, vma))
28205789151eSMike Kravetz 		goto close_and_free_vma;
2821e99668a5SLiam R. Howlett 
28221c7873e3SHugh Dickins 	/* Lock the VMA since it is modified after insertion into VMA tree */
28231c7873e3SHugh Dickins 	vma_start_write(vma);
2824183654ceSLiam R. Howlett 	vma_iter_store(&vmi, vma);
2825e99668a5SLiam R. Howlett 	mm->map_count++;
2826e99668a5SLiam R. Howlett 	if (vma->vm_file) {
28276852c46cSYu Ma 		i_mmap_lock_write(vma->vm_file->f_mapping);
2828e99668a5SLiam R. Howlett 		if (vma->vm_flags & VM_SHARED)
2829e99668a5SLiam R. Howlett 			mapping_allow_writable(vma->vm_file->f_mapping);
2830e99668a5SLiam R. Howlett 
2831e99668a5SLiam R. Howlett 		flush_dcache_mmap_lock(vma->vm_file->f_mapping);
2832e99668a5SLiam R. Howlett 		vma_interval_tree_insert(vma, &vma->vm_file->f_mapping->i_mmap);
2833e99668a5SLiam R. Howlett 		flush_dcache_mmap_unlock(vma->vm_file->f_mapping);
2834e99668a5SLiam R. Howlett 		i_mmap_unlock_write(vma->vm_file->f_mapping);
2835e99668a5SLiam R. Howlett 	}
2836e99668a5SLiam R. Howlett 
2837e99668a5SLiam R. Howlett 	/*
2838e99668a5SLiam R. Howlett 	 * vma_merge() calls khugepaged_enter_vma() either, the below
2839e99668a5SLiam R. Howlett 	 * call covers the non-merge case.
2840e99668a5SLiam R. Howlett 	 */
2841e99668a5SLiam R. Howlett 	khugepaged_enter_vma(vma, vma->vm_flags);
2842e99668a5SLiam R. Howlett 
2843e99668a5SLiam R. Howlett 	/* Once vma denies write, undo our temporary denial count */
2844e99668a5SLiam R. Howlett unmap_writable:
2845e99668a5SLiam R. Howlett 	if (file && vm_flags & VM_SHARED)
2846e99668a5SLiam R. Howlett 		mapping_unmap_writable(file->f_mapping);
2847e99668a5SLiam R. Howlett 	file = vma->vm_file;
2848d7597f59SStefan Roesch 	ksm_add_vma(vma);
2849e99668a5SLiam R. Howlett expanded:
2850e99668a5SLiam R. Howlett 	perf_event_mmap(vma);
2851e99668a5SLiam R. Howlett 
2852e99668a5SLiam R. Howlett 	vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
2853e99668a5SLiam R. Howlett 	if (vm_flags & VM_LOCKED) {
2854e99668a5SLiam R. Howlett 		if ((vm_flags & VM_SPECIAL) || vma_is_dax(vma) ||
2855e99668a5SLiam R. Howlett 					is_vm_hugetlb_page(vma) ||
2856e99668a5SLiam R. Howlett 					vma == get_gate_vma(current->mm))
2857e430a95aSSuren Baghdasaryan 			vm_flags_clear(vma, VM_LOCKED_MASK);
2858e99668a5SLiam R. Howlett 		else
2859e99668a5SLiam R. Howlett 			mm->locked_vm += (len >> PAGE_SHIFT);
2860e99668a5SLiam R. Howlett 	}
2861e99668a5SLiam R. Howlett 
2862e99668a5SLiam R. Howlett 	if (file)
2863e99668a5SLiam R. Howlett 		uprobe_mmap(vma);
2864e99668a5SLiam R. Howlett 
2865e99668a5SLiam R. Howlett 	/*
2866e99668a5SLiam R. Howlett 	 * New (or expanded) vma always get soft dirty status.
2867e99668a5SLiam R. Howlett 	 * Otherwise user-space soft-dirty page tracker won't
2868e99668a5SLiam R. Howlett 	 * be able to distinguish situation when vma area unmapped,
2869e99668a5SLiam R. Howlett 	 * then new mapped in-place (which must be aimed as
2870e99668a5SLiam R. Howlett 	 * a completely new data area).
2871e99668a5SLiam R. Howlett 	 */
28721c71222eSSuren Baghdasaryan 	vm_flags_set(vma, VM_SOFTDIRTY);
2873e99668a5SLiam R. Howlett 
2874e99668a5SLiam R. Howlett 	vma_set_page_prot(vma);
2875e99668a5SLiam R. Howlett 
2876e99668a5SLiam R. Howlett 	validate_mm(mm);
2877e99668a5SLiam R. Howlett 	return addr;
2878e99668a5SLiam R. Howlett 
2879deb0f656SCarlos Llamas close_and_free_vma:
2880cc8d1b09SLiam R. Howlett 	if (file && vma->vm_ops && vma->vm_ops->close)
2881deb0f656SCarlos Llamas 		vma->vm_ops->close(vma);
2882cc8d1b09SLiam R. Howlett 
2883cc8d1b09SLiam R. Howlett 	if (file || vma->vm_file) {
2884e99668a5SLiam R. Howlett unmap_and_free_vma:
2885e99668a5SLiam R. Howlett 		fput(vma->vm_file);
2886e99668a5SLiam R. Howlett 		vma->vm_file = NULL;
2887e99668a5SLiam R. Howlett 
2888fd892593SLiam R. Howlett 		vma_iter_set(&vmi, vma->vm_end);
2889e99668a5SLiam R. Howlett 		/* Undo any partial mapping done by a device driver. */
2890fd892593SLiam R. Howlett 		unmap_region(mm, &vmi.mas, vma, prev, next, vma->vm_start,
2891fd892593SLiam R. Howlett 			     vma->vm_end, vma->vm_end, true);
2892cc8d1b09SLiam R. Howlett 	}
2893cc674ab3SLi Zetao 	if (file && (vm_flags & VM_SHARED))
2894e99668a5SLiam R. Howlett 		mapping_unmap_writable(file->f_mapping);
2895e99668a5SLiam R. Howlett free_vma:
2896e99668a5SLiam R. Howlett 	vm_area_free(vma);
2897e99668a5SLiam R. Howlett unacct_error:
2898e99668a5SLiam R. Howlett 	if (charged)
2899e99668a5SLiam R. Howlett 		vm_unacct_memory(charged);
2900e99668a5SLiam R. Howlett 	validate_mm(mm);
2901e99668a5SLiam R. Howlett 	return error;
2902e99668a5SLiam R. Howlett }
2903e99668a5SLiam R. Howlett 
2904408579cdSLiam R. Howlett static int __vm_munmap(unsigned long start, size_t len, bool unlock)
2905a46ef99dSLinus Torvalds {
2906a46ef99dSLinus Torvalds 	int ret;
2907bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
2908897ab3e0SMike Rapoport 	LIST_HEAD(uf);
2909183654ceSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, start);
2910a46ef99dSLinus Torvalds 
2911d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2912ae798783SMichal Hocko 		return -EINTR;
2913ae798783SMichal Hocko 
2914408579cdSLiam R. Howlett 	ret = do_vmi_munmap(&vmi, mm, start, len, &uf, unlock);
2915408579cdSLiam R. Howlett 	if (ret || !unlock)
2916d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
2917dd2283f2SYang Shi 
2918897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
2919a46ef99dSLinus Torvalds 	return ret;
2920a46ef99dSLinus Torvalds }
2921dd2283f2SYang Shi 
2922dd2283f2SYang Shi int vm_munmap(unsigned long start, size_t len)
2923dd2283f2SYang Shi {
2924dd2283f2SYang Shi 	return __vm_munmap(start, len, false);
2925dd2283f2SYang Shi }
2926a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
2927a46ef99dSLinus Torvalds 
29286a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
29291da177e4SLinus Torvalds {
2930ce18d171SCatalin Marinas 	addr = untagged_addr(addr);
2931dd2283f2SYang Shi 	return __vm_munmap(addr, len, true);
29321da177e4SLinus Torvalds }
29331da177e4SLinus Torvalds 
2934c8d78c18SKirill A. Shutemov 
2935c8d78c18SKirill A. Shutemov /*
2936c8d78c18SKirill A. Shutemov  * Emulation of deprecated remap_file_pages() syscall.
2937c8d78c18SKirill A. Shutemov  */
2938c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2939c8d78c18SKirill A. Shutemov 		unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2940c8d78c18SKirill A. Shutemov {
2941c8d78c18SKirill A. Shutemov 
2942c8d78c18SKirill A. Shutemov 	struct mm_struct *mm = current->mm;
2943c8d78c18SKirill A. Shutemov 	struct vm_area_struct *vma;
2944c8d78c18SKirill A. Shutemov 	unsigned long populate = 0;
2945c8d78c18SKirill A. Shutemov 	unsigned long ret = -EINVAL;
2946c8d78c18SKirill A. Shutemov 	struct file *file;
2947c8d78c18SKirill A. Shutemov 
2948ee65728eSMike Rapoport 	pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/mm/remap_file_pages.rst.\n",
2949c8d78c18SKirill A. Shutemov 		     current->comm, current->pid);
2950c8d78c18SKirill A. Shutemov 
2951c8d78c18SKirill A. Shutemov 	if (prot)
2952c8d78c18SKirill A. Shutemov 		return ret;
2953c8d78c18SKirill A. Shutemov 	start = start & PAGE_MASK;
2954c8d78c18SKirill A. Shutemov 	size = size & PAGE_MASK;
2955c8d78c18SKirill A. Shutemov 
2956c8d78c18SKirill A. Shutemov 	if (start + size <= start)
2957c8d78c18SKirill A. Shutemov 		return ret;
2958c8d78c18SKirill A. Shutemov 
2959c8d78c18SKirill A. Shutemov 	/* Does pgoff wrap? */
2960c8d78c18SKirill A. Shutemov 	if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2961c8d78c18SKirill A. Shutemov 		return ret;
2962c8d78c18SKirill A. Shutemov 
2963d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2964dc0ef0dfSMichal Hocko 		return -EINTR;
2965dc0ef0dfSMichal Hocko 
29669b593cb2SLiam R. Howlett 	vma = vma_lookup(mm, start);
2967c8d78c18SKirill A. Shutemov 
2968c8d78c18SKirill A. Shutemov 	if (!vma || !(vma->vm_flags & VM_SHARED))
2969c8d78c18SKirill A. Shutemov 		goto out;
2970c8d78c18SKirill A. Shutemov 
297148f7df32SKirill A. Shutemov 	if (start + size > vma->vm_end) {
2972763ecb03SLiam R. Howlett 		VMA_ITERATOR(vmi, mm, vma->vm_end);
2973763ecb03SLiam R. Howlett 		struct vm_area_struct *next, *prev = vma;
297448f7df32SKirill A. Shutemov 
2975763ecb03SLiam R. Howlett 		for_each_vma_range(vmi, next, start + size) {
297648f7df32SKirill A. Shutemov 			/* hole between vmas ? */
2977763ecb03SLiam R. Howlett 			if (next->vm_start != prev->vm_end)
297848f7df32SKirill A. Shutemov 				goto out;
297948f7df32SKirill A. Shutemov 
298048f7df32SKirill A. Shutemov 			if (next->vm_file != vma->vm_file)
298148f7df32SKirill A. Shutemov 				goto out;
298248f7df32SKirill A. Shutemov 
298348f7df32SKirill A. Shutemov 			if (next->vm_flags != vma->vm_flags)
298448f7df32SKirill A. Shutemov 				goto out;
298548f7df32SKirill A. Shutemov 
29861db43d3fSLiam Howlett 			if (start + size <= next->vm_end)
29871db43d3fSLiam Howlett 				break;
29881db43d3fSLiam Howlett 
2989763ecb03SLiam R. Howlett 			prev = next;
299048f7df32SKirill A. Shutemov 		}
299148f7df32SKirill A. Shutemov 
299248f7df32SKirill A. Shutemov 		if (!next)
2993c8d78c18SKirill A. Shutemov 			goto out;
2994c8d78c18SKirill A. Shutemov 	}
2995c8d78c18SKirill A. Shutemov 
2996c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2997c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2998c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2999c8d78c18SKirill A. Shutemov 
3000c8d78c18SKirill A. Shutemov 	flags &= MAP_NONBLOCK;
3001c8d78c18SKirill A. Shutemov 	flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
3002fce000b1SLiam Howlett 	if (vma->vm_flags & VM_LOCKED)
3003c8d78c18SKirill A. Shutemov 		flags |= MAP_LOCKED;
300448f7df32SKirill A. Shutemov 
3005c8d78c18SKirill A. Shutemov 	file = get_file(vma->vm_file);
300645e55300SPeter Collingbourne 	ret = do_mmap(vma->vm_file, start, size,
3007592b5fadSYu-cheng Yu 			prot, flags, 0, pgoff, &populate, NULL);
3008c8d78c18SKirill A. Shutemov 	fput(file);
3009c8d78c18SKirill A. Shutemov out:
3010d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3011c8d78c18SKirill A. Shutemov 	if (populate)
3012c8d78c18SKirill A. Shutemov 		mm_populate(ret, populate);
3013c8d78c18SKirill A. Shutemov 	if (!IS_ERR_VALUE(ret))
3014c8d78c18SKirill A. Shutemov 		ret = 0;
3015c8d78c18SKirill A. Shutemov 	return ret;
3016c8d78c18SKirill A. Shutemov }
3017c8d78c18SKirill A. Shutemov 
30181da177e4SLinus Torvalds /*
301927b26701SLiam R. Howlett  * do_vma_munmap() - Unmap a full or partial vma.
302027b26701SLiam R. Howlett  * @vmi: The vma iterator pointing at the vma
302127b26701SLiam R. Howlett  * @vma: The first vma to be munmapped
302227b26701SLiam R. Howlett  * @start: the start of the address to unmap
302327b26701SLiam R. Howlett  * @end: The end of the address to unmap
30242e7ce7d3SLiam R. Howlett  * @uf: The userfaultfd list_head
3025408579cdSLiam R. Howlett  * @unlock: Drop the lock on success
30262e7ce7d3SLiam R. Howlett  *
302727b26701SLiam R. Howlett  * unmaps a VMA mapping when the vma iterator is already in position.
302827b26701SLiam R. Howlett  * Does not handle alignment.
3029408579cdSLiam R. Howlett  *
3030408579cdSLiam R. Howlett  * Return: 0 on success drops the lock of so directed, error on failure and will
3031408579cdSLiam R. Howlett  * still hold the lock.
30321da177e4SLinus Torvalds  */
303327b26701SLiam R. Howlett int do_vma_munmap(struct vma_iterator *vmi, struct vm_area_struct *vma,
3034408579cdSLiam R. Howlett 		unsigned long start, unsigned long end, struct list_head *uf,
3035408579cdSLiam R. Howlett 		bool unlock)
30362e7ce7d3SLiam R. Howlett {
30372e7ce7d3SLiam R. Howlett 	struct mm_struct *mm = vma->vm_mm;
30382e7ce7d3SLiam R. Howlett 
303927b26701SLiam R. Howlett 	arch_unmap(mm, start, end);
3040b5641a5dSLinus Torvalds 	return do_vmi_align_munmap(vmi, vma, mm, start, end, uf, unlock);
30412e7ce7d3SLiam R. Howlett }
30422e7ce7d3SLiam R. Howlett 
30432e7ce7d3SLiam R. Howlett /*
30442e7ce7d3SLiam R. Howlett  * do_brk_flags() - Increase the brk vma if the flags match.
304592fed820SLiam R. Howlett  * @vmi: The vma iterator
30462e7ce7d3SLiam R. Howlett  * @addr: The start address
30472e7ce7d3SLiam R. Howlett  * @len: The length of the increase
30482e7ce7d3SLiam R. Howlett  * @vma: The vma,
30492e7ce7d3SLiam R. Howlett  * @flags: The VMA Flags
30502e7ce7d3SLiam R. Howlett  *
30512e7ce7d3SLiam R. Howlett  * Extend the brk VMA from addr to addr + len.  If the VMA is NULL or the flags
30522e7ce7d3SLiam R. Howlett  * do not match then create a new anonymous VMA.  Eventually we may be able to
30532e7ce7d3SLiam R. Howlett  * do some brk-specific accounting here.
30542e7ce7d3SLiam R. Howlett  */
305592fed820SLiam R. Howlett static int do_brk_flags(struct vma_iterator *vmi, struct vm_area_struct *vma,
3056763ecb03SLiam R. Howlett 		unsigned long addr, unsigned long len, unsigned long flags)
30571da177e4SLinus Torvalds {
30581da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
3059287051b1SLiam R. Howlett 	struct vma_prepare vp;
30602e7ce7d3SLiam R. Howlett 
30612e7ce7d3SLiam R. Howlett 	/*
30622e7ce7d3SLiam R. Howlett 	 * Check against address space limits by the changed size
30632e7ce7d3SLiam R. Howlett 	 * Note: This happens *after* clearing old mappings in some code paths.
30642e7ce7d3SLiam R. Howlett 	 */
306516e72e9bSDenys Vlasenko 	flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
306684638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
30671da177e4SLinus Torvalds 		return -ENOMEM;
30681da177e4SLinus Torvalds 
30691da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
30701da177e4SLinus Torvalds 		return -ENOMEM;
30711da177e4SLinus Torvalds 
3072191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
30731da177e4SLinus Torvalds 		return -ENOMEM;
30741da177e4SLinus Torvalds 
30751da177e4SLinus Torvalds 	/*
30762e7ce7d3SLiam R. Howlett 	 * Expand the existing vma if possible; Note that singular lists do not
30772e7ce7d3SLiam R. Howlett 	 * occur after forking, so the expand will only happen on new VMAs.
30781da177e4SLinus Torvalds 	 */
30796c28ca64SLiam Howlett 	if (vma && vma->vm_end == addr && !vma_policy(vma) &&
30806c28ca64SLiam Howlett 	    can_vma_merge_after(vma, flags, NULL, NULL,
30816c28ca64SLiam Howlett 				addr >> PAGE_SHIFT, NULL_VM_UFFD_CTX, NULL)) {
3082b5df0922SLiam R. Howlett 		vma_iter_config(vmi, vma->vm_start, addr + len);
3083b5df0922SLiam R. Howlett 		if (vma_iter_prealloc(vmi, vma))
3084675eaca1SAlistair Popple 			goto unacct_fail;
308528c5609fSLiam Howlett 
3086c9d6e982SSuren Baghdasaryan 		vma_start_write(vma);
3087c9d6e982SSuren Baghdasaryan 
3088287051b1SLiam R. Howlett 		init_vma_prep(&vp, vma);
3089287051b1SLiam R. Howlett 		vma_prepare(&vp);
3090ccf1d78dSSuren Baghdasaryan 		vma_adjust_trans_huge(vma, vma->vm_start, addr + len, 0);
30912e7ce7d3SLiam R. Howlett 		vma->vm_end = addr + len;
30921c71222eSSuren Baghdasaryan 		vm_flags_set(vma, VM_SOFTDIRTY);
309392fed820SLiam R. Howlett 		vma_iter_store(vmi, vma);
30942e7ce7d3SLiam R. Howlett 
3095287051b1SLiam R. Howlett 		vma_complete(&vp, vmi, mm);
30962e7ce7d3SLiam R. Howlett 		khugepaged_enter_vma(vma, flags);
30972e7ce7d3SLiam R. Howlett 		goto out;
30982e7ce7d3SLiam R. Howlett 	}
30992e7ce7d3SLiam R. Howlett 
3100b5df0922SLiam R. Howlett 	if (vma)
3101b5df0922SLiam R. Howlett 		vma_iter_next_range(vmi);
31022e7ce7d3SLiam R. Howlett 	/* create a vma struct for an anonymous mapping */
31032e7ce7d3SLiam R. Howlett 	vma = vm_area_alloc(mm);
31042e7ce7d3SLiam R. Howlett 	if (!vma)
3105675eaca1SAlistair Popple 		goto unacct_fail;
31061da177e4SLinus Torvalds 
3107bfd40eafSKirill A. Shutemov 	vma_set_anonymous(vma);
31081da177e4SLinus Torvalds 	vma->vm_start = addr;
31091da177e4SLinus Torvalds 	vma->vm_end = addr + len;
31102e7ce7d3SLiam R. Howlett 	vma->vm_pgoff = addr >> PAGE_SHIFT;
31111c71222eSSuren Baghdasaryan 	vm_flags_init(vma, flags);
31123ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
3113ad9f0063SSuren Baghdasaryan 	vma_start_write(vma);
311492fed820SLiam R. Howlett 	if (vma_iter_store_gfp(vmi, vma, GFP_KERNEL))
31152e7ce7d3SLiam R. Howlett 		goto mas_store_fail;
3116d4af56c5SLiam R. Howlett 
31172e7ce7d3SLiam R. Howlett 	mm->map_count++;
31182574d5e4SLiam R. Howlett 	validate_mm(mm);
3119d7597f59SStefan Roesch 	ksm_add_vma(vma);
31201da177e4SLinus Torvalds out:
31213af9e859SEric B Munson 	perf_event_mmap(vma);
31221da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
312384638335SKonstantin Khlebnikov 	mm->data_vm += len >> PAGE_SHIFT;
3124128557ffSMichel Lespinasse 	if (flags & VM_LOCKED)
3125ba470de4SRik van Riel 		mm->locked_vm += (len >> PAGE_SHIFT);
31261c71222eSSuren Baghdasaryan 	vm_flags_set(vma, VM_SOFTDIRTY);
31275d22fc25SLinus Torvalds 	return 0;
3128d4af56c5SLiam R. Howlett 
31292e7ce7d3SLiam R. Howlett mas_store_fail:
3130d4af56c5SLiam R. Howlett 	vm_area_free(vma);
3131675eaca1SAlistair Popple unacct_fail:
31322e7ce7d3SLiam R. Howlett 	vm_unacct_memory(len >> PAGE_SHIFT);
31332e7ce7d3SLiam R. Howlett 	return -ENOMEM;
31341da177e4SLinus Torvalds }
31351da177e4SLinus Torvalds 
3136bb177a73SMichal Hocko int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags)
3137e4eb1ff6SLinus Torvalds {
3138e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
31392e7ce7d3SLiam R. Howlett 	struct vm_area_struct *vma = NULL;
3140bb177a73SMichal Hocko 	unsigned long len;
31415d22fc25SLinus Torvalds 	int ret;
3142128557ffSMichel Lespinasse 	bool populate;
3143897ab3e0SMike Rapoport 	LIST_HEAD(uf);
314492fed820SLiam R. Howlett 	VMA_ITERATOR(vmi, mm, addr);
3145e4eb1ff6SLinus Torvalds 
3146bb177a73SMichal Hocko 	len = PAGE_ALIGN(request);
3147bb177a73SMichal Hocko 	if (len < request)
3148bb177a73SMichal Hocko 		return -ENOMEM;
3149bb177a73SMichal Hocko 	if (!len)
3150bb177a73SMichal Hocko 		return 0;
3151bb177a73SMichal Hocko 
31522e7ce7d3SLiam R. Howlett 	/* Until we need other flags, refuse anything except VM_EXEC. */
31532e7ce7d3SLiam R. Howlett 	if ((flags & (~VM_EXEC)) != 0)
31542e7ce7d3SLiam R. Howlett 		return -EINVAL;
31552e7ce7d3SLiam R. Howlett 
3156e0f81ab1SSebastian Ott 	if (mmap_write_lock_killable(mm))
3157e0f81ab1SSebastian Ott 		return -EINTR;
3158e0f81ab1SSebastian Ott 
31592e7ce7d3SLiam R. Howlett 	ret = check_brk_limits(addr, len);
31602e7ce7d3SLiam R. Howlett 	if (ret)
31612e7ce7d3SLiam R. Howlett 		goto limits_failed;
31622e7ce7d3SLiam R. Howlett 
3163183654ceSLiam R. Howlett 	ret = do_vmi_munmap(&vmi, mm, addr, len, &uf, 0);
31642e7ce7d3SLiam R. Howlett 	if (ret)
31652e7ce7d3SLiam R. Howlett 		goto munmap_failed;
31662e7ce7d3SLiam R. Howlett 
316792fed820SLiam R. Howlett 	vma = vma_prev(&vmi);
316892fed820SLiam R. Howlett 	ret = do_brk_flags(&vmi, vma, addr, len, flags);
3169128557ffSMichel Lespinasse 	populate = ((mm->def_flags & VM_LOCKED) != 0);
3170d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3171897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
31725d22fc25SLinus Torvalds 	if (populate && !ret)
3173128557ffSMichel Lespinasse 		mm_populate(addr, len);
3174e4eb1ff6SLinus Torvalds 	return ret;
31752e7ce7d3SLiam R. Howlett 
31762e7ce7d3SLiam R. Howlett munmap_failed:
31772e7ce7d3SLiam R. Howlett limits_failed:
31782e7ce7d3SLiam R. Howlett 	mmap_write_unlock(mm);
31792e7ce7d3SLiam R. Howlett 	return ret;
3180e4eb1ff6SLinus Torvalds }
318116e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags);
318216e72e9bSDenys Vlasenko 
318316e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len)
318416e72e9bSDenys Vlasenko {
318516e72e9bSDenys Vlasenko 	return vm_brk_flags(addr, len, 0);
318616e72e9bSDenys Vlasenko }
3187e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
31881da177e4SLinus Torvalds 
31891da177e4SLinus Torvalds /* Release all mmaps. */
31901da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
31911da177e4SLinus Torvalds {
3192d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
3193ba470de4SRik van Riel 	struct vm_area_struct *vma;
31941da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
3195763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
3196763ecb03SLiam R. Howlett 	int count = 0;
31971da177e4SLinus Torvalds 
3198d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
3199cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
3200d6dd61c8SJeremy Fitzhardinge 
3201bf3980c8SSuren Baghdasaryan 	mmap_read_lock(mm);
32029480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
32039480c53eSJeremy Fitzhardinge 
3204763ecb03SLiam R. Howlett 	vma = mas_find(&mas, ULONG_MAX);
320564591e86SSuren Baghdasaryan 	if (!vma) {
320664591e86SSuren Baghdasaryan 		/* Can happen if dup_mmap() received an OOM */
3207bf3980c8SSuren Baghdasaryan 		mmap_read_unlock(mm);
32089480c53eSJeremy Fitzhardinge 		return;
320964591e86SSuren Baghdasaryan 	}
32109480c53eSJeremy Fitzhardinge 
32111da177e4SLinus Torvalds 	lru_add_drain();
32121da177e4SLinus Torvalds 	flush_cache_mm(mm);
3213d8b45053SWill Deacon 	tlb_gather_mmu_fullmm(&tlb, mm);
3214901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
3215763ecb03SLiam R. Howlett 	/* Use ULONG_MAX here to ensure all VMAs in the mm are unmapped */
3216fd892593SLiam R. Howlett 	unmap_vmas(&tlb, &mas, vma, 0, ULONG_MAX, ULONG_MAX, false);
3217bf3980c8SSuren Baghdasaryan 	mmap_read_unlock(mm);
3218bf3980c8SSuren Baghdasaryan 
3219bf3980c8SSuren Baghdasaryan 	/*
3220bf3980c8SSuren Baghdasaryan 	 * Set MMF_OOM_SKIP to hide this task from the oom killer/reaper
3221b3541d91SSuren Baghdasaryan 	 * because the memory has been already freed.
3222bf3980c8SSuren Baghdasaryan 	 */
3223bf3980c8SSuren Baghdasaryan 	set_bit(MMF_OOM_SKIP, &mm->flags);
3224bf3980c8SSuren Baghdasaryan 	mmap_write_lock(mm);
32253dd44325SLiam R. Howlett 	mt_clear_in_rcu(&mm->mm_mt);
3226fd892593SLiam R. Howlett 	mas_set(&mas, vma->vm_end);
3227fd892593SLiam R. Howlett 	free_pgtables(&tlb, &mas, vma, FIRST_USER_ADDRESS,
322898e51a22SSuren Baghdasaryan 		      USER_PGTABLES_CEILING, true);
3229ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
32301da177e4SLinus Torvalds 
3231763ecb03SLiam R. Howlett 	/*
3232763ecb03SLiam R. Howlett 	 * Walk the list again, actually closing and freeing it, with preemption
3233763ecb03SLiam R. Howlett 	 * enabled, without holding any MM locks besides the unreachable
3234763ecb03SLiam R. Howlett 	 * mmap_write_lock.
3235763ecb03SLiam R. Howlett 	 */
3236fd892593SLiam R. Howlett 	mas_set(&mas, vma->vm_end);
3237763ecb03SLiam R. Howlett 	do {
32384f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
32394f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
32400d2ebf9cSSuren Baghdasaryan 		remove_vma(vma, true);
3241763ecb03SLiam R. Howlett 		count++;
32420a3b3c25SPaul E. McKenney 		cond_resched();
3243763ecb03SLiam R. Howlett 	} while ((vma = mas_find(&mas, ULONG_MAX)) != NULL);
3244763ecb03SLiam R. Howlett 
3245763ecb03SLiam R. Howlett 	BUG_ON(count != mm->map_count);
3246d4af56c5SLiam R. Howlett 
3247d4af56c5SLiam R. Howlett 	trace_exit_mmap(mm);
3248d4af56c5SLiam R. Howlett 	__mt_destroy(&mm->mm_mt);
324964591e86SSuren Baghdasaryan 	mmap_write_unlock(mm);
32504f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
32511da177e4SLinus Torvalds }
32521da177e4SLinus Torvalds 
32531da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
32541da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
3255c8c06efaSDavidlohr Bueso  * then i_mmap_rwsem is taken here.
32561da177e4SLinus Torvalds  */
32571da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
32581da177e4SLinus Torvalds {
3259d4af56c5SLiam R. Howlett 	unsigned long charged = vma_pages(vma);
32601da177e4SLinus Torvalds 
3261d4af56c5SLiam R. Howlett 
3262d0601a50SLiam R. Howlett 	if (find_vma_intersection(mm, vma->vm_start, vma->vm_end))
3263c9d13f5fSChen Gang 		return -ENOMEM;
3264d4af56c5SLiam R. Howlett 
3265c9d13f5fSChen Gang 	if ((vma->vm_flags & VM_ACCOUNT) &&
3266d4af56c5SLiam R. Howlett 	     security_vm_enough_memory_mm(mm, charged))
3267c9d13f5fSChen Gang 		return -ENOMEM;
3268c9d13f5fSChen Gang 
32691da177e4SLinus Torvalds 	/*
32701da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
32711da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
32721da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
32731da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
32741da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
32751da177e4SLinus Torvalds 	 *
32761da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
32771da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
32781da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
32798332326eSLiao Pingfang 	 * Similarly in do_mmap and in do_brk_flags.
32801da177e4SLinus Torvalds 	 */
32818a9cc3b5SOleg Nesterov 	if (vma_is_anonymous(vma)) {
32821da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
32831da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
32841da177e4SLinus Torvalds 	}
32852b144498SSrikar Dronamraju 
3286763ecb03SLiam R. Howlett 	if (vma_link(mm, vma)) {
3287d4af56c5SLiam R. Howlett 		vm_unacct_memory(charged);
3288d4af56c5SLiam R. Howlett 		return -ENOMEM;
3289d4af56c5SLiam R. Howlett 	}
3290d4af56c5SLiam R. Howlett 
32911da177e4SLinus Torvalds 	return 0;
32921da177e4SLinus Torvalds }
32931da177e4SLinus Torvalds 
32941da177e4SLinus Torvalds /*
32951da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
32961da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
32971da177e4SLinus Torvalds  */
32981da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
329938a76013SMichel Lespinasse 	unsigned long addr, unsigned long len, pgoff_t pgoff,
330038a76013SMichel Lespinasse 	bool *need_rmap_locks)
33011da177e4SLinus Torvalds {
33021da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
33031da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
33041da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
33051da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
3306948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
3307076f16bfSLiam R. Howlett 	VMA_ITERATOR(vmi, mm, addr);
33081da177e4SLinus Torvalds 
33091da177e4SLinus Torvalds 	/*
33101da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
33111da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
33121da177e4SLinus Torvalds 	 */
3313ce75799bSOleg Nesterov 	if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
33141da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
3315948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
3316948f017bSAndrea Arcangeli 	}
33171da177e4SLinus Torvalds 
3318763ecb03SLiam R. Howlett 	new_vma = find_vma_prev(mm, addr, &prev);
3319763ecb03SLiam R. Howlett 	if (new_vma && new_vma->vm_start < addr + len)
33206597d783SHugh Dickins 		return NULL;	/* should never get here */
3321524e00b3SLiam R. Howlett 
33229760ebffSLiam R. Howlett 	new_vma = vma_merge(&vmi, mm, prev, addr, addr + len, vma->vm_flags,
332319a809afSAndrea Arcangeli 			    vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
33245c26f6acSSuren Baghdasaryan 			    vma->vm_userfaultfd_ctx, anon_vma_name(vma));
33251da177e4SLinus Torvalds 	if (new_vma) {
33261da177e4SLinus Torvalds 		/*
33271da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
33281da177e4SLinus Torvalds 		 */
3329948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
3330948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
3331948f017bSAndrea Arcangeli 			/*
3332948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
3333948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
3334948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
3335948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
3336948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
3337948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
3338948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
3339948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
3340948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
3341948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
3342948f017bSAndrea Arcangeli 			 */
334381d1b09cSSasha Levin 			VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
334438a76013SMichel Lespinasse 			*vmap = vma = new_vma;
3345108d6642SMichel Lespinasse 		}
334638a76013SMichel Lespinasse 		*need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
33471da177e4SLinus Torvalds 	} else {
33483928d4f5SLinus Torvalds 		new_vma = vm_area_dup(vma);
3349e3975891SChen Gang 		if (!new_vma)
3350e3975891SChen Gang 			goto out;
33511da177e4SLinus Torvalds 		new_vma->vm_start = addr;
33521da177e4SLinus Torvalds 		new_vma->vm_end = addr + len;
33531da177e4SLinus Torvalds 		new_vma->vm_pgoff = pgoff;
3354ef0855d3SOleg Nesterov 		if (vma_dup_policy(vma, new_vma))
3355523d4e20SMichel Lespinasse 			goto out_free_vma;
3356523d4e20SMichel Lespinasse 		if (anon_vma_clone(new_vma, vma))
3357523d4e20SMichel Lespinasse 			goto out_free_mempol;
3358e9714acfSKonstantin Khlebnikov 		if (new_vma->vm_file)
33591da177e4SLinus Torvalds 			get_file(new_vma->vm_file);
33601da177e4SLinus Torvalds 		if (new_vma->vm_ops && new_vma->vm_ops->open)
33611da177e4SLinus Torvalds 			new_vma->vm_ops->open(new_vma);
3362763ecb03SLiam R. Howlett 		if (vma_link(mm, new_vma))
3363524e00b3SLiam R. Howlett 			goto out_vma_link;
336438a76013SMichel Lespinasse 		*need_rmap_locks = false;
33651da177e4SLinus Torvalds 	}
33661da177e4SLinus Torvalds 	return new_vma;
33675beb4930SRik van Riel 
3368524e00b3SLiam R. Howlett out_vma_link:
3369524e00b3SLiam R. Howlett 	if (new_vma->vm_ops && new_vma->vm_ops->close)
3370524e00b3SLiam R. Howlett 		new_vma->vm_ops->close(new_vma);
337192b73996SLiam Howlett 
337292b73996SLiam Howlett 	if (new_vma->vm_file)
337392b73996SLiam Howlett 		fput(new_vma->vm_file);
337492b73996SLiam Howlett 
337592b73996SLiam Howlett 	unlink_anon_vmas(new_vma);
33765beb4930SRik van Riel out_free_mempol:
3377ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new_vma));
33785beb4930SRik van Riel out_free_vma:
33793928d4f5SLinus Torvalds 	vm_area_free(new_vma);
3380e3975891SChen Gang out:
33815beb4930SRik van Riel 	return NULL;
33821da177e4SLinus Torvalds }
3383119f657cSakpm@osdl.org 
3384119f657cSakpm@osdl.org /*
3385119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
3386119f657cSakpm@osdl.org  * number of pages
3387119f657cSakpm@osdl.org  */
338884638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3389119f657cSakpm@osdl.org {
339084638335SKonstantin Khlebnikov 	if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
339184638335SKonstantin Khlebnikov 		return false;
3392119f657cSakpm@osdl.org 
3393d977d56cSKonstantin Khlebnikov 	if (is_data_mapping(flags) &&
3394d977d56cSKonstantin Khlebnikov 	    mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3395f4fcd558SKonstantin Khlebnikov 		/* Workaround for Valgrind */
3396f4fcd558SKonstantin Khlebnikov 		if (rlimit(RLIMIT_DATA) == 0 &&
3397f4fcd558SKonstantin Khlebnikov 		    mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3398f4fcd558SKonstantin Khlebnikov 			return true;
339957a7702bSDavid Woodhouse 
340057a7702bSDavid Woodhouse 		pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits%s.\n",
3401d977d56cSKonstantin Khlebnikov 			     current->comm, current->pid,
3402d977d56cSKonstantin Khlebnikov 			     (mm->data_vm + npages) << PAGE_SHIFT,
340357a7702bSDavid Woodhouse 			     rlimit(RLIMIT_DATA),
340457a7702bSDavid Woodhouse 			     ignore_rlimit_data ? "" : " or use boot option ignore_rlimit_data");
340557a7702bSDavid Woodhouse 
340657a7702bSDavid Woodhouse 		if (!ignore_rlimit_data)
3407d977d56cSKonstantin Khlebnikov 			return false;
3408d977d56cSKonstantin Khlebnikov 	}
3409119f657cSakpm@osdl.org 
341084638335SKonstantin Khlebnikov 	return true;
341184638335SKonstantin Khlebnikov }
341284638335SKonstantin Khlebnikov 
341384638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
341484638335SKonstantin Khlebnikov {
34157866076bSPeng Liu 	WRITE_ONCE(mm->total_vm, READ_ONCE(mm->total_vm)+npages);
341684638335SKonstantin Khlebnikov 
3417d977d56cSKonstantin Khlebnikov 	if (is_exec_mapping(flags))
341884638335SKonstantin Khlebnikov 		mm->exec_vm += npages;
3419d977d56cSKonstantin Khlebnikov 	else if (is_stack_mapping(flags))
342084638335SKonstantin Khlebnikov 		mm->stack_vm += npages;
3421d977d56cSKonstantin Khlebnikov 	else if (is_data_mapping(flags))
342284638335SKonstantin Khlebnikov 		mm->data_vm += npages;
3423119f657cSakpm@osdl.org }
3424fa5dc22fSRoland McGrath 
3425b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf);
3426a62c34bdSAndy Lutomirski 
3427a62c34bdSAndy Lutomirski /*
3428a62c34bdSAndy Lutomirski  * Having a close hook prevents vma merging regardless of flags.
3429a62c34bdSAndy Lutomirski  */
3430a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma)
3431a62c34bdSAndy Lutomirski {
3432a62c34bdSAndy Lutomirski }
3433a62c34bdSAndy Lutomirski 
3434a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma)
3435a62c34bdSAndy Lutomirski {
3436a62c34bdSAndy Lutomirski 	return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3437a62c34bdSAndy Lutomirski }
3438a62c34bdSAndy Lutomirski 
343914d07113SBrian Geffon static int special_mapping_mremap(struct vm_area_struct *new_vma)
3440b059a453SDmitry Safonov {
3441b059a453SDmitry Safonov 	struct vm_special_mapping *sm = new_vma->vm_private_data;
3442b059a453SDmitry Safonov 
3443280e87e9SDmitry Safonov 	if (WARN_ON_ONCE(current->mm != new_vma->vm_mm))
3444280e87e9SDmitry Safonov 		return -EFAULT;
3445280e87e9SDmitry Safonov 
3446b059a453SDmitry Safonov 	if (sm->mremap)
3447b059a453SDmitry Safonov 		return sm->mremap(sm, new_vma);
3448280e87e9SDmitry Safonov 
3449b059a453SDmitry Safonov 	return 0;
3450b059a453SDmitry Safonov }
3451b059a453SDmitry Safonov 
3452871402e0SDmitry Safonov static int special_mapping_split(struct vm_area_struct *vma, unsigned long addr)
3453871402e0SDmitry Safonov {
3454871402e0SDmitry Safonov 	/*
3455871402e0SDmitry Safonov 	 * Forbid splitting special mappings - kernel has expectations over
3456871402e0SDmitry Safonov 	 * the number of pages in mapping. Together with VM_DONTEXPAND
3457871402e0SDmitry Safonov 	 * the size of vma should stay the same over the special mapping's
3458871402e0SDmitry Safonov 	 * lifetime.
3459871402e0SDmitry Safonov 	 */
3460871402e0SDmitry Safonov 	return -EINVAL;
3461871402e0SDmitry Safonov }
3462871402e0SDmitry Safonov 
3463a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = {
3464a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3465a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3466b059a453SDmitry Safonov 	.mremap = special_mapping_mremap,
3467a62c34bdSAndy Lutomirski 	.name = special_mapping_name,
3468af34ebebSDmitry Safonov 	/* vDSO code relies that VVAR can't be accessed remotely */
3469af34ebebSDmitry Safonov 	.access = NULL,
3470871402e0SDmitry Safonov 	.may_split = special_mapping_split,
3471a62c34bdSAndy Lutomirski };
3472a62c34bdSAndy Lutomirski 
3473a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = {
3474a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3475a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3476a62c34bdSAndy Lutomirski };
3477fa5dc22fSRoland McGrath 
3478b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf)
3479fa5dc22fSRoland McGrath {
348011bac800SDave Jiang 	struct vm_area_struct *vma = vmf->vma;
3481b1d0e4f5SNick Piggin 	pgoff_t pgoff;
3482fa5dc22fSRoland McGrath 	struct page **pages;
3483fa5dc22fSRoland McGrath 
3484f872f540SAndy Lutomirski 	if (vma->vm_ops == &legacy_special_mapping_vmops) {
3485a62c34bdSAndy Lutomirski 		pages = vma->vm_private_data;
3486f872f540SAndy Lutomirski 	} else {
3487f872f540SAndy Lutomirski 		struct vm_special_mapping *sm = vma->vm_private_data;
3488f872f540SAndy Lutomirski 
3489f872f540SAndy Lutomirski 		if (sm->fault)
349011bac800SDave Jiang 			return sm->fault(sm, vmf->vma, vmf);
3491f872f540SAndy Lutomirski 
3492f872f540SAndy Lutomirski 		pages = sm->pages;
3493f872f540SAndy Lutomirski 	}
3494a62c34bdSAndy Lutomirski 
34958a9cc3b5SOleg Nesterov 	for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3496b1d0e4f5SNick Piggin 		pgoff--;
3497fa5dc22fSRoland McGrath 
3498fa5dc22fSRoland McGrath 	if (*pages) {
3499fa5dc22fSRoland McGrath 		struct page *page = *pages;
3500fa5dc22fSRoland McGrath 		get_page(page);
3501b1d0e4f5SNick Piggin 		vmf->page = page;
3502b1d0e4f5SNick Piggin 		return 0;
3503fa5dc22fSRoland McGrath 	}
3504fa5dc22fSRoland McGrath 
3505b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
3506fa5dc22fSRoland McGrath }
3507fa5dc22fSRoland McGrath 
3508a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping(
3509a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3510fa5dc22fSRoland McGrath 	unsigned long addr, unsigned long len,
351127f28b97SChen Gang 	unsigned long vm_flags, void *priv,
351227f28b97SChen Gang 	const struct vm_operations_struct *ops)
3513fa5dc22fSRoland McGrath {
3514462e635eSTavis Ormandy 	int ret;
3515fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
3516fa5dc22fSRoland McGrath 
3517490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
3518fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
35193935ed6aSStefani Seibold 		return ERR_PTR(-ENOMEM);
3520fa5dc22fSRoland McGrath 
3521fa5dc22fSRoland McGrath 	vma->vm_start = addr;
3522fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
3523fa5dc22fSRoland McGrath 
3524e430a95aSSuren Baghdasaryan 	vm_flags_init(vma, (vm_flags | mm->def_flags |
3525e430a95aSSuren Baghdasaryan 		      VM_DONTEXPAND | VM_SOFTDIRTY) & ~VM_LOCKED_MASK);
35263ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3527fa5dc22fSRoland McGrath 
3528a62c34bdSAndy Lutomirski 	vma->vm_ops = ops;
3529a62c34bdSAndy Lutomirski 	vma->vm_private_data = priv;
3530fa5dc22fSRoland McGrath 
3531462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
3532462e635eSTavis Ormandy 	if (ret)
3533462e635eSTavis Ormandy 		goto out;
3534fa5dc22fSRoland McGrath 
353584638335SKonstantin Khlebnikov 	vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3536fa5dc22fSRoland McGrath 
3537cdd6c482SIngo Molnar 	perf_event_mmap(vma);
3538089dd79dSPeter Zijlstra 
35393935ed6aSStefani Seibold 	return vma;
3540462e635eSTavis Ormandy 
3541462e635eSTavis Ormandy out:
35423928d4f5SLinus Torvalds 	vm_area_free(vma);
35433935ed6aSStefani Seibold 	return ERR_PTR(ret);
35443935ed6aSStefani Seibold }
35453935ed6aSStefani Seibold 
35462eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma,
35472eefd878SDmitry Safonov 	const struct vm_special_mapping *sm)
35482eefd878SDmitry Safonov {
35492eefd878SDmitry Safonov 	return vma->vm_private_data == sm &&
35502eefd878SDmitry Safonov 		(vma->vm_ops == &special_mapping_vmops ||
35512eefd878SDmitry Safonov 		 vma->vm_ops == &legacy_special_mapping_vmops);
35522eefd878SDmitry Safonov }
35532eefd878SDmitry Safonov 
3554a62c34bdSAndy Lutomirski /*
3555c1e8d7c6SMichel Lespinasse  * Called with mm->mmap_lock held for writing.
3556a62c34bdSAndy Lutomirski  * Insert a new vma covering the given region, with the given flags.
3557a62c34bdSAndy Lutomirski  * Its pages are supplied by the given array of struct page *.
3558a62c34bdSAndy Lutomirski  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3559a62c34bdSAndy Lutomirski  * The region past the last page supplied will always produce SIGBUS.
3560a62c34bdSAndy Lutomirski  * The array pointer and the pages it points to are assumed to stay alive
3561a62c34bdSAndy Lutomirski  * for as long as this mapping might exist.
3562a62c34bdSAndy Lutomirski  */
3563a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping(
3564a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3565a62c34bdSAndy Lutomirski 	unsigned long addr, unsigned long len,
3566a62c34bdSAndy Lutomirski 	unsigned long vm_flags, const struct vm_special_mapping *spec)
3567a62c34bdSAndy Lutomirski {
356827f28b97SChen Gang 	return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
356927f28b97SChen Gang 					&special_mapping_vmops);
3570a62c34bdSAndy Lutomirski }
3571a62c34bdSAndy Lutomirski 
35723935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm,
35733935ed6aSStefani Seibold 			    unsigned long addr, unsigned long len,
35743935ed6aSStefani Seibold 			    unsigned long vm_flags, struct page **pages)
35753935ed6aSStefani Seibold {
3576a62c34bdSAndy Lutomirski 	struct vm_area_struct *vma = __install_special_mapping(
357727f28b97SChen Gang 		mm, addr, len, vm_flags, (void *)pages,
357827f28b97SChen Gang 		&legacy_special_mapping_vmops);
35793935ed6aSStefani Seibold 
358014bd5b45SDuan Jiong 	return PTR_ERR_OR_ZERO(vma);
3581fa5dc22fSRoland McGrath }
35827906d00cSAndrea Arcangeli 
35837906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
35847906d00cSAndrea Arcangeli 
3585454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
35867906d00cSAndrea Arcangeli {
3587f808c13fSDavidlohr Bueso 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
35887906d00cSAndrea Arcangeli 		/*
35897906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
35907906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
35917906d00cSAndrea Arcangeli 		 */
3592da1c55f1SMichel Lespinasse 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
35937906d00cSAndrea Arcangeli 		/*
35947906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
35955a505085SIngo Molnar 		 * anon_vma->root->rwsem. If some other vma in this mm shares
35967906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
35977906d00cSAndrea Arcangeli 		 *
35987906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
35997906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
36005a505085SIngo Molnar 		 * anon_vma->root->rwsem.
36017906d00cSAndrea Arcangeli 		 */
36027906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
3603f808c13fSDavidlohr Bueso 				       &anon_vma->root->rb_root.rb_root.rb_node))
36047906d00cSAndrea Arcangeli 			BUG();
36057906d00cSAndrea Arcangeli 	}
36067906d00cSAndrea Arcangeli }
36077906d00cSAndrea Arcangeli 
3608454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
36097906d00cSAndrea Arcangeli {
36107906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
36117906d00cSAndrea Arcangeli 		/*
36127906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
36137906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
36147906d00cSAndrea Arcangeli 		 *
36157906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
36167906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
36177906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
36187906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
36197906d00cSAndrea Arcangeli 		 */
36207906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
36217906d00cSAndrea Arcangeli 			BUG();
3622da1c55f1SMichel Lespinasse 		down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_lock);
36237906d00cSAndrea Arcangeli 	}
36247906d00cSAndrea Arcangeli }
36257906d00cSAndrea Arcangeli 
36267906d00cSAndrea Arcangeli /*
36277906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
36287906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
36297906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
36307906d00cSAndrea Arcangeli  *
3631c1e8d7c6SMichel Lespinasse  * The caller must take the mmap_lock in write mode before calling
36327906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
3633c1e8d7c6SMichel Lespinasse  * mmap_lock until mm_drop_all_locks() returns.
36347906d00cSAndrea Arcangeli  *
3635c1e8d7c6SMichel Lespinasse  * mmap_lock in write mode is required in order to block all operations
36367906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
363727ba0644SKirill A. Shutemov  * altering the vma layout. It's also needed in write mode to avoid new
36387906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
36397906d00cSAndrea Arcangeli  *
36407906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
36417906d00cSAndrea Arcangeli  * or it would deadlock.
36427906d00cSAndrea Arcangeli  *
3643bf181b9fSMichel Lespinasse  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
36447906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
36457906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
36467906d00cSAndrea Arcangeli  *
364788f306b6SKirill A. Shutemov  * We take locks in following order, accordingly to comment at beginning
364888f306b6SKirill A. Shutemov  * of mm/rmap.c:
364988f306b6SKirill A. Shutemov  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
365088f306b6SKirill A. Shutemov  *     hugetlb mapping);
3651eeff9a5dSSuren Baghdasaryan  *   - all vmas marked locked
365288f306b6SKirill A. Shutemov  *   - all i_mmap_rwsem locks;
365388f306b6SKirill A. Shutemov  *   - all anon_vma->rwseml
365488f306b6SKirill A. Shutemov  *
365588f306b6SKirill A. Shutemov  * We can take all locks within these types randomly because the VM code
365688f306b6SKirill A. Shutemov  * doesn't nest them and we protected from parallel mm_take_all_locks() by
365788f306b6SKirill A. Shutemov  * mm_all_locks_mutex.
36587906d00cSAndrea Arcangeli  *
36597906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
36607906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
36617906d00cSAndrea Arcangeli  *
36627906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
36637906d00cSAndrea Arcangeli  */
36647906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
36657906d00cSAndrea Arcangeli {
36667906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
36675beb4930SRik van Riel 	struct anon_vma_chain *avc;
3668763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
36697906d00cSAndrea Arcangeli 
3670325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
36717906d00cSAndrea Arcangeli 
36727906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
36737906d00cSAndrea Arcangeli 
367490717566SJann Horn 	/*
367590717566SJann Horn 	 * vma_start_write() does not have a complement in mm_drop_all_locks()
367690717566SJann Horn 	 * because vma_start_write() is always asymmetrical; it marks a VMA as
367790717566SJann Horn 	 * being written to until mmap_write_unlock() or mmap_write_downgrade()
367890717566SJann Horn 	 * is reached.
367990717566SJann Horn 	 */
3680763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
36817906d00cSAndrea Arcangeli 		if (signal_pending(current))
36827906d00cSAndrea Arcangeli 			goto out_unlock;
3683eeff9a5dSSuren Baghdasaryan 		vma_start_write(vma);
3684eeff9a5dSSuren Baghdasaryan 	}
3685eeff9a5dSSuren Baghdasaryan 
3686eeff9a5dSSuren Baghdasaryan 	mas_set(&mas, 0);
3687eeff9a5dSSuren Baghdasaryan 	mas_for_each(&mas, vma, ULONG_MAX) {
3688eeff9a5dSSuren Baghdasaryan 		if (signal_pending(current))
3689eeff9a5dSSuren Baghdasaryan 			goto out_unlock;
369088f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
369188f306b6SKirill A. Shutemov 				is_vm_hugetlb_page(vma))
369288f306b6SKirill A. Shutemov 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
369388f306b6SKirill A. Shutemov 	}
369488f306b6SKirill A. Shutemov 
3695763ecb03SLiam R. Howlett 	mas_set(&mas, 0);
3696763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
369788f306b6SKirill A. Shutemov 		if (signal_pending(current))
369888f306b6SKirill A. Shutemov 			goto out_unlock;
369988f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
370088f306b6SKirill A. Shutemov 				!is_vm_hugetlb_page(vma))
3701454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
37027906d00cSAndrea Arcangeli 	}
37037cd5a02fSPeter Zijlstra 
3704763ecb03SLiam R. Howlett 	mas_set(&mas, 0);
3705763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
37067cd5a02fSPeter Zijlstra 		if (signal_pending(current))
37077cd5a02fSPeter Zijlstra 			goto out_unlock;
37087cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
37095beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
37105beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
37117cd5a02fSPeter Zijlstra 	}
37127cd5a02fSPeter Zijlstra 
3713584cff54SKautuk Consul 	return 0;
37147906d00cSAndrea Arcangeli 
37157906d00cSAndrea Arcangeli out_unlock:
37167906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
3717584cff54SKautuk Consul 	return -EINTR;
37187906d00cSAndrea Arcangeli }
37197906d00cSAndrea Arcangeli 
37207906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
37217906d00cSAndrea Arcangeli {
3722f808c13fSDavidlohr Bueso 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
37237906d00cSAndrea Arcangeli 		/*
37247906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
37257906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
37267906d00cSAndrea Arcangeli 		 *
37277906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
3728bf181b9fSMichel Lespinasse 		 * the vma so the users using the anon_vma->rb_root will
37297906d00cSAndrea Arcangeli 		 * never see our bitflag.
37307906d00cSAndrea Arcangeli 		 *
37317906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
37327906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
37335a505085SIngo Molnar 		 * anon_vma->root->rwsem.
37347906d00cSAndrea Arcangeli 		 */
37357906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
3736f808c13fSDavidlohr Bueso 					  &anon_vma->root->rb_root.rb_root.rb_node))
37377906d00cSAndrea Arcangeli 			BUG();
373808b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
37397906d00cSAndrea Arcangeli 	}
37407906d00cSAndrea Arcangeli }
37417906d00cSAndrea Arcangeli 
37427906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
37437906d00cSAndrea Arcangeli {
37447906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
37457906d00cSAndrea Arcangeli 		/*
37467906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
37477906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
37487906d00cSAndrea Arcangeli 		 */
374983cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
37507906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
37517906d00cSAndrea Arcangeli 					&mapping->flags))
37527906d00cSAndrea Arcangeli 			BUG();
37537906d00cSAndrea Arcangeli 	}
37547906d00cSAndrea Arcangeli }
37557906d00cSAndrea Arcangeli 
37567906d00cSAndrea Arcangeli /*
3757c1e8d7c6SMichel Lespinasse  * The mmap_lock cannot be released by the caller until
37587906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
37597906d00cSAndrea Arcangeli  */
37607906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
37617906d00cSAndrea Arcangeli {
37627906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
37635beb4930SRik van Riel 	struct anon_vma_chain *avc;
3764763ecb03SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
37657906d00cSAndrea Arcangeli 
3766325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
37677906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
37687906d00cSAndrea Arcangeli 
3769763ecb03SLiam R. Howlett 	mas_for_each(&mas, vma, ULONG_MAX) {
37707906d00cSAndrea Arcangeli 		if (vma->anon_vma)
37715beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
37725beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
37737906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
37747906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
37757906d00cSAndrea Arcangeli 	}
37767906d00cSAndrea Arcangeli 
37777906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
37787906d00cSAndrea Arcangeli }
37798feae131SDavid Howells 
37808feae131SDavid Howells /*
37813edf41d8Sseokhoon.yoon  * initialise the percpu counter for VM
37828feae131SDavid Howells  */
37838feae131SDavid Howells void __init mmap_init(void)
37848feae131SDavid Howells {
378500a62ce9SKOSAKI Motohiro 	int ret;
378600a62ce9SKOSAKI Motohiro 
3787908c7f19STejun Heo 	ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
378800a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
37898feae131SDavid Howells }
3790c9b1d098SAndrew Shewmaker 
3791c9b1d098SAndrew Shewmaker /*
3792c9b1d098SAndrew Shewmaker  * Initialise sysctl_user_reserve_kbytes.
3793c9b1d098SAndrew Shewmaker  *
3794c9b1d098SAndrew Shewmaker  * This is intended to prevent a user from starting a single memory hogging
3795c9b1d098SAndrew Shewmaker  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3796c9b1d098SAndrew Shewmaker  * mode.
3797c9b1d098SAndrew Shewmaker  *
3798c9b1d098SAndrew Shewmaker  * The default value is min(3% of free memory, 128MB)
3799c9b1d098SAndrew Shewmaker  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3800c9b1d098SAndrew Shewmaker  */
38011640879aSAndrew Shewmaker static int init_user_reserve(void)
3802c9b1d098SAndrew Shewmaker {
3803c9b1d098SAndrew Shewmaker 	unsigned long free_kbytes;
3804c9b1d098SAndrew Shewmaker 
3805b1773e0eSZhangPeng 	free_kbytes = K(global_zone_page_state(NR_FREE_PAGES));
3806c9b1d098SAndrew Shewmaker 
3807c9b1d098SAndrew Shewmaker 	sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3808c9b1d098SAndrew Shewmaker 	return 0;
3809c9b1d098SAndrew Shewmaker }
3810a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve);
38114eeab4f5SAndrew Shewmaker 
38124eeab4f5SAndrew Shewmaker /*
38134eeab4f5SAndrew Shewmaker  * Initialise sysctl_admin_reserve_kbytes.
38144eeab4f5SAndrew Shewmaker  *
38154eeab4f5SAndrew Shewmaker  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
38164eeab4f5SAndrew Shewmaker  * to log in and kill a memory hogging process.
38174eeab4f5SAndrew Shewmaker  *
38184eeab4f5SAndrew Shewmaker  * Systems with more than 256MB will reserve 8MB, enough to recover
38194eeab4f5SAndrew Shewmaker  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
38204eeab4f5SAndrew Shewmaker  * only reserve 3% of free pages by default.
38214eeab4f5SAndrew Shewmaker  */
38221640879aSAndrew Shewmaker static int init_admin_reserve(void)
38234eeab4f5SAndrew Shewmaker {
38244eeab4f5SAndrew Shewmaker 	unsigned long free_kbytes;
38254eeab4f5SAndrew Shewmaker 
3826b1773e0eSZhangPeng 	free_kbytes = K(global_zone_page_state(NR_FREE_PAGES));
38274eeab4f5SAndrew Shewmaker 
38284eeab4f5SAndrew Shewmaker 	sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
38294eeab4f5SAndrew Shewmaker 	return 0;
38304eeab4f5SAndrew Shewmaker }
3831a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve);
38321640879aSAndrew Shewmaker 
38331640879aSAndrew Shewmaker /*
38341640879aSAndrew Shewmaker  * Reinititalise user and admin reserves if memory is added or removed.
38351640879aSAndrew Shewmaker  *
38361640879aSAndrew Shewmaker  * The default user reserve max is 128MB, and the default max for the
38371640879aSAndrew Shewmaker  * admin reserve is 8MB. These are usually, but not always, enough to
38381640879aSAndrew Shewmaker  * enable recovery from a memory hogging process using login/sshd, a shell,
38391640879aSAndrew Shewmaker  * and tools like top. It may make sense to increase or even disable the
38401640879aSAndrew Shewmaker  * reserve depending on the existence of swap or variations in the recovery
38411640879aSAndrew Shewmaker  * tools. So, the admin may have changed them.
38421640879aSAndrew Shewmaker  *
38431640879aSAndrew Shewmaker  * If memory is added and the reserves have been eliminated or increased above
38441640879aSAndrew Shewmaker  * the default max, then we'll trust the admin.
38451640879aSAndrew Shewmaker  *
38461640879aSAndrew Shewmaker  * If memory is removed and there isn't enough free memory, then we
38471640879aSAndrew Shewmaker  * need to reset the reserves.
38481640879aSAndrew Shewmaker  *
38491640879aSAndrew Shewmaker  * Otherwise keep the reserve set by the admin.
38501640879aSAndrew Shewmaker  */
38511640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb,
38521640879aSAndrew Shewmaker 			     unsigned long action, void *data)
38531640879aSAndrew Shewmaker {
38541640879aSAndrew Shewmaker 	unsigned long tmp, free_kbytes;
38551640879aSAndrew Shewmaker 
38561640879aSAndrew Shewmaker 	switch (action) {
38571640879aSAndrew Shewmaker 	case MEM_ONLINE:
38581640879aSAndrew Shewmaker 		/* Default max is 128MB. Leave alone if modified by operator. */
38591640879aSAndrew Shewmaker 		tmp = sysctl_user_reserve_kbytes;
38601640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 17))
38611640879aSAndrew Shewmaker 			init_user_reserve();
38621640879aSAndrew Shewmaker 
38631640879aSAndrew Shewmaker 		/* Default max is 8MB.  Leave alone if modified by operator. */
38641640879aSAndrew Shewmaker 		tmp = sysctl_admin_reserve_kbytes;
38651640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 13))
38661640879aSAndrew Shewmaker 			init_admin_reserve();
38671640879aSAndrew Shewmaker 
38681640879aSAndrew Shewmaker 		break;
38691640879aSAndrew Shewmaker 	case MEM_OFFLINE:
3870b1773e0eSZhangPeng 		free_kbytes = K(global_zone_page_state(NR_FREE_PAGES));
38711640879aSAndrew Shewmaker 
38721640879aSAndrew Shewmaker 		if (sysctl_user_reserve_kbytes > free_kbytes) {
38731640879aSAndrew Shewmaker 			init_user_reserve();
38741640879aSAndrew Shewmaker 			pr_info("vm.user_reserve_kbytes reset to %lu\n",
38751640879aSAndrew Shewmaker 				sysctl_user_reserve_kbytes);
38761640879aSAndrew Shewmaker 		}
38771640879aSAndrew Shewmaker 
38781640879aSAndrew Shewmaker 		if (sysctl_admin_reserve_kbytes > free_kbytes) {
38791640879aSAndrew Shewmaker 			init_admin_reserve();
38801640879aSAndrew Shewmaker 			pr_info("vm.admin_reserve_kbytes reset to %lu\n",
38811640879aSAndrew Shewmaker 				sysctl_admin_reserve_kbytes);
38821640879aSAndrew Shewmaker 		}
38831640879aSAndrew Shewmaker 		break;
38841640879aSAndrew Shewmaker 	default:
38851640879aSAndrew Shewmaker 		break;
38861640879aSAndrew Shewmaker 	}
38871640879aSAndrew Shewmaker 	return NOTIFY_OK;
38881640879aSAndrew Shewmaker }
38891640879aSAndrew Shewmaker 
38901640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void)
38911640879aSAndrew Shewmaker {
38921eeaa4fdSLiu Shixin 	if (hotplug_memory_notifier(reserve_mem_notifier, DEFAULT_CALLBACK_PRI))
3893b1de0d13SMitchel Humpherys 		pr_err("Failed registering memory add/remove notifier for admin reserve\n");
38941640879aSAndrew Shewmaker 
38951640879aSAndrew Shewmaker 	return 0;
38961640879aSAndrew Shewmaker }
3897a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier);
3898