xref: /linux/mm/mmap.c (revision d4af56c5c7c6781ca6ca8075e2cf5bc119ed33d1)
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>
42d3737187SMichel Lespinasse #include <linux/rbtree_augmented.h>
431640879aSAndrew Shewmaker #include <linux/notifier.h>
441640879aSAndrew Shewmaker #include <linux/memory.h>
45b1de0d13SMitchel Humpherys #include <linux/printk.h>
4619a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h>
47d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h>
4862b5f7d0SDave Hansen #include <linux/pkeys.h>
4921292580SAndrea Arcangeli #include <linux/oom.h>
5004f5866eSAndrea Arcangeli #include <linux/sched/mm.h>
511da177e4SLinus Torvalds 
527c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
531da177e4SLinus Torvalds #include <asm/cacheflush.h>
541da177e4SLinus Torvalds #include <asm/tlb.h>
55d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h>
561da177e4SLinus Torvalds 
57df529cabSJaewon Kim #define CREATE_TRACE_POINTS
58df529cabSJaewon Kim #include <trace/events/mmap.h>
59df529cabSJaewon Kim 
6042b77728SJan Beulich #include "internal.h"
6142b77728SJan Beulich 
623a459756SKirill Korotaev #ifndef arch_mmap_check
633a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags)	(0)
643a459756SKirill Korotaev #endif
653a459756SKirill Korotaev 
66d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
67d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN;
68d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX;
69d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS;
70d07e2259SDaniel Cashman #endif
71d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
72d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN;
73d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX;
74d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS;
75d07e2259SDaniel Cashman #endif
76d07e2259SDaniel Cashman 
77f4fcd558SKonstantin Khlebnikov static bool ignore_rlimit_data;
78d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644);
79d07e2259SDaniel Cashman 
80e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm,
81e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
82e0da382cSHugh Dickins 		unsigned long start, unsigned long end);
83e0da382cSHugh Dickins 
8464e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
8564e45507SPeter Feiner {
8664e45507SPeter Feiner 	return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
8764e45507SPeter Feiner }
8864e45507SPeter Feiner 
8964e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */
9064e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma)
9164e45507SPeter Feiner {
9264e45507SPeter Feiner 	unsigned long vm_flags = vma->vm_flags;
936d2329f8SAndrea Arcangeli 	pgprot_t vm_page_prot;
9464e45507SPeter Feiner 
956d2329f8SAndrea Arcangeli 	vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
966d2329f8SAndrea Arcangeli 	if (vma_wants_writenotify(vma, vm_page_prot)) {
9764e45507SPeter Feiner 		vm_flags &= ~VM_SHARED;
986d2329f8SAndrea Arcangeli 		vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
9964e45507SPeter Feiner 	}
100c1e8d7c6SMichel Lespinasse 	/* remove_protection_ptes reads vma->vm_page_prot without mmap_lock */
1016d2329f8SAndrea Arcangeli 	WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
10264e45507SPeter Feiner }
10364e45507SPeter Feiner 
1041da177e4SLinus Torvalds /*
105c8c06efaSDavidlohr Bueso  * Requires inode->i_mapping->i_mmap_rwsem
1061da177e4SLinus Torvalds  */
1071da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma,
1081da177e4SLinus Torvalds 		struct file *file, struct address_space *mapping)
1091da177e4SLinus Torvalds {
1101da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
1114bb5f5d9SDavid Herrmann 		mapping_unmap_writable(mapping);
1121da177e4SLinus Torvalds 
1131da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
1146b2dbba8SMichel Lespinasse 	vma_interval_tree_remove(vma, &mapping->i_mmap);
1151da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
1161da177e4SLinus Torvalds }
1171da177e4SLinus Torvalds 
1181da177e4SLinus Torvalds /*
1196b2dbba8SMichel Lespinasse  * Unlink a file-based vm structure from its interval tree, to hide
120a8fb5618SHugh Dickins  * vma from rmap and vmtruncate before freeing its page tables.
1211da177e4SLinus Torvalds  */
122a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma)
1231da177e4SLinus Torvalds {
1241da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
1251da177e4SLinus Torvalds 
1261da177e4SLinus Torvalds 	if (file) {
1271da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
12883cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
1291da177e4SLinus Torvalds 		__remove_shared_vm_struct(vma, file, mapping);
13083cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
1311da177e4SLinus Torvalds 	}
132a8fb5618SHugh Dickins }
133a8fb5618SHugh Dickins 
134a8fb5618SHugh Dickins /*
135a8fb5618SHugh Dickins  * Close a vm structure and free it, returning the next.
136a8fb5618SHugh Dickins  */
137a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
138a8fb5618SHugh Dickins {
139a8fb5618SHugh Dickins 	struct vm_area_struct *next = vma->vm_next;
140a8fb5618SHugh Dickins 
141a8fb5618SHugh Dickins 	might_sleep();
1421da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
1431da177e4SLinus Torvalds 		vma->vm_ops->close(vma);
144e9714acfSKonstantin Khlebnikov 	if (vma->vm_file)
145a8fb5618SHugh Dickins 		fput(vma->vm_file);
146f0be3d32SLee Schermerhorn 	mpol_put(vma_policy(vma));
1473928d4f5SLinus Torvalds 	vm_area_free(vma);
148a8fb5618SHugh Dickins 	return next;
1491da177e4SLinus Torvalds }
1501da177e4SLinus Torvalds 
151bb177a73SMichal Hocko static int do_brk_flags(unsigned long addr, unsigned long request, unsigned long flags,
152bb177a73SMichal Hocko 		struct list_head *uf);
1536a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
1541da177e4SLinus Torvalds {
1559bc8039eSYang Shi 	unsigned long newbrk, oldbrk, origbrk;
1561da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1571be7107fSHugh Dickins 	struct vm_area_struct *next;
158a5b4592cSJiri Kosina 	unsigned long min_brk;
159128557ffSMichel Lespinasse 	bool populate;
1609bc8039eSYang Shi 	bool downgraded = false;
161897ab3e0SMike Rapoport 	LIST_HEAD(uf);
1621da177e4SLinus Torvalds 
163d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
164dc0ef0dfSMichal Hocko 		return -EINTR;
1651da177e4SLinus Torvalds 
1669bc8039eSYang Shi 	origbrk = mm->brk;
1679bc8039eSYang Shi 
168a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
1695520e894SJiri Kosina 	/*
1705520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
1715520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
1725520e894SJiri Kosina 	 * to be arbitrarily shifted
1735520e894SJiri Kosina 	 */
1744471a675SJiri Kosina 	if (current->brk_randomized)
1755520e894SJiri Kosina 		min_brk = mm->start_brk;
1765520e894SJiri Kosina 	else
1775520e894SJiri Kosina 		min_brk = mm->end_data;
178a5b4592cSJiri Kosina #else
179a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
180a5b4592cSJiri Kosina #endif
181a5b4592cSJiri Kosina 	if (brk < min_brk)
1821da177e4SLinus Torvalds 		goto out;
1831e624196SRam Gupta 
1841e624196SRam Gupta 	/*
1851e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
1861e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
1871e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
1881e624196SRam Gupta 	 * not page aligned -Ram Gupta
1891e624196SRam Gupta 	 */
1908764b338SCyrill Gorcunov 	if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
1918764b338SCyrill Gorcunov 			      mm->end_data, mm->start_data))
1921e624196SRam Gupta 		goto out;
1931e624196SRam Gupta 
1941da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
1951da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
1969bc8039eSYang Shi 	if (oldbrk == newbrk) {
1979bc8039eSYang Shi 		mm->brk = brk;
1989bc8039eSYang Shi 		goto success;
1999bc8039eSYang Shi 	}
2001da177e4SLinus Torvalds 
2019bc8039eSYang Shi 	/*
2029bc8039eSYang Shi 	 * Always allow shrinking brk.
203c1e8d7c6SMichel Lespinasse 	 * __do_munmap() may downgrade mmap_lock to read.
2049bc8039eSYang Shi 	 */
2051da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2069bc8039eSYang Shi 		int ret;
2079bc8039eSYang Shi 
2089bc8039eSYang Shi 		/*
209c1e8d7c6SMichel Lespinasse 		 * mm->brk must to be protected by write mmap_lock so update it
210c1e8d7c6SMichel Lespinasse 		 * before downgrading mmap_lock. When __do_munmap() fails,
2119bc8039eSYang Shi 		 * mm->brk will be restored from origbrk.
2129bc8039eSYang Shi 		 */
2139bc8039eSYang Shi 		mm->brk = brk;
2149bc8039eSYang Shi 		ret = __do_munmap(mm, newbrk, oldbrk-newbrk, &uf, true);
2159bc8039eSYang Shi 		if (ret < 0) {
2169bc8039eSYang Shi 			mm->brk = origbrk;
2171da177e4SLinus Torvalds 			goto out;
2189bc8039eSYang Shi 		} else if (ret == 1) {
2199bc8039eSYang Shi 			downgraded = true;
2209bc8039eSYang Shi 		}
2219bc8039eSYang Shi 		goto success;
2221da177e4SLinus Torvalds 	}
2231da177e4SLinus Torvalds 
2241da177e4SLinus Torvalds 	/* Check against existing mmap mappings. */
2251be7107fSHugh Dickins 	next = find_vma(mm, oldbrk);
2261be7107fSHugh Dickins 	if (next && newbrk + PAGE_SIZE > vm_start_gap(next))
2271da177e4SLinus Torvalds 		goto out;
2281da177e4SLinus Torvalds 
2291da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
230bb177a73SMichal Hocko 	if (do_brk_flags(oldbrk, newbrk-oldbrk, 0, &uf) < 0)
2311da177e4SLinus Torvalds 		goto out;
2321da177e4SLinus Torvalds 	mm->brk = brk;
2339bc8039eSYang Shi 
2349bc8039eSYang Shi success:
235128557ffSMichel Lespinasse 	populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
2369bc8039eSYang Shi 	if (downgraded)
237d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2389bc8039eSYang Shi 	else
239d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
240897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
241128557ffSMichel Lespinasse 	if (populate)
242128557ffSMichel Lespinasse 		mm_populate(oldbrk, newbrk - oldbrk);
243128557ffSMichel Lespinasse 	return brk;
244128557ffSMichel Lespinasse 
2451da177e4SLinus Torvalds out:
246d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
247b7204006SAdrian Huang 	return origbrk;
2481da177e4SLinus Torvalds }
2491da177e4SLinus Torvalds 
250315cc066SMichel Lespinasse static inline unsigned long vma_compute_gap(struct vm_area_struct *vma)
251d3737187SMichel Lespinasse {
252315cc066SMichel Lespinasse 	unsigned long gap, prev_end;
2531be7107fSHugh Dickins 
2541be7107fSHugh Dickins 	/*
2551be7107fSHugh Dickins 	 * Note: in the rare case of a VM_GROWSDOWN above a VM_GROWSUP, we
2561be7107fSHugh Dickins 	 * allow two stack_guard_gaps between them here, and when choosing
2571be7107fSHugh Dickins 	 * an unmapped area; whereas when expanding we only require one.
2581be7107fSHugh Dickins 	 * That's a little inconsistent, but keeps the code here simpler.
2591be7107fSHugh Dickins 	 */
260315cc066SMichel Lespinasse 	gap = vm_start_gap(vma);
2611be7107fSHugh Dickins 	if (vma->vm_prev) {
2621be7107fSHugh Dickins 		prev_end = vm_end_gap(vma->vm_prev);
263315cc066SMichel Lespinasse 		if (gap > prev_end)
264315cc066SMichel Lespinasse 			gap -= prev_end;
2651be7107fSHugh Dickins 		else
266315cc066SMichel Lespinasse 			gap = 0;
2671be7107fSHugh Dickins 	}
268315cc066SMichel Lespinasse 	return gap;
269315cc066SMichel Lespinasse }
270315cc066SMichel Lespinasse 
271315cc066SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB
272315cc066SMichel Lespinasse static unsigned long vma_compute_subtree_gap(struct vm_area_struct *vma)
273315cc066SMichel Lespinasse {
274315cc066SMichel Lespinasse 	unsigned long max = vma_compute_gap(vma), subtree_gap;
275d3737187SMichel Lespinasse 	if (vma->vm_rb.rb_left) {
276d3737187SMichel Lespinasse 		subtree_gap = rb_entry(vma->vm_rb.rb_left,
277d3737187SMichel Lespinasse 				struct vm_area_struct, vm_rb)->rb_subtree_gap;
278d3737187SMichel Lespinasse 		if (subtree_gap > max)
279d3737187SMichel Lespinasse 			max = subtree_gap;
280d3737187SMichel Lespinasse 	}
281d3737187SMichel Lespinasse 	if (vma->vm_rb.rb_right) {
282d3737187SMichel Lespinasse 		subtree_gap = rb_entry(vma->vm_rb.rb_right,
283d3737187SMichel Lespinasse 				struct vm_area_struct, vm_rb)->rb_subtree_gap;
284d3737187SMichel Lespinasse 		if (subtree_gap > max)
285d3737187SMichel Lespinasse 			max = subtree_gap;
286d3737187SMichel Lespinasse 	}
287d3737187SMichel Lespinasse 	return max;
288d3737187SMichel Lespinasse }
289d3737187SMichel Lespinasse 
290acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm)
2911da177e4SLinus Torvalds {
292acf128d0SAndrea Arcangeli 	struct rb_root *root = &mm->mm_rb;
2935a0768f6SMichel Lespinasse 	int i = 0, j, bug = 0;
2941da177e4SLinus Torvalds 	struct rb_node *nd, *pn = NULL;
2951da177e4SLinus Torvalds 	unsigned long prev = 0, pend = 0;
2961da177e4SLinus Torvalds 
2971da177e4SLinus Torvalds 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
2981da177e4SLinus Torvalds 		struct vm_area_struct *vma;
2991da177e4SLinus Torvalds 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
3005a0768f6SMichel Lespinasse 		if (vma->vm_start < prev) {
301ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx < prev %lx\n",
302ff26f70fSAndrew Morton 				  vma->vm_start, prev);
3035a0768f6SMichel Lespinasse 			bug = 1;
3045a0768f6SMichel Lespinasse 		}
3055a0768f6SMichel Lespinasse 		if (vma->vm_start < pend) {
306ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx < pend %lx\n",
307ff26f70fSAndrew Morton 				  vma->vm_start, pend);
3085a0768f6SMichel Lespinasse 			bug = 1;
3095a0768f6SMichel Lespinasse 		}
3105a0768f6SMichel Lespinasse 		if (vma->vm_start > vma->vm_end) {
311ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx > vm_end %lx\n",
312ff26f70fSAndrew Morton 				  vma->vm_start, vma->vm_end);
3135a0768f6SMichel Lespinasse 			bug = 1;
3145a0768f6SMichel Lespinasse 		}
315acf128d0SAndrea Arcangeli 		spin_lock(&mm->page_table_lock);
3165a0768f6SMichel Lespinasse 		if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
3178542bdfcSSasha Levin 			pr_emerg("free gap %lx, correct %lx\n",
3185a0768f6SMichel Lespinasse 			       vma->rb_subtree_gap,
3195a0768f6SMichel Lespinasse 			       vma_compute_subtree_gap(vma));
3205a0768f6SMichel Lespinasse 			bug = 1;
3215a0768f6SMichel Lespinasse 		}
322acf128d0SAndrea Arcangeli 		spin_unlock(&mm->page_table_lock);
3231da177e4SLinus Torvalds 		i++;
3241da177e4SLinus Torvalds 		pn = nd;
325d1af65d1SDavid Miller 		prev = vma->vm_start;
326d1af65d1SDavid Miller 		pend = vma->vm_end;
3271da177e4SLinus Torvalds 	}
3281da177e4SLinus Torvalds 	j = 0;
3295a0768f6SMichel Lespinasse 	for (nd = pn; nd; nd = rb_prev(nd))
3301da177e4SLinus Torvalds 		j++;
3315a0768f6SMichel Lespinasse 	if (i != j) {
3328542bdfcSSasha Levin 		pr_emerg("backwards %d, forwards %d\n", j, i);
3335a0768f6SMichel Lespinasse 		bug = 1;
3341da177e4SLinus Torvalds 	}
3355a0768f6SMichel Lespinasse 	return bug ? -1 : i;
3361da177e4SLinus Torvalds }
337*d4af56c5SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
338*d4af56c5SLiam R. Howlett extern void mt_validate(struct maple_tree *mt);
339*d4af56c5SLiam R. Howlett extern void mt_dump(const struct maple_tree *mt);
3401da177e4SLinus Torvalds 
341*d4af56c5SLiam R. Howlett /* Validate the maple tree */
342*d4af56c5SLiam R. Howlett static void validate_mm_mt(struct mm_struct *mm)
343*d4af56c5SLiam R. Howlett {
344*d4af56c5SLiam R. Howlett 	struct maple_tree *mt = &mm->mm_mt;
345*d4af56c5SLiam R. Howlett 	struct vm_area_struct *vma_mt, *vma = mm->mmap;
346*d4af56c5SLiam R. Howlett 
347*d4af56c5SLiam R. Howlett 	MA_STATE(mas, mt, 0, 0);
348*d4af56c5SLiam R. Howlett 
349*d4af56c5SLiam R. Howlett 	mt_validate(&mm->mm_mt);
350*d4af56c5SLiam R. Howlett 	mas_for_each(&mas, vma_mt, ULONG_MAX) {
351*d4af56c5SLiam R. Howlett 		if (xa_is_zero(vma_mt))
352*d4af56c5SLiam R. Howlett 			continue;
353*d4af56c5SLiam R. Howlett 
354*d4af56c5SLiam R. Howlett 		if (!vma)
355*d4af56c5SLiam R. Howlett 			break;
356*d4af56c5SLiam R. Howlett 
357*d4af56c5SLiam R. Howlett 		if ((vma != vma_mt) ||
358*d4af56c5SLiam R. Howlett 		    (vma->vm_start != vma_mt->vm_start) ||
359*d4af56c5SLiam R. Howlett 		    (vma->vm_end != vma_mt->vm_end) ||
360*d4af56c5SLiam R. Howlett 		    (vma->vm_start != mas.index) ||
361*d4af56c5SLiam R. Howlett 		    (vma->vm_end - 1 != mas.last)) {
362*d4af56c5SLiam R. Howlett 			pr_emerg("issue in %s\n", current->comm);
363*d4af56c5SLiam R. Howlett 			dump_stack();
364*d4af56c5SLiam R. Howlett #ifdef CONFIG_DEBUG_VM
365*d4af56c5SLiam R. Howlett 			dump_vma(vma_mt);
366*d4af56c5SLiam R. Howlett 			pr_emerg("and next in rb\n");
367*d4af56c5SLiam R. Howlett 			dump_vma(vma->vm_next);
368*d4af56c5SLiam R. Howlett #endif
369*d4af56c5SLiam R. Howlett 			pr_emerg("mt piv: %p %lu - %lu\n", vma_mt,
370*d4af56c5SLiam R. Howlett 				 mas.index, mas.last);
371*d4af56c5SLiam R. Howlett 			pr_emerg("mt vma: %p %lu - %lu\n", vma_mt,
372*d4af56c5SLiam R. Howlett 				 vma_mt->vm_start, vma_mt->vm_end);
373*d4af56c5SLiam R. Howlett 			pr_emerg("rb vma: %p %lu - %lu\n", vma,
374*d4af56c5SLiam R. Howlett 				 vma->vm_start, vma->vm_end);
375*d4af56c5SLiam R. Howlett 			pr_emerg("rb->next = %p %lu - %lu\n", vma->vm_next,
376*d4af56c5SLiam R. Howlett 					vma->vm_next->vm_start, vma->vm_next->vm_end);
377*d4af56c5SLiam R. Howlett 
378*d4af56c5SLiam R. Howlett 			mt_dump(mas.tree);
379*d4af56c5SLiam R. Howlett 			if (vma_mt->vm_end != mas.last + 1) {
380*d4af56c5SLiam R. Howlett 				pr_err("vma: %p vma_mt %lu-%lu\tmt %lu-%lu\n",
381*d4af56c5SLiam R. Howlett 						mm, vma_mt->vm_start, vma_mt->vm_end,
382*d4af56c5SLiam R. Howlett 						mas.index, mas.last);
383*d4af56c5SLiam R. Howlett 				mt_dump(mas.tree);
384*d4af56c5SLiam R. Howlett 			}
385*d4af56c5SLiam R. Howlett 			VM_BUG_ON_MM(vma_mt->vm_end != mas.last + 1, mm);
386*d4af56c5SLiam R. Howlett 			if (vma_mt->vm_start != mas.index) {
387*d4af56c5SLiam R. Howlett 				pr_err("vma: %p vma_mt %p %lu - %lu doesn't match\n",
388*d4af56c5SLiam R. Howlett 						mm, vma_mt, vma_mt->vm_start, vma_mt->vm_end);
389*d4af56c5SLiam R. Howlett 				mt_dump(mas.tree);
390*d4af56c5SLiam R. Howlett 			}
391*d4af56c5SLiam R. Howlett 			VM_BUG_ON_MM(vma_mt->vm_start != mas.index, mm);
392*d4af56c5SLiam R. Howlett 		}
393*d4af56c5SLiam R. Howlett 		VM_BUG_ON(vma != vma_mt);
394*d4af56c5SLiam R. Howlett 		vma = vma->vm_next;
395*d4af56c5SLiam R. Howlett 
396*d4af56c5SLiam R. Howlett 	}
397*d4af56c5SLiam R. Howlett 	VM_BUG_ON(vma);
398*d4af56c5SLiam R. Howlett }
399*d4af56c5SLiam R. Howlett #else
400*d4af56c5SLiam R. Howlett #define validate_mm_mt(root) do { } while (0)
401*d4af56c5SLiam R. Howlett #endif
402d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
403d3737187SMichel Lespinasse {
404d3737187SMichel Lespinasse 	struct rb_node *nd;
405d3737187SMichel Lespinasse 
406d3737187SMichel Lespinasse 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
407d3737187SMichel Lespinasse 		struct vm_area_struct *vma;
408d3737187SMichel Lespinasse 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
40996dad67fSSasha Levin 		VM_BUG_ON_VMA(vma != ignore &&
41096dad67fSSasha Levin 			vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
41196dad67fSSasha Levin 			vma);
412d3737187SMichel Lespinasse 	}
4131da177e4SLinus Torvalds }
4141da177e4SLinus Torvalds 
415eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm)
4161da177e4SLinus Torvalds {
4171da177e4SLinus Torvalds 	int bug = 0;
4181da177e4SLinus Torvalds 	int i = 0;
4195a0768f6SMichel Lespinasse 	unsigned long highest_address = 0;
420ed8ea815SMichel Lespinasse 	struct vm_area_struct *vma = mm->mmap;
421ff26f70fSAndrew Morton 
422ed8ea815SMichel Lespinasse 	while (vma) {
42312352d3cSKonstantin Khlebnikov 		struct anon_vma *anon_vma = vma->anon_vma;
424ed8ea815SMichel Lespinasse 		struct anon_vma_chain *avc;
425ff26f70fSAndrew Morton 
42612352d3cSKonstantin Khlebnikov 		if (anon_vma) {
42712352d3cSKonstantin Khlebnikov 			anon_vma_lock_read(anon_vma);
428ed8ea815SMichel Lespinasse 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
429ed8ea815SMichel Lespinasse 				anon_vma_interval_tree_verify(avc);
43012352d3cSKonstantin Khlebnikov 			anon_vma_unlock_read(anon_vma);
43112352d3cSKonstantin Khlebnikov 		}
43212352d3cSKonstantin Khlebnikov 
4331be7107fSHugh Dickins 		highest_address = vm_end_gap(vma);
434ed8ea815SMichel Lespinasse 		vma = vma->vm_next;
4351da177e4SLinus Torvalds 		i++;
4361da177e4SLinus Torvalds 	}
4375a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
4388542bdfcSSasha Levin 		pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
4395a0768f6SMichel Lespinasse 		bug = 1;
4405a0768f6SMichel Lespinasse 	}
4415a0768f6SMichel Lespinasse 	if (highest_address != mm->highest_vm_end) {
4428542bdfcSSasha Levin 		pr_emerg("mm->highest_vm_end %lx, found %lx\n",
4435a0768f6SMichel Lespinasse 			  mm->highest_vm_end, highest_address);
4445a0768f6SMichel Lespinasse 		bug = 1;
4455a0768f6SMichel Lespinasse 	}
446acf128d0SAndrea Arcangeli 	i = browse_rb(mm);
4475a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
448ff26f70fSAndrew Morton 		if (i != -1)
4498542bdfcSSasha Levin 			pr_emerg("map_count %d rb %d\n", mm->map_count, i);
4505a0768f6SMichel Lespinasse 		bug = 1;
4515a0768f6SMichel Lespinasse 	}
45296dad67fSSasha Levin 	VM_BUG_ON_MM(bug, mm);
4531da177e4SLinus Torvalds }
4541da177e4SLinus Torvalds #else
455d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0)
456*d4af56c5SLiam R. Howlett #define validate_mm_mt(root) do { } while (0)
4571da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
4581da177e4SLinus Torvalds #endif
4591da177e4SLinus Torvalds 
460315cc066SMichel Lespinasse RB_DECLARE_CALLBACKS_MAX(static, vma_gap_callbacks,
461315cc066SMichel Lespinasse 			 struct vm_area_struct, vm_rb,
462315cc066SMichel Lespinasse 			 unsigned long, rb_subtree_gap, vma_compute_gap)
463d3737187SMichel Lespinasse 
464d3737187SMichel Lespinasse /*
465d3737187SMichel Lespinasse  * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
466d3737187SMichel Lespinasse  * vma->vm_prev->vm_end values changed, without modifying the vma's position
467d3737187SMichel Lespinasse  * in the rbtree.
468d3737187SMichel Lespinasse  */
469d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma)
470d3737187SMichel Lespinasse {
471d3737187SMichel Lespinasse 	/*
472315cc066SMichel Lespinasse 	 * As it turns out, RB_DECLARE_CALLBACKS_MAX() already created
473315cc066SMichel Lespinasse 	 * a callback function that does exactly what we want.
474d3737187SMichel Lespinasse 	 */
475d3737187SMichel Lespinasse 	vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
476d3737187SMichel Lespinasse }
477d3737187SMichel Lespinasse 
478d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma,
479d3737187SMichel Lespinasse 				 struct rb_root *root)
480d3737187SMichel Lespinasse {
481d3737187SMichel Lespinasse 	/* All rb_subtree_gap values must be consistent prior to insertion */
482d3737187SMichel Lespinasse 	validate_mm_rb(root, NULL);
483d3737187SMichel Lespinasse 
484d3737187SMichel Lespinasse 	rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
485d3737187SMichel Lespinasse }
486d3737187SMichel Lespinasse 
4878f26e0b1SAndrea Arcangeli static void __vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
4888f26e0b1SAndrea Arcangeli {
4898f26e0b1SAndrea Arcangeli 	/*
4908f26e0b1SAndrea Arcangeli 	 * Note rb_erase_augmented is a fairly large inline function,
4918f26e0b1SAndrea Arcangeli 	 * so make sure we instantiate it only once with our desired
4928f26e0b1SAndrea Arcangeli 	 * augmented rbtree callbacks.
4938f26e0b1SAndrea Arcangeli 	 */
4948f26e0b1SAndrea Arcangeli 	rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
4958f26e0b1SAndrea Arcangeli }
4968f26e0b1SAndrea Arcangeli 
4978f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase_ignore(struct vm_area_struct *vma,
4988f26e0b1SAndrea Arcangeli 						struct rb_root *root,
4998f26e0b1SAndrea Arcangeli 						struct vm_area_struct *ignore)
5008f26e0b1SAndrea Arcangeli {
5018f26e0b1SAndrea Arcangeli 	/*
5028f26e0b1SAndrea Arcangeli 	 * All rb_subtree_gap values must be consistent prior to erase,
5034d1e7243SWei Yang 	 * with the possible exception of
5044d1e7243SWei Yang 	 *
5054d1e7243SWei Yang 	 * a. the "next" vma being erased if next->vm_start was reduced in
5064d1e7243SWei Yang 	 *    __vma_adjust() -> __vma_unlink()
5074d1e7243SWei Yang 	 * b. the vma being erased in detach_vmas_to_be_unmapped() ->
5084d1e7243SWei Yang 	 *    vma_rb_erase()
5098f26e0b1SAndrea Arcangeli 	 */
5108f26e0b1SAndrea Arcangeli 	validate_mm_rb(root, ignore);
5118f26e0b1SAndrea Arcangeli 
5128f26e0b1SAndrea Arcangeli 	__vma_rb_erase(vma, root);
5138f26e0b1SAndrea Arcangeli }
5148f26e0b1SAndrea Arcangeli 
5158f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase(struct vm_area_struct *vma,
5168f26e0b1SAndrea Arcangeli 					 struct rb_root *root)
517d3737187SMichel Lespinasse {
5184d1e7243SWei Yang 	vma_rb_erase_ignore(vma, root, vma);
519d3737187SMichel Lespinasse }
520d3737187SMichel Lespinasse 
521bf181b9fSMichel Lespinasse /*
522bf181b9fSMichel Lespinasse  * vma has some anon_vma assigned, and is already inserted on that
523bf181b9fSMichel Lespinasse  * anon_vma's interval trees.
524bf181b9fSMichel Lespinasse  *
525bf181b9fSMichel Lespinasse  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
526bf181b9fSMichel Lespinasse  * vma must be removed from the anon_vma's interval trees using
527bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_pre_update_vma().
528bf181b9fSMichel Lespinasse  *
529bf181b9fSMichel Lespinasse  * After the update, the vma will be reinserted using
530bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_post_update_vma().
531bf181b9fSMichel Lespinasse  *
532c1e8d7c6SMichel Lespinasse  * The entire update must be protected by exclusive mmap_lock and by
533bf181b9fSMichel Lespinasse  * the root anon_vma's mutex.
534bf181b9fSMichel Lespinasse  */
535bf181b9fSMichel Lespinasse static inline void
536bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
537bf181b9fSMichel Lespinasse {
538bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
539bf181b9fSMichel Lespinasse 
540bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
541bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
542bf181b9fSMichel Lespinasse }
543bf181b9fSMichel Lespinasse 
544bf181b9fSMichel Lespinasse static inline void
545bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
546bf181b9fSMichel Lespinasse {
547bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
548bf181b9fSMichel Lespinasse 
549bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
550bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
551bf181b9fSMichel Lespinasse }
552bf181b9fSMichel Lespinasse 
5536597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr,
5546597d783SHugh Dickins 		unsigned long end, struct vm_area_struct **pprev,
5556597d783SHugh Dickins 		struct rb_node ***rb_link, struct rb_node **rb_parent)
5561da177e4SLinus Torvalds {
5571da177e4SLinus Torvalds 	struct rb_node **__rb_link, *__rb_parent, *rb_prev;
5581da177e4SLinus Torvalds 
5595b78ed24SLuigi Rizzo 	mmap_assert_locked(mm);
5601da177e4SLinus Torvalds 	__rb_link = &mm->mm_rb.rb_node;
5611da177e4SLinus Torvalds 	rb_prev = __rb_parent = NULL;
5621da177e4SLinus Torvalds 
5631da177e4SLinus Torvalds 	while (*__rb_link) {
5641da177e4SLinus Torvalds 		struct vm_area_struct *vma_tmp;
5651da177e4SLinus Torvalds 
5661da177e4SLinus Torvalds 		__rb_parent = *__rb_link;
5671da177e4SLinus Torvalds 		vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
5681da177e4SLinus Torvalds 
5691da177e4SLinus Torvalds 		if (vma_tmp->vm_end > addr) {
5706597d783SHugh Dickins 			/* Fail if an existing vma overlaps the area */
5716597d783SHugh Dickins 			if (vma_tmp->vm_start < end)
5726597d783SHugh Dickins 				return -ENOMEM;
5731da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_left;
5741da177e4SLinus Torvalds 		} else {
5751da177e4SLinus Torvalds 			rb_prev = __rb_parent;
5761da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_right;
5771da177e4SLinus Torvalds 		}
5781da177e4SLinus Torvalds 	}
5791da177e4SLinus Torvalds 
5801da177e4SLinus Torvalds 	*pprev = NULL;
5811da177e4SLinus Torvalds 	if (rb_prev)
5821da177e4SLinus Torvalds 		*pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
5831da177e4SLinus Torvalds 	*rb_link = __rb_link;
5841da177e4SLinus Torvalds 	*rb_parent = __rb_parent;
5856597d783SHugh Dickins 	return 0;
5861da177e4SLinus Torvalds }
5871da177e4SLinus Torvalds 
5883903b55aSLiam R. Howlett /*
5893903b55aSLiam R. Howlett  * vma_next() - Get the next VMA.
5903903b55aSLiam R. Howlett  * @mm: The mm_struct.
5913903b55aSLiam R. Howlett  * @vma: The current vma.
5923903b55aSLiam R. Howlett  *
5933903b55aSLiam R. Howlett  * If @vma is NULL, return the first vma in the mm.
5943903b55aSLiam R. Howlett  *
5953903b55aSLiam R. Howlett  * Returns: The next VMA after @vma.
5963903b55aSLiam R. Howlett  */
5973903b55aSLiam R. Howlett static inline struct vm_area_struct *vma_next(struct mm_struct *mm,
5983903b55aSLiam R. Howlett 					 struct vm_area_struct *vma)
5993903b55aSLiam R. Howlett {
6003903b55aSLiam R. Howlett 	if (!vma)
6013903b55aSLiam R. Howlett 		return mm->mmap;
6023903b55aSLiam R. Howlett 
6033903b55aSLiam R. Howlett 	return vma->vm_next;
6043903b55aSLiam R. Howlett }
605fb8090b6SLiam R. Howlett 
606fb8090b6SLiam R. Howlett /*
607fb8090b6SLiam R. Howlett  * munmap_vma_range() - munmap VMAs that overlap a range.
608fb8090b6SLiam R. Howlett  * @mm: The mm struct
609fb8090b6SLiam R. Howlett  * @start: The start of the range.
610fb8090b6SLiam R. Howlett  * @len: The length of the range.
611fb8090b6SLiam R. Howlett  * @pprev: pointer to the pointer that will be set to previous vm_area_struct
612fb8090b6SLiam R. Howlett  * @rb_link: the rb_node
613fb8090b6SLiam R. Howlett  * @rb_parent: the parent rb_node
614fb8090b6SLiam R. Howlett  *
615fb8090b6SLiam R. Howlett  * Find all the vm_area_struct that overlap from @start to
616fb8090b6SLiam R. Howlett  * @end and munmap them.  Set @pprev to the previous vm_area_struct.
617fb8090b6SLiam R. Howlett  *
618fb8090b6SLiam R. Howlett  * Returns: -ENOMEM on munmap failure or 0 on success.
619fb8090b6SLiam R. Howlett  */
620fb8090b6SLiam R. Howlett static inline int
621fb8090b6SLiam R. Howlett munmap_vma_range(struct mm_struct *mm, unsigned long start, unsigned long len,
622fb8090b6SLiam R. Howlett 		 struct vm_area_struct **pprev, struct rb_node ***link,
623fb8090b6SLiam R. Howlett 		 struct rb_node **parent, struct list_head *uf)
624fb8090b6SLiam R. Howlett {
625fb8090b6SLiam R. Howlett 
626fb8090b6SLiam R. Howlett 	while (find_vma_links(mm, start, start + len, pprev, link, parent))
627fb8090b6SLiam R. Howlett 		if (do_munmap(mm, start, len, uf))
628fb8090b6SLiam R. Howlett 			return -ENOMEM;
629fb8090b6SLiam R. Howlett 
630fb8090b6SLiam R. Howlett 	return 0;
631fb8090b6SLiam R. Howlett }
632e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm,
633e8420a8eSCyril Hrubis 		unsigned long addr, unsigned long end)
634e8420a8eSCyril Hrubis {
635e8420a8eSCyril Hrubis 	unsigned long nr_pages = 0;
636e8420a8eSCyril Hrubis 	struct vm_area_struct *vma;
637e8420a8eSCyril Hrubis 
638f0953a1bSIngo Molnar 	/* Find first overlapping mapping */
639e8420a8eSCyril Hrubis 	vma = find_vma_intersection(mm, addr, end);
640e8420a8eSCyril Hrubis 	if (!vma)
641e8420a8eSCyril Hrubis 		return 0;
642e8420a8eSCyril Hrubis 
643e8420a8eSCyril Hrubis 	nr_pages = (min(end, vma->vm_end) -
644e8420a8eSCyril Hrubis 		max(addr, vma->vm_start)) >> PAGE_SHIFT;
645e8420a8eSCyril Hrubis 
646e8420a8eSCyril Hrubis 	/* Iterate over the rest of the overlaps */
647e8420a8eSCyril Hrubis 	for (vma = vma->vm_next; vma; vma = vma->vm_next) {
648e8420a8eSCyril Hrubis 		unsigned long overlap_len;
649e8420a8eSCyril Hrubis 
650e8420a8eSCyril Hrubis 		if (vma->vm_start > end)
651e8420a8eSCyril Hrubis 			break;
652e8420a8eSCyril Hrubis 
653e8420a8eSCyril Hrubis 		overlap_len = min(end, vma->vm_end) - vma->vm_start;
654e8420a8eSCyril Hrubis 		nr_pages += overlap_len >> PAGE_SHIFT;
655e8420a8eSCyril Hrubis 	}
656e8420a8eSCyril Hrubis 
657e8420a8eSCyril Hrubis 	return nr_pages;
658e8420a8eSCyril Hrubis }
659e8420a8eSCyril Hrubis 
6601da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
6611da177e4SLinus Torvalds 		struct rb_node **rb_link, struct rb_node *rb_parent)
6621da177e4SLinus Torvalds {
663d3737187SMichel Lespinasse 	/* Update tracking information for the gap following the new vma. */
664d3737187SMichel Lespinasse 	if (vma->vm_next)
665d3737187SMichel Lespinasse 		vma_gap_update(vma->vm_next);
666d3737187SMichel Lespinasse 	else
6671be7107fSHugh Dickins 		mm->highest_vm_end = vm_end_gap(vma);
668d3737187SMichel Lespinasse 
669d3737187SMichel Lespinasse 	/*
670d3737187SMichel Lespinasse 	 * vma->vm_prev wasn't known when we followed the rbtree to find the
671d3737187SMichel Lespinasse 	 * correct insertion point for that vma. As a result, we could not
672d3737187SMichel Lespinasse 	 * update the vma vm_rb parents rb_subtree_gap values on the way down.
673d3737187SMichel Lespinasse 	 * So, we first insert the vma with a zero rb_subtree_gap value
674d3737187SMichel Lespinasse 	 * (to be consistent with what we did on the way down), and then
675d3737187SMichel Lespinasse 	 * immediately update the gap to the correct value. Finally we
676d3737187SMichel Lespinasse 	 * rebalance the rbtree after all augmented values have been set.
677d3737187SMichel Lespinasse 	 */
6781da177e4SLinus Torvalds 	rb_link_node(&vma->vm_rb, rb_parent, rb_link);
679d3737187SMichel Lespinasse 	vma->rb_subtree_gap = 0;
680d3737187SMichel Lespinasse 	vma_gap_update(vma);
681d3737187SMichel Lespinasse 	vma_rb_insert(vma, &mm->mm_rb);
6821da177e4SLinus Torvalds }
6831da177e4SLinus Torvalds 
684cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma)
6851da177e4SLinus Torvalds {
6861da177e4SLinus Torvalds 	struct file *file;
6871da177e4SLinus Torvalds 
6881da177e4SLinus Torvalds 	file = vma->vm_file;
6891da177e4SLinus Torvalds 	if (file) {
6901da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
6911da177e4SLinus Torvalds 
6921da177e4SLinus Torvalds 		if (vma->vm_flags & VM_SHARED)
693cf508b58SMiaohe Lin 			mapping_allow_writable(mapping);
6941da177e4SLinus Torvalds 
6951da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
6966b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, &mapping->i_mmap);
6971da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
6981da177e4SLinus Torvalds 	}
6991da177e4SLinus Torvalds }
7001da177e4SLinus Torvalds 
701*d4af56c5SLiam R. Howlett /*
702*d4af56c5SLiam R. Howlett  * vma_mas_store() - Store a VMA in the maple tree.
703*d4af56c5SLiam R. Howlett  * @vma: The vm_area_struct
704*d4af56c5SLiam R. Howlett  * @mas: The maple state
705*d4af56c5SLiam R. Howlett  *
706*d4af56c5SLiam R. Howlett  * Efficient way to store a VMA in the maple tree when the @mas has already
707*d4af56c5SLiam R. Howlett  * walked to the correct location.
708*d4af56c5SLiam R. Howlett  *
709*d4af56c5SLiam R. Howlett  * Note: the end address is inclusive in the maple tree.
710*d4af56c5SLiam R. Howlett  */
711*d4af56c5SLiam R. Howlett void vma_mas_store(struct vm_area_struct *vma, struct ma_state *mas)
712*d4af56c5SLiam R. Howlett {
713*d4af56c5SLiam R. Howlett 	trace_vma_store(mas->tree, vma);
714*d4af56c5SLiam R. Howlett 	mas_set_range(mas, vma->vm_start, vma->vm_end - 1);
715*d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, vma);
716*d4af56c5SLiam R. Howlett }
717*d4af56c5SLiam R. Howlett 
718*d4af56c5SLiam R. Howlett /*
719*d4af56c5SLiam R. Howlett  * vma_mas_remove() - Remove a VMA from the maple tree.
720*d4af56c5SLiam R. Howlett  * @vma: The vm_area_struct
721*d4af56c5SLiam R. Howlett  * @mas: The maple state
722*d4af56c5SLiam R. Howlett  *
723*d4af56c5SLiam R. Howlett  * Efficient way to remove a VMA from the maple tree when the @mas has already
724*d4af56c5SLiam R. Howlett  * been established and points to the correct location.
725*d4af56c5SLiam R. Howlett  * Note: the end address is inclusive in the maple tree.
726*d4af56c5SLiam R. Howlett  */
727*d4af56c5SLiam R. Howlett void vma_mas_remove(struct vm_area_struct *vma, struct ma_state *mas)
728*d4af56c5SLiam R. Howlett {
729*d4af56c5SLiam R. Howlett 	trace_vma_mas_szero(mas->tree, vma->vm_start, vma->vm_end - 1);
730*d4af56c5SLiam R. Howlett 	mas->index = vma->vm_start;
731*d4af56c5SLiam R. Howlett 	mas->last = vma->vm_end - 1;
732*d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, NULL);
733*d4af56c5SLiam R. Howlett }
734*d4af56c5SLiam R. Howlett 
735*d4af56c5SLiam R. Howlett /*
736*d4af56c5SLiam R. Howlett  * vma_mas_szero() - Set a given range to zero.  Used when modifying a
737*d4af56c5SLiam R. Howlett  * vm_area_struct start or end.
738*d4af56c5SLiam R. Howlett  *
739*d4af56c5SLiam R. Howlett  * @mm: The struct_mm
740*d4af56c5SLiam R. Howlett  * @start: The start address to zero
741*d4af56c5SLiam R. Howlett  * @end: The end address to zero.
742*d4af56c5SLiam R. Howlett  */
743*d4af56c5SLiam R. Howlett static inline void vma_mas_szero(struct ma_state *mas, unsigned long start,
744*d4af56c5SLiam R. Howlett 				unsigned long end)
745*d4af56c5SLiam R. Howlett {
746*d4af56c5SLiam R. Howlett 	trace_vma_mas_szero(mas->tree, start, end - 1);
747*d4af56c5SLiam R. Howlett 	mas_set_range(mas, start, end - 1);
748*d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, NULL);
749*d4af56c5SLiam R. Howlett }
750*d4af56c5SLiam R. Howlett 
7511da177e4SLinus Torvalds static void
7521da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
7531da177e4SLinus Torvalds 	struct vm_area_struct *prev, struct rb_node **rb_link,
7541da177e4SLinus Torvalds 	struct rb_node *rb_parent)
7551da177e4SLinus Torvalds {
756aba6dfb7SWei Yang 	__vma_link_list(mm, vma, prev);
7571da177e4SLinus Torvalds 	__vma_link_rb(mm, vma, rb_link, rb_parent);
7581da177e4SLinus Torvalds }
7591da177e4SLinus Torvalds 
760*d4af56c5SLiam R. Howlett static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
7611da177e4SLinus Torvalds 			struct vm_area_struct *prev, struct rb_node **rb_link,
7621da177e4SLinus Torvalds 			struct rb_node *rb_parent)
7631da177e4SLinus Torvalds {
764*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
7651da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
7661da177e4SLinus Torvalds 
767*d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
768*d4af56c5SLiam R. Howlett 		return -ENOMEM;
769*d4af56c5SLiam R. Howlett 
77064ac4940SHuang Shijie 	if (vma->vm_file) {
7711da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
77283cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
77364ac4940SHuang Shijie 	}
7741da177e4SLinus Torvalds 
775*d4af56c5SLiam R. Howlett 	vma_mas_store(vma, &mas);
7761da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
7771da177e4SLinus Torvalds 	__vma_link_file(vma);
7781da177e4SLinus Torvalds 
7791da177e4SLinus Torvalds 	if (mapping)
78083cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
7811da177e4SLinus Torvalds 
7821da177e4SLinus Torvalds 	mm->map_count++;
7831da177e4SLinus Torvalds 	validate_mm(mm);
784*d4af56c5SLiam R. Howlett 	return 0;
7851da177e4SLinus Torvalds }
7861da177e4SLinus Torvalds 
7871da177e4SLinus Torvalds /*
78888f6b4c3SKautuk Consul  * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
7896b2dbba8SMichel Lespinasse  * mm's list and rbtree.  It has already been inserted into the interval tree.
7901da177e4SLinus Torvalds  */
791*d4af56c5SLiam R. Howlett static void __insert_vm_struct(struct mm_struct *mm, struct ma_state *mas,
792*d4af56c5SLiam R. Howlett 			       struct vm_area_struct *vma)
7931da177e4SLinus Torvalds {
7946597d783SHugh Dickins 	struct vm_area_struct *prev;
7951da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
7961da177e4SLinus Torvalds 
7976597d783SHugh Dickins 	if (find_vma_links(mm, vma->vm_start, vma->vm_end,
7986597d783SHugh Dickins 			   &prev, &rb_link, &rb_parent))
7996597d783SHugh Dickins 		BUG();
800*d4af56c5SLiam R. Howlett 
801*d4af56c5SLiam R. Howlett 	vma_mas_store(vma, mas);
802*d4af56c5SLiam R. Howlett 	__vma_link_list(mm, vma, prev);
803*d4af56c5SLiam R. Howlett 	__vma_link_rb(mm, vma, rb_link, rb_parent);
8041da177e4SLinus Torvalds 	mm->map_count++;
8051da177e4SLinus Torvalds }
8061da177e4SLinus Torvalds 
8077c61f917SWei Yang static __always_inline void __vma_unlink(struct mm_struct *mm,
808e86f15eeSAndrea Arcangeli 						struct vm_area_struct *vma,
8098f26e0b1SAndrea Arcangeli 						struct vm_area_struct *ignore)
8101da177e4SLinus Torvalds {
8118f26e0b1SAndrea Arcangeli 	vma_rb_erase_ignore(vma, &mm->mm_rb, ignore);
8121b9fc5b2SWei Yang 	__vma_unlink_list(mm, vma);
813615d6e87SDavidlohr Bueso 	/* Kill the cache */
814615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
8151da177e4SLinus Torvalds }
8161da177e4SLinus Torvalds 
8171da177e4SLinus Torvalds /*
8181da177e4SLinus Torvalds  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
8191da177e4SLinus Torvalds  * is already present in an i_mmap tree without adjusting the tree.
8201da177e4SLinus Torvalds  * The following helper function should be used when such adjustments
8211da177e4SLinus Torvalds  * are necessary.  The "insert" vma (if any) is to be inserted
8221da177e4SLinus Torvalds  * before we drop the necessary locks.
8231da177e4SLinus Torvalds  */
824e86f15eeSAndrea Arcangeli int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
825e86f15eeSAndrea Arcangeli 	unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
826e86f15eeSAndrea Arcangeli 	struct vm_area_struct *expand)
8271da177e4SLinus Torvalds {
8281da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
829e86f15eeSAndrea Arcangeli 	struct vm_area_struct *next = vma->vm_next, *orig_vma = vma;
830*d4af56c5SLiam R. Howlett 	struct vm_area_struct *next_next;
8311da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
832f808c13fSDavidlohr Bueso 	struct rb_root_cached *root = NULL;
833012f1800SRik van Riel 	struct anon_vma *anon_vma = NULL;
8341da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
835d3737187SMichel Lespinasse 	bool start_changed = false, end_changed = false;
8361da177e4SLinus Torvalds 	long adjust_next = 0;
8371da177e4SLinus Torvalds 	int remove_next = 0;
838*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
839734537c9SKirill A. Shutemov 	struct vm_area_struct *exporter = NULL, *importer = NULL;
840287d97acSLinus Torvalds 
841*d4af56c5SLiam R. Howlett 	validate_mm(mm);
842*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
843*d4af56c5SLiam R. Howlett 
844*d4af56c5SLiam R. Howlett 	if (next && !insert) {
8451da177e4SLinus Torvalds 		if (end >= next->vm_end) {
8461da177e4SLinus Torvalds 			/*
8471da177e4SLinus Torvalds 			 * vma expands, overlapping all the next, and
8481da177e4SLinus Torvalds 			 * perhaps the one after too (mprotect case 6).
84986d12e47SAndrea Arcangeli 			 * The only other cases that gets here are
850e86f15eeSAndrea Arcangeli 			 * case 1, case 7 and case 8.
851e86f15eeSAndrea Arcangeli 			 */
852e86f15eeSAndrea Arcangeli 			if (next == expand) {
853e86f15eeSAndrea Arcangeli 				/*
854e86f15eeSAndrea Arcangeli 				 * The only case where we don't expand "vma"
855e86f15eeSAndrea Arcangeli 				 * and we expand "next" instead is case 8.
856e86f15eeSAndrea Arcangeli 				 */
857e86f15eeSAndrea Arcangeli 				VM_WARN_ON(end != next->vm_end);
858e86f15eeSAndrea Arcangeli 				/*
859e86f15eeSAndrea Arcangeli 				 * remove_next == 3 means we're
860e86f15eeSAndrea Arcangeli 				 * removing "vma" and that to do so we
861e86f15eeSAndrea Arcangeli 				 * swapped "vma" and "next".
862e86f15eeSAndrea Arcangeli 				 */
863e86f15eeSAndrea Arcangeli 				remove_next = 3;
864e86f15eeSAndrea Arcangeli 				VM_WARN_ON(file != next->vm_file);
865e86f15eeSAndrea Arcangeli 				swap(vma, next);
866e86f15eeSAndrea Arcangeli 			} else {
867e86f15eeSAndrea Arcangeli 				VM_WARN_ON(expand != vma);
868e86f15eeSAndrea Arcangeli 				/*
869e86f15eeSAndrea Arcangeli 				 * case 1, 6, 7, remove_next == 2 is case 6,
870e86f15eeSAndrea Arcangeli 				 * remove_next == 1 is case 1 or 7.
8711da177e4SLinus Torvalds 				 */
872734537c9SKirill A. Shutemov 				remove_next = 1 + (end > next->vm_end);
873*d4af56c5SLiam R. Howlett 				if (remove_next == 2)
874*d4af56c5SLiam R. Howlett 					next_next = find_vma(mm, next->vm_end);
875*d4af56c5SLiam R. Howlett 
876e86f15eeSAndrea Arcangeli 				VM_WARN_ON(remove_next == 2 &&
877e86f15eeSAndrea Arcangeli 					   end != next->vm_next->vm_end);
878e86f15eeSAndrea Arcangeli 			}
879e86f15eeSAndrea Arcangeli 
880287d97acSLinus Torvalds 			exporter = next;
8811da177e4SLinus Torvalds 			importer = vma;
882734537c9SKirill A. Shutemov 
883734537c9SKirill A. Shutemov 			/*
884734537c9SKirill A. Shutemov 			 * If next doesn't have anon_vma, import from vma after
885734537c9SKirill A. Shutemov 			 * next, if the vma overlaps with it.
886734537c9SKirill A. Shutemov 			 */
88797a42cd4SAndrea Arcangeli 			if (remove_next == 2 && !next->anon_vma)
888734537c9SKirill A. Shutemov 				exporter = next->vm_next;
889734537c9SKirill A. Shutemov 
8901da177e4SLinus Torvalds 		} else if (end > next->vm_start) {
8911da177e4SLinus Torvalds 			/*
8921da177e4SLinus Torvalds 			 * vma expands, overlapping part of the next:
8931da177e4SLinus Torvalds 			 * mprotect case 5 shifting the boundary up.
8941da177e4SLinus Torvalds 			 */
895f9d86a60SWei Yang 			adjust_next = (end - next->vm_start);
896287d97acSLinus Torvalds 			exporter = next;
8971da177e4SLinus Torvalds 			importer = vma;
898e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
8991da177e4SLinus Torvalds 		} else if (end < vma->vm_end) {
9001da177e4SLinus Torvalds 			/*
9011da177e4SLinus Torvalds 			 * vma shrinks, and !insert tells it's not
9021da177e4SLinus Torvalds 			 * split_vma inserting another: so it must be
9031da177e4SLinus Torvalds 			 * mprotect case 4 shifting the boundary down.
9041da177e4SLinus Torvalds 			 */
905f9d86a60SWei Yang 			adjust_next = -(vma->vm_end - end);
906287d97acSLinus Torvalds 			exporter = vma;
9071da177e4SLinus Torvalds 			importer = next;
908e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
9091da177e4SLinus Torvalds 		}
9101da177e4SLinus Torvalds 
9115beb4930SRik van Riel 		/*
9125beb4930SRik van Riel 		 * Easily overlooked: when mprotect shifts the boundary,
9135beb4930SRik van Riel 		 * make sure the expanding vma has anon_vma set if the
9145beb4930SRik van Riel 		 * shrinking vma had, to cover any anon pages imported.
9155beb4930SRik van Riel 		 */
916287d97acSLinus Torvalds 		if (exporter && exporter->anon_vma && !importer->anon_vma) {
917c4ea95d7SDaniel Forrest 			int error;
918c4ea95d7SDaniel Forrest 
919287d97acSLinus Torvalds 			importer->anon_vma = exporter->anon_vma;
920b800c91aSKonstantin Khlebnikov 			error = anon_vma_clone(importer, exporter);
9213fe89b3eSLeon Yu 			if (error)
922b800c91aSKonstantin Khlebnikov 				return error;
923b800c91aSKonstantin Khlebnikov 		}
9245beb4930SRik van Riel 	}
92537f9f559SKirill A. Shutemov 
926*d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
927*d4af56c5SLiam R. Howlett 		return -ENOMEM;
928*d4af56c5SLiam R. Howlett 
929*d4af56c5SLiam R. Howlett 	vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
9301da177e4SLinus Torvalds 	if (file) {
9311da177e4SLinus Torvalds 		mapping = file->f_mapping;
9321da177e4SLinus Torvalds 		root = &mapping->i_mmap;
933cbc91f71SSrikar Dronamraju 		uprobe_munmap(vma, vma->vm_start, vma->vm_end);
934682968e0SSrikar Dronamraju 
935682968e0SSrikar Dronamraju 		if (adjust_next)
93627ba0644SKirill A. Shutemov 			uprobe_munmap(next, next->vm_start, next->vm_end);
937682968e0SSrikar Dronamraju 
93883cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
9391da177e4SLinus Torvalds 		if (insert) {
9401da177e4SLinus Torvalds 			/*
9416b2dbba8SMichel Lespinasse 			 * Put into interval tree now, so instantiated pages
9421da177e4SLinus Torvalds 			 * are visible to arm/parisc __flush_dcache_page
9431da177e4SLinus Torvalds 			 * throughout; but we cannot insert into address
9441da177e4SLinus Torvalds 			 * space until vma start or end is updated.
9451da177e4SLinus Torvalds 			 */
9461da177e4SLinus Torvalds 			__vma_link_file(insert);
9471da177e4SLinus Torvalds 		}
9481da177e4SLinus Torvalds 	}
9491da177e4SLinus Torvalds 
950012f1800SRik van Riel 	anon_vma = vma->anon_vma;
951bf181b9fSMichel Lespinasse 	if (!anon_vma && adjust_next)
952bf181b9fSMichel Lespinasse 		anon_vma = next->anon_vma;
953bf181b9fSMichel Lespinasse 	if (anon_vma) {
954e86f15eeSAndrea Arcangeli 		VM_WARN_ON(adjust_next && next->anon_vma &&
955e86f15eeSAndrea Arcangeli 			   anon_vma != next->anon_vma);
9564fc3f1d6SIngo Molnar 		anon_vma_lock_write(anon_vma);
957bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_pre_update_vma(vma);
958bf181b9fSMichel Lespinasse 		if (adjust_next)
959bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_pre_update_vma(next);
960bf181b9fSMichel Lespinasse 	}
961012f1800SRik van Riel 
9620fc48a6eSWei Yang 	if (file) {
9631da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
9646b2dbba8SMichel Lespinasse 		vma_interval_tree_remove(vma, root);
9651da177e4SLinus Torvalds 		if (adjust_next)
9666b2dbba8SMichel Lespinasse 			vma_interval_tree_remove(next, root);
9671da177e4SLinus Torvalds 	}
9681da177e4SLinus Torvalds 
969d3737187SMichel Lespinasse 	if (start != vma->vm_start) {
970*d4af56c5SLiam R. Howlett 		unsigned long old_start = vma->vm_start;
9711da177e4SLinus Torvalds 		vma->vm_start = start;
972*d4af56c5SLiam R. Howlett 		if (old_start < start)
973*d4af56c5SLiam R. Howlett 			vma_mas_szero(&mas, old_start, start);
974d3737187SMichel Lespinasse 		start_changed = true;
975d3737187SMichel Lespinasse 	}
976d3737187SMichel Lespinasse 	if (end != vma->vm_end) {
977*d4af56c5SLiam R. Howlett 		unsigned long old_end = vma->vm_end;
9781da177e4SLinus Torvalds 		vma->vm_end = end;
979*d4af56c5SLiam R. Howlett 		if (old_end > end)
980*d4af56c5SLiam R. Howlett 			vma_mas_szero(&mas, end, old_end);
981d3737187SMichel Lespinasse 		end_changed = true;
982d3737187SMichel Lespinasse 	}
983*d4af56c5SLiam R. Howlett 
984*d4af56c5SLiam R. Howlett 	if (end_changed || start_changed)
985*d4af56c5SLiam R. Howlett 		vma_mas_store(vma, &mas);
986*d4af56c5SLiam R. Howlett 
9871da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
9881da177e4SLinus Torvalds 	if (adjust_next) {
989f9d86a60SWei Yang 		next->vm_start += adjust_next;
990f9d86a60SWei Yang 		next->vm_pgoff += adjust_next >> PAGE_SHIFT;
991*d4af56c5SLiam R. Howlett 		vma_mas_store(next, &mas);
9921da177e4SLinus Torvalds 	}
9931da177e4SLinus Torvalds 
9940fc48a6eSWei Yang 	if (file) {
9951da177e4SLinus Torvalds 		if (adjust_next)
9966b2dbba8SMichel Lespinasse 			vma_interval_tree_insert(next, root);
9976b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, root);
9981da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
9991da177e4SLinus Torvalds 	}
10001da177e4SLinus Torvalds 
10011da177e4SLinus Torvalds 	if (remove_next) {
10021da177e4SLinus Torvalds 		/*
10031da177e4SLinus Torvalds 		 * vma_merge has merged next into vma, and needs
10041da177e4SLinus Torvalds 		 * us to remove next before dropping the locks.
1005*d4af56c5SLiam R. Howlett 		 * Since we have expanded over this vma, the maple tree will
1006*d4af56c5SLiam R. Howlett 		 * have overwritten by storing the value
10071da177e4SLinus Torvalds 		 */
1008*d4af56c5SLiam R. Howlett 		if (remove_next != 3) {
10097c61f917SWei Yang 			__vma_unlink(mm, next, next);
1010*d4af56c5SLiam R. Howlett 			if (remove_next == 2)
1011*d4af56c5SLiam R. Howlett 				__vma_unlink(mm, next_next, next_next);
1012*d4af56c5SLiam R. Howlett 		} else {
10138f26e0b1SAndrea Arcangeli 			/*
10148f26e0b1SAndrea Arcangeli 			 * vma is not before next if they've been
10158f26e0b1SAndrea Arcangeli 			 * swapped.
10168f26e0b1SAndrea Arcangeli 			 *
10178f26e0b1SAndrea Arcangeli 			 * pre-swap() next->vm_start was reduced so
10188f26e0b1SAndrea Arcangeli 			 * tell validate_mm_rb to ignore pre-swap()
10198f26e0b1SAndrea Arcangeli 			 * "next" (which is stored in post-swap()
10208f26e0b1SAndrea Arcangeli 			 * "vma").
10218f26e0b1SAndrea Arcangeli 			 */
10227c61f917SWei Yang 			__vma_unlink(mm, next, vma);
1023*d4af56c5SLiam R. Howlett 		}
1024*d4af56c5SLiam R. Howlett 		if (file) {
10251da177e4SLinus Torvalds 			__remove_shared_vm_struct(next, file, mapping);
1026*d4af56c5SLiam R. Howlett 			if (remove_next == 2)
1027*d4af56c5SLiam R. Howlett 				__remove_shared_vm_struct(next_next, file, mapping);
1028*d4af56c5SLiam R. Howlett 		}
10291da177e4SLinus Torvalds 	} else if (insert) {
10301da177e4SLinus Torvalds 		/*
10311da177e4SLinus Torvalds 		 * split_vma has split insert from vma, and needs
10321da177e4SLinus Torvalds 		 * us to insert it before dropping the locks
10331da177e4SLinus Torvalds 		 * (it may either follow vma or precede it).
10341da177e4SLinus Torvalds 		 */
1035*d4af56c5SLiam R. Howlett 		__insert_vm_struct(mm, &mas, insert);
1036d3737187SMichel Lespinasse 	} else {
1037d3737187SMichel Lespinasse 		if (start_changed)
1038d3737187SMichel Lespinasse 			vma_gap_update(vma);
1039d3737187SMichel Lespinasse 		if (end_changed) {
1040d3737187SMichel Lespinasse 			if (!next)
10411be7107fSHugh Dickins 				mm->highest_vm_end = vm_end_gap(vma);
1042d3737187SMichel Lespinasse 			else if (!adjust_next)
1043d3737187SMichel Lespinasse 				vma_gap_update(next);
1044d3737187SMichel Lespinasse 		}
10451da177e4SLinus Torvalds 	}
10461da177e4SLinus Torvalds 
1047bf181b9fSMichel Lespinasse 	if (anon_vma) {
1048bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_post_update_vma(vma);
1049bf181b9fSMichel Lespinasse 		if (adjust_next)
1050bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_post_update_vma(next);
105108b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
1052bf181b9fSMichel Lespinasse 	}
10531da177e4SLinus Torvalds 
10540fc48a6eSWei Yang 	if (file) {
1055808fbdbeSWei Yang 		i_mmap_unlock_write(mapping);
10567b2d81d4SIngo Molnar 		uprobe_mmap(vma);
10572b144498SSrikar Dronamraju 
10582b144498SSrikar Dronamraju 		if (adjust_next)
10597b2d81d4SIngo Molnar 			uprobe_mmap(next);
10602b144498SSrikar Dronamraju 	}
10612b144498SSrikar Dronamraju 
10621da177e4SLinus Torvalds 	if (remove_next) {
1063*d4af56c5SLiam R. Howlett again:
1064925d1c40SMatt Helsley 		if (file) {
1065cbc91f71SSrikar Dronamraju 			uprobe_munmap(next, next->vm_start, next->vm_end);
10661da177e4SLinus Torvalds 			fput(file);
1067925d1c40SMatt Helsley 		}
10685beb4930SRik van Riel 		if (next->anon_vma)
10695beb4930SRik van Riel 			anon_vma_merge(vma, next);
10701da177e4SLinus Torvalds 		mm->map_count--;
10713964acd0SOleg Nesterov 		mpol_put(vma_policy(next));
10723928d4f5SLinus Torvalds 		vm_area_free(next);
10731da177e4SLinus Torvalds 		/*
10741da177e4SLinus Torvalds 		 * In mprotect's case 6 (see comments on vma_merge),
10751da177e4SLinus Torvalds 		 * we must remove another next too. It would clutter
10761da177e4SLinus Torvalds 		 * up the code too much to do both in one go.
10771da177e4SLinus Torvalds 		 */
1078e86f15eeSAndrea Arcangeli 		if (remove_next != 3) {
1079e86f15eeSAndrea Arcangeli 			/*
1080e86f15eeSAndrea Arcangeli 			 * If "next" was removed and vma->vm_end was
1081e86f15eeSAndrea Arcangeli 			 * expanded (up) over it, in turn
1082e86f15eeSAndrea Arcangeli 			 * "next->vm_prev->vm_end" changed and the
1083e86f15eeSAndrea Arcangeli 			 * "vma->vm_next" gap must be updated.
1084e86f15eeSAndrea Arcangeli 			 */
1085*d4af56c5SLiam R. Howlett 			next = next_next;
1086e86f15eeSAndrea Arcangeli 		} else {
1087e86f15eeSAndrea Arcangeli 			/*
1088e86f15eeSAndrea Arcangeli 			 * For the scope of the comment "next" and
1089e86f15eeSAndrea Arcangeli 			 * "vma" considered pre-swap(): if "vma" was
1090e86f15eeSAndrea Arcangeli 			 * removed, next->vm_start was expanded (down)
1091e86f15eeSAndrea Arcangeli 			 * over it and the "next" gap must be updated.
1092e86f15eeSAndrea Arcangeli 			 * Because of the swap() the post-swap() "vma"
1093e86f15eeSAndrea Arcangeli 			 * actually points to pre-swap() "next"
1094e86f15eeSAndrea Arcangeli 			 * (post-swap() "next" as opposed is now a
1095e86f15eeSAndrea Arcangeli 			 * dangling pointer).
1096e86f15eeSAndrea Arcangeli 			 */
1097e86f15eeSAndrea Arcangeli 			next = vma;
1098e86f15eeSAndrea Arcangeli 		}
1099734537c9SKirill A. Shutemov 		if (remove_next == 2) {
1100734537c9SKirill A. Shutemov 			remove_next = 1;
11011da177e4SLinus Torvalds 			goto again;
1102734537c9SKirill A. Shutemov 		}
1103d3737187SMichel Lespinasse 		else if (next)
1104d3737187SMichel Lespinasse 			vma_gap_update(next);
1105fb8c41e9SAndrea Arcangeli 		else {
1106fb8c41e9SAndrea Arcangeli 			/*
1107fb8c41e9SAndrea Arcangeli 			 * If remove_next == 2 we obviously can't
1108fb8c41e9SAndrea Arcangeli 			 * reach this path.
1109fb8c41e9SAndrea Arcangeli 			 *
1110fb8c41e9SAndrea Arcangeli 			 * If remove_next == 3 we can't reach this
1111fb8c41e9SAndrea Arcangeli 			 * path because pre-swap() next is always not
1112fb8c41e9SAndrea Arcangeli 			 * NULL. pre-swap() "next" is not being
1113fb8c41e9SAndrea Arcangeli 			 * removed and its next->vm_end is not altered
1114fb8c41e9SAndrea Arcangeli 			 * (and furthermore "end" already matches
1115fb8c41e9SAndrea Arcangeli 			 * next->vm_end in remove_next == 3).
1116fb8c41e9SAndrea Arcangeli 			 *
1117fb8c41e9SAndrea Arcangeli 			 * We reach this only in the remove_next == 1
1118fb8c41e9SAndrea Arcangeli 			 * case if the "next" vma that was removed was
1119fb8c41e9SAndrea Arcangeli 			 * the highest vma of the mm. However in such
1120fb8c41e9SAndrea Arcangeli 			 * case next->vm_end == "end" and the extended
1121fb8c41e9SAndrea Arcangeli 			 * "vma" has vma->vm_end == next->vm_end so
1122fb8c41e9SAndrea Arcangeli 			 * mm->highest_vm_end doesn't need any update
1123fb8c41e9SAndrea Arcangeli 			 * in remove_next == 1 case.
1124fb8c41e9SAndrea Arcangeli 			 */
11251be7107fSHugh Dickins 			VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma));
1126fb8c41e9SAndrea Arcangeli 		}
11271da177e4SLinus Torvalds 	}
11282b144498SSrikar Dronamraju 	if (insert && file)
11297b2d81d4SIngo Molnar 		uprobe_mmap(insert);
11301da177e4SLinus Torvalds 
11311da177e4SLinus Torvalds 	validate_mm(mm);
1132*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
11335beb4930SRik van Riel 
11345beb4930SRik van Riel 	return 0;
11351da177e4SLinus Torvalds }
11361da177e4SLinus Torvalds 
11371da177e4SLinus Torvalds /*
11381da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
11391da177e4SLinus Torvalds  * per-vma resources, so we don't attempt to merge those.
11401da177e4SLinus Torvalds  */
11411da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma,
114219a809afSAndrea Arcangeli 				struct file *file, unsigned long vm_flags,
11439a10064fSColin Cross 				struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
11445c26f6acSSuren Baghdasaryan 				struct anon_vma_name *anon_name)
11451da177e4SLinus Torvalds {
114634228d47SCyrill Gorcunov 	/*
114734228d47SCyrill Gorcunov 	 * VM_SOFTDIRTY should not prevent from VMA merging, if we
114834228d47SCyrill Gorcunov 	 * match the flags but dirty bit -- the caller should mark
114934228d47SCyrill Gorcunov 	 * merged VMA as dirty. If dirty bit won't be excluded from
11508bb4e7a2SWei Yang 	 * comparison, we increase pressure on the memory system forcing
115134228d47SCyrill Gorcunov 	 * the kernel to generate new VMAs when old one could be
115234228d47SCyrill Gorcunov 	 * extended instead.
115334228d47SCyrill Gorcunov 	 */
115434228d47SCyrill Gorcunov 	if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
11551da177e4SLinus Torvalds 		return 0;
11561da177e4SLinus Torvalds 	if (vma->vm_file != file)
11571da177e4SLinus Torvalds 		return 0;
11581da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
11591da177e4SLinus Torvalds 		return 0;
116019a809afSAndrea Arcangeli 	if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
116119a809afSAndrea Arcangeli 		return 0;
11625c26f6acSSuren Baghdasaryan 	if (!anon_vma_name_eq(anon_vma_name(vma), anon_name))
11639a10064fSColin Cross 		return 0;
11641da177e4SLinus Torvalds 	return 1;
11651da177e4SLinus Torvalds }
11661da177e4SLinus Torvalds 
11671da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
1168965f55deSShaohua Li 					struct anon_vma *anon_vma2,
1169965f55deSShaohua Li 					struct vm_area_struct *vma)
11701da177e4SLinus Torvalds {
1171965f55deSShaohua Li 	/*
1172965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
1173965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
1174965f55deSShaohua Li 	 */
1175965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
1176965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
1177965f55deSShaohua Li 		return 1;
1178965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
11791da177e4SLinus Torvalds }
11801da177e4SLinus Torvalds 
11811da177e4SLinus Torvalds /*
11821da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
11831da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
11841da177e4SLinus Torvalds  *
11851da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
11861da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
11871da177e4SLinus Torvalds  *
11881da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
118945e55300SPeter Collingbourne  * indices (16TB on ia32) because do_mmap() does not permit mmap's which
11901da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
11911da177e4SLinus Torvalds  */
11921da177e4SLinus Torvalds static int
11931da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
119419a809afSAndrea Arcangeli 		     struct anon_vma *anon_vma, struct file *file,
119519a809afSAndrea Arcangeli 		     pgoff_t vm_pgoff,
11969a10064fSColin Cross 		     struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
11975c26f6acSSuren Baghdasaryan 		     struct anon_vma_name *anon_name)
11981da177e4SLinus Torvalds {
11999a10064fSColin Cross 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
1200965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
12011da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
12021da177e4SLinus Torvalds 			return 1;
12031da177e4SLinus Torvalds 	}
12041da177e4SLinus Torvalds 	return 0;
12051da177e4SLinus Torvalds }
12061da177e4SLinus Torvalds 
12071da177e4SLinus Torvalds /*
12081da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
12091da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
12101da177e4SLinus Torvalds  *
12111da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
12121da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
12131da177e4SLinus Torvalds  */
12141da177e4SLinus Torvalds static int
12151da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
121619a809afSAndrea Arcangeli 		    struct anon_vma *anon_vma, struct file *file,
121719a809afSAndrea Arcangeli 		    pgoff_t vm_pgoff,
12189a10064fSColin Cross 		    struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
12195c26f6acSSuren Baghdasaryan 		    struct anon_vma_name *anon_name)
12201da177e4SLinus Torvalds {
12219a10064fSColin Cross 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
1222965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
12231da177e4SLinus Torvalds 		pgoff_t vm_pglen;
1224d6e93217SLibin 		vm_pglen = vma_pages(vma);
12251da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
12261da177e4SLinus Torvalds 			return 1;
12271da177e4SLinus Torvalds 	}
12281da177e4SLinus Torvalds 	return 0;
12291da177e4SLinus Torvalds }
12301da177e4SLinus Torvalds 
12311da177e4SLinus Torvalds /*
12329a10064fSColin Cross  * Given a mapping request (addr,end,vm_flags,file,pgoff,anon_name),
12339a10064fSColin Cross  * figure out whether that can be merged with its predecessor or its
12349a10064fSColin Cross  * successor.  Or both (it neatly fills a hole).
12351da177e4SLinus Torvalds  *
12361da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
12371da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
12381da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
12391da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
12401da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
12411da177e4SLinus Torvalds  * case has already been eliminated.
12421da177e4SLinus Torvalds  *
12431da177e4SLinus Torvalds  * The following mprotect cases have to be considered, where AAAA is
12441da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
12451da177e4SLinus Torvalds  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
12461da177e4SLinus Torvalds  *
12475d42ab29SWei Yang  *     AAAA             AAAA                   AAAA
12485d42ab29SWei Yang  *    PPPPPPNNNNNN    PPPPPPNNNNNN       PPPPPPNNNNNN
12495d42ab29SWei Yang  *    cannot merge    might become       might become
12505d42ab29SWei Yang  *                    PPNNNNNNNNNN       PPPPPPPPPPNN
12515d42ab29SWei Yang  *    mmap, brk or    case 4 below       case 5 below
12525d42ab29SWei Yang  *    mremap move:
12535d42ab29SWei Yang  *                        AAAA               AAAA
12545d42ab29SWei Yang  *                    PPPP    NNNN       PPPPNNNNXXXX
12555d42ab29SWei Yang  *                    might become       might become
12565d42ab29SWei Yang  *                    PPPPPPPPPPPP 1 or  PPPPPPPPPPPP 6 or
12575d42ab29SWei Yang  *                    PPPPPPPPNNNN 2 or  PPPPPPPPXXXX 7 or
12585d42ab29SWei Yang  *                    PPPPNNNNNNNN 3     PPPPXXXXXXXX 8
12591da177e4SLinus Torvalds  *
12608bb4e7a2SWei Yang  * It is important for case 8 that the vma NNNN overlapping the
1261e86f15eeSAndrea Arcangeli  * region AAAA is never going to extended over XXXX. Instead XXXX must
1262e86f15eeSAndrea Arcangeli  * be extended in region AAAA and NNNN must be removed. This way in
1263e86f15eeSAndrea Arcangeli  * all cases where vma_merge succeeds, the moment vma_adjust drops the
1264e86f15eeSAndrea Arcangeli  * rmap_locks, the properties of the merged vma will be already
1265e86f15eeSAndrea Arcangeli  * correct for the whole merged range. Some of those properties like
1266e86f15eeSAndrea Arcangeli  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
1267e86f15eeSAndrea Arcangeli  * be correct for the whole merged range immediately after the
1268e86f15eeSAndrea Arcangeli  * rmap_locks are released. Otherwise if XXXX would be removed and
1269e86f15eeSAndrea Arcangeli  * NNNN would be extended over the XXXX range, remove_migration_ptes
1270e86f15eeSAndrea Arcangeli  * or other rmap walkers (if working on addresses beyond the "end"
1271e86f15eeSAndrea Arcangeli  * parameter) may establish ptes with the wrong permissions of NNNN
1272e86f15eeSAndrea Arcangeli  * instead of the right permissions of XXXX.
12731da177e4SLinus Torvalds  */
12741da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm,
12751da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
12761da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
12771da177e4SLinus Torvalds 			struct anon_vma *anon_vma, struct file *file,
127819a809afSAndrea Arcangeli 			pgoff_t pgoff, struct mempolicy *policy,
12799a10064fSColin Cross 			struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
12805c26f6acSSuren Baghdasaryan 			struct anon_vma_name *anon_name)
12811da177e4SLinus Torvalds {
12821da177e4SLinus Torvalds 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
12831da177e4SLinus Torvalds 	struct vm_area_struct *area, *next;
12845beb4930SRik van Riel 	int err;
12851da177e4SLinus Torvalds 
1286*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
12871da177e4SLinus Torvalds 	/*
12881da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
12891da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
12901da177e4SLinus Torvalds 	 */
12911da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
12921da177e4SLinus Torvalds 		return NULL;
12931da177e4SLinus Torvalds 
12943903b55aSLiam R. Howlett 	next = vma_next(mm, prev);
12951da177e4SLinus Torvalds 	area = next;
1296e86f15eeSAndrea Arcangeli 	if (area && area->vm_end == end)		/* cases 6, 7, 8 */
12971da177e4SLinus Torvalds 		next = next->vm_next;
12981da177e4SLinus Torvalds 
1299e86f15eeSAndrea Arcangeli 	/* verify some invariant that must be enforced by the caller */
1300e86f15eeSAndrea Arcangeli 	VM_WARN_ON(prev && addr <= prev->vm_start);
1301e86f15eeSAndrea Arcangeli 	VM_WARN_ON(area && end > area->vm_end);
1302e86f15eeSAndrea Arcangeli 	VM_WARN_ON(addr >= end);
1303e86f15eeSAndrea Arcangeli 
13041da177e4SLinus Torvalds 	/*
13051da177e4SLinus Torvalds 	 * Can it merge with the predecessor?
13061da177e4SLinus Torvalds 	 */
13071da177e4SLinus Torvalds 	if (prev && prev->vm_end == addr &&
13081da177e4SLinus Torvalds 			mpol_equal(vma_policy(prev), policy) &&
13091da177e4SLinus Torvalds 			can_vma_merge_after(prev, vm_flags,
131019a809afSAndrea Arcangeli 					    anon_vma, file, pgoff,
13119a10064fSColin Cross 					    vm_userfaultfd_ctx, anon_name)) {
13121da177e4SLinus Torvalds 		/*
13131da177e4SLinus Torvalds 		 * OK, it can.  Can we now merge in the successor as well?
13141da177e4SLinus Torvalds 		 */
13151da177e4SLinus Torvalds 		if (next && end == next->vm_start &&
13161da177e4SLinus Torvalds 				mpol_equal(policy, vma_policy(next)) &&
13171da177e4SLinus Torvalds 				can_vma_merge_before(next, vm_flags,
131819a809afSAndrea Arcangeli 						     anon_vma, file,
131919a809afSAndrea Arcangeli 						     pgoff+pglen,
13209a10064fSColin Cross 						     vm_userfaultfd_ctx, anon_name) &&
13211da177e4SLinus Torvalds 				is_mergeable_anon_vma(prev->anon_vma,
1322965f55deSShaohua Li 						      next->anon_vma, NULL)) {
13231da177e4SLinus Torvalds 							/* cases 1, 6 */
1324e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1325e86f15eeSAndrea Arcangeli 					 next->vm_end, prev->vm_pgoff, NULL,
1326e86f15eeSAndrea Arcangeli 					 prev);
13271da177e4SLinus Torvalds 		} else					/* cases 2, 5, 7 */
1328e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1329e86f15eeSAndrea Arcangeli 					 end, prev->vm_pgoff, NULL, prev);
13305beb4930SRik van Riel 		if (err)
13315beb4930SRik van Riel 			return NULL;
1332c791576cSYang Shi 		khugepaged_enter_vma(prev, vm_flags);
13331da177e4SLinus Torvalds 		return prev;
13341da177e4SLinus Torvalds 	}
13351da177e4SLinus Torvalds 
13361da177e4SLinus Torvalds 	/*
13371da177e4SLinus Torvalds 	 * Can this new request be merged in front of next?
13381da177e4SLinus Torvalds 	 */
13391da177e4SLinus Torvalds 	if (next && end == next->vm_start &&
13401da177e4SLinus Torvalds 			mpol_equal(policy, vma_policy(next)) &&
13411da177e4SLinus Torvalds 			can_vma_merge_before(next, vm_flags,
134219a809afSAndrea Arcangeli 					     anon_vma, file, pgoff+pglen,
13439a10064fSColin Cross 					     vm_userfaultfd_ctx, anon_name)) {
13441da177e4SLinus Torvalds 		if (prev && addr < prev->vm_end)	/* case 4 */
1345e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1346e86f15eeSAndrea Arcangeli 					 addr, prev->vm_pgoff, NULL, next);
1347e86f15eeSAndrea Arcangeli 		else {					/* cases 3, 8 */
1348e86f15eeSAndrea Arcangeli 			err = __vma_adjust(area, addr, next->vm_end,
1349e86f15eeSAndrea Arcangeli 					 next->vm_pgoff - pglen, NULL, next);
1350e86f15eeSAndrea Arcangeli 			/*
1351e86f15eeSAndrea Arcangeli 			 * In case 3 area is already equal to next and
1352e86f15eeSAndrea Arcangeli 			 * this is a noop, but in case 8 "area" has
1353e86f15eeSAndrea Arcangeli 			 * been removed and next was expanded over it.
1354e86f15eeSAndrea Arcangeli 			 */
1355e86f15eeSAndrea Arcangeli 			area = next;
1356e86f15eeSAndrea Arcangeli 		}
13575beb4930SRik van Riel 		if (err)
13585beb4930SRik van Riel 			return NULL;
1359c791576cSYang Shi 		khugepaged_enter_vma(area, vm_flags);
13601da177e4SLinus Torvalds 		return area;
13611da177e4SLinus Torvalds 	}
1362*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
13631da177e4SLinus Torvalds 
13641da177e4SLinus Torvalds 	return NULL;
13651da177e4SLinus Torvalds }
13661da177e4SLinus Torvalds 
13671da177e4SLinus Torvalds /*
1368b4f315b4SEthon Paul  * Rough compatibility check to quickly see if it's even worth looking
1369d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
1370d0e9fe17SLinus Torvalds  *
1371d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
1372d0e9fe17SLinus Torvalds  * in things that mprotect may change.
1373d0e9fe17SLinus Torvalds  *
1374d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1375d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
1376d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
1377d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
1378d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
1379d0e9fe17SLinus Torvalds  */
1380d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1381d0e9fe17SLinus Torvalds {
1382d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
1383d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
1384d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
13856cb4d9a2SAnshuman Khandual 		!((a->vm_flags ^ b->vm_flags) & ~(VM_ACCESS_FLAGS | VM_SOFTDIRTY)) &&
1386d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1387d0e9fe17SLinus Torvalds }
1388d0e9fe17SLinus Torvalds 
1389d0e9fe17SLinus Torvalds /*
1390d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
1391d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1392d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
1393d0e9fe17SLinus Torvalds  * to share the anon_vma.
1394d0e9fe17SLinus Torvalds  *
13955b449489SFlorian Rommel  * NOTE! This runs with mmap_lock held for reading, so it is possible that
1396d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
1397d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
1398d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
1399d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
14004db0c3c2SJason Low  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1401d0e9fe17SLinus Torvalds  *
1402d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1403d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1404d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
1405d0e9fe17SLinus Torvalds  * a fork).
1406d0e9fe17SLinus Torvalds  *
1407d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
1408d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
14095b449489SFlorian Rommel  * a read lock on the mmap_lock.
1410d0e9fe17SLinus Torvalds  */
1411d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1412d0e9fe17SLinus Torvalds {
1413d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
14144db0c3c2SJason Low 		struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1415d0e9fe17SLinus Torvalds 
1416d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
1417d0e9fe17SLinus Torvalds 			return anon_vma;
1418d0e9fe17SLinus Torvalds 	}
1419d0e9fe17SLinus Torvalds 	return NULL;
1420d0e9fe17SLinus Torvalds }
1421d0e9fe17SLinus Torvalds 
1422d0e9fe17SLinus Torvalds /*
14231da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
14241da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
14251da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
14261da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
14271da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
14281da177e4SLinus Torvalds  * mprotect.
14291da177e4SLinus Torvalds  */
14301da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
14311da177e4SLinus Torvalds {
1432a67c8caaSMiaohe Lin 	struct anon_vma *anon_vma = NULL;
14331da177e4SLinus Torvalds 
1434a67c8caaSMiaohe Lin 	/* Try next first. */
1435a67c8caaSMiaohe Lin 	if (vma->vm_next) {
1436a67c8caaSMiaohe Lin 		anon_vma = reusable_anon_vma(vma->vm_next, vma, vma->vm_next);
1437d0e9fe17SLinus Torvalds 		if (anon_vma)
1438d0e9fe17SLinus Torvalds 			return anon_vma;
1439a67c8caaSMiaohe Lin 	}
14401da177e4SLinus Torvalds 
1441a67c8caaSMiaohe Lin 	/* Try prev next. */
1442a67c8caaSMiaohe Lin 	if (vma->vm_prev)
1443a67c8caaSMiaohe Lin 		anon_vma = reusable_anon_vma(vma->vm_prev, vma->vm_prev, vma);
1444a67c8caaSMiaohe Lin 
14451da177e4SLinus Torvalds 	/*
1446a67c8caaSMiaohe Lin 	 * We might reach here with anon_vma == NULL if we can't find
1447a67c8caaSMiaohe Lin 	 * any reusable anon_vma.
14481da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
14491da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
14501da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
14511da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
14521da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
14531da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
14541da177e4SLinus Torvalds 	 */
1455a67c8caaSMiaohe Lin 	return anon_vma;
14561da177e4SLinus Torvalds }
14571da177e4SLinus Torvalds 
14581da177e4SLinus Torvalds /*
145940401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
146040401530SAl Viro  * low as possible but still greater than mmap_min_addr
146140401530SAl Viro  */
146240401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
146340401530SAl Viro {
146440401530SAl Viro 	hint &= PAGE_MASK;
146540401530SAl Viro 	if (((void *)hint != NULL) &&
146640401530SAl Viro 	    (hint < mmap_min_addr))
146740401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
146840401530SAl Viro 	return hint;
146940401530SAl Viro }
147040401530SAl Viro 
14716aeb2542SMike Rapoport int mlock_future_check(struct mm_struct *mm, unsigned long flags,
1472363ee17fSDavidlohr Bueso 		       unsigned long len)
1473363ee17fSDavidlohr Bueso {
1474363ee17fSDavidlohr Bueso 	unsigned long locked, lock_limit;
1475363ee17fSDavidlohr Bueso 
1476363ee17fSDavidlohr Bueso 	/*  mlock MCL_FUTURE? */
1477363ee17fSDavidlohr Bueso 	if (flags & VM_LOCKED) {
1478363ee17fSDavidlohr Bueso 		locked = len >> PAGE_SHIFT;
1479363ee17fSDavidlohr Bueso 		locked += mm->locked_vm;
1480363ee17fSDavidlohr Bueso 		lock_limit = rlimit(RLIMIT_MEMLOCK);
1481363ee17fSDavidlohr Bueso 		lock_limit >>= PAGE_SHIFT;
1482363ee17fSDavidlohr Bueso 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1483363ee17fSDavidlohr Bueso 			return -EAGAIN;
1484363ee17fSDavidlohr Bueso 	}
1485363ee17fSDavidlohr Bueso 	return 0;
1486363ee17fSDavidlohr Bueso }
1487363ee17fSDavidlohr Bueso 
1488be83bbf8SLinus Torvalds static inline u64 file_mmap_size_max(struct file *file, struct inode *inode)
1489be83bbf8SLinus Torvalds {
1490be83bbf8SLinus Torvalds 	if (S_ISREG(inode->i_mode))
1491423913adSLinus Torvalds 		return MAX_LFS_FILESIZE;
1492be83bbf8SLinus Torvalds 
1493be83bbf8SLinus Torvalds 	if (S_ISBLK(inode->i_mode))
1494be83bbf8SLinus Torvalds 		return MAX_LFS_FILESIZE;
1495be83bbf8SLinus Torvalds 
149676f34950SIvan Khoronzhuk 	if (S_ISSOCK(inode->i_mode))
149776f34950SIvan Khoronzhuk 		return MAX_LFS_FILESIZE;
149876f34950SIvan Khoronzhuk 
1499be83bbf8SLinus Torvalds 	/* Special "we do even unsigned file positions" case */
1500be83bbf8SLinus Torvalds 	if (file->f_mode & FMODE_UNSIGNED_OFFSET)
1501be83bbf8SLinus Torvalds 		return 0;
1502be83bbf8SLinus Torvalds 
1503be83bbf8SLinus Torvalds 	/* Yes, random drivers might want more. But I'm tired of buggy drivers */
1504be83bbf8SLinus Torvalds 	return ULONG_MAX;
1505be83bbf8SLinus Torvalds }
1506be83bbf8SLinus Torvalds 
1507be83bbf8SLinus Torvalds static inline bool file_mmap_ok(struct file *file, struct inode *inode,
1508be83bbf8SLinus Torvalds 				unsigned long pgoff, unsigned long len)
1509be83bbf8SLinus Torvalds {
1510be83bbf8SLinus Torvalds 	u64 maxsize = file_mmap_size_max(file, inode);
1511be83bbf8SLinus Torvalds 
1512be83bbf8SLinus Torvalds 	if (maxsize && len > maxsize)
1513be83bbf8SLinus Torvalds 		return false;
1514be83bbf8SLinus Torvalds 	maxsize -= len;
1515be83bbf8SLinus Torvalds 	if (pgoff > maxsize >> PAGE_SHIFT)
1516be83bbf8SLinus Torvalds 		return false;
1517be83bbf8SLinus Torvalds 	return true;
1518be83bbf8SLinus Torvalds }
1519be83bbf8SLinus Torvalds 
152040401530SAl Viro /*
15213e4e28c5SMichel Lespinasse  * The caller must write-lock current->mm->mmap_lock.
15221da177e4SLinus Torvalds  */
15231fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr,
15241da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
152545e55300SPeter Collingbourne 			unsigned long flags, unsigned long pgoff,
152645e55300SPeter Collingbourne 			unsigned long *populate, struct list_head *uf)
15271da177e4SLinus Torvalds {
15281da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
152945e55300SPeter Collingbourne 	vm_flags_t vm_flags;
153062b5f7d0SDave Hansen 	int pkey = 0;
15311da177e4SLinus Torvalds 
153241badc15SMichel Lespinasse 	*populate = 0;
1533bebeb3d6SMichel Lespinasse 
1534e37609bbSPiotr Kwapulinski 	if (!len)
1535e37609bbSPiotr Kwapulinski 		return -EINVAL;
1536e37609bbSPiotr Kwapulinski 
15371da177e4SLinus Torvalds 	/*
15381da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
15391da177e4SLinus Torvalds 	 *
15401da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
15411da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
15421da177e4SLinus Torvalds 	 */
15431da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
154490f8572bSEric W. Biederman 		if (!(file && path_noexec(&file->f_path)))
15451da177e4SLinus Torvalds 			prot |= PROT_EXEC;
15461da177e4SLinus Torvalds 
1547a4ff8e86SMichal Hocko 	/* force arch specific MAP_FIXED handling in get_unmapped_area */
1548a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE)
1549a4ff8e86SMichal Hocko 		flags |= MAP_FIXED;
1550a4ff8e86SMichal Hocko 
15517cd94146SEric Paris 	if (!(flags & MAP_FIXED))
15527cd94146SEric Paris 		addr = round_hint_to_min(addr);
15537cd94146SEric Paris 
15541da177e4SLinus Torvalds 	/* Careful about overflows.. */
15551da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
15569206de95SAl Viro 	if (!len)
15571da177e4SLinus Torvalds 		return -ENOMEM;
15581da177e4SLinus Torvalds 
15591da177e4SLinus Torvalds 	/* offset overflow? */
15601da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
15611da177e4SLinus Torvalds 		return -EOVERFLOW;
15621da177e4SLinus Torvalds 
15631da177e4SLinus Torvalds 	/* Too many mappings? */
15641da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
15651da177e4SLinus Torvalds 		return -ENOMEM;
15661da177e4SLinus Torvalds 
15671da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
15681da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
15691da177e4SLinus Torvalds 	 */
15701da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
1571ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(addr))
15721da177e4SLinus Torvalds 		return addr;
15731da177e4SLinus Torvalds 
1574a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE) {
157535e43c5fSLiam Howlett 		if (find_vma_intersection(mm, addr, addr + len))
1576a4ff8e86SMichal Hocko 			return -EEXIST;
1577a4ff8e86SMichal Hocko 	}
1578a4ff8e86SMichal Hocko 
157962b5f7d0SDave Hansen 	if (prot == PROT_EXEC) {
158062b5f7d0SDave Hansen 		pkey = execute_only_pkey(mm);
158162b5f7d0SDave Hansen 		if (pkey < 0)
158262b5f7d0SDave Hansen 			pkey = 0;
158362b5f7d0SDave Hansen 	}
158462b5f7d0SDave Hansen 
15851da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
15861da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
15871da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
15881da177e4SLinus Torvalds 	 */
158945e55300SPeter Collingbourne 	vm_flags = calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
15901da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
15911da177e4SLinus Torvalds 
1592cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
15931da177e4SLinus Torvalds 		if (!can_do_mlock())
15941da177e4SLinus Torvalds 			return -EPERM;
1595ba470de4SRik van Riel 
1596363ee17fSDavidlohr Bueso 	if (mlock_future_check(mm, vm_flags, len))
15971da177e4SLinus Torvalds 		return -EAGAIN;
15981da177e4SLinus Torvalds 
15991da177e4SLinus Torvalds 	if (file) {
1600077bf22bSOleg Nesterov 		struct inode *inode = file_inode(file);
16011c972597SDan Williams 		unsigned long flags_mask;
16021c972597SDan Williams 
1603be83bbf8SLinus Torvalds 		if (!file_mmap_ok(file, inode, pgoff, len))
1604be83bbf8SLinus Torvalds 			return -EOVERFLOW;
1605be83bbf8SLinus Torvalds 
16061c972597SDan Williams 		flags_mask = LEGACY_MAP_MASK | file->f_op->mmap_supported_flags;
1607077bf22bSOleg Nesterov 
16081da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
16091da177e4SLinus Torvalds 		case MAP_SHARED:
16101c972597SDan Williams 			/*
16111c972597SDan Williams 			 * Force use of MAP_SHARED_VALIDATE with non-legacy
16121c972597SDan Williams 			 * flags. E.g. MAP_SYNC is dangerous to use with
16131c972597SDan Williams 			 * MAP_SHARED as you don't know which consistency model
16141c972597SDan Williams 			 * you will get. We silently ignore unsupported flags
16151c972597SDan Williams 			 * with MAP_SHARED to preserve backward compatibility.
16161c972597SDan Williams 			 */
16171c972597SDan Williams 			flags &= LEGACY_MAP_MASK;
1618e4a9bc58SJoe Perches 			fallthrough;
16191c972597SDan Williams 		case MAP_SHARED_VALIDATE:
16201c972597SDan Williams 			if (flags & ~flags_mask)
16211c972597SDan Williams 				return -EOPNOTSUPP;
1622dc617f29SDarrick J. Wong 			if (prot & PROT_WRITE) {
1623dc617f29SDarrick J. Wong 				if (!(file->f_mode & FMODE_WRITE))
16241da177e4SLinus Torvalds 					return -EACCES;
1625dc617f29SDarrick J. Wong 				if (IS_SWAPFILE(file->f_mapping->host))
1626dc617f29SDarrick J. Wong 					return -ETXTBSY;
1627dc617f29SDarrick J. Wong 			}
16281da177e4SLinus Torvalds 
16291da177e4SLinus Torvalds 			/*
16301da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
16311da177e4SLinus Torvalds 			 * file..
16321da177e4SLinus Torvalds 			 */
16331da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
16341da177e4SLinus Torvalds 				return -EACCES;
16351da177e4SLinus Torvalds 
16361da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
16371da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
16381da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1639e4a9bc58SJoe Perches 			fallthrough;
16401da177e4SLinus Torvalds 		case MAP_PRIVATE:
16411da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
16421da177e4SLinus Torvalds 				return -EACCES;
164390f8572bSEric W. Biederman 			if (path_noexec(&file->f_path)) {
164480c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
164580c5606cSLinus Torvalds 					return -EPERM;
164680c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
164780c5606cSLinus Torvalds 			}
164880c5606cSLinus Torvalds 
164972c2d531SAl Viro 			if (!file->f_op->mmap)
165080c5606cSLinus Torvalds 				return -ENODEV;
1651b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1652b2c56e4fSOleg Nesterov 				return -EINVAL;
16531da177e4SLinus Torvalds 			break;
16541da177e4SLinus Torvalds 
16551da177e4SLinus Torvalds 		default:
16561da177e4SLinus Torvalds 			return -EINVAL;
16571da177e4SLinus Torvalds 		}
16581da177e4SLinus Torvalds 	} else {
16591da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
16601da177e4SLinus Torvalds 		case MAP_SHARED:
1661b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1662b2c56e4fSOleg Nesterov 				return -EINVAL;
1663ce363942STejun Heo 			/*
1664ce363942STejun Heo 			 * Ignore pgoff.
1665ce363942STejun Heo 			 */
1666ce363942STejun Heo 			pgoff = 0;
16671da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
16681da177e4SLinus Torvalds 			break;
16691da177e4SLinus Torvalds 		case MAP_PRIVATE:
16701da177e4SLinus Torvalds 			/*
16711da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
16721da177e4SLinus Torvalds 			 */
16731da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
16741da177e4SLinus Torvalds 			break;
16751da177e4SLinus Torvalds 		default:
16761da177e4SLinus Torvalds 			return -EINVAL;
16771da177e4SLinus Torvalds 		}
16781da177e4SLinus Torvalds 	}
16791da177e4SLinus Torvalds 
1680c22c0d63SMichel Lespinasse 	/*
1681c22c0d63SMichel Lespinasse 	 * Set 'VM_NORESERVE' if we should not account for the
1682c22c0d63SMichel Lespinasse 	 * memory use of this mapping.
1683c22c0d63SMichel Lespinasse 	 */
1684c22c0d63SMichel Lespinasse 	if (flags & MAP_NORESERVE) {
1685c22c0d63SMichel Lespinasse 		/* We honor MAP_NORESERVE if allowed to overcommit */
1686c22c0d63SMichel Lespinasse 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1687c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1688c22c0d63SMichel Lespinasse 
1689c22c0d63SMichel Lespinasse 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
1690c22c0d63SMichel Lespinasse 		if (file && is_file_hugepages(file))
1691c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1692c22c0d63SMichel Lespinasse 	}
1693c22c0d63SMichel Lespinasse 
1694897ab3e0SMike Rapoport 	addr = mmap_region(file, addr, len, vm_flags, pgoff, uf);
169509a9f1d2SMichel Lespinasse 	if (!IS_ERR_VALUE(addr) &&
169609a9f1d2SMichel Lespinasse 	    ((vm_flags & VM_LOCKED) ||
169709a9f1d2SMichel Lespinasse 	     (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
169841badc15SMichel Lespinasse 		*populate = len;
1699bebeb3d6SMichel Lespinasse 	return addr;
17000165ab44SMiklos Szeredi }
17016be5ceb0SLinus Torvalds 
1702a90f590aSDominik Brodowski unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
1703a90f590aSDominik Brodowski 			      unsigned long prot, unsigned long flags,
1704a90f590aSDominik Brodowski 			      unsigned long fd, unsigned long pgoff)
170566f0dc48SHugh Dickins {
170666f0dc48SHugh Dickins 	struct file *file = NULL;
17071e3ee14bSChen Gang 	unsigned long retval;
170866f0dc48SHugh Dickins 
170966f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1710120a795dSAl Viro 		audit_mmap_fd(fd, flags);
171166f0dc48SHugh Dickins 		file = fget(fd);
171266f0dc48SHugh Dickins 		if (!file)
17131e3ee14bSChen Gang 			return -EBADF;
17147bba8f0eSZhen Lei 		if (is_file_hugepages(file)) {
1715af73e4d9SNaoya Horiguchi 			len = ALIGN(len, huge_page_size(hstate_file(file)));
17167bba8f0eSZhen Lei 		} else if (unlikely(flags & MAP_HUGETLB)) {
1717493af578SJörn Engel 			retval = -EINVAL;
1718493af578SJörn Engel 			goto out_fput;
17197bba8f0eSZhen Lei 		}
172066f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
1721c103a4dcSAndrew Morton 		struct hstate *hs;
1722af73e4d9SNaoya Horiguchi 
172320ac2893SAnshuman Khandual 		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
1724091d0d55SLi Zefan 		if (!hs)
1725091d0d55SLi Zefan 			return -EINVAL;
1726091d0d55SLi Zefan 
1727091d0d55SLi Zefan 		len = ALIGN(len, huge_page_size(hs));
172866f0dc48SHugh Dickins 		/*
172966f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
173066f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
173166f0dc48SHugh Dickins 		 */
1732af73e4d9SNaoya Horiguchi 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
173342d7395fSAndi Kleen 				VM_NORESERVE,
173483c1fd76Szhangyiru 				HUGETLB_ANONHUGE_INODE,
173542d7395fSAndi Kleen 				(flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
173666f0dc48SHugh Dickins 		if (IS_ERR(file))
173766f0dc48SHugh Dickins 			return PTR_ERR(file);
173866f0dc48SHugh Dickins 	}
173966f0dc48SHugh Dickins 
17409fbeb5abSMichal Hocko 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1741493af578SJörn Engel out_fput:
174266f0dc48SHugh Dickins 	if (file)
174366f0dc48SHugh Dickins 		fput(file);
174466f0dc48SHugh Dickins 	return retval;
174566f0dc48SHugh Dickins }
174666f0dc48SHugh Dickins 
1747a90f590aSDominik Brodowski SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1748a90f590aSDominik Brodowski 		unsigned long, prot, unsigned long, flags,
1749a90f590aSDominik Brodowski 		unsigned long, fd, unsigned long, pgoff)
1750a90f590aSDominik Brodowski {
1751a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
1752a90f590aSDominik Brodowski }
1753a90f590aSDominik Brodowski 
1754a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1755a4679373SChristoph Hellwig struct mmap_arg_struct {
1756a4679373SChristoph Hellwig 	unsigned long addr;
1757a4679373SChristoph Hellwig 	unsigned long len;
1758a4679373SChristoph Hellwig 	unsigned long prot;
1759a4679373SChristoph Hellwig 	unsigned long flags;
1760a4679373SChristoph Hellwig 	unsigned long fd;
1761a4679373SChristoph Hellwig 	unsigned long offset;
1762a4679373SChristoph Hellwig };
1763a4679373SChristoph Hellwig 
1764a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1765a4679373SChristoph Hellwig {
1766a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1767a4679373SChristoph Hellwig 
1768a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1769a4679373SChristoph Hellwig 		return -EFAULT;
1770de1741a1SAlexander Kuleshov 	if (offset_in_page(a.offset))
1771a4679373SChristoph Hellwig 		return -EINVAL;
1772a4679373SChristoph Hellwig 
1773a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1774a4679373SChristoph Hellwig 			       a.offset >> PAGE_SHIFT);
1775a4679373SChristoph Hellwig }
1776a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1777a4679373SChristoph Hellwig 
17784e950f6fSAlexey Dobriyan /*
17798bb4e7a2SWei Yang  * Some shared mappings will want the pages marked read-only
17804e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
17814e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
17824e950f6fSAlexey Dobriyan  * VM_SHARED bit).
17834e950f6fSAlexey Dobriyan  */
17846d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
17854e950f6fSAlexey Dobriyan {
1786ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags = vma->vm_flags;
17878a04446aSKirill A. Shutemov 	const struct vm_operations_struct *vm_ops = vma->vm_ops;
17884e950f6fSAlexey Dobriyan 
17894e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
17904e950f6fSAlexey Dobriyan 	if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
17914e950f6fSAlexey Dobriyan 		return 0;
17924e950f6fSAlexey Dobriyan 
17934e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
17948a04446aSKirill A. Shutemov 	if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
17954e950f6fSAlexey Dobriyan 		return 1;
17964e950f6fSAlexey Dobriyan 
179764e45507SPeter Feiner 	/* The open routine did something to the protections that pgprot_modify
179864e45507SPeter Feiner 	 * won't preserve? */
17996d2329f8SAndrea Arcangeli 	if (pgprot_val(vm_page_prot) !=
18006d2329f8SAndrea Arcangeli 	    pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
18014e950f6fSAlexey Dobriyan 		return 0;
18024e950f6fSAlexey Dobriyan 
1803f96f7a40SDavid Hildenbrand 	/*
1804f96f7a40SDavid Hildenbrand 	 * Do we need to track softdirty? hugetlb does not support softdirty
1805f96f7a40SDavid Hildenbrand 	 * tracking yet.
1806f96f7a40SDavid Hildenbrand 	 */
1807f96f7a40SDavid Hildenbrand 	if (vma_soft_dirty_enabled(vma) && !is_vm_hugetlb_page(vma))
180864e45507SPeter Feiner 		return 1;
180964e45507SPeter Feiner 
18104e950f6fSAlexey Dobriyan 	/* Specialty mapping? */
18114b6e1e37SKonstantin Khlebnikov 	if (vm_flags & VM_PFNMAP)
18124e950f6fSAlexey Dobriyan 		return 0;
18134e950f6fSAlexey Dobriyan 
18144e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
18154e950f6fSAlexey Dobriyan 	return vma->vm_file && vma->vm_file->f_mapping &&
1816f56753acSChristoph Hellwig 		mapping_can_writeback(vma->vm_file->f_mapping);
18174e950f6fSAlexey Dobriyan }
18184e950f6fSAlexey Dobriyan 
1819fc8744adSLinus Torvalds /*
1820fc8744adSLinus Torvalds  * We account for memory if it's a private writeable mapping,
18215a6fe125SMel Gorman  * not hugepages and VM_NORESERVE wasn't set.
1822fc8744adSLinus Torvalds  */
1823ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1824fc8744adSLinus Torvalds {
18255a6fe125SMel Gorman 	/*
18265a6fe125SMel Gorman 	 * hugetlb has its own accounting separate from the core VM
18275a6fe125SMel Gorman 	 * VM_HUGETLB may not be set yet so we cannot check for that flag.
18285a6fe125SMel Gorman 	 */
18295a6fe125SMel Gorman 	if (file && is_file_hugepages(file))
18305a6fe125SMel Gorman 		return 0;
18315a6fe125SMel Gorman 
1832fc8744adSLinus Torvalds 	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1833fc8744adSLinus Torvalds }
1834fc8744adSLinus Torvalds 
18350165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr,
1836897ab3e0SMike Rapoport 		unsigned long len, vm_flags_t vm_flags, unsigned long pgoff,
1837897ab3e0SMike Rapoport 		struct list_head *uf)
18380165ab44SMiklos Szeredi {
18390165ab44SMiklos Szeredi 	struct mm_struct *mm = current->mm;
1840d70cec89SMiaohe Lin 	struct vm_area_struct *vma, *prev, *merge;
18410165ab44SMiklos Szeredi 	int error;
18420165ab44SMiklos Szeredi 	struct rb_node **rb_link, *rb_parent;
18430165ab44SMiklos Szeredi 	unsigned long charged = 0;
18440165ab44SMiklos Szeredi 
1845*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
1846e8420a8eSCyril Hrubis 	/* Check against address space limit. */
184784638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
1848e8420a8eSCyril Hrubis 		unsigned long nr_pages;
1849e8420a8eSCyril Hrubis 
1850e8420a8eSCyril Hrubis 		/*
1851e8420a8eSCyril Hrubis 		 * MAP_FIXED may remove pages of mappings that intersects with
1852e8420a8eSCyril Hrubis 		 * requested mapping. Account for the pages it would unmap.
1853e8420a8eSCyril Hrubis 		 */
1854e8420a8eSCyril Hrubis 		nr_pages = count_vma_pages_range(mm, addr, addr + len);
1855e8420a8eSCyril Hrubis 
185684638335SKonstantin Khlebnikov 		if (!may_expand_vm(mm, vm_flags,
185784638335SKonstantin Khlebnikov 					(len >> PAGE_SHIFT) - nr_pages))
1858e8420a8eSCyril Hrubis 			return -ENOMEM;
1859e8420a8eSCyril Hrubis 	}
1860e8420a8eSCyril Hrubis 
1861fb8090b6SLiam R. Howlett 	/* Clear old maps, set up prev, rb_link, rb_parent, and uf */
1862fb8090b6SLiam R. Howlett 	if (munmap_vma_range(mm, addr, len, &prev, &rb_link, &rb_parent, uf))
18631da177e4SLinus Torvalds 		return -ENOMEM;
1864fc8744adSLinus Torvalds 	/*
18651da177e4SLinus Torvalds 	 * Private writable mapping: check memory availability
18661da177e4SLinus Torvalds 	 */
18675a6fe125SMel Gorman 	if (accountable_mapping(file, vm_flags)) {
18681da177e4SLinus Torvalds 		charged = len >> PAGE_SHIFT;
1869191c5424SAl Viro 		if (security_vm_enough_memory_mm(mm, charged))
18701da177e4SLinus Torvalds 			return -ENOMEM;
18711da177e4SLinus Torvalds 		vm_flags |= VM_ACCOUNT;
18721da177e4SLinus Torvalds 	}
18731da177e4SLinus Torvalds 
18741da177e4SLinus Torvalds 	/*
1875de33c8dbSLinus Torvalds 	 * Can we just expand an old mapping?
18761da177e4SLinus Torvalds 	 */
187719a809afSAndrea Arcangeli 	vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
18789a10064fSColin Cross 			NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
1879ba470de4SRik van Riel 	if (vma)
18801da177e4SLinus Torvalds 		goto out;
18811da177e4SLinus Torvalds 
18821da177e4SLinus Torvalds 	/*
18831da177e4SLinus Torvalds 	 * Determine the object being mapped and call the appropriate
18841da177e4SLinus Torvalds 	 * specific mapper. the address has already been validated, but
18851da177e4SLinus Torvalds 	 * not unmapped, but the maps are removed from the list.
18861da177e4SLinus Torvalds 	 */
1887490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
18881da177e4SLinus Torvalds 	if (!vma) {
18891da177e4SLinus Torvalds 		error = -ENOMEM;
18901da177e4SLinus Torvalds 		goto unacct_error;
18911da177e4SLinus Torvalds 	}
18921da177e4SLinus Torvalds 
18931da177e4SLinus Torvalds 	vma->vm_start = addr;
18941da177e4SLinus Torvalds 	vma->vm_end = addr + len;
18951da177e4SLinus Torvalds 	vma->vm_flags = vm_flags;
18963ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
18971da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
18981da177e4SLinus Torvalds 
18991da177e4SLinus Torvalds 	if (file) {
19004bb5f5d9SDavid Herrmann 		if (vm_flags & VM_SHARED) {
19014bb5f5d9SDavid Herrmann 			error = mapping_map_writable(file->f_mapping);
19024bb5f5d9SDavid Herrmann 			if (error)
19038d0920bdSDavid Hildenbrand 				goto free_vma;
19044bb5f5d9SDavid Herrmann 		}
19054bb5f5d9SDavid Herrmann 
1906cb0942b8SAl Viro 		vma->vm_file = get_file(file);
1907f74ac015SMiklos Szeredi 		error = call_mmap(file, vma);
19081da177e4SLinus Torvalds 		if (error)
19091da177e4SLinus Torvalds 			goto unmap_and_free_vma;
19101da177e4SLinus Torvalds 
1911309d08d9SLiu Zixian 		/* Can addr have changed??
1912309d08d9SLiu Zixian 		 *
1913309d08d9SLiu Zixian 		 * Answer: Yes, several device drivers can do it in their
1914309d08d9SLiu Zixian 		 *         f_op->mmap method. -DaveM
1915309d08d9SLiu Zixian 		 * Bug: If addr is changed, prev, rb_link, rb_parent should
1916309d08d9SLiu Zixian 		 *      be updated for vma_link()
1917309d08d9SLiu Zixian 		 */
1918309d08d9SLiu Zixian 		WARN_ON_ONCE(addr != vma->vm_start);
1919309d08d9SLiu Zixian 
1920309d08d9SLiu Zixian 		addr = vma->vm_start;
1921309d08d9SLiu Zixian 
1922d70cec89SMiaohe Lin 		/* If vm_flags changed after call_mmap(), we should try merge vma again
1923d70cec89SMiaohe Lin 		 * as we may succeed this time.
1924d70cec89SMiaohe Lin 		 */
1925d70cec89SMiaohe Lin 		if (unlikely(vm_flags != vma->vm_flags && prev)) {
1926d70cec89SMiaohe Lin 			merge = vma_merge(mm, prev, vma->vm_start, vma->vm_end, vma->vm_flags,
19279a10064fSColin Cross 				NULL, vma->vm_file, vma->vm_pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
1928d70cec89SMiaohe Lin 			if (merge) {
1929bc4fe4cdSMiaohe Lin 				/* ->mmap() can change vma->vm_file and fput the original file. So
1930bc4fe4cdSMiaohe Lin 				 * fput the vma->vm_file here or we would add an extra fput for file
1931bc4fe4cdSMiaohe Lin 				 * and cause general protection fault ultimately.
1932bc4fe4cdSMiaohe Lin 				 */
1933bc4fe4cdSMiaohe Lin 				fput(vma->vm_file);
1934d70cec89SMiaohe Lin 				vm_area_free(vma);
1935d70cec89SMiaohe Lin 				vma = merge;
1936309d08d9SLiu Zixian 				/* Update vm_flags to pick up the change. */
1937d70cec89SMiaohe Lin 				vm_flags = vma->vm_flags;
1938d70cec89SMiaohe Lin 				goto unmap_writable;
1939d70cec89SMiaohe Lin 			}
1940d70cec89SMiaohe Lin 		}
1941d70cec89SMiaohe Lin 
19421da177e4SLinus Torvalds 		vm_flags = vma->vm_flags;
1943f8dbf0a7SHuang Shijie 	} else if (vm_flags & VM_SHARED) {
1944f8dbf0a7SHuang Shijie 		error = shmem_zero_setup(vma);
1945f8dbf0a7SHuang Shijie 		if (error)
1946f8dbf0a7SHuang Shijie 			goto free_vma;
1947bfd40eafSKirill A. Shutemov 	} else {
1948bfd40eafSKirill A. Shutemov 		vma_set_anonymous(vma);
1949f8dbf0a7SHuang Shijie 	}
19501da177e4SLinus Torvalds 
1951c462ac28SCatalin Marinas 	/* Allow architectures to sanity-check the vm_flags */
1952c462ac28SCatalin Marinas 	if (!arch_validate_flags(vma->vm_flags)) {
1953c462ac28SCatalin Marinas 		error = -EINVAL;
1954c462ac28SCatalin Marinas 		if (file)
1955c462ac28SCatalin Marinas 			goto unmap_and_free_vma;
1956c462ac28SCatalin Marinas 		else
1957c462ac28SCatalin Marinas 			goto free_vma;
1958c462ac28SCatalin Marinas 	}
1959c462ac28SCatalin Marinas 
1960*d4af56c5SLiam R. Howlett 	if (vma_link(mm, vma, prev, rb_link, rb_parent)) {
1961*d4af56c5SLiam R. Howlett 		error = -ENOMEM;
1962*d4af56c5SLiam R. Howlett 		if (file)
1963*d4af56c5SLiam R. Howlett 			goto unmap_and_free_vma;
1964*d4af56c5SLiam R. Howlett 		else
1965*d4af56c5SLiam R. Howlett 			goto free_vma;
1966*d4af56c5SLiam R. Howlett 	}
1967613bec09SYang Shi 
1968613bec09SYang Shi 	/*
1969613bec09SYang Shi 	 * vma_merge() calls khugepaged_enter_vma() either, the below
1970613bec09SYang Shi 	 * call covers the non-merge case.
1971613bec09SYang Shi 	 */
1972613bec09SYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
1973613bec09SYang Shi 
19744d3d5b41SOleg Nesterov 	/* Once vma denies write, undo our temporary denial count */
1975d70cec89SMiaohe Lin unmap_writable:
19768d0920bdSDavid Hildenbrand 	if (file && vm_flags & VM_SHARED)
19774bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
1978e8686772SOleg Nesterov 	file = vma->vm_file;
19791da177e4SLinus Torvalds out:
1980cdd6c482SIngo Molnar 	perf_event_mmap(vma);
19810a4a9391SPeter Zijlstra 
198284638335SKonstantin Khlebnikov 	vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
19831da177e4SLinus Torvalds 	if (vm_flags & VM_LOCKED) {
1984e1fb4a08SDave Jiang 		if ((vm_flags & VM_SPECIAL) || vma_is_dax(vma) ||
1985e1fb4a08SDave Jiang 					is_vm_hugetlb_page(vma) ||
1986e1fb4a08SDave Jiang 					vma == get_gate_vma(current->mm))
1987de60f5f1SEric B Munson 			vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
1988e1fb4a08SDave Jiang 		else
1989e1fb4a08SDave Jiang 			mm->locked_vm += (len >> PAGE_SHIFT);
1990bebeb3d6SMichel Lespinasse 	}
19912b144498SSrikar Dronamraju 
1992c7a3a88cSOleg Nesterov 	if (file)
1993c7a3a88cSOleg Nesterov 		uprobe_mmap(vma);
19942b144498SSrikar Dronamraju 
1995d9104d1cSCyrill Gorcunov 	/*
1996d9104d1cSCyrill Gorcunov 	 * New (or expanded) vma always get soft dirty status.
1997d9104d1cSCyrill Gorcunov 	 * Otherwise user-space soft-dirty page tracker won't
1998d9104d1cSCyrill Gorcunov 	 * be able to distinguish situation when vma area unmapped,
1999d9104d1cSCyrill Gorcunov 	 * then new mapped in-place (which must be aimed as
2000d9104d1cSCyrill Gorcunov 	 * a completely new data area).
2001d9104d1cSCyrill Gorcunov 	 */
2002d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
2003d9104d1cSCyrill Gorcunov 
200464e45507SPeter Feiner 	vma_set_page_prot(vma);
200564e45507SPeter Feiner 
2006*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
20071da177e4SLinus Torvalds 	return addr;
20081da177e4SLinus Torvalds 
20091da177e4SLinus Torvalds unmap_and_free_vma:
20101527f926SChristian König 	fput(vma->vm_file);
20111da177e4SLinus Torvalds 	vma->vm_file = NULL;
20121da177e4SLinus Torvalds 
20131da177e4SLinus Torvalds 	/* Undo any partial mapping done by a device driver. */
2014e0da382cSHugh Dickins 	unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
20154bb5f5d9SDavid Herrmann 	if (vm_flags & VM_SHARED)
20164bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
20171da177e4SLinus Torvalds free_vma:
20183928d4f5SLinus Torvalds 	vm_area_free(vma);
20191da177e4SLinus Torvalds unacct_error:
20201da177e4SLinus Torvalds 	if (charged)
20211da177e4SLinus Torvalds 		vm_unacct_memory(charged);
2022*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
20231da177e4SLinus Torvalds 	return error;
20241da177e4SLinus Torvalds }
20251da177e4SLinus Torvalds 
2026baceaf1cSJaewon Kim static unsigned long unmapped_area(struct vm_unmapped_area_info *info)
2027db4fbfb9SMichel Lespinasse {
2028db4fbfb9SMichel Lespinasse 	/*
2029db4fbfb9SMichel Lespinasse 	 * We implement the search by looking for an rbtree node that
2030db4fbfb9SMichel Lespinasse 	 * immediately follows a suitable gap. That is,
2031db4fbfb9SMichel Lespinasse 	 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
2032db4fbfb9SMichel Lespinasse 	 * - gap_end   = vma->vm_start        >= info->low_limit  + length;
2033db4fbfb9SMichel Lespinasse 	 * - gap_end - gap_start >= length
2034db4fbfb9SMichel Lespinasse 	 */
2035db4fbfb9SMichel Lespinasse 
2036db4fbfb9SMichel Lespinasse 	struct mm_struct *mm = current->mm;
2037db4fbfb9SMichel Lespinasse 	struct vm_area_struct *vma;
2038db4fbfb9SMichel Lespinasse 	unsigned long length, low_limit, high_limit, gap_start, gap_end;
2039*d4af56c5SLiam R. Howlett 	unsigned long gap;
2040*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
2041db4fbfb9SMichel Lespinasse 
2042db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
2043db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
2044db4fbfb9SMichel Lespinasse 	if (length < info->length)
2045db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2046db4fbfb9SMichel Lespinasse 
2047*d4af56c5SLiam R. Howlett 	mas_empty_area(&mas, info->low_limit, info->high_limit - 1,
2048*d4af56c5SLiam R. Howlett 			   length);
2049*d4af56c5SLiam R. Howlett 	gap = mas.index;
2050*d4af56c5SLiam R. Howlett 	gap += (info->align_offset - gap) & info->align_mask;
2051*d4af56c5SLiam R. Howlett 
2052db4fbfb9SMichel Lespinasse 	/* Adjust search limits by the desired length */
2053db4fbfb9SMichel Lespinasse 	if (info->high_limit < length)
2054db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2055db4fbfb9SMichel Lespinasse 	high_limit = info->high_limit - length;
2056db4fbfb9SMichel Lespinasse 
2057db4fbfb9SMichel Lespinasse 	if (info->low_limit > high_limit)
2058db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2059db4fbfb9SMichel Lespinasse 	low_limit = info->low_limit + length;
2060db4fbfb9SMichel Lespinasse 
2061db4fbfb9SMichel Lespinasse 	/* Check if rbtree root looks promising */
2062db4fbfb9SMichel Lespinasse 	if (RB_EMPTY_ROOT(&mm->mm_rb))
2063db4fbfb9SMichel Lespinasse 		goto check_highest;
2064db4fbfb9SMichel Lespinasse 	vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
2065db4fbfb9SMichel Lespinasse 	if (vma->rb_subtree_gap < length)
2066db4fbfb9SMichel Lespinasse 		goto check_highest;
2067db4fbfb9SMichel Lespinasse 
2068db4fbfb9SMichel Lespinasse 	while (true) {
2069db4fbfb9SMichel Lespinasse 		/* Visit left subtree if it looks promising */
20701be7107fSHugh Dickins 		gap_end = vm_start_gap(vma);
2071db4fbfb9SMichel Lespinasse 		if (gap_end >= low_limit && vma->vm_rb.rb_left) {
2072db4fbfb9SMichel Lespinasse 			struct vm_area_struct *left =
2073db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_left,
2074db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
2075db4fbfb9SMichel Lespinasse 			if (left->rb_subtree_gap >= length) {
2076db4fbfb9SMichel Lespinasse 				vma = left;
2077db4fbfb9SMichel Lespinasse 				continue;
2078db4fbfb9SMichel Lespinasse 			}
2079db4fbfb9SMichel Lespinasse 		}
2080db4fbfb9SMichel Lespinasse 
20811be7107fSHugh Dickins 		gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0;
2082db4fbfb9SMichel Lespinasse check_current:
2083db4fbfb9SMichel Lespinasse 		/* Check if current node has a suitable gap */
2084db4fbfb9SMichel Lespinasse 		if (gap_start > high_limit)
2085db4fbfb9SMichel Lespinasse 			return -ENOMEM;
2086f4cb767dSHugh Dickins 		if (gap_end >= low_limit &&
2087f4cb767dSHugh Dickins 		    gap_end > gap_start && gap_end - gap_start >= length)
2088db4fbfb9SMichel Lespinasse 			goto found;
2089db4fbfb9SMichel Lespinasse 
2090db4fbfb9SMichel Lespinasse 		/* Visit right subtree if it looks promising */
2091db4fbfb9SMichel Lespinasse 		if (vma->vm_rb.rb_right) {
2092db4fbfb9SMichel Lespinasse 			struct vm_area_struct *right =
2093db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_right,
2094db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
2095db4fbfb9SMichel Lespinasse 			if (right->rb_subtree_gap >= length) {
2096db4fbfb9SMichel Lespinasse 				vma = right;
2097db4fbfb9SMichel Lespinasse 				continue;
2098db4fbfb9SMichel Lespinasse 			}
2099db4fbfb9SMichel Lespinasse 		}
2100db4fbfb9SMichel Lespinasse 
2101db4fbfb9SMichel Lespinasse 		/* Go back up the rbtree to find next candidate node */
2102db4fbfb9SMichel Lespinasse 		while (true) {
2103db4fbfb9SMichel Lespinasse 			struct rb_node *prev = &vma->vm_rb;
2104db4fbfb9SMichel Lespinasse 			if (!rb_parent(prev))
2105db4fbfb9SMichel Lespinasse 				goto check_highest;
2106db4fbfb9SMichel Lespinasse 			vma = rb_entry(rb_parent(prev),
2107db4fbfb9SMichel Lespinasse 				       struct vm_area_struct, vm_rb);
2108db4fbfb9SMichel Lespinasse 			if (prev == vma->vm_rb.rb_left) {
21091be7107fSHugh Dickins 				gap_start = vm_end_gap(vma->vm_prev);
21101be7107fSHugh Dickins 				gap_end = vm_start_gap(vma);
2111db4fbfb9SMichel Lespinasse 				goto check_current;
2112db4fbfb9SMichel Lespinasse 			}
2113db4fbfb9SMichel Lespinasse 		}
2114db4fbfb9SMichel Lespinasse 	}
2115db4fbfb9SMichel Lespinasse 
2116db4fbfb9SMichel Lespinasse check_highest:
2117db4fbfb9SMichel Lespinasse 	/* Check highest gap, which does not precede any rbtree node */
2118db4fbfb9SMichel Lespinasse 	gap_start = mm->highest_vm_end;
2119db4fbfb9SMichel Lespinasse 	gap_end = ULONG_MAX;  /* Only for VM_BUG_ON below */
2120db4fbfb9SMichel Lespinasse 	if (gap_start > high_limit)
2121db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2122db4fbfb9SMichel Lespinasse 
2123db4fbfb9SMichel Lespinasse found:
2124db4fbfb9SMichel Lespinasse 	/* We found a suitable gap. Clip it with the original low_limit. */
2125db4fbfb9SMichel Lespinasse 	if (gap_start < info->low_limit)
2126db4fbfb9SMichel Lespinasse 		gap_start = info->low_limit;
2127db4fbfb9SMichel Lespinasse 
2128db4fbfb9SMichel Lespinasse 	/* Adjust gap address to the desired alignment */
2129db4fbfb9SMichel Lespinasse 	gap_start += (info->align_offset - gap_start) & info->align_mask;
2130db4fbfb9SMichel Lespinasse 
2131db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_start + info->length > info->high_limit);
2132db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_start + info->length > gap_end);
2133*d4af56c5SLiam R. Howlett 
2134*d4af56c5SLiam R. Howlett 	VM_BUG_ON(gap != gap_start);
2135db4fbfb9SMichel Lespinasse 	return gap_start;
2136db4fbfb9SMichel Lespinasse }
2137db4fbfb9SMichel Lespinasse 
2138baceaf1cSJaewon Kim static unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
2139db4fbfb9SMichel Lespinasse {
2140db4fbfb9SMichel Lespinasse 	struct mm_struct *mm = current->mm;
2141*d4af56c5SLiam R. Howlett 	struct vm_area_struct *vma = NULL;
2142db4fbfb9SMichel Lespinasse 	unsigned long length, low_limit, high_limit, gap_start, gap_end;
2143*d4af56c5SLiam R. Howlett 	unsigned long gap;
2144*d4af56c5SLiam R. Howlett 
2145*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
2146*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
2147db4fbfb9SMichel Lespinasse 
2148db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
2149db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
2150db4fbfb9SMichel Lespinasse 	if (length < info->length)
2151db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2152db4fbfb9SMichel Lespinasse 
2153*d4af56c5SLiam R. Howlett 	mas_empty_area_rev(&mas, info->low_limit, info->high_limit - 1,
2154*d4af56c5SLiam R. Howlett 		   length);
2155*d4af56c5SLiam R. Howlett 	gap = mas.last + 1 - info->length;
2156*d4af56c5SLiam R. Howlett 	gap -= (gap - info->align_offset) & info->align_mask;
2157*d4af56c5SLiam R. Howlett 
2158db4fbfb9SMichel Lespinasse 	/*
2159db4fbfb9SMichel Lespinasse 	 * Adjust search limits by the desired length.
2160db4fbfb9SMichel Lespinasse 	 * See implementation comment at top of unmapped_area().
2161db4fbfb9SMichel Lespinasse 	 */
2162db4fbfb9SMichel Lespinasse 	gap_end = info->high_limit;
2163db4fbfb9SMichel Lespinasse 	if (gap_end < length)
2164db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2165db4fbfb9SMichel Lespinasse 	high_limit = gap_end - length;
2166db4fbfb9SMichel Lespinasse 
2167db4fbfb9SMichel Lespinasse 	if (info->low_limit > high_limit)
2168db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2169db4fbfb9SMichel Lespinasse 	low_limit = info->low_limit + length;
2170db4fbfb9SMichel Lespinasse 
2171db4fbfb9SMichel Lespinasse 	/* Check highest gap, which does not precede any rbtree node */
2172db4fbfb9SMichel Lespinasse 	gap_start = mm->highest_vm_end;
2173db4fbfb9SMichel Lespinasse 	if (gap_start <= high_limit)
2174db4fbfb9SMichel Lespinasse 		goto found_highest;
2175db4fbfb9SMichel Lespinasse 
2176db4fbfb9SMichel Lespinasse 	/* Check if rbtree root looks promising */
2177db4fbfb9SMichel Lespinasse 	if (RB_EMPTY_ROOT(&mm->mm_rb))
2178db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2179db4fbfb9SMichel Lespinasse 	vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
2180db4fbfb9SMichel Lespinasse 	if (vma->rb_subtree_gap < length)
2181db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2182db4fbfb9SMichel Lespinasse 
2183db4fbfb9SMichel Lespinasse 	while (true) {
2184db4fbfb9SMichel Lespinasse 		/* Visit right subtree if it looks promising */
21851be7107fSHugh Dickins 		gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0;
2186db4fbfb9SMichel Lespinasse 		if (gap_start <= high_limit && vma->vm_rb.rb_right) {
2187db4fbfb9SMichel Lespinasse 			struct vm_area_struct *right =
2188db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_right,
2189db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
2190db4fbfb9SMichel Lespinasse 			if (right->rb_subtree_gap >= length) {
2191db4fbfb9SMichel Lespinasse 				vma = right;
2192db4fbfb9SMichel Lespinasse 				continue;
2193db4fbfb9SMichel Lespinasse 			}
2194db4fbfb9SMichel Lespinasse 		}
2195db4fbfb9SMichel Lespinasse 
2196db4fbfb9SMichel Lespinasse check_current:
2197db4fbfb9SMichel Lespinasse 		/* Check if current node has a suitable gap */
21981be7107fSHugh Dickins 		gap_end = vm_start_gap(vma);
2199db4fbfb9SMichel Lespinasse 		if (gap_end < low_limit)
2200db4fbfb9SMichel Lespinasse 			return -ENOMEM;
2201f4cb767dSHugh Dickins 		if (gap_start <= high_limit &&
2202f4cb767dSHugh Dickins 		    gap_end > gap_start && gap_end - gap_start >= length)
2203db4fbfb9SMichel Lespinasse 			goto found;
2204db4fbfb9SMichel Lespinasse 
2205db4fbfb9SMichel Lespinasse 		/* Visit left subtree if it looks promising */
2206db4fbfb9SMichel Lespinasse 		if (vma->vm_rb.rb_left) {
2207db4fbfb9SMichel Lespinasse 			struct vm_area_struct *left =
2208db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_left,
2209db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
2210db4fbfb9SMichel Lespinasse 			if (left->rb_subtree_gap >= length) {
2211db4fbfb9SMichel Lespinasse 				vma = left;
2212db4fbfb9SMichel Lespinasse 				continue;
2213db4fbfb9SMichel Lespinasse 			}
2214db4fbfb9SMichel Lespinasse 		}
2215db4fbfb9SMichel Lespinasse 
2216db4fbfb9SMichel Lespinasse 		/* Go back up the rbtree to find next candidate node */
2217db4fbfb9SMichel Lespinasse 		while (true) {
2218db4fbfb9SMichel Lespinasse 			struct rb_node *prev = &vma->vm_rb;
2219db4fbfb9SMichel Lespinasse 			if (!rb_parent(prev))
2220db4fbfb9SMichel Lespinasse 				return -ENOMEM;
2221db4fbfb9SMichel Lespinasse 			vma = rb_entry(rb_parent(prev),
2222db4fbfb9SMichel Lespinasse 				       struct vm_area_struct, vm_rb);
2223db4fbfb9SMichel Lespinasse 			if (prev == vma->vm_rb.rb_right) {
2224db4fbfb9SMichel Lespinasse 				gap_start = vma->vm_prev ?
22251be7107fSHugh Dickins 					vm_end_gap(vma->vm_prev) : 0;
2226db4fbfb9SMichel Lespinasse 				goto check_current;
2227db4fbfb9SMichel Lespinasse 			}
2228db4fbfb9SMichel Lespinasse 		}
2229db4fbfb9SMichel Lespinasse 	}
2230db4fbfb9SMichel Lespinasse 
2231db4fbfb9SMichel Lespinasse found:
2232db4fbfb9SMichel Lespinasse 	/* We found a suitable gap. Clip it with the original high_limit. */
2233db4fbfb9SMichel Lespinasse 	if (gap_end > info->high_limit)
2234db4fbfb9SMichel Lespinasse 		gap_end = info->high_limit;
2235db4fbfb9SMichel Lespinasse 
2236db4fbfb9SMichel Lespinasse found_highest:
2237db4fbfb9SMichel Lespinasse 	/* Compute highest gap address at the desired alignment */
2238db4fbfb9SMichel Lespinasse 	gap_end -= info->length;
2239db4fbfb9SMichel Lespinasse 	gap_end -= (gap_end - info->align_offset) & info->align_mask;
2240db4fbfb9SMichel Lespinasse 
2241db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_end < info->low_limit);
2242db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_end < gap_start);
2243*d4af56c5SLiam R. Howlett 
2244*d4af56c5SLiam R. Howlett 	if (gap != gap_end) {
2245*d4af56c5SLiam R. Howlett 		pr_err("%s: %p Gap was found: mt %lu gap_end %lu\n", __func__,
2246*d4af56c5SLiam R. Howlett 		       mm, gap, gap_end);
2247*d4af56c5SLiam R. Howlett 		pr_err("window was %lu - %lu size %lu\n", info->high_limit,
2248*d4af56c5SLiam R. Howlett 		       info->low_limit, length);
2249*d4af56c5SLiam R. Howlett 		pr_err("mas.min %lu max %lu mas.last %lu\n", mas.min, mas.max,
2250*d4af56c5SLiam R. Howlett 		       mas.last);
2251*d4af56c5SLiam R. Howlett 		pr_err("mas.index %lu align mask %lu offset %lu\n", mas.index,
2252*d4af56c5SLiam R. Howlett 		       info->align_mask, info->align_offset);
2253*d4af56c5SLiam R. Howlett 		pr_err("rb_find_vma find on %lu => %p (%p)\n", mas.index,
2254*d4af56c5SLiam R. Howlett 		       find_vma(mm, mas.index), vma);
2255*d4af56c5SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
2256*d4af56c5SLiam R. Howlett 		mt_dump(&mm->mm_mt);
2257*d4af56c5SLiam R. Howlett #endif
2258*d4af56c5SLiam R. Howlett 		{
2259*d4af56c5SLiam R. Howlett 			struct vm_area_struct *dv = mm->mmap;
2260*d4af56c5SLiam R. Howlett 
2261*d4af56c5SLiam R. Howlett 			while (dv) {
2262*d4af56c5SLiam R. Howlett 				pr_err("vma %p %lu-%lu\n", dv, dv->vm_start, dv->vm_end);
2263*d4af56c5SLiam R. Howlett 				dv = dv->vm_next;
2264*d4af56c5SLiam R. Howlett 			}
2265*d4af56c5SLiam R. Howlett 		}
2266*d4af56c5SLiam R. Howlett 		VM_BUG_ON(gap != gap_end);
2267*d4af56c5SLiam R. Howlett 	}
2268*d4af56c5SLiam R. Howlett 
2269db4fbfb9SMichel Lespinasse 	return gap_end;
2270db4fbfb9SMichel Lespinasse }
2271db4fbfb9SMichel Lespinasse 
2272baceaf1cSJaewon Kim /*
2273baceaf1cSJaewon Kim  * Search for an unmapped address range.
2274baceaf1cSJaewon Kim  *
2275baceaf1cSJaewon Kim  * We are looking for a range that:
2276baceaf1cSJaewon Kim  * - does not intersect with any VMA;
2277baceaf1cSJaewon Kim  * - is contained within the [low_limit, high_limit) interval;
2278baceaf1cSJaewon Kim  * - is at least the desired size.
2279baceaf1cSJaewon Kim  * - satisfies (begin_addr & align_mask) == (align_offset & align_mask)
2280baceaf1cSJaewon Kim  */
2281baceaf1cSJaewon Kim unsigned long vm_unmapped_area(struct vm_unmapped_area_info *info)
2282baceaf1cSJaewon Kim {
2283df529cabSJaewon Kim 	unsigned long addr;
2284df529cabSJaewon Kim 
2285baceaf1cSJaewon Kim 	if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
2286df529cabSJaewon Kim 		addr = unmapped_area_topdown(info);
2287baceaf1cSJaewon Kim 	else
2288df529cabSJaewon Kim 		addr = unmapped_area(info);
2289df529cabSJaewon Kim 
2290df529cabSJaewon Kim 	trace_vm_unmapped_area(addr, info);
2291df529cabSJaewon Kim 	return addr;
2292baceaf1cSJaewon Kim }
2293f6795053SSteve Capper 
22941da177e4SLinus Torvalds /* Get an address range which is currently unmapped.
22951da177e4SLinus Torvalds  * For shmat() with addr=0.
22961da177e4SLinus Torvalds  *
22971da177e4SLinus Torvalds  * Ugly calling convention alert:
22981da177e4SLinus Torvalds  * Return value with the low bits set means error value,
22991da177e4SLinus Torvalds  * ie
23001da177e4SLinus Torvalds  *	if (ret & ~PAGE_MASK)
23011da177e4SLinus Torvalds  *		error = ret;
23021da177e4SLinus Torvalds  *
23031da177e4SLinus Torvalds  * This function "knows" that -ENOMEM has the bits set.
23041da177e4SLinus Torvalds  */
23051da177e4SLinus Torvalds unsigned long
23064b439e25SChristophe Leroy generic_get_unmapped_area(struct file *filp, unsigned long addr,
23074b439e25SChristophe Leroy 			  unsigned long len, unsigned long pgoff,
23084b439e25SChristophe Leroy 			  unsigned long flags)
23091da177e4SLinus Torvalds {
23101da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
23111be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
2312db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
23132cb4de08SChristophe Leroy 	const unsigned long mmap_end = arch_get_mmap_end(addr, len, flags);
23141da177e4SLinus Torvalds 
2315f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
23161da177e4SLinus Torvalds 		return -ENOMEM;
23171da177e4SLinus Torvalds 
231806abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
231906abdfb4SBenjamin Herrenschmidt 		return addr;
232006abdfb4SBenjamin Herrenschmidt 
23211da177e4SLinus Torvalds 	if (addr) {
23221da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
23231be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
2324f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
23251be7107fSHugh Dickins 		    (!vma || addr + len <= vm_start_gap(vma)) &&
23261be7107fSHugh Dickins 		    (!prev || addr >= vm_end_gap(prev)))
23271da177e4SLinus Torvalds 			return addr;
23281da177e4SLinus Torvalds 	}
23291da177e4SLinus Torvalds 
2330db4fbfb9SMichel Lespinasse 	info.flags = 0;
2331db4fbfb9SMichel Lespinasse 	info.length = len;
23324e99b021SHeiko Carstens 	info.low_limit = mm->mmap_base;
2333f6795053SSteve Capper 	info.high_limit = mmap_end;
2334db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
233509ef5283SJaewon Kim 	info.align_offset = 0;
2336db4fbfb9SMichel Lespinasse 	return vm_unmapped_area(&info);
23371da177e4SLinus Torvalds }
23384b439e25SChristophe Leroy 
23394b439e25SChristophe Leroy #ifndef HAVE_ARCH_UNMAPPED_AREA
23404b439e25SChristophe Leroy unsigned long
23414b439e25SChristophe Leroy arch_get_unmapped_area(struct file *filp, unsigned long addr,
23424b439e25SChristophe Leroy 		       unsigned long len, unsigned long pgoff,
23434b439e25SChristophe Leroy 		       unsigned long flags)
23444b439e25SChristophe Leroy {
23454b439e25SChristophe Leroy 	return generic_get_unmapped_area(filp, addr, len, pgoff, flags);
23464b439e25SChristophe Leroy }
23471da177e4SLinus Torvalds #endif
23481da177e4SLinus Torvalds 
23491da177e4SLinus Torvalds /*
23501da177e4SLinus Torvalds  * This mmap-allocator allocates new areas top-down from below the
23511da177e4SLinus Torvalds  * stack's low limit (the base):
23521da177e4SLinus Torvalds  */
23531da177e4SLinus Torvalds unsigned long
23544b439e25SChristophe Leroy generic_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
235543cca0b1SYang Fan 				  unsigned long len, unsigned long pgoff,
235643cca0b1SYang Fan 				  unsigned long flags)
23571da177e4SLinus Torvalds {
23581be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
23591da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
2360db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
23612cb4de08SChristophe Leroy 	const unsigned long mmap_end = arch_get_mmap_end(addr, len, flags);
23621da177e4SLinus Torvalds 
23631da177e4SLinus Torvalds 	/* requested length too big for entire address space */
2364f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
23651da177e4SLinus Torvalds 		return -ENOMEM;
23661da177e4SLinus Torvalds 
236706abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
236806abdfb4SBenjamin Herrenschmidt 		return addr;
236906abdfb4SBenjamin Herrenschmidt 
23701da177e4SLinus Torvalds 	/* requesting a specific address */
23711da177e4SLinus Torvalds 	if (addr) {
23721da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
23731be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
2374f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
23751be7107fSHugh Dickins 				(!vma || addr + len <= vm_start_gap(vma)) &&
23761be7107fSHugh Dickins 				(!prev || addr >= vm_end_gap(prev)))
23771da177e4SLinus Torvalds 			return addr;
23781da177e4SLinus Torvalds 	}
23791da177e4SLinus Torvalds 
2380db4fbfb9SMichel Lespinasse 	info.flags = VM_UNMAPPED_AREA_TOPDOWN;
2381db4fbfb9SMichel Lespinasse 	info.length = len;
23822afc745fSAkira Takeuchi 	info.low_limit = max(PAGE_SIZE, mmap_min_addr);
2383f6795053SSteve Capper 	info.high_limit = arch_get_mmap_base(addr, mm->mmap_base);
2384db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
238509ef5283SJaewon Kim 	info.align_offset = 0;
2386db4fbfb9SMichel Lespinasse 	addr = vm_unmapped_area(&info);
2387b716ad95SXiao Guangrong 
23881da177e4SLinus Torvalds 	/*
23891da177e4SLinus Torvalds 	 * A failed mmap() very likely causes application failure,
23901da177e4SLinus Torvalds 	 * so fall back to the bottom-up function here. This scenario
23911da177e4SLinus Torvalds 	 * can happen with large stack limits and large mmap()
23921da177e4SLinus Torvalds 	 * allocations.
23931da177e4SLinus Torvalds 	 */
2394de1741a1SAlexander Kuleshov 	if (offset_in_page(addr)) {
2395db4fbfb9SMichel Lespinasse 		VM_BUG_ON(addr != -ENOMEM);
2396db4fbfb9SMichel Lespinasse 		info.flags = 0;
2397db4fbfb9SMichel Lespinasse 		info.low_limit = TASK_UNMAPPED_BASE;
2398f6795053SSteve Capper 		info.high_limit = mmap_end;
2399db4fbfb9SMichel Lespinasse 		addr = vm_unmapped_area(&info);
2400db4fbfb9SMichel Lespinasse 	}
24011da177e4SLinus Torvalds 
24021da177e4SLinus Torvalds 	return addr;
24031da177e4SLinus Torvalds }
24044b439e25SChristophe Leroy 
24054b439e25SChristophe Leroy #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
24064b439e25SChristophe Leroy unsigned long
24074b439e25SChristophe Leroy arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
24084b439e25SChristophe Leroy 			       unsigned long len, unsigned long pgoff,
24094b439e25SChristophe Leroy 			       unsigned long flags)
24104b439e25SChristophe Leroy {
24114b439e25SChristophe Leroy 	return generic_get_unmapped_area_topdown(filp, addr, len, pgoff, flags);
24124b439e25SChristophe Leroy }
24131da177e4SLinus Torvalds #endif
24141da177e4SLinus Torvalds 
24151da177e4SLinus Torvalds unsigned long
24161da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
24171da177e4SLinus Torvalds 		unsigned long pgoff, unsigned long flags)
24181da177e4SLinus Torvalds {
241906abdfb4SBenjamin Herrenschmidt 	unsigned long (*get_area)(struct file *, unsigned long,
242006abdfb4SBenjamin Herrenschmidt 				  unsigned long, unsigned long, unsigned long);
242107ab67c8SLinus Torvalds 
24229206de95SAl Viro 	unsigned long error = arch_mmap_check(addr, len, flags);
24239206de95SAl Viro 	if (error)
24249206de95SAl Viro 		return error;
24259206de95SAl Viro 
24269206de95SAl Viro 	/* Careful about overflows.. */
24279206de95SAl Viro 	if (len > TASK_SIZE)
24289206de95SAl Viro 		return -ENOMEM;
24299206de95SAl Viro 
243007ab67c8SLinus Torvalds 	get_area = current->mm->get_unmapped_area;
2431c01d5b30SHugh Dickins 	if (file) {
2432c01d5b30SHugh Dickins 		if (file->f_op->get_unmapped_area)
243307ab67c8SLinus Torvalds 			get_area = file->f_op->get_unmapped_area;
2434c01d5b30SHugh Dickins 	} else if (flags & MAP_SHARED) {
2435c01d5b30SHugh Dickins 		/*
2436c01d5b30SHugh Dickins 		 * mmap_region() will call shmem_zero_setup() to create a file,
2437c01d5b30SHugh Dickins 		 * so use shmem's get_unmapped_area in case it can be huge.
243845e55300SPeter Collingbourne 		 * do_mmap() will clear pgoff, so match alignment.
2439c01d5b30SHugh Dickins 		 */
2440c01d5b30SHugh Dickins 		pgoff = 0;
2441c01d5b30SHugh Dickins 		get_area = shmem_get_unmapped_area;
2442f35b5d7dSRik van Riel 	} else if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) {
2443f35b5d7dSRik van Riel 		/* Ensures that larger anonymous mappings are THP aligned. */
2444f35b5d7dSRik van Riel 		get_area = thp_get_unmapped_area;
2445c01d5b30SHugh Dickins 	}
2446c01d5b30SHugh Dickins 
244707ab67c8SLinus Torvalds 	addr = get_area(file, addr, len, pgoff, flags);
244807ab67c8SLinus Torvalds 	if (IS_ERR_VALUE(addr))
244907ab67c8SLinus Torvalds 		return addr;
245007ab67c8SLinus Torvalds 
24511da177e4SLinus Torvalds 	if (addr > TASK_SIZE - len)
24521da177e4SLinus Torvalds 		return -ENOMEM;
2453de1741a1SAlexander Kuleshov 	if (offset_in_page(addr))
24541da177e4SLinus Torvalds 		return -EINVAL;
245506abdfb4SBenjamin Herrenschmidt 
24569ac4ed4bSAl Viro 	error = security_mmap_addr(addr);
24579ac4ed4bSAl Viro 	return error ? error : addr;
24581da177e4SLinus Torvalds }
24591da177e4SLinus Torvalds 
24601da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area);
24611da177e4SLinus Torvalds 
24621da177e4SLinus Torvalds /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
24631da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
24641da177e4SLinus Torvalds {
2465615d6e87SDavidlohr Bueso 	struct rb_node *rb_node;
2466615d6e87SDavidlohr Bueso 	struct vm_area_struct *vma;
24671da177e4SLinus Torvalds 
24685b78ed24SLuigi Rizzo 	mmap_assert_locked(mm);
24691da177e4SLinus Torvalds 	/* Check the cache first. */
2470615d6e87SDavidlohr Bueso 	vma = vmacache_find(mm, addr);
2471615d6e87SDavidlohr Bueso 	if (likely(vma))
2472615d6e87SDavidlohr Bueso 		return vma;
24731da177e4SLinus Torvalds 
24741da177e4SLinus Torvalds 	rb_node = mm->mm_rb.rb_node;
24751da177e4SLinus Torvalds 
24761da177e4SLinus Torvalds 	while (rb_node) {
2477615d6e87SDavidlohr Bueso 		struct vm_area_struct *tmp;
24781da177e4SLinus Torvalds 
2479615d6e87SDavidlohr Bueso 		tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
24801da177e4SLinus Torvalds 
2481615d6e87SDavidlohr Bueso 		if (tmp->vm_end > addr) {
2482615d6e87SDavidlohr Bueso 			vma = tmp;
2483615d6e87SDavidlohr Bueso 			if (tmp->vm_start <= addr)
24841da177e4SLinus Torvalds 				break;
24851da177e4SLinus Torvalds 			rb_node = rb_node->rb_left;
24861da177e4SLinus Torvalds 		} else
24871da177e4SLinus Torvalds 			rb_node = rb_node->rb_right;
24881da177e4SLinus Torvalds 	}
2489615d6e87SDavidlohr Bueso 
24901da177e4SLinus Torvalds 	if (vma)
2491615d6e87SDavidlohr Bueso 		vmacache_update(addr, vma);
24921da177e4SLinus Torvalds 	return vma;
24931da177e4SLinus Torvalds }
24941da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma);
24951da177e4SLinus Torvalds 
24966bd4837dSKOSAKI Motohiro /*
24976bd4837dSKOSAKI Motohiro  * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
24986bd4837dSKOSAKI Motohiro  */
24991da177e4SLinus Torvalds struct vm_area_struct *
25001da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr,
25011da177e4SLinus Torvalds 			struct vm_area_struct **pprev)
25021da177e4SLinus Torvalds {
25036bd4837dSKOSAKI Motohiro 	struct vm_area_struct *vma;
25041da177e4SLinus Torvalds 
25056bd4837dSKOSAKI Motohiro 	vma = find_vma(mm, addr);
250683cd904dSMikulas Patocka 	if (vma) {
250783cd904dSMikulas Patocka 		*pprev = vma->vm_prev;
250883cd904dSMikulas Patocka 	} else {
250973848a97SWei Yang 		struct rb_node *rb_node = rb_last(&mm->mm_rb);
251073848a97SWei Yang 
251173848a97SWei Yang 		*pprev = rb_node ? rb_entry(rb_node, struct vm_area_struct, vm_rb) : NULL;
251283cd904dSMikulas Patocka 	}
25136bd4837dSKOSAKI Motohiro 	return vma;
25141da177e4SLinus Torvalds }
25151da177e4SLinus Torvalds 
25161da177e4SLinus Torvalds /*
25171da177e4SLinus Torvalds  * Verify that the stack growth is acceptable and
25181da177e4SLinus Torvalds  * update accounting. This is shared with both the
25191da177e4SLinus Torvalds  * grow-up and grow-down cases.
25201da177e4SLinus Torvalds  */
25211be7107fSHugh Dickins static int acct_stack_growth(struct vm_area_struct *vma,
25221be7107fSHugh Dickins 			     unsigned long size, unsigned long grow)
25231da177e4SLinus Torvalds {
25241da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
25251be7107fSHugh Dickins 	unsigned long new_start;
25261da177e4SLinus Torvalds 
25271da177e4SLinus Torvalds 	/* address space limit tests */
252884638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vma->vm_flags, grow))
25291da177e4SLinus Torvalds 		return -ENOMEM;
25301da177e4SLinus Torvalds 
25311da177e4SLinus Torvalds 	/* Stack limit test */
253224c79d8eSKrzysztof Opasiak 	if (size > rlimit(RLIMIT_STACK))
25331da177e4SLinus Torvalds 		return -ENOMEM;
25341da177e4SLinus Torvalds 
25351da177e4SLinus Torvalds 	/* mlock limit tests */
2536c5d8a364SMiaohe Lin 	if (mlock_future_check(mm, vma->vm_flags, grow << PAGE_SHIFT))
25371da177e4SLinus Torvalds 		return -ENOMEM;
25381da177e4SLinus Torvalds 
25390d59a01bSAdam Litke 	/* Check to ensure the stack will not grow into a hugetlb-only region */
25400d59a01bSAdam Litke 	new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
25410d59a01bSAdam Litke 			vma->vm_end - size;
25420d59a01bSAdam Litke 	if (is_hugepage_only_range(vma->vm_mm, new_start, size))
25430d59a01bSAdam Litke 		return -EFAULT;
25440d59a01bSAdam Litke 
25451da177e4SLinus Torvalds 	/*
25461da177e4SLinus Torvalds 	 * Overcommit..  This must be the final test, as it will
25471da177e4SLinus Torvalds 	 * update security statistics.
25481da177e4SLinus Torvalds 	 */
254905fa199dSHugh Dickins 	if (security_vm_enough_memory_mm(mm, grow))
25501da177e4SLinus Torvalds 		return -ENOMEM;
25511da177e4SLinus Torvalds 
25521da177e4SLinus Torvalds 	return 0;
25531da177e4SLinus Torvalds }
25541da177e4SLinus Torvalds 
255546dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
25561da177e4SLinus Torvalds /*
255746dea3d0SHugh Dickins  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
255846dea3d0SHugh Dickins  * vma is the last one with address > vma->vm_end.  Have to extend vma.
25591da177e4SLinus Torvalds  */
256046dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address)
25611da177e4SLinus Torvalds {
256209357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
25631be7107fSHugh Dickins 	struct vm_area_struct *next;
25641be7107fSHugh Dickins 	unsigned long gap_addr;
256512352d3cSKonstantin Khlebnikov 	int error = 0;
2566*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
25671da177e4SLinus Torvalds 
2568*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
25691da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSUP))
25701da177e4SLinus Torvalds 		return -EFAULT;
25711da177e4SLinus Torvalds 
2572bd726c90SHelge Deller 	/* Guard against exceeding limits of the address space. */
25731be7107fSHugh Dickins 	address &= PAGE_MASK;
257437511fb5SHelge Deller 	if (address >= (TASK_SIZE & PAGE_MASK))
257512352d3cSKonstantin Khlebnikov 		return -ENOMEM;
2576bd726c90SHelge Deller 	address += PAGE_SIZE;
257712352d3cSKonstantin Khlebnikov 
25781be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
25791be7107fSHugh Dickins 	gap_addr = address + stack_guard_gap;
2580bd726c90SHelge Deller 
2581bd726c90SHelge Deller 	/* Guard against overflow */
2582bd726c90SHelge Deller 	if (gap_addr < address || gap_addr > TASK_SIZE)
2583bd726c90SHelge Deller 		gap_addr = TASK_SIZE;
2584bd726c90SHelge Deller 
25851be7107fSHugh Dickins 	next = vma->vm_next;
25863122e80eSAnshuman Khandual 	if (next && next->vm_start < gap_addr && vma_is_accessible(next)) {
25871be7107fSHugh Dickins 		if (!(next->vm_flags & VM_GROWSUP))
25881be7107fSHugh Dickins 			return -ENOMEM;
25891be7107fSHugh Dickins 		/* Check that both stack segments have the same anon_vma? */
25901be7107fSHugh Dickins 	}
25911be7107fSHugh Dickins 
2592*d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
25931da177e4SLinus Torvalds 		return -ENOMEM;
25941da177e4SLinus Torvalds 
2595*d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
2596*d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
2597*d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
2598*d4af56c5SLiam R. Howlett 		return -ENOMEM;
2599*d4af56c5SLiam R. Howlett 	}
2600*d4af56c5SLiam R. Howlett 
26011da177e4SLinus Torvalds 	/*
26021da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2603c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
26041da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
26051da177e4SLinus Torvalds 	 */
260612352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
26071da177e4SLinus Torvalds 
26081da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
26091da177e4SLinus Torvalds 	if (address > vma->vm_end) {
26101da177e4SLinus Torvalds 		unsigned long size, grow;
26111da177e4SLinus Torvalds 
26121da177e4SLinus Torvalds 		size = address - vma->vm_start;
26131da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
26141da177e4SLinus Torvalds 
261542c36f63SHugh Dickins 		error = -ENOMEM;
261642c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
26171da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
26183af9e859SEric B Munson 			if (!error) {
26194128997bSMichel Lespinasse 				/*
26204128997bSMichel Lespinasse 				 * vma_gap_update() doesn't support concurrent
2621c1e8d7c6SMichel Lespinasse 				 * updates, but we only hold a shared mmap_lock
26224128997bSMichel Lespinasse 				 * lock here, so we need to protect against
26234128997bSMichel Lespinasse 				 * concurrent vma expansions.
262412352d3cSKonstantin Khlebnikov 				 * anon_vma_lock_write() doesn't help here, as
26254128997bSMichel Lespinasse 				 * we don't guarantee that all growable vmas
26264128997bSMichel Lespinasse 				 * in a mm share the same root anon vma.
26274128997bSMichel Lespinasse 				 * So, we reuse mm->page_table_lock to guard
26284128997bSMichel Lespinasse 				 * against concurrent vma expansions.
26294128997bSMichel Lespinasse 				 */
263009357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
263187e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
263209357814SOleg Nesterov 					mm->locked_vm += grow;
263384638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2634bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
26351da177e4SLinus Torvalds 				vma->vm_end = address;
2636*d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2637*d4af56c5SLiam R. Howlett 				vma_mas_store(vma, &mas);
2638bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2639d3737187SMichel Lespinasse 				if (vma->vm_next)
2640d3737187SMichel Lespinasse 					vma_gap_update(vma->vm_next);
2641d3737187SMichel Lespinasse 				else
26421be7107fSHugh Dickins 					mm->highest_vm_end = vm_end_gap(vma);
264309357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
26444128997bSMichel Lespinasse 
26453af9e859SEric B Munson 				perf_event_mmap(vma);
26463af9e859SEric B Munson 			}
26471da177e4SLinus Torvalds 		}
264842c36f63SHugh Dickins 	}
264912352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2650c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
265109357814SOleg Nesterov 	validate_mm(mm);
2652*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
2653*d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
26541da177e4SLinus Torvalds 	return error;
26551da177e4SLinus Torvalds }
265646dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
265746dea3d0SHugh Dickins 
26581da177e4SLinus Torvalds /*
26591da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
26601da177e4SLinus Torvalds  */
2661d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma,
2662b6a2fea3SOllie Wild 				   unsigned long address)
26631da177e4SLinus Torvalds {
266409357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
26651be7107fSHugh Dickins 	struct vm_area_struct *prev;
26660a1d5299SJann Horn 	int error = 0;
2667*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
26681da177e4SLinus Torvalds 
2669*d4af56c5SLiam R. Howlett 	validate_mm(mm);
26708869477aSEric Paris 	address &= PAGE_MASK;
26710a1d5299SJann Horn 	if (address < mmap_min_addr)
26720a1d5299SJann Horn 		return -EPERM;
26738869477aSEric Paris 
26741be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
26751be7107fSHugh Dickins 	prev = vma->vm_prev;
26761be7107fSHugh Dickins 	/* Check that both stack segments have the same anon_vma? */
267732e4e6d5SOleg Nesterov 	if (prev && !(prev->vm_flags & VM_GROWSDOWN) &&
26783122e80eSAnshuman Khandual 			vma_is_accessible(prev)) {
267932e4e6d5SOleg Nesterov 		if (address - prev->vm_end < stack_guard_gap)
268032e4e6d5SOleg Nesterov 			return -ENOMEM;
26811be7107fSHugh Dickins 	}
26821be7107fSHugh Dickins 
2683*d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
268412352d3cSKonstantin Khlebnikov 		return -ENOMEM;
26851da177e4SLinus Torvalds 
2686*d4af56c5SLiam R. Howlett 	/* We must make sure the anon_vma is allocated. */
2687*d4af56c5SLiam R. Howlett 	if (unlikely(anon_vma_prepare(vma))) {
2688*d4af56c5SLiam R. Howlett 		mas_destroy(&mas);
2689*d4af56c5SLiam R. Howlett 		return -ENOMEM;
2690*d4af56c5SLiam R. Howlett 	}
2691*d4af56c5SLiam R. Howlett 
26921da177e4SLinus Torvalds 	/*
26931da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2694c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
26951da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
26961da177e4SLinus Torvalds 	 */
269712352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
26981da177e4SLinus Torvalds 
26991da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
27001da177e4SLinus Torvalds 	if (address < vma->vm_start) {
27011da177e4SLinus Torvalds 		unsigned long size, grow;
27021da177e4SLinus Torvalds 
27031da177e4SLinus Torvalds 		size = vma->vm_end - address;
27041da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
27051da177e4SLinus Torvalds 
2706a626ca6aSLinus Torvalds 		error = -ENOMEM;
2707a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
27081da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
27091da177e4SLinus Torvalds 			if (!error) {
27104128997bSMichel Lespinasse 				/*
27114128997bSMichel Lespinasse 				 * vma_gap_update() doesn't support concurrent
2712c1e8d7c6SMichel Lespinasse 				 * updates, but we only hold a shared mmap_lock
27134128997bSMichel Lespinasse 				 * lock here, so we need to protect against
27144128997bSMichel Lespinasse 				 * concurrent vma expansions.
271512352d3cSKonstantin Khlebnikov 				 * anon_vma_lock_write() doesn't help here, as
27164128997bSMichel Lespinasse 				 * we don't guarantee that all growable vmas
27174128997bSMichel Lespinasse 				 * in a mm share the same root anon vma.
27184128997bSMichel Lespinasse 				 * So, we reuse mm->page_table_lock to guard
27194128997bSMichel Lespinasse 				 * against concurrent vma expansions.
27204128997bSMichel Lespinasse 				 */
272109357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
272287e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
272309357814SOleg Nesterov 					mm->locked_vm += grow;
272484638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2725bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
27261da177e4SLinus Torvalds 				vma->vm_start = address;
27271da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
2728*d4af56c5SLiam R. Howlett 				/* Overwrite old entry in mtree. */
2729*d4af56c5SLiam R. Howlett 				vma_mas_store(vma, &mas);
2730bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2731d3737187SMichel Lespinasse 				vma_gap_update(vma);
273209357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
27334128997bSMichel Lespinasse 
27343af9e859SEric B Munson 				perf_event_mmap(vma);
27351da177e4SLinus Torvalds 			}
27361da177e4SLinus Torvalds 		}
2737a626ca6aSLinus Torvalds 	}
273812352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
2739c791576cSYang Shi 	khugepaged_enter_vma(vma, vma->vm_flags);
274009357814SOleg Nesterov 	validate_mm(mm);
2741*d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
27421da177e4SLinus Torvalds 	return error;
27431da177e4SLinus Torvalds }
27441da177e4SLinus Torvalds 
27451be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */
27461be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT;
27471be7107fSHugh Dickins 
27481be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p)
27491be7107fSHugh Dickins {
27501be7107fSHugh Dickins 	unsigned long val;
27511be7107fSHugh Dickins 	char *endptr;
27521be7107fSHugh Dickins 
27531be7107fSHugh Dickins 	val = simple_strtoul(p, &endptr, 10);
27541be7107fSHugh Dickins 	if (!*endptr)
27551be7107fSHugh Dickins 		stack_guard_gap = val << PAGE_SHIFT;
27561be7107fSHugh Dickins 
2757e6d09493SRandy Dunlap 	return 1;
27581be7107fSHugh Dickins }
27591be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap);
27601be7107fSHugh Dickins 
2761b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
2762b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2763b6a2fea3SOllie Wild {
2764b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
2765b6a2fea3SOllie Wild }
2766b6a2fea3SOllie Wild 
2767b6a2fea3SOllie Wild struct vm_area_struct *
2768b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr)
2769b6a2fea3SOllie Wild {
2770b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
2771b6a2fea3SOllie Wild 
2772b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
2773b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
2774b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
2775b6a2fea3SOllie Wild 		return vma;
27764d45e75aSJann Horn 	if (!prev || expand_stack(prev, addr))
2777b6a2fea3SOllie Wild 		return NULL;
2778cea10a19SMichel Lespinasse 	if (prev->vm_flags & VM_LOCKED)
2779fc05f566SKirill A. Shutemov 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2780b6a2fea3SOllie Wild 	return prev;
2781b6a2fea3SOllie Wild }
2782b6a2fea3SOllie Wild #else
2783b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2784b6a2fea3SOllie Wild {
2785b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
2786b6a2fea3SOllie Wild }
2787b6a2fea3SOllie Wild 
27881da177e4SLinus Torvalds struct vm_area_struct *
27891da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr)
27901da177e4SLinus Torvalds {
27911da177e4SLinus Torvalds 	struct vm_area_struct *vma;
27921da177e4SLinus Torvalds 	unsigned long start;
27931da177e4SLinus Torvalds 
27941da177e4SLinus Torvalds 	addr &= PAGE_MASK;
27951da177e4SLinus Torvalds 	vma = find_vma(mm, addr);
27961da177e4SLinus Torvalds 	if (!vma)
27971da177e4SLinus Torvalds 		return NULL;
27981da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
27991da177e4SLinus Torvalds 		return vma;
28001da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
28011da177e4SLinus Torvalds 		return NULL;
28021da177e4SLinus Torvalds 	start = vma->vm_start;
28031da177e4SLinus Torvalds 	if (expand_stack(vma, addr))
28041da177e4SLinus Torvalds 		return NULL;
2805cea10a19SMichel Lespinasse 	if (vma->vm_flags & VM_LOCKED)
2806fc05f566SKirill A. Shutemov 		populate_vma_page_range(vma, addr, start, NULL);
28071da177e4SLinus Torvalds 	return vma;
28081da177e4SLinus Torvalds }
28091da177e4SLinus Torvalds #endif
28101da177e4SLinus Torvalds 
2811e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma);
2812e1d6d01aSJesse Barnes 
28132c0b3814SHugh Dickins /*
28142c0b3814SHugh Dickins  * Ok - we have the memory areas we should free on the vma list,
28152c0b3814SHugh Dickins  * so release them, and do the vma updates.
28161da177e4SLinus Torvalds  *
28172c0b3814SHugh Dickins  * Called with the mm semaphore held.
28181da177e4SLinus Torvalds  */
28192c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
28201da177e4SLinus Torvalds {
28214f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
28224f74d2c8SLinus Torvalds 
2823365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
2824365e9c87SHugh Dickins 	update_hiwater_vm(mm);
28252c0b3814SHugh Dickins 	do {
2826ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
28271da177e4SLinus Torvalds 
28284f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
28294f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
283084638335SKonstantin Khlebnikov 		vm_stat_account(mm, vma->vm_flags, -nrpages);
2831a8fb5618SHugh Dickins 		vma = remove_vma(vma);
2832146425a3SHugh Dickins 	} while (vma);
28334f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
28341da177e4SLinus Torvalds 	validate_mm(mm);
28351da177e4SLinus Torvalds }
28361da177e4SLinus Torvalds 
28371da177e4SLinus Torvalds /*
28381da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
28391da177e4SLinus Torvalds  *
2840f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
28411da177e4SLinus Torvalds  */
28421da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm,
2843e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
2844e0da382cSHugh Dickins 		unsigned long start, unsigned long end)
28451da177e4SLinus Torvalds {
28463903b55aSLiam R. Howlett 	struct vm_area_struct *next = vma_next(mm, prev);
2847d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
28481da177e4SLinus Torvalds 
28491da177e4SLinus Torvalds 	lru_add_drain();
2850a72afd87SWill Deacon 	tlb_gather_mmu(&tlb, mm);
2851365e9c87SHugh Dickins 	update_hiwater_rss(mm);
28524f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, start, end);
2853d16dfc55SPeter Zijlstra 	free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
28546ee8630eSHugh Dickins 				 next ? next->vm_start : USER_PGTABLES_CEILING);
2855ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
28561da177e4SLinus Torvalds }
28571da177e4SLinus Torvalds 
28581da177e4SLinus Torvalds /*
28591da177e4SLinus Torvalds  * Create a list of vma's touched by the unmap, removing them from the mm's
28601da177e4SLinus Torvalds  * vma list as we go..
28611da177e4SLinus Torvalds  */
2862246c320aSKirill A. Shutemov static bool
2863*d4af56c5SLiam R. Howlett detach_vmas_to_be_unmapped(struct mm_struct *mm, struct ma_state *mas,
2864*d4af56c5SLiam R. Howlett 	struct vm_area_struct *vma, struct vm_area_struct *prev,
2865*d4af56c5SLiam R. Howlett 	unsigned long end)
28661da177e4SLinus Torvalds {
28671da177e4SLinus Torvalds 	struct vm_area_struct **insertion_point;
28681da177e4SLinus Torvalds 	struct vm_area_struct *tail_vma = NULL;
28691da177e4SLinus Torvalds 
28701da177e4SLinus Torvalds 	insertion_point = (prev ? &prev->vm_next : &mm->mmap);
2871297c5eeeSLinus Torvalds 	vma->vm_prev = NULL;
2872*d4af56c5SLiam R. Howlett 	mas_set_range(mas, vma->vm_start, end - 1);
2873*d4af56c5SLiam R. Howlett 	mas_store_prealloc(mas, NULL);
28741da177e4SLinus Torvalds 	do {
2875d3737187SMichel Lespinasse 		vma_rb_erase(vma, &mm->mm_rb);
2876a213e5cfSHugh Dickins 		if (vma->vm_flags & VM_LOCKED)
2877a213e5cfSHugh Dickins 			mm->locked_vm -= vma_pages(vma);
28781da177e4SLinus Torvalds 		mm->map_count--;
28791da177e4SLinus Torvalds 		tail_vma = vma;
28801da177e4SLinus Torvalds 		vma = vma->vm_next;
28811da177e4SLinus Torvalds 	} while (vma && vma->vm_start < end);
28821da177e4SLinus Torvalds 	*insertion_point = vma;
2883d3737187SMichel Lespinasse 	if (vma) {
2884297c5eeeSLinus Torvalds 		vma->vm_prev = prev;
2885d3737187SMichel Lespinasse 		vma_gap_update(vma);
2886d3737187SMichel Lespinasse 	} else
28871be7107fSHugh Dickins 		mm->highest_vm_end = prev ? vm_end_gap(prev) : 0;
28881da177e4SLinus Torvalds 	tail_vma->vm_next = NULL;
2889615d6e87SDavidlohr Bueso 
2890615d6e87SDavidlohr Bueso 	/* Kill the cache */
2891615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
2892246c320aSKirill A. Shutemov 
2893246c320aSKirill A. Shutemov 	/*
2894246c320aSKirill A. Shutemov 	 * Do not downgrade mmap_lock if we are next to VM_GROWSDOWN or
2895246c320aSKirill A. Shutemov 	 * VM_GROWSUP VMA. Such VMAs can change their size under
2896246c320aSKirill A. Shutemov 	 * down_read(mmap_lock) and collide with the VMA we are about to unmap.
2897246c320aSKirill A. Shutemov 	 */
2898246c320aSKirill A. Shutemov 	if (vma && (vma->vm_flags & VM_GROWSDOWN))
2899246c320aSKirill A. Shutemov 		return false;
2900246c320aSKirill A. Shutemov 	if (prev && (prev->vm_flags & VM_GROWSUP))
2901246c320aSKirill A. Shutemov 		return false;
2902246c320aSKirill A. Shutemov 	return true;
29031da177e4SLinus Torvalds }
29041da177e4SLinus Torvalds 
29051da177e4SLinus Torvalds /*
2906def5efe0SDavid Rientjes  * __split_vma() bypasses sysctl_max_map_count checking.  We use this where it
2907def5efe0SDavid Rientjes  * has already been checked or doesn't make sense to fail.
29081da177e4SLinus Torvalds  */
2909def5efe0SDavid Rientjes int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
29101da177e4SLinus Torvalds 		unsigned long addr, int new_below)
29111da177e4SLinus Torvalds {
29121da177e4SLinus Torvalds 	struct vm_area_struct *new;
2913e3975891SChen Gang 	int err;
2914*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
29151da177e4SLinus Torvalds 
2916dd3b614fSDmitry Safonov 	if (vma->vm_ops && vma->vm_ops->may_split) {
2917dd3b614fSDmitry Safonov 		err = vma->vm_ops->may_split(vma, addr);
291831383c68SDan Williams 		if (err)
291931383c68SDan Williams 			return err;
292031383c68SDan Williams 	}
29211da177e4SLinus Torvalds 
29223928d4f5SLinus Torvalds 	new = vm_area_dup(vma);
29231da177e4SLinus Torvalds 	if (!new)
2924e3975891SChen Gang 		return -ENOMEM;
29251da177e4SLinus Torvalds 
29261da177e4SLinus Torvalds 	if (new_below)
29271da177e4SLinus Torvalds 		new->vm_end = addr;
29281da177e4SLinus Torvalds 	else {
29291da177e4SLinus Torvalds 		new->vm_start = addr;
29301da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
29311da177e4SLinus Torvalds 	}
29321da177e4SLinus Torvalds 
2933ef0855d3SOleg Nesterov 	err = vma_dup_policy(vma, new);
2934ef0855d3SOleg Nesterov 	if (err)
29355beb4930SRik van Riel 		goto out_free_vma;
29361da177e4SLinus Torvalds 
2937c4ea95d7SDaniel Forrest 	err = anon_vma_clone(new, vma);
2938c4ea95d7SDaniel Forrest 	if (err)
29395beb4930SRik van Riel 		goto out_free_mpol;
29405beb4930SRik van Riel 
2941e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
29421da177e4SLinus Torvalds 		get_file(new->vm_file);
29431da177e4SLinus Torvalds 
29441da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
29451da177e4SLinus Torvalds 		new->vm_ops->open(new);
29461da177e4SLinus Torvalds 
29471da177e4SLinus Torvalds 	if (new_below)
29485beb4930SRik van Riel 		err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
29491da177e4SLinus Torvalds 			((addr - new->vm_start) >> PAGE_SHIFT), new);
29501da177e4SLinus Torvalds 	else
29515beb4930SRik van Riel 		err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
29521da177e4SLinus Torvalds 
29535beb4930SRik van Riel 	/* Success. */
29545beb4930SRik van Riel 	if (!err)
29551da177e4SLinus Torvalds 		return 0;
29565beb4930SRik van Riel 
2957*d4af56c5SLiam R. Howlett 	/* Avoid vm accounting in close() operation */
2958*d4af56c5SLiam R. Howlett 	new->vm_start = new->vm_end;
2959*d4af56c5SLiam R. Howlett 	new->vm_pgoff = 0;
29605beb4930SRik van Riel 	/* Clean everything up if vma_adjust failed. */
296158927533SRik van Riel 	if (new->vm_ops && new->vm_ops->close)
29625beb4930SRik van Riel 		new->vm_ops->close(new);
2963e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
29645beb4930SRik van Riel 		fput(new->vm_file);
29652aeadc30SAndrea Arcangeli 	unlink_anon_vmas(new);
29665beb4930SRik van Riel  out_free_mpol:
2967ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new));
29685beb4930SRik van Riel  out_free_vma:
29693928d4f5SLinus Torvalds 	vm_area_free(new);
2970*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
29715beb4930SRik van Riel 	return err;
29721da177e4SLinus Torvalds }
29731da177e4SLinus Torvalds 
2974659ace58SKOSAKI Motohiro /*
2975659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2976659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2977659ace58SKOSAKI Motohiro  */
2978659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2979659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2980659ace58SKOSAKI Motohiro {
2981659ace58SKOSAKI Motohiro 	if (mm->map_count >= sysctl_max_map_count)
2982659ace58SKOSAKI Motohiro 		return -ENOMEM;
2983659ace58SKOSAKI Motohiro 
2984659ace58SKOSAKI Motohiro 	return __split_vma(mm, vma, addr, new_below);
2985659ace58SKOSAKI Motohiro }
2986659ace58SKOSAKI Motohiro 
29871da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds
29881da177e4SLinus Torvalds  * what needs doing, and the areas themselves, which do the
29891da177e4SLinus Torvalds  * work.  This now handles partial unmappings.
29901da177e4SLinus Torvalds  * Jeremy Fitzhardinge <jeremy@goop.org>
29911da177e4SLinus Torvalds  */
299285a06835SYang Shi int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2993dd2283f2SYang Shi 		struct list_head *uf, bool downgrade)
29941da177e4SLinus Torvalds {
29951da177e4SLinus Torvalds 	unsigned long end;
2996146425a3SHugh Dickins 	struct vm_area_struct *vma, *prev, *last;
2997*d4af56c5SLiam R. Howlett 	int error = -ENOMEM;
2998*d4af56c5SLiam R. Howlett 	MA_STATE(mas, &mm->mm_mt, 0, 0);
29991da177e4SLinus Torvalds 
3000de1741a1SAlexander Kuleshov 	if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
30011da177e4SLinus Torvalds 		return -EINVAL;
30021da177e4SLinus Torvalds 
3003cc71aba3Svishnu.ps 	len = PAGE_ALIGN(len);
30045a28fc94SDave Hansen 	end = start + len;
3005cc71aba3Svishnu.ps 	if (len == 0)
30061da177e4SLinus Torvalds 		return -EINVAL;
30071da177e4SLinus Torvalds 
30085a28fc94SDave Hansen 	/*
30095a28fc94SDave Hansen 	 * arch_unmap() might do unmaps itself.  It must be called
30105a28fc94SDave Hansen 	 * and finish any rbtree manipulation before this code
30115a28fc94SDave Hansen 	 * runs and also starts to manipulate the rbtree.
30125a28fc94SDave Hansen 	 */
30135a28fc94SDave Hansen 	arch_unmap(mm, start, end);
30145a28fc94SDave Hansen 
301578d9cf60SGonzalo Matias Juarez Tello 	/* Find the first overlapping VMA where start < vma->vm_end */
301678d9cf60SGonzalo Matias Juarez Tello 	vma = find_vma_intersection(mm, start, end);
3017146425a3SHugh Dickins 	if (!vma)
30181da177e4SLinus Torvalds 		return 0;
3019*d4af56c5SLiam R. Howlett 
3020*d4af56c5SLiam R. Howlett 	if (mas_preallocate(&mas, vma, GFP_KERNEL))
3021*d4af56c5SLiam R. Howlett 		return -ENOMEM;
30229be34c9dSLinus Torvalds 	prev = vma->vm_prev;
30231da177e4SLinus Torvalds 
30241da177e4SLinus Torvalds 	/*
30251da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
30261da177e4SLinus Torvalds 	 *
30271da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
30281da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
30291da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
30301da177e4SLinus Torvalds 	 */
3031146425a3SHugh Dickins 	if (start > vma->vm_start) {
3032659ace58SKOSAKI Motohiro 
3033659ace58SKOSAKI Motohiro 		/*
3034659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
3035659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
3036659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
3037659ace58SKOSAKI Motohiro 		 */
3038659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
3039*d4af56c5SLiam R. Howlett 			goto map_count_exceeded;
3040659ace58SKOSAKI Motohiro 
3041659ace58SKOSAKI Motohiro 		error = __split_vma(mm, vma, start, 0);
30421da177e4SLinus Torvalds 		if (error)
3043*d4af56c5SLiam R. Howlett 			goto split_failed;
3044146425a3SHugh Dickins 		prev = vma;
30451da177e4SLinus Torvalds 	}
30461da177e4SLinus Torvalds 
30471da177e4SLinus Torvalds 	/* Does it split the last one? */
30481da177e4SLinus Torvalds 	last = find_vma(mm, end);
30491da177e4SLinus Torvalds 	if (last && end > last->vm_start) {
3050*d4af56c5SLiam R. Howlett 		error = __split_vma(mm, last, end, 1);
30511da177e4SLinus Torvalds 		if (error)
3052*d4af56c5SLiam R. Howlett 			goto split_failed;
30531da177e4SLinus Torvalds 	}
30543903b55aSLiam R. Howlett 	vma = vma_next(mm, prev);
30551da177e4SLinus Torvalds 
30562376dd7cSAndrea Arcangeli 	if (unlikely(uf)) {
30572376dd7cSAndrea Arcangeli 		/*
30582376dd7cSAndrea Arcangeli 		 * If userfaultfd_unmap_prep returns an error the vmas
3059f0953a1bSIngo Molnar 		 * will remain split, but userland will get a
30602376dd7cSAndrea Arcangeli 		 * highly unexpected error anyway. This is no
30612376dd7cSAndrea Arcangeli 		 * different than the case where the first of the two
30622376dd7cSAndrea Arcangeli 		 * __split_vma fails, but we don't undo the first
30632376dd7cSAndrea Arcangeli 		 * split, despite we could. This is unlikely enough
30642376dd7cSAndrea Arcangeli 		 * failure that it's not worth optimizing it for.
30652376dd7cSAndrea Arcangeli 		 */
3066*d4af56c5SLiam R. Howlett 		error = userfaultfd_unmap_prep(vma, start, end, uf);
30672376dd7cSAndrea Arcangeli 		if (error)
3068*d4af56c5SLiam R. Howlett 			goto userfaultfd_error;
30692376dd7cSAndrea Arcangeli 	}
30702376dd7cSAndrea Arcangeli 
3071dd2283f2SYang Shi 	/* Detach vmas from rbtree */
3072*d4af56c5SLiam R. Howlett 	if (!detach_vmas_to_be_unmapped(mm, &mas, vma, prev, end))
3073246c320aSKirill A. Shutemov 		downgrade = false;
30741da177e4SLinus Torvalds 
3075dd2283f2SYang Shi 	if (downgrade)
3076d8ed45c5SMichel Lespinasse 		mmap_write_downgrade(mm);
3077dd2283f2SYang Shi 
3078dd2283f2SYang Shi 	unmap_region(mm, vma, prev, start, end);
3079dd2283f2SYang Shi 
30801da177e4SLinus Torvalds 	/* Fix up all other VM information */
30812c0b3814SHugh Dickins 	remove_vma_list(mm, vma);
30821da177e4SLinus Torvalds 
3083dd2283f2SYang Shi 	return downgrade ? 1 : 0;
3084*d4af56c5SLiam R. Howlett 
3085*d4af56c5SLiam R. Howlett map_count_exceeded:
3086*d4af56c5SLiam R. Howlett split_failed:
3087*d4af56c5SLiam R. Howlett userfaultfd_error:
3088*d4af56c5SLiam R. Howlett 	mas_destroy(&mas);
3089*d4af56c5SLiam R. Howlett 	return error;
30901da177e4SLinus Torvalds }
30911da177e4SLinus Torvalds 
3092dd2283f2SYang Shi int do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
3093dd2283f2SYang Shi 	      struct list_head *uf)
3094dd2283f2SYang Shi {
3095dd2283f2SYang Shi 	return __do_munmap(mm, start, len, uf, false);
3096dd2283f2SYang Shi }
3097dd2283f2SYang Shi 
3098dd2283f2SYang Shi static int __vm_munmap(unsigned long start, size_t len, bool downgrade)
3099a46ef99dSLinus Torvalds {
3100a46ef99dSLinus Torvalds 	int ret;
3101bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
3102897ab3e0SMike Rapoport 	LIST_HEAD(uf);
3103a46ef99dSLinus Torvalds 
3104d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
3105ae798783SMichal Hocko 		return -EINTR;
3106ae798783SMichal Hocko 
3107dd2283f2SYang Shi 	ret = __do_munmap(mm, start, len, &uf, downgrade);
3108dd2283f2SYang Shi 	/*
3109c1e8d7c6SMichel Lespinasse 	 * Returning 1 indicates mmap_lock is downgraded.
3110dd2283f2SYang Shi 	 * But 1 is not legal return value of vm_munmap() and munmap(), reset
3111dd2283f2SYang Shi 	 * it to 0 before return.
3112dd2283f2SYang Shi 	 */
3113dd2283f2SYang Shi 	if (ret == 1) {
3114d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
3115dd2283f2SYang Shi 		ret = 0;
3116dd2283f2SYang Shi 	} else
3117d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
3118dd2283f2SYang Shi 
3119897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
3120a46ef99dSLinus Torvalds 	return ret;
3121a46ef99dSLinus Torvalds }
3122dd2283f2SYang Shi 
3123dd2283f2SYang Shi int vm_munmap(unsigned long start, size_t len)
3124dd2283f2SYang Shi {
3125dd2283f2SYang Shi 	return __vm_munmap(start, len, false);
3126dd2283f2SYang Shi }
3127a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
3128a46ef99dSLinus Torvalds 
31296a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
31301da177e4SLinus Torvalds {
3131ce18d171SCatalin Marinas 	addr = untagged_addr(addr);
3132dd2283f2SYang Shi 	return __vm_munmap(addr, len, true);
31331da177e4SLinus Torvalds }
31341da177e4SLinus Torvalds 
3135c8d78c18SKirill A. Shutemov 
3136c8d78c18SKirill A. Shutemov /*
3137c8d78c18SKirill A. Shutemov  * Emulation of deprecated remap_file_pages() syscall.
3138c8d78c18SKirill A. Shutemov  */
3139c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
3140c8d78c18SKirill A. Shutemov 		unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
3141c8d78c18SKirill A. Shutemov {
3142c8d78c18SKirill A. Shutemov 
3143c8d78c18SKirill A. Shutemov 	struct mm_struct *mm = current->mm;
3144c8d78c18SKirill A. Shutemov 	struct vm_area_struct *vma;
3145c8d78c18SKirill A. Shutemov 	unsigned long populate = 0;
3146c8d78c18SKirill A. Shutemov 	unsigned long ret = -EINVAL;
3147c8d78c18SKirill A. Shutemov 	struct file *file;
3148c8d78c18SKirill A. Shutemov 
3149ee65728eSMike Rapoport 	pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/mm/remap_file_pages.rst.\n",
3150c8d78c18SKirill A. Shutemov 		     current->comm, current->pid);
3151c8d78c18SKirill A. Shutemov 
3152c8d78c18SKirill A. Shutemov 	if (prot)
3153c8d78c18SKirill A. Shutemov 		return ret;
3154c8d78c18SKirill A. Shutemov 	start = start & PAGE_MASK;
3155c8d78c18SKirill A. Shutemov 	size = size & PAGE_MASK;
3156c8d78c18SKirill A. Shutemov 
3157c8d78c18SKirill A. Shutemov 	if (start + size <= start)
3158c8d78c18SKirill A. Shutemov 		return ret;
3159c8d78c18SKirill A. Shutemov 
3160c8d78c18SKirill A. Shutemov 	/* Does pgoff wrap? */
3161c8d78c18SKirill A. Shutemov 	if (pgoff + (size >> PAGE_SHIFT) < pgoff)
3162c8d78c18SKirill A. Shutemov 		return ret;
3163c8d78c18SKirill A. Shutemov 
3164d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
3165dc0ef0dfSMichal Hocko 		return -EINTR;
3166dc0ef0dfSMichal Hocko 
31679b593cb2SLiam R. Howlett 	vma = vma_lookup(mm, start);
3168c8d78c18SKirill A. Shutemov 
3169c8d78c18SKirill A. Shutemov 	if (!vma || !(vma->vm_flags & VM_SHARED))
3170c8d78c18SKirill A. Shutemov 		goto out;
3171c8d78c18SKirill A. Shutemov 
317248f7df32SKirill A. Shutemov 	if (start + size > vma->vm_end) {
317348f7df32SKirill A. Shutemov 		struct vm_area_struct *next;
317448f7df32SKirill A. Shutemov 
317548f7df32SKirill A. Shutemov 		for (next = vma->vm_next; next; next = next->vm_next) {
317648f7df32SKirill A. Shutemov 			/* hole between vmas ? */
317748f7df32SKirill A. Shutemov 			if (next->vm_start != next->vm_prev->vm_end)
317848f7df32SKirill A. Shutemov 				goto out;
317948f7df32SKirill A. Shutemov 
318048f7df32SKirill A. Shutemov 			if (next->vm_file != vma->vm_file)
318148f7df32SKirill A. Shutemov 				goto out;
318248f7df32SKirill A. Shutemov 
318348f7df32SKirill A. Shutemov 			if (next->vm_flags != vma->vm_flags)
318448f7df32SKirill A. Shutemov 				goto out;
318548f7df32SKirill A. Shutemov 
318648f7df32SKirill A. Shutemov 			if (start + size <= next->vm_end)
318748f7df32SKirill A. Shutemov 				break;
318848f7df32SKirill A. Shutemov 		}
318948f7df32SKirill A. Shutemov 
319048f7df32SKirill A. Shutemov 		if (!next)
3191c8d78c18SKirill A. Shutemov 			goto out;
3192c8d78c18SKirill A. Shutemov 	}
3193c8d78c18SKirill A. Shutemov 
3194c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
3195c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
3196c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
3197c8d78c18SKirill A. Shutemov 
3198c8d78c18SKirill A. Shutemov 	flags &= MAP_NONBLOCK;
3199c8d78c18SKirill A. Shutemov 	flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
3200fce000b1SLiam Howlett 	if (vma->vm_flags & VM_LOCKED)
3201c8d78c18SKirill A. Shutemov 		flags |= MAP_LOCKED;
320248f7df32SKirill A. Shutemov 
3203c8d78c18SKirill A. Shutemov 	file = get_file(vma->vm_file);
320445e55300SPeter Collingbourne 	ret = do_mmap(vma->vm_file, start, size,
3205897ab3e0SMike Rapoport 			prot, flags, pgoff, &populate, NULL);
3206c8d78c18SKirill A. Shutemov 	fput(file);
3207c8d78c18SKirill A. Shutemov out:
3208d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3209c8d78c18SKirill A. Shutemov 	if (populate)
3210c8d78c18SKirill A. Shutemov 		mm_populate(ret, populate);
3211c8d78c18SKirill A. Shutemov 	if (!IS_ERR_VALUE(ret))
3212c8d78c18SKirill A. Shutemov 		ret = 0;
3213c8d78c18SKirill A. Shutemov 	return ret;
3214c8d78c18SKirill A. Shutemov }
3215c8d78c18SKirill A. Shutemov 
32161da177e4SLinus Torvalds /*
32171da177e4SLinus Torvalds  *  this is really a simplified "do_mmap".  it only handles
32181da177e4SLinus Torvalds  *  anonymous maps.  eventually we may be able to do some
32191da177e4SLinus Torvalds  *  brk-specific accounting here.
32201da177e4SLinus Torvalds  */
3221bb177a73SMichal Hocko static int do_brk_flags(unsigned long addr, unsigned long len, unsigned long flags, struct list_head *uf)
32221da177e4SLinus Torvalds {
32231da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
32241da177e4SLinus Torvalds 	struct vm_area_struct *vma, *prev;
32251da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
32261da177e4SLinus Torvalds 	pgoff_t pgoff = addr >> PAGE_SHIFT;
32273a459756SKirill Korotaev 	int error;
3228ff68dac6SGaowei Pu 	unsigned long mapped_addr;
3229*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
32301da177e4SLinus Torvalds 
323116e72e9bSDenys Vlasenko 	/* Until we need other flags, refuse anything except VM_EXEC. */
323216e72e9bSDenys Vlasenko 	if ((flags & (~VM_EXEC)) != 0)
323316e72e9bSDenys Vlasenko 		return -EINVAL;
323416e72e9bSDenys Vlasenko 	flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
32353a459756SKirill Korotaev 
3236ff68dac6SGaowei Pu 	mapped_addr = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
3237ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(mapped_addr))
3238ff68dac6SGaowei Pu 		return mapped_addr;
32393a459756SKirill Korotaev 
3240363ee17fSDavidlohr Bueso 	error = mlock_future_check(mm, mm->def_flags, len);
3241363ee17fSDavidlohr Bueso 	if (error)
3242363ee17fSDavidlohr Bueso 		return error;
32431da177e4SLinus Torvalds 
3244fb8090b6SLiam R. Howlett 	/* Clear old maps, set up prev, rb_link, rb_parent, and uf */
3245fb8090b6SLiam R. Howlett 	if (munmap_vma_range(mm, addr, len, &prev, &rb_link, &rb_parent, uf))
32461da177e4SLinus Torvalds 		return -ENOMEM;
32471da177e4SLinus Torvalds 
32481da177e4SLinus Torvalds 	/* Check against address space limits *after* clearing old maps... */
324984638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
32501da177e4SLinus Torvalds 		return -ENOMEM;
32511da177e4SLinus Torvalds 
32521da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
32531da177e4SLinus Torvalds 		return -ENOMEM;
32541da177e4SLinus Torvalds 
3255191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
32561da177e4SLinus Torvalds 		return -ENOMEM;
32571da177e4SLinus Torvalds 
32581da177e4SLinus Torvalds 	/* Can we just expand an old private anonymous mapping? */
3259ba470de4SRik van Riel 	vma = vma_merge(mm, prev, addr, addr + len, flags,
32609a10064fSColin Cross 			NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
3261ba470de4SRik van Riel 	if (vma)
32621da177e4SLinus Torvalds 		goto out;
32631da177e4SLinus Torvalds 
32641da177e4SLinus Torvalds 	/*
32651da177e4SLinus Torvalds 	 * create a vma struct for an anonymous mapping
32661da177e4SLinus Torvalds 	 */
3267490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
32681da177e4SLinus Torvalds 	if (!vma) {
32691da177e4SLinus Torvalds 		vm_unacct_memory(len >> PAGE_SHIFT);
32701da177e4SLinus Torvalds 		return -ENOMEM;
32711da177e4SLinus Torvalds 	}
32721da177e4SLinus Torvalds 
3273bfd40eafSKirill A. Shutemov 	vma_set_anonymous(vma);
32741da177e4SLinus Torvalds 	vma->vm_start = addr;
32751da177e4SLinus Torvalds 	vma->vm_end = addr + len;
32761da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
32771da177e4SLinus Torvalds 	vma->vm_flags = flags;
32783ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
3279*d4af56c5SLiam R. Howlett 	if (vma_link(mm, vma, prev, rb_link, rb_parent))
3280*d4af56c5SLiam R. Howlett 		goto no_vma_link;
3281*d4af56c5SLiam R. Howlett 
32821da177e4SLinus Torvalds out:
32833af9e859SEric B Munson 	perf_event_mmap(vma);
32841da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
328584638335SKonstantin Khlebnikov 	mm->data_vm += len >> PAGE_SHIFT;
3286128557ffSMichel Lespinasse 	if (flags & VM_LOCKED)
3287ba470de4SRik van Riel 		mm->locked_vm += (len >> PAGE_SHIFT);
3288d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
3289*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
32905d22fc25SLinus Torvalds 	return 0;
3291*d4af56c5SLiam R. Howlett 
3292*d4af56c5SLiam R. Howlett no_vma_link:
3293*d4af56c5SLiam R. Howlett 	vm_area_free(vma);
3294*d4af56c5SLiam R. Howlett 	return -ENOMEM;
32951da177e4SLinus Torvalds }
32961da177e4SLinus Torvalds 
3297bb177a73SMichal Hocko int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags)
3298e4eb1ff6SLinus Torvalds {
3299e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
3300bb177a73SMichal Hocko 	unsigned long len;
33015d22fc25SLinus Torvalds 	int ret;
3302128557ffSMichel Lespinasse 	bool populate;
3303897ab3e0SMike Rapoport 	LIST_HEAD(uf);
3304e4eb1ff6SLinus Torvalds 
3305bb177a73SMichal Hocko 	len = PAGE_ALIGN(request);
3306bb177a73SMichal Hocko 	if (len < request)
3307bb177a73SMichal Hocko 		return -ENOMEM;
3308bb177a73SMichal Hocko 	if (!len)
3309bb177a73SMichal Hocko 		return 0;
3310bb177a73SMichal Hocko 
3311d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
33122d6c9282SMichal Hocko 		return -EINTR;
33132d6c9282SMichal Hocko 
3314897ab3e0SMike Rapoport 	ret = do_brk_flags(addr, len, flags, &uf);
3315128557ffSMichel Lespinasse 	populate = ((mm->def_flags & VM_LOCKED) != 0);
3316d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3317897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
33185d22fc25SLinus Torvalds 	if (populate && !ret)
3319128557ffSMichel Lespinasse 		mm_populate(addr, len);
3320e4eb1ff6SLinus Torvalds 	return ret;
3321e4eb1ff6SLinus Torvalds }
332216e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags);
332316e72e9bSDenys Vlasenko 
332416e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len)
332516e72e9bSDenys Vlasenko {
332616e72e9bSDenys Vlasenko 	return vm_brk_flags(addr, len, 0);
332716e72e9bSDenys Vlasenko }
3328e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
33291da177e4SLinus Torvalds 
33301da177e4SLinus Torvalds /* Release all mmaps. */
33311da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
33321da177e4SLinus Torvalds {
3333d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
3334ba470de4SRik van Riel 	struct vm_area_struct *vma;
33351da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
33361da177e4SLinus Torvalds 
3337d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
3338cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
3339d6dd61c8SJeremy Fitzhardinge 
334027ae357fSDavid Rientjes 	if (unlikely(mm_is_oom_victim(mm))) {
334127ae357fSDavid Rientjes 		/*
334227ae357fSDavid Rientjes 		 * Manually reap the mm to free as much memory as possible.
334327ae357fSDavid Rientjes 		 * Then, as the oom reaper does, set MMF_OOM_SKIP to disregard
3344c1e8d7c6SMichel Lespinasse 		 * this mm from further consideration.  Taking mm->mmap_lock for
334527ae357fSDavid Rientjes 		 * write after setting MMF_OOM_SKIP will guarantee that the oom
3346c1e8d7c6SMichel Lespinasse 		 * reaper will not run on this mm again after mmap_lock is
334727ae357fSDavid Rientjes 		 * dropped.
334827ae357fSDavid Rientjes 		 *
3349c1e8d7c6SMichel Lespinasse 		 * Nothing can be holding mm->mmap_lock here and the above call
335027ae357fSDavid Rientjes 		 * to mmu_notifier_release(mm) ensures mmu notifier callbacks in
335127ae357fSDavid Rientjes 		 * __oom_reap_task_mm() will not block.
335227ae357fSDavid Rientjes 		 */
335393065ac7SMichal Hocko 		(void)__oom_reap_task_mm(mm);
335427ae357fSDavid Rientjes 		set_bit(MMF_OOM_SKIP, &mm->flags);
335527ae357fSDavid Rientjes 	}
335627ae357fSDavid Rientjes 
335764591e86SSuren Baghdasaryan 	mmap_write_lock(mm);
33589480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
33599480c53eSJeremy Fitzhardinge 
3360ba470de4SRik van Riel 	vma = mm->mmap;
336164591e86SSuren Baghdasaryan 	if (!vma) {
336264591e86SSuren Baghdasaryan 		/* Can happen if dup_mmap() received an OOM */
336364591e86SSuren Baghdasaryan 		mmap_write_unlock(mm);
33649480c53eSJeremy Fitzhardinge 		return;
336564591e86SSuren Baghdasaryan 	}
33669480c53eSJeremy Fitzhardinge 
33671da177e4SLinus Torvalds 	lru_add_drain();
33681da177e4SLinus Torvalds 	flush_cache_mm(mm);
3369d8b45053SWill Deacon 	tlb_gather_mmu_fullmm(&tlb, mm);
3370901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
3371e0da382cSHugh Dickins 	/* Use -1 here to ensure all VMAs in the mm are unmapped */
33724f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, 0, -1);
33736ee8630eSHugh Dickins 	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
3374ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
33751da177e4SLinus Torvalds 
337664591e86SSuren Baghdasaryan 	/* Walk the list again, actually closing and freeing it. */
33774f74d2c8SLinus Torvalds 	while (vma) {
33784f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
33794f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
3380a8fb5618SHugh Dickins 		vma = remove_vma(vma);
33810a3b3c25SPaul E. McKenney 		cond_resched();
33824f74d2c8SLinus Torvalds 	}
3383*d4af56c5SLiam R. Howlett 
3384*d4af56c5SLiam R. Howlett 	trace_exit_mmap(mm);
3385*d4af56c5SLiam R. Howlett 	__mt_destroy(&mm->mm_mt);
3386f798a1d4SSuren Baghdasaryan 	mm->mmap = NULL;
338764591e86SSuren Baghdasaryan 	mmap_write_unlock(mm);
33884f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
33891da177e4SLinus Torvalds }
33901da177e4SLinus Torvalds 
33911da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
33921da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
3393c8c06efaSDavidlohr Bueso  * then i_mmap_rwsem is taken here.
33941da177e4SLinus Torvalds  */
33951da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
33961da177e4SLinus Torvalds {
33976597d783SHugh Dickins 	struct vm_area_struct *prev;
33981da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
3399*d4af56c5SLiam R. Howlett 	unsigned long start = vma->vm_start;
3400*d4af56c5SLiam R. Howlett 	struct vm_area_struct *overlap = NULL;
3401*d4af56c5SLiam R. Howlett 	unsigned long charged = vma_pages(vma);
34021da177e4SLinus Torvalds 
3403c9d13f5fSChen Gang 	if (find_vma_links(mm, vma->vm_start, vma->vm_end,
3404c9d13f5fSChen Gang 			   &prev, &rb_link, &rb_parent))
3405*d4af56c5SLiam R. Howlett 
3406*d4af56c5SLiam R. Howlett 	if (find_vma_intersection(mm, vma->vm_start, vma->vm_end))
3407c9d13f5fSChen Gang 		return -ENOMEM;
3408*d4af56c5SLiam R. Howlett 
3409*d4af56c5SLiam R. Howlett 	overlap = mt_find(&mm->mm_mt, &start, vma->vm_end - 1);
3410*d4af56c5SLiam R. Howlett 	if (overlap) {
3411*d4af56c5SLiam R. Howlett 
3412*d4af56c5SLiam R. Howlett 		pr_err("Found vma ending at %lu\n", start - 1);
3413*d4af56c5SLiam R. Howlett 		pr_err("vma : %lu => %lu-%lu\n", (unsigned long)overlap,
3414*d4af56c5SLiam R. Howlett 				overlap->vm_start, overlap->vm_end - 1);
3415*d4af56c5SLiam R. Howlett #if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
3416*d4af56c5SLiam R. Howlett 		mt_dump(&mm->mm_mt);
3417*d4af56c5SLiam R. Howlett #endif
3418*d4af56c5SLiam R. Howlett 		BUG();
3419*d4af56c5SLiam R. Howlett 	}
3420*d4af56c5SLiam R. Howlett 
3421c9d13f5fSChen Gang 	if ((vma->vm_flags & VM_ACCOUNT) &&
3422*d4af56c5SLiam R. Howlett 	     security_vm_enough_memory_mm(mm, charged))
3423c9d13f5fSChen Gang 		return -ENOMEM;
3424c9d13f5fSChen Gang 
34251da177e4SLinus Torvalds 	/*
34261da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
34271da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
34281da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
34291da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
34301da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
34311da177e4SLinus Torvalds 	 *
34321da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
34331da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
34341da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
34358332326eSLiao Pingfang 	 * Similarly in do_mmap and in do_brk_flags.
34361da177e4SLinus Torvalds 	 */
34378a9cc3b5SOleg Nesterov 	if (vma_is_anonymous(vma)) {
34381da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
34391da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
34401da177e4SLinus Torvalds 	}
34412b144498SSrikar Dronamraju 
3442*d4af56c5SLiam R. Howlett 	if (vma_link(mm, vma, prev, rb_link, rb_parent)) {
3443*d4af56c5SLiam R. Howlett 		vm_unacct_memory(charged);
3444*d4af56c5SLiam R. Howlett 		return -ENOMEM;
3445*d4af56c5SLiam R. Howlett 	}
3446*d4af56c5SLiam R. Howlett 
34471da177e4SLinus Torvalds 	return 0;
34481da177e4SLinus Torvalds }
34491da177e4SLinus Torvalds 
34501da177e4SLinus Torvalds /*
34511da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
34521da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
34531da177e4SLinus Torvalds  */
34541da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
345538a76013SMichel Lespinasse 	unsigned long addr, unsigned long len, pgoff_t pgoff,
345638a76013SMichel Lespinasse 	bool *need_rmap_locks)
34571da177e4SLinus Torvalds {
34581da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
34591da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
34601da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
34611da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
34621da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
3463948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
3464*d4af56c5SLiam R. Howlett 	unsigned long index = addr;
34651da177e4SLinus Torvalds 
3466*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
34671da177e4SLinus Torvalds 	/*
34681da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
34691da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
34701da177e4SLinus Torvalds 	 */
3471ce75799bSOleg Nesterov 	if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
34721da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
3473948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
3474948f017bSAndrea Arcangeli 	}
34751da177e4SLinus Torvalds 
34766597d783SHugh Dickins 	if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
34776597d783SHugh Dickins 		return NULL;	/* should never get here */
3478*d4af56c5SLiam R. Howlett 	if (mt_find(&mm->mm_mt, &index, addr+len - 1))
3479*d4af56c5SLiam R. Howlett 		BUG();
34801da177e4SLinus Torvalds 	new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
348119a809afSAndrea Arcangeli 			    vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
34825c26f6acSSuren Baghdasaryan 			    vma->vm_userfaultfd_ctx, anon_vma_name(vma));
34831da177e4SLinus Torvalds 	if (new_vma) {
34841da177e4SLinus Torvalds 		/*
34851da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
34861da177e4SLinus Torvalds 		 */
3487948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
3488948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
3489948f017bSAndrea Arcangeli 			/*
3490948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
3491948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
3492948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
3493948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
3494948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
3495948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
3496948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
3497948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
3498948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
3499948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
3500948f017bSAndrea Arcangeli 			 */
350181d1b09cSSasha Levin 			VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
350238a76013SMichel Lespinasse 			*vmap = vma = new_vma;
3503108d6642SMichel Lespinasse 		}
350438a76013SMichel Lespinasse 		*need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
35051da177e4SLinus Torvalds 	} else {
35063928d4f5SLinus Torvalds 		new_vma = vm_area_dup(vma);
3507e3975891SChen Gang 		if (!new_vma)
3508e3975891SChen Gang 			goto out;
35091da177e4SLinus Torvalds 		new_vma->vm_start = addr;
35101da177e4SLinus Torvalds 		new_vma->vm_end = addr + len;
35111da177e4SLinus Torvalds 		new_vma->vm_pgoff = pgoff;
3512ef0855d3SOleg Nesterov 		if (vma_dup_policy(vma, new_vma))
3513523d4e20SMichel Lespinasse 			goto out_free_vma;
3514523d4e20SMichel Lespinasse 		if (anon_vma_clone(new_vma, vma))
3515523d4e20SMichel Lespinasse 			goto out_free_mempol;
3516e9714acfSKonstantin Khlebnikov 		if (new_vma->vm_file)
35171da177e4SLinus Torvalds 			get_file(new_vma->vm_file);
35181da177e4SLinus Torvalds 		if (new_vma->vm_ops && new_vma->vm_ops->open)
35191da177e4SLinus Torvalds 			new_vma->vm_ops->open(new_vma);
35201da177e4SLinus Torvalds 		vma_link(mm, new_vma, prev, rb_link, rb_parent);
352138a76013SMichel Lespinasse 		*need_rmap_locks = false;
35221da177e4SLinus Torvalds 	}
3523*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
35241da177e4SLinus Torvalds 	return new_vma;
35255beb4930SRik van Riel 
35265beb4930SRik van Riel out_free_mempol:
3527ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new_vma));
35285beb4930SRik van Riel out_free_vma:
35293928d4f5SLinus Torvalds 	vm_area_free(new_vma);
3530e3975891SChen Gang out:
3531*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
35325beb4930SRik van Riel 	return NULL;
35331da177e4SLinus Torvalds }
3534119f657cSakpm@osdl.org 
3535119f657cSakpm@osdl.org /*
3536119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
3537119f657cSakpm@osdl.org  * number of pages
3538119f657cSakpm@osdl.org  */
353984638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3540119f657cSakpm@osdl.org {
354184638335SKonstantin Khlebnikov 	if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
354284638335SKonstantin Khlebnikov 		return false;
3543119f657cSakpm@osdl.org 
3544d977d56cSKonstantin Khlebnikov 	if (is_data_mapping(flags) &&
3545d977d56cSKonstantin Khlebnikov 	    mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3546f4fcd558SKonstantin Khlebnikov 		/* Workaround for Valgrind */
3547f4fcd558SKonstantin Khlebnikov 		if (rlimit(RLIMIT_DATA) == 0 &&
3548f4fcd558SKonstantin Khlebnikov 		    mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3549f4fcd558SKonstantin Khlebnikov 			return true;
355057a7702bSDavid Woodhouse 
355157a7702bSDavid Woodhouse 		pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits%s.\n",
3552d977d56cSKonstantin Khlebnikov 			     current->comm, current->pid,
3553d977d56cSKonstantin Khlebnikov 			     (mm->data_vm + npages) << PAGE_SHIFT,
355457a7702bSDavid Woodhouse 			     rlimit(RLIMIT_DATA),
355557a7702bSDavid Woodhouse 			     ignore_rlimit_data ? "" : " or use boot option ignore_rlimit_data");
355657a7702bSDavid Woodhouse 
355757a7702bSDavid Woodhouse 		if (!ignore_rlimit_data)
3558d977d56cSKonstantin Khlebnikov 			return false;
3559d977d56cSKonstantin Khlebnikov 	}
3560119f657cSakpm@osdl.org 
356184638335SKonstantin Khlebnikov 	return true;
356284638335SKonstantin Khlebnikov }
356384638335SKonstantin Khlebnikov 
356484638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
356584638335SKonstantin Khlebnikov {
35667866076bSPeng Liu 	WRITE_ONCE(mm->total_vm, READ_ONCE(mm->total_vm)+npages);
356784638335SKonstantin Khlebnikov 
3568d977d56cSKonstantin Khlebnikov 	if (is_exec_mapping(flags))
356984638335SKonstantin Khlebnikov 		mm->exec_vm += npages;
3570d977d56cSKonstantin Khlebnikov 	else if (is_stack_mapping(flags))
357184638335SKonstantin Khlebnikov 		mm->stack_vm += npages;
3572d977d56cSKonstantin Khlebnikov 	else if (is_data_mapping(flags))
357384638335SKonstantin Khlebnikov 		mm->data_vm += npages;
3574119f657cSakpm@osdl.org }
3575fa5dc22fSRoland McGrath 
3576b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf);
3577a62c34bdSAndy Lutomirski 
3578a62c34bdSAndy Lutomirski /*
3579a62c34bdSAndy Lutomirski  * Having a close hook prevents vma merging regardless of flags.
3580a62c34bdSAndy Lutomirski  */
3581a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma)
3582a62c34bdSAndy Lutomirski {
3583a62c34bdSAndy Lutomirski }
3584a62c34bdSAndy Lutomirski 
3585a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma)
3586a62c34bdSAndy Lutomirski {
3587a62c34bdSAndy Lutomirski 	return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3588a62c34bdSAndy Lutomirski }
3589a62c34bdSAndy Lutomirski 
359014d07113SBrian Geffon static int special_mapping_mremap(struct vm_area_struct *new_vma)
3591b059a453SDmitry Safonov {
3592b059a453SDmitry Safonov 	struct vm_special_mapping *sm = new_vma->vm_private_data;
3593b059a453SDmitry Safonov 
3594280e87e9SDmitry Safonov 	if (WARN_ON_ONCE(current->mm != new_vma->vm_mm))
3595280e87e9SDmitry Safonov 		return -EFAULT;
3596280e87e9SDmitry Safonov 
3597b059a453SDmitry Safonov 	if (sm->mremap)
3598b059a453SDmitry Safonov 		return sm->mremap(sm, new_vma);
3599280e87e9SDmitry Safonov 
3600b059a453SDmitry Safonov 	return 0;
3601b059a453SDmitry Safonov }
3602b059a453SDmitry Safonov 
3603871402e0SDmitry Safonov static int special_mapping_split(struct vm_area_struct *vma, unsigned long addr)
3604871402e0SDmitry Safonov {
3605871402e0SDmitry Safonov 	/*
3606871402e0SDmitry Safonov 	 * Forbid splitting special mappings - kernel has expectations over
3607871402e0SDmitry Safonov 	 * the number of pages in mapping. Together with VM_DONTEXPAND
3608871402e0SDmitry Safonov 	 * the size of vma should stay the same over the special mapping's
3609871402e0SDmitry Safonov 	 * lifetime.
3610871402e0SDmitry Safonov 	 */
3611871402e0SDmitry Safonov 	return -EINVAL;
3612871402e0SDmitry Safonov }
3613871402e0SDmitry Safonov 
3614a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = {
3615a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3616a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3617b059a453SDmitry Safonov 	.mremap = special_mapping_mremap,
3618a62c34bdSAndy Lutomirski 	.name = special_mapping_name,
3619af34ebebSDmitry Safonov 	/* vDSO code relies that VVAR can't be accessed remotely */
3620af34ebebSDmitry Safonov 	.access = NULL,
3621871402e0SDmitry Safonov 	.may_split = special_mapping_split,
3622a62c34bdSAndy Lutomirski };
3623a62c34bdSAndy Lutomirski 
3624a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = {
3625a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3626a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3627a62c34bdSAndy Lutomirski };
3628fa5dc22fSRoland McGrath 
3629b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf)
3630fa5dc22fSRoland McGrath {
363111bac800SDave Jiang 	struct vm_area_struct *vma = vmf->vma;
3632b1d0e4f5SNick Piggin 	pgoff_t pgoff;
3633fa5dc22fSRoland McGrath 	struct page **pages;
3634fa5dc22fSRoland McGrath 
3635f872f540SAndy Lutomirski 	if (vma->vm_ops == &legacy_special_mapping_vmops) {
3636a62c34bdSAndy Lutomirski 		pages = vma->vm_private_data;
3637f872f540SAndy Lutomirski 	} else {
3638f872f540SAndy Lutomirski 		struct vm_special_mapping *sm = vma->vm_private_data;
3639f872f540SAndy Lutomirski 
3640f872f540SAndy Lutomirski 		if (sm->fault)
364111bac800SDave Jiang 			return sm->fault(sm, vmf->vma, vmf);
3642f872f540SAndy Lutomirski 
3643f872f540SAndy Lutomirski 		pages = sm->pages;
3644f872f540SAndy Lutomirski 	}
3645a62c34bdSAndy Lutomirski 
36468a9cc3b5SOleg Nesterov 	for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3647b1d0e4f5SNick Piggin 		pgoff--;
3648fa5dc22fSRoland McGrath 
3649fa5dc22fSRoland McGrath 	if (*pages) {
3650fa5dc22fSRoland McGrath 		struct page *page = *pages;
3651fa5dc22fSRoland McGrath 		get_page(page);
3652b1d0e4f5SNick Piggin 		vmf->page = page;
3653b1d0e4f5SNick Piggin 		return 0;
3654fa5dc22fSRoland McGrath 	}
3655fa5dc22fSRoland McGrath 
3656b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
3657fa5dc22fSRoland McGrath }
3658fa5dc22fSRoland McGrath 
3659a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping(
3660a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3661fa5dc22fSRoland McGrath 	unsigned long addr, unsigned long len,
366227f28b97SChen Gang 	unsigned long vm_flags, void *priv,
366327f28b97SChen Gang 	const struct vm_operations_struct *ops)
3664fa5dc22fSRoland McGrath {
3665462e635eSTavis Ormandy 	int ret;
3666fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
3667fa5dc22fSRoland McGrath 
3668*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
3669490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
3670fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
36713935ed6aSStefani Seibold 		return ERR_PTR(-ENOMEM);
3672fa5dc22fSRoland McGrath 
3673fa5dc22fSRoland McGrath 	vma->vm_start = addr;
3674fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
3675fa5dc22fSRoland McGrath 
3676d9104d1cSCyrill Gorcunov 	vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
36771fc09228SHugh Dickins 	vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
36783ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3679fa5dc22fSRoland McGrath 
3680a62c34bdSAndy Lutomirski 	vma->vm_ops = ops;
3681a62c34bdSAndy Lutomirski 	vma->vm_private_data = priv;
3682fa5dc22fSRoland McGrath 
3683462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
3684462e635eSTavis Ormandy 	if (ret)
3685462e635eSTavis Ormandy 		goto out;
3686fa5dc22fSRoland McGrath 
368784638335SKonstantin Khlebnikov 	vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3688fa5dc22fSRoland McGrath 
3689cdd6c482SIngo Molnar 	perf_event_mmap(vma);
3690089dd79dSPeter Zijlstra 
3691*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
36923935ed6aSStefani Seibold 	return vma;
3693462e635eSTavis Ormandy 
3694462e635eSTavis Ormandy out:
36953928d4f5SLinus Torvalds 	vm_area_free(vma);
3696*d4af56c5SLiam R. Howlett 	validate_mm_mt(mm);
36973935ed6aSStefani Seibold 	return ERR_PTR(ret);
36983935ed6aSStefani Seibold }
36993935ed6aSStefani Seibold 
37002eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma,
37012eefd878SDmitry Safonov 	const struct vm_special_mapping *sm)
37022eefd878SDmitry Safonov {
37032eefd878SDmitry Safonov 	return vma->vm_private_data == sm &&
37042eefd878SDmitry Safonov 		(vma->vm_ops == &special_mapping_vmops ||
37052eefd878SDmitry Safonov 		 vma->vm_ops == &legacy_special_mapping_vmops);
37062eefd878SDmitry Safonov }
37072eefd878SDmitry Safonov 
3708a62c34bdSAndy Lutomirski /*
3709c1e8d7c6SMichel Lespinasse  * Called with mm->mmap_lock held for writing.
3710a62c34bdSAndy Lutomirski  * Insert a new vma covering the given region, with the given flags.
3711a62c34bdSAndy Lutomirski  * Its pages are supplied by the given array of struct page *.
3712a62c34bdSAndy Lutomirski  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3713a62c34bdSAndy Lutomirski  * The region past the last page supplied will always produce SIGBUS.
3714a62c34bdSAndy Lutomirski  * The array pointer and the pages it points to are assumed to stay alive
3715a62c34bdSAndy Lutomirski  * for as long as this mapping might exist.
3716a62c34bdSAndy Lutomirski  */
3717a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping(
3718a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3719a62c34bdSAndy Lutomirski 	unsigned long addr, unsigned long len,
3720a62c34bdSAndy Lutomirski 	unsigned long vm_flags, const struct vm_special_mapping *spec)
3721a62c34bdSAndy Lutomirski {
372227f28b97SChen Gang 	return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
372327f28b97SChen Gang 					&special_mapping_vmops);
3724a62c34bdSAndy Lutomirski }
3725a62c34bdSAndy Lutomirski 
37263935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm,
37273935ed6aSStefani Seibold 			    unsigned long addr, unsigned long len,
37283935ed6aSStefani Seibold 			    unsigned long vm_flags, struct page **pages)
37293935ed6aSStefani Seibold {
3730a62c34bdSAndy Lutomirski 	struct vm_area_struct *vma = __install_special_mapping(
373127f28b97SChen Gang 		mm, addr, len, vm_flags, (void *)pages,
373227f28b97SChen Gang 		&legacy_special_mapping_vmops);
37333935ed6aSStefani Seibold 
373414bd5b45SDuan Jiong 	return PTR_ERR_OR_ZERO(vma);
3735fa5dc22fSRoland McGrath }
37367906d00cSAndrea Arcangeli 
37377906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
37387906d00cSAndrea Arcangeli 
3739454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
37407906d00cSAndrea Arcangeli {
3741f808c13fSDavidlohr Bueso 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
37427906d00cSAndrea Arcangeli 		/*
37437906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
37447906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
37457906d00cSAndrea Arcangeli 		 */
3746da1c55f1SMichel Lespinasse 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
37477906d00cSAndrea Arcangeli 		/*
37487906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
37495a505085SIngo Molnar 		 * anon_vma->root->rwsem. If some other vma in this mm shares
37507906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
37517906d00cSAndrea Arcangeli 		 *
37527906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
37537906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
37545a505085SIngo Molnar 		 * anon_vma->root->rwsem.
37557906d00cSAndrea Arcangeli 		 */
37567906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
3757f808c13fSDavidlohr Bueso 				       &anon_vma->root->rb_root.rb_root.rb_node))
37587906d00cSAndrea Arcangeli 			BUG();
37597906d00cSAndrea Arcangeli 	}
37607906d00cSAndrea Arcangeli }
37617906d00cSAndrea Arcangeli 
3762454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
37637906d00cSAndrea Arcangeli {
37647906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
37657906d00cSAndrea Arcangeli 		/*
37667906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
37677906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
37687906d00cSAndrea Arcangeli 		 *
37697906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
37707906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
37717906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
37727906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
37737906d00cSAndrea Arcangeli 		 */
37747906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
37757906d00cSAndrea Arcangeli 			BUG();
3776da1c55f1SMichel Lespinasse 		down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_lock);
37777906d00cSAndrea Arcangeli 	}
37787906d00cSAndrea Arcangeli }
37797906d00cSAndrea Arcangeli 
37807906d00cSAndrea Arcangeli /*
37817906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
37827906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
37837906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
37847906d00cSAndrea Arcangeli  *
3785c1e8d7c6SMichel Lespinasse  * The caller must take the mmap_lock in write mode before calling
37867906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
3787c1e8d7c6SMichel Lespinasse  * mmap_lock until mm_drop_all_locks() returns.
37887906d00cSAndrea Arcangeli  *
3789c1e8d7c6SMichel Lespinasse  * mmap_lock in write mode is required in order to block all operations
37907906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
379127ba0644SKirill A. Shutemov  * altering the vma layout. It's also needed in write mode to avoid new
37927906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
37937906d00cSAndrea Arcangeli  *
37947906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
37957906d00cSAndrea Arcangeli  * or it would deadlock.
37967906d00cSAndrea Arcangeli  *
3797bf181b9fSMichel Lespinasse  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
37987906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
37997906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
38007906d00cSAndrea Arcangeli  *
380188f306b6SKirill A. Shutemov  * We take locks in following order, accordingly to comment at beginning
380288f306b6SKirill A. Shutemov  * of mm/rmap.c:
380388f306b6SKirill A. Shutemov  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
380488f306b6SKirill A. Shutemov  *     hugetlb mapping);
380588f306b6SKirill A. Shutemov  *   - all i_mmap_rwsem locks;
380688f306b6SKirill A. Shutemov  *   - all anon_vma->rwseml
380788f306b6SKirill A. Shutemov  *
380888f306b6SKirill A. Shutemov  * We can take all locks within these types randomly because the VM code
380988f306b6SKirill A. Shutemov  * doesn't nest them and we protected from parallel mm_take_all_locks() by
381088f306b6SKirill A. Shutemov  * mm_all_locks_mutex.
38117906d00cSAndrea Arcangeli  *
38127906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
38137906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
38147906d00cSAndrea Arcangeli  *
38157906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
38167906d00cSAndrea Arcangeli  */
38177906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
38187906d00cSAndrea Arcangeli {
38197906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
38205beb4930SRik van Riel 	struct anon_vma_chain *avc;
38217906d00cSAndrea Arcangeli 
3822325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
38237906d00cSAndrea Arcangeli 
38247906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
38257906d00cSAndrea Arcangeli 
38267906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
38277906d00cSAndrea Arcangeli 		if (signal_pending(current))
38287906d00cSAndrea Arcangeli 			goto out_unlock;
382988f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
383088f306b6SKirill A. Shutemov 				is_vm_hugetlb_page(vma))
383188f306b6SKirill A. Shutemov 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
383288f306b6SKirill A. Shutemov 	}
383388f306b6SKirill A. Shutemov 
383488f306b6SKirill A. Shutemov 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
383588f306b6SKirill A. Shutemov 		if (signal_pending(current))
383688f306b6SKirill A. Shutemov 			goto out_unlock;
383788f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
383888f306b6SKirill A. Shutemov 				!is_vm_hugetlb_page(vma))
3839454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
38407906d00cSAndrea Arcangeli 	}
38417cd5a02fSPeter Zijlstra 
38427cd5a02fSPeter Zijlstra 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
38437cd5a02fSPeter Zijlstra 		if (signal_pending(current))
38447cd5a02fSPeter Zijlstra 			goto out_unlock;
38457cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
38465beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
38475beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
38487cd5a02fSPeter Zijlstra 	}
38497cd5a02fSPeter Zijlstra 
3850584cff54SKautuk Consul 	return 0;
38517906d00cSAndrea Arcangeli 
38527906d00cSAndrea Arcangeli out_unlock:
38537906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
3854584cff54SKautuk Consul 	return -EINTR;
38557906d00cSAndrea Arcangeli }
38567906d00cSAndrea Arcangeli 
38577906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
38587906d00cSAndrea Arcangeli {
3859f808c13fSDavidlohr Bueso 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
38607906d00cSAndrea Arcangeli 		/*
38617906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
38627906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
38637906d00cSAndrea Arcangeli 		 *
38647906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
3865bf181b9fSMichel Lespinasse 		 * the vma so the users using the anon_vma->rb_root will
38667906d00cSAndrea Arcangeli 		 * never see our bitflag.
38677906d00cSAndrea Arcangeli 		 *
38687906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
38697906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
38705a505085SIngo Molnar 		 * anon_vma->root->rwsem.
38717906d00cSAndrea Arcangeli 		 */
38727906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
3873f808c13fSDavidlohr Bueso 					  &anon_vma->root->rb_root.rb_root.rb_node))
38747906d00cSAndrea Arcangeli 			BUG();
387508b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
38767906d00cSAndrea Arcangeli 	}
38777906d00cSAndrea Arcangeli }
38787906d00cSAndrea Arcangeli 
38797906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
38807906d00cSAndrea Arcangeli {
38817906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
38827906d00cSAndrea Arcangeli 		/*
38837906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
38847906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
38857906d00cSAndrea Arcangeli 		 */
388683cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
38877906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
38887906d00cSAndrea Arcangeli 					&mapping->flags))
38897906d00cSAndrea Arcangeli 			BUG();
38907906d00cSAndrea Arcangeli 	}
38917906d00cSAndrea Arcangeli }
38927906d00cSAndrea Arcangeli 
38937906d00cSAndrea Arcangeli /*
3894c1e8d7c6SMichel Lespinasse  * The mmap_lock cannot be released by the caller until
38957906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
38967906d00cSAndrea Arcangeli  */
38977906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
38987906d00cSAndrea Arcangeli {
38997906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
39005beb4930SRik van Riel 	struct anon_vma_chain *avc;
39017906d00cSAndrea Arcangeli 
3902325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
39037906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
39047906d00cSAndrea Arcangeli 
39057906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
39067906d00cSAndrea Arcangeli 		if (vma->anon_vma)
39075beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
39085beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
39097906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
39107906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
39117906d00cSAndrea Arcangeli 	}
39127906d00cSAndrea Arcangeli 
39137906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
39147906d00cSAndrea Arcangeli }
39158feae131SDavid Howells 
39168feae131SDavid Howells /*
39173edf41d8Sseokhoon.yoon  * initialise the percpu counter for VM
39188feae131SDavid Howells  */
39198feae131SDavid Howells void __init mmap_init(void)
39208feae131SDavid Howells {
392100a62ce9SKOSAKI Motohiro 	int ret;
392200a62ce9SKOSAKI Motohiro 
3923908c7f19STejun Heo 	ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
392400a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
39258feae131SDavid Howells }
3926c9b1d098SAndrew Shewmaker 
3927c9b1d098SAndrew Shewmaker /*
3928c9b1d098SAndrew Shewmaker  * Initialise sysctl_user_reserve_kbytes.
3929c9b1d098SAndrew Shewmaker  *
3930c9b1d098SAndrew Shewmaker  * This is intended to prevent a user from starting a single memory hogging
3931c9b1d098SAndrew Shewmaker  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3932c9b1d098SAndrew Shewmaker  * mode.
3933c9b1d098SAndrew Shewmaker  *
3934c9b1d098SAndrew Shewmaker  * The default value is min(3% of free memory, 128MB)
3935c9b1d098SAndrew Shewmaker  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3936c9b1d098SAndrew Shewmaker  */
39371640879aSAndrew Shewmaker static int init_user_reserve(void)
3938c9b1d098SAndrew Shewmaker {
3939c9b1d098SAndrew Shewmaker 	unsigned long free_kbytes;
3940c9b1d098SAndrew Shewmaker 
3941c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3942c9b1d098SAndrew Shewmaker 
3943c9b1d098SAndrew Shewmaker 	sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3944c9b1d098SAndrew Shewmaker 	return 0;
3945c9b1d098SAndrew Shewmaker }
3946a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve);
39474eeab4f5SAndrew Shewmaker 
39484eeab4f5SAndrew Shewmaker /*
39494eeab4f5SAndrew Shewmaker  * Initialise sysctl_admin_reserve_kbytes.
39504eeab4f5SAndrew Shewmaker  *
39514eeab4f5SAndrew Shewmaker  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
39524eeab4f5SAndrew Shewmaker  * to log in and kill a memory hogging process.
39534eeab4f5SAndrew Shewmaker  *
39544eeab4f5SAndrew Shewmaker  * Systems with more than 256MB will reserve 8MB, enough to recover
39554eeab4f5SAndrew Shewmaker  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
39564eeab4f5SAndrew Shewmaker  * only reserve 3% of free pages by default.
39574eeab4f5SAndrew Shewmaker  */
39581640879aSAndrew Shewmaker static int init_admin_reserve(void)
39594eeab4f5SAndrew Shewmaker {
39604eeab4f5SAndrew Shewmaker 	unsigned long free_kbytes;
39614eeab4f5SAndrew Shewmaker 
3962c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
39634eeab4f5SAndrew Shewmaker 
39644eeab4f5SAndrew Shewmaker 	sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
39654eeab4f5SAndrew Shewmaker 	return 0;
39664eeab4f5SAndrew Shewmaker }
3967a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve);
39681640879aSAndrew Shewmaker 
39691640879aSAndrew Shewmaker /*
39701640879aSAndrew Shewmaker  * Reinititalise user and admin reserves if memory is added or removed.
39711640879aSAndrew Shewmaker  *
39721640879aSAndrew Shewmaker  * The default user reserve max is 128MB, and the default max for the
39731640879aSAndrew Shewmaker  * admin reserve is 8MB. These are usually, but not always, enough to
39741640879aSAndrew Shewmaker  * enable recovery from a memory hogging process using login/sshd, a shell,
39751640879aSAndrew Shewmaker  * and tools like top. It may make sense to increase or even disable the
39761640879aSAndrew Shewmaker  * reserve depending on the existence of swap or variations in the recovery
39771640879aSAndrew Shewmaker  * tools. So, the admin may have changed them.
39781640879aSAndrew Shewmaker  *
39791640879aSAndrew Shewmaker  * If memory is added and the reserves have been eliminated or increased above
39801640879aSAndrew Shewmaker  * the default max, then we'll trust the admin.
39811640879aSAndrew Shewmaker  *
39821640879aSAndrew Shewmaker  * If memory is removed and there isn't enough free memory, then we
39831640879aSAndrew Shewmaker  * need to reset the reserves.
39841640879aSAndrew Shewmaker  *
39851640879aSAndrew Shewmaker  * Otherwise keep the reserve set by the admin.
39861640879aSAndrew Shewmaker  */
39871640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb,
39881640879aSAndrew Shewmaker 			     unsigned long action, void *data)
39891640879aSAndrew Shewmaker {
39901640879aSAndrew Shewmaker 	unsigned long tmp, free_kbytes;
39911640879aSAndrew Shewmaker 
39921640879aSAndrew Shewmaker 	switch (action) {
39931640879aSAndrew Shewmaker 	case MEM_ONLINE:
39941640879aSAndrew Shewmaker 		/* Default max is 128MB. Leave alone if modified by operator. */
39951640879aSAndrew Shewmaker 		tmp = sysctl_user_reserve_kbytes;
39961640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 17))
39971640879aSAndrew Shewmaker 			init_user_reserve();
39981640879aSAndrew Shewmaker 
39991640879aSAndrew Shewmaker 		/* Default max is 8MB.  Leave alone if modified by operator. */
40001640879aSAndrew Shewmaker 		tmp = sysctl_admin_reserve_kbytes;
40011640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 13))
40021640879aSAndrew Shewmaker 			init_admin_reserve();
40031640879aSAndrew Shewmaker 
40041640879aSAndrew Shewmaker 		break;
40051640879aSAndrew Shewmaker 	case MEM_OFFLINE:
4006c41f012aSMichal Hocko 		free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
40071640879aSAndrew Shewmaker 
40081640879aSAndrew Shewmaker 		if (sysctl_user_reserve_kbytes > free_kbytes) {
40091640879aSAndrew Shewmaker 			init_user_reserve();
40101640879aSAndrew Shewmaker 			pr_info("vm.user_reserve_kbytes reset to %lu\n",
40111640879aSAndrew Shewmaker 				sysctl_user_reserve_kbytes);
40121640879aSAndrew Shewmaker 		}
40131640879aSAndrew Shewmaker 
40141640879aSAndrew Shewmaker 		if (sysctl_admin_reserve_kbytes > free_kbytes) {
40151640879aSAndrew Shewmaker 			init_admin_reserve();
40161640879aSAndrew Shewmaker 			pr_info("vm.admin_reserve_kbytes reset to %lu\n",
40171640879aSAndrew Shewmaker 				sysctl_admin_reserve_kbytes);
40181640879aSAndrew Shewmaker 		}
40191640879aSAndrew Shewmaker 		break;
40201640879aSAndrew Shewmaker 	default:
40211640879aSAndrew Shewmaker 		break;
40221640879aSAndrew Shewmaker 	}
40231640879aSAndrew Shewmaker 	return NOTIFY_OK;
40241640879aSAndrew Shewmaker }
40251640879aSAndrew Shewmaker 
40261640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = {
40271640879aSAndrew Shewmaker 	.notifier_call = reserve_mem_notifier,
40281640879aSAndrew Shewmaker };
40291640879aSAndrew Shewmaker 
40301640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void)
40311640879aSAndrew Shewmaker {
40321640879aSAndrew Shewmaker 	if (register_hotmemory_notifier(&reserve_mem_nb))
4033b1de0d13SMitchel Humpherys 		pr_err("Failed registering memory add/remove notifier for admin reserve\n");
40341640879aSAndrew Shewmaker 
40351640879aSAndrew Shewmaker 	return 0;
40361640879aSAndrew Shewmaker }
4037a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier);
4038