xref: /linux/mm/mmap.c (revision abdba2dda0c477ca708a939b02f9b2e74666ed2d)
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>
17615d6e87SDavidlohr Bueso #include <linux/vmacache.h>
181da177e4SLinus Torvalds #include <linux/shm.h>
191da177e4SLinus Torvalds #include <linux/mman.h>
201da177e4SLinus Torvalds #include <linux/pagemap.h>
211da177e4SLinus Torvalds #include <linux/swap.h>
221da177e4SLinus Torvalds #include <linux/syscalls.h>
23c59ede7bSRandy.Dunlap #include <linux/capability.h>
241da177e4SLinus Torvalds #include <linux/init.h>
251da177e4SLinus Torvalds #include <linux/file.h>
261da177e4SLinus Torvalds #include <linux/fs.h>
271da177e4SLinus Torvalds #include <linux/personality.h>
281da177e4SLinus Torvalds #include <linux/security.h>
291da177e4SLinus Torvalds #include <linux/hugetlb.h>
30c01d5b30SHugh Dickins #include <linux/shmem_fs.h>
311da177e4SLinus Torvalds #include <linux/profile.h>
32b95f1b31SPaul Gortmaker #include <linux/export.h>
331da177e4SLinus Torvalds #include <linux/mount.h>
341da177e4SLinus Torvalds #include <linux/mempolicy.h>
351da177e4SLinus Torvalds #include <linux/rmap.h>
36cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
3782f71ae4SKonstantin Khlebnikov #include <linux/mmdebug.h>
38cdd6c482SIngo Molnar #include <linux/perf_event.h>
39120a795dSAl Viro #include <linux/audit.h>
40b15d00b6SAndrea Arcangeli #include <linux/khugepaged.h>
412b144498SSrikar Dronamraju #include <linux/uprobes.h>
421640879aSAndrew Shewmaker #include <linux/notifier.h>
431640879aSAndrew Shewmaker #include <linux/memory.h>
44b1de0d13SMitchel Humpherys #include <linux/printk.h>
4519a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h>
46d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h>
4762b5f7d0SDave Hansen #include <linux/pkeys.h>
4821292580SAndrea Arcangeli #include <linux/oom.h>
4904f5866eSAndrea Arcangeli #include <linux/sched/mm.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 
79e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm,
80e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
81e0da382cSHugh Dickins 		unsigned long start, unsigned long end);
82e0da382cSHugh Dickins 
8364e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
8464e45507SPeter Feiner {
8564e45507SPeter Feiner 	return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
8664e45507SPeter Feiner }
8764e45507SPeter Feiner 
8864e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */
8964e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma)
9064e45507SPeter Feiner {
9164e45507SPeter Feiner 	unsigned long vm_flags = vma->vm_flags;
926d2329f8SAndrea Arcangeli 	pgprot_t vm_page_prot;
9364e45507SPeter Feiner 
946d2329f8SAndrea Arcangeli 	vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
956d2329f8SAndrea Arcangeli 	if (vma_wants_writenotify(vma, vm_page_prot)) {
9664e45507SPeter Feiner 		vm_flags &= ~VM_SHARED;
976d2329f8SAndrea Arcangeli 		vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
9864e45507SPeter Feiner 	}
99c1e8d7c6SMichel Lespinasse 	/* remove_protection_ptes reads vma->vm_page_prot without mmap_lock */
1006d2329f8SAndrea Arcangeli 	WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
10164e45507SPeter Feiner }
10264e45507SPeter Feiner 
1031da177e4SLinus Torvalds /*
104c8c06efaSDavidlohr Bueso  * Requires inode->i_mapping->i_mmap_rwsem
1051da177e4SLinus Torvalds  */
1061da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma,
1071da177e4SLinus Torvalds 		struct file *file, struct address_space *mapping)
1081da177e4SLinus Torvalds {
1091da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
1104bb5f5d9SDavid Herrmann 		mapping_unmap_writable(mapping);
1111da177e4SLinus Torvalds 
1121da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
1136b2dbba8SMichel Lespinasse 	vma_interval_tree_remove(vma, &mapping->i_mmap);
1141da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
1151da177e4SLinus Torvalds }
1161da177e4SLinus Torvalds 
1171da177e4SLinus Torvalds /*
1186b2dbba8SMichel Lespinasse  * Unlink a file-based vm structure from its interval tree, to hide
119a8fb5618SHugh Dickins  * vma from rmap and vmtruncate before freeing its page tables.
1201da177e4SLinus Torvalds  */
121a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma)
1221da177e4SLinus Torvalds {
1231da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
1241da177e4SLinus Torvalds 
1251da177e4SLinus Torvalds 	if (file) {
1261da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
12783cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
1281da177e4SLinus Torvalds 		__remove_shared_vm_struct(vma, file, mapping);
12983cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
1301da177e4SLinus Torvalds 	}
131a8fb5618SHugh Dickins }
132a8fb5618SHugh Dickins 
133a8fb5618SHugh Dickins /*
134a8fb5618SHugh Dickins  * Close a vm structure and free it, returning the next.
135a8fb5618SHugh Dickins  */
136a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
137a8fb5618SHugh Dickins {
138a8fb5618SHugh Dickins 	struct vm_area_struct *next = vma->vm_next;
139a8fb5618SHugh Dickins 
140a8fb5618SHugh Dickins 	might_sleep();
1411da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
1421da177e4SLinus Torvalds 		vma->vm_ops->close(vma);
143e9714acfSKonstantin Khlebnikov 	if (vma->vm_file)
144a8fb5618SHugh Dickins 		fput(vma->vm_file);
145f0be3d32SLee Schermerhorn 	mpol_put(vma_policy(vma));
1463928d4f5SLinus Torvalds 	vm_area_free(vma);
147a8fb5618SHugh Dickins 	return next;
1481da177e4SLinus Torvalds }
1491da177e4SLinus Torvalds 
1502e7ce7d3SLiam R. Howlett /*
1512e7ce7d3SLiam R. Howlett  * check_brk_limits() - Use platform specific check of range & verify mlock
1522e7ce7d3SLiam R. Howlett  * limits.
1532e7ce7d3SLiam R. Howlett  * @addr: The address to check
1542e7ce7d3SLiam R. Howlett  * @len: The size of increase.
1552e7ce7d3SLiam R. Howlett  *
1562e7ce7d3SLiam R. Howlett  * Return: 0 on success.
1572e7ce7d3SLiam R. Howlett  */
1582e7ce7d3SLiam R. Howlett static int check_brk_limits(unsigned long addr, unsigned long len)
1592e7ce7d3SLiam R. Howlett {
1602e7ce7d3SLiam R. Howlett 	unsigned long mapped_addr;
1612e7ce7d3SLiam R. Howlett 
1622e7ce7d3SLiam R. Howlett 	mapped_addr = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
1632e7ce7d3SLiam R. Howlett 	if (IS_ERR_VALUE(mapped_addr))
1642e7ce7d3SLiam R. Howlett 		return mapped_addr;
1652e7ce7d3SLiam R. Howlett 
1662e7ce7d3SLiam R. Howlett 	return mlock_future_check(current->mm, current->mm->def_flags, len);
1672e7ce7d3SLiam R. Howlett }
1682e7ce7d3SLiam R. Howlett static int do_brk_munmap(struct ma_state *mas, struct vm_area_struct *vma,
1692e7ce7d3SLiam R. Howlett 			 unsigned long newbrk, unsigned long oldbrk,
170bb177a73SMichal Hocko 			 struct list_head *uf);
1712e7ce7d3SLiam R. Howlett static int do_brk_flags(struct ma_state *mas, struct vm_area_struct *brkvma,
1722e7ce7d3SLiam R. Howlett 			unsigned long addr, unsigned long request,
1732e7ce7d3SLiam R. Howlett 			unsigned long flags);
1746a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
1751da177e4SLinus Torvalds {
1769bc8039eSYang Shi 	unsigned long newbrk, oldbrk, origbrk;
1771da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1782e7ce7d3SLiam R. Howlett 	struct vm_area_struct *brkvma, *next = NULL;
179a5b4592cSJiri Kosina 	unsigned long min_brk;
180128557ffSMichel Lespinasse 	bool populate;
1819bc8039eSYang Shi 	bool downgraded = false;
182897ab3e0SMike Rapoport 	LIST_HEAD(uf);
1832e7ce7d3SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
1841da177e4SLinus Torvalds 
185d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
186dc0ef0dfSMichal Hocko 		return -EINTR;
1871da177e4SLinus Torvalds 
1889bc8039eSYang Shi 	origbrk = mm->brk;
1899bc8039eSYang Shi 
190a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
1915520e894SJiri Kosina 	/*
1925520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
1935520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
1945520e894SJiri Kosina 	 * to be arbitrarily shifted
1955520e894SJiri Kosina 	 */
1964471a675SJiri Kosina 	if (current->brk_randomized)
1975520e894SJiri Kosina 		min_brk = mm->start_brk;
1985520e894SJiri Kosina 	else
1995520e894SJiri Kosina 		min_brk = mm->end_data;
200a5b4592cSJiri Kosina #else
201a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
202a5b4592cSJiri Kosina #endif
203a5b4592cSJiri Kosina 	if (brk < min_brk)
2041da177e4SLinus Torvalds 		goto out;
2051e624196SRam Gupta 
2061e624196SRam Gupta 	/*
2071e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
2081e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
2091e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
2101e624196SRam Gupta 	 * not page aligned -Ram Gupta
2111e624196SRam Gupta 	 */
2128764b338SCyrill Gorcunov 	if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
2138764b338SCyrill Gorcunov 			      mm->end_data, mm->start_data))
2141e624196SRam Gupta 		goto out;
2151e624196SRam Gupta 
2161da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
2171da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
2189bc8039eSYang Shi 	if (oldbrk == newbrk) {
2199bc8039eSYang Shi 		mm->brk = brk;
2209bc8039eSYang Shi 		goto success;
2219bc8039eSYang Shi 	}
2221da177e4SLinus Torvalds 
2239bc8039eSYang Shi 	/*
2249bc8039eSYang Shi 	 * Always allow shrinking brk.
2252e7ce7d3SLiam R. Howlett 	 * do_brk_munmap() may downgrade mmap_lock to read.
2269bc8039eSYang Shi 	 */
2271da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2289bc8039eSYang Shi 		int ret;
2299bc8039eSYang Shi 
2302e7ce7d3SLiam R. Howlett 		/* Search one past newbrk */
2312e7ce7d3SLiam R. Howlett 		mas_set(&mas, newbrk);
2322e7ce7d3SLiam R. Howlett 		brkvma = mas_find(&mas, oldbrk);
2332e7ce7d3SLiam R. Howlett 		BUG_ON(brkvma == NULL);
2342e7ce7d3SLiam R. Howlett 		if (brkvma->vm_start >= oldbrk)
2352e7ce7d3SLiam R. Howlett 			goto out; /* mapping intersects with an existing non-brk vma. */
2369bc8039eSYang Shi 		/*
2372e7ce7d3SLiam R. Howlett 		 * mm->brk must be protected by write mmap_lock.
2382e7ce7d3SLiam R. Howlett 		 * do_brk_munmap() may downgrade the lock,  so update it
2392e7ce7d3SLiam R. Howlett 		 * before calling do_brk_munmap().
2409bc8039eSYang Shi 		 */
2419bc8039eSYang Shi 		mm->brk = brk;
2422e7ce7d3SLiam R. Howlett 		mas.last = oldbrk - 1;
2432e7ce7d3SLiam R. Howlett 		ret = do_brk_munmap(&mas, brkvma, newbrk, oldbrk, &uf);
2442e7ce7d3SLiam R. Howlett 		if (ret == 1)  {
2452e7ce7d3SLiam R. Howlett 			downgraded = true;
2462e7ce7d3SLiam R. Howlett 			goto success;
2472e7ce7d3SLiam R. Howlett 		} else if (!ret)
2482e7ce7d3SLiam R. Howlett 			goto success;
2492e7ce7d3SLiam R. Howlett 
2509bc8039eSYang Shi 		mm->brk = origbrk;
2511da177e4SLinus Torvalds 		goto out;
2521da177e4SLinus Torvalds 	}
2531da177e4SLinus Torvalds 
2542e7ce7d3SLiam R. Howlett 	if (check_brk_limits(oldbrk, newbrk - oldbrk))
2552e7ce7d3SLiam R. Howlett 		goto out;
2562e7ce7d3SLiam R. Howlett 
2572e7ce7d3SLiam R. Howlett 	/*
2582e7ce7d3SLiam R. Howlett 	 * Only check if the next VMA is within the stack_guard_gap of the
2592e7ce7d3SLiam R. Howlett 	 * expansion area
2602e7ce7d3SLiam R. Howlett 	 */
2612e7ce7d3SLiam R. Howlett 	mas_set(&mas, oldbrk);
2622e7ce7d3SLiam R. Howlett 	next = mas_find(&mas, newbrk - 1 + PAGE_SIZE + stack_guard_gap);
2631be7107fSHugh Dickins 	if (next && newbrk + PAGE_SIZE > vm_start_gap(next))
2641da177e4SLinus Torvalds 		goto out;
2651da177e4SLinus Torvalds 
2662e7ce7d3SLiam R. Howlett 	brkvma = mas_prev(&mas, mm->start_brk);
2671da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
2682e7ce7d3SLiam R. Howlett 	if (do_brk_flags(&mas, brkvma, oldbrk, newbrk - oldbrk, 0) < 0)
2691da177e4SLinus Torvalds 		goto out;
2702e7ce7d3SLiam R. Howlett 
2711da177e4SLinus Torvalds 	mm->brk = brk;
2729bc8039eSYang Shi 
2739bc8039eSYang Shi success:
274128557ffSMichel Lespinasse 	populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
2759bc8039eSYang Shi 	if (downgraded)
276d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2779bc8039eSYang Shi 	else
278d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
279897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
280128557ffSMichel Lespinasse 	if (populate)
281128557ffSMichel Lespinasse 		mm_populate(oldbrk, newbrk - oldbrk);
282128557ffSMichel Lespinasse 	return brk;
283128557ffSMichel Lespinasse 
2841da177e4SLinus Torvalds out:
285d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
286b7204006SAdrian Huang 	return origbrk;
2871da177e4SLinus Torvalds }
2881da177e4SLinus Torvalds 
289d4af56c5SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
290d4af56c5SLiam R. Howlett extern void mt_validate(struct maple_tree *mt);
291d4af56c5SLiam R. Howlett extern void mt_dump(const struct maple_tree *mt);
2921da177e4SLinus Torvalds 
293d4af56c5SLiam R. Howlett /* Validate the maple tree */
294d4af56c5SLiam R. Howlett static void validate_mm_mt(struct mm_struct *mm)
295d4af56c5SLiam R. Howlett {
296d4af56c5SLiam R. Howlett 	struct maple_tree *mt = &mm->mm_mt;
297d4af56c5SLiam R. Howlett 	struct vm_area_struct *vma_mt, *vma = mm->mmap;
298d4af56c5SLiam R. Howlett 
299d4af56c5SLiam R. Howlett 	MA_STATE(mas, mt, 0, 0);
300d4af56c5SLiam R. Howlett 
301d4af56c5SLiam R. Howlett 	mt_validate(&mm->mm_mt);
302d4af56c5SLiam R. Howlett 	mas_for_each(&mas, vma_mt, ULONG_MAX) {
303d4af56c5SLiam R. Howlett 		if (xa_is_zero(vma_mt))
304d4af56c5SLiam R. Howlett 			continue;
305d4af56c5SLiam R. Howlett 
306d4af56c5SLiam R. Howlett 		if (!vma)
307d4af56c5SLiam R. Howlett 			break;
308d4af56c5SLiam R. Howlett 
309d4af56c5SLiam R. Howlett 		if ((vma != vma_mt) ||
310d4af56c5SLiam R. Howlett 		    (vma->vm_start != vma_mt->vm_start) ||
311d4af56c5SLiam R. Howlett 		    (vma->vm_end != vma_mt->vm_end) ||
312d4af56c5SLiam R. Howlett 		    (vma->vm_start != mas.index) ||
313d4af56c5SLiam R. Howlett 		    (vma->vm_end - 1 != mas.last)) {
314d4af56c5SLiam R. Howlett 			pr_emerg("issue in %s\n", current->comm);
315d4af56c5SLiam R. Howlett 			dump_stack();
316d4af56c5SLiam R. Howlett 			dump_vma(vma_mt);
317524e00b3SLiam R. Howlett 			pr_emerg("and vm_next\n");
318d4af56c5SLiam R. Howlett 			dump_vma(vma->vm_next);
319d4af56c5SLiam R. Howlett 			pr_emerg("mt piv: %p %lu - %lu\n", vma_mt,
320d4af56c5SLiam R. Howlett 				 mas.index, mas.last);
321d4af56c5SLiam R. Howlett 			pr_emerg("mt vma: %p %lu - %lu\n", vma_mt,
322d4af56c5SLiam R. Howlett 				 vma_mt->vm_start, vma_mt->vm_end);
323524e00b3SLiam R. Howlett 			if (vma->vm_prev) {
324524e00b3SLiam R. Howlett 				pr_emerg("ll prev: %p %lu - %lu\n",
325524e00b3SLiam R. Howlett 					 vma->vm_prev, vma->vm_prev->vm_start,
326524e00b3SLiam R. Howlett 					 vma->vm_prev->vm_end);
327524e00b3SLiam R. Howlett 			}
328524e00b3SLiam R. Howlett 			pr_emerg("ll vma: %p %lu - %lu\n", vma,
329d4af56c5SLiam R. Howlett 				 vma->vm_start, vma->vm_end);
330524e00b3SLiam R. Howlett 			if (vma->vm_next) {
331524e00b3SLiam R. Howlett 				pr_emerg("ll next: %p %lu - %lu\n",
332524e00b3SLiam R. Howlett 					 vma->vm_next, vma->vm_next->vm_start,
333524e00b3SLiam R. Howlett 					 vma->vm_next->vm_end);
334524e00b3SLiam R. Howlett 			}
335d4af56c5SLiam R. Howlett 
336d4af56c5SLiam R. Howlett 			mt_dump(mas.tree);
337d4af56c5SLiam R. Howlett 			if (vma_mt->vm_end != mas.last + 1) {
338d4af56c5SLiam R. Howlett 				pr_err("vma: %p vma_mt %lu-%lu\tmt %lu-%lu\n",
339d4af56c5SLiam R. Howlett 						mm, vma_mt->vm_start, vma_mt->vm_end,
340d4af56c5SLiam R. Howlett 						mas.index, mas.last);
341d4af56c5SLiam R. Howlett 				mt_dump(mas.tree);
342d4af56c5SLiam R. Howlett 			}
343d4af56c5SLiam R. Howlett 			VM_BUG_ON_MM(vma_mt->vm_end != mas.last + 1, mm);
344d4af56c5SLiam R. Howlett 			if (vma_mt->vm_start != mas.index) {
345d4af56c5SLiam R. Howlett 				pr_err("vma: %p vma_mt %p %lu - %lu doesn't match\n",
346d4af56c5SLiam R. Howlett 						mm, vma_mt, vma_mt->vm_start, vma_mt->vm_end);
347d4af56c5SLiam R. Howlett 				mt_dump(mas.tree);
348d4af56c5SLiam R. Howlett 			}
349d4af56c5SLiam R. Howlett 			VM_BUG_ON_MM(vma_mt->vm_start != mas.index, mm);
350d4af56c5SLiam R. Howlett 		}
351d4af56c5SLiam R. Howlett 		VM_BUG_ON(vma != vma_mt);
352d4af56c5SLiam R. Howlett 		vma = vma->vm_next;
353d4af56c5SLiam R. Howlett 
354d4af56c5SLiam R. Howlett 	}
355d4af56c5SLiam R. Howlett 	VM_BUG_ON(vma);
356d4af56c5SLiam R. Howlett }
3571da177e4SLinus Torvalds 
358eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm)
3591da177e4SLinus Torvalds {
3601da177e4SLinus Torvalds 	int bug = 0;
3611da177e4SLinus Torvalds 	int i = 0;
3625a0768f6SMichel Lespinasse 	unsigned long highest_address = 0;
363ed8ea815SMichel Lespinasse 	struct vm_area_struct *vma = mm->mmap;
364ff26f70fSAndrew Morton 
365524e00b3SLiam R. Howlett 	validate_mm_mt(mm);
366524e00b3SLiam R. Howlett 
367ed8ea815SMichel Lespinasse 	while (vma) {
368524e00b3SLiam R. Howlett #ifdef CONFIG_DEBUG_VM_RB
36912352d3cSKonstantin Khlebnikov 		struct anon_vma *anon_vma = vma->anon_vma;
370ed8ea815SMichel Lespinasse 		struct anon_vma_chain *avc;
371ff26f70fSAndrew Morton 
37212352d3cSKonstantin Khlebnikov 		if (anon_vma) {
37312352d3cSKonstantin Khlebnikov 			anon_vma_lock_read(anon_vma);
374ed8ea815SMichel Lespinasse 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
375ed8ea815SMichel Lespinasse 				anon_vma_interval_tree_verify(avc);
37612352d3cSKonstantin Khlebnikov 			anon_vma_unlock_read(anon_vma);
37712352d3cSKonstantin Khlebnikov 		}
378524e00b3SLiam R. Howlett #endif
37912352d3cSKonstantin Khlebnikov 
3801be7107fSHugh Dickins 		highest_address = vm_end_gap(vma);
381ed8ea815SMichel Lespinasse 		vma = vma->vm_next;
3821da177e4SLinus Torvalds 		i++;
3831da177e4SLinus Torvalds 	}
3845a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
3858542bdfcSSasha Levin 		pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
3865a0768f6SMichel Lespinasse 		bug = 1;
3875a0768f6SMichel Lespinasse 	}
3885a0768f6SMichel Lespinasse 	if (highest_address != mm->highest_vm_end) {
3898542bdfcSSasha Levin 		pr_emerg("mm->highest_vm_end %lx, found %lx\n",
3905a0768f6SMichel Lespinasse 			  mm->highest_vm_end, highest_address);
3915a0768f6SMichel Lespinasse 		bug = 1;
3925a0768f6SMichel Lespinasse 	}
39396dad67fSSasha Levin 	VM_BUG_ON_MM(bug, mm);
3941da177e4SLinus Torvalds }
395524e00b3SLiam R. Howlett 
396524e00b3SLiam R. Howlett #else /* !CONFIG_DEBUG_VM_MAPLE_TREE */
397d4af56c5SLiam R. Howlett #define validate_mm_mt(root) do { } while (0)
3981da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
399524e00b3SLiam R. Howlett #endif /* CONFIG_DEBUG_VM_MAPLE_TREE */
400d3737187SMichel Lespinasse 
401bf181b9fSMichel Lespinasse /*
402bf181b9fSMichel Lespinasse  * vma has some anon_vma assigned, and is already inserted on that
403bf181b9fSMichel Lespinasse  * anon_vma's interval trees.
404bf181b9fSMichel Lespinasse  *
405bf181b9fSMichel Lespinasse  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
406bf181b9fSMichel Lespinasse  * vma must be removed from the anon_vma's interval trees using
407bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_pre_update_vma().
408bf181b9fSMichel Lespinasse  *
409bf181b9fSMichel Lespinasse  * After the update, the vma will be reinserted using
410bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_post_update_vma().
411bf181b9fSMichel Lespinasse  *
412c1e8d7c6SMichel Lespinasse  * The entire update must be protected by exclusive mmap_lock and by
413bf181b9fSMichel Lespinasse  * the root anon_vma's mutex.
414bf181b9fSMichel Lespinasse  */
415bf181b9fSMichel Lespinasse static inline void
416bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
417bf181b9fSMichel Lespinasse {
418bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
419bf181b9fSMichel Lespinasse 
420bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
421bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
422bf181b9fSMichel Lespinasse }
423bf181b9fSMichel Lespinasse 
424bf181b9fSMichel Lespinasse static inline void
425bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
426bf181b9fSMichel Lespinasse {
427bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
428bf181b9fSMichel Lespinasse 
429bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
430bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
431bf181b9fSMichel Lespinasse }
432bf181b9fSMichel Lespinasse 
433524e00b3SLiam R. Howlett /*
434524e00b3SLiam R. Howlett  * range_has_overlap() - Check the @start - @end range for overlapping VMAs and
435524e00b3SLiam R. Howlett  * sets up a pointer to the previous VMA
436524e00b3SLiam R. Howlett  * @mm: the mm struct
437524e00b3SLiam R. Howlett  * @start: the start address of the range
438524e00b3SLiam R. Howlett  * @end: the end address of the range
439524e00b3SLiam R. Howlett  * @pprev: the pointer to the pointer of the previous VMA
440524e00b3SLiam R. Howlett  *
441524e00b3SLiam R. Howlett  * Returns: True if there is an overlapping VMA, false otherwise
442524e00b3SLiam R. Howlett  */
443524e00b3SLiam R. Howlett static inline
444524e00b3SLiam R. Howlett bool range_has_overlap(struct mm_struct *mm, unsigned long start,
445524e00b3SLiam R. Howlett 		       unsigned long end, struct vm_area_struct **pprev)
4461da177e4SLinus Torvalds {
447524e00b3SLiam R. Howlett 	struct vm_area_struct *existing;
4481da177e4SLinus Torvalds 
449524e00b3SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, start, start);
450524e00b3SLiam R. Howlett 	existing = mas_find(&mas, end - 1);
451524e00b3SLiam R. Howlett 	*pprev = mas_prev(&mas, 0);
452524e00b3SLiam R. Howlett 	return existing ? true : false;
4531da177e4SLinus Torvalds }
4541da177e4SLinus Torvalds 
4553903b55aSLiam R. Howlett /*
456f39af059SMatthew Wilcox (Oracle)  * __vma_next() - Get the next VMA.
4573903b55aSLiam R. Howlett  * @mm: The mm_struct.
4583903b55aSLiam R. Howlett  * @vma: The current vma.
4593903b55aSLiam R. Howlett  *
4603903b55aSLiam R. Howlett  * If @vma is NULL, return the first vma in the mm.
4613903b55aSLiam R. Howlett  *
4623903b55aSLiam R. Howlett  * Returns: The next VMA after @vma.
4633903b55aSLiam R. Howlett  */
464f39af059SMatthew Wilcox (Oracle) static inline struct vm_area_struct *__vma_next(struct mm_struct *mm,
4653903b55aSLiam R. Howlett 					 struct vm_area_struct *vma)
4663903b55aSLiam R. Howlett {
4673903b55aSLiam R. Howlett 	if (!vma)
4683903b55aSLiam R. Howlett 		return mm->mmap;
4693903b55aSLiam R. Howlett 
4703903b55aSLiam R. Howlett 	return vma->vm_next;
4713903b55aSLiam R. Howlett }
472fb8090b6SLiam R. Howlett 
473fb8090b6SLiam R. Howlett /*
474fb8090b6SLiam R. Howlett  * munmap_vma_range() - munmap VMAs that overlap a range.
475fb8090b6SLiam R. Howlett  * @mm: The mm struct
476fb8090b6SLiam R. Howlett  * @start: The start of the range.
477fb8090b6SLiam R. Howlett  * @len: The length of the range.
478fb8090b6SLiam R. Howlett  * @pprev: pointer to the pointer that will be set to previous vm_area_struct
479fb8090b6SLiam R. Howlett  *
480fb8090b6SLiam R. Howlett  * Find all the vm_area_struct that overlap from @start to
481fb8090b6SLiam R. Howlett  * @end and munmap them.  Set @pprev to the previous vm_area_struct.
482fb8090b6SLiam R. Howlett  *
483fb8090b6SLiam R. Howlett  * Returns: -ENOMEM on munmap failure or 0 on success.
484fb8090b6SLiam R. Howlett  */
485fb8090b6SLiam R. Howlett static inline int
486fb8090b6SLiam R. Howlett munmap_vma_range(struct mm_struct *mm, unsigned long start, unsigned long len,
487524e00b3SLiam R. Howlett 		 struct vm_area_struct **pprev, struct list_head *uf)
488fb8090b6SLiam R. Howlett {
489524e00b3SLiam R. Howlett 	while (range_has_overlap(mm, start, start + len, pprev))
490fb8090b6SLiam R. Howlett 		if (do_munmap(mm, start, len, uf))
491fb8090b6SLiam R. Howlett 			return -ENOMEM;
492fb8090b6SLiam R. Howlett 	return 0;
493fb8090b6SLiam R. Howlett }
4942e3af1dbSMatthew Wilcox (Oracle) 
495e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm,
496e8420a8eSCyril Hrubis 		unsigned long addr, unsigned long end)
497e8420a8eSCyril Hrubis {
4982e3af1dbSMatthew Wilcox (Oracle) 	VMA_ITERATOR(vmi, mm, addr);
499e8420a8eSCyril Hrubis 	struct vm_area_struct *vma;
5002e3af1dbSMatthew Wilcox (Oracle) 	unsigned long nr_pages = 0;
501e8420a8eSCyril Hrubis 
5022e3af1dbSMatthew Wilcox (Oracle) 	for_each_vma_range(vmi, vma, end) {
5032e3af1dbSMatthew Wilcox (Oracle) 		unsigned long vm_start = max(addr, vma->vm_start);
5042e3af1dbSMatthew Wilcox (Oracle) 		unsigned long vm_end = min(end, vma->vm_end);
505e8420a8eSCyril Hrubis 
5062e3af1dbSMatthew Wilcox (Oracle) 		nr_pages += PHYS_PFN(vm_end - vm_start);
507e8420a8eSCyril Hrubis 	}
508e8420a8eSCyril Hrubis 
509e8420a8eSCyril Hrubis 	return nr_pages;
510e8420a8eSCyril Hrubis }
511e8420a8eSCyril Hrubis 
512cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma)
5131da177e4SLinus Torvalds {
5141da177e4SLinus Torvalds 	struct file *file;
5151da177e4SLinus Torvalds 
5161da177e4SLinus Torvalds 	file = vma->vm_file;
5171da177e4SLinus Torvalds 	if (file) {
5181da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
5191da177e4SLinus Torvalds 
5201da177e4SLinus Torvalds 		if (vma->vm_flags & VM_SHARED)
521cf508b58SMiaohe Lin 			mapping_allow_writable(mapping);
5221da177e4SLinus Torvalds 
5231da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
5246b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, &mapping->i_mmap);
5251da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
5261da177e4SLinus Torvalds 	}
5271da177e4SLinus Torvalds }
5281da177e4SLinus Torvalds 
529d4af56c5SLiam R. Howlett /*
530d4af56c5SLiam R. Howlett  * vma_mas_store() - Store a VMA in the maple tree.
531d4af56c5SLiam R. Howlett  * @vma: The vm_area_struct
532d4af56c5SLiam R. Howlett  * @mas: The maple state
533d4af56c5SLiam R. Howlett  *
534d4af56c5SLiam R. Howlett  * Efficient way to store a VMA in the maple tree when the @mas has already
535d4af56c5SLiam R. Howlett  * walked to the correct location.
536d4af56c5SLiam R. Howlett  *
537d4af56c5SLiam R. Howlett  * Note: the end address is inclusive in the maple tree.
538d4af56c5SLiam R. Howlett  */
539d4af56c5SLiam R. Howlett void vma_mas_store(struct vm_area_struct *vma, struct ma_state *mas)
540d4af56c5SLiam R. Howlett {
541d4af56c5SLiam R. Howlett 	trace_vma_store(mas->tree, vma);
542d4af56c5SLiam R. Howlett 	mas_set_range(mas, vma->vm_start, vma->vm_end - 1);
543d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, vma);
544d4af56c5SLiam R. Howlett }
545d4af56c5SLiam R. Howlett 
546d4af56c5SLiam R. Howlett /*
547d4af56c5SLiam R. Howlett  * vma_mas_remove() - Remove a VMA from the maple tree.
548d4af56c5SLiam R. Howlett  * @vma: The vm_area_struct
549d4af56c5SLiam R. Howlett  * @mas: The maple state
550d4af56c5SLiam R. Howlett  *
551d4af56c5SLiam R. Howlett  * Efficient way to remove a VMA from the maple tree when the @mas has already
552d4af56c5SLiam R. Howlett  * been established and points to the correct location.
553d4af56c5SLiam R. Howlett  * Note: the end address is inclusive in the maple tree.
554d4af56c5SLiam R. Howlett  */
555d4af56c5SLiam R. Howlett void vma_mas_remove(struct vm_area_struct *vma, struct ma_state *mas)
556d4af56c5SLiam R. Howlett {
557d4af56c5SLiam R. Howlett 	trace_vma_mas_szero(mas->tree, vma->vm_start, vma->vm_end - 1);
558d4af56c5SLiam R. Howlett 	mas->index = vma->vm_start;
559d4af56c5SLiam R. Howlett 	mas->last = vma->vm_end - 1;
560d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, NULL);
561d4af56c5SLiam R. Howlett }
562d4af56c5SLiam R. Howlett 
563d4af56c5SLiam R. Howlett /*
564d4af56c5SLiam R. Howlett  * vma_mas_szero() - Set a given range to zero.  Used when modifying a
565d4af56c5SLiam R. Howlett  * vm_area_struct start or end.
566d4af56c5SLiam R. Howlett  *
567d4af56c5SLiam R. Howlett  * @mm: The struct_mm
568d4af56c5SLiam R. Howlett  * @start: The start address to zero
569d4af56c5SLiam R. Howlett  * @end: The end address to zero.
570d4af56c5SLiam R. Howlett  */
571d4af56c5SLiam R. Howlett static inline void vma_mas_szero(struct ma_state *mas, unsigned long start,
572d4af56c5SLiam R. Howlett 				unsigned long end)
573d4af56c5SLiam R. Howlett {
574d4af56c5SLiam R. Howlett 	trace_vma_mas_szero(mas->tree, start, end - 1);
575d4af56c5SLiam R. Howlett 	mas_set_range(mas, start, end - 1);
576d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, NULL);
577d4af56c5SLiam R. Howlett }
578d4af56c5SLiam R. Howlett 
579d4af56c5SLiam R. Howlett static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
580524e00b3SLiam R. Howlett 			struct vm_area_struct *prev)
5811da177e4SLinus Torvalds {
582d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
5831da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
5841da177e4SLinus Torvalds 
585d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
586d4af56c5SLiam R. Howlett 		return -ENOMEM;
587d4af56c5SLiam R. Howlett 
58864ac4940SHuang Shijie 	if (vma->vm_file) {
5891da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
59083cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
59164ac4940SHuang Shijie 	}
5921da177e4SLinus Torvalds 
593d4af56c5SLiam R. Howlett 	vma_mas_store(vma, &mas);
594524e00b3SLiam R. Howlett 	__vma_link_list(mm, vma, prev);
5951da177e4SLinus Torvalds 	__vma_link_file(vma);
5961da177e4SLinus Torvalds 
5971da177e4SLinus Torvalds 	if (mapping)
59883cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
5991da177e4SLinus Torvalds 
6001da177e4SLinus Torvalds 	mm->map_count++;
6011da177e4SLinus Torvalds 	validate_mm(mm);
602d4af56c5SLiam R. Howlett 	return 0;
6031da177e4SLinus Torvalds }
6041da177e4SLinus Torvalds 
6051da177e4SLinus Torvalds /*
60688f6b4c3SKautuk Consul  * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
607524e00b3SLiam R. Howlett  * mm's list and the mm tree.  It has already been inserted into the interval tree.
6081da177e4SLinus Torvalds  */
609d4af56c5SLiam R. Howlett static void __insert_vm_struct(struct mm_struct *mm, struct ma_state *mas,
6103b0e81a1SLiam R. Howlett 		struct vm_area_struct *vma, unsigned long location)
6111da177e4SLinus Torvalds {
6126597d783SHugh Dickins 	struct vm_area_struct *prev;
6131da177e4SLinus Torvalds 
6143b0e81a1SLiam R. Howlett 	mas_set(mas, location);
615524e00b3SLiam R. Howlett 	prev = mas_prev(mas, 0);
616d4af56c5SLiam R. Howlett 	vma_mas_store(vma, mas);
617d4af56c5SLiam R. Howlett 	__vma_link_list(mm, vma, prev);
6181da177e4SLinus Torvalds 	mm->map_count++;
6191da177e4SLinus Torvalds }
6201da177e4SLinus Torvalds 
6211da177e4SLinus Torvalds /*
6221da177e4SLinus Torvalds  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
6231da177e4SLinus Torvalds  * is already present in an i_mmap tree without adjusting the tree.
6241da177e4SLinus Torvalds  * The following helper function should be used when such adjustments
6251da177e4SLinus Torvalds  * are necessary.  The "insert" vma (if any) is to be inserted
6261da177e4SLinus Torvalds  * before we drop the necessary locks.
6271da177e4SLinus Torvalds  */
628e86f15eeSAndrea Arcangeli int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
629e86f15eeSAndrea Arcangeli 	unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
630e86f15eeSAndrea Arcangeli 	struct vm_area_struct *expand)
6311da177e4SLinus Torvalds {
6321da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
633524e00b3SLiam R. Howlett 	struct vm_area_struct *next_next, *next = find_vma(mm, vma->vm_end);
634524e00b3SLiam R. Howlett 	struct vm_area_struct *orig_vma = vma;
6351da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
636f808c13fSDavidlohr Bueso 	struct rb_root_cached *root = NULL;
637012f1800SRik van Riel 	struct anon_vma *anon_vma = NULL;
6381da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
639524e00b3SLiam R. Howlett 	bool vma_changed = false;
6401da177e4SLinus Torvalds 	long adjust_next = 0;
6411da177e4SLinus Torvalds 	int remove_next = 0;
642d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
643734537c9SKirill A. Shutemov 	struct vm_area_struct *exporter = NULL, *importer = NULL;
6443b0e81a1SLiam R. Howlett 	unsigned long ll_prev = vma->vm_start; /* linked list prev. */
645287d97acSLinus Torvalds 
646d4af56c5SLiam R. Howlett 	if (next && !insert) {
6471da177e4SLinus Torvalds 		if (end >= next->vm_end) {
6481da177e4SLinus Torvalds 			/*
6491da177e4SLinus Torvalds 			 * vma expands, overlapping all the next, and
6501da177e4SLinus Torvalds 			 * perhaps the one after too (mprotect case 6).
65186d12e47SAndrea Arcangeli 			 * The only other cases that gets here are
652e86f15eeSAndrea Arcangeli 			 * case 1, case 7 and case 8.
653e86f15eeSAndrea Arcangeli 			 */
654e86f15eeSAndrea Arcangeli 			if (next == expand) {
655e86f15eeSAndrea Arcangeli 				/*
656e86f15eeSAndrea Arcangeli 				 * The only case where we don't expand "vma"
657e86f15eeSAndrea Arcangeli 				 * and we expand "next" instead is case 8.
658e86f15eeSAndrea Arcangeli 				 */
659e86f15eeSAndrea Arcangeli 				VM_WARN_ON(end != next->vm_end);
660e86f15eeSAndrea Arcangeli 				/*
661e86f15eeSAndrea Arcangeli 				 * remove_next == 3 means we're
662e86f15eeSAndrea Arcangeli 				 * removing "vma" and that to do so we
663e86f15eeSAndrea Arcangeli 				 * swapped "vma" and "next".
664e86f15eeSAndrea Arcangeli 				 */
665e86f15eeSAndrea Arcangeli 				remove_next = 3;
666e86f15eeSAndrea Arcangeli 				VM_WARN_ON(file != next->vm_file);
667e86f15eeSAndrea Arcangeli 				swap(vma, next);
668e86f15eeSAndrea Arcangeli 			} else {
669e86f15eeSAndrea Arcangeli 				VM_WARN_ON(expand != vma);
670e86f15eeSAndrea Arcangeli 				/*
671e86f15eeSAndrea Arcangeli 				 * case 1, 6, 7, remove_next == 2 is case 6,
672e86f15eeSAndrea Arcangeli 				 * remove_next == 1 is case 1 or 7.
6731da177e4SLinus Torvalds 				 */
674734537c9SKirill A. Shutemov 				remove_next = 1 + (end > next->vm_end);
675d4af56c5SLiam R. Howlett 				if (remove_next == 2)
676d4af56c5SLiam R. Howlett 					next_next = find_vma(mm, next->vm_end);
677d4af56c5SLiam R. Howlett 
678e86f15eeSAndrea Arcangeli 				VM_WARN_ON(remove_next == 2 &&
679e86f15eeSAndrea Arcangeli 					   end != next->vm_next->vm_end);
680e86f15eeSAndrea Arcangeli 			}
681e86f15eeSAndrea Arcangeli 
682287d97acSLinus Torvalds 			exporter = next;
6831da177e4SLinus Torvalds 			importer = vma;
684734537c9SKirill A. Shutemov 
685734537c9SKirill A. Shutemov 			/*
686734537c9SKirill A. Shutemov 			 * If next doesn't have anon_vma, import from vma after
687734537c9SKirill A. Shutemov 			 * next, if the vma overlaps with it.
688734537c9SKirill A. Shutemov 			 */
68997a42cd4SAndrea Arcangeli 			if (remove_next == 2 && !next->anon_vma)
690734537c9SKirill A. Shutemov 				exporter = next->vm_next;
691734537c9SKirill A. Shutemov 
6921da177e4SLinus Torvalds 		} else if (end > next->vm_start) {
6931da177e4SLinus Torvalds 			/*
6941da177e4SLinus Torvalds 			 * vma expands, overlapping part of the next:
6951da177e4SLinus Torvalds 			 * mprotect case 5 shifting the boundary up.
6961da177e4SLinus Torvalds 			 */
697f9d86a60SWei Yang 			adjust_next = (end - next->vm_start);
698287d97acSLinus Torvalds 			exporter = next;
6991da177e4SLinus Torvalds 			importer = vma;
700e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
7011da177e4SLinus Torvalds 		} else if (end < vma->vm_end) {
7021da177e4SLinus Torvalds 			/*
7031da177e4SLinus Torvalds 			 * vma shrinks, and !insert tells it's not
7041da177e4SLinus Torvalds 			 * split_vma inserting another: so it must be
7051da177e4SLinus Torvalds 			 * mprotect case 4 shifting the boundary down.
7061da177e4SLinus Torvalds 			 */
707f9d86a60SWei Yang 			adjust_next = -(vma->vm_end - end);
708287d97acSLinus Torvalds 			exporter = vma;
7091da177e4SLinus Torvalds 			importer = next;
710e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
7111da177e4SLinus Torvalds 		}
7121da177e4SLinus Torvalds 
7135beb4930SRik van Riel 		/*
7145beb4930SRik van Riel 		 * Easily overlooked: when mprotect shifts the boundary,
7155beb4930SRik van Riel 		 * make sure the expanding vma has anon_vma set if the
7165beb4930SRik van Riel 		 * shrinking vma had, to cover any anon pages imported.
7175beb4930SRik van Riel 		 */
718287d97acSLinus Torvalds 		if (exporter && exporter->anon_vma && !importer->anon_vma) {
719c4ea95d7SDaniel Forrest 			int error;
720c4ea95d7SDaniel Forrest 
721287d97acSLinus Torvalds 			importer->anon_vma = exporter->anon_vma;
722b800c91aSKonstantin Khlebnikov 			error = anon_vma_clone(importer, exporter);
7233fe89b3eSLeon Yu 			if (error)
724b800c91aSKonstantin Khlebnikov 				return error;
725b800c91aSKonstantin Khlebnikov 		}
7265beb4930SRik van Riel 	}
72737f9f559SKirill A. Shutemov 
728d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
729d4af56c5SLiam R. Howlett 		return -ENOMEM;
730d4af56c5SLiam R. Howlett 
731d4af56c5SLiam R. Howlett 	vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
7321da177e4SLinus Torvalds 	if (file) {
7331da177e4SLinus Torvalds 		mapping = file->f_mapping;
7341da177e4SLinus Torvalds 		root = &mapping->i_mmap;
735cbc91f71SSrikar Dronamraju 		uprobe_munmap(vma, vma->vm_start, vma->vm_end);
736682968e0SSrikar Dronamraju 
737682968e0SSrikar Dronamraju 		if (adjust_next)
73827ba0644SKirill A. Shutemov 			uprobe_munmap(next, next->vm_start, next->vm_end);
739682968e0SSrikar Dronamraju 
74083cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
7411da177e4SLinus Torvalds 		if (insert) {
7421da177e4SLinus Torvalds 			/*
7436b2dbba8SMichel Lespinasse 			 * Put into interval tree now, so instantiated pages
7441da177e4SLinus Torvalds 			 * are visible to arm/parisc __flush_dcache_page
7451da177e4SLinus Torvalds 			 * throughout; but we cannot insert into address
7461da177e4SLinus Torvalds 			 * space until vma start or end is updated.
7471da177e4SLinus Torvalds 			 */
7481da177e4SLinus Torvalds 			__vma_link_file(insert);
7491da177e4SLinus Torvalds 		}
7501da177e4SLinus Torvalds 	}
7511da177e4SLinus Torvalds 
752012f1800SRik van Riel 	anon_vma = vma->anon_vma;
753bf181b9fSMichel Lespinasse 	if (!anon_vma && adjust_next)
754bf181b9fSMichel Lespinasse 		anon_vma = next->anon_vma;
755bf181b9fSMichel Lespinasse 	if (anon_vma) {
756e86f15eeSAndrea Arcangeli 		VM_WARN_ON(adjust_next && next->anon_vma &&
757e86f15eeSAndrea Arcangeli 			   anon_vma != next->anon_vma);
7584fc3f1d6SIngo Molnar 		anon_vma_lock_write(anon_vma);
759bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_pre_update_vma(vma);
760bf181b9fSMichel Lespinasse 		if (adjust_next)
761bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_pre_update_vma(next);
762bf181b9fSMichel Lespinasse 	}
763012f1800SRik van Riel 
7640fc48a6eSWei Yang 	if (file) {
7651da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
7666b2dbba8SMichel Lespinasse 		vma_interval_tree_remove(vma, root);
7671da177e4SLinus Torvalds 		if (adjust_next)
7686b2dbba8SMichel Lespinasse 			vma_interval_tree_remove(next, root);
7691da177e4SLinus Torvalds 	}
7701da177e4SLinus Torvalds 
771d3737187SMichel Lespinasse 	if (start != vma->vm_start) {
7723b0e81a1SLiam R. Howlett 		if ((vma->vm_start < start) &&
7733b0e81a1SLiam R. Howlett 		    (!insert || (insert->vm_end != start))) {
774524e00b3SLiam R. Howlett 			vma_mas_szero(&mas, vma->vm_start, start);
7753b0e81a1SLiam R. Howlett 			VM_WARN_ON(insert && insert->vm_start > vma->vm_start);
7763b0e81a1SLiam R. Howlett 		} else {
777524e00b3SLiam R. Howlett 			vma_changed = true;
7783b0e81a1SLiam R. Howlett 		}
7791da177e4SLinus Torvalds 		vma->vm_start = start;
780d3737187SMichel Lespinasse 	}
781d3737187SMichel Lespinasse 	if (end != vma->vm_end) {
7823b0e81a1SLiam R. Howlett 		if (vma->vm_end > end) {
7833b0e81a1SLiam R. Howlett 			if (!insert || (insert->vm_start != end)) {
784524e00b3SLiam R. Howlett 				vma_mas_szero(&mas, end, vma->vm_end);
7853b0e81a1SLiam R. Howlett 				VM_WARN_ON(insert &&
7863b0e81a1SLiam R. Howlett 					   insert->vm_end < vma->vm_end);
7873b0e81a1SLiam R. Howlett 			} else if (insert->vm_start == end) {
7883b0e81a1SLiam R. Howlett 				ll_prev = vma->vm_end;
7893b0e81a1SLiam R. Howlett 			}
7903b0e81a1SLiam R. Howlett 		} else {
791524e00b3SLiam R. Howlett 			vma_changed = true;
7923b0e81a1SLiam R. Howlett 		}
7931da177e4SLinus Torvalds 		vma->vm_end = end;
794524e00b3SLiam R. Howlett 		if (!next)
795524e00b3SLiam R. Howlett 			mm->highest_vm_end = vm_end_gap(vma);
796d3737187SMichel Lespinasse 	}
797d4af56c5SLiam R. Howlett 
798524e00b3SLiam R. Howlett 	if (vma_changed)
799d4af56c5SLiam R. Howlett 		vma_mas_store(vma, &mas);
800d4af56c5SLiam R. Howlett 
8011da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
8021da177e4SLinus Torvalds 	if (adjust_next) {
803f9d86a60SWei Yang 		next->vm_start += adjust_next;
804f9d86a60SWei Yang 		next->vm_pgoff += adjust_next >> PAGE_SHIFT;
805d4af56c5SLiam R. Howlett 		vma_mas_store(next, &mas);
8061da177e4SLinus Torvalds 	}
8071da177e4SLinus Torvalds 
8080fc48a6eSWei Yang 	if (file) {
8091da177e4SLinus Torvalds 		if (adjust_next)
8106b2dbba8SMichel Lespinasse 			vma_interval_tree_insert(next, root);
8116b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, root);
8121da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
8131da177e4SLinus Torvalds 	}
8141da177e4SLinus Torvalds 
8151da177e4SLinus Torvalds 	if (remove_next) {
8161da177e4SLinus Torvalds 		/*
8171da177e4SLinus Torvalds 		 * vma_merge has merged next into vma, and needs
8181da177e4SLinus Torvalds 		 * us to remove next before dropping the locks.
819d4af56c5SLiam R. Howlett 		 * Since we have expanded over this vma, the maple tree will
820d4af56c5SLiam R. Howlett 		 * have overwritten by storing the value
8211da177e4SLinus Torvalds 		 */
822524e00b3SLiam R. Howlett 		__vma_unlink_list(mm, next);
823d4af56c5SLiam R. Howlett 		if (remove_next == 2)
824524e00b3SLiam R. Howlett 			__vma_unlink_list(mm, next_next);
825524e00b3SLiam R. Howlett 		/* Kill the cache */
826524e00b3SLiam R. Howlett 		vmacache_invalidate(mm);
827524e00b3SLiam R. Howlett 
828d4af56c5SLiam R. Howlett 		if (file) {
8291da177e4SLinus Torvalds 			__remove_shared_vm_struct(next, file, mapping);
830d4af56c5SLiam R. Howlett 			if (remove_next == 2)
831d4af56c5SLiam R. Howlett 				__remove_shared_vm_struct(next_next, file, mapping);
832d4af56c5SLiam R. Howlett 		}
8331da177e4SLinus Torvalds 	} else if (insert) {
8341da177e4SLinus Torvalds 		/*
8351da177e4SLinus Torvalds 		 * split_vma has split insert from vma, and needs
8361da177e4SLinus Torvalds 		 * us to insert it before dropping the locks
8371da177e4SLinus Torvalds 		 * (it may either follow vma or precede it).
8381da177e4SLinus Torvalds 		 */
8393b0e81a1SLiam R. Howlett 		__insert_vm_struct(mm, &mas, insert, ll_prev);
8401da177e4SLinus Torvalds 	}
8411da177e4SLinus Torvalds 
842bf181b9fSMichel Lespinasse 	if (anon_vma) {
843bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_post_update_vma(vma);
844bf181b9fSMichel Lespinasse 		if (adjust_next)
845bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_post_update_vma(next);
84608b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
847bf181b9fSMichel Lespinasse 	}
8481da177e4SLinus Torvalds 
8490fc48a6eSWei Yang 	if (file) {
850808fbdbeSWei Yang 		i_mmap_unlock_write(mapping);
8517b2d81d4SIngo Molnar 		uprobe_mmap(vma);
8522b144498SSrikar Dronamraju 
8532b144498SSrikar Dronamraju 		if (adjust_next)
8547b2d81d4SIngo Molnar 			uprobe_mmap(next);
8552b144498SSrikar Dronamraju 	}
8562b144498SSrikar Dronamraju 
8571da177e4SLinus Torvalds 	if (remove_next) {
858d4af56c5SLiam R. Howlett again:
859925d1c40SMatt Helsley 		if (file) {
860cbc91f71SSrikar Dronamraju 			uprobe_munmap(next, next->vm_start, next->vm_end);
8611da177e4SLinus Torvalds 			fput(file);
862925d1c40SMatt Helsley 		}
8635beb4930SRik van Riel 		if (next->anon_vma)
8645beb4930SRik van Riel 			anon_vma_merge(vma, next);
8651da177e4SLinus Torvalds 		mm->map_count--;
8663964acd0SOleg Nesterov 		mpol_put(vma_policy(next));
867524e00b3SLiam R. Howlett 		if (remove_next != 2)
868524e00b3SLiam R. Howlett 			BUG_ON(vma->vm_end < next->vm_end);
8693928d4f5SLinus Torvalds 		vm_area_free(next);
870524e00b3SLiam R. Howlett 
8711da177e4SLinus Torvalds 		/*
8721da177e4SLinus Torvalds 		 * In mprotect's case 6 (see comments on vma_merge),
8731da177e4SLinus Torvalds 		 * we must remove another next too. It would clutter
8741da177e4SLinus Torvalds 		 * up the code too much to do both in one go.
8751da177e4SLinus Torvalds 		 */
876e86f15eeSAndrea Arcangeli 		if (remove_next != 3) {
877e86f15eeSAndrea Arcangeli 			/*
878e86f15eeSAndrea Arcangeli 			 * If "next" was removed and vma->vm_end was
879e86f15eeSAndrea Arcangeli 			 * expanded (up) over it, in turn
880e86f15eeSAndrea Arcangeli 			 * "next->vm_prev->vm_end" changed and the
881e86f15eeSAndrea Arcangeli 			 * "vma->vm_next" gap must be updated.
882e86f15eeSAndrea Arcangeli 			 */
883d4af56c5SLiam R. Howlett 			next = next_next;
884e86f15eeSAndrea Arcangeli 		} else {
885e86f15eeSAndrea Arcangeli 			/*
886e86f15eeSAndrea Arcangeli 			 * For the scope of the comment "next" and
887e86f15eeSAndrea Arcangeli 			 * "vma" considered pre-swap(): if "vma" was
888e86f15eeSAndrea Arcangeli 			 * removed, next->vm_start was expanded (down)
889e86f15eeSAndrea Arcangeli 			 * over it and the "next" gap must be updated.
890e86f15eeSAndrea Arcangeli 			 * Because of the swap() the post-swap() "vma"
891e86f15eeSAndrea Arcangeli 			 * actually points to pre-swap() "next"
892e86f15eeSAndrea Arcangeli 			 * (post-swap() "next" as opposed is now a
893e86f15eeSAndrea Arcangeli 			 * dangling pointer).
894e86f15eeSAndrea Arcangeli 			 */
895e86f15eeSAndrea Arcangeli 			next = vma;
896e86f15eeSAndrea Arcangeli 		}
897734537c9SKirill A. Shutemov 		if (remove_next == 2) {
898734537c9SKirill A. Shutemov 			remove_next = 1;
8991da177e4SLinus Torvalds 			goto again;
900524e00b3SLiam R. Howlett 		} else if (!next) {
901fb8c41e9SAndrea Arcangeli 			/*
902fb8c41e9SAndrea Arcangeli 			 * If remove_next == 2 we obviously can't
903fb8c41e9SAndrea Arcangeli 			 * reach this path.
904fb8c41e9SAndrea Arcangeli 			 *
905fb8c41e9SAndrea Arcangeli 			 * If remove_next == 3 we can't reach this
906fb8c41e9SAndrea Arcangeli 			 * path because pre-swap() next is always not
907fb8c41e9SAndrea Arcangeli 			 * NULL. pre-swap() "next" is not being
908fb8c41e9SAndrea Arcangeli 			 * removed and its next->vm_end is not altered
909fb8c41e9SAndrea Arcangeli 			 * (and furthermore "end" already matches
910fb8c41e9SAndrea Arcangeli 			 * next->vm_end in remove_next == 3).
911fb8c41e9SAndrea Arcangeli 			 *
912fb8c41e9SAndrea Arcangeli 			 * We reach this only in the remove_next == 1
913fb8c41e9SAndrea Arcangeli 			 * case if the "next" vma that was removed was
914fb8c41e9SAndrea Arcangeli 			 * the highest vma of the mm. However in such
915fb8c41e9SAndrea Arcangeli 			 * case next->vm_end == "end" and the extended
916fb8c41e9SAndrea Arcangeli 			 * "vma" has vma->vm_end == next->vm_end so
917fb8c41e9SAndrea Arcangeli 			 * mm->highest_vm_end doesn't need any update
918fb8c41e9SAndrea Arcangeli 			 * in remove_next == 1 case.
919fb8c41e9SAndrea Arcangeli 			 */
9201be7107fSHugh Dickins 			VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma));
921fb8c41e9SAndrea Arcangeli 		}
9221da177e4SLinus Torvalds 	}
9232b144498SSrikar Dronamraju 	if (insert && file)
9247b2d81d4SIngo Molnar 		uprobe_mmap(insert);
9251da177e4SLinus Torvalds 
9263b0e81a1SLiam R. Howlett 	mas_destroy(&mas);
9271da177e4SLinus Torvalds 	validate_mm(mm);
9285beb4930SRik van Riel 	return 0;
9291da177e4SLinus Torvalds }
9301da177e4SLinus Torvalds 
9311da177e4SLinus Torvalds /*
9321da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
9331da177e4SLinus Torvalds  * per-vma resources, so we don't attempt to merge those.
9341da177e4SLinus Torvalds  */
9351da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma,
93619a809afSAndrea Arcangeli 				struct file *file, unsigned long vm_flags,
9379a10064fSColin Cross 				struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
9385c26f6acSSuren Baghdasaryan 				struct anon_vma_name *anon_name)
9391da177e4SLinus Torvalds {
94034228d47SCyrill Gorcunov 	/*
94134228d47SCyrill Gorcunov 	 * VM_SOFTDIRTY should not prevent from VMA merging, if we
94234228d47SCyrill Gorcunov 	 * match the flags but dirty bit -- the caller should mark
94334228d47SCyrill Gorcunov 	 * merged VMA as dirty. If dirty bit won't be excluded from
9448bb4e7a2SWei Yang 	 * comparison, we increase pressure on the memory system forcing
94534228d47SCyrill Gorcunov 	 * the kernel to generate new VMAs when old one could be
94634228d47SCyrill Gorcunov 	 * extended instead.
94734228d47SCyrill Gorcunov 	 */
94834228d47SCyrill Gorcunov 	if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
9491da177e4SLinus Torvalds 		return 0;
9501da177e4SLinus Torvalds 	if (vma->vm_file != file)
9511da177e4SLinus Torvalds 		return 0;
9521da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
9531da177e4SLinus Torvalds 		return 0;
95419a809afSAndrea Arcangeli 	if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
95519a809afSAndrea Arcangeli 		return 0;
9565c26f6acSSuren Baghdasaryan 	if (!anon_vma_name_eq(anon_vma_name(vma), anon_name))
9579a10064fSColin Cross 		return 0;
9581da177e4SLinus Torvalds 	return 1;
9591da177e4SLinus Torvalds }
9601da177e4SLinus Torvalds 
9611da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
962965f55deSShaohua Li 					struct anon_vma *anon_vma2,
963965f55deSShaohua Li 					struct vm_area_struct *vma)
9641da177e4SLinus Torvalds {
965965f55deSShaohua Li 	/*
966965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
967965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
968965f55deSShaohua Li 	 */
969965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
970965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
971965f55deSShaohua Li 		return 1;
972965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
9731da177e4SLinus Torvalds }
9741da177e4SLinus Torvalds 
9751da177e4SLinus Torvalds /*
9761da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
9771da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
9781da177e4SLinus Torvalds  *
9791da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
9801da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
9811da177e4SLinus Torvalds  *
9821da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
98345e55300SPeter Collingbourne  * indices (16TB on ia32) because do_mmap() does not permit mmap's which
9841da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
9851da177e4SLinus Torvalds  */
9861da177e4SLinus Torvalds static int
9871da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
98819a809afSAndrea Arcangeli 		     struct anon_vma *anon_vma, struct file *file,
98919a809afSAndrea Arcangeli 		     pgoff_t vm_pgoff,
9909a10064fSColin Cross 		     struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
9915c26f6acSSuren Baghdasaryan 		     struct anon_vma_name *anon_name)
9921da177e4SLinus Torvalds {
9939a10064fSColin Cross 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
994965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
9951da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
9961da177e4SLinus Torvalds 			return 1;
9971da177e4SLinus Torvalds 	}
9981da177e4SLinus Torvalds 	return 0;
9991da177e4SLinus Torvalds }
10001da177e4SLinus Torvalds 
10011da177e4SLinus Torvalds /*
10021da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
10031da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
10041da177e4SLinus Torvalds  *
10051da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
10061da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
10071da177e4SLinus Torvalds  */
10081da177e4SLinus Torvalds static int
10091da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
101019a809afSAndrea Arcangeli 		    struct anon_vma *anon_vma, struct file *file,
101119a809afSAndrea Arcangeli 		    pgoff_t vm_pgoff,
10129a10064fSColin Cross 		    struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
10135c26f6acSSuren Baghdasaryan 		    struct anon_vma_name *anon_name)
10141da177e4SLinus Torvalds {
10159a10064fSColin Cross 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
1016965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
10171da177e4SLinus Torvalds 		pgoff_t vm_pglen;
1018d6e93217SLibin 		vm_pglen = vma_pages(vma);
10191da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
10201da177e4SLinus Torvalds 			return 1;
10211da177e4SLinus Torvalds 	}
10221da177e4SLinus Torvalds 	return 0;
10231da177e4SLinus Torvalds }
10241da177e4SLinus Torvalds 
10251da177e4SLinus Torvalds /*
10269a10064fSColin Cross  * Given a mapping request (addr,end,vm_flags,file,pgoff,anon_name),
10279a10064fSColin Cross  * figure out whether that can be merged with its predecessor or its
10289a10064fSColin Cross  * successor.  Or both (it neatly fills a hole).
10291da177e4SLinus Torvalds  *
10301da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
10311da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
10321da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
10331da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
10341da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
10351da177e4SLinus Torvalds  * case has already been eliminated.
10361da177e4SLinus Torvalds  *
10371da177e4SLinus Torvalds  * The following mprotect cases have to be considered, where AAAA is
10381da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
10391da177e4SLinus Torvalds  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
10401da177e4SLinus Torvalds  *
10415d42ab29SWei Yang  *     AAAA             AAAA                   AAAA
10425d42ab29SWei Yang  *    PPPPPPNNNNNN    PPPPPPNNNNNN       PPPPPPNNNNNN
10435d42ab29SWei Yang  *    cannot merge    might become       might become
10445d42ab29SWei Yang  *                    PPNNNNNNNNNN       PPPPPPPPPPNN
10455d42ab29SWei Yang  *    mmap, brk or    case 4 below       case 5 below
10465d42ab29SWei Yang  *    mremap move:
10475d42ab29SWei Yang  *                        AAAA               AAAA
10485d42ab29SWei Yang  *                    PPPP    NNNN       PPPPNNNNXXXX
10495d42ab29SWei Yang  *                    might become       might become
10505d42ab29SWei Yang  *                    PPPPPPPPPPPP 1 or  PPPPPPPPPPPP 6 or
10515d42ab29SWei Yang  *                    PPPPPPPPNNNN 2 or  PPPPPPPPXXXX 7 or
10525d42ab29SWei Yang  *                    PPPPNNNNNNNN 3     PPPPXXXXXXXX 8
10531da177e4SLinus Torvalds  *
10548bb4e7a2SWei Yang  * It is important for case 8 that the vma NNNN overlapping the
1055e86f15eeSAndrea Arcangeli  * region AAAA is never going to extended over XXXX. Instead XXXX must
1056e86f15eeSAndrea Arcangeli  * be extended in region AAAA and NNNN must be removed. This way in
1057e86f15eeSAndrea Arcangeli  * all cases where vma_merge succeeds, the moment vma_adjust drops the
1058e86f15eeSAndrea Arcangeli  * rmap_locks, the properties of the merged vma will be already
1059e86f15eeSAndrea Arcangeli  * correct for the whole merged range. Some of those properties like
1060e86f15eeSAndrea Arcangeli  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
1061e86f15eeSAndrea Arcangeli  * be correct for the whole merged range immediately after the
1062e86f15eeSAndrea Arcangeli  * rmap_locks are released. Otherwise if XXXX would be removed and
1063e86f15eeSAndrea Arcangeli  * NNNN would be extended over the XXXX range, remove_migration_ptes
1064e86f15eeSAndrea Arcangeli  * or other rmap walkers (if working on addresses beyond the "end"
1065e86f15eeSAndrea Arcangeli  * parameter) may establish ptes with the wrong permissions of NNNN
1066e86f15eeSAndrea Arcangeli  * instead of the right permissions of XXXX.
10671da177e4SLinus Torvalds  */
10681da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm,
10691da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
10701da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
10711da177e4SLinus Torvalds 			struct anon_vma *anon_vma, struct file *file,
107219a809afSAndrea Arcangeli 			pgoff_t pgoff, struct mempolicy *policy,
10739a10064fSColin Cross 			struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
10745c26f6acSSuren Baghdasaryan 			struct anon_vma_name *anon_name)
10751da177e4SLinus Torvalds {
10761da177e4SLinus Torvalds 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
10771da177e4SLinus Torvalds 	struct vm_area_struct *area, *next;
10785beb4930SRik van Riel 	int err;
10791da177e4SLinus Torvalds 
10801da177e4SLinus Torvalds 	/*
10811da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
10821da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
10831da177e4SLinus Torvalds 	 */
10841da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
10851da177e4SLinus Torvalds 		return NULL;
10861da177e4SLinus Torvalds 
1087f39af059SMatthew Wilcox (Oracle) 	next = __vma_next(mm, prev);
10881da177e4SLinus Torvalds 	area = next;
1089e86f15eeSAndrea Arcangeli 	if (area && area->vm_end == end)		/* cases 6, 7, 8 */
10901da177e4SLinus Torvalds 		next = next->vm_next;
10911da177e4SLinus Torvalds 
1092e86f15eeSAndrea Arcangeli 	/* verify some invariant that must be enforced by the caller */
1093e86f15eeSAndrea Arcangeli 	VM_WARN_ON(prev && addr <= prev->vm_start);
1094e86f15eeSAndrea Arcangeli 	VM_WARN_ON(area && end > area->vm_end);
1095e86f15eeSAndrea Arcangeli 	VM_WARN_ON(addr >= end);
1096e86f15eeSAndrea Arcangeli 
10971da177e4SLinus Torvalds 	/*
10981da177e4SLinus Torvalds 	 * Can it merge with the predecessor?
10991da177e4SLinus Torvalds 	 */
11001da177e4SLinus Torvalds 	if (prev && prev->vm_end == addr &&
11011da177e4SLinus Torvalds 			mpol_equal(vma_policy(prev), policy) &&
11021da177e4SLinus Torvalds 			can_vma_merge_after(prev, vm_flags,
110319a809afSAndrea Arcangeli 					    anon_vma, file, pgoff,
11049a10064fSColin Cross 					    vm_userfaultfd_ctx, anon_name)) {
11051da177e4SLinus Torvalds 		/*
11061da177e4SLinus Torvalds 		 * OK, it can.  Can we now merge in the successor as well?
11071da177e4SLinus Torvalds 		 */
11081da177e4SLinus Torvalds 		if (next && end == next->vm_start &&
11091da177e4SLinus Torvalds 				mpol_equal(policy, vma_policy(next)) &&
11101da177e4SLinus Torvalds 				can_vma_merge_before(next, vm_flags,
111119a809afSAndrea Arcangeli 						     anon_vma, file,
111219a809afSAndrea Arcangeli 						     pgoff+pglen,
11139a10064fSColin Cross 						     vm_userfaultfd_ctx, anon_name) &&
11141da177e4SLinus Torvalds 				is_mergeable_anon_vma(prev->anon_vma,
1115965f55deSShaohua Li 						      next->anon_vma, NULL)) {
11161da177e4SLinus Torvalds 							/* cases 1, 6 */
1117e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1118e86f15eeSAndrea Arcangeli 					 next->vm_end, prev->vm_pgoff, NULL,
1119e86f15eeSAndrea Arcangeli 					 prev);
11201da177e4SLinus Torvalds 		} else					/* cases 2, 5, 7 */
1121e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1122e86f15eeSAndrea Arcangeli 					 end, prev->vm_pgoff, NULL, prev);
11235beb4930SRik van Riel 		if (err)
11245beb4930SRik van Riel 			return NULL;
1125c791576cSYang Shi 		khugepaged_enter_vma(prev, vm_flags);
11261da177e4SLinus Torvalds 		return prev;
11271da177e4SLinus Torvalds 	}
11281da177e4SLinus Torvalds 
11291da177e4SLinus Torvalds 	/*
11301da177e4SLinus Torvalds 	 * Can this new request be merged in front of next?
11311da177e4SLinus Torvalds 	 */
11321da177e4SLinus Torvalds 	if (next && end == next->vm_start &&
11331da177e4SLinus Torvalds 			mpol_equal(policy, vma_policy(next)) &&
11341da177e4SLinus Torvalds 			can_vma_merge_before(next, vm_flags,
113519a809afSAndrea Arcangeli 					     anon_vma, file, pgoff+pglen,
11369a10064fSColin Cross 					     vm_userfaultfd_ctx, anon_name)) {
11371da177e4SLinus Torvalds 		if (prev && addr < prev->vm_end)	/* case 4 */
1138e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1139e86f15eeSAndrea Arcangeli 					 addr, prev->vm_pgoff, NULL, next);
1140e86f15eeSAndrea Arcangeli 		else {					/* cases 3, 8 */
1141e86f15eeSAndrea Arcangeli 			err = __vma_adjust(area, addr, next->vm_end,
1142e86f15eeSAndrea Arcangeli 					 next->vm_pgoff - pglen, NULL, next);
1143e86f15eeSAndrea Arcangeli 			/*
1144e86f15eeSAndrea Arcangeli 			 * In case 3 area is already equal to next and
1145e86f15eeSAndrea Arcangeli 			 * this is a noop, but in case 8 "area" has
1146e86f15eeSAndrea Arcangeli 			 * been removed and next was expanded over it.
1147e86f15eeSAndrea Arcangeli 			 */
1148e86f15eeSAndrea Arcangeli 			area = next;
1149e86f15eeSAndrea Arcangeli 		}
11505beb4930SRik van Riel 		if (err)
11515beb4930SRik van Riel 			return NULL;
1152c791576cSYang Shi 		khugepaged_enter_vma(area, vm_flags);
11531da177e4SLinus Torvalds 		return area;
11541da177e4SLinus Torvalds 	}
11551da177e4SLinus Torvalds 
11561da177e4SLinus Torvalds 	return NULL;
11571da177e4SLinus Torvalds }
11581da177e4SLinus Torvalds 
11591da177e4SLinus Torvalds /*
1160b4f315b4SEthon Paul  * Rough compatibility check to quickly see if it's even worth looking
1161d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
1162d0e9fe17SLinus Torvalds  *
1163d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
1164d0e9fe17SLinus Torvalds  * in things that mprotect may change.
1165d0e9fe17SLinus Torvalds  *
1166d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1167d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
1168d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
1169d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
1170d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
1171d0e9fe17SLinus Torvalds  */
1172d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1173d0e9fe17SLinus Torvalds {
1174d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
1175d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
1176d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
11776cb4d9a2SAnshuman Khandual 		!((a->vm_flags ^ b->vm_flags) & ~(VM_ACCESS_FLAGS | VM_SOFTDIRTY)) &&
1178d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1179d0e9fe17SLinus Torvalds }
1180d0e9fe17SLinus Torvalds 
1181d0e9fe17SLinus Torvalds /*
1182d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
1183d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1184d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
1185d0e9fe17SLinus Torvalds  * to share the anon_vma.
1186d0e9fe17SLinus Torvalds  *
11875b449489SFlorian Rommel  * NOTE! This runs with mmap_lock held for reading, so it is possible that
1188d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
1189d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
1190d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
1191d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
11924db0c3c2SJason Low  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1193d0e9fe17SLinus Torvalds  *
1194d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1195d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1196d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
1197d0e9fe17SLinus Torvalds  * a fork).
1198d0e9fe17SLinus Torvalds  *
1199d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
1200d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
12015b449489SFlorian Rommel  * a read lock on the mmap_lock.
1202d0e9fe17SLinus Torvalds  */
1203d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1204d0e9fe17SLinus Torvalds {
1205d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
12064db0c3c2SJason Low 		struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1207d0e9fe17SLinus Torvalds 
1208d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
1209d0e9fe17SLinus Torvalds 			return anon_vma;
1210d0e9fe17SLinus Torvalds 	}
1211d0e9fe17SLinus Torvalds 	return NULL;
1212d0e9fe17SLinus Torvalds }
1213d0e9fe17SLinus Torvalds 
1214d0e9fe17SLinus Torvalds /*
12151da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
12161da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
12171da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
12181da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
12191da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
12201da177e4SLinus Torvalds  * mprotect.
12211da177e4SLinus Torvalds  */
12221da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
12231da177e4SLinus Torvalds {
1224a67c8caaSMiaohe Lin 	struct anon_vma *anon_vma = NULL;
12251da177e4SLinus Torvalds 
1226a67c8caaSMiaohe Lin 	/* Try next first. */
1227a67c8caaSMiaohe Lin 	if (vma->vm_next) {
1228a67c8caaSMiaohe Lin 		anon_vma = reusable_anon_vma(vma->vm_next, vma, vma->vm_next);
1229d0e9fe17SLinus Torvalds 		if (anon_vma)
1230d0e9fe17SLinus Torvalds 			return anon_vma;
1231a67c8caaSMiaohe Lin 	}
12321da177e4SLinus Torvalds 
1233a67c8caaSMiaohe Lin 	/* Try prev next. */
1234a67c8caaSMiaohe Lin 	if (vma->vm_prev)
1235a67c8caaSMiaohe Lin 		anon_vma = reusable_anon_vma(vma->vm_prev, vma->vm_prev, vma);
1236a67c8caaSMiaohe Lin 
12371da177e4SLinus Torvalds 	/*
1238a67c8caaSMiaohe Lin 	 * We might reach here with anon_vma == NULL if we can't find
1239a67c8caaSMiaohe Lin 	 * any reusable anon_vma.
12401da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
12411da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
12421da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
12431da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
12441da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
12451da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
12461da177e4SLinus Torvalds 	 */
1247a67c8caaSMiaohe Lin 	return anon_vma;
12481da177e4SLinus Torvalds }
12491da177e4SLinus Torvalds 
12501da177e4SLinus Torvalds /*
125140401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
125240401530SAl Viro  * low as possible but still greater than mmap_min_addr
125340401530SAl Viro  */
125440401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
125540401530SAl Viro {
125640401530SAl Viro 	hint &= PAGE_MASK;
125740401530SAl Viro 	if (((void *)hint != NULL) &&
125840401530SAl Viro 	    (hint < mmap_min_addr))
125940401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
126040401530SAl Viro 	return hint;
126140401530SAl Viro }
126240401530SAl Viro 
12636aeb2542SMike Rapoport int mlock_future_check(struct mm_struct *mm, unsigned long flags,
1264363ee17fSDavidlohr Bueso 		       unsigned long len)
1265363ee17fSDavidlohr Bueso {
1266363ee17fSDavidlohr Bueso 	unsigned long locked, lock_limit;
1267363ee17fSDavidlohr Bueso 
1268363ee17fSDavidlohr Bueso 	/*  mlock MCL_FUTURE? */
1269363ee17fSDavidlohr Bueso 	if (flags & VM_LOCKED) {
1270363ee17fSDavidlohr Bueso 		locked = len >> PAGE_SHIFT;
1271363ee17fSDavidlohr Bueso 		locked += mm->locked_vm;
1272363ee17fSDavidlohr Bueso 		lock_limit = rlimit(RLIMIT_MEMLOCK);
1273363ee17fSDavidlohr Bueso 		lock_limit >>= PAGE_SHIFT;
1274363ee17fSDavidlohr Bueso 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1275363ee17fSDavidlohr Bueso 			return -EAGAIN;
1276363ee17fSDavidlohr Bueso 	}
1277363ee17fSDavidlohr Bueso 	return 0;
1278363ee17fSDavidlohr Bueso }
1279363ee17fSDavidlohr Bueso 
1280be83bbf8SLinus Torvalds static inline u64 file_mmap_size_max(struct file *file, struct inode *inode)
1281be83bbf8SLinus Torvalds {
1282be83bbf8SLinus Torvalds 	if (S_ISREG(inode->i_mode))
1283423913adSLinus Torvalds 		return MAX_LFS_FILESIZE;
1284be83bbf8SLinus Torvalds 
1285be83bbf8SLinus Torvalds 	if (S_ISBLK(inode->i_mode))
1286be83bbf8SLinus Torvalds 		return MAX_LFS_FILESIZE;
1287be83bbf8SLinus Torvalds 
128876f34950SIvan Khoronzhuk 	if (S_ISSOCK(inode->i_mode))
128976f34950SIvan Khoronzhuk 		return MAX_LFS_FILESIZE;
129076f34950SIvan Khoronzhuk 
1291be83bbf8SLinus Torvalds 	/* Special "we do even unsigned file positions" case */
1292be83bbf8SLinus Torvalds 	if (file->f_mode & FMODE_UNSIGNED_OFFSET)
1293be83bbf8SLinus Torvalds 		return 0;
1294be83bbf8SLinus Torvalds 
1295be83bbf8SLinus Torvalds 	/* Yes, random drivers might want more. But I'm tired of buggy drivers */
1296be83bbf8SLinus Torvalds 	return ULONG_MAX;
1297be83bbf8SLinus Torvalds }
1298be83bbf8SLinus Torvalds 
1299be83bbf8SLinus Torvalds static inline bool file_mmap_ok(struct file *file, struct inode *inode,
1300be83bbf8SLinus Torvalds 				unsigned long pgoff, unsigned long len)
1301be83bbf8SLinus Torvalds {
1302be83bbf8SLinus Torvalds 	u64 maxsize = file_mmap_size_max(file, inode);
1303be83bbf8SLinus Torvalds 
1304be83bbf8SLinus Torvalds 	if (maxsize && len > maxsize)
1305be83bbf8SLinus Torvalds 		return false;
1306be83bbf8SLinus Torvalds 	maxsize -= len;
1307be83bbf8SLinus Torvalds 	if (pgoff > maxsize >> PAGE_SHIFT)
1308be83bbf8SLinus Torvalds 		return false;
1309be83bbf8SLinus Torvalds 	return true;
1310be83bbf8SLinus Torvalds }
1311be83bbf8SLinus Torvalds 
131240401530SAl Viro /*
13133e4e28c5SMichel Lespinasse  * The caller must write-lock current->mm->mmap_lock.
13141da177e4SLinus Torvalds  */
13151fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr,
13161da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
131745e55300SPeter Collingbourne 			unsigned long flags, unsigned long pgoff,
131845e55300SPeter Collingbourne 			unsigned long *populate, struct list_head *uf)
13191da177e4SLinus Torvalds {
13201da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
132145e55300SPeter Collingbourne 	vm_flags_t vm_flags;
132262b5f7d0SDave Hansen 	int pkey = 0;
13231da177e4SLinus Torvalds 
1324524e00b3SLiam R. Howlett 	validate_mm(mm);
132541badc15SMichel Lespinasse 	*populate = 0;
1326bebeb3d6SMichel Lespinasse 
1327e37609bbSPiotr Kwapulinski 	if (!len)
1328e37609bbSPiotr Kwapulinski 		return -EINVAL;
1329e37609bbSPiotr Kwapulinski 
13301da177e4SLinus Torvalds 	/*
13311da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
13321da177e4SLinus Torvalds 	 *
13331da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
13341da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
13351da177e4SLinus Torvalds 	 */
13361da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
133790f8572bSEric W. Biederman 		if (!(file && path_noexec(&file->f_path)))
13381da177e4SLinus Torvalds 			prot |= PROT_EXEC;
13391da177e4SLinus Torvalds 
1340a4ff8e86SMichal Hocko 	/* force arch specific MAP_FIXED handling in get_unmapped_area */
1341a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE)
1342a4ff8e86SMichal Hocko 		flags |= MAP_FIXED;
1343a4ff8e86SMichal Hocko 
13447cd94146SEric Paris 	if (!(flags & MAP_FIXED))
13457cd94146SEric Paris 		addr = round_hint_to_min(addr);
13467cd94146SEric Paris 
13471da177e4SLinus Torvalds 	/* Careful about overflows.. */
13481da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
13499206de95SAl Viro 	if (!len)
13501da177e4SLinus Torvalds 		return -ENOMEM;
13511da177e4SLinus Torvalds 
13521da177e4SLinus Torvalds 	/* offset overflow? */
13531da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
13541da177e4SLinus Torvalds 		return -EOVERFLOW;
13551da177e4SLinus Torvalds 
13561da177e4SLinus Torvalds 	/* Too many mappings? */
13571da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
13581da177e4SLinus Torvalds 		return -ENOMEM;
13591da177e4SLinus Torvalds 
13601da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
13611da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
13621da177e4SLinus Torvalds 	 */
13631da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
1364ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(addr))
13651da177e4SLinus Torvalds 		return addr;
13661da177e4SLinus Torvalds 
1367a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE) {
136835e43c5fSLiam Howlett 		if (find_vma_intersection(mm, addr, addr + len))
1369a4ff8e86SMichal Hocko 			return -EEXIST;
1370a4ff8e86SMichal Hocko 	}
1371a4ff8e86SMichal Hocko 
137262b5f7d0SDave Hansen 	if (prot == PROT_EXEC) {
137362b5f7d0SDave Hansen 		pkey = execute_only_pkey(mm);
137462b5f7d0SDave Hansen 		if (pkey < 0)
137562b5f7d0SDave Hansen 			pkey = 0;
137662b5f7d0SDave Hansen 	}
137762b5f7d0SDave Hansen 
13781da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
13791da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
13801da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
13811da177e4SLinus Torvalds 	 */
138245e55300SPeter Collingbourne 	vm_flags = calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
13831da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
13841da177e4SLinus Torvalds 
1385cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
13861da177e4SLinus Torvalds 		if (!can_do_mlock())
13871da177e4SLinus Torvalds 			return -EPERM;
1388ba470de4SRik van Riel 
1389363ee17fSDavidlohr Bueso 	if (mlock_future_check(mm, vm_flags, len))
13901da177e4SLinus Torvalds 		return -EAGAIN;
13911da177e4SLinus Torvalds 
13921da177e4SLinus Torvalds 	if (file) {
1393077bf22bSOleg Nesterov 		struct inode *inode = file_inode(file);
13941c972597SDan Williams 		unsigned long flags_mask;
13951c972597SDan Williams 
1396be83bbf8SLinus Torvalds 		if (!file_mmap_ok(file, inode, pgoff, len))
1397be83bbf8SLinus Torvalds 			return -EOVERFLOW;
1398be83bbf8SLinus Torvalds 
13991c972597SDan Williams 		flags_mask = LEGACY_MAP_MASK | file->f_op->mmap_supported_flags;
1400077bf22bSOleg Nesterov 
14011da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
14021da177e4SLinus Torvalds 		case MAP_SHARED:
14031c972597SDan Williams 			/*
14041c972597SDan Williams 			 * Force use of MAP_SHARED_VALIDATE with non-legacy
14051c972597SDan Williams 			 * flags. E.g. MAP_SYNC is dangerous to use with
14061c972597SDan Williams 			 * MAP_SHARED as you don't know which consistency model
14071c972597SDan Williams 			 * you will get. We silently ignore unsupported flags
14081c972597SDan Williams 			 * with MAP_SHARED to preserve backward compatibility.
14091c972597SDan Williams 			 */
14101c972597SDan Williams 			flags &= LEGACY_MAP_MASK;
1411e4a9bc58SJoe Perches 			fallthrough;
14121c972597SDan Williams 		case MAP_SHARED_VALIDATE:
14131c972597SDan Williams 			if (flags & ~flags_mask)
14141c972597SDan Williams 				return -EOPNOTSUPP;
1415dc617f29SDarrick J. Wong 			if (prot & PROT_WRITE) {
1416dc617f29SDarrick J. Wong 				if (!(file->f_mode & FMODE_WRITE))
14171da177e4SLinus Torvalds 					return -EACCES;
1418dc617f29SDarrick J. Wong 				if (IS_SWAPFILE(file->f_mapping->host))
1419dc617f29SDarrick J. Wong 					return -ETXTBSY;
1420dc617f29SDarrick J. Wong 			}
14211da177e4SLinus Torvalds 
14221da177e4SLinus Torvalds 			/*
14231da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
14241da177e4SLinus Torvalds 			 * file..
14251da177e4SLinus Torvalds 			 */
14261da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
14271da177e4SLinus Torvalds 				return -EACCES;
14281da177e4SLinus Torvalds 
14291da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
14301da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
14311da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1432e4a9bc58SJoe Perches 			fallthrough;
14331da177e4SLinus Torvalds 		case MAP_PRIVATE:
14341da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
14351da177e4SLinus Torvalds 				return -EACCES;
143690f8572bSEric W. Biederman 			if (path_noexec(&file->f_path)) {
143780c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
143880c5606cSLinus Torvalds 					return -EPERM;
143980c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
144080c5606cSLinus Torvalds 			}
144180c5606cSLinus Torvalds 
144272c2d531SAl Viro 			if (!file->f_op->mmap)
144380c5606cSLinus Torvalds 				return -ENODEV;
1444b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1445b2c56e4fSOleg Nesterov 				return -EINVAL;
14461da177e4SLinus Torvalds 			break;
14471da177e4SLinus Torvalds 
14481da177e4SLinus Torvalds 		default:
14491da177e4SLinus Torvalds 			return -EINVAL;
14501da177e4SLinus Torvalds 		}
14511da177e4SLinus Torvalds 	} else {
14521da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
14531da177e4SLinus Torvalds 		case MAP_SHARED:
1454b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1455b2c56e4fSOleg Nesterov 				return -EINVAL;
1456ce363942STejun Heo 			/*
1457ce363942STejun Heo 			 * Ignore pgoff.
1458ce363942STejun Heo 			 */
1459ce363942STejun Heo 			pgoff = 0;
14601da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
14611da177e4SLinus Torvalds 			break;
14621da177e4SLinus Torvalds 		case MAP_PRIVATE:
14631da177e4SLinus Torvalds 			/*
14641da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
14651da177e4SLinus Torvalds 			 */
14661da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
14671da177e4SLinus Torvalds 			break;
14681da177e4SLinus Torvalds 		default:
14691da177e4SLinus Torvalds 			return -EINVAL;
14701da177e4SLinus Torvalds 		}
14711da177e4SLinus Torvalds 	}
14721da177e4SLinus Torvalds 
1473c22c0d63SMichel Lespinasse 	/*
1474c22c0d63SMichel Lespinasse 	 * Set 'VM_NORESERVE' if we should not account for the
1475c22c0d63SMichel Lespinasse 	 * memory use of this mapping.
1476c22c0d63SMichel Lespinasse 	 */
1477c22c0d63SMichel Lespinasse 	if (flags & MAP_NORESERVE) {
1478c22c0d63SMichel Lespinasse 		/* We honor MAP_NORESERVE if allowed to overcommit */
1479c22c0d63SMichel Lespinasse 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1480c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1481c22c0d63SMichel Lespinasse 
1482c22c0d63SMichel Lespinasse 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
1483c22c0d63SMichel Lespinasse 		if (file && is_file_hugepages(file))
1484c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1485c22c0d63SMichel Lespinasse 	}
1486c22c0d63SMichel Lespinasse 
1487897ab3e0SMike Rapoport 	addr = mmap_region(file, addr, len, vm_flags, pgoff, uf);
148809a9f1d2SMichel Lespinasse 	if (!IS_ERR_VALUE(addr) &&
148909a9f1d2SMichel Lespinasse 	    ((vm_flags & VM_LOCKED) ||
149009a9f1d2SMichel Lespinasse 	     (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
149141badc15SMichel Lespinasse 		*populate = len;
1492bebeb3d6SMichel Lespinasse 	return addr;
14930165ab44SMiklos Szeredi }
14946be5ceb0SLinus Torvalds 
1495a90f590aSDominik Brodowski unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
1496a90f590aSDominik Brodowski 			      unsigned long prot, unsigned long flags,
1497a90f590aSDominik Brodowski 			      unsigned long fd, unsigned long pgoff)
149866f0dc48SHugh Dickins {
149966f0dc48SHugh Dickins 	struct file *file = NULL;
15001e3ee14bSChen Gang 	unsigned long retval;
150166f0dc48SHugh Dickins 
150266f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1503120a795dSAl Viro 		audit_mmap_fd(fd, flags);
150466f0dc48SHugh Dickins 		file = fget(fd);
150566f0dc48SHugh Dickins 		if (!file)
15061e3ee14bSChen Gang 			return -EBADF;
15077bba8f0eSZhen Lei 		if (is_file_hugepages(file)) {
1508af73e4d9SNaoya Horiguchi 			len = ALIGN(len, huge_page_size(hstate_file(file)));
15097bba8f0eSZhen Lei 		} else if (unlikely(flags & MAP_HUGETLB)) {
1510493af578SJörn Engel 			retval = -EINVAL;
1511493af578SJörn Engel 			goto out_fput;
15127bba8f0eSZhen Lei 		}
151366f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
1514c103a4dcSAndrew Morton 		struct hstate *hs;
1515af73e4d9SNaoya Horiguchi 
151620ac2893SAnshuman Khandual 		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
1517091d0d55SLi Zefan 		if (!hs)
1518091d0d55SLi Zefan 			return -EINVAL;
1519091d0d55SLi Zefan 
1520091d0d55SLi Zefan 		len = ALIGN(len, huge_page_size(hs));
152166f0dc48SHugh Dickins 		/*
152266f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
152366f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
152466f0dc48SHugh Dickins 		 */
1525af73e4d9SNaoya Horiguchi 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
152642d7395fSAndi Kleen 				VM_NORESERVE,
152783c1fd76Szhangyiru 				HUGETLB_ANONHUGE_INODE,
152842d7395fSAndi Kleen 				(flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
152966f0dc48SHugh Dickins 		if (IS_ERR(file))
153066f0dc48SHugh Dickins 			return PTR_ERR(file);
153166f0dc48SHugh Dickins 	}
153266f0dc48SHugh Dickins 
15339fbeb5abSMichal Hocko 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1534493af578SJörn Engel out_fput:
153566f0dc48SHugh Dickins 	if (file)
153666f0dc48SHugh Dickins 		fput(file);
153766f0dc48SHugh Dickins 	return retval;
153866f0dc48SHugh Dickins }
153966f0dc48SHugh Dickins 
1540a90f590aSDominik Brodowski SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1541a90f590aSDominik Brodowski 		unsigned long, prot, unsigned long, flags,
1542a90f590aSDominik Brodowski 		unsigned long, fd, unsigned long, pgoff)
1543a90f590aSDominik Brodowski {
1544a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
1545a90f590aSDominik Brodowski }
1546a90f590aSDominik Brodowski 
1547a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1548a4679373SChristoph Hellwig struct mmap_arg_struct {
1549a4679373SChristoph Hellwig 	unsigned long addr;
1550a4679373SChristoph Hellwig 	unsigned long len;
1551a4679373SChristoph Hellwig 	unsigned long prot;
1552a4679373SChristoph Hellwig 	unsigned long flags;
1553a4679373SChristoph Hellwig 	unsigned long fd;
1554a4679373SChristoph Hellwig 	unsigned long offset;
1555a4679373SChristoph Hellwig };
1556a4679373SChristoph Hellwig 
1557a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1558a4679373SChristoph Hellwig {
1559a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1560a4679373SChristoph Hellwig 
1561a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1562a4679373SChristoph Hellwig 		return -EFAULT;
1563de1741a1SAlexander Kuleshov 	if (offset_in_page(a.offset))
1564a4679373SChristoph Hellwig 		return -EINVAL;
1565a4679373SChristoph Hellwig 
1566a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1567a4679373SChristoph Hellwig 			       a.offset >> PAGE_SHIFT);
1568a4679373SChristoph Hellwig }
1569a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1570a4679373SChristoph Hellwig 
15714e950f6fSAlexey Dobriyan /*
15728bb4e7a2SWei Yang  * Some shared mappings will want the pages marked read-only
15734e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
15744e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
15754e950f6fSAlexey Dobriyan  * VM_SHARED bit).
15764e950f6fSAlexey Dobriyan  */
15776d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
15784e950f6fSAlexey Dobriyan {
1579ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags = vma->vm_flags;
15808a04446aSKirill A. Shutemov 	const struct vm_operations_struct *vm_ops = vma->vm_ops;
15814e950f6fSAlexey Dobriyan 
15824e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
15834e950f6fSAlexey Dobriyan 	if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
15844e950f6fSAlexey Dobriyan 		return 0;
15854e950f6fSAlexey Dobriyan 
15864e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
15878a04446aSKirill A. Shutemov 	if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
15884e950f6fSAlexey Dobriyan 		return 1;
15894e950f6fSAlexey Dobriyan 
159064e45507SPeter Feiner 	/* The open routine did something to the protections that pgprot_modify
159164e45507SPeter Feiner 	 * won't preserve? */
15926d2329f8SAndrea Arcangeli 	if (pgprot_val(vm_page_prot) !=
15936d2329f8SAndrea Arcangeli 	    pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
15944e950f6fSAlexey Dobriyan 		return 0;
15954e950f6fSAlexey Dobriyan 
1596f96f7a40SDavid Hildenbrand 	/*
1597f96f7a40SDavid Hildenbrand 	 * Do we need to track softdirty? hugetlb does not support softdirty
1598f96f7a40SDavid Hildenbrand 	 * tracking yet.
1599f96f7a40SDavid Hildenbrand 	 */
1600f96f7a40SDavid Hildenbrand 	if (vma_soft_dirty_enabled(vma) && !is_vm_hugetlb_page(vma))
160164e45507SPeter Feiner 		return 1;
160264e45507SPeter Feiner 
16034e950f6fSAlexey Dobriyan 	/* Specialty mapping? */
16044b6e1e37SKonstantin Khlebnikov 	if (vm_flags & VM_PFNMAP)
16054e950f6fSAlexey Dobriyan 		return 0;
16064e950f6fSAlexey Dobriyan 
16074e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
16084e950f6fSAlexey Dobriyan 	return vma->vm_file && vma->vm_file->f_mapping &&
1609f56753acSChristoph Hellwig 		mapping_can_writeback(vma->vm_file->f_mapping);
16104e950f6fSAlexey Dobriyan }
16114e950f6fSAlexey Dobriyan 
1612fc8744adSLinus Torvalds /*
1613fc8744adSLinus Torvalds  * We account for memory if it's a private writeable mapping,
16145a6fe125SMel Gorman  * not hugepages and VM_NORESERVE wasn't set.
1615fc8744adSLinus Torvalds  */
1616ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1617fc8744adSLinus Torvalds {
16185a6fe125SMel Gorman 	/*
16195a6fe125SMel Gorman 	 * hugetlb has its own accounting separate from the core VM
16205a6fe125SMel Gorman 	 * VM_HUGETLB may not be set yet so we cannot check for that flag.
16215a6fe125SMel Gorman 	 */
16225a6fe125SMel Gorman 	if (file && is_file_hugepages(file))
16235a6fe125SMel Gorman 		return 0;
16245a6fe125SMel Gorman 
1625fc8744adSLinus Torvalds 	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1626fc8744adSLinus Torvalds }
1627fc8744adSLinus Torvalds 
16280165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr,
1629897ab3e0SMike Rapoport 		unsigned long len, vm_flags_t vm_flags, unsigned long pgoff,
1630897ab3e0SMike Rapoport 		struct list_head *uf)
16310165ab44SMiklos Szeredi {
16320165ab44SMiklos Szeredi 	struct mm_struct *mm = current->mm;
1633d70cec89SMiaohe Lin 	struct vm_area_struct *vma, *prev, *merge;
16340165ab44SMiklos Szeredi 	int error;
16350165ab44SMiklos Szeredi 	unsigned long charged = 0;
16360165ab44SMiklos Szeredi 
1637e8420a8eSCyril Hrubis 	/* Check against address space limit. */
163884638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
1639e8420a8eSCyril Hrubis 		unsigned long nr_pages;
1640e8420a8eSCyril Hrubis 
1641e8420a8eSCyril Hrubis 		/*
1642e8420a8eSCyril Hrubis 		 * MAP_FIXED may remove pages of mappings that intersects with
1643e8420a8eSCyril Hrubis 		 * requested mapping. Account for the pages it would unmap.
1644e8420a8eSCyril Hrubis 		 */
1645e8420a8eSCyril Hrubis 		nr_pages = count_vma_pages_range(mm, addr, addr + len);
1646e8420a8eSCyril Hrubis 
164784638335SKonstantin Khlebnikov 		if (!may_expand_vm(mm, vm_flags,
164884638335SKonstantin Khlebnikov 					(len >> PAGE_SHIFT) - nr_pages))
1649e8420a8eSCyril Hrubis 			return -ENOMEM;
1650e8420a8eSCyril Hrubis 	}
1651e8420a8eSCyril Hrubis 
1652524e00b3SLiam R. Howlett 	/* Clear old maps, set up prev and uf */
1653524e00b3SLiam R. Howlett 	if (munmap_vma_range(mm, addr, len, &prev, uf))
16541da177e4SLinus Torvalds 		return -ENOMEM;
1655fc8744adSLinus Torvalds 	/*
16561da177e4SLinus Torvalds 	 * Private writable mapping: check memory availability
16571da177e4SLinus Torvalds 	 */
16585a6fe125SMel Gorman 	if (accountable_mapping(file, vm_flags)) {
16591da177e4SLinus Torvalds 		charged = len >> PAGE_SHIFT;
1660191c5424SAl Viro 		if (security_vm_enough_memory_mm(mm, charged))
16611da177e4SLinus Torvalds 			return -ENOMEM;
16621da177e4SLinus Torvalds 		vm_flags |= VM_ACCOUNT;
16631da177e4SLinus Torvalds 	}
16641da177e4SLinus Torvalds 
16651da177e4SLinus Torvalds 	/*
1666de33c8dbSLinus Torvalds 	 * Can we just expand an old mapping?
16671da177e4SLinus Torvalds 	 */
166819a809afSAndrea Arcangeli 	vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
16699a10064fSColin Cross 			NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
1670ba470de4SRik van Riel 	if (vma)
16711da177e4SLinus Torvalds 		goto out;
16721da177e4SLinus Torvalds 
16731da177e4SLinus Torvalds 	/*
16741da177e4SLinus Torvalds 	 * Determine the object being mapped and call the appropriate
16751da177e4SLinus Torvalds 	 * specific mapper. the address has already been validated, but
16761da177e4SLinus Torvalds 	 * not unmapped, but the maps are removed from the list.
16771da177e4SLinus Torvalds 	 */
1678490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
16791da177e4SLinus Torvalds 	if (!vma) {
16801da177e4SLinus Torvalds 		error = -ENOMEM;
16811da177e4SLinus Torvalds 		goto unacct_error;
16821da177e4SLinus Torvalds 	}
16831da177e4SLinus Torvalds 
16841da177e4SLinus Torvalds 	vma->vm_start = addr;
16851da177e4SLinus Torvalds 	vma->vm_end = addr + len;
16861da177e4SLinus Torvalds 	vma->vm_flags = vm_flags;
16873ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
16881da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
16891da177e4SLinus Torvalds 
16901da177e4SLinus Torvalds 	if (file) {
16914bb5f5d9SDavid Herrmann 		if (vm_flags & VM_SHARED) {
16924bb5f5d9SDavid Herrmann 			error = mapping_map_writable(file->f_mapping);
16934bb5f5d9SDavid Herrmann 			if (error)
16948d0920bdSDavid Hildenbrand 				goto free_vma;
16954bb5f5d9SDavid Herrmann 		}
16964bb5f5d9SDavid Herrmann 
1697cb0942b8SAl Viro 		vma->vm_file = get_file(file);
1698f74ac015SMiklos Szeredi 		error = call_mmap(file, vma);
16991da177e4SLinus Torvalds 		if (error)
17001da177e4SLinus Torvalds 			goto unmap_and_free_vma;
17011da177e4SLinus Torvalds 
1702309d08d9SLiu Zixian 		/* Can addr have changed??
1703309d08d9SLiu Zixian 		 *
1704309d08d9SLiu Zixian 		 * Answer: Yes, several device drivers can do it in their
1705309d08d9SLiu Zixian 		 *         f_op->mmap method. -DaveM
1706309d08d9SLiu Zixian 		 * Bug: If addr is changed, prev, rb_link, rb_parent should
1707309d08d9SLiu Zixian 		 *      be updated for vma_link()
1708309d08d9SLiu Zixian 		 */
1709309d08d9SLiu Zixian 		WARN_ON_ONCE(addr != vma->vm_start);
1710309d08d9SLiu Zixian 
1711309d08d9SLiu Zixian 		addr = vma->vm_start;
1712309d08d9SLiu Zixian 
1713d70cec89SMiaohe Lin 		/* If vm_flags changed after call_mmap(), we should try merge vma again
1714d70cec89SMiaohe Lin 		 * as we may succeed this time.
1715d70cec89SMiaohe Lin 		 */
1716d70cec89SMiaohe Lin 		if (unlikely(vm_flags != vma->vm_flags && prev)) {
1717d70cec89SMiaohe Lin 			merge = vma_merge(mm, prev, vma->vm_start, vma->vm_end, vma->vm_flags,
17189a10064fSColin Cross 				NULL, vma->vm_file, vma->vm_pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
1719d70cec89SMiaohe Lin 			if (merge) {
1720bc4fe4cdSMiaohe Lin 				/* ->mmap() can change vma->vm_file and fput the original file. So
1721bc4fe4cdSMiaohe Lin 				 * fput the vma->vm_file here or we would add an extra fput for file
1722bc4fe4cdSMiaohe Lin 				 * and cause general protection fault ultimately.
1723bc4fe4cdSMiaohe Lin 				 */
1724bc4fe4cdSMiaohe Lin 				fput(vma->vm_file);
1725d70cec89SMiaohe Lin 				vm_area_free(vma);
1726d70cec89SMiaohe Lin 				vma = merge;
1727309d08d9SLiu Zixian 				/* Update vm_flags to pick up the change. */
1728d70cec89SMiaohe Lin 				vm_flags = vma->vm_flags;
1729d70cec89SMiaohe Lin 				goto unmap_writable;
1730d70cec89SMiaohe Lin 			}
1731d70cec89SMiaohe Lin 		}
1732d70cec89SMiaohe Lin 
17331da177e4SLinus Torvalds 		vm_flags = vma->vm_flags;
1734f8dbf0a7SHuang Shijie 	} else if (vm_flags & VM_SHARED) {
1735f8dbf0a7SHuang Shijie 		error = shmem_zero_setup(vma);
1736f8dbf0a7SHuang Shijie 		if (error)
1737f8dbf0a7SHuang Shijie 			goto free_vma;
1738bfd40eafSKirill A. Shutemov 	} else {
1739bfd40eafSKirill A. Shutemov 		vma_set_anonymous(vma);
1740f8dbf0a7SHuang Shijie 	}
17411da177e4SLinus Torvalds 
1742c462ac28SCatalin Marinas 	/* Allow architectures to sanity-check the vm_flags */
1743c462ac28SCatalin Marinas 	if (!arch_validate_flags(vma->vm_flags)) {
1744c462ac28SCatalin Marinas 		error = -EINVAL;
1745c462ac28SCatalin Marinas 		if (file)
1746c462ac28SCatalin Marinas 			goto unmap_and_free_vma;
1747c462ac28SCatalin Marinas 		else
1748c462ac28SCatalin Marinas 			goto free_vma;
1749c462ac28SCatalin Marinas 	}
1750c462ac28SCatalin Marinas 
1751524e00b3SLiam R. Howlett 	if (vma_link(mm, vma, prev)) {
1752d4af56c5SLiam R. Howlett 		error = -ENOMEM;
1753d4af56c5SLiam R. Howlett 		if (file)
1754d4af56c5SLiam R. Howlett 			goto unmap_and_free_vma;
1755d4af56c5SLiam R. Howlett 		else
1756d4af56c5SLiam R. Howlett 			goto free_vma;
1757d4af56c5SLiam R. Howlett 	}
1758613bec09SYang Shi 
1759613bec09SYang Shi 	/*
1760613bec09SYang Shi 	 * vma_merge() calls khugepaged_enter_vma() either, the below
1761613bec09SYang Shi 	 * call covers the non-merge case.
1762613bec09SYang Shi 	 */
1763613bec09SYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
1764613bec09SYang Shi 
17654d3d5b41SOleg Nesterov 	/* Once vma denies write, undo our temporary denial count */
1766d70cec89SMiaohe Lin unmap_writable:
17678d0920bdSDavid Hildenbrand 	if (file && vm_flags & VM_SHARED)
17684bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
1769e8686772SOleg Nesterov 	file = vma->vm_file;
17701da177e4SLinus Torvalds out:
1771cdd6c482SIngo Molnar 	perf_event_mmap(vma);
17720a4a9391SPeter Zijlstra 
177384638335SKonstantin Khlebnikov 	vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
17741da177e4SLinus Torvalds 	if (vm_flags & VM_LOCKED) {
1775e1fb4a08SDave Jiang 		if ((vm_flags & VM_SPECIAL) || vma_is_dax(vma) ||
1776e1fb4a08SDave Jiang 					is_vm_hugetlb_page(vma) ||
1777e1fb4a08SDave Jiang 					vma == get_gate_vma(current->mm))
1778de60f5f1SEric B Munson 			vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
1779e1fb4a08SDave Jiang 		else
1780e1fb4a08SDave Jiang 			mm->locked_vm += (len >> PAGE_SHIFT);
1781bebeb3d6SMichel Lespinasse 	}
17822b144498SSrikar Dronamraju 
1783c7a3a88cSOleg Nesterov 	if (file)
1784c7a3a88cSOleg Nesterov 		uprobe_mmap(vma);
17852b144498SSrikar Dronamraju 
1786d9104d1cSCyrill Gorcunov 	/*
1787d9104d1cSCyrill Gorcunov 	 * New (or expanded) vma always get soft dirty status.
1788d9104d1cSCyrill Gorcunov 	 * Otherwise user-space soft-dirty page tracker won't
1789d9104d1cSCyrill Gorcunov 	 * be able to distinguish situation when vma area unmapped,
1790d9104d1cSCyrill Gorcunov 	 * then new mapped in-place (which must be aimed as
1791d9104d1cSCyrill Gorcunov 	 * a completely new data area).
1792d9104d1cSCyrill Gorcunov 	 */
1793d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
1794d9104d1cSCyrill Gorcunov 
179564e45507SPeter Feiner 	vma_set_page_prot(vma);
179664e45507SPeter Feiner 
17971da177e4SLinus Torvalds 	return addr;
17981da177e4SLinus Torvalds 
17991da177e4SLinus Torvalds unmap_and_free_vma:
18001527f926SChristian König 	fput(vma->vm_file);
18011da177e4SLinus Torvalds 	vma->vm_file = NULL;
18021da177e4SLinus Torvalds 
18031da177e4SLinus Torvalds 	/* Undo any partial mapping done by a device driver. */
1804e0da382cSHugh Dickins 	unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
18054bb5f5d9SDavid Herrmann 	if (vm_flags & VM_SHARED)
18064bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
18071da177e4SLinus Torvalds free_vma:
18083928d4f5SLinus Torvalds 	vm_area_free(vma);
18091da177e4SLinus Torvalds unacct_error:
18101da177e4SLinus Torvalds 	if (charged)
18111da177e4SLinus Torvalds 		vm_unacct_memory(charged);
18121da177e4SLinus Torvalds 	return error;
18131da177e4SLinus Torvalds }
18141da177e4SLinus Torvalds 
18153499a131SLiam R. Howlett /**
18163499a131SLiam R. Howlett  * unmapped_area() - Find an area between the low_limit and the high_limit with
18173499a131SLiam R. Howlett  * the correct alignment and offset, all from @info. Note: current->mm is used
18183499a131SLiam R. Howlett  * for the search.
18193499a131SLiam R. Howlett  *
18203499a131SLiam R. Howlett  * @info: The unmapped area information including the range (low_limit -
18213499a131SLiam R. Howlett  * hight_limit), the alignment offset and mask.
18223499a131SLiam R. Howlett  *
18233499a131SLiam R. Howlett  * Return: A memory address or -ENOMEM.
18243499a131SLiam R. Howlett  */
1825baceaf1cSJaewon Kim static unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1826db4fbfb9SMichel Lespinasse {
18273499a131SLiam R. Howlett 	unsigned long length, gap;
1828db4fbfb9SMichel Lespinasse 
18293499a131SLiam R. Howlett 	MA_STATE(mas, &current->mm->mm_mt, 0, 0);
1830db4fbfb9SMichel Lespinasse 
1831db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1832db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1833db4fbfb9SMichel Lespinasse 	if (length < info->length)
1834db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1835db4fbfb9SMichel Lespinasse 
18363499a131SLiam R. Howlett 	if (mas_empty_area(&mas, info->low_limit, info->high_limit - 1,
18373499a131SLiam R. Howlett 				  length))
18383499a131SLiam R. Howlett 		return -ENOMEM;
18393499a131SLiam R. Howlett 
1840d4af56c5SLiam R. Howlett 	gap = mas.index;
1841d4af56c5SLiam R. Howlett 	gap += (info->align_offset - gap) & info->align_mask;
18423499a131SLiam R. Howlett 	return gap;
1843db4fbfb9SMichel Lespinasse }
1844db4fbfb9SMichel Lespinasse 
18453499a131SLiam R. Howlett /**
18463499a131SLiam R. Howlett  * unmapped_area_topdown() - Find an area between the low_limit and the
18473499a131SLiam R. Howlett  * high_limit with * the correct alignment and offset at the highest available
18483499a131SLiam R. Howlett  * address, all from @info. Note: current->mm is used for the search.
18493499a131SLiam R. Howlett  *
18503499a131SLiam R. Howlett  * @info: The unmapped area information including the range (low_limit -
18513499a131SLiam R. Howlett  * hight_limit), the alignment offset and mask.
18523499a131SLiam R. Howlett  *
18533499a131SLiam R. Howlett  * Return: A memory address or -ENOMEM.
18543499a131SLiam R. Howlett  */
1855baceaf1cSJaewon Kim static unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1856db4fbfb9SMichel Lespinasse {
18573499a131SLiam R. Howlett 	unsigned long length, gap;
1858d4af56c5SLiam R. Howlett 
18593499a131SLiam R. Howlett 	MA_STATE(mas, &current->mm->mm_mt, 0, 0);
1860db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1861db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1862db4fbfb9SMichel Lespinasse 	if (length < info->length)
1863db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1864db4fbfb9SMichel Lespinasse 
18653499a131SLiam R. Howlett 	if (mas_empty_area_rev(&mas, info->low_limit, info->high_limit - 1,
18663499a131SLiam R. Howlett 				length))
18673499a131SLiam R. Howlett 		return -ENOMEM;
18683499a131SLiam R. Howlett 
1869d4af56c5SLiam R. Howlett 	gap = mas.last + 1 - info->length;
1870d4af56c5SLiam R. Howlett 	gap -= (gap - info->align_offset) & info->align_mask;
18713499a131SLiam R. Howlett 	return gap;
1872db4fbfb9SMichel Lespinasse }
1873db4fbfb9SMichel Lespinasse 
1874baceaf1cSJaewon Kim /*
1875baceaf1cSJaewon Kim  * Search for an unmapped address range.
1876baceaf1cSJaewon Kim  *
1877baceaf1cSJaewon Kim  * We are looking for a range that:
1878baceaf1cSJaewon Kim  * - does not intersect with any VMA;
1879baceaf1cSJaewon Kim  * - is contained within the [low_limit, high_limit) interval;
1880baceaf1cSJaewon Kim  * - is at least the desired size.
1881baceaf1cSJaewon Kim  * - satisfies (begin_addr & align_mask) == (align_offset & align_mask)
1882baceaf1cSJaewon Kim  */
1883baceaf1cSJaewon Kim unsigned long vm_unmapped_area(struct vm_unmapped_area_info *info)
1884baceaf1cSJaewon Kim {
1885df529cabSJaewon Kim 	unsigned long addr;
1886df529cabSJaewon Kim 
1887baceaf1cSJaewon Kim 	if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
1888df529cabSJaewon Kim 		addr = unmapped_area_topdown(info);
1889baceaf1cSJaewon Kim 	else
1890df529cabSJaewon Kim 		addr = unmapped_area(info);
1891df529cabSJaewon Kim 
1892df529cabSJaewon Kim 	trace_vm_unmapped_area(addr, info);
1893df529cabSJaewon Kim 	return addr;
1894baceaf1cSJaewon Kim }
1895f6795053SSteve Capper 
18961da177e4SLinus Torvalds /* Get an address range which is currently unmapped.
18971da177e4SLinus Torvalds  * For shmat() with addr=0.
18981da177e4SLinus Torvalds  *
18991da177e4SLinus Torvalds  * Ugly calling convention alert:
19001da177e4SLinus Torvalds  * Return value with the low bits set means error value,
19011da177e4SLinus Torvalds  * ie
19021da177e4SLinus Torvalds  *	if (ret & ~PAGE_MASK)
19031da177e4SLinus Torvalds  *		error = ret;
19041da177e4SLinus Torvalds  *
19051da177e4SLinus Torvalds  * This function "knows" that -ENOMEM has the bits set.
19061da177e4SLinus Torvalds  */
19071da177e4SLinus Torvalds unsigned long
19084b439e25SChristophe Leroy generic_get_unmapped_area(struct file *filp, unsigned long addr,
19094b439e25SChristophe Leroy 			  unsigned long len, unsigned long pgoff,
19104b439e25SChristophe Leroy 			  unsigned long flags)
19111da177e4SLinus Torvalds {
19121da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
19131be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
1914db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
19152cb4de08SChristophe Leroy 	const unsigned long mmap_end = arch_get_mmap_end(addr, len, flags);
19161da177e4SLinus Torvalds 
1917f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
19181da177e4SLinus Torvalds 		return -ENOMEM;
19191da177e4SLinus Torvalds 
192006abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
192106abdfb4SBenjamin Herrenschmidt 		return addr;
192206abdfb4SBenjamin Herrenschmidt 
19231da177e4SLinus Torvalds 	if (addr) {
19241da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
19251be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
1926f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
19271be7107fSHugh Dickins 		    (!vma || addr + len <= vm_start_gap(vma)) &&
19281be7107fSHugh Dickins 		    (!prev || addr >= vm_end_gap(prev)))
19291da177e4SLinus Torvalds 			return addr;
19301da177e4SLinus Torvalds 	}
19311da177e4SLinus Torvalds 
1932db4fbfb9SMichel Lespinasse 	info.flags = 0;
1933db4fbfb9SMichel Lespinasse 	info.length = len;
19344e99b021SHeiko Carstens 	info.low_limit = mm->mmap_base;
1935f6795053SSteve Capper 	info.high_limit = mmap_end;
1936db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
193709ef5283SJaewon Kim 	info.align_offset = 0;
1938db4fbfb9SMichel Lespinasse 	return vm_unmapped_area(&info);
19391da177e4SLinus Torvalds }
19404b439e25SChristophe Leroy 
19414b439e25SChristophe Leroy #ifndef HAVE_ARCH_UNMAPPED_AREA
19424b439e25SChristophe Leroy unsigned long
19434b439e25SChristophe Leroy arch_get_unmapped_area(struct file *filp, unsigned long addr,
19444b439e25SChristophe Leroy 		       unsigned long len, unsigned long pgoff,
19454b439e25SChristophe Leroy 		       unsigned long flags)
19464b439e25SChristophe Leroy {
19474b439e25SChristophe Leroy 	return generic_get_unmapped_area(filp, addr, len, pgoff, flags);
19484b439e25SChristophe Leroy }
19491da177e4SLinus Torvalds #endif
19501da177e4SLinus Torvalds 
19511da177e4SLinus Torvalds /*
19521da177e4SLinus Torvalds  * This mmap-allocator allocates new areas top-down from below the
19531da177e4SLinus Torvalds  * stack's low limit (the base):
19541da177e4SLinus Torvalds  */
19551da177e4SLinus Torvalds unsigned long
19564b439e25SChristophe Leroy generic_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
195743cca0b1SYang Fan 				  unsigned long len, unsigned long pgoff,
195843cca0b1SYang Fan 				  unsigned long flags)
19591da177e4SLinus Torvalds {
19601be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
19611da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1962db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
19632cb4de08SChristophe Leroy 	const unsigned long mmap_end = arch_get_mmap_end(addr, len, flags);
19641da177e4SLinus Torvalds 
19651da177e4SLinus Torvalds 	/* requested length too big for entire address space */
1966f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
19671da177e4SLinus Torvalds 		return -ENOMEM;
19681da177e4SLinus Torvalds 
196906abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
197006abdfb4SBenjamin Herrenschmidt 		return addr;
197106abdfb4SBenjamin Herrenschmidt 
19721da177e4SLinus Torvalds 	/* requesting a specific address */
19731da177e4SLinus Torvalds 	if (addr) {
19741da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
19751be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
1976f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
19771be7107fSHugh Dickins 				(!vma || addr + len <= vm_start_gap(vma)) &&
19781be7107fSHugh Dickins 				(!prev || addr >= vm_end_gap(prev)))
19791da177e4SLinus Torvalds 			return addr;
19801da177e4SLinus Torvalds 	}
19811da177e4SLinus Torvalds 
1982db4fbfb9SMichel Lespinasse 	info.flags = VM_UNMAPPED_AREA_TOPDOWN;
1983db4fbfb9SMichel Lespinasse 	info.length = len;
19842afc745fSAkira Takeuchi 	info.low_limit = max(PAGE_SIZE, mmap_min_addr);
1985f6795053SSteve Capper 	info.high_limit = arch_get_mmap_base(addr, mm->mmap_base);
1986db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
198709ef5283SJaewon Kim 	info.align_offset = 0;
1988db4fbfb9SMichel Lespinasse 	addr = vm_unmapped_area(&info);
1989b716ad95SXiao Guangrong 
19901da177e4SLinus Torvalds 	/*
19911da177e4SLinus Torvalds 	 * A failed mmap() very likely causes application failure,
19921da177e4SLinus Torvalds 	 * so fall back to the bottom-up function here. This scenario
19931da177e4SLinus Torvalds 	 * can happen with large stack limits and large mmap()
19941da177e4SLinus Torvalds 	 * allocations.
19951da177e4SLinus Torvalds 	 */
1996de1741a1SAlexander Kuleshov 	if (offset_in_page(addr)) {
1997db4fbfb9SMichel Lespinasse 		VM_BUG_ON(addr != -ENOMEM);
1998db4fbfb9SMichel Lespinasse 		info.flags = 0;
1999db4fbfb9SMichel Lespinasse 		info.low_limit = TASK_UNMAPPED_BASE;
2000f6795053SSteve Capper 		info.high_limit = mmap_end;
2001db4fbfb9SMichel Lespinasse 		addr = vm_unmapped_area(&info);
2002db4fbfb9SMichel Lespinasse 	}
20031da177e4SLinus Torvalds 
20041da177e4SLinus Torvalds 	return addr;
20051da177e4SLinus Torvalds }
20064b439e25SChristophe Leroy 
20074b439e25SChristophe Leroy #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
20084b439e25SChristophe Leroy unsigned long
20094b439e25SChristophe Leroy arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
20104b439e25SChristophe Leroy 			       unsigned long len, unsigned long pgoff,
20114b439e25SChristophe Leroy 			       unsigned long flags)
20124b439e25SChristophe Leroy {
20134b439e25SChristophe Leroy 	return generic_get_unmapped_area_topdown(filp, addr, len, pgoff, flags);
20144b439e25SChristophe Leroy }
20151da177e4SLinus Torvalds #endif
20161da177e4SLinus Torvalds 
20171da177e4SLinus Torvalds unsigned long
20181da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
20191da177e4SLinus Torvalds 		unsigned long pgoff, unsigned long flags)
20201da177e4SLinus Torvalds {
202106abdfb4SBenjamin Herrenschmidt 	unsigned long (*get_area)(struct file *, unsigned long,
202206abdfb4SBenjamin Herrenschmidt 				  unsigned long, unsigned long, unsigned long);
202307ab67c8SLinus Torvalds 
20249206de95SAl Viro 	unsigned long error = arch_mmap_check(addr, len, flags);
20259206de95SAl Viro 	if (error)
20269206de95SAl Viro 		return error;
20279206de95SAl Viro 
20289206de95SAl Viro 	/* Careful about overflows.. */
20299206de95SAl Viro 	if (len > TASK_SIZE)
20309206de95SAl Viro 		return -ENOMEM;
20319206de95SAl Viro 
203207ab67c8SLinus Torvalds 	get_area = current->mm->get_unmapped_area;
2033c01d5b30SHugh Dickins 	if (file) {
2034c01d5b30SHugh Dickins 		if (file->f_op->get_unmapped_area)
203507ab67c8SLinus Torvalds 			get_area = file->f_op->get_unmapped_area;
2036c01d5b30SHugh Dickins 	} else if (flags & MAP_SHARED) {
2037c01d5b30SHugh Dickins 		/*
2038c01d5b30SHugh Dickins 		 * mmap_region() will call shmem_zero_setup() to create a file,
2039c01d5b30SHugh Dickins 		 * so use shmem's get_unmapped_area in case it can be huge.
204045e55300SPeter Collingbourne 		 * do_mmap() will clear pgoff, so match alignment.
2041c01d5b30SHugh Dickins 		 */
2042c01d5b30SHugh Dickins 		pgoff = 0;
2043c01d5b30SHugh Dickins 		get_area = shmem_get_unmapped_area;
2044f35b5d7dSRik van Riel 	} else if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) {
2045f35b5d7dSRik van Riel 		/* Ensures that larger anonymous mappings are THP aligned. */
2046f35b5d7dSRik van Riel 		get_area = thp_get_unmapped_area;
2047c01d5b30SHugh Dickins 	}
2048c01d5b30SHugh Dickins 
204907ab67c8SLinus Torvalds 	addr = get_area(file, addr, len, pgoff, flags);
205007ab67c8SLinus Torvalds 	if (IS_ERR_VALUE(addr))
205107ab67c8SLinus Torvalds 		return addr;
205207ab67c8SLinus Torvalds 
20531da177e4SLinus Torvalds 	if (addr > TASK_SIZE - len)
20541da177e4SLinus Torvalds 		return -ENOMEM;
2055de1741a1SAlexander Kuleshov 	if (offset_in_page(addr))
20561da177e4SLinus Torvalds 		return -EINVAL;
205706abdfb4SBenjamin Herrenschmidt 
20589ac4ed4bSAl Viro 	error = security_mmap_addr(addr);
20599ac4ed4bSAl Viro 	return error ? error : addr;
20601da177e4SLinus Torvalds }
20611da177e4SLinus Torvalds 
20621da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area);
20631da177e4SLinus Torvalds 
2064be8432e7SLiam R. Howlett /**
2065*abdba2ddSLiam R. Howlett  * find_vma_intersection() - Look up the first VMA which intersects the interval
2066*abdba2ddSLiam R. Howlett  * @mm: The process address space.
2067*abdba2ddSLiam R. Howlett  * @start_addr: The inclusive start user address.
2068*abdba2ddSLiam R. Howlett  * @end_addr: The exclusive end user address.
2069*abdba2ddSLiam R. Howlett  *
2070*abdba2ddSLiam R. Howlett  * Returns: The first VMA within the provided range, %NULL otherwise.  Assumes
2071*abdba2ddSLiam R. Howlett  * start_addr < end_addr.
2072*abdba2ddSLiam R. Howlett  */
2073*abdba2ddSLiam R. Howlett struct vm_area_struct *find_vma_intersection(struct mm_struct *mm,
2074*abdba2ddSLiam R. Howlett 					     unsigned long start_addr,
2075*abdba2ddSLiam R. Howlett 					     unsigned long end_addr)
2076*abdba2ddSLiam R. Howlett {
2077*abdba2ddSLiam R. Howlett 	struct vm_area_struct *vma;
2078*abdba2ddSLiam R. Howlett 	unsigned long index = start_addr;
2079*abdba2ddSLiam R. Howlett 
2080*abdba2ddSLiam R. Howlett 	mmap_assert_locked(mm);
2081*abdba2ddSLiam R. Howlett 	/* Check the cache first. */
2082*abdba2ddSLiam R. Howlett 	vma = vmacache_find(mm, start_addr);
2083*abdba2ddSLiam R. Howlett 	if (likely(vma))
2084*abdba2ddSLiam R. Howlett 		return vma;
2085*abdba2ddSLiam R. Howlett 
2086*abdba2ddSLiam R. Howlett 	vma = mt_find(&mm->mm_mt, &index, end_addr - 1);
2087*abdba2ddSLiam R. Howlett 	if (vma)
2088*abdba2ddSLiam R. Howlett 		vmacache_update(start_addr, vma);
2089*abdba2ddSLiam R. Howlett 	return vma;
2090*abdba2ddSLiam R. Howlett }
2091*abdba2ddSLiam R. Howlett EXPORT_SYMBOL(find_vma_intersection);
2092*abdba2ddSLiam R. Howlett 
2093*abdba2ddSLiam R. Howlett /**
2094be8432e7SLiam R. Howlett  * find_vma() - Find the VMA for a given address, or the next VMA.
2095be8432e7SLiam R. Howlett  * @mm: The mm_struct to check
2096be8432e7SLiam R. Howlett  * @addr: The address
2097be8432e7SLiam R. Howlett  *
2098be8432e7SLiam R. Howlett  * Returns: The VMA associated with addr, or the next VMA.
2099be8432e7SLiam R. Howlett  * May return %NULL in the case of no VMA at addr or above.
2100be8432e7SLiam R. Howlett  */
21011da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
21021da177e4SLinus Torvalds {
2103615d6e87SDavidlohr Bueso 	struct vm_area_struct *vma;
2104be8432e7SLiam R. Howlett 	unsigned long index = addr;
21051da177e4SLinus Torvalds 
21065b78ed24SLuigi Rizzo 	mmap_assert_locked(mm);
21071da177e4SLinus Torvalds 	/* Check the cache first. */
2108615d6e87SDavidlohr Bueso 	vma = vmacache_find(mm, addr);
2109615d6e87SDavidlohr Bueso 	if (likely(vma))
2110615d6e87SDavidlohr Bueso 		return vma;
21111da177e4SLinus Torvalds 
2112be8432e7SLiam R. Howlett 	vma = mt_find(&mm->mm_mt, &index, ULONG_MAX);
21131da177e4SLinus Torvalds 	if (vma)
2114615d6e87SDavidlohr Bueso 		vmacache_update(addr, vma);
21151da177e4SLinus Torvalds 	return vma;
21161da177e4SLinus Torvalds }
21171da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma);
21181da177e4SLinus Torvalds 
21197fdbd37dSLiam R. Howlett /**
21207fdbd37dSLiam R. Howlett  * find_vma_prev() - Find the VMA for a given address, or the next vma and
21217fdbd37dSLiam R. Howlett  * set %pprev to the previous VMA, if any.
21227fdbd37dSLiam R. Howlett  * @mm: The mm_struct to check
21237fdbd37dSLiam R. Howlett  * @addr: The address
21247fdbd37dSLiam R. Howlett  * @pprev: The pointer to set to the previous VMA
21257fdbd37dSLiam R. Howlett  *
21267fdbd37dSLiam R. Howlett  * Note that RCU lock is missing here since the external mmap_lock() is used
21277fdbd37dSLiam R. Howlett  * instead.
21287fdbd37dSLiam R. Howlett  *
21297fdbd37dSLiam R. Howlett  * Returns: The VMA associated with @addr, or the next vma.
21307fdbd37dSLiam R. Howlett  * May return %NULL in the case of no vma at addr or above.
21316bd4837dSKOSAKI Motohiro  */
21321da177e4SLinus Torvalds struct vm_area_struct *
21331da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr,
21341da177e4SLinus Torvalds 			struct vm_area_struct **pprev)
21351da177e4SLinus Torvalds {
21366bd4837dSKOSAKI Motohiro 	struct vm_area_struct *vma;
21377fdbd37dSLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, addr, addr);
21381da177e4SLinus Torvalds 
21397fdbd37dSLiam R. Howlett 	vma = mas_walk(&mas);
21407fdbd37dSLiam R. Howlett 	*pprev = mas_prev(&mas, 0);
21417fdbd37dSLiam R. Howlett 	if (!vma)
21427fdbd37dSLiam R. Howlett 		vma = mas_next(&mas, ULONG_MAX);
21436bd4837dSKOSAKI Motohiro 	return vma;
21441da177e4SLinus Torvalds }
21451da177e4SLinus Torvalds 
21461da177e4SLinus Torvalds /*
21471da177e4SLinus Torvalds  * Verify that the stack growth is acceptable and
21481da177e4SLinus Torvalds  * update accounting. This is shared with both the
21491da177e4SLinus Torvalds  * grow-up and grow-down cases.
21501da177e4SLinus Torvalds  */
21511be7107fSHugh Dickins static int acct_stack_growth(struct vm_area_struct *vma,
21521be7107fSHugh Dickins 			     unsigned long size, unsigned long grow)
21531da177e4SLinus Torvalds {
21541da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
21551be7107fSHugh Dickins 	unsigned long new_start;
21561da177e4SLinus Torvalds 
21571da177e4SLinus Torvalds 	/* address space limit tests */
215884638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vma->vm_flags, grow))
21591da177e4SLinus Torvalds 		return -ENOMEM;
21601da177e4SLinus Torvalds 
21611da177e4SLinus Torvalds 	/* Stack limit test */
216224c79d8eSKrzysztof Opasiak 	if (size > rlimit(RLIMIT_STACK))
21631da177e4SLinus Torvalds 		return -ENOMEM;
21641da177e4SLinus Torvalds 
21651da177e4SLinus Torvalds 	/* mlock limit tests */
2166c5d8a364SMiaohe Lin 	if (mlock_future_check(mm, vma->vm_flags, grow << PAGE_SHIFT))
21671da177e4SLinus Torvalds 		return -ENOMEM;
21681da177e4SLinus Torvalds 
21690d59a01bSAdam Litke 	/* Check to ensure the stack will not grow into a hugetlb-only region */
21700d59a01bSAdam Litke 	new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
21710d59a01bSAdam Litke 			vma->vm_end - size;
21720d59a01bSAdam Litke 	if (is_hugepage_only_range(vma->vm_mm, new_start, size))
21730d59a01bSAdam Litke 		return -EFAULT;
21740d59a01bSAdam Litke 
21751da177e4SLinus Torvalds 	/*
21761da177e4SLinus Torvalds 	 * Overcommit..  This must be the final test, as it will
21771da177e4SLinus Torvalds 	 * update security statistics.
21781da177e4SLinus Torvalds 	 */
217905fa199dSHugh Dickins 	if (security_vm_enough_memory_mm(mm, grow))
21801da177e4SLinus Torvalds 		return -ENOMEM;
21811da177e4SLinus Torvalds 
21821da177e4SLinus Torvalds 	return 0;
21831da177e4SLinus Torvalds }
21841da177e4SLinus Torvalds 
218546dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
21861da177e4SLinus Torvalds /*
218746dea3d0SHugh Dickins  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
218846dea3d0SHugh Dickins  * vma is the last one with address > vma->vm_end.  Have to extend vma.
21891da177e4SLinus Torvalds  */
219046dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address)
21911da177e4SLinus Torvalds {
219209357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
21931be7107fSHugh Dickins 	struct vm_area_struct *next;
21941be7107fSHugh Dickins 	unsigned long gap_addr;
219512352d3cSKonstantin Khlebnikov 	int error = 0;
2196d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
21971da177e4SLinus Torvalds 
21981da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSUP))
21991da177e4SLinus Torvalds 		return -EFAULT;
22001da177e4SLinus Torvalds 
2201bd726c90SHelge Deller 	/* Guard against exceeding limits of the address space. */
22021be7107fSHugh Dickins 	address &= PAGE_MASK;
220337511fb5SHelge Deller 	if (address >= (TASK_SIZE & PAGE_MASK))
220412352d3cSKonstantin Khlebnikov 		return -ENOMEM;
2205bd726c90SHelge Deller 	address += PAGE_SIZE;
220612352d3cSKonstantin Khlebnikov 
22071be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
22081be7107fSHugh Dickins 	gap_addr = address + stack_guard_gap;
2209bd726c90SHelge Deller 
2210bd726c90SHelge Deller 	/* Guard against overflow */
2211bd726c90SHelge Deller 	if (gap_addr < address || gap_addr > TASK_SIZE)
2212bd726c90SHelge Deller 		gap_addr = TASK_SIZE;
2213bd726c90SHelge Deller 
22141be7107fSHugh Dickins 	next = vma->vm_next;
22153122e80eSAnshuman Khandual 	if (next && next->vm_start < gap_addr && vma_is_accessible(next)) {
22161be7107fSHugh Dickins 		if (!(next->vm_flags & VM_GROWSUP))
22171be7107fSHugh Dickins 			return -ENOMEM;
22181be7107fSHugh Dickins 		/* Check that both stack segments have the same anon_vma? */
22191be7107fSHugh Dickins 	}
22201be7107fSHugh Dickins 
2221d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
22221da177e4SLinus Torvalds 		return -ENOMEM;
22231da177e4SLinus Torvalds 
2224d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
2225d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
2226d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
2227d4af56c5SLiam R. Howlett 		return -ENOMEM;
2228d4af56c5SLiam R. Howlett 	}
2229d4af56c5SLiam R. Howlett 
22301da177e4SLinus Torvalds 	/*
22311da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2232c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
22331da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
22341da177e4SLinus Torvalds 	 */
223512352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
22361da177e4SLinus Torvalds 
22371da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
22381da177e4SLinus Torvalds 	if (address > vma->vm_end) {
22391da177e4SLinus Torvalds 		unsigned long size, grow;
22401da177e4SLinus Torvalds 
22411da177e4SLinus Torvalds 		size = address - vma->vm_start;
22421da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
22431da177e4SLinus Torvalds 
224442c36f63SHugh Dickins 		error = -ENOMEM;
224542c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
22461da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
22473af9e859SEric B Munson 			if (!error) {
22484128997bSMichel Lespinasse 				/*
2249524e00b3SLiam R. Howlett 				 * We only hold a shared mmap_lock lock here, so
2250524e00b3SLiam R. Howlett 				 * we need to protect against concurrent vma
2251524e00b3SLiam R. Howlett 				 * expansions.  anon_vma_lock_write() doesn't
2252524e00b3SLiam R. Howlett 				 * help here, as we don't guarantee that all
2253524e00b3SLiam R. Howlett 				 * growable vmas in a mm share the same root
2254524e00b3SLiam R. Howlett 				 * anon vma.  So, we reuse mm->page_table_lock
2255524e00b3SLiam R. Howlett 				 * to guard against concurrent vma expansions.
22564128997bSMichel Lespinasse 				 */
225709357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
225887e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
225909357814SOleg Nesterov 					mm->locked_vm += grow;
226084638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2261bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
22621da177e4SLinus Torvalds 				vma->vm_end = address;
2263d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2264d4af56c5SLiam R. Howlett 				vma_mas_store(vma, &mas);
2265bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2266524e00b3SLiam R. Howlett 				if (!vma->vm_next)
22671be7107fSHugh Dickins 					mm->highest_vm_end = vm_end_gap(vma);
226809357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
22694128997bSMichel Lespinasse 
22703af9e859SEric B Munson 				perf_event_mmap(vma);
22713af9e859SEric B Munson 			}
22721da177e4SLinus Torvalds 		}
227342c36f63SHugh Dickins 	}
227412352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2275c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
2276d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
22771da177e4SLinus Torvalds 	return error;
22781da177e4SLinus Torvalds }
227946dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
228046dea3d0SHugh Dickins 
22811da177e4SLinus Torvalds /*
22821da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
22831da177e4SLinus Torvalds  */
2284524e00b3SLiam R. Howlett int expand_downwards(struct vm_area_struct *vma, unsigned long address)
22851da177e4SLinus Torvalds {
228609357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
22871be7107fSHugh Dickins 	struct vm_area_struct *prev;
22880a1d5299SJann Horn 	int error = 0;
2289d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
22901da177e4SLinus Torvalds 
22918869477aSEric Paris 	address &= PAGE_MASK;
22920a1d5299SJann Horn 	if (address < mmap_min_addr)
22930a1d5299SJann Horn 		return -EPERM;
22948869477aSEric Paris 
22951be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
22961be7107fSHugh Dickins 	prev = vma->vm_prev;
22971be7107fSHugh Dickins 	/* Check that both stack segments have the same anon_vma? */
229832e4e6d5SOleg Nesterov 	if (prev && !(prev->vm_flags & VM_GROWSDOWN) &&
22993122e80eSAnshuman Khandual 			vma_is_accessible(prev)) {
230032e4e6d5SOleg Nesterov 		if (address - prev->vm_end < stack_guard_gap)
230132e4e6d5SOleg Nesterov 			return -ENOMEM;
23021be7107fSHugh Dickins 	}
23031be7107fSHugh Dickins 
2304d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
230512352d3cSKonstantin Khlebnikov 		return -ENOMEM;
23061da177e4SLinus Torvalds 
2307d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
2308d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
2309d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
2310d4af56c5SLiam R. Howlett 		return -ENOMEM;
2311d4af56c5SLiam R. Howlett 	}
2312d4af56c5SLiam R. Howlett 
23131da177e4SLinus Torvalds 	/*
23141da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2315c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
23161da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
23171da177e4SLinus Torvalds 	 */
231812352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
23191da177e4SLinus Torvalds 
23201da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
23211da177e4SLinus Torvalds 	if (address < vma->vm_start) {
23221da177e4SLinus Torvalds 		unsigned long size, grow;
23231da177e4SLinus Torvalds 
23241da177e4SLinus Torvalds 		size = vma->vm_end - address;
23251da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
23261da177e4SLinus Torvalds 
2327a626ca6aSLinus Torvalds 		error = -ENOMEM;
2328a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
23291da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
23301da177e4SLinus Torvalds 			if (!error) {
23314128997bSMichel Lespinasse 				/*
2332524e00b3SLiam R. Howlett 				 * We only hold a shared mmap_lock lock here, so
2333524e00b3SLiam R. Howlett 				 * we need to protect against concurrent vma
2334524e00b3SLiam R. Howlett 				 * expansions.  anon_vma_lock_write() doesn't
2335524e00b3SLiam R. Howlett 				 * help here, as we don't guarantee that all
2336524e00b3SLiam R. Howlett 				 * growable vmas in a mm share the same root
2337524e00b3SLiam R. Howlett 				 * anon vma.  So, we reuse mm->page_table_lock
2338524e00b3SLiam R. Howlett 				 * to guard against concurrent vma expansions.
23394128997bSMichel Lespinasse 				 */
234009357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
234187e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
234209357814SOleg Nesterov 					mm->locked_vm += grow;
234384638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2344bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
23451da177e4SLinus Torvalds 				vma->vm_start = address;
23461da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
2347d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2348d4af56c5SLiam R. Howlett 				vma_mas_store(vma, &mas);
2349bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
235009357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
23514128997bSMichel Lespinasse 
23523af9e859SEric B Munson 				perf_event_mmap(vma);
23531da177e4SLinus Torvalds 			}
23541da177e4SLinus Torvalds 		}
2355a626ca6aSLinus Torvalds 	}
235612352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2357c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
2358d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
23591da177e4SLinus Torvalds 	return error;
23601da177e4SLinus Torvalds }
23611da177e4SLinus Torvalds 
23621be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */
23631be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT;
23641be7107fSHugh Dickins 
23651be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p)
23661be7107fSHugh Dickins {
23671be7107fSHugh Dickins 	unsigned long val;
23681be7107fSHugh Dickins 	char *endptr;
23691be7107fSHugh Dickins 
23701be7107fSHugh Dickins 	val = simple_strtoul(p, &endptr, 10);
23711be7107fSHugh Dickins 	if (!*endptr)
23721be7107fSHugh Dickins 		stack_guard_gap = val << PAGE_SHIFT;
23731be7107fSHugh Dickins 
2374e6d09493SRandy Dunlap 	return 1;
23751be7107fSHugh Dickins }
23761be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap);
23771be7107fSHugh Dickins 
2378b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
2379b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2380b6a2fea3SOllie Wild {
2381b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
2382b6a2fea3SOllie Wild }
2383b6a2fea3SOllie Wild 
2384b6a2fea3SOllie Wild struct vm_area_struct *
2385b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr)
2386b6a2fea3SOllie Wild {
2387b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
2388b6a2fea3SOllie Wild 
2389b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
2390b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
2391b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
2392b6a2fea3SOllie Wild 		return vma;
23934d45e75aSJann Horn 	if (!prev || expand_stack(prev, addr))
2394b6a2fea3SOllie Wild 		return NULL;
2395cea10a19SMichel Lespinasse 	if (prev->vm_flags & VM_LOCKED)
2396fc05f566SKirill A. Shutemov 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2397b6a2fea3SOllie Wild 	return prev;
2398b6a2fea3SOllie Wild }
2399b6a2fea3SOllie Wild #else
2400b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2401b6a2fea3SOllie Wild {
2402b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
2403b6a2fea3SOllie Wild }
2404b6a2fea3SOllie Wild 
24051da177e4SLinus Torvalds struct vm_area_struct *
24061da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr)
24071da177e4SLinus Torvalds {
24081da177e4SLinus Torvalds 	struct vm_area_struct *vma;
24091da177e4SLinus Torvalds 	unsigned long start;
24101da177e4SLinus Torvalds 
24111da177e4SLinus Torvalds 	addr &= PAGE_MASK;
24121da177e4SLinus Torvalds 	vma = find_vma(mm, addr);
24131da177e4SLinus Torvalds 	if (!vma)
24141da177e4SLinus Torvalds 		return NULL;
24151da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
24161da177e4SLinus Torvalds 		return vma;
24171da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
24181da177e4SLinus Torvalds 		return NULL;
24191da177e4SLinus Torvalds 	start = vma->vm_start;
24201da177e4SLinus Torvalds 	if (expand_stack(vma, addr))
24211da177e4SLinus Torvalds 		return NULL;
2422cea10a19SMichel Lespinasse 	if (vma->vm_flags & VM_LOCKED)
2423fc05f566SKirill A. Shutemov 		populate_vma_page_range(vma, addr, start, NULL);
24241da177e4SLinus Torvalds 	return vma;
24251da177e4SLinus Torvalds }
24261da177e4SLinus Torvalds #endif
24271da177e4SLinus Torvalds 
2428e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma);
2429e1d6d01aSJesse Barnes 
24302c0b3814SHugh Dickins /*
24312c0b3814SHugh Dickins  * Ok - we have the memory areas we should free on the vma list,
24322c0b3814SHugh Dickins  * so release them, and do the vma updates.
24331da177e4SLinus Torvalds  *
24342c0b3814SHugh Dickins  * Called with the mm semaphore held.
24351da177e4SLinus Torvalds  */
24362c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
24371da177e4SLinus Torvalds {
24384f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
24394f74d2c8SLinus Torvalds 
2440365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
2441365e9c87SHugh Dickins 	update_hiwater_vm(mm);
24422c0b3814SHugh Dickins 	do {
2443ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
24441da177e4SLinus Torvalds 
24454f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
24464f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
244784638335SKonstantin Khlebnikov 		vm_stat_account(mm, vma->vm_flags, -nrpages);
2448a8fb5618SHugh Dickins 		vma = remove_vma(vma);
2449146425a3SHugh Dickins 	} while (vma);
24504f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
24511da177e4SLinus Torvalds 	validate_mm(mm);
24521da177e4SLinus Torvalds }
24531da177e4SLinus Torvalds 
24541da177e4SLinus Torvalds /*
24551da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
24561da177e4SLinus Torvalds  *
2457f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
24581da177e4SLinus Torvalds  */
24591da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm,
2460e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
2461e0da382cSHugh Dickins 		unsigned long start, unsigned long end)
24621da177e4SLinus Torvalds {
2463f39af059SMatthew Wilcox (Oracle) 	struct vm_area_struct *next = __vma_next(mm, prev);
2464d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
24651da177e4SLinus Torvalds 
24661da177e4SLinus Torvalds 	lru_add_drain();
2467a72afd87SWill Deacon 	tlb_gather_mmu(&tlb, mm);
2468365e9c87SHugh Dickins 	update_hiwater_rss(mm);
24694f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, start, end);
2470d16dfc55SPeter Zijlstra 	free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
24716ee8630eSHugh Dickins 				 next ? next->vm_start : USER_PGTABLES_CEILING);
2472ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
24731da177e4SLinus Torvalds }
24741da177e4SLinus Torvalds 
24751da177e4SLinus Torvalds /*
24761da177e4SLinus Torvalds  * Create a list of vma's touched by the unmap, removing them from the mm's
24771da177e4SLinus Torvalds  * vma list as we go..
24781da177e4SLinus Torvalds  */
2479246c320aSKirill A. Shutemov static bool
2480d4af56c5SLiam R. Howlett detach_vmas_to_be_unmapped(struct mm_struct *mm, struct ma_state *mas,
2481d4af56c5SLiam R. Howlett 	struct vm_area_struct *vma, struct vm_area_struct *prev,
2482d4af56c5SLiam R. Howlett 	unsigned long end)
24831da177e4SLinus Torvalds {
24841da177e4SLinus Torvalds 	struct vm_area_struct **insertion_point;
24851da177e4SLinus Torvalds 	struct vm_area_struct *tail_vma = NULL;
24861da177e4SLinus Torvalds 
24871da177e4SLinus Torvalds 	insertion_point = (prev ? &prev->vm_next : &mm->mmap);
2488297c5eeeSLinus Torvalds 	vma->vm_prev = NULL;
2489524e00b3SLiam R. Howlett 	vma_mas_szero(mas, vma->vm_start, end);
24901da177e4SLinus Torvalds 	do {
2491a213e5cfSHugh Dickins 		if (vma->vm_flags & VM_LOCKED)
2492a213e5cfSHugh Dickins 			mm->locked_vm -= vma_pages(vma);
24931da177e4SLinus Torvalds 		mm->map_count--;
24941da177e4SLinus Torvalds 		tail_vma = vma;
24951da177e4SLinus Torvalds 		vma = vma->vm_next;
24961da177e4SLinus Torvalds 	} while (vma && vma->vm_start < end);
24971da177e4SLinus Torvalds 	*insertion_point = vma;
2498524e00b3SLiam R. Howlett 	if (vma)
2499297c5eeeSLinus Torvalds 		vma->vm_prev = prev;
2500524e00b3SLiam R. Howlett 	else
25011be7107fSHugh Dickins 		mm->highest_vm_end = prev ? vm_end_gap(prev) : 0;
25021da177e4SLinus Torvalds 	tail_vma->vm_next = NULL;
2503615d6e87SDavidlohr Bueso 
2504615d6e87SDavidlohr Bueso 	/* Kill the cache */
2505615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
2506246c320aSKirill A. Shutemov 
2507246c320aSKirill A. Shutemov 	/*
2508246c320aSKirill A. Shutemov 	 * Do not downgrade mmap_lock if we are next to VM_GROWSDOWN or
2509246c320aSKirill A. Shutemov 	 * VM_GROWSUP VMA. Such VMAs can change their size under
2510246c320aSKirill A. Shutemov 	 * down_read(mmap_lock) and collide with the VMA we are about to unmap.
2511246c320aSKirill A. Shutemov 	 */
2512246c320aSKirill A. Shutemov 	if (vma && (vma->vm_flags & VM_GROWSDOWN))
2513246c320aSKirill A. Shutemov 		return false;
2514246c320aSKirill A. Shutemov 	if (prev && (prev->vm_flags & VM_GROWSUP))
2515246c320aSKirill A. Shutemov 		return false;
2516246c320aSKirill A. Shutemov 	return true;
25171da177e4SLinus Torvalds }
25181da177e4SLinus Torvalds 
25191da177e4SLinus Torvalds /*
2520def5efe0SDavid Rientjes  * __split_vma() bypasses sysctl_max_map_count checking.  We use this where it
2521def5efe0SDavid Rientjes  * has already been checked or doesn't make sense to fail.
25221da177e4SLinus Torvalds  */
2523def5efe0SDavid Rientjes int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
25241da177e4SLinus Torvalds 		unsigned long addr, int new_below)
25251da177e4SLinus Torvalds {
25261da177e4SLinus Torvalds 	struct vm_area_struct *new;
2527e3975891SChen Gang 	int err;
2528d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
25291da177e4SLinus Torvalds 
2530dd3b614fSDmitry Safonov 	if (vma->vm_ops && vma->vm_ops->may_split) {
2531dd3b614fSDmitry Safonov 		err = vma->vm_ops->may_split(vma, addr);
253231383c68SDan Williams 		if (err)
253331383c68SDan Williams 			return err;
253431383c68SDan Williams 	}
25351da177e4SLinus Torvalds 
25363928d4f5SLinus Torvalds 	new = vm_area_dup(vma);
25371da177e4SLinus Torvalds 	if (!new)
2538e3975891SChen Gang 		return -ENOMEM;
25391da177e4SLinus Torvalds 
25401da177e4SLinus Torvalds 	if (new_below)
25411da177e4SLinus Torvalds 		new->vm_end = addr;
25421da177e4SLinus Torvalds 	else {
25431da177e4SLinus Torvalds 		new->vm_start = addr;
25441da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
25451da177e4SLinus Torvalds 	}
25461da177e4SLinus Torvalds 
2547ef0855d3SOleg Nesterov 	err = vma_dup_policy(vma, new);
2548ef0855d3SOleg Nesterov 	if (err)
25495beb4930SRik van Riel 		goto out_free_vma;
25501da177e4SLinus Torvalds 
2551c4ea95d7SDaniel Forrest 	err = anon_vma_clone(new, vma);
2552c4ea95d7SDaniel Forrest 	if (err)
25535beb4930SRik van Riel 		goto out_free_mpol;
25545beb4930SRik van Riel 
2555e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
25561da177e4SLinus Torvalds 		get_file(new->vm_file);
25571da177e4SLinus Torvalds 
25581da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
25591da177e4SLinus Torvalds 		new->vm_ops->open(new);
25601da177e4SLinus Torvalds 
25611da177e4SLinus Torvalds 	if (new_below)
25625beb4930SRik van Riel 		err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
25631da177e4SLinus Torvalds 			((addr - new->vm_start) >> PAGE_SHIFT), new);
25641da177e4SLinus Torvalds 	else
25655beb4930SRik van Riel 		err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
25661da177e4SLinus Torvalds 
25675beb4930SRik van Riel 	/* Success. */
25685beb4930SRik van Riel 	if (!err)
25691da177e4SLinus Torvalds 		return 0;
25705beb4930SRik van Riel 
2571d4af56c5SLiam R. Howlett 	/* Avoid vm accounting in close() operation */
2572d4af56c5SLiam R. Howlett 	new->vm_start = new->vm_end;
2573d4af56c5SLiam R. Howlett 	new->vm_pgoff = 0;
25745beb4930SRik van Riel 	/* Clean everything up if vma_adjust failed. */
257558927533SRik van Riel 	if (new->vm_ops && new->vm_ops->close)
25765beb4930SRik van Riel 		new->vm_ops->close(new);
2577e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
25785beb4930SRik van Riel 		fput(new->vm_file);
25792aeadc30SAndrea Arcangeli 	unlink_anon_vmas(new);
25805beb4930SRik van Riel  out_free_mpol:
2581ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new));
25825beb4930SRik van Riel  out_free_vma:
25833928d4f5SLinus Torvalds 	vm_area_free(new);
2584d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
25855beb4930SRik van Riel 	return err;
25861da177e4SLinus Torvalds }
25871da177e4SLinus Torvalds 
2588659ace58SKOSAKI Motohiro /*
2589659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2590659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2591659ace58SKOSAKI Motohiro  */
2592659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2593659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2594659ace58SKOSAKI Motohiro {
2595659ace58SKOSAKI Motohiro 	if (mm->map_count >= sysctl_max_map_count)
2596659ace58SKOSAKI Motohiro 		return -ENOMEM;
2597659ace58SKOSAKI Motohiro 
2598659ace58SKOSAKI Motohiro 	return __split_vma(mm, vma, addr, new_below);
2599659ace58SKOSAKI Motohiro }
2600659ace58SKOSAKI Motohiro 
26011da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds
26021da177e4SLinus Torvalds  * what needs doing, and the areas themselves, which do the
26031da177e4SLinus Torvalds  * work.  This now handles partial unmappings.
26041da177e4SLinus Torvalds  * Jeremy Fitzhardinge <jeremy@goop.org>
26051da177e4SLinus Torvalds  */
260685a06835SYang Shi int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2607dd2283f2SYang Shi 		struct list_head *uf, bool downgrade)
26081da177e4SLinus Torvalds {
26091da177e4SLinus Torvalds 	unsigned long end;
2610146425a3SHugh Dickins 	struct vm_area_struct *vma, *prev, *last;
2611d4af56c5SLiam R. Howlett 	int error = -ENOMEM;
2612d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
26131da177e4SLinus Torvalds 
2614de1741a1SAlexander Kuleshov 	if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
26151da177e4SLinus Torvalds 		return -EINVAL;
26161da177e4SLinus Torvalds 
2617cc71aba3Svishnu.ps 	len = PAGE_ALIGN(len);
26185a28fc94SDave Hansen 	end = start + len;
2619cc71aba3Svishnu.ps 	if (len == 0)
26201da177e4SLinus Torvalds 		return -EINVAL;
26211da177e4SLinus Torvalds 
2622524e00b3SLiam R. Howlett 	 /* arch_unmap() might do unmaps itself.  */
26235a28fc94SDave Hansen 	arch_unmap(mm, start, end);
26245a28fc94SDave Hansen 
262578d9cf60SGonzalo Matias Juarez Tello 	/* Find the first overlapping VMA where start < vma->vm_end */
262678d9cf60SGonzalo Matias Juarez Tello 	vma = find_vma_intersection(mm, start, end);
2627146425a3SHugh Dickins 	if (!vma)
26281da177e4SLinus Torvalds 		return 0;
2629d4af56c5SLiam R. Howlett 
2630d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
2631d4af56c5SLiam R. Howlett 		return -ENOMEM;
26329be34c9dSLinus Torvalds 	prev = vma->vm_prev;
2633524e00b3SLiam R. Howlett 	/* we have start < vma->vm_end  */
2634524e00b3SLiam R. Howlett 
2635524e00b3SLiam R. Howlett 	/* if it doesn't overlap, we have nothing.. */
2636524e00b3SLiam R. Howlett 	if (vma->vm_start >= end)
2637524e00b3SLiam R. Howlett 		return 0;
26381da177e4SLinus Torvalds 
26391da177e4SLinus Torvalds 	/*
26401da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
26411da177e4SLinus Torvalds 	 *
26421da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
26431da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
26441da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
26451da177e4SLinus Torvalds 	 */
2646146425a3SHugh Dickins 	if (start > vma->vm_start) {
2647659ace58SKOSAKI Motohiro 
2648659ace58SKOSAKI Motohiro 		/*
2649659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
2650659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
2651659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
2652659ace58SKOSAKI Motohiro 		 */
2653659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2654d4af56c5SLiam R. Howlett 			goto map_count_exceeded;
2655659ace58SKOSAKI Motohiro 
2656659ace58SKOSAKI Motohiro 		error = __split_vma(mm, vma, start, 0);
26571da177e4SLinus Torvalds 		if (error)
2658d4af56c5SLiam R. Howlett 			goto split_failed;
2659146425a3SHugh Dickins 		prev = vma;
26601da177e4SLinus Torvalds 	}
26611da177e4SLinus Torvalds 
26621da177e4SLinus Torvalds 	/* Does it split the last one? */
26631da177e4SLinus Torvalds 	last = find_vma(mm, end);
26641da177e4SLinus Torvalds 	if (last && end > last->vm_start) {
2665d4af56c5SLiam R. Howlett 		error = __split_vma(mm, last, end, 1);
26661da177e4SLinus Torvalds 		if (error)
2667d4af56c5SLiam R. Howlett 			goto split_failed;
26681da177e4SLinus Torvalds 	}
2669f39af059SMatthew Wilcox (Oracle) 	vma = __vma_next(mm, prev);
26701da177e4SLinus Torvalds 
26712376dd7cSAndrea Arcangeli 	if (unlikely(uf)) {
26722376dd7cSAndrea Arcangeli 		/*
26732376dd7cSAndrea Arcangeli 		 * If userfaultfd_unmap_prep returns an error the vmas
2674f0953a1bSIngo Molnar 		 * will remain split, but userland will get a
26752376dd7cSAndrea Arcangeli 		 * highly unexpected error anyway. This is no
26762376dd7cSAndrea Arcangeli 		 * different than the case where the first of the two
26772376dd7cSAndrea Arcangeli 		 * __split_vma fails, but we don't undo the first
26782376dd7cSAndrea Arcangeli 		 * split, despite we could. This is unlikely enough
26792376dd7cSAndrea Arcangeli 		 * failure that it's not worth optimizing it for.
26802376dd7cSAndrea Arcangeli 		 */
2681d4af56c5SLiam R. Howlett 		error = userfaultfd_unmap_prep(vma, start, end, uf);
26822376dd7cSAndrea Arcangeli 		if (error)
2683d4af56c5SLiam R. Howlett 			goto userfaultfd_error;
26842376dd7cSAndrea Arcangeli 	}
26852376dd7cSAndrea Arcangeli 
2686dd2283f2SYang Shi 	/* Detach vmas from rbtree */
2687d4af56c5SLiam R. Howlett 	if (!detach_vmas_to_be_unmapped(mm, &mas, vma, prev, end))
2688246c320aSKirill A. Shutemov 		downgrade = false;
26891da177e4SLinus Torvalds 
2690dd2283f2SYang Shi 	if (downgrade)
2691d8ed45c5SMichel Lespinasse 		mmap_write_downgrade(mm);
2692dd2283f2SYang Shi 
2693dd2283f2SYang Shi 	unmap_region(mm, vma, prev, start, end);
2694dd2283f2SYang Shi 
26951da177e4SLinus Torvalds 	/* Fix up all other VM information */
26962c0b3814SHugh Dickins 	remove_vma_list(mm, vma);
26971da177e4SLinus Torvalds 
2698524e00b3SLiam R. Howlett 
2699524e00b3SLiam R. Howlett 	validate_mm(mm);
2700dd2283f2SYang Shi 	return downgrade ? 1 : 0;
2701d4af56c5SLiam R. Howlett 
2702d4af56c5SLiam R. Howlett map_count_exceeded:
2703d4af56c5SLiam R. Howlett split_failed:
2704d4af56c5SLiam R. Howlett userfaultfd_error:
2705d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
2706d4af56c5SLiam R. Howlett 	return error;
27071da177e4SLinus Torvalds }
27081da177e4SLinus Torvalds 
2709dd2283f2SYang Shi int do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2710dd2283f2SYang Shi 	      struct list_head *uf)
2711dd2283f2SYang Shi {
2712dd2283f2SYang Shi 	return __do_munmap(mm, start, len, uf, false);
2713dd2283f2SYang Shi }
2714dd2283f2SYang Shi 
2715dd2283f2SYang Shi static int __vm_munmap(unsigned long start, size_t len, bool downgrade)
2716a46ef99dSLinus Torvalds {
2717a46ef99dSLinus Torvalds 	int ret;
2718bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
2719897ab3e0SMike Rapoport 	LIST_HEAD(uf);
2720a46ef99dSLinus Torvalds 
2721d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2722ae798783SMichal Hocko 		return -EINTR;
2723ae798783SMichal Hocko 
2724dd2283f2SYang Shi 	ret = __do_munmap(mm, start, len, &uf, downgrade);
2725dd2283f2SYang Shi 	/*
2726c1e8d7c6SMichel Lespinasse 	 * Returning 1 indicates mmap_lock is downgraded.
2727dd2283f2SYang Shi 	 * But 1 is not legal return value of vm_munmap() and munmap(), reset
2728dd2283f2SYang Shi 	 * it to 0 before return.
2729dd2283f2SYang Shi 	 */
2730dd2283f2SYang Shi 	if (ret == 1) {
2731d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2732dd2283f2SYang Shi 		ret = 0;
2733dd2283f2SYang Shi 	} else
2734d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
2735dd2283f2SYang Shi 
2736897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
2737a46ef99dSLinus Torvalds 	return ret;
2738a46ef99dSLinus Torvalds }
2739dd2283f2SYang Shi 
2740dd2283f2SYang Shi int vm_munmap(unsigned long start, size_t len)
2741dd2283f2SYang Shi {
2742dd2283f2SYang Shi 	return __vm_munmap(start, len, false);
2743dd2283f2SYang Shi }
2744a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
2745a46ef99dSLinus Torvalds 
27466a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
27471da177e4SLinus Torvalds {
2748ce18d171SCatalin Marinas 	addr = untagged_addr(addr);
2749dd2283f2SYang Shi 	return __vm_munmap(addr, len, true);
27501da177e4SLinus Torvalds }
27511da177e4SLinus Torvalds 
2752c8d78c18SKirill A. Shutemov 
2753c8d78c18SKirill A. Shutemov /*
2754c8d78c18SKirill A. Shutemov  * Emulation of deprecated remap_file_pages() syscall.
2755c8d78c18SKirill A. Shutemov  */
2756c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2757c8d78c18SKirill A. Shutemov 		unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2758c8d78c18SKirill A. Shutemov {
2759c8d78c18SKirill A. Shutemov 
2760c8d78c18SKirill A. Shutemov 	struct mm_struct *mm = current->mm;
2761c8d78c18SKirill A. Shutemov 	struct vm_area_struct *vma;
2762c8d78c18SKirill A. Shutemov 	unsigned long populate = 0;
2763c8d78c18SKirill A. Shutemov 	unsigned long ret = -EINVAL;
2764c8d78c18SKirill A. Shutemov 	struct file *file;
2765c8d78c18SKirill A. Shutemov 
2766ee65728eSMike Rapoport 	pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/mm/remap_file_pages.rst.\n",
2767c8d78c18SKirill A. Shutemov 		     current->comm, current->pid);
2768c8d78c18SKirill A. Shutemov 
2769c8d78c18SKirill A. Shutemov 	if (prot)
2770c8d78c18SKirill A. Shutemov 		return ret;
2771c8d78c18SKirill A. Shutemov 	start = start & PAGE_MASK;
2772c8d78c18SKirill A. Shutemov 	size = size & PAGE_MASK;
2773c8d78c18SKirill A. Shutemov 
2774c8d78c18SKirill A. Shutemov 	if (start + size <= start)
2775c8d78c18SKirill A. Shutemov 		return ret;
2776c8d78c18SKirill A. Shutemov 
2777c8d78c18SKirill A. Shutemov 	/* Does pgoff wrap? */
2778c8d78c18SKirill A. Shutemov 	if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2779c8d78c18SKirill A. Shutemov 		return ret;
2780c8d78c18SKirill A. Shutemov 
2781d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2782dc0ef0dfSMichal Hocko 		return -EINTR;
2783dc0ef0dfSMichal Hocko 
27849b593cb2SLiam R. Howlett 	vma = vma_lookup(mm, start);
2785c8d78c18SKirill A. Shutemov 
2786c8d78c18SKirill A. Shutemov 	if (!vma || !(vma->vm_flags & VM_SHARED))
2787c8d78c18SKirill A. Shutemov 		goto out;
2788c8d78c18SKirill A. Shutemov 
278948f7df32SKirill A. Shutemov 	if (start + size > vma->vm_end) {
279048f7df32SKirill A. Shutemov 		struct vm_area_struct *next;
279148f7df32SKirill A. Shutemov 
279248f7df32SKirill A. Shutemov 		for (next = vma->vm_next; next; next = next->vm_next) {
279348f7df32SKirill A. Shutemov 			/* hole between vmas ? */
279448f7df32SKirill A. Shutemov 			if (next->vm_start != next->vm_prev->vm_end)
279548f7df32SKirill A. Shutemov 				goto out;
279648f7df32SKirill A. Shutemov 
279748f7df32SKirill A. Shutemov 			if (next->vm_file != vma->vm_file)
279848f7df32SKirill A. Shutemov 				goto out;
279948f7df32SKirill A. Shutemov 
280048f7df32SKirill A. Shutemov 			if (next->vm_flags != vma->vm_flags)
280148f7df32SKirill A. Shutemov 				goto out;
280248f7df32SKirill A. Shutemov 
280348f7df32SKirill A. Shutemov 			if (start + size <= next->vm_end)
280448f7df32SKirill A. Shutemov 				break;
280548f7df32SKirill A. Shutemov 		}
280648f7df32SKirill A. Shutemov 
280748f7df32SKirill A. Shutemov 		if (!next)
2808c8d78c18SKirill A. Shutemov 			goto out;
2809c8d78c18SKirill A. Shutemov 	}
2810c8d78c18SKirill A. Shutemov 
2811c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2812c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2813c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2814c8d78c18SKirill A. Shutemov 
2815c8d78c18SKirill A. Shutemov 	flags &= MAP_NONBLOCK;
2816c8d78c18SKirill A. Shutemov 	flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2817fce000b1SLiam Howlett 	if (vma->vm_flags & VM_LOCKED)
2818c8d78c18SKirill A. Shutemov 		flags |= MAP_LOCKED;
281948f7df32SKirill A. Shutemov 
2820c8d78c18SKirill A. Shutemov 	file = get_file(vma->vm_file);
282145e55300SPeter Collingbourne 	ret = do_mmap(vma->vm_file, start, size,
2822897ab3e0SMike Rapoport 			prot, flags, pgoff, &populate, NULL);
2823c8d78c18SKirill A. Shutemov 	fput(file);
2824c8d78c18SKirill A. Shutemov out:
2825d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
2826c8d78c18SKirill A. Shutemov 	if (populate)
2827c8d78c18SKirill A. Shutemov 		mm_populate(ret, populate);
2828c8d78c18SKirill A. Shutemov 	if (!IS_ERR_VALUE(ret))
2829c8d78c18SKirill A. Shutemov 		ret = 0;
2830c8d78c18SKirill A. Shutemov 	return ret;
2831c8d78c18SKirill A. Shutemov }
2832c8d78c18SKirill A. Shutemov 
28331da177e4SLinus Torvalds /*
28342e7ce7d3SLiam R. Howlett  * brk_munmap() - Unmap a parital vma.
28352e7ce7d3SLiam R. Howlett  * @mas: The maple tree state.
28362e7ce7d3SLiam R. Howlett  * @vma: The vma to be modified
28372e7ce7d3SLiam R. Howlett  * @newbrk: the start of the address to unmap
28382e7ce7d3SLiam R. Howlett  * @oldbrk: The end of the address to unmap
28392e7ce7d3SLiam R. Howlett  * @uf: The userfaultfd list_head
28402e7ce7d3SLiam R. Howlett  *
28412e7ce7d3SLiam R. Howlett  * Returns: 1 on success.
28422e7ce7d3SLiam R. Howlett  * unmaps a partial VMA mapping.  Does not handle alignment, downgrades lock if
28432e7ce7d3SLiam R. Howlett  * possible.
28441da177e4SLinus Torvalds  */
28452e7ce7d3SLiam R. Howlett static int do_brk_munmap(struct ma_state *mas, struct vm_area_struct *vma,
28462e7ce7d3SLiam R. Howlett 			 unsigned long newbrk, unsigned long oldbrk,
28472e7ce7d3SLiam R. Howlett 			 struct list_head *uf)
28482e7ce7d3SLiam R. Howlett {
28492e7ce7d3SLiam R. Howlett 	struct mm_struct *mm = vma->vm_mm;
28502e7ce7d3SLiam R. Howlett 	int ret;
28512e7ce7d3SLiam R. Howlett 
28522e7ce7d3SLiam R. Howlett 	arch_unmap(mm, newbrk, oldbrk);
28532e7ce7d3SLiam R. Howlett 	ret = __do_munmap(mm, newbrk, oldbrk - newbrk, uf, true);
28542e7ce7d3SLiam R. Howlett 	validate_mm_mt(mm);
28552e7ce7d3SLiam R. Howlett 	return ret;
28562e7ce7d3SLiam R. Howlett }
28572e7ce7d3SLiam R. Howlett 
28582e7ce7d3SLiam R. Howlett /*
28592e7ce7d3SLiam R. Howlett  * do_brk_flags() - Increase the brk vma if the flags match.
28602e7ce7d3SLiam R. Howlett  * @mas: The maple tree state.
28612e7ce7d3SLiam R. Howlett  * @addr: The start address
28622e7ce7d3SLiam R. Howlett  * @len: The length of the increase
28632e7ce7d3SLiam R. Howlett  * @vma: The vma,
28642e7ce7d3SLiam R. Howlett  * @flags: The VMA Flags
28652e7ce7d3SLiam R. Howlett  *
28662e7ce7d3SLiam R. Howlett  * Extend the brk VMA from addr to addr + len.  If the VMA is NULL or the flags
28672e7ce7d3SLiam R. Howlett  * do not match then create a new anonymous VMA.  Eventually we may be able to
28682e7ce7d3SLiam R. Howlett  * do some brk-specific accounting here.
28692e7ce7d3SLiam R. Howlett  */
28702e7ce7d3SLiam R. Howlett static int do_brk_flags(struct ma_state *mas, struct vm_area_struct *vma,
28712e7ce7d3SLiam R. Howlett 			unsigned long addr, unsigned long len,
28722e7ce7d3SLiam R. Howlett 			unsigned long flags)
28731da177e4SLinus Torvalds {
28741da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
28752e7ce7d3SLiam R. Howlett 	struct vm_area_struct *prev = NULL;
28762e7ce7d3SLiam R. Howlett 
2877d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
28782e7ce7d3SLiam R. Howlett 	/*
28792e7ce7d3SLiam R. Howlett 	 * Check against address space limits by the changed size
28802e7ce7d3SLiam R. Howlett 	 * Note: This happens *after* clearing old mappings in some code paths.
28812e7ce7d3SLiam R. Howlett 	 */
288216e72e9bSDenys Vlasenko 	flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
288384638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
28841da177e4SLinus Torvalds 		return -ENOMEM;
28851da177e4SLinus Torvalds 
28861da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
28871da177e4SLinus Torvalds 		return -ENOMEM;
28881da177e4SLinus Torvalds 
2889191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
28901da177e4SLinus Torvalds 		return -ENOMEM;
28911da177e4SLinus Torvalds 
28921da177e4SLinus Torvalds 	/*
28932e7ce7d3SLiam R. Howlett 	 * Expand the existing vma if possible; Note that singular lists do not
28942e7ce7d3SLiam R. Howlett 	 * occur after forking, so the expand will only happen on new VMAs.
28951da177e4SLinus Torvalds 	 */
28962e7ce7d3SLiam R. Howlett 	if (vma &&
28972e7ce7d3SLiam R. Howlett 	    (!vma->anon_vma || list_is_singular(&vma->anon_vma_chain)) &&
28982e7ce7d3SLiam R. Howlett 	    ((vma->vm_flags & ~VM_SOFTDIRTY) == flags)) {
28992e7ce7d3SLiam R. Howlett 		mas->index = vma->vm_start;
29002e7ce7d3SLiam R. Howlett 		mas->last = addr + len - 1;
29012e7ce7d3SLiam R. Howlett 		vma_adjust_trans_huge(vma, addr, addr + len, 0);
29022e7ce7d3SLiam R. Howlett 		if (vma->anon_vma) {
29032e7ce7d3SLiam R. Howlett 			anon_vma_lock_write(vma->anon_vma);
29042e7ce7d3SLiam R. Howlett 			anon_vma_interval_tree_pre_update_vma(vma);
29051da177e4SLinus Torvalds 		}
29062e7ce7d3SLiam R. Howlett 		vma->vm_end = addr + len;
29072e7ce7d3SLiam R. Howlett 		vma->vm_flags |= VM_SOFTDIRTY;
29082e7ce7d3SLiam R. Howlett 		if (mas_store_gfp(mas, vma, GFP_KERNEL))
29092e7ce7d3SLiam R. Howlett 			goto mas_expand_failed;
29102e7ce7d3SLiam R. Howlett 
29112e7ce7d3SLiam R. Howlett 		if (vma->anon_vma) {
29122e7ce7d3SLiam R. Howlett 			anon_vma_interval_tree_post_update_vma(vma);
29132e7ce7d3SLiam R. Howlett 			anon_vma_unlock_write(vma->anon_vma);
29142e7ce7d3SLiam R. Howlett 		}
29152e7ce7d3SLiam R. Howlett 		khugepaged_enter_vma(vma, flags);
29162e7ce7d3SLiam R. Howlett 		goto out;
29172e7ce7d3SLiam R. Howlett 	}
29182e7ce7d3SLiam R. Howlett 	prev = vma;
29192e7ce7d3SLiam R. Howlett 
29202e7ce7d3SLiam R. Howlett 	/* create a vma struct for an anonymous mapping */
29212e7ce7d3SLiam R. Howlett 	vma = vm_area_alloc(mm);
29222e7ce7d3SLiam R. Howlett 	if (!vma)
29232e7ce7d3SLiam R. Howlett 		goto vma_alloc_fail;
29241da177e4SLinus Torvalds 
2925bfd40eafSKirill A. Shutemov 	vma_set_anonymous(vma);
29261da177e4SLinus Torvalds 	vma->vm_start = addr;
29271da177e4SLinus Torvalds 	vma->vm_end = addr + len;
29282e7ce7d3SLiam R. Howlett 	vma->vm_pgoff = addr >> PAGE_SHIFT;
29291da177e4SLinus Torvalds 	vma->vm_flags = flags;
29303ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
29312e7ce7d3SLiam R. Howlett 	mas_set_range(mas, vma->vm_start, addr + len - 1);
29322e7ce7d3SLiam R. Howlett 	if (mas_store_gfp(mas, vma, GFP_KERNEL))
29332e7ce7d3SLiam R. Howlett 		goto mas_store_fail;
2934d4af56c5SLiam R. Howlett 
29352e7ce7d3SLiam R. Howlett 	if (!prev)
29362e7ce7d3SLiam R. Howlett 		prev = mas_prev(mas, 0);
29372e7ce7d3SLiam R. Howlett 
29382e7ce7d3SLiam R. Howlett 	__vma_link_list(mm, vma, prev);
29392e7ce7d3SLiam R. Howlett 	mm->map_count++;
29401da177e4SLinus Torvalds out:
29413af9e859SEric B Munson 	perf_event_mmap(vma);
29421da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
294384638335SKonstantin Khlebnikov 	mm->data_vm += len >> PAGE_SHIFT;
2944128557ffSMichel Lespinasse 	if (flags & VM_LOCKED)
2945ba470de4SRik van Riel 		mm->locked_vm += (len >> PAGE_SHIFT);
2946d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
2947d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
29485d22fc25SLinus Torvalds 	return 0;
2949d4af56c5SLiam R. Howlett 
29502e7ce7d3SLiam R. Howlett mas_store_fail:
2951d4af56c5SLiam R. Howlett 	vm_area_free(vma);
29522e7ce7d3SLiam R. Howlett vma_alloc_fail:
29532e7ce7d3SLiam R. Howlett 	vm_unacct_memory(len >> PAGE_SHIFT);
29542e7ce7d3SLiam R. Howlett 	return -ENOMEM;
29552e7ce7d3SLiam R. Howlett 
29562e7ce7d3SLiam R. Howlett mas_expand_failed:
29572e7ce7d3SLiam R. Howlett 	if (vma->anon_vma) {
29582e7ce7d3SLiam R. Howlett 		anon_vma_interval_tree_post_update_vma(vma);
29592e7ce7d3SLiam R. Howlett 		anon_vma_unlock_write(vma->anon_vma);
29602e7ce7d3SLiam R. Howlett 	}
2961d4af56c5SLiam R. Howlett 	return -ENOMEM;
29621da177e4SLinus Torvalds }
29631da177e4SLinus Torvalds 
2964bb177a73SMichal Hocko int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags)
2965e4eb1ff6SLinus Torvalds {
2966e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
29672e7ce7d3SLiam R. Howlett 	struct vm_area_struct *vma = NULL;
2968bb177a73SMichal Hocko 	unsigned long len;
29695d22fc25SLinus Torvalds 	int ret;
2970128557ffSMichel Lespinasse 	bool populate;
2971897ab3e0SMike Rapoport 	LIST_HEAD(uf);
29722e7ce7d3SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, addr, addr);
2973e4eb1ff6SLinus Torvalds 
2974bb177a73SMichal Hocko 	len = PAGE_ALIGN(request);
2975bb177a73SMichal Hocko 	if (len < request)
2976bb177a73SMichal Hocko 		return -ENOMEM;
2977bb177a73SMichal Hocko 	if (!len)
2978bb177a73SMichal Hocko 		return 0;
2979bb177a73SMichal Hocko 
2980d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
29812d6c9282SMichal Hocko 		return -EINTR;
29822d6c9282SMichal Hocko 
29832e7ce7d3SLiam R. Howlett 	/* Until we need other flags, refuse anything except VM_EXEC. */
29842e7ce7d3SLiam R. Howlett 	if ((flags & (~VM_EXEC)) != 0)
29852e7ce7d3SLiam R. Howlett 		return -EINVAL;
29862e7ce7d3SLiam R. Howlett 
29872e7ce7d3SLiam R. Howlett 	ret = check_brk_limits(addr, len);
29882e7ce7d3SLiam R. Howlett 	if (ret)
29892e7ce7d3SLiam R. Howlett 		goto limits_failed;
29902e7ce7d3SLiam R. Howlett 
29912e7ce7d3SLiam R. Howlett 	if (find_vma_intersection(mm, addr, addr + len))
29922e7ce7d3SLiam R. Howlett 		ret = do_munmap(mm, addr, len, &uf);
29932e7ce7d3SLiam R. Howlett 
29942e7ce7d3SLiam R. Howlett 	if (ret)
29952e7ce7d3SLiam R. Howlett 		goto munmap_failed;
29962e7ce7d3SLiam R. Howlett 
29972e7ce7d3SLiam R. Howlett 	vma = mas_prev(&mas, 0);
29982e7ce7d3SLiam R. Howlett 	if (!vma || vma->vm_end != addr || vma_policy(vma) ||
29992e7ce7d3SLiam R. Howlett 	    !can_vma_merge_after(vma, flags, NULL, NULL,
30002e7ce7d3SLiam R. Howlett 				 addr >> PAGE_SHIFT, NULL_VM_UFFD_CTX, NULL))
30012e7ce7d3SLiam R. Howlett 		vma = NULL;
30022e7ce7d3SLiam R. Howlett 
30032e7ce7d3SLiam R. Howlett 	ret = do_brk_flags(&mas, vma, addr, len, flags);
3004128557ffSMichel Lespinasse 	populate = ((mm->def_flags & VM_LOCKED) != 0);
3005d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3006897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
30075d22fc25SLinus Torvalds 	if (populate && !ret)
3008128557ffSMichel Lespinasse 		mm_populate(addr, len);
3009e4eb1ff6SLinus Torvalds 	return ret;
30102e7ce7d3SLiam R. Howlett 
30112e7ce7d3SLiam R. Howlett munmap_failed:
30122e7ce7d3SLiam R. Howlett limits_failed:
30132e7ce7d3SLiam R. Howlett 	mmap_write_unlock(mm);
30142e7ce7d3SLiam R. Howlett 	return ret;
3015e4eb1ff6SLinus Torvalds }
301616e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags);
301716e72e9bSDenys Vlasenko 
301816e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len)
301916e72e9bSDenys Vlasenko {
302016e72e9bSDenys Vlasenko 	return vm_brk_flags(addr, len, 0);
302116e72e9bSDenys Vlasenko }
3022e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
30231da177e4SLinus Torvalds 
30241da177e4SLinus Torvalds /* Release all mmaps. */
30251da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
30261da177e4SLinus Torvalds {
3027d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
3028ba470de4SRik van Riel 	struct vm_area_struct *vma;
30291da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
30301da177e4SLinus Torvalds 
3031d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
3032cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
3033d6dd61c8SJeremy Fitzhardinge 
303427ae357fSDavid Rientjes 	if (unlikely(mm_is_oom_victim(mm))) {
303527ae357fSDavid Rientjes 		/*
303627ae357fSDavid Rientjes 		 * Manually reap the mm to free as much memory as possible.
303727ae357fSDavid Rientjes 		 * Then, as the oom reaper does, set MMF_OOM_SKIP to disregard
3038c1e8d7c6SMichel Lespinasse 		 * this mm from further consideration.  Taking mm->mmap_lock for
303927ae357fSDavid Rientjes 		 * write after setting MMF_OOM_SKIP will guarantee that the oom
3040c1e8d7c6SMichel Lespinasse 		 * reaper will not run on this mm again after mmap_lock is
304127ae357fSDavid Rientjes 		 * dropped.
304227ae357fSDavid Rientjes 		 *
3043c1e8d7c6SMichel Lespinasse 		 * Nothing can be holding mm->mmap_lock here and the above call
304427ae357fSDavid Rientjes 		 * to mmu_notifier_release(mm) ensures mmu notifier callbacks in
304527ae357fSDavid Rientjes 		 * __oom_reap_task_mm() will not block.
304627ae357fSDavid Rientjes 		 */
304793065ac7SMichal Hocko 		(void)__oom_reap_task_mm(mm);
304827ae357fSDavid Rientjes 		set_bit(MMF_OOM_SKIP, &mm->flags);
304927ae357fSDavid Rientjes 	}
305027ae357fSDavid Rientjes 
305164591e86SSuren Baghdasaryan 	mmap_write_lock(mm);
30529480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
30539480c53eSJeremy Fitzhardinge 
3054ba470de4SRik van Riel 	vma = mm->mmap;
305564591e86SSuren Baghdasaryan 	if (!vma) {
305664591e86SSuren Baghdasaryan 		/* Can happen if dup_mmap() received an OOM */
305764591e86SSuren Baghdasaryan 		mmap_write_unlock(mm);
30589480c53eSJeremy Fitzhardinge 		return;
305964591e86SSuren Baghdasaryan 	}
30609480c53eSJeremy Fitzhardinge 
30611da177e4SLinus Torvalds 	lru_add_drain();
30621da177e4SLinus Torvalds 	flush_cache_mm(mm);
3063d8b45053SWill Deacon 	tlb_gather_mmu_fullmm(&tlb, mm);
3064901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
3065e0da382cSHugh Dickins 	/* Use -1 here to ensure all VMAs in the mm are unmapped */
30664f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, 0, -1);
30676ee8630eSHugh Dickins 	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
3068ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
30691da177e4SLinus Torvalds 
307064591e86SSuren Baghdasaryan 	/* Walk the list again, actually closing and freeing it. */
30714f74d2c8SLinus Torvalds 	while (vma) {
30724f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
30734f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
3074a8fb5618SHugh Dickins 		vma = remove_vma(vma);
30750a3b3c25SPaul E. McKenney 		cond_resched();
30764f74d2c8SLinus Torvalds 	}
3077d4af56c5SLiam R. Howlett 
3078d4af56c5SLiam R. Howlett 	trace_exit_mmap(mm);
3079d4af56c5SLiam R. Howlett 	__mt_destroy(&mm->mm_mt);
3080f798a1d4SSuren Baghdasaryan 	mm->mmap = NULL;
308164591e86SSuren Baghdasaryan 	mmap_write_unlock(mm);
30824f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
30831da177e4SLinus Torvalds }
30841da177e4SLinus Torvalds 
30851da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
30861da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
3087c8c06efaSDavidlohr Bueso  * then i_mmap_rwsem is taken here.
30881da177e4SLinus Torvalds  */
30891da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
30901da177e4SLinus Torvalds {
30916597d783SHugh Dickins 	struct vm_area_struct *prev;
3092d4af56c5SLiam R. Howlett 	unsigned long charged = vma_pages(vma);
30931da177e4SLinus Torvalds 
3094d4af56c5SLiam R. Howlett 
3095524e00b3SLiam R. Howlett 	if (range_has_overlap(mm, vma->vm_start, vma->vm_end, &prev))
3096c9d13f5fSChen Gang 		return -ENOMEM;
3097d4af56c5SLiam R. Howlett 
3098c9d13f5fSChen Gang 	if ((vma->vm_flags & VM_ACCOUNT) &&
3099d4af56c5SLiam R. Howlett 	     security_vm_enough_memory_mm(mm, charged))
3100c9d13f5fSChen Gang 		return -ENOMEM;
3101c9d13f5fSChen Gang 
31021da177e4SLinus Torvalds 	/*
31031da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
31041da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
31051da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
31061da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
31071da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
31081da177e4SLinus Torvalds 	 *
31091da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
31101da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
31111da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
31128332326eSLiao Pingfang 	 * Similarly in do_mmap and in do_brk_flags.
31131da177e4SLinus Torvalds 	 */
31148a9cc3b5SOleg Nesterov 	if (vma_is_anonymous(vma)) {
31151da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
31161da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
31171da177e4SLinus Torvalds 	}
31182b144498SSrikar Dronamraju 
3119524e00b3SLiam R. Howlett 	if (vma_link(mm, vma, prev)) {
3120d4af56c5SLiam R. Howlett 		vm_unacct_memory(charged);
3121d4af56c5SLiam R. Howlett 		return -ENOMEM;
3122d4af56c5SLiam R. Howlett 	}
3123d4af56c5SLiam R. Howlett 
31241da177e4SLinus Torvalds 	return 0;
31251da177e4SLinus Torvalds }
31261da177e4SLinus Torvalds 
31271da177e4SLinus Torvalds /*
31281da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
31291da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
31301da177e4SLinus Torvalds  */
31311da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
313238a76013SMichel Lespinasse 	unsigned long addr, unsigned long len, pgoff_t pgoff,
313338a76013SMichel Lespinasse 	bool *need_rmap_locks)
31341da177e4SLinus Torvalds {
31351da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
31361da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
31371da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
31381da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
3139948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
31401da177e4SLinus Torvalds 
3141d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
31421da177e4SLinus Torvalds 	/*
31431da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
31441da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
31451da177e4SLinus Torvalds 	 */
3146ce75799bSOleg Nesterov 	if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
31471da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
3148948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
3149948f017bSAndrea Arcangeli 	}
31501da177e4SLinus Torvalds 
3151524e00b3SLiam R. Howlett 	if (range_has_overlap(mm, addr, addr + len, &prev))
31526597d783SHugh Dickins 		return NULL;	/* should never get here */
3153524e00b3SLiam R. Howlett 
31541da177e4SLinus Torvalds 	new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
315519a809afSAndrea Arcangeli 			    vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
31565c26f6acSSuren Baghdasaryan 			    vma->vm_userfaultfd_ctx, anon_vma_name(vma));
31571da177e4SLinus Torvalds 	if (new_vma) {
31581da177e4SLinus Torvalds 		/*
31591da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
31601da177e4SLinus Torvalds 		 */
3161948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
3162948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
3163948f017bSAndrea Arcangeli 			/*
3164948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
3165948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
3166948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
3167948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
3168948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
3169948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
3170948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
3171948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
3172948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
3173948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
3174948f017bSAndrea Arcangeli 			 */
317581d1b09cSSasha Levin 			VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
317638a76013SMichel Lespinasse 			*vmap = vma = new_vma;
3177108d6642SMichel Lespinasse 		}
317838a76013SMichel Lespinasse 		*need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
31791da177e4SLinus Torvalds 	} else {
31803928d4f5SLinus Torvalds 		new_vma = vm_area_dup(vma);
3181e3975891SChen Gang 		if (!new_vma)
3182e3975891SChen Gang 			goto out;
31831da177e4SLinus Torvalds 		new_vma->vm_start = addr;
31841da177e4SLinus Torvalds 		new_vma->vm_end = addr + len;
31851da177e4SLinus Torvalds 		new_vma->vm_pgoff = pgoff;
3186ef0855d3SOleg Nesterov 		if (vma_dup_policy(vma, new_vma))
3187523d4e20SMichel Lespinasse 			goto out_free_vma;
3188523d4e20SMichel Lespinasse 		if (anon_vma_clone(new_vma, vma))
3189523d4e20SMichel Lespinasse 			goto out_free_mempol;
3190e9714acfSKonstantin Khlebnikov 		if (new_vma->vm_file)
31911da177e4SLinus Torvalds 			get_file(new_vma->vm_file);
31921da177e4SLinus Torvalds 		if (new_vma->vm_ops && new_vma->vm_ops->open)
31931da177e4SLinus Torvalds 			new_vma->vm_ops->open(new_vma);
3194524e00b3SLiam R. Howlett 		if (vma_link(mm, new_vma, prev))
3195524e00b3SLiam R. Howlett 			goto out_vma_link;
319638a76013SMichel Lespinasse 		*need_rmap_locks = false;
31971da177e4SLinus Torvalds 	}
3198d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
31991da177e4SLinus Torvalds 	return new_vma;
32005beb4930SRik van Riel 
3201524e00b3SLiam R. Howlett out_vma_link:
3202524e00b3SLiam R. Howlett 	if (new_vma->vm_ops && new_vma->vm_ops->close)
3203524e00b3SLiam R. Howlett 		new_vma->vm_ops->close(new_vma);
32045beb4930SRik van Riel out_free_mempol:
3205ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new_vma));
32065beb4930SRik van Riel out_free_vma:
32073928d4f5SLinus Torvalds 	vm_area_free(new_vma);
3208e3975891SChen Gang out:
3209d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
32105beb4930SRik van Riel 	return NULL;
32111da177e4SLinus Torvalds }
3212119f657cSakpm@osdl.org 
3213119f657cSakpm@osdl.org /*
3214119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
3215119f657cSakpm@osdl.org  * number of pages
3216119f657cSakpm@osdl.org  */
321784638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3218119f657cSakpm@osdl.org {
321984638335SKonstantin Khlebnikov 	if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
322084638335SKonstantin Khlebnikov 		return false;
3221119f657cSakpm@osdl.org 
3222d977d56cSKonstantin Khlebnikov 	if (is_data_mapping(flags) &&
3223d977d56cSKonstantin Khlebnikov 	    mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3224f4fcd558SKonstantin Khlebnikov 		/* Workaround for Valgrind */
3225f4fcd558SKonstantin Khlebnikov 		if (rlimit(RLIMIT_DATA) == 0 &&
3226f4fcd558SKonstantin Khlebnikov 		    mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3227f4fcd558SKonstantin Khlebnikov 			return true;
322857a7702bSDavid Woodhouse 
322957a7702bSDavid Woodhouse 		pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits%s.\n",
3230d977d56cSKonstantin Khlebnikov 			     current->comm, current->pid,
3231d977d56cSKonstantin Khlebnikov 			     (mm->data_vm + npages) << PAGE_SHIFT,
323257a7702bSDavid Woodhouse 			     rlimit(RLIMIT_DATA),
323357a7702bSDavid Woodhouse 			     ignore_rlimit_data ? "" : " or use boot option ignore_rlimit_data");
323457a7702bSDavid Woodhouse 
323557a7702bSDavid Woodhouse 		if (!ignore_rlimit_data)
3236d977d56cSKonstantin Khlebnikov 			return false;
3237d977d56cSKonstantin Khlebnikov 	}
3238119f657cSakpm@osdl.org 
323984638335SKonstantin Khlebnikov 	return true;
324084638335SKonstantin Khlebnikov }
324184638335SKonstantin Khlebnikov 
324284638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
324384638335SKonstantin Khlebnikov {
32447866076bSPeng Liu 	WRITE_ONCE(mm->total_vm, READ_ONCE(mm->total_vm)+npages);
324584638335SKonstantin Khlebnikov 
3246d977d56cSKonstantin Khlebnikov 	if (is_exec_mapping(flags))
324784638335SKonstantin Khlebnikov 		mm->exec_vm += npages;
3248d977d56cSKonstantin Khlebnikov 	else if (is_stack_mapping(flags))
324984638335SKonstantin Khlebnikov 		mm->stack_vm += npages;
3250d977d56cSKonstantin Khlebnikov 	else if (is_data_mapping(flags))
325184638335SKonstantin Khlebnikov 		mm->data_vm += npages;
3252119f657cSakpm@osdl.org }
3253fa5dc22fSRoland McGrath 
3254b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf);
3255a62c34bdSAndy Lutomirski 
3256a62c34bdSAndy Lutomirski /*
3257a62c34bdSAndy Lutomirski  * Having a close hook prevents vma merging regardless of flags.
3258a62c34bdSAndy Lutomirski  */
3259a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma)
3260a62c34bdSAndy Lutomirski {
3261a62c34bdSAndy Lutomirski }
3262a62c34bdSAndy Lutomirski 
3263a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma)
3264a62c34bdSAndy Lutomirski {
3265a62c34bdSAndy Lutomirski 	return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3266a62c34bdSAndy Lutomirski }
3267a62c34bdSAndy Lutomirski 
326814d07113SBrian Geffon static int special_mapping_mremap(struct vm_area_struct *new_vma)
3269b059a453SDmitry Safonov {
3270b059a453SDmitry Safonov 	struct vm_special_mapping *sm = new_vma->vm_private_data;
3271b059a453SDmitry Safonov 
3272280e87e9SDmitry Safonov 	if (WARN_ON_ONCE(current->mm != new_vma->vm_mm))
3273280e87e9SDmitry Safonov 		return -EFAULT;
3274280e87e9SDmitry Safonov 
3275b059a453SDmitry Safonov 	if (sm->mremap)
3276b059a453SDmitry Safonov 		return sm->mremap(sm, new_vma);
3277280e87e9SDmitry Safonov 
3278b059a453SDmitry Safonov 	return 0;
3279b059a453SDmitry Safonov }
3280b059a453SDmitry Safonov 
3281871402e0SDmitry Safonov static int special_mapping_split(struct vm_area_struct *vma, unsigned long addr)
3282871402e0SDmitry Safonov {
3283871402e0SDmitry Safonov 	/*
3284871402e0SDmitry Safonov 	 * Forbid splitting special mappings - kernel has expectations over
3285871402e0SDmitry Safonov 	 * the number of pages in mapping. Together with VM_DONTEXPAND
3286871402e0SDmitry Safonov 	 * the size of vma should stay the same over the special mapping's
3287871402e0SDmitry Safonov 	 * lifetime.
3288871402e0SDmitry Safonov 	 */
3289871402e0SDmitry Safonov 	return -EINVAL;
3290871402e0SDmitry Safonov }
3291871402e0SDmitry Safonov 
3292a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = {
3293a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3294a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3295b059a453SDmitry Safonov 	.mremap = special_mapping_mremap,
3296a62c34bdSAndy Lutomirski 	.name = special_mapping_name,
3297af34ebebSDmitry Safonov 	/* vDSO code relies that VVAR can't be accessed remotely */
3298af34ebebSDmitry Safonov 	.access = NULL,
3299871402e0SDmitry Safonov 	.may_split = special_mapping_split,
3300a62c34bdSAndy Lutomirski };
3301a62c34bdSAndy Lutomirski 
3302a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = {
3303a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3304a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3305a62c34bdSAndy Lutomirski };
3306fa5dc22fSRoland McGrath 
3307b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf)
3308fa5dc22fSRoland McGrath {
330911bac800SDave Jiang 	struct vm_area_struct *vma = vmf->vma;
3310b1d0e4f5SNick Piggin 	pgoff_t pgoff;
3311fa5dc22fSRoland McGrath 	struct page **pages;
3312fa5dc22fSRoland McGrath 
3313f872f540SAndy Lutomirski 	if (vma->vm_ops == &legacy_special_mapping_vmops) {
3314a62c34bdSAndy Lutomirski 		pages = vma->vm_private_data;
3315f872f540SAndy Lutomirski 	} else {
3316f872f540SAndy Lutomirski 		struct vm_special_mapping *sm = vma->vm_private_data;
3317f872f540SAndy Lutomirski 
3318f872f540SAndy Lutomirski 		if (sm->fault)
331911bac800SDave Jiang 			return sm->fault(sm, vmf->vma, vmf);
3320f872f540SAndy Lutomirski 
3321f872f540SAndy Lutomirski 		pages = sm->pages;
3322f872f540SAndy Lutomirski 	}
3323a62c34bdSAndy Lutomirski 
33248a9cc3b5SOleg Nesterov 	for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3325b1d0e4f5SNick Piggin 		pgoff--;
3326fa5dc22fSRoland McGrath 
3327fa5dc22fSRoland McGrath 	if (*pages) {
3328fa5dc22fSRoland McGrath 		struct page *page = *pages;
3329fa5dc22fSRoland McGrath 		get_page(page);
3330b1d0e4f5SNick Piggin 		vmf->page = page;
3331b1d0e4f5SNick Piggin 		return 0;
3332fa5dc22fSRoland McGrath 	}
3333fa5dc22fSRoland McGrath 
3334b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
3335fa5dc22fSRoland McGrath }
3336fa5dc22fSRoland McGrath 
3337a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping(
3338a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3339fa5dc22fSRoland McGrath 	unsigned long addr, unsigned long len,
334027f28b97SChen Gang 	unsigned long vm_flags, void *priv,
334127f28b97SChen Gang 	const struct vm_operations_struct *ops)
3342fa5dc22fSRoland McGrath {
3343462e635eSTavis Ormandy 	int ret;
3344fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
3345fa5dc22fSRoland McGrath 
3346d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
3347490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
3348fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
33493935ed6aSStefani Seibold 		return ERR_PTR(-ENOMEM);
3350fa5dc22fSRoland McGrath 
3351fa5dc22fSRoland McGrath 	vma->vm_start = addr;
3352fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
3353fa5dc22fSRoland McGrath 
3354d9104d1cSCyrill Gorcunov 	vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
33551fc09228SHugh Dickins 	vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
33563ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3357fa5dc22fSRoland McGrath 
3358a62c34bdSAndy Lutomirski 	vma->vm_ops = ops;
3359a62c34bdSAndy Lutomirski 	vma->vm_private_data = priv;
3360fa5dc22fSRoland McGrath 
3361462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
3362462e635eSTavis Ormandy 	if (ret)
3363462e635eSTavis Ormandy 		goto out;
3364fa5dc22fSRoland McGrath 
336584638335SKonstantin Khlebnikov 	vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3366fa5dc22fSRoland McGrath 
3367cdd6c482SIngo Molnar 	perf_event_mmap(vma);
3368089dd79dSPeter Zijlstra 
3369d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
33703935ed6aSStefani Seibold 	return vma;
3371462e635eSTavis Ormandy 
3372462e635eSTavis Ormandy out:
33733928d4f5SLinus Torvalds 	vm_area_free(vma);
3374d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
33753935ed6aSStefani Seibold 	return ERR_PTR(ret);
33763935ed6aSStefani Seibold }
33773935ed6aSStefani Seibold 
33782eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma,
33792eefd878SDmitry Safonov 	const struct vm_special_mapping *sm)
33802eefd878SDmitry Safonov {
33812eefd878SDmitry Safonov 	return vma->vm_private_data == sm &&
33822eefd878SDmitry Safonov 		(vma->vm_ops == &special_mapping_vmops ||
33832eefd878SDmitry Safonov 		 vma->vm_ops == &legacy_special_mapping_vmops);
33842eefd878SDmitry Safonov }
33852eefd878SDmitry Safonov 
3386a62c34bdSAndy Lutomirski /*
3387c1e8d7c6SMichel Lespinasse  * Called with mm->mmap_lock held for writing.
3388a62c34bdSAndy Lutomirski  * Insert a new vma covering the given region, with the given flags.
3389a62c34bdSAndy Lutomirski  * Its pages are supplied by the given array of struct page *.
3390a62c34bdSAndy Lutomirski  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3391a62c34bdSAndy Lutomirski  * The region past the last page supplied will always produce SIGBUS.
3392a62c34bdSAndy Lutomirski  * The array pointer and the pages it points to are assumed to stay alive
3393a62c34bdSAndy Lutomirski  * for as long as this mapping might exist.
3394a62c34bdSAndy Lutomirski  */
3395a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping(
3396a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3397a62c34bdSAndy Lutomirski 	unsigned long addr, unsigned long len,
3398a62c34bdSAndy Lutomirski 	unsigned long vm_flags, const struct vm_special_mapping *spec)
3399a62c34bdSAndy Lutomirski {
340027f28b97SChen Gang 	return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
340127f28b97SChen Gang 					&special_mapping_vmops);
3402a62c34bdSAndy Lutomirski }
3403a62c34bdSAndy Lutomirski 
34043935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm,
34053935ed6aSStefani Seibold 			    unsigned long addr, unsigned long len,
34063935ed6aSStefani Seibold 			    unsigned long vm_flags, struct page **pages)
34073935ed6aSStefani Seibold {
3408a62c34bdSAndy Lutomirski 	struct vm_area_struct *vma = __install_special_mapping(
340927f28b97SChen Gang 		mm, addr, len, vm_flags, (void *)pages,
341027f28b97SChen Gang 		&legacy_special_mapping_vmops);
34113935ed6aSStefani Seibold 
341214bd5b45SDuan Jiong 	return PTR_ERR_OR_ZERO(vma);
3413fa5dc22fSRoland McGrath }
34147906d00cSAndrea Arcangeli 
34157906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
34167906d00cSAndrea Arcangeli 
3417454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
34187906d00cSAndrea Arcangeli {
3419f808c13fSDavidlohr Bueso 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
34207906d00cSAndrea Arcangeli 		/*
34217906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
34227906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
34237906d00cSAndrea Arcangeli 		 */
3424da1c55f1SMichel Lespinasse 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
34257906d00cSAndrea Arcangeli 		/*
34267906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
34275a505085SIngo Molnar 		 * anon_vma->root->rwsem. If some other vma in this mm shares
34287906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
34297906d00cSAndrea Arcangeli 		 *
34307906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
34317906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
34325a505085SIngo Molnar 		 * anon_vma->root->rwsem.
34337906d00cSAndrea Arcangeli 		 */
34347906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
3435f808c13fSDavidlohr Bueso 				       &anon_vma->root->rb_root.rb_root.rb_node))
34367906d00cSAndrea Arcangeli 			BUG();
34377906d00cSAndrea Arcangeli 	}
34387906d00cSAndrea Arcangeli }
34397906d00cSAndrea Arcangeli 
3440454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
34417906d00cSAndrea Arcangeli {
34427906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
34437906d00cSAndrea Arcangeli 		/*
34447906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
34457906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
34467906d00cSAndrea Arcangeli 		 *
34477906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
34487906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
34497906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
34507906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
34517906d00cSAndrea Arcangeli 		 */
34527906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
34537906d00cSAndrea Arcangeli 			BUG();
3454da1c55f1SMichel Lespinasse 		down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_lock);
34557906d00cSAndrea Arcangeli 	}
34567906d00cSAndrea Arcangeli }
34577906d00cSAndrea Arcangeli 
34587906d00cSAndrea Arcangeli /*
34597906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
34607906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
34617906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
34627906d00cSAndrea Arcangeli  *
3463c1e8d7c6SMichel Lespinasse  * The caller must take the mmap_lock in write mode before calling
34647906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
3465c1e8d7c6SMichel Lespinasse  * mmap_lock until mm_drop_all_locks() returns.
34667906d00cSAndrea Arcangeli  *
3467c1e8d7c6SMichel Lespinasse  * mmap_lock in write mode is required in order to block all operations
34687906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
346927ba0644SKirill A. Shutemov  * altering the vma layout. It's also needed in write mode to avoid new
34707906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
34717906d00cSAndrea Arcangeli  *
34727906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
34737906d00cSAndrea Arcangeli  * or it would deadlock.
34747906d00cSAndrea Arcangeli  *
3475bf181b9fSMichel Lespinasse  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
34767906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
34777906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
34787906d00cSAndrea Arcangeli  *
347988f306b6SKirill A. Shutemov  * We take locks in following order, accordingly to comment at beginning
348088f306b6SKirill A. Shutemov  * of mm/rmap.c:
348188f306b6SKirill A. Shutemov  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
348288f306b6SKirill A. Shutemov  *     hugetlb mapping);
348388f306b6SKirill A. Shutemov  *   - all i_mmap_rwsem locks;
348488f306b6SKirill A. Shutemov  *   - all anon_vma->rwseml
348588f306b6SKirill A. Shutemov  *
348688f306b6SKirill A. Shutemov  * We can take all locks within these types randomly because the VM code
348788f306b6SKirill A. Shutemov  * doesn't nest them and we protected from parallel mm_take_all_locks() by
348888f306b6SKirill A. Shutemov  * mm_all_locks_mutex.
34897906d00cSAndrea Arcangeli  *
34907906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
34917906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
34927906d00cSAndrea Arcangeli  *
34937906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
34947906d00cSAndrea Arcangeli  */
34957906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
34967906d00cSAndrea Arcangeli {
34977906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
34985beb4930SRik van Riel 	struct anon_vma_chain *avc;
34997906d00cSAndrea Arcangeli 
3500325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
35017906d00cSAndrea Arcangeli 
35027906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
35037906d00cSAndrea Arcangeli 
35047906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
35057906d00cSAndrea Arcangeli 		if (signal_pending(current))
35067906d00cSAndrea Arcangeli 			goto out_unlock;
350788f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
350888f306b6SKirill A. Shutemov 				is_vm_hugetlb_page(vma))
350988f306b6SKirill A. Shutemov 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
351088f306b6SKirill A. Shutemov 	}
351188f306b6SKirill A. Shutemov 
351288f306b6SKirill A. Shutemov 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
351388f306b6SKirill A. Shutemov 		if (signal_pending(current))
351488f306b6SKirill A. Shutemov 			goto out_unlock;
351588f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
351688f306b6SKirill A. Shutemov 				!is_vm_hugetlb_page(vma))
3517454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
35187906d00cSAndrea Arcangeli 	}
35197cd5a02fSPeter Zijlstra 
35207cd5a02fSPeter Zijlstra 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
35217cd5a02fSPeter Zijlstra 		if (signal_pending(current))
35227cd5a02fSPeter Zijlstra 			goto out_unlock;
35237cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
35245beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
35255beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
35267cd5a02fSPeter Zijlstra 	}
35277cd5a02fSPeter Zijlstra 
3528584cff54SKautuk Consul 	return 0;
35297906d00cSAndrea Arcangeli 
35307906d00cSAndrea Arcangeli out_unlock:
35317906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
3532584cff54SKautuk Consul 	return -EINTR;
35337906d00cSAndrea Arcangeli }
35347906d00cSAndrea Arcangeli 
35357906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
35367906d00cSAndrea Arcangeli {
3537f808c13fSDavidlohr Bueso 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
35387906d00cSAndrea Arcangeli 		/*
35397906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
35407906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
35417906d00cSAndrea Arcangeli 		 *
35427906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
3543bf181b9fSMichel Lespinasse 		 * the vma so the users using the anon_vma->rb_root will
35447906d00cSAndrea Arcangeli 		 * never see our bitflag.
35457906d00cSAndrea Arcangeli 		 *
35467906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
35477906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
35485a505085SIngo Molnar 		 * anon_vma->root->rwsem.
35497906d00cSAndrea Arcangeli 		 */
35507906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
3551f808c13fSDavidlohr Bueso 					  &anon_vma->root->rb_root.rb_root.rb_node))
35527906d00cSAndrea Arcangeli 			BUG();
355308b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
35547906d00cSAndrea Arcangeli 	}
35557906d00cSAndrea Arcangeli }
35567906d00cSAndrea Arcangeli 
35577906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
35587906d00cSAndrea Arcangeli {
35597906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
35607906d00cSAndrea Arcangeli 		/*
35617906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
35627906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
35637906d00cSAndrea Arcangeli 		 */
356483cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
35657906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
35667906d00cSAndrea Arcangeli 					&mapping->flags))
35677906d00cSAndrea Arcangeli 			BUG();
35687906d00cSAndrea Arcangeli 	}
35697906d00cSAndrea Arcangeli }
35707906d00cSAndrea Arcangeli 
35717906d00cSAndrea Arcangeli /*
3572c1e8d7c6SMichel Lespinasse  * The mmap_lock cannot be released by the caller until
35737906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
35747906d00cSAndrea Arcangeli  */
35757906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
35767906d00cSAndrea Arcangeli {
35777906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
35785beb4930SRik van Riel 	struct anon_vma_chain *avc;
35797906d00cSAndrea Arcangeli 
3580325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
35817906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
35827906d00cSAndrea Arcangeli 
35837906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
35847906d00cSAndrea Arcangeli 		if (vma->anon_vma)
35855beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
35865beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
35877906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
35887906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
35897906d00cSAndrea Arcangeli 	}
35907906d00cSAndrea Arcangeli 
35917906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
35927906d00cSAndrea Arcangeli }
35938feae131SDavid Howells 
35948feae131SDavid Howells /*
35953edf41d8Sseokhoon.yoon  * initialise the percpu counter for VM
35968feae131SDavid Howells  */
35978feae131SDavid Howells void __init mmap_init(void)
35988feae131SDavid Howells {
359900a62ce9SKOSAKI Motohiro 	int ret;
360000a62ce9SKOSAKI Motohiro 
3601908c7f19STejun Heo 	ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
360200a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
36038feae131SDavid Howells }
3604c9b1d098SAndrew Shewmaker 
3605c9b1d098SAndrew Shewmaker /*
3606c9b1d098SAndrew Shewmaker  * Initialise sysctl_user_reserve_kbytes.
3607c9b1d098SAndrew Shewmaker  *
3608c9b1d098SAndrew Shewmaker  * This is intended to prevent a user from starting a single memory hogging
3609c9b1d098SAndrew Shewmaker  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3610c9b1d098SAndrew Shewmaker  * mode.
3611c9b1d098SAndrew Shewmaker  *
3612c9b1d098SAndrew Shewmaker  * The default value is min(3% of free memory, 128MB)
3613c9b1d098SAndrew Shewmaker  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3614c9b1d098SAndrew Shewmaker  */
36151640879aSAndrew Shewmaker static int init_user_reserve(void)
3616c9b1d098SAndrew Shewmaker {
3617c9b1d098SAndrew Shewmaker 	unsigned long free_kbytes;
3618c9b1d098SAndrew Shewmaker 
3619c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3620c9b1d098SAndrew Shewmaker 
3621c9b1d098SAndrew Shewmaker 	sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3622c9b1d098SAndrew Shewmaker 	return 0;
3623c9b1d098SAndrew Shewmaker }
3624a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve);
36254eeab4f5SAndrew Shewmaker 
36264eeab4f5SAndrew Shewmaker /*
36274eeab4f5SAndrew Shewmaker  * Initialise sysctl_admin_reserve_kbytes.
36284eeab4f5SAndrew Shewmaker  *
36294eeab4f5SAndrew Shewmaker  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
36304eeab4f5SAndrew Shewmaker  * to log in and kill a memory hogging process.
36314eeab4f5SAndrew Shewmaker  *
36324eeab4f5SAndrew Shewmaker  * Systems with more than 256MB will reserve 8MB, enough to recover
36334eeab4f5SAndrew Shewmaker  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
36344eeab4f5SAndrew Shewmaker  * only reserve 3% of free pages by default.
36354eeab4f5SAndrew Shewmaker  */
36361640879aSAndrew Shewmaker static int init_admin_reserve(void)
36374eeab4f5SAndrew Shewmaker {
36384eeab4f5SAndrew Shewmaker 	unsigned long free_kbytes;
36394eeab4f5SAndrew Shewmaker 
3640c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
36414eeab4f5SAndrew Shewmaker 
36424eeab4f5SAndrew Shewmaker 	sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
36434eeab4f5SAndrew Shewmaker 	return 0;
36444eeab4f5SAndrew Shewmaker }
3645a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve);
36461640879aSAndrew Shewmaker 
36471640879aSAndrew Shewmaker /*
36481640879aSAndrew Shewmaker  * Reinititalise user and admin reserves if memory is added or removed.
36491640879aSAndrew Shewmaker  *
36501640879aSAndrew Shewmaker  * The default user reserve max is 128MB, and the default max for the
36511640879aSAndrew Shewmaker  * admin reserve is 8MB. These are usually, but not always, enough to
36521640879aSAndrew Shewmaker  * enable recovery from a memory hogging process using login/sshd, a shell,
36531640879aSAndrew Shewmaker  * and tools like top. It may make sense to increase or even disable the
36541640879aSAndrew Shewmaker  * reserve depending on the existence of swap or variations in the recovery
36551640879aSAndrew Shewmaker  * tools. So, the admin may have changed them.
36561640879aSAndrew Shewmaker  *
36571640879aSAndrew Shewmaker  * If memory is added and the reserves have been eliminated or increased above
36581640879aSAndrew Shewmaker  * the default max, then we'll trust the admin.
36591640879aSAndrew Shewmaker  *
36601640879aSAndrew Shewmaker  * If memory is removed and there isn't enough free memory, then we
36611640879aSAndrew Shewmaker  * need to reset the reserves.
36621640879aSAndrew Shewmaker  *
36631640879aSAndrew Shewmaker  * Otherwise keep the reserve set by the admin.
36641640879aSAndrew Shewmaker  */
36651640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb,
36661640879aSAndrew Shewmaker 			     unsigned long action, void *data)
36671640879aSAndrew Shewmaker {
36681640879aSAndrew Shewmaker 	unsigned long tmp, free_kbytes;
36691640879aSAndrew Shewmaker 
36701640879aSAndrew Shewmaker 	switch (action) {
36711640879aSAndrew Shewmaker 	case MEM_ONLINE:
36721640879aSAndrew Shewmaker 		/* Default max is 128MB. Leave alone if modified by operator. */
36731640879aSAndrew Shewmaker 		tmp = sysctl_user_reserve_kbytes;
36741640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 17))
36751640879aSAndrew Shewmaker 			init_user_reserve();
36761640879aSAndrew Shewmaker 
36771640879aSAndrew Shewmaker 		/* Default max is 8MB.  Leave alone if modified by operator. */
36781640879aSAndrew Shewmaker 		tmp = sysctl_admin_reserve_kbytes;
36791640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 13))
36801640879aSAndrew Shewmaker 			init_admin_reserve();
36811640879aSAndrew Shewmaker 
36821640879aSAndrew Shewmaker 		break;
36831640879aSAndrew Shewmaker 	case MEM_OFFLINE:
3684c41f012aSMichal Hocko 		free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
36851640879aSAndrew Shewmaker 
36861640879aSAndrew Shewmaker 		if (sysctl_user_reserve_kbytes > free_kbytes) {
36871640879aSAndrew Shewmaker 			init_user_reserve();
36881640879aSAndrew Shewmaker 			pr_info("vm.user_reserve_kbytes reset to %lu\n",
36891640879aSAndrew Shewmaker 				sysctl_user_reserve_kbytes);
36901640879aSAndrew Shewmaker 		}
36911640879aSAndrew Shewmaker 
36921640879aSAndrew Shewmaker 		if (sysctl_admin_reserve_kbytes > free_kbytes) {
36931640879aSAndrew Shewmaker 			init_admin_reserve();
36941640879aSAndrew Shewmaker 			pr_info("vm.admin_reserve_kbytes reset to %lu\n",
36951640879aSAndrew Shewmaker 				sysctl_admin_reserve_kbytes);
36961640879aSAndrew Shewmaker 		}
36971640879aSAndrew Shewmaker 		break;
36981640879aSAndrew Shewmaker 	default:
36991640879aSAndrew Shewmaker 		break;
37001640879aSAndrew Shewmaker 	}
37011640879aSAndrew Shewmaker 	return NOTIFY_OK;
37021640879aSAndrew Shewmaker }
37031640879aSAndrew Shewmaker 
37041640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = {
37051640879aSAndrew Shewmaker 	.notifier_call = reserve_mem_notifier,
37061640879aSAndrew Shewmaker };
37071640879aSAndrew Shewmaker 
37081640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void)
37091640879aSAndrew Shewmaker {
37101640879aSAndrew Shewmaker 	if (register_hotmemory_notifier(&reserve_mem_nb))
3711b1de0d13SMitchel Humpherys 		pr_err("Failed registering memory add/remove notifier for admin reserve\n");
37121640879aSAndrew Shewmaker 
37131640879aSAndrew Shewmaker 	return 0;
37141640879aSAndrew Shewmaker }
3715a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier);
3716