xref: /openbmc/linux/mm/mmap.c (revision 67436193)
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 
841da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation.
851da177e4SLinus Torvalds  * this is due to the limited x86 page protection hardware.  The expected
861da177e4SLinus Torvalds  * behavior is in parens:
871da177e4SLinus Torvalds  *
881da177e4SLinus Torvalds  * map_type	prot
891da177e4SLinus Torvalds  *		PROT_NONE	PROT_READ	PROT_WRITE	PROT_EXEC
901da177e4SLinus Torvalds  * MAP_SHARED	r: (no) no	r: (yes) yes	r: (no) yes	r: (no) yes
911da177e4SLinus Torvalds  *		w: (no) no	w: (no) no	w: (yes) yes	w: (no) no
921da177e4SLinus Torvalds  *		x: (no) no	x: (no) yes	x: (no) yes	x: (yes) yes
931da177e4SLinus Torvalds  *
941da177e4SLinus Torvalds  * MAP_PRIVATE	r: (no) no	r: (yes) yes	r: (no) yes	r: (no) yes
951da177e4SLinus Torvalds  *		w: (no) no	w: (no) no	w: (copy) copy	w: (no) no
961da177e4SLinus Torvalds  *		x: (no) no	x: (no) yes	x: (no) yes	x: (yes) yes
9718107f8aSVladimir Murzin  *
9818107f8aSVladimir Murzin  * On arm64, PROT_EXEC has the following behaviour for both MAP_SHARED and
9918107f8aSVladimir Murzin  * MAP_PRIVATE (with Enhanced PAN supported):
10018107f8aSVladimir Murzin  *								r: (no) no
10118107f8aSVladimir Murzin  *								w: (no) no
10218107f8aSVladimir Murzin  *								x: (yes) yes
1031da177e4SLinus Torvalds  */
104ac34ceafSDaniel Micay pgprot_t protection_map[16] __ro_after_init = {
1056c862bd0SAnshuman Khandual 	[VM_NONE]					= __P000,
1066c862bd0SAnshuman Khandual 	[VM_READ]					= __P001,
1076c862bd0SAnshuman Khandual 	[VM_WRITE]					= __P010,
1086c862bd0SAnshuman Khandual 	[VM_WRITE | VM_READ]				= __P011,
1096c862bd0SAnshuman Khandual 	[VM_EXEC]					= __P100,
1106c862bd0SAnshuman Khandual 	[VM_EXEC | VM_READ]				= __P101,
1116c862bd0SAnshuman Khandual 	[VM_EXEC | VM_WRITE]				= __P110,
1126c862bd0SAnshuman Khandual 	[VM_EXEC | VM_WRITE | VM_READ]			= __P111,
1136c862bd0SAnshuman Khandual 	[VM_SHARED]					= __S000,
1146c862bd0SAnshuman Khandual 	[VM_SHARED | VM_READ]				= __S001,
1156c862bd0SAnshuman Khandual 	[VM_SHARED | VM_WRITE]				= __S010,
1166c862bd0SAnshuman Khandual 	[VM_SHARED | VM_WRITE | VM_READ]		= __S011,
1176c862bd0SAnshuman Khandual 	[VM_SHARED | VM_EXEC]				= __S100,
1186c862bd0SAnshuman Khandual 	[VM_SHARED | VM_EXEC | VM_READ]			= __S101,
1196c862bd0SAnshuman Khandual 	[VM_SHARED | VM_EXEC | VM_WRITE]		= __S110,
1206c862bd0SAnshuman Khandual 	[VM_SHARED | VM_EXEC | VM_WRITE | VM_READ]	= __S111
1211da177e4SLinus Torvalds };
1221da177e4SLinus Torvalds 
123*67436193SAnshuman Khandual #ifndef CONFIG_ARCH_HAS_VM_GET_PAGE_PROT
124316d097cSDave Hansen #ifndef CONFIG_ARCH_HAS_FILTER_PGPROT
125316d097cSDave Hansen static inline pgprot_t arch_filter_pgprot(pgprot_t prot)
126316d097cSDave Hansen {
127316d097cSDave Hansen 	return prot;
128316d097cSDave Hansen }
129316d097cSDave Hansen #endif
130316d097cSDave Hansen 
131804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags)
132804af2cfSHugh Dickins {
133316d097cSDave Hansen 	pgprot_t ret = __pgprot(pgprot_val(protection_map[vm_flags &
134b845f313SDave Kleikamp 				(VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
135b845f313SDave Kleikamp 			pgprot_val(arch_vm_get_page_prot(vm_flags)));
136316d097cSDave Hansen 
137316d097cSDave Hansen 	return arch_filter_pgprot(ret);
138804af2cfSHugh Dickins }
139804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot);
140*67436193SAnshuman Khandual #endif	/* CONFIG_ARCH_HAS_VM_GET_PAGE_PROT */
141804af2cfSHugh Dickins 
14264e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
14364e45507SPeter Feiner {
14464e45507SPeter Feiner 	return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
14564e45507SPeter Feiner }
14664e45507SPeter Feiner 
14764e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */
14864e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma)
14964e45507SPeter Feiner {
15064e45507SPeter Feiner 	unsigned long vm_flags = vma->vm_flags;
1516d2329f8SAndrea Arcangeli 	pgprot_t vm_page_prot;
15264e45507SPeter Feiner 
1536d2329f8SAndrea Arcangeli 	vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
1546d2329f8SAndrea Arcangeli 	if (vma_wants_writenotify(vma, vm_page_prot)) {
15564e45507SPeter Feiner 		vm_flags &= ~VM_SHARED;
1566d2329f8SAndrea Arcangeli 		vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
15764e45507SPeter Feiner 	}
158c1e8d7c6SMichel Lespinasse 	/* remove_protection_ptes reads vma->vm_page_prot without mmap_lock */
1596d2329f8SAndrea Arcangeli 	WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
16064e45507SPeter Feiner }
16164e45507SPeter Feiner 
1621da177e4SLinus Torvalds /*
163c8c06efaSDavidlohr Bueso  * Requires inode->i_mapping->i_mmap_rwsem
1641da177e4SLinus Torvalds  */
1651da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma,
1661da177e4SLinus Torvalds 		struct file *file, struct address_space *mapping)
1671da177e4SLinus Torvalds {
1681da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
1694bb5f5d9SDavid Herrmann 		mapping_unmap_writable(mapping);
1701da177e4SLinus Torvalds 
1711da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
1726b2dbba8SMichel Lespinasse 	vma_interval_tree_remove(vma, &mapping->i_mmap);
1731da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
1741da177e4SLinus Torvalds }
1751da177e4SLinus Torvalds 
1761da177e4SLinus Torvalds /*
1776b2dbba8SMichel Lespinasse  * Unlink a file-based vm structure from its interval tree, to hide
178a8fb5618SHugh Dickins  * vma from rmap and vmtruncate before freeing its page tables.
1791da177e4SLinus Torvalds  */
180a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma)
1811da177e4SLinus Torvalds {
1821da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
1831da177e4SLinus Torvalds 
1841da177e4SLinus Torvalds 	if (file) {
1851da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
18683cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
1871da177e4SLinus Torvalds 		__remove_shared_vm_struct(vma, file, mapping);
18883cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
1891da177e4SLinus Torvalds 	}
190a8fb5618SHugh Dickins }
191a8fb5618SHugh Dickins 
192a8fb5618SHugh Dickins /*
193a8fb5618SHugh Dickins  * Close a vm structure and free it, returning the next.
194a8fb5618SHugh Dickins  */
195a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
196a8fb5618SHugh Dickins {
197a8fb5618SHugh Dickins 	struct vm_area_struct *next = vma->vm_next;
198a8fb5618SHugh Dickins 
199a8fb5618SHugh Dickins 	might_sleep();
2001da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
2011da177e4SLinus Torvalds 		vma->vm_ops->close(vma);
202e9714acfSKonstantin Khlebnikov 	if (vma->vm_file)
203a8fb5618SHugh Dickins 		fput(vma->vm_file);
204f0be3d32SLee Schermerhorn 	mpol_put(vma_policy(vma));
2053928d4f5SLinus Torvalds 	vm_area_free(vma);
206a8fb5618SHugh Dickins 	return next;
2071da177e4SLinus Torvalds }
2081da177e4SLinus Torvalds 
209bb177a73SMichal Hocko static int do_brk_flags(unsigned long addr, unsigned long request, unsigned long flags,
210bb177a73SMichal Hocko 		struct list_head *uf);
2116a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
2121da177e4SLinus Torvalds {
2139bc8039eSYang Shi 	unsigned long newbrk, oldbrk, origbrk;
2141da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
2151be7107fSHugh Dickins 	struct vm_area_struct *next;
216a5b4592cSJiri Kosina 	unsigned long min_brk;
217128557ffSMichel Lespinasse 	bool populate;
2189bc8039eSYang Shi 	bool downgraded = false;
219897ab3e0SMike Rapoport 	LIST_HEAD(uf);
2201da177e4SLinus Torvalds 
221d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
222dc0ef0dfSMichal Hocko 		return -EINTR;
2231da177e4SLinus Torvalds 
2249bc8039eSYang Shi 	origbrk = mm->brk;
2259bc8039eSYang Shi 
226a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
2275520e894SJiri Kosina 	/*
2285520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
2295520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
2305520e894SJiri Kosina 	 * to be arbitrarily shifted
2315520e894SJiri Kosina 	 */
2324471a675SJiri Kosina 	if (current->brk_randomized)
2335520e894SJiri Kosina 		min_brk = mm->start_brk;
2345520e894SJiri Kosina 	else
2355520e894SJiri Kosina 		min_brk = mm->end_data;
236a5b4592cSJiri Kosina #else
237a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
238a5b4592cSJiri Kosina #endif
239a5b4592cSJiri Kosina 	if (brk < min_brk)
2401da177e4SLinus Torvalds 		goto out;
2411e624196SRam Gupta 
2421e624196SRam Gupta 	/*
2431e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
2441e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
2451e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
2461e624196SRam Gupta 	 * not page aligned -Ram Gupta
2471e624196SRam Gupta 	 */
2488764b338SCyrill Gorcunov 	if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
2498764b338SCyrill Gorcunov 			      mm->end_data, mm->start_data))
2501e624196SRam Gupta 		goto out;
2511e624196SRam Gupta 
2521da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
2531da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
2549bc8039eSYang Shi 	if (oldbrk == newbrk) {
2559bc8039eSYang Shi 		mm->brk = brk;
2569bc8039eSYang Shi 		goto success;
2579bc8039eSYang Shi 	}
2581da177e4SLinus Torvalds 
2599bc8039eSYang Shi 	/*
2609bc8039eSYang Shi 	 * Always allow shrinking brk.
261c1e8d7c6SMichel Lespinasse 	 * __do_munmap() may downgrade mmap_lock to read.
2629bc8039eSYang Shi 	 */
2631da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2649bc8039eSYang Shi 		int ret;
2659bc8039eSYang Shi 
2669bc8039eSYang Shi 		/*
267c1e8d7c6SMichel Lespinasse 		 * mm->brk must to be protected by write mmap_lock so update it
268c1e8d7c6SMichel Lespinasse 		 * before downgrading mmap_lock. When __do_munmap() fails,
2699bc8039eSYang Shi 		 * mm->brk will be restored from origbrk.
2709bc8039eSYang Shi 		 */
2719bc8039eSYang Shi 		mm->brk = brk;
2729bc8039eSYang Shi 		ret = __do_munmap(mm, newbrk, oldbrk-newbrk, &uf, true);
2739bc8039eSYang Shi 		if (ret < 0) {
2749bc8039eSYang Shi 			mm->brk = origbrk;
2751da177e4SLinus Torvalds 			goto out;
2769bc8039eSYang Shi 		} else if (ret == 1) {
2779bc8039eSYang Shi 			downgraded = true;
2789bc8039eSYang Shi 		}
2799bc8039eSYang Shi 		goto success;
2801da177e4SLinus Torvalds 	}
2811da177e4SLinus Torvalds 
2821da177e4SLinus Torvalds 	/* Check against existing mmap mappings. */
2831be7107fSHugh Dickins 	next = find_vma(mm, oldbrk);
2841be7107fSHugh Dickins 	if (next && newbrk + PAGE_SIZE > vm_start_gap(next))
2851da177e4SLinus Torvalds 		goto out;
2861da177e4SLinus Torvalds 
2871da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
288bb177a73SMichal Hocko 	if (do_brk_flags(oldbrk, newbrk-oldbrk, 0, &uf) < 0)
2891da177e4SLinus Torvalds 		goto out;
2901da177e4SLinus Torvalds 	mm->brk = brk;
2919bc8039eSYang Shi 
2929bc8039eSYang Shi success:
293128557ffSMichel Lespinasse 	populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
2949bc8039eSYang Shi 	if (downgraded)
295d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2969bc8039eSYang Shi 	else
297d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
298897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
299128557ffSMichel Lespinasse 	if (populate)
300128557ffSMichel Lespinasse 		mm_populate(oldbrk, newbrk - oldbrk);
301128557ffSMichel Lespinasse 	return brk;
302128557ffSMichel Lespinasse 
3031da177e4SLinus Torvalds out:
304d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
305b7204006SAdrian Huang 	return origbrk;
3061da177e4SLinus Torvalds }
3071da177e4SLinus Torvalds 
308315cc066SMichel Lespinasse static inline unsigned long vma_compute_gap(struct vm_area_struct *vma)
309d3737187SMichel Lespinasse {
310315cc066SMichel Lespinasse 	unsigned long gap, prev_end;
3111be7107fSHugh Dickins 
3121be7107fSHugh Dickins 	/*
3131be7107fSHugh Dickins 	 * Note: in the rare case of a VM_GROWSDOWN above a VM_GROWSUP, we
3141be7107fSHugh Dickins 	 * allow two stack_guard_gaps between them here, and when choosing
3151be7107fSHugh Dickins 	 * an unmapped area; whereas when expanding we only require one.
3161be7107fSHugh Dickins 	 * That's a little inconsistent, but keeps the code here simpler.
3171be7107fSHugh Dickins 	 */
318315cc066SMichel Lespinasse 	gap = vm_start_gap(vma);
3191be7107fSHugh Dickins 	if (vma->vm_prev) {
3201be7107fSHugh Dickins 		prev_end = vm_end_gap(vma->vm_prev);
321315cc066SMichel Lespinasse 		if (gap > prev_end)
322315cc066SMichel Lespinasse 			gap -= prev_end;
3231be7107fSHugh Dickins 		else
324315cc066SMichel Lespinasse 			gap = 0;
3251be7107fSHugh Dickins 	}
326315cc066SMichel Lespinasse 	return gap;
327315cc066SMichel Lespinasse }
328315cc066SMichel Lespinasse 
329315cc066SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB
330315cc066SMichel Lespinasse static unsigned long vma_compute_subtree_gap(struct vm_area_struct *vma)
331315cc066SMichel Lespinasse {
332315cc066SMichel Lespinasse 	unsigned long max = vma_compute_gap(vma), subtree_gap;
333d3737187SMichel Lespinasse 	if (vma->vm_rb.rb_left) {
334d3737187SMichel Lespinasse 		subtree_gap = rb_entry(vma->vm_rb.rb_left,
335d3737187SMichel Lespinasse 				struct vm_area_struct, vm_rb)->rb_subtree_gap;
336d3737187SMichel Lespinasse 		if (subtree_gap > max)
337d3737187SMichel Lespinasse 			max = subtree_gap;
338d3737187SMichel Lespinasse 	}
339d3737187SMichel Lespinasse 	if (vma->vm_rb.rb_right) {
340d3737187SMichel Lespinasse 		subtree_gap = rb_entry(vma->vm_rb.rb_right,
341d3737187SMichel Lespinasse 				struct vm_area_struct, vm_rb)->rb_subtree_gap;
342d3737187SMichel Lespinasse 		if (subtree_gap > max)
343d3737187SMichel Lespinasse 			max = subtree_gap;
344d3737187SMichel Lespinasse 	}
345d3737187SMichel Lespinasse 	return max;
346d3737187SMichel Lespinasse }
347d3737187SMichel Lespinasse 
348acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm)
3491da177e4SLinus Torvalds {
350acf128d0SAndrea Arcangeli 	struct rb_root *root = &mm->mm_rb;
3515a0768f6SMichel Lespinasse 	int i = 0, j, bug = 0;
3521da177e4SLinus Torvalds 	struct rb_node *nd, *pn = NULL;
3531da177e4SLinus Torvalds 	unsigned long prev = 0, pend = 0;
3541da177e4SLinus Torvalds 
3551da177e4SLinus Torvalds 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
3561da177e4SLinus Torvalds 		struct vm_area_struct *vma;
3571da177e4SLinus Torvalds 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
3585a0768f6SMichel Lespinasse 		if (vma->vm_start < prev) {
359ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx < prev %lx\n",
360ff26f70fSAndrew Morton 				  vma->vm_start, prev);
3615a0768f6SMichel Lespinasse 			bug = 1;
3625a0768f6SMichel Lespinasse 		}
3635a0768f6SMichel Lespinasse 		if (vma->vm_start < pend) {
364ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx < pend %lx\n",
365ff26f70fSAndrew Morton 				  vma->vm_start, pend);
3665a0768f6SMichel Lespinasse 			bug = 1;
3675a0768f6SMichel Lespinasse 		}
3685a0768f6SMichel Lespinasse 		if (vma->vm_start > vma->vm_end) {
369ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx > vm_end %lx\n",
370ff26f70fSAndrew Morton 				  vma->vm_start, vma->vm_end);
3715a0768f6SMichel Lespinasse 			bug = 1;
3725a0768f6SMichel Lespinasse 		}
373acf128d0SAndrea Arcangeli 		spin_lock(&mm->page_table_lock);
3745a0768f6SMichel Lespinasse 		if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
3758542bdfcSSasha Levin 			pr_emerg("free gap %lx, correct %lx\n",
3765a0768f6SMichel Lespinasse 			       vma->rb_subtree_gap,
3775a0768f6SMichel Lespinasse 			       vma_compute_subtree_gap(vma));
3785a0768f6SMichel Lespinasse 			bug = 1;
3795a0768f6SMichel Lespinasse 		}
380acf128d0SAndrea Arcangeli 		spin_unlock(&mm->page_table_lock);
3811da177e4SLinus Torvalds 		i++;
3821da177e4SLinus Torvalds 		pn = nd;
383d1af65d1SDavid Miller 		prev = vma->vm_start;
384d1af65d1SDavid Miller 		pend = vma->vm_end;
3851da177e4SLinus Torvalds 	}
3861da177e4SLinus Torvalds 	j = 0;
3875a0768f6SMichel Lespinasse 	for (nd = pn; nd; nd = rb_prev(nd))
3881da177e4SLinus Torvalds 		j++;
3895a0768f6SMichel Lespinasse 	if (i != j) {
3908542bdfcSSasha Levin 		pr_emerg("backwards %d, forwards %d\n", j, i);
3915a0768f6SMichel Lespinasse 		bug = 1;
3921da177e4SLinus Torvalds 	}
3935a0768f6SMichel Lespinasse 	return bug ? -1 : i;
3941da177e4SLinus Torvalds }
3951da177e4SLinus Torvalds 
396d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
397d3737187SMichel Lespinasse {
398d3737187SMichel Lespinasse 	struct rb_node *nd;
399d3737187SMichel Lespinasse 
400d3737187SMichel Lespinasse 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
401d3737187SMichel Lespinasse 		struct vm_area_struct *vma;
402d3737187SMichel Lespinasse 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
40396dad67fSSasha Levin 		VM_BUG_ON_VMA(vma != ignore &&
40496dad67fSSasha Levin 			vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
40596dad67fSSasha Levin 			vma);
406d3737187SMichel Lespinasse 	}
4071da177e4SLinus Torvalds }
4081da177e4SLinus Torvalds 
409eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm)
4101da177e4SLinus Torvalds {
4111da177e4SLinus Torvalds 	int bug = 0;
4121da177e4SLinus Torvalds 	int i = 0;
4135a0768f6SMichel Lespinasse 	unsigned long highest_address = 0;
414ed8ea815SMichel Lespinasse 	struct vm_area_struct *vma = mm->mmap;
415ff26f70fSAndrew Morton 
416ed8ea815SMichel Lespinasse 	while (vma) {
41712352d3cSKonstantin Khlebnikov 		struct anon_vma *anon_vma = vma->anon_vma;
418ed8ea815SMichel Lespinasse 		struct anon_vma_chain *avc;
419ff26f70fSAndrew Morton 
42012352d3cSKonstantin Khlebnikov 		if (anon_vma) {
42112352d3cSKonstantin Khlebnikov 			anon_vma_lock_read(anon_vma);
422ed8ea815SMichel Lespinasse 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
423ed8ea815SMichel Lespinasse 				anon_vma_interval_tree_verify(avc);
42412352d3cSKonstantin Khlebnikov 			anon_vma_unlock_read(anon_vma);
42512352d3cSKonstantin Khlebnikov 		}
42612352d3cSKonstantin Khlebnikov 
4271be7107fSHugh Dickins 		highest_address = vm_end_gap(vma);
428ed8ea815SMichel Lespinasse 		vma = vma->vm_next;
4291da177e4SLinus Torvalds 		i++;
4301da177e4SLinus Torvalds 	}
4315a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
4328542bdfcSSasha Levin 		pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
4335a0768f6SMichel Lespinasse 		bug = 1;
4345a0768f6SMichel Lespinasse 	}
4355a0768f6SMichel Lespinasse 	if (highest_address != mm->highest_vm_end) {
4368542bdfcSSasha Levin 		pr_emerg("mm->highest_vm_end %lx, found %lx\n",
4375a0768f6SMichel Lespinasse 			  mm->highest_vm_end, highest_address);
4385a0768f6SMichel Lespinasse 		bug = 1;
4395a0768f6SMichel Lespinasse 	}
440acf128d0SAndrea Arcangeli 	i = browse_rb(mm);
4415a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
442ff26f70fSAndrew Morton 		if (i != -1)
4438542bdfcSSasha Levin 			pr_emerg("map_count %d rb %d\n", mm->map_count, i);
4445a0768f6SMichel Lespinasse 		bug = 1;
4455a0768f6SMichel Lespinasse 	}
44696dad67fSSasha Levin 	VM_BUG_ON_MM(bug, mm);
4471da177e4SLinus Torvalds }
4481da177e4SLinus Torvalds #else
449d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0)
4501da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
4511da177e4SLinus Torvalds #endif
4521da177e4SLinus Torvalds 
453315cc066SMichel Lespinasse RB_DECLARE_CALLBACKS_MAX(static, vma_gap_callbacks,
454315cc066SMichel Lespinasse 			 struct vm_area_struct, vm_rb,
455315cc066SMichel Lespinasse 			 unsigned long, rb_subtree_gap, vma_compute_gap)
456d3737187SMichel Lespinasse 
457d3737187SMichel Lespinasse /*
458d3737187SMichel Lespinasse  * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
459d3737187SMichel Lespinasse  * vma->vm_prev->vm_end values changed, without modifying the vma's position
460d3737187SMichel Lespinasse  * in the rbtree.
461d3737187SMichel Lespinasse  */
462d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma)
463d3737187SMichel Lespinasse {
464d3737187SMichel Lespinasse 	/*
465315cc066SMichel Lespinasse 	 * As it turns out, RB_DECLARE_CALLBACKS_MAX() already created
466315cc066SMichel Lespinasse 	 * a callback function that does exactly what we want.
467d3737187SMichel Lespinasse 	 */
468d3737187SMichel Lespinasse 	vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
469d3737187SMichel Lespinasse }
470d3737187SMichel Lespinasse 
471d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma,
472d3737187SMichel Lespinasse 				 struct rb_root *root)
473d3737187SMichel Lespinasse {
474d3737187SMichel Lespinasse 	/* All rb_subtree_gap values must be consistent prior to insertion */
475d3737187SMichel Lespinasse 	validate_mm_rb(root, NULL);
476d3737187SMichel Lespinasse 
477d3737187SMichel Lespinasse 	rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
478d3737187SMichel Lespinasse }
479d3737187SMichel Lespinasse 
4808f26e0b1SAndrea Arcangeli static void __vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
4818f26e0b1SAndrea Arcangeli {
4828f26e0b1SAndrea Arcangeli 	/*
4838f26e0b1SAndrea Arcangeli 	 * Note rb_erase_augmented is a fairly large inline function,
4848f26e0b1SAndrea Arcangeli 	 * so make sure we instantiate it only once with our desired
4858f26e0b1SAndrea Arcangeli 	 * augmented rbtree callbacks.
4868f26e0b1SAndrea Arcangeli 	 */
4878f26e0b1SAndrea Arcangeli 	rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
4888f26e0b1SAndrea Arcangeli }
4898f26e0b1SAndrea Arcangeli 
4908f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase_ignore(struct vm_area_struct *vma,
4918f26e0b1SAndrea Arcangeli 						struct rb_root *root,
4928f26e0b1SAndrea Arcangeli 						struct vm_area_struct *ignore)
4938f26e0b1SAndrea Arcangeli {
4948f26e0b1SAndrea Arcangeli 	/*
4958f26e0b1SAndrea Arcangeli 	 * All rb_subtree_gap values must be consistent prior to erase,
4964d1e7243SWei Yang 	 * with the possible exception of
4974d1e7243SWei Yang 	 *
4984d1e7243SWei Yang 	 * a. the "next" vma being erased if next->vm_start was reduced in
4994d1e7243SWei Yang 	 *    __vma_adjust() -> __vma_unlink()
5004d1e7243SWei Yang 	 * b. the vma being erased in detach_vmas_to_be_unmapped() ->
5014d1e7243SWei Yang 	 *    vma_rb_erase()
5028f26e0b1SAndrea Arcangeli 	 */
5038f26e0b1SAndrea Arcangeli 	validate_mm_rb(root, ignore);
5048f26e0b1SAndrea Arcangeli 
5058f26e0b1SAndrea Arcangeli 	__vma_rb_erase(vma, root);
5068f26e0b1SAndrea Arcangeli }
5078f26e0b1SAndrea Arcangeli 
5088f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase(struct vm_area_struct *vma,
5098f26e0b1SAndrea Arcangeli 					 struct rb_root *root)
510d3737187SMichel Lespinasse {
5114d1e7243SWei Yang 	vma_rb_erase_ignore(vma, root, vma);
512d3737187SMichel Lespinasse }
513d3737187SMichel Lespinasse 
514bf181b9fSMichel Lespinasse /*
515bf181b9fSMichel Lespinasse  * vma has some anon_vma assigned, and is already inserted on that
516bf181b9fSMichel Lespinasse  * anon_vma's interval trees.
517bf181b9fSMichel Lespinasse  *
518bf181b9fSMichel Lespinasse  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
519bf181b9fSMichel Lespinasse  * vma must be removed from the anon_vma's interval trees using
520bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_pre_update_vma().
521bf181b9fSMichel Lespinasse  *
522bf181b9fSMichel Lespinasse  * After the update, the vma will be reinserted using
523bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_post_update_vma().
524bf181b9fSMichel Lespinasse  *
525c1e8d7c6SMichel Lespinasse  * The entire update must be protected by exclusive mmap_lock and by
526bf181b9fSMichel Lespinasse  * the root anon_vma's mutex.
527bf181b9fSMichel Lespinasse  */
528bf181b9fSMichel Lespinasse static inline void
529bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
530bf181b9fSMichel Lespinasse {
531bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
532bf181b9fSMichel Lespinasse 
533bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
534bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
535bf181b9fSMichel Lespinasse }
536bf181b9fSMichel Lespinasse 
537bf181b9fSMichel Lespinasse static inline void
538bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
539bf181b9fSMichel Lespinasse {
540bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
541bf181b9fSMichel Lespinasse 
542bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
543bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
544bf181b9fSMichel Lespinasse }
545bf181b9fSMichel Lespinasse 
5466597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr,
5476597d783SHugh Dickins 		unsigned long end, struct vm_area_struct **pprev,
5486597d783SHugh Dickins 		struct rb_node ***rb_link, struct rb_node **rb_parent)
5491da177e4SLinus Torvalds {
5501da177e4SLinus Torvalds 	struct rb_node **__rb_link, *__rb_parent, *rb_prev;
5511da177e4SLinus Torvalds 
5525b78ed24SLuigi Rizzo 	mmap_assert_locked(mm);
5531da177e4SLinus Torvalds 	__rb_link = &mm->mm_rb.rb_node;
5541da177e4SLinus Torvalds 	rb_prev = __rb_parent = NULL;
5551da177e4SLinus Torvalds 
5561da177e4SLinus Torvalds 	while (*__rb_link) {
5571da177e4SLinus Torvalds 		struct vm_area_struct *vma_tmp;
5581da177e4SLinus Torvalds 
5591da177e4SLinus Torvalds 		__rb_parent = *__rb_link;
5601da177e4SLinus Torvalds 		vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
5611da177e4SLinus Torvalds 
5621da177e4SLinus Torvalds 		if (vma_tmp->vm_end > addr) {
5636597d783SHugh Dickins 			/* Fail if an existing vma overlaps the area */
5646597d783SHugh Dickins 			if (vma_tmp->vm_start < end)
5656597d783SHugh Dickins 				return -ENOMEM;
5661da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_left;
5671da177e4SLinus Torvalds 		} else {
5681da177e4SLinus Torvalds 			rb_prev = __rb_parent;
5691da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_right;
5701da177e4SLinus Torvalds 		}
5711da177e4SLinus Torvalds 	}
5721da177e4SLinus Torvalds 
5731da177e4SLinus Torvalds 	*pprev = NULL;
5741da177e4SLinus Torvalds 	if (rb_prev)
5751da177e4SLinus Torvalds 		*pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
5761da177e4SLinus Torvalds 	*rb_link = __rb_link;
5771da177e4SLinus Torvalds 	*rb_parent = __rb_parent;
5786597d783SHugh Dickins 	return 0;
5791da177e4SLinus Torvalds }
5801da177e4SLinus Torvalds 
5813903b55aSLiam R. Howlett /*
5823903b55aSLiam R. Howlett  * vma_next() - Get the next VMA.
5833903b55aSLiam R. Howlett  * @mm: The mm_struct.
5843903b55aSLiam R. Howlett  * @vma: The current vma.
5853903b55aSLiam R. Howlett  *
5863903b55aSLiam R. Howlett  * If @vma is NULL, return the first vma in the mm.
5873903b55aSLiam R. Howlett  *
5883903b55aSLiam R. Howlett  * Returns: The next VMA after @vma.
5893903b55aSLiam R. Howlett  */
5903903b55aSLiam R. Howlett static inline struct vm_area_struct *vma_next(struct mm_struct *mm,
5913903b55aSLiam R. Howlett 					 struct vm_area_struct *vma)
5923903b55aSLiam R. Howlett {
5933903b55aSLiam R. Howlett 	if (!vma)
5943903b55aSLiam R. Howlett 		return mm->mmap;
5953903b55aSLiam R. Howlett 
5963903b55aSLiam R. Howlett 	return vma->vm_next;
5973903b55aSLiam R. Howlett }
598fb8090b6SLiam R. Howlett 
599fb8090b6SLiam R. Howlett /*
600fb8090b6SLiam R. Howlett  * munmap_vma_range() - munmap VMAs that overlap a range.
601fb8090b6SLiam R. Howlett  * @mm: The mm struct
602fb8090b6SLiam R. Howlett  * @start: The start of the range.
603fb8090b6SLiam R. Howlett  * @len: The length of the range.
604fb8090b6SLiam R. Howlett  * @pprev: pointer to the pointer that will be set to previous vm_area_struct
605fb8090b6SLiam R. Howlett  * @rb_link: the rb_node
606fb8090b6SLiam R. Howlett  * @rb_parent: the parent rb_node
607fb8090b6SLiam R. Howlett  *
608fb8090b6SLiam R. Howlett  * Find all the vm_area_struct that overlap from @start to
609fb8090b6SLiam R. Howlett  * @end and munmap them.  Set @pprev to the previous vm_area_struct.
610fb8090b6SLiam R. Howlett  *
611fb8090b6SLiam R. Howlett  * Returns: -ENOMEM on munmap failure or 0 on success.
612fb8090b6SLiam R. Howlett  */
613fb8090b6SLiam R. Howlett static inline int
614fb8090b6SLiam R. Howlett munmap_vma_range(struct mm_struct *mm, unsigned long start, unsigned long len,
615fb8090b6SLiam R. Howlett 		 struct vm_area_struct **pprev, struct rb_node ***link,
616fb8090b6SLiam R. Howlett 		 struct rb_node **parent, struct list_head *uf)
617fb8090b6SLiam R. Howlett {
618fb8090b6SLiam R. Howlett 
619fb8090b6SLiam R. Howlett 	while (find_vma_links(mm, start, start + len, pprev, link, parent))
620fb8090b6SLiam R. Howlett 		if (do_munmap(mm, start, len, uf))
621fb8090b6SLiam R. Howlett 			return -ENOMEM;
622fb8090b6SLiam R. Howlett 
623fb8090b6SLiam R. Howlett 	return 0;
624fb8090b6SLiam R. Howlett }
625e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm,
626e8420a8eSCyril Hrubis 		unsigned long addr, unsigned long end)
627e8420a8eSCyril Hrubis {
628e8420a8eSCyril Hrubis 	unsigned long nr_pages = 0;
629e8420a8eSCyril Hrubis 	struct vm_area_struct *vma;
630e8420a8eSCyril Hrubis 
631f0953a1bSIngo Molnar 	/* Find first overlapping mapping */
632e8420a8eSCyril Hrubis 	vma = find_vma_intersection(mm, addr, end);
633e8420a8eSCyril Hrubis 	if (!vma)
634e8420a8eSCyril Hrubis 		return 0;
635e8420a8eSCyril Hrubis 
636e8420a8eSCyril Hrubis 	nr_pages = (min(end, vma->vm_end) -
637e8420a8eSCyril Hrubis 		max(addr, vma->vm_start)) >> PAGE_SHIFT;
638e8420a8eSCyril Hrubis 
639e8420a8eSCyril Hrubis 	/* Iterate over the rest of the overlaps */
640e8420a8eSCyril Hrubis 	for (vma = vma->vm_next; vma; vma = vma->vm_next) {
641e8420a8eSCyril Hrubis 		unsigned long overlap_len;
642e8420a8eSCyril Hrubis 
643e8420a8eSCyril Hrubis 		if (vma->vm_start > end)
644e8420a8eSCyril Hrubis 			break;
645e8420a8eSCyril Hrubis 
646e8420a8eSCyril Hrubis 		overlap_len = min(end, vma->vm_end) - vma->vm_start;
647e8420a8eSCyril Hrubis 		nr_pages += overlap_len >> PAGE_SHIFT;
648e8420a8eSCyril Hrubis 	}
649e8420a8eSCyril Hrubis 
650e8420a8eSCyril Hrubis 	return nr_pages;
651e8420a8eSCyril Hrubis }
652e8420a8eSCyril Hrubis 
6531da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
6541da177e4SLinus Torvalds 		struct rb_node **rb_link, struct rb_node *rb_parent)
6551da177e4SLinus Torvalds {
656d3737187SMichel Lespinasse 	/* Update tracking information for the gap following the new vma. */
657d3737187SMichel Lespinasse 	if (vma->vm_next)
658d3737187SMichel Lespinasse 		vma_gap_update(vma->vm_next);
659d3737187SMichel Lespinasse 	else
6601be7107fSHugh Dickins 		mm->highest_vm_end = vm_end_gap(vma);
661d3737187SMichel Lespinasse 
662d3737187SMichel Lespinasse 	/*
663d3737187SMichel Lespinasse 	 * vma->vm_prev wasn't known when we followed the rbtree to find the
664d3737187SMichel Lespinasse 	 * correct insertion point for that vma. As a result, we could not
665d3737187SMichel Lespinasse 	 * update the vma vm_rb parents rb_subtree_gap values on the way down.
666d3737187SMichel Lespinasse 	 * So, we first insert the vma with a zero rb_subtree_gap value
667d3737187SMichel Lespinasse 	 * (to be consistent with what we did on the way down), and then
668d3737187SMichel Lespinasse 	 * immediately update the gap to the correct value. Finally we
669d3737187SMichel Lespinasse 	 * rebalance the rbtree after all augmented values have been set.
670d3737187SMichel Lespinasse 	 */
6711da177e4SLinus Torvalds 	rb_link_node(&vma->vm_rb, rb_parent, rb_link);
672d3737187SMichel Lespinasse 	vma->rb_subtree_gap = 0;
673d3737187SMichel Lespinasse 	vma_gap_update(vma);
674d3737187SMichel Lespinasse 	vma_rb_insert(vma, &mm->mm_rb);
6751da177e4SLinus Torvalds }
6761da177e4SLinus Torvalds 
677cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma)
6781da177e4SLinus Torvalds {
6791da177e4SLinus Torvalds 	struct file *file;
6801da177e4SLinus Torvalds 
6811da177e4SLinus Torvalds 	file = vma->vm_file;
6821da177e4SLinus Torvalds 	if (file) {
6831da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
6841da177e4SLinus Torvalds 
6851da177e4SLinus Torvalds 		if (vma->vm_flags & VM_SHARED)
686cf508b58SMiaohe Lin 			mapping_allow_writable(mapping);
6871da177e4SLinus Torvalds 
6881da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
6896b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, &mapping->i_mmap);
6901da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
6911da177e4SLinus Torvalds 	}
6921da177e4SLinus Torvalds }
6931da177e4SLinus Torvalds 
6941da177e4SLinus Torvalds static void
6951da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
6961da177e4SLinus Torvalds 	struct vm_area_struct *prev, struct rb_node **rb_link,
6971da177e4SLinus Torvalds 	struct rb_node *rb_parent)
6981da177e4SLinus Torvalds {
699aba6dfb7SWei Yang 	__vma_link_list(mm, vma, prev);
7001da177e4SLinus Torvalds 	__vma_link_rb(mm, vma, rb_link, rb_parent);
7011da177e4SLinus Torvalds }
7021da177e4SLinus Torvalds 
7031da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
7041da177e4SLinus Torvalds 			struct vm_area_struct *prev, struct rb_node **rb_link,
7051da177e4SLinus Torvalds 			struct rb_node *rb_parent)
7061da177e4SLinus Torvalds {
7071da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
7081da177e4SLinus Torvalds 
70964ac4940SHuang Shijie 	if (vma->vm_file) {
7101da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
71183cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
71264ac4940SHuang Shijie 	}
7131da177e4SLinus Torvalds 
7141da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
7151da177e4SLinus Torvalds 	__vma_link_file(vma);
7161da177e4SLinus Torvalds 
7171da177e4SLinus Torvalds 	if (mapping)
71883cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
7191da177e4SLinus Torvalds 
7201da177e4SLinus Torvalds 	mm->map_count++;
7211da177e4SLinus Torvalds 	validate_mm(mm);
7221da177e4SLinus Torvalds }
7231da177e4SLinus Torvalds 
7241da177e4SLinus Torvalds /*
72588f6b4c3SKautuk Consul  * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
7266b2dbba8SMichel Lespinasse  * mm's list and rbtree.  It has already been inserted into the interval tree.
7271da177e4SLinus Torvalds  */
72848aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
7291da177e4SLinus Torvalds {
7306597d783SHugh Dickins 	struct vm_area_struct *prev;
7311da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
7321da177e4SLinus Torvalds 
7336597d783SHugh Dickins 	if (find_vma_links(mm, vma->vm_start, vma->vm_end,
7346597d783SHugh Dickins 			   &prev, &rb_link, &rb_parent))
7356597d783SHugh Dickins 		BUG();
7361da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
7371da177e4SLinus Torvalds 	mm->map_count++;
7381da177e4SLinus Torvalds }
7391da177e4SLinus Torvalds 
7407c61f917SWei Yang static __always_inline void __vma_unlink(struct mm_struct *mm,
741e86f15eeSAndrea Arcangeli 						struct vm_area_struct *vma,
7428f26e0b1SAndrea Arcangeli 						struct vm_area_struct *ignore)
7431da177e4SLinus Torvalds {
7448f26e0b1SAndrea Arcangeli 	vma_rb_erase_ignore(vma, &mm->mm_rb, ignore);
7451b9fc5b2SWei Yang 	__vma_unlink_list(mm, vma);
746615d6e87SDavidlohr Bueso 	/* Kill the cache */
747615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
7481da177e4SLinus Torvalds }
7491da177e4SLinus Torvalds 
7501da177e4SLinus Torvalds /*
7511da177e4SLinus Torvalds  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
7521da177e4SLinus Torvalds  * is already present in an i_mmap tree without adjusting the tree.
7531da177e4SLinus Torvalds  * The following helper function should be used when such adjustments
7541da177e4SLinus Torvalds  * are necessary.  The "insert" vma (if any) is to be inserted
7551da177e4SLinus Torvalds  * before we drop the necessary locks.
7561da177e4SLinus Torvalds  */
757e86f15eeSAndrea Arcangeli int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
758e86f15eeSAndrea Arcangeli 	unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
759e86f15eeSAndrea Arcangeli 	struct vm_area_struct *expand)
7601da177e4SLinus Torvalds {
7611da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
762e86f15eeSAndrea Arcangeli 	struct vm_area_struct *next = vma->vm_next, *orig_vma = vma;
7631da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
764f808c13fSDavidlohr Bueso 	struct rb_root_cached *root = NULL;
765012f1800SRik van Riel 	struct anon_vma *anon_vma = NULL;
7661da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
767d3737187SMichel Lespinasse 	bool start_changed = false, end_changed = false;
7681da177e4SLinus Torvalds 	long adjust_next = 0;
7691da177e4SLinus Torvalds 	int remove_next = 0;
7701da177e4SLinus Torvalds 
7711da177e4SLinus Torvalds 	if (next && !insert) {
772734537c9SKirill A. Shutemov 		struct vm_area_struct *exporter = NULL, *importer = NULL;
773287d97acSLinus Torvalds 
7741da177e4SLinus Torvalds 		if (end >= next->vm_end) {
7751da177e4SLinus Torvalds 			/*
7761da177e4SLinus Torvalds 			 * vma expands, overlapping all the next, and
7771da177e4SLinus Torvalds 			 * perhaps the one after too (mprotect case 6).
77886d12e47SAndrea Arcangeli 			 * The only other cases that gets here are
779e86f15eeSAndrea Arcangeli 			 * case 1, case 7 and case 8.
780e86f15eeSAndrea Arcangeli 			 */
781e86f15eeSAndrea Arcangeli 			if (next == expand) {
782e86f15eeSAndrea Arcangeli 				/*
783e86f15eeSAndrea Arcangeli 				 * The only case where we don't expand "vma"
784e86f15eeSAndrea Arcangeli 				 * and we expand "next" instead is case 8.
785e86f15eeSAndrea Arcangeli 				 */
786e86f15eeSAndrea Arcangeli 				VM_WARN_ON(end != next->vm_end);
787e86f15eeSAndrea Arcangeli 				/*
788e86f15eeSAndrea Arcangeli 				 * remove_next == 3 means we're
789e86f15eeSAndrea Arcangeli 				 * removing "vma" and that to do so we
790e86f15eeSAndrea Arcangeli 				 * swapped "vma" and "next".
791e86f15eeSAndrea Arcangeli 				 */
792e86f15eeSAndrea Arcangeli 				remove_next = 3;
793e86f15eeSAndrea Arcangeli 				VM_WARN_ON(file != next->vm_file);
794e86f15eeSAndrea Arcangeli 				swap(vma, next);
795e86f15eeSAndrea Arcangeli 			} else {
796e86f15eeSAndrea Arcangeli 				VM_WARN_ON(expand != vma);
797e86f15eeSAndrea Arcangeli 				/*
798e86f15eeSAndrea Arcangeli 				 * case 1, 6, 7, remove_next == 2 is case 6,
799e86f15eeSAndrea Arcangeli 				 * remove_next == 1 is case 1 or 7.
8001da177e4SLinus Torvalds 				 */
801734537c9SKirill A. Shutemov 				remove_next = 1 + (end > next->vm_end);
802e86f15eeSAndrea Arcangeli 				VM_WARN_ON(remove_next == 2 &&
803e86f15eeSAndrea Arcangeli 					   end != next->vm_next->vm_end);
804e86f15eeSAndrea Arcangeli 				/* trim end to next, for case 6 first pass */
8051da177e4SLinus Torvalds 				end = next->vm_end;
806e86f15eeSAndrea Arcangeli 			}
807e86f15eeSAndrea Arcangeli 
808287d97acSLinus Torvalds 			exporter = next;
8091da177e4SLinus Torvalds 			importer = vma;
810734537c9SKirill A. Shutemov 
811734537c9SKirill A. Shutemov 			/*
812734537c9SKirill A. Shutemov 			 * If next doesn't have anon_vma, import from vma after
813734537c9SKirill A. Shutemov 			 * next, if the vma overlaps with it.
814734537c9SKirill A. Shutemov 			 */
81597a42cd4SAndrea Arcangeli 			if (remove_next == 2 && !next->anon_vma)
816734537c9SKirill A. Shutemov 				exporter = next->vm_next;
817734537c9SKirill A. Shutemov 
8181da177e4SLinus Torvalds 		} else if (end > next->vm_start) {
8191da177e4SLinus Torvalds 			/*
8201da177e4SLinus Torvalds 			 * vma expands, overlapping part of the next:
8211da177e4SLinus Torvalds 			 * mprotect case 5 shifting the boundary up.
8221da177e4SLinus Torvalds 			 */
823f9d86a60SWei Yang 			adjust_next = (end - next->vm_start);
824287d97acSLinus Torvalds 			exporter = next;
8251da177e4SLinus Torvalds 			importer = vma;
826e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
8271da177e4SLinus Torvalds 		} else if (end < vma->vm_end) {
8281da177e4SLinus Torvalds 			/*
8291da177e4SLinus Torvalds 			 * vma shrinks, and !insert tells it's not
8301da177e4SLinus Torvalds 			 * split_vma inserting another: so it must be
8311da177e4SLinus Torvalds 			 * mprotect case 4 shifting the boundary down.
8321da177e4SLinus Torvalds 			 */
833f9d86a60SWei Yang 			adjust_next = -(vma->vm_end - end);
834287d97acSLinus Torvalds 			exporter = vma;
8351da177e4SLinus Torvalds 			importer = next;
836e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
8371da177e4SLinus Torvalds 		}
8381da177e4SLinus Torvalds 
8395beb4930SRik van Riel 		/*
8405beb4930SRik van Riel 		 * Easily overlooked: when mprotect shifts the boundary,
8415beb4930SRik van Riel 		 * make sure the expanding vma has anon_vma set if the
8425beb4930SRik van Riel 		 * shrinking vma had, to cover any anon pages imported.
8435beb4930SRik van Riel 		 */
844287d97acSLinus Torvalds 		if (exporter && exporter->anon_vma && !importer->anon_vma) {
845c4ea95d7SDaniel Forrest 			int error;
846c4ea95d7SDaniel Forrest 
847287d97acSLinus Torvalds 			importer->anon_vma = exporter->anon_vma;
848b800c91aSKonstantin Khlebnikov 			error = anon_vma_clone(importer, exporter);
8493fe89b3eSLeon Yu 			if (error)
850b800c91aSKonstantin Khlebnikov 				return error;
851b800c91aSKonstantin Khlebnikov 		}
8525beb4930SRik van Riel 	}
853734537c9SKirill A. Shutemov again:
854e86f15eeSAndrea Arcangeli 	vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
85537f9f559SKirill A. Shutemov 
8561da177e4SLinus Torvalds 	if (file) {
8571da177e4SLinus Torvalds 		mapping = file->f_mapping;
8581da177e4SLinus Torvalds 		root = &mapping->i_mmap;
859cbc91f71SSrikar Dronamraju 		uprobe_munmap(vma, vma->vm_start, vma->vm_end);
860682968e0SSrikar Dronamraju 
861682968e0SSrikar Dronamraju 		if (adjust_next)
86227ba0644SKirill A. Shutemov 			uprobe_munmap(next, next->vm_start, next->vm_end);
863682968e0SSrikar Dronamraju 
86483cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
8651da177e4SLinus Torvalds 		if (insert) {
8661da177e4SLinus Torvalds 			/*
8676b2dbba8SMichel Lespinasse 			 * Put into interval tree now, so instantiated pages
8681da177e4SLinus Torvalds 			 * are visible to arm/parisc __flush_dcache_page
8691da177e4SLinus Torvalds 			 * throughout; but we cannot insert into address
8701da177e4SLinus Torvalds 			 * space until vma start or end is updated.
8711da177e4SLinus Torvalds 			 */
8721da177e4SLinus Torvalds 			__vma_link_file(insert);
8731da177e4SLinus Torvalds 		}
8741da177e4SLinus Torvalds 	}
8751da177e4SLinus Torvalds 
876012f1800SRik van Riel 	anon_vma = vma->anon_vma;
877bf181b9fSMichel Lespinasse 	if (!anon_vma && adjust_next)
878bf181b9fSMichel Lespinasse 		anon_vma = next->anon_vma;
879bf181b9fSMichel Lespinasse 	if (anon_vma) {
880e86f15eeSAndrea Arcangeli 		VM_WARN_ON(adjust_next && next->anon_vma &&
881e86f15eeSAndrea Arcangeli 			   anon_vma != next->anon_vma);
8824fc3f1d6SIngo Molnar 		anon_vma_lock_write(anon_vma);
883bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_pre_update_vma(vma);
884bf181b9fSMichel Lespinasse 		if (adjust_next)
885bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_pre_update_vma(next);
886bf181b9fSMichel Lespinasse 	}
887012f1800SRik van Riel 
8880fc48a6eSWei Yang 	if (file) {
8891da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
8906b2dbba8SMichel Lespinasse 		vma_interval_tree_remove(vma, root);
8911da177e4SLinus Torvalds 		if (adjust_next)
8926b2dbba8SMichel Lespinasse 			vma_interval_tree_remove(next, root);
8931da177e4SLinus Torvalds 	}
8941da177e4SLinus Torvalds 
895d3737187SMichel Lespinasse 	if (start != vma->vm_start) {
8961da177e4SLinus Torvalds 		vma->vm_start = start;
897d3737187SMichel Lespinasse 		start_changed = true;
898d3737187SMichel Lespinasse 	}
899d3737187SMichel Lespinasse 	if (end != vma->vm_end) {
9001da177e4SLinus Torvalds 		vma->vm_end = end;
901d3737187SMichel Lespinasse 		end_changed = true;
902d3737187SMichel Lespinasse 	}
9031da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
9041da177e4SLinus Torvalds 	if (adjust_next) {
905f9d86a60SWei Yang 		next->vm_start += adjust_next;
906f9d86a60SWei Yang 		next->vm_pgoff += adjust_next >> PAGE_SHIFT;
9071da177e4SLinus Torvalds 	}
9081da177e4SLinus Torvalds 
9090fc48a6eSWei Yang 	if (file) {
9101da177e4SLinus Torvalds 		if (adjust_next)
9116b2dbba8SMichel Lespinasse 			vma_interval_tree_insert(next, root);
9126b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, root);
9131da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
9141da177e4SLinus Torvalds 	}
9151da177e4SLinus Torvalds 
9161da177e4SLinus Torvalds 	if (remove_next) {
9171da177e4SLinus Torvalds 		/*
9181da177e4SLinus Torvalds 		 * vma_merge has merged next into vma, and needs
9191da177e4SLinus Torvalds 		 * us to remove next before dropping the locks.
9201da177e4SLinus Torvalds 		 */
921e86f15eeSAndrea Arcangeli 		if (remove_next != 3)
9227c61f917SWei Yang 			__vma_unlink(mm, next, next);
923e86f15eeSAndrea Arcangeli 		else
9248f26e0b1SAndrea Arcangeli 			/*
9258f26e0b1SAndrea Arcangeli 			 * vma is not before next if they've been
9268f26e0b1SAndrea Arcangeli 			 * swapped.
9278f26e0b1SAndrea Arcangeli 			 *
9288f26e0b1SAndrea Arcangeli 			 * pre-swap() next->vm_start was reduced so
9298f26e0b1SAndrea Arcangeli 			 * tell validate_mm_rb to ignore pre-swap()
9308f26e0b1SAndrea Arcangeli 			 * "next" (which is stored in post-swap()
9318f26e0b1SAndrea Arcangeli 			 * "vma").
9328f26e0b1SAndrea Arcangeli 			 */
9337c61f917SWei Yang 			__vma_unlink(mm, next, vma);
9341da177e4SLinus Torvalds 		if (file)
9351da177e4SLinus Torvalds 			__remove_shared_vm_struct(next, file, mapping);
9361da177e4SLinus Torvalds 	} else if (insert) {
9371da177e4SLinus Torvalds 		/*
9381da177e4SLinus Torvalds 		 * split_vma has split insert from vma, and needs
9391da177e4SLinus Torvalds 		 * us to insert it before dropping the locks
9401da177e4SLinus Torvalds 		 * (it may either follow vma or precede it).
9411da177e4SLinus Torvalds 		 */
9421da177e4SLinus Torvalds 		__insert_vm_struct(mm, insert);
943d3737187SMichel Lespinasse 	} else {
944d3737187SMichel Lespinasse 		if (start_changed)
945d3737187SMichel Lespinasse 			vma_gap_update(vma);
946d3737187SMichel Lespinasse 		if (end_changed) {
947d3737187SMichel Lespinasse 			if (!next)
9481be7107fSHugh Dickins 				mm->highest_vm_end = vm_end_gap(vma);
949d3737187SMichel Lespinasse 			else if (!adjust_next)
950d3737187SMichel Lespinasse 				vma_gap_update(next);
951d3737187SMichel Lespinasse 		}
9521da177e4SLinus Torvalds 	}
9531da177e4SLinus Torvalds 
954bf181b9fSMichel Lespinasse 	if (anon_vma) {
955bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_post_update_vma(vma);
956bf181b9fSMichel Lespinasse 		if (adjust_next)
957bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_post_update_vma(next);
95808b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
959bf181b9fSMichel Lespinasse 	}
9601da177e4SLinus Torvalds 
9610fc48a6eSWei Yang 	if (file) {
962808fbdbeSWei Yang 		i_mmap_unlock_write(mapping);
9637b2d81d4SIngo Molnar 		uprobe_mmap(vma);
9642b144498SSrikar Dronamraju 
9652b144498SSrikar Dronamraju 		if (adjust_next)
9667b2d81d4SIngo Molnar 			uprobe_mmap(next);
9672b144498SSrikar Dronamraju 	}
9682b144498SSrikar Dronamraju 
9691da177e4SLinus Torvalds 	if (remove_next) {
970925d1c40SMatt Helsley 		if (file) {
971cbc91f71SSrikar Dronamraju 			uprobe_munmap(next, next->vm_start, next->vm_end);
9721da177e4SLinus Torvalds 			fput(file);
973925d1c40SMatt Helsley 		}
9745beb4930SRik van Riel 		if (next->anon_vma)
9755beb4930SRik van Riel 			anon_vma_merge(vma, next);
9761da177e4SLinus Torvalds 		mm->map_count--;
9773964acd0SOleg Nesterov 		mpol_put(vma_policy(next));
9783928d4f5SLinus Torvalds 		vm_area_free(next);
9791da177e4SLinus Torvalds 		/*
9801da177e4SLinus Torvalds 		 * In mprotect's case 6 (see comments on vma_merge),
9811da177e4SLinus Torvalds 		 * we must remove another next too. It would clutter
9821da177e4SLinus Torvalds 		 * up the code too much to do both in one go.
9831da177e4SLinus Torvalds 		 */
984e86f15eeSAndrea Arcangeli 		if (remove_next != 3) {
985e86f15eeSAndrea Arcangeli 			/*
986e86f15eeSAndrea Arcangeli 			 * If "next" was removed and vma->vm_end was
987e86f15eeSAndrea Arcangeli 			 * expanded (up) over it, in turn
988e86f15eeSAndrea Arcangeli 			 * "next->vm_prev->vm_end" changed and the
989e86f15eeSAndrea Arcangeli 			 * "vma->vm_next" gap must be updated.
990e86f15eeSAndrea Arcangeli 			 */
9911da177e4SLinus Torvalds 			next = vma->vm_next;
992e86f15eeSAndrea Arcangeli 		} else {
993e86f15eeSAndrea Arcangeli 			/*
994e86f15eeSAndrea Arcangeli 			 * For the scope of the comment "next" and
995e86f15eeSAndrea Arcangeli 			 * "vma" considered pre-swap(): if "vma" was
996e86f15eeSAndrea Arcangeli 			 * removed, next->vm_start was expanded (down)
997e86f15eeSAndrea Arcangeli 			 * over it and the "next" gap must be updated.
998e86f15eeSAndrea Arcangeli 			 * Because of the swap() the post-swap() "vma"
999e86f15eeSAndrea Arcangeli 			 * actually points to pre-swap() "next"
1000e86f15eeSAndrea Arcangeli 			 * (post-swap() "next" as opposed is now a
1001e86f15eeSAndrea Arcangeli 			 * dangling pointer).
1002e86f15eeSAndrea Arcangeli 			 */
1003e86f15eeSAndrea Arcangeli 			next = vma;
1004e86f15eeSAndrea Arcangeli 		}
1005734537c9SKirill A. Shutemov 		if (remove_next == 2) {
1006734537c9SKirill A. Shutemov 			remove_next = 1;
1007734537c9SKirill A. Shutemov 			end = next->vm_end;
10081da177e4SLinus Torvalds 			goto again;
1009734537c9SKirill A. Shutemov 		}
1010d3737187SMichel Lespinasse 		else if (next)
1011d3737187SMichel Lespinasse 			vma_gap_update(next);
1012fb8c41e9SAndrea Arcangeli 		else {
1013fb8c41e9SAndrea Arcangeli 			/*
1014fb8c41e9SAndrea Arcangeli 			 * If remove_next == 2 we obviously can't
1015fb8c41e9SAndrea Arcangeli 			 * reach this path.
1016fb8c41e9SAndrea Arcangeli 			 *
1017fb8c41e9SAndrea Arcangeli 			 * If remove_next == 3 we can't reach this
1018fb8c41e9SAndrea Arcangeli 			 * path because pre-swap() next is always not
1019fb8c41e9SAndrea Arcangeli 			 * NULL. pre-swap() "next" is not being
1020fb8c41e9SAndrea Arcangeli 			 * removed and its next->vm_end is not altered
1021fb8c41e9SAndrea Arcangeli 			 * (and furthermore "end" already matches
1022fb8c41e9SAndrea Arcangeli 			 * next->vm_end in remove_next == 3).
1023fb8c41e9SAndrea Arcangeli 			 *
1024fb8c41e9SAndrea Arcangeli 			 * We reach this only in the remove_next == 1
1025fb8c41e9SAndrea Arcangeli 			 * case if the "next" vma that was removed was
1026fb8c41e9SAndrea Arcangeli 			 * the highest vma of the mm. However in such
1027fb8c41e9SAndrea Arcangeli 			 * case next->vm_end == "end" and the extended
1028fb8c41e9SAndrea Arcangeli 			 * "vma" has vma->vm_end == next->vm_end so
1029fb8c41e9SAndrea Arcangeli 			 * mm->highest_vm_end doesn't need any update
1030fb8c41e9SAndrea Arcangeli 			 * in remove_next == 1 case.
1031fb8c41e9SAndrea Arcangeli 			 */
10321be7107fSHugh Dickins 			VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma));
1033fb8c41e9SAndrea Arcangeli 		}
10341da177e4SLinus Torvalds 	}
10352b144498SSrikar Dronamraju 	if (insert && file)
10367b2d81d4SIngo Molnar 		uprobe_mmap(insert);
10371da177e4SLinus Torvalds 
10381da177e4SLinus Torvalds 	validate_mm(mm);
10395beb4930SRik van Riel 
10405beb4930SRik van Riel 	return 0;
10411da177e4SLinus Torvalds }
10421da177e4SLinus Torvalds 
10431da177e4SLinus Torvalds /*
10441da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
10451da177e4SLinus Torvalds  * per-vma resources, so we don't attempt to merge those.
10461da177e4SLinus Torvalds  */
10471da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma,
104819a809afSAndrea Arcangeli 				struct file *file, unsigned long vm_flags,
10499a10064fSColin Cross 				struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
10505c26f6acSSuren Baghdasaryan 				struct anon_vma_name *anon_name)
10511da177e4SLinus Torvalds {
105234228d47SCyrill Gorcunov 	/*
105334228d47SCyrill Gorcunov 	 * VM_SOFTDIRTY should not prevent from VMA merging, if we
105434228d47SCyrill Gorcunov 	 * match the flags but dirty bit -- the caller should mark
105534228d47SCyrill Gorcunov 	 * merged VMA as dirty. If dirty bit won't be excluded from
10568bb4e7a2SWei Yang 	 * comparison, we increase pressure on the memory system forcing
105734228d47SCyrill Gorcunov 	 * the kernel to generate new VMAs when old one could be
105834228d47SCyrill Gorcunov 	 * extended instead.
105934228d47SCyrill Gorcunov 	 */
106034228d47SCyrill Gorcunov 	if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
10611da177e4SLinus Torvalds 		return 0;
10621da177e4SLinus Torvalds 	if (vma->vm_file != file)
10631da177e4SLinus Torvalds 		return 0;
10641da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
10651da177e4SLinus Torvalds 		return 0;
106619a809afSAndrea Arcangeli 	if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
106719a809afSAndrea Arcangeli 		return 0;
10685c26f6acSSuren Baghdasaryan 	if (!anon_vma_name_eq(anon_vma_name(vma), anon_name))
10699a10064fSColin Cross 		return 0;
10701da177e4SLinus Torvalds 	return 1;
10711da177e4SLinus Torvalds }
10721da177e4SLinus Torvalds 
10731da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
1074965f55deSShaohua Li 					struct anon_vma *anon_vma2,
1075965f55deSShaohua Li 					struct vm_area_struct *vma)
10761da177e4SLinus Torvalds {
1077965f55deSShaohua Li 	/*
1078965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
1079965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
1080965f55deSShaohua Li 	 */
1081965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
1082965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
1083965f55deSShaohua Li 		return 1;
1084965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
10851da177e4SLinus Torvalds }
10861da177e4SLinus Torvalds 
10871da177e4SLinus Torvalds /*
10881da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
10891da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
10901da177e4SLinus Torvalds  *
10911da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
10921da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
10931da177e4SLinus Torvalds  *
10941da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
109545e55300SPeter Collingbourne  * indices (16TB on ia32) because do_mmap() does not permit mmap's which
10961da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
10971da177e4SLinus Torvalds  */
10981da177e4SLinus Torvalds static int
10991da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
110019a809afSAndrea Arcangeli 		     struct anon_vma *anon_vma, struct file *file,
110119a809afSAndrea Arcangeli 		     pgoff_t vm_pgoff,
11029a10064fSColin Cross 		     struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
11035c26f6acSSuren Baghdasaryan 		     struct anon_vma_name *anon_name)
11041da177e4SLinus Torvalds {
11059a10064fSColin Cross 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
1106965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
11071da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
11081da177e4SLinus Torvalds 			return 1;
11091da177e4SLinus Torvalds 	}
11101da177e4SLinus Torvalds 	return 0;
11111da177e4SLinus Torvalds }
11121da177e4SLinus Torvalds 
11131da177e4SLinus Torvalds /*
11141da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
11151da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
11161da177e4SLinus Torvalds  *
11171da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
11181da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
11191da177e4SLinus Torvalds  */
11201da177e4SLinus Torvalds static int
11211da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
112219a809afSAndrea Arcangeli 		    struct anon_vma *anon_vma, struct file *file,
112319a809afSAndrea Arcangeli 		    pgoff_t vm_pgoff,
11249a10064fSColin Cross 		    struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
11255c26f6acSSuren Baghdasaryan 		    struct anon_vma_name *anon_name)
11261da177e4SLinus Torvalds {
11279a10064fSColin Cross 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
1128965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
11291da177e4SLinus Torvalds 		pgoff_t vm_pglen;
1130d6e93217SLibin 		vm_pglen = vma_pages(vma);
11311da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
11321da177e4SLinus Torvalds 			return 1;
11331da177e4SLinus Torvalds 	}
11341da177e4SLinus Torvalds 	return 0;
11351da177e4SLinus Torvalds }
11361da177e4SLinus Torvalds 
11371da177e4SLinus Torvalds /*
11389a10064fSColin Cross  * Given a mapping request (addr,end,vm_flags,file,pgoff,anon_name),
11399a10064fSColin Cross  * figure out whether that can be merged with its predecessor or its
11409a10064fSColin Cross  * successor.  Or both (it neatly fills a hole).
11411da177e4SLinus Torvalds  *
11421da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
11431da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
11441da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
11451da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
11461da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
11471da177e4SLinus Torvalds  * case has already been eliminated.
11481da177e4SLinus Torvalds  *
11491da177e4SLinus Torvalds  * The following mprotect cases have to be considered, where AAAA is
11501da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
11511da177e4SLinus Torvalds  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
11521da177e4SLinus Torvalds  *
11535d42ab29SWei Yang  *     AAAA             AAAA                   AAAA
11545d42ab29SWei Yang  *    PPPPPPNNNNNN    PPPPPPNNNNNN       PPPPPPNNNNNN
11555d42ab29SWei Yang  *    cannot merge    might become       might become
11565d42ab29SWei Yang  *                    PPNNNNNNNNNN       PPPPPPPPPPNN
11575d42ab29SWei Yang  *    mmap, brk or    case 4 below       case 5 below
11585d42ab29SWei Yang  *    mremap move:
11595d42ab29SWei Yang  *                        AAAA               AAAA
11605d42ab29SWei Yang  *                    PPPP    NNNN       PPPPNNNNXXXX
11615d42ab29SWei Yang  *                    might become       might become
11625d42ab29SWei Yang  *                    PPPPPPPPPPPP 1 or  PPPPPPPPPPPP 6 or
11635d42ab29SWei Yang  *                    PPPPPPPPNNNN 2 or  PPPPPPPPXXXX 7 or
11645d42ab29SWei Yang  *                    PPPPNNNNNNNN 3     PPPPXXXXXXXX 8
11651da177e4SLinus Torvalds  *
11668bb4e7a2SWei Yang  * It is important for case 8 that the vma NNNN overlapping the
1167e86f15eeSAndrea Arcangeli  * region AAAA is never going to extended over XXXX. Instead XXXX must
1168e86f15eeSAndrea Arcangeli  * be extended in region AAAA and NNNN must be removed. This way in
1169e86f15eeSAndrea Arcangeli  * all cases where vma_merge succeeds, the moment vma_adjust drops the
1170e86f15eeSAndrea Arcangeli  * rmap_locks, the properties of the merged vma will be already
1171e86f15eeSAndrea Arcangeli  * correct for the whole merged range. Some of those properties like
1172e86f15eeSAndrea Arcangeli  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
1173e86f15eeSAndrea Arcangeli  * be correct for the whole merged range immediately after the
1174e86f15eeSAndrea Arcangeli  * rmap_locks are released. Otherwise if XXXX would be removed and
1175e86f15eeSAndrea Arcangeli  * NNNN would be extended over the XXXX range, remove_migration_ptes
1176e86f15eeSAndrea Arcangeli  * or other rmap walkers (if working on addresses beyond the "end"
1177e86f15eeSAndrea Arcangeli  * parameter) may establish ptes with the wrong permissions of NNNN
1178e86f15eeSAndrea Arcangeli  * instead of the right permissions of XXXX.
11791da177e4SLinus Torvalds  */
11801da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm,
11811da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
11821da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
11831da177e4SLinus Torvalds 			struct anon_vma *anon_vma, struct file *file,
118419a809afSAndrea Arcangeli 			pgoff_t pgoff, struct mempolicy *policy,
11859a10064fSColin Cross 			struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
11865c26f6acSSuren Baghdasaryan 			struct anon_vma_name *anon_name)
11871da177e4SLinus Torvalds {
11881da177e4SLinus Torvalds 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
11891da177e4SLinus Torvalds 	struct vm_area_struct *area, *next;
11905beb4930SRik van Riel 	int err;
11911da177e4SLinus Torvalds 
11921da177e4SLinus Torvalds 	/*
11931da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
11941da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
11951da177e4SLinus Torvalds 	 */
11961da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
11971da177e4SLinus Torvalds 		return NULL;
11981da177e4SLinus Torvalds 
11993903b55aSLiam R. Howlett 	next = vma_next(mm, prev);
12001da177e4SLinus Torvalds 	area = next;
1201e86f15eeSAndrea Arcangeli 	if (area && area->vm_end == end)		/* cases 6, 7, 8 */
12021da177e4SLinus Torvalds 		next = next->vm_next;
12031da177e4SLinus Torvalds 
1204e86f15eeSAndrea Arcangeli 	/* verify some invariant that must be enforced by the caller */
1205e86f15eeSAndrea Arcangeli 	VM_WARN_ON(prev && addr <= prev->vm_start);
1206e86f15eeSAndrea Arcangeli 	VM_WARN_ON(area && end > area->vm_end);
1207e86f15eeSAndrea Arcangeli 	VM_WARN_ON(addr >= end);
1208e86f15eeSAndrea Arcangeli 
12091da177e4SLinus Torvalds 	/*
12101da177e4SLinus Torvalds 	 * Can it merge with the predecessor?
12111da177e4SLinus Torvalds 	 */
12121da177e4SLinus Torvalds 	if (prev && prev->vm_end == addr &&
12131da177e4SLinus Torvalds 			mpol_equal(vma_policy(prev), policy) &&
12141da177e4SLinus Torvalds 			can_vma_merge_after(prev, vm_flags,
121519a809afSAndrea Arcangeli 					    anon_vma, file, pgoff,
12169a10064fSColin Cross 					    vm_userfaultfd_ctx, anon_name)) {
12171da177e4SLinus Torvalds 		/*
12181da177e4SLinus Torvalds 		 * OK, it can.  Can we now merge in the successor as well?
12191da177e4SLinus Torvalds 		 */
12201da177e4SLinus Torvalds 		if (next && end == next->vm_start &&
12211da177e4SLinus Torvalds 				mpol_equal(policy, vma_policy(next)) &&
12221da177e4SLinus Torvalds 				can_vma_merge_before(next, vm_flags,
122319a809afSAndrea Arcangeli 						     anon_vma, file,
122419a809afSAndrea Arcangeli 						     pgoff+pglen,
12259a10064fSColin Cross 						     vm_userfaultfd_ctx, anon_name) &&
12261da177e4SLinus Torvalds 				is_mergeable_anon_vma(prev->anon_vma,
1227965f55deSShaohua Li 						      next->anon_vma, NULL)) {
12281da177e4SLinus Torvalds 							/* cases 1, 6 */
1229e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1230e86f15eeSAndrea Arcangeli 					 next->vm_end, prev->vm_pgoff, NULL,
1231e86f15eeSAndrea Arcangeli 					 prev);
12321da177e4SLinus Torvalds 		} else					/* cases 2, 5, 7 */
1233e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1234e86f15eeSAndrea Arcangeli 					 end, prev->vm_pgoff, NULL, prev);
12355beb4930SRik van Riel 		if (err)
12365beb4930SRik van Riel 			return NULL;
12376d50e60cSDavid Rientjes 		khugepaged_enter_vma_merge(prev, vm_flags);
12381da177e4SLinus Torvalds 		return prev;
12391da177e4SLinus Torvalds 	}
12401da177e4SLinus Torvalds 
12411da177e4SLinus Torvalds 	/*
12421da177e4SLinus Torvalds 	 * Can this new request be merged in front of next?
12431da177e4SLinus Torvalds 	 */
12441da177e4SLinus Torvalds 	if (next && end == next->vm_start &&
12451da177e4SLinus Torvalds 			mpol_equal(policy, vma_policy(next)) &&
12461da177e4SLinus Torvalds 			can_vma_merge_before(next, vm_flags,
124719a809afSAndrea Arcangeli 					     anon_vma, file, pgoff+pglen,
12489a10064fSColin Cross 					     vm_userfaultfd_ctx, anon_name)) {
12491da177e4SLinus Torvalds 		if (prev && addr < prev->vm_end)	/* case 4 */
1250e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1251e86f15eeSAndrea Arcangeli 					 addr, prev->vm_pgoff, NULL, next);
1252e86f15eeSAndrea Arcangeli 		else {					/* cases 3, 8 */
1253e86f15eeSAndrea Arcangeli 			err = __vma_adjust(area, addr, next->vm_end,
1254e86f15eeSAndrea Arcangeli 					 next->vm_pgoff - pglen, NULL, next);
1255e86f15eeSAndrea Arcangeli 			/*
1256e86f15eeSAndrea Arcangeli 			 * In case 3 area is already equal to next and
1257e86f15eeSAndrea Arcangeli 			 * this is a noop, but in case 8 "area" has
1258e86f15eeSAndrea Arcangeli 			 * been removed and next was expanded over it.
1259e86f15eeSAndrea Arcangeli 			 */
1260e86f15eeSAndrea Arcangeli 			area = next;
1261e86f15eeSAndrea Arcangeli 		}
12625beb4930SRik van Riel 		if (err)
12635beb4930SRik van Riel 			return NULL;
12646d50e60cSDavid Rientjes 		khugepaged_enter_vma_merge(area, vm_flags);
12651da177e4SLinus Torvalds 		return area;
12661da177e4SLinus Torvalds 	}
12671da177e4SLinus Torvalds 
12681da177e4SLinus Torvalds 	return NULL;
12691da177e4SLinus Torvalds }
12701da177e4SLinus Torvalds 
12711da177e4SLinus Torvalds /*
1272b4f315b4SEthon Paul  * Rough compatibility check to quickly see if it's even worth looking
1273d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
1274d0e9fe17SLinus Torvalds  *
1275d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
1276d0e9fe17SLinus Torvalds  * in things that mprotect may change.
1277d0e9fe17SLinus Torvalds  *
1278d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1279d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
1280d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
1281d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
1282d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
1283d0e9fe17SLinus Torvalds  */
1284d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1285d0e9fe17SLinus Torvalds {
1286d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
1287d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
1288d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
12896cb4d9a2SAnshuman Khandual 		!((a->vm_flags ^ b->vm_flags) & ~(VM_ACCESS_FLAGS | VM_SOFTDIRTY)) &&
1290d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1291d0e9fe17SLinus Torvalds }
1292d0e9fe17SLinus Torvalds 
1293d0e9fe17SLinus Torvalds /*
1294d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
1295d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1296d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
1297d0e9fe17SLinus Torvalds  * to share the anon_vma.
1298d0e9fe17SLinus Torvalds  *
1299d0e9fe17SLinus Torvalds  * NOTE! This runs with mm_sem held for reading, so it is possible that
1300d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
1301d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
1302d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
1303d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
13044db0c3c2SJason Low  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1305d0e9fe17SLinus Torvalds  *
1306d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1307d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1308d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
1309d0e9fe17SLinus Torvalds  * a fork).
1310d0e9fe17SLinus Torvalds  *
1311d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
1312d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
1313d0e9fe17SLinus Torvalds  * a read lock on the mm_sem.
1314d0e9fe17SLinus Torvalds  */
1315d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1316d0e9fe17SLinus Torvalds {
1317d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
13184db0c3c2SJason Low 		struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1319d0e9fe17SLinus Torvalds 
1320d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
1321d0e9fe17SLinus Torvalds 			return anon_vma;
1322d0e9fe17SLinus Torvalds 	}
1323d0e9fe17SLinus Torvalds 	return NULL;
1324d0e9fe17SLinus Torvalds }
1325d0e9fe17SLinus Torvalds 
1326d0e9fe17SLinus Torvalds /*
13271da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
13281da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
13291da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
13301da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
13311da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
13321da177e4SLinus Torvalds  * mprotect.
13331da177e4SLinus Torvalds  */
13341da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
13351da177e4SLinus Torvalds {
1336a67c8caaSMiaohe Lin 	struct anon_vma *anon_vma = NULL;
13371da177e4SLinus Torvalds 
1338a67c8caaSMiaohe Lin 	/* Try next first. */
1339a67c8caaSMiaohe Lin 	if (vma->vm_next) {
1340a67c8caaSMiaohe Lin 		anon_vma = reusable_anon_vma(vma->vm_next, vma, vma->vm_next);
1341d0e9fe17SLinus Torvalds 		if (anon_vma)
1342d0e9fe17SLinus Torvalds 			return anon_vma;
1343a67c8caaSMiaohe Lin 	}
13441da177e4SLinus Torvalds 
1345a67c8caaSMiaohe Lin 	/* Try prev next. */
1346a67c8caaSMiaohe Lin 	if (vma->vm_prev)
1347a67c8caaSMiaohe Lin 		anon_vma = reusable_anon_vma(vma->vm_prev, vma->vm_prev, vma);
1348a67c8caaSMiaohe Lin 
13491da177e4SLinus Torvalds 	/*
1350a67c8caaSMiaohe Lin 	 * We might reach here with anon_vma == NULL if we can't find
1351a67c8caaSMiaohe Lin 	 * any reusable anon_vma.
13521da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
13531da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
13541da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
13551da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
13561da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
13571da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
13581da177e4SLinus Torvalds 	 */
1359a67c8caaSMiaohe Lin 	return anon_vma;
13601da177e4SLinus Torvalds }
13611da177e4SLinus Torvalds 
13621da177e4SLinus Torvalds /*
136340401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
136440401530SAl Viro  * low as possible but still greater than mmap_min_addr
136540401530SAl Viro  */
136640401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
136740401530SAl Viro {
136840401530SAl Viro 	hint &= PAGE_MASK;
136940401530SAl Viro 	if (((void *)hint != NULL) &&
137040401530SAl Viro 	    (hint < mmap_min_addr))
137140401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
137240401530SAl Viro 	return hint;
137340401530SAl Viro }
137440401530SAl Viro 
13756aeb2542SMike Rapoport int mlock_future_check(struct mm_struct *mm, unsigned long flags,
1376363ee17fSDavidlohr Bueso 		       unsigned long len)
1377363ee17fSDavidlohr Bueso {
1378363ee17fSDavidlohr Bueso 	unsigned long locked, lock_limit;
1379363ee17fSDavidlohr Bueso 
1380363ee17fSDavidlohr Bueso 	/*  mlock MCL_FUTURE? */
1381363ee17fSDavidlohr Bueso 	if (flags & VM_LOCKED) {
1382363ee17fSDavidlohr Bueso 		locked = len >> PAGE_SHIFT;
1383363ee17fSDavidlohr Bueso 		locked += mm->locked_vm;
1384363ee17fSDavidlohr Bueso 		lock_limit = rlimit(RLIMIT_MEMLOCK);
1385363ee17fSDavidlohr Bueso 		lock_limit >>= PAGE_SHIFT;
1386363ee17fSDavidlohr Bueso 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1387363ee17fSDavidlohr Bueso 			return -EAGAIN;
1388363ee17fSDavidlohr Bueso 	}
1389363ee17fSDavidlohr Bueso 	return 0;
1390363ee17fSDavidlohr Bueso }
1391363ee17fSDavidlohr Bueso 
1392be83bbf8SLinus Torvalds static inline u64 file_mmap_size_max(struct file *file, struct inode *inode)
1393be83bbf8SLinus Torvalds {
1394be83bbf8SLinus Torvalds 	if (S_ISREG(inode->i_mode))
1395423913adSLinus Torvalds 		return MAX_LFS_FILESIZE;
1396be83bbf8SLinus Torvalds 
1397be83bbf8SLinus Torvalds 	if (S_ISBLK(inode->i_mode))
1398be83bbf8SLinus Torvalds 		return MAX_LFS_FILESIZE;
1399be83bbf8SLinus Torvalds 
140076f34950SIvan Khoronzhuk 	if (S_ISSOCK(inode->i_mode))
140176f34950SIvan Khoronzhuk 		return MAX_LFS_FILESIZE;
140276f34950SIvan Khoronzhuk 
1403be83bbf8SLinus Torvalds 	/* Special "we do even unsigned file positions" case */
1404be83bbf8SLinus Torvalds 	if (file->f_mode & FMODE_UNSIGNED_OFFSET)
1405be83bbf8SLinus Torvalds 		return 0;
1406be83bbf8SLinus Torvalds 
1407be83bbf8SLinus Torvalds 	/* Yes, random drivers might want more. But I'm tired of buggy drivers */
1408be83bbf8SLinus Torvalds 	return ULONG_MAX;
1409be83bbf8SLinus Torvalds }
1410be83bbf8SLinus Torvalds 
1411be83bbf8SLinus Torvalds static inline bool file_mmap_ok(struct file *file, struct inode *inode,
1412be83bbf8SLinus Torvalds 				unsigned long pgoff, unsigned long len)
1413be83bbf8SLinus Torvalds {
1414be83bbf8SLinus Torvalds 	u64 maxsize = file_mmap_size_max(file, inode);
1415be83bbf8SLinus Torvalds 
1416be83bbf8SLinus Torvalds 	if (maxsize && len > maxsize)
1417be83bbf8SLinus Torvalds 		return false;
1418be83bbf8SLinus Torvalds 	maxsize -= len;
1419be83bbf8SLinus Torvalds 	if (pgoff > maxsize >> PAGE_SHIFT)
1420be83bbf8SLinus Torvalds 		return false;
1421be83bbf8SLinus Torvalds 	return true;
1422be83bbf8SLinus Torvalds }
1423be83bbf8SLinus Torvalds 
142440401530SAl Viro /*
14253e4e28c5SMichel Lespinasse  * The caller must write-lock current->mm->mmap_lock.
14261da177e4SLinus Torvalds  */
14271fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr,
14281da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
142945e55300SPeter Collingbourne 			unsigned long flags, unsigned long pgoff,
143045e55300SPeter Collingbourne 			unsigned long *populate, struct list_head *uf)
14311da177e4SLinus Torvalds {
14321da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
143345e55300SPeter Collingbourne 	vm_flags_t vm_flags;
143462b5f7d0SDave Hansen 	int pkey = 0;
14351da177e4SLinus Torvalds 
143641badc15SMichel Lespinasse 	*populate = 0;
1437bebeb3d6SMichel Lespinasse 
1438e37609bbSPiotr Kwapulinski 	if (!len)
1439e37609bbSPiotr Kwapulinski 		return -EINVAL;
1440e37609bbSPiotr Kwapulinski 
14411da177e4SLinus Torvalds 	/*
14421da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
14431da177e4SLinus Torvalds 	 *
14441da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
14451da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
14461da177e4SLinus Torvalds 	 */
14471da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
144890f8572bSEric W. Biederman 		if (!(file && path_noexec(&file->f_path)))
14491da177e4SLinus Torvalds 			prot |= PROT_EXEC;
14501da177e4SLinus Torvalds 
1451a4ff8e86SMichal Hocko 	/* force arch specific MAP_FIXED handling in get_unmapped_area */
1452a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE)
1453a4ff8e86SMichal Hocko 		flags |= MAP_FIXED;
1454a4ff8e86SMichal Hocko 
14557cd94146SEric Paris 	if (!(flags & MAP_FIXED))
14567cd94146SEric Paris 		addr = round_hint_to_min(addr);
14577cd94146SEric Paris 
14581da177e4SLinus Torvalds 	/* Careful about overflows.. */
14591da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
14609206de95SAl Viro 	if (!len)
14611da177e4SLinus Torvalds 		return -ENOMEM;
14621da177e4SLinus Torvalds 
14631da177e4SLinus Torvalds 	/* offset overflow? */
14641da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
14651da177e4SLinus Torvalds 		return -EOVERFLOW;
14661da177e4SLinus Torvalds 
14671da177e4SLinus Torvalds 	/* Too many mappings? */
14681da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
14691da177e4SLinus Torvalds 		return -ENOMEM;
14701da177e4SLinus Torvalds 
14711da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
14721da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
14731da177e4SLinus Torvalds 	 */
14741da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
1475ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(addr))
14761da177e4SLinus Torvalds 		return addr;
14771da177e4SLinus Torvalds 
1478a4ff8e86SMichal Hocko 	if (flags & MAP_FIXED_NOREPLACE) {
147935e43c5fSLiam Howlett 		if (find_vma_intersection(mm, addr, addr + len))
1480a4ff8e86SMichal Hocko 			return -EEXIST;
1481a4ff8e86SMichal Hocko 	}
1482a4ff8e86SMichal Hocko 
148362b5f7d0SDave Hansen 	if (prot == PROT_EXEC) {
148462b5f7d0SDave Hansen 		pkey = execute_only_pkey(mm);
148562b5f7d0SDave Hansen 		if (pkey < 0)
148662b5f7d0SDave Hansen 			pkey = 0;
148762b5f7d0SDave Hansen 	}
148862b5f7d0SDave Hansen 
14891da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
14901da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
14911da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
14921da177e4SLinus Torvalds 	 */
149345e55300SPeter Collingbourne 	vm_flags = calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
14941da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
14951da177e4SLinus Torvalds 
1496cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
14971da177e4SLinus Torvalds 		if (!can_do_mlock())
14981da177e4SLinus Torvalds 			return -EPERM;
1499ba470de4SRik van Riel 
1500363ee17fSDavidlohr Bueso 	if (mlock_future_check(mm, vm_flags, len))
15011da177e4SLinus Torvalds 		return -EAGAIN;
15021da177e4SLinus Torvalds 
15031da177e4SLinus Torvalds 	if (file) {
1504077bf22bSOleg Nesterov 		struct inode *inode = file_inode(file);
15051c972597SDan Williams 		unsigned long flags_mask;
15061c972597SDan Williams 
1507be83bbf8SLinus Torvalds 		if (!file_mmap_ok(file, inode, pgoff, len))
1508be83bbf8SLinus Torvalds 			return -EOVERFLOW;
1509be83bbf8SLinus Torvalds 
15101c972597SDan Williams 		flags_mask = LEGACY_MAP_MASK | file->f_op->mmap_supported_flags;
1511077bf22bSOleg Nesterov 
15121da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
15131da177e4SLinus Torvalds 		case MAP_SHARED:
15141c972597SDan Williams 			/*
15151c972597SDan Williams 			 * Force use of MAP_SHARED_VALIDATE with non-legacy
15161c972597SDan Williams 			 * flags. E.g. MAP_SYNC is dangerous to use with
15171c972597SDan Williams 			 * MAP_SHARED as you don't know which consistency model
15181c972597SDan Williams 			 * you will get. We silently ignore unsupported flags
15191c972597SDan Williams 			 * with MAP_SHARED to preserve backward compatibility.
15201c972597SDan Williams 			 */
15211c972597SDan Williams 			flags &= LEGACY_MAP_MASK;
1522e4a9bc58SJoe Perches 			fallthrough;
15231c972597SDan Williams 		case MAP_SHARED_VALIDATE:
15241c972597SDan Williams 			if (flags & ~flags_mask)
15251c972597SDan Williams 				return -EOPNOTSUPP;
1526dc617f29SDarrick J. Wong 			if (prot & PROT_WRITE) {
1527dc617f29SDarrick J. Wong 				if (!(file->f_mode & FMODE_WRITE))
15281da177e4SLinus Torvalds 					return -EACCES;
1529dc617f29SDarrick J. Wong 				if (IS_SWAPFILE(file->f_mapping->host))
1530dc617f29SDarrick J. Wong 					return -ETXTBSY;
1531dc617f29SDarrick J. Wong 			}
15321da177e4SLinus Torvalds 
15331da177e4SLinus Torvalds 			/*
15341da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
15351da177e4SLinus Torvalds 			 * file..
15361da177e4SLinus Torvalds 			 */
15371da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
15381da177e4SLinus Torvalds 				return -EACCES;
15391da177e4SLinus Torvalds 
15401da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
15411da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
15421da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1543e4a9bc58SJoe Perches 			fallthrough;
15441da177e4SLinus Torvalds 		case MAP_PRIVATE:
15451da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
15461da177e4SLinus Torvalds 				return -EACCES;
154790f8572bSEric W. Biederman 			if (path_noexec(&file->f_path)) {
154880c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
154980c5606cSLinus Torvalds 					return -EPERM;
155080c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
155180c5606cSLinus Torvalds 			}
155280c5606cSLinus Torvalds 
155372c2d531SAl Viro 			if (!file->f_op->mmap)
155480c5606cSLinus Torvalds 				return -ENODEV;
1555b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1556b2c56e4fSOleg Nesterov 				return -EINVAL;
15571da177e4SLinus Torvalds 			break;
15581da177e4SLinus Torvalds 
15591da177e4SLinus Torvalds 		default:
15601da177e4SLinus Torvalds 			return -EINVAL;
15611da177e4SLinus Torvalds 		}
15621da177e4SLinus Torvalds 	} else {
15631da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
15641da177e4SLinus Torvalds 		case MAP_SHARED:
1565b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1566b2c56e4fSOleg Nesterov 				return -EINVAL;
1567ce363942STejun Heo 			/*
1568ce363942STejun Heo 			 * Ignore pgoff.
1569ce363942STejun Heo 			 */
1570ce363942STejun Heo 			pgoff = 0;
15711da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
15721da177e4SLinus Torvalds 			break;
15731da177e4SLinus Torvalds 		case MAP_PRIVATE:
15741da177e4SLinus Torvalds 			/*
15751da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
15761da177e4SLinus Torvalds 			 */
15771da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
15781da177e4SLinus Torvalds 			break;
15791da177e4SLinus Torvalds 		default:
15801da177e4SLinus Torvalds 			return -EINVAL;
15811da177e4SLinus Torvalds 		}
15821da177e4SLinus Torvalds 	}
15831da177e4SLinus Torvalds 
1584c22c0d63SMichel Lespinasse 	/*
1585c22c0d63SMichel Lespinasse 	 * Set 'VM_NORESERVE' if we should not account for the
1586c22c0d63SMichel Lespinasse 	 * memory use of this mapping.
1587c22c0d63SMichel Lespinasse 	 */
1588c22c0d63SMichel Lespinasse 	if (flags & MAP_NORESERVE) {
1589c22c0d63SMichel Lespinasse 		/* We honor MAP_NORESERVE if allowed to overcommit */
1590c22c0d63SMichel Lespinasse 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1591c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1592c22c0d63SMichel Lespinasse 
1593c22c0d63SMichel Lespinasse 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
1594c22c0d63SMichel Lespinasse 		if (file && is_file_hugepages(file))
1595c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1596c22c0d63SMichel Lespinasse 	}
1597c22c0d63SMichel Lespinasse 
1598897ab3e0SMike Rapoport 	addr = mmap_region(file, addr, len, vm_flags, pgoff, uf);
159909a9f1d2SMichel Lespinasse 	if (!IS_ERR_VALUE(addr) &&
160009a9f1d2SMichel Lespinasse 	    ((vm_flags & VM_LOCKED) ||
160109a9f1d2SMichel Lespinasse 	     (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
160241badc15SMichel Lespinasse 		*populate = len;
1603bebeb3d6SMichel Lespinasse 	return addr;
16040165ab44SMiklos Szeredi }
16056be5ceb0SLinus Torvalds 
1606a90f590aSDominik Brodowski unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
1607a90f590aSDominik Brodowski 			      unsigned long prot, unsigned long flags,
1608a90f590aSDominik Brodowski 			      unsigned long fd, unsigned long pgoff)
160966f0dc48SHugh Dickins {
161066f0dc48SHugh Dickins 	struct file *file = NULL;
16111e3ee14bSChen Gang 	unsigned long retval;
161266f0dc48SHugh Dickins 
161366f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1614120a795dSAl Viro 		audit_mmap_fd(fd, flags);
161566f0dc48SHugh Dickins 		file = fget(fd);
161666f0dc48SHugh Dickins 		if (!file)
16171e3ee14bSChen Gang 			return -EBADF;
16187bba8f0eSZhen Lei 		if (is_file_hugepages(file)) {
1619af73e4d9SNaoya Horiguchi 			len = ALIGN(len, huge_page_size(hstate_file(file)));
16207bba8f0eSZhen Lei 		} else if (unlikely(flags & MAP_HUGETLB)) {
1621493af578SJörn Engel 			retval = -EINVAL;
1622493af578SJörn Engel 			goto out_fput;
16237bba8f0eSZhen Lei 		}
162466f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
1625c103a4dcSAndrew Morton 		struct hstate *hs;
1626af73e4d9SNaoya Horiguchi 
162720ac2893SAnshuman Khandual 		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
1628091d0d55SLi Zefan 		if (!hs)
1629091d0d55SLi Zefan 			return -EINVAL;
1630091d0d55SLi Zefan 
1631091d0d55SLi Zefan 		len = ALIGN(len, huge_page_size(hs));
163266f0dc48SHugh Dickins 		/*
163366f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
163466f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
163566f0dc48SHugh Dickins 		 */
1636af73e4d9SNaoya Horiguchi 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
163742d7395fSAndi Kleen 				VM_NORESERVE,
163883c1fd76Szhangyiru 				HUGETLB_ANONHUGE_INODE,
163942d7395fSAndi Kleen 				(flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
164066f0dc48SHugh Dickins 		if (IS_ERR(file))
164166f0dc48SHugh Dickins 			return PTR_ERR(file);
164266f0dc48SHugh Dickins 	}
164366f0dc48SHugh Dickins 
16449fbeb5abSMichal Hocko 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1645493af578SJörn Engel out_fput:
164666f0dc48SHugh Dickins 	if (file)
164766f0dc48SHugh Dickins 		fput(file);
164866f0dc48SHugh Dickins 	return retval;
164966f0dc48SHugh Dickins }
165066f0dc48SHugh Dickins 
1651a90f590aSDominik Brodowski SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1652a90f590aSDominik Brodowski 		unsigned long, prot, unsigned long, flags,
1653a90f590aSDominik Brodowski 		unsigned long, fd, unsigned long, pgoff)
1654a90f590aSDominik Brodowski {
1655a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
1656a90f590aSDominik Brodowski }
1657a90f590aSDominik Brodowski 
1658a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1659a4679373SChristoph Hellwig struct mmap_arg_struct {
1660a4679373SChristoph Hellwig 	unsigned long addr;
1661a4679373SChristoph Hellwig 	unsigned long len;
1662a4679373SChristoph Hellwig 	unsigned long prot;
1663a4679373SChristoph Hellwig 	unsigned long flags;
1664a4679373SChristoph Hellwig 	unsigned long fd;
1665a4679373SChristoph Hellwig 	unsigned long offset;
1666a4679373SChristoph Hellwig };
1667a4679373SChristoph Hellwig 
1668a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1669a4679373SChristoph Hellwig {
1670a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1671a4679373SChristoph Hellwig 
1672a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1673a4679373SChristoph Hellwig 		return -EFAULT;
1674de1741a1SAlexander Kuleshov 	if (offset_in_page(a.offset))
1675a4679373SChristoph Hellwig 		return -EINVAL;
1676a4679373SChristoph Hellwig 
1677a90f590aSDominik Brodowski 	return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1678a4679373SChristoph Hellwig 			       a.offset >> PAGE_SHIFT);
1679a4679373SChristoph Hellwig }
1680a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1681a4679373SChristoph Hellwig 
16824e950f6fSAlexey Dobriyan /*
16838bb4e7a2SWei Yang  * Some shared mappings will want the pages marked read-only
16844e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
16854e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
16864e950f6fSAlexey Dobriyan  * VM_SHARED bit).
16874e950f6fSAlexey Dobriyan  */
16886d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
16894e950f6fSAlexey Dobriyan {
1690ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags = vma->vm_flags;
16918a04446aSKirill A. Shutemov 	const struct vm_operations_struct *vm_ops = vma->vm_ops;
16924e950f6fSAlexey Dobriyan 
16934e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
16944e950f6fSAlexey Dobriyan 	if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
16954e950f6fSAlexey Dobriyan 		return 0;
16964e950f6fSAlexey Dobriyan 
16974e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
16988a04446aSKirill A. Shutemov 	if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
16994e950f6fSAlexey Dobriyan 		return 1;
17004e950f6fSAlexey Dobriyan 
170164e45507SPeter Feiner 	/* The open routine did something to the protections that pgprot_modify
170264e45507SPeter Feiner 	 * won't preserve? */
17036d2329f8SAndrea Arcangeli 	if (pgprot_val(vm_page_prot) !=
17046d2329f8SAndrea Arcangeli 	    pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
17054e950f6fSAlexey Dobriyan 		return 0;
17064e950f6fSAlexey Dobriyan 
170764e45507SPeter Feiner 	/* Do we need to track softdirty? */
170864e45507SPeter Feiner 	if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY))
170964e45507SPeter Feiner 		return 1;
171064e45507SPeter Feiner 
17114e950f6fSAlexey Dobriyan 	/* Specialty mapping? */
17124b6e1e37SKonstantin Khlebnikov 	if (vm_flags & VM_PFNMAP)
17134e950f6fSAlexey Dobriyan 		return 0;
17144e950f6fSAlexey Dobriyan 
17154e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
17164e950f6fSAlexey Dobriyan 	return vma->vm_file && vma->vm_file->f_mapping &&
1717f56753acSChristoph Hellwig 		mapping_can_writeback(vma->vm_file->f_mapping);
17184e950f6fSAlexey Dobriyan }
17194e950f6fSAlexey Dobriyan 
1720fc8744adSLinus Torvalds /*
1721fc8744adSLinus Torvalds  * We account for memory if it's a private writeable mapping,
17225a6fe125SMel Gorman  * not hugepages and VM_NORESERVE wasn't set.
1723fc8744adSLinus Torvalds  */
1724ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1725fc8744adSLinus Torvalds {
17265a6fe125SMel Gorman 	/*
17275a6fe125SMel Gorman 	 * hugetlb has its own accounting separate from the core VM
17285a6fe125SMel Gorman 	 * VM_HUGETLB may not be set yet so we cannot check for that flag.
17295a6fe125SMel Gorman 	 */
17305a6fe125SMel Gorman 	if (file && is_file_hugepages(file))
17315a6fe125SMel Gorman 		return 0;
17325a6fe125SMel Gorman 
1733fc8744adSLinus Torvalds 	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1734fc8744adSLinus Torvalds }
1735fc8744adSLinus Torvalds 
17360165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr,
1737897ab3e0SMike Rapoport 		unsigned long len, vm_flags_t vm_flags, unsigned long pgoff,
1738897ab3e0SMike Rapoport 		struct list_head *uf)
17390165ab44SMiklos Szeredi {
17400165ab44SMiklos Szeredi 	struct mm_struct *mm = current->mm;
1741d70cec89SMiaohe Lin 	struct vm_area_struct *vma, *prev, *merge;
17420165ab44SMiklos Szeredi 	int error;
17430165ab44SMiklos Szeredi 	struct rb_node **rb_link, *rb_parent;
17440165ab44SMiklos Szeredi 	unsigned long charged = 0;
17450165ab44SMiklos Szeredi 
1746e8420a8eSCyril Hrubis 	/* Check against address space limit. */
174784638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
1748e8420a8eSCyril Hrubis 		unsigned long nr_pages;
1749e8420a8eSCyril Hrubis 
1750e8420a8eSCyril Hrubis 		/*
1751e8420a8eSCyril Hrubis 		 * MAP_FIXED may remove pages of mappings that intersects with
1752e8420a8eSCyril Hrubis 		 * requested mapping. Account for the pages it would unmap.
1753e8420a8eSCyril Hrubis 		 */
1754e8420a8eSCyril Hrubis 		nr_pages = count_vma_pages_range(mm, addr, addr + len);
1755e8420a8eSCyril Hrubis 
175684638335SKonstantin Khlebnikov 		if (!may_expand_vm(mm, vm_flags,
175784638335SKonstantin Khlebnikov 					(len >> PAGE_SHIFT) - nr_pages))
1758e8420a8eSCyril Hrubis 			return -ENOMEM;
1759e8420a8eSCyril Hrubis 	}
1760e8420a8eSCyril Hrubis 
1761fb8090b6SLiam R. Howlett 	/* Clear old maps, set up prev, rb_link, rb_parent, and uf */
1762fb8090b6SLiam R. Howlett 	if (munmap_vma_range(mm, addr, len, &prev, &rb_link, &rb_parent, uf))
17631da177e4SLinus Torvalds 		return -ENOMEM;
1764fc8744adSLinus Torvalds 	/*
17651da177e4SLinus Torvalds 	 * Private writable mapping: check memory availability
17661da177e4SLinus Torvalds 	 */
17675a6fe125SMel Gorman 	if (accountable_mapping(file, vm_flags)) {
17681da177e4SLinus Torvalds 		charged = len >> PAGE_SHIFT;
1769191c5424SAl Viro 		if (security_vm_enough_memory_mm(mm, charged))
17701da177e4SLinus Torvalds 			return -ENOMEM;
17711da177e4SLinus Torvalds 		vm_flags |= VM_ACCOUNT;
17721da177e4SLinus Torvalds 	}
17731da177e4SLinus Torvalds 
17741da177e4SLinus Torvalds 	/*
1775de33c8dbSLinus Torvalds 	 * Can we just expand an old mapping?
17761da177e4SLinus Torvalds 	 */
177719a809afSAndrea Arcangeli 	vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
17789a10064fSColin Cross 			NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
1779ba470de4SRik van Riel 	if (vma)
17801da177e4SLinus Torvalds 		goto out;
17811da177e4SLinus Torvalds 
17821da177e4SLinus Torvalds 	/*
17831da177e4SLinus Torvalds 	 * Determine the object being mapped and call the appropriate
17841da177e4SLinus Torvalds 	 * specific mapper. the address has already been validated, but
17851da177e4SLinus Torvalds 	 * not unmapped, but the maps are removed from the list.
17861da177e4SLinus Torvalds 	 */
1787490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
17881da177e4SLinus Torvalds 	if (!vma) {
17891da177e4SLinus Torvalds 		error = -ENOMEM;
17901da177e4SLinus Torvalds 		goto unacct_error;
17911da177e4SLinus Torvalds 	}
17921da177e4SLinus Torvalds 
17931da177e4SLinus Torvalds 	vma->vm_start = addr;
17941da177e4SLinus Torvalds 	vma->vm_end = addr + len;
17951da177e4SLinus Torvalds 	vma->vm_flags = vm_flags;
17963ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
17971da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
17981da177e4SLinus Torvalds 
17991da177e4SLinus Torvalds 	if (file) {
18004bb5f5d9SDavid Herrmann 		if (vm_flags & VM_SHARED) {
18014bb5f5d9SDavid Herrmann 			error = mapping_map_writable(file->f_mapping);
18024bb5f5d9SDavid Herrmann 			if (error)
18038d0920bdSDavid Hildenbrand 				goto free_vma;
18044bb5f5d9SDavid Herrmann 		}
18054bb5f5d9SDavid Herrmann 
1806cb0942b8SAl Viro 		vma->vm_file = get_file(file);
1807f74ac015SMiklos Szeredi 		error = call_mmap(file, vma);
18081da177e4SLinus Torvalds 		if (error)
18091da177e4SLinus Torvalds 			goto unmap_and_free_vma;
18101da177e4SLinus Torvalds 
1811309d08d9SLiu Zixian 		/* Can addr have changed??
1812309d08d9SLiu Zixian 		 *
1813309d08d9SLiu Zixian 		 * Answer: Yes, several device drivers can do it in their
1814309d08d9SLiu Zixian 		 *         f_op->mmap method. -DaveM
1815309d08d9SLiu Zixian 		 * Bug: If addr is changed, prev, rb_link, rb_parent should
1816309d08d9SLiu Zixian 		 *      be updated for vma_link()
1817309d08d9SLiu Zixian 		 */
1818309d08d9SLiu Zixian 		WARN_ON_ONCE(addr != vma->vm_start);
1819309d08d9SLiu Zixian 
1820309d08d9SLiu Zixian 		addr = vma->vm_start;
1821309d08d9SLiu Zixian 
1822d70cec89SMiaohe Lin 		/* If vm_flags changed after call_mmap(), we should try merge vma again
1823d70cec89SMiaohe Lin 		 * as we may succeed this time.
1824d70cec89SMiaohe Lin 		 */
1825d70cec89SMiaohe Lin 		if (unlikely(vm_flags != vma->vm_flags && prev)) {
1826d70cec89SMiaohe Lin 			merge = vma_merge(mm, prev, vma->vm_start, vma->vm_end, vma->vm_flags,
18279a10064fSColin Cross 				NULL, vma->vm_file, vma->vm_pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
1828d70cec89SMiaohe Lin 			if (merge) {
1829bc4fe4cdSMiaohe Lin 				/* ->mmap() can change vma->vm_file and fput the original file. So
1830bc4fe4cdSMiaohe Lin 				 * fput the vma->vm_file here or we would add an extra fput for file
1831bc4fe4cdSMiaohe Lin 				 * and cause general protection fault ultimately.
1832bc4fe4cdSMiaohe Lin 				 */
1833bc4fe4cdSMiaohe Lin 				fput(vma->vm_file);
1834d70cec89SMiaohe Lin 				vm_area_free(vma);
1835d70cec89SMiaohe Lin 				vma = merge;
1836309d08d9SLiu Zixian 				/* Update vm_flags to pick up the change. */
1837d70cec89SMiaohe Lin 				vm_flags = vma->vm_flags;
1838d70cec89SMiaohe Lin 				goto unmap_writable;
1839d70cec89SMiaohe Lin 			}
1840d70cec89SMiaohe Lin 		}
1841d70cec89SMiaohe Lin 
18421da177e4SLinus Torvalds 		vm_flags = vma->vm_flags;
1843f8dbf0a7SHuang Shijie 	} else if (vm_flags & VM_SHARED) {
1844f8dbf0a7SHuang Shijie 		error = shmem_zero_setup(vma);
1845f8dbf0a7SHuang Shijie 		if (error)
1846f8dbf0a7SHuang Shijie 			goto free_vma;
1847bfd40eafSKirill A. Shutemov 	} else {
1848bfd40eafSKirill A. Shutemov 		vma_set_anonymous(vma);
1849f8dbf0a7SHuang Shijie 	}
18501da177e4SLinus Torvalds 
1851c462ac28SCatalin Marinas 	/* Allow architectures to sanity-check the vm_flags */
1852c462ac28SCatalin Marinas 	if (!arch_validate_flags(vma->vm_flags)) {
1853c462ac28SCatalin Marinas 		error = -EINVAL;
1854c462ac28SCatalin Marinas 		if (file)
1855c462ac28SCatalin Marinas 			goto unmap_and_free_vma;
1856c462ac28SCatalin Marinas 		else
1857c462ac28SCatalin Marinas 			goto free_vma;
1858c462ac28SCatalin Marinas 	}
1859c462ac28SCatalin Marinas 
18604d3d5b41SOleg Nesterov 	vma_link(mm, vma, prev, rb_link, rb_parent);
18614d3d5b41SOleg Nesterov 	/* Once vma denies write, undo our temporary denial count */
1862d70cec89SMiaohe Lin unmap_writable:
18638d0920bdSDavid Hildenbrand 	if (file && vm_flags & VM_SHARED)
18644bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
1865e8686772SOleg Nesterov 	file = vma->vm_file;
18661da177e4SLinus Torvalds out:
1867cdd6c482SIngo Molnar 	perf_event_mmap(vma);
18680a4a9391SPeter Zijlstra 
186984638335SKonstantin Khlebnikov 	vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
18701da177e4SLinus Torvalds 	if (vm_flags & VM_LOCKED) {
1871e1fb4a08SDave Jiang 		if ((vm_flags & VM_SPECIAL) || vma_is_dax(vma) ||
1872e1fb4a08SDave Jiang 					is_vm_hugetlb_page(vma) ||
1873e1fb4a08SDave Jiang 					vma == get_gate_vma(current->mm))
1874de60f5f1SEric B Munson 			vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
1875e1fb4a08SDave Jiang 		else
1876e1fb4a08SDave Jiang 			mm->locked_vm += (len >> PAGE_SHIFT);
1877bebeb3d6SMichel Lespinasse 	}
18782b144498SSrikar Dronamraju 
1879c7a3a88cSOleg Nesterov 	if (file)
1880c7a3a88cSOleg Nesterov 		uprobe_mmap(vma);
18812b144498SSrikar Dronamraju 
1882d9104d1cSCyrill Gorcunov 	/*
1883d9104d1cSCyrill Gorcunov 	 * New (or expanded) vma always get soft dirty status.
1884d9104d1cSCyrill Gorcunov 	 * Otherwise user-space soft-dirty page tracker won't
1885d9104d1cSCyrill Gorcunov 	 * be able to distinguish situation when vma area unmapped,
1886d9104d1cSCyrill Gorcunov 	 * then new mapped in-place (which must be aimed as
1887d9104d1cSCyrill Gorcunov 	 * a completely new data area).
1888d9104d1cSCyrill Gorcunov 	 */
1889d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
1890d9104d1cSCyrill Gorcunov 
189164e45507SPeter Feiner 	vma_set_page_prot(vma);
189264e45507SPeter Feiner 
18931da177e4SLinus Torvalds 	return addr;
18941da177e4SLinus Torvalds 
18951da177e4SLinus Torvalds unmap_and_free_vma:
18961527f926SChristian König 	fput(vma->vm_file);
18971da177e4SLinus Torvalds 	vma->vm_file = NULL;
18981da177e4SLinus Torvalds 
18991da177e4SLinus Torvalds 	/* Undo any partial mapping done by a device driver. */
1900e0da382cSHugh Dickins 	unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1901e0da382cSHugh Dickins 	charged = 0;
19024bb5f5d9SDavid Herrmann 	if (vm_flags & VM_SHARED)
19034bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
19041da177e4SLinus Torvalds free_vma:
19053928d4f5SLinus Torvalds 	vm_area_free(vma);
19061da177e4SLinus Torvalds unacct_error:
19071da177e4SLinus Torvalds 	if (charged)
19081da177e4SLinus Torvalds 		vm_unacct_memory(charged);
19091da177e4SLinus Torvalds 	return error;
19101da177e4SLinus Torvalds }
19111da177e4SLinus Torvalds 
1912baceaf1cSJaewon Kim static unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1913db4fbfb9SMichel Lespinasse {
1914db4fbfb9SMichel Lespinasse 	/*
1915db4fbfb9SMichel Lespinasse 	 * We implement the search by looking for an rbtree node that
1916db4fbfb9SMichel Lespinasse 	 * immediately follows a suitable gap. That is,
1917db4fbfb9SMichel Lespinasse 	 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1918db4fbfb9SMichel Lespinasse 	 * - gap_end   = vma->vm_start        >= info->low_limit  + length;
1919db4fbfb9SMichel Lespinasse 	 * - gap_end - gap_start >= length
1920db4fbfb9SMichel Lespinasse 	 */
1921db4fbfb9SMichel Lespinasse 
1922db4fbfb9SMichel Lespinasse 	struct mm_struct *mm = current->mm;
1923db4fbfb9SMichel Lespinasse 	struct vm_area_struct *vma;
1924db4fbfb9SMichel Lespinasse 	unsigned long length, low_limit, high_limit, gap_start, gap_end;
1925db4fbfb9SMichel Lespinasse 
1926db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1927db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1928db4fbfb9SMichel Lespinasse 	if (length < info->length)
1929db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1930db4fbfb9SMichel Lespinasse 
1931db4fbfb9SMichel Lespinasse 	/* Adjust search limits by the desired length */
1932db4fbfb9SMichel Lespinasse 	if (info->high_limit < length)
1933db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1934db4fbfb9SMichel Lespinasse 	high_limit = info->high_limit - length;
1935db4fbfb9SMichel Lespinasse 
1936db4fbfb9SMichel Lespinasse 	if (info->low_limit > high_limit)
1937db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1938db4fbfb9SMichel Lespinasse 	low_limit = info->low_limit + length;
1939db4fbfb9SMichel Lespinasse 
1940db4fbfb9SMichel Lespinasse 	/* Check if rbtree root looks promising */
1941db4fbfb9SMichel Lespinasse 	if (RB_EMPTY_ROOT(&mm->mm_rb))
1942db4fbfb9SMichel Lespinasse 		goto check_highest;
1943db4fbfb9SMichel Lespinasse 	vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1944db4fbfb9SMichel Lespinasse 	if (vma->rb_subtree_gap < length)
1945db4fbfb9SMichel Lespinasse 		goto check_highest;
1946db4fbfb9SMichel Lespinasse 
1947db4fbfb9SMichel Lespinasse 	while (true) {
1948db4fbfb9SMichel Lespinasse 		/* Visit left subtree if it looks promising */
19491be7107fSHugh Dickins 		gap_end = vm_start_gap(vma);
1950db4fbfb9SMichel Lespinasse 		if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1951db4fbfb9SMichel Lespinasse 			struct vm_area_struct *left =
1952db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_left,
1953db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
1954db4fbfb9SMichel Lespinasse 			if (left->rb_subtree_gap >= length) {
1955db4fbfb9SMichel Lespinasse 				vma = left;
1956db4fbfb9SMichel Lespinasse 				continue;
1957db4fbfb9SMichel Lespinasse 			}
1958db4fbfb9SMichel Lespinasse 		}
1959db4fbfb9SMichel Lespinasse 
19601be7107fSHugh Dickins 		gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0;
1961db4fbfb9SMichel Lespinasse check_current:
1962db4fbfb9SMichel Lespinasse 		/* Check if current node has a suitable gap */
1963db4fbfb9SMichel Lespinasse 		if (gap_start > high_limit)
1964db4fbfb9SMichel Lespinasse 			return -ENOMEM;
1965f4cb767dSHugh Dickins 		if (gap_end >= low_limit &&
1966f4cb767dSHugh Dickins 		    gap_end > gap_start && gap_end - gap_start >= length)
1967db4fbfb9SMichel Lespinasse 			goto found;
1968db4fbfb9SMichel Lespinasse 
1969db4fbfb9SMichel Lespinasse 		/* Visit right subtree if it looks promising */
1970db4fbfb9SMichel Lespinasse 		if (vma->vm_rb.rb_right) {
1971db4fbfb9SMichel Lespinasse 			struct vm_area_struct *right =
1972db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_right,
1973db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
1974db4fbfb9SMichel Lespinasse 			if (right->rb_subtree_gap >= length) {
1975db4fbfb9SMichel Lespinasse 				vma = right;
1976db4fbfb9SMichel Lespinasse 				continue;
1977db4fbfb9SMichel Lespinasse 			}
1978db4fbfb9SMichel Lespinasse 		}
1979db4fbfb9SMichel Lespinasse 
1980db4fbfb9SMichel Lespinasse 		/* Go back up the rbtree to find next candidate node */
1981db4fbfb9SMichel Lespinasse 		while (true) {
1982db4fbfb9SMichel Lespinasse 			struct rb_node *prev = &vma->vm_rb;
1983db4fbfb9SMichel Lespinasse 			if (!rb_parent(prev))
1984db4fbfb9SMichel Lespinasse 				goto check_highest;
1985db4fbfb9SMichel Lespinasse 			vma = rb_entry(rb_parent(prev),
1986db4fbfb9SMichel Lespinasse 				       struct vm_area_struct, vm_rb);
1987db4fbfb9SMichel Lespinasse 			if (prev == vma->vm_rb.rb_left) {
19881be7107fSHugh Dickins 				gap_start = vm_end_gap(vma->vm_prev);
19891be7107fSHugh Dickins 				gap_end = vm_start_gap(vma);
1990db4fbfb9SMichel Lespinasse 				goto check_current;
1991db4fbfb9SMichel Lespinasse 			}
1992db4fbfb9SMichel Lespinasse 		}
1993db4fbfb9SMichel Lespinasse 	}
1994db4fbfb9SMichel Lespinasse 
1995db4fbfb9SMichel Lespinasse check_highest:
1996db4fbfb9SMichel Lespinasse 	/* Check highest gap, which does not precede any rbtree node */
1997db4fbfb9SMichel Lespinasse 	gap_start = mm->highest_vm_end;
1998db4fbfb9SMichel Lespinasse 	gap_end = ULONG_MAX;  /* Only for VM_BUG_ON below */
1999db4fbfb9SMichel Lespinasse 	if (gap_start > high_limit)
2000db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2001db4fbfb9SMichel Lespinasse 
2002db4fbfb9SMichel Lespinasse found:
2003db4fbfb9SMichel Lespinasse 	/* We found a suitable gap. Clip it with the original low_limit. */
2004db4fbfb9SMichel Lespinasse 	if (gap_start < info->low_limit)
2005db4fbfb9SMichel Lespinasse 		gap_start = info->low_limit;
2006db4fbfb9SMichel Lespinasse 
2007db4fbfb9SMichel Lespinasse 	/* Adjust gap address to the desired alignment */
2008db4fbfb9SMichel Lespinasse 	gap_start += (info->align_offset - gap_start) & info->align_mask;
2009db4fbfb9SMichel Lespinasse 
2010db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_start + info->length > info->high_limit);
2011db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_start + info->length > gap_end);
2012db4fbfb9SMichel Lespinasse 	return gap_start;
2013db4fbfb9SMichel Lespinasse }
2014db4fbfb9SMichel Lespinasse 
2015baceaf1cSJaewon Kim static unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
2016db4fbfb9SMichel Lespinasse {
2017db4fbfb9SMichel Lespinasse 	struct mm_struct *mm = current->mm;
2018db4fbfb9SMichel Lespinasse 	struct vm_area_struct *vma;
2019db4fbfb9SMichel Lespinasse 	unsigned long length, low_limit, high_limit, gap_start, gap_end;
2020db4fbfb9SMichel Lespinasse 
2021db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
2022db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
2023db4fbfb9SMichel Lespinasse 	if (length < info->length)
2024db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2025db4fbfb9SMichel Lespinasse 
2026db4fbfb9SMichel Lespinasse 	/*
2027db4fbfb9SMichel Lespinasse 	 * Adjust search limits by the desired length.
2028db4fbfb9SMichel Lespinasse 	 * See implementation comment at top of unmapped_area().
2029db4fbfb9SMichel Lespinasse 	 */
2030db4fbfb9SMichel Lespinasse 	gap_end = info->high_limit;
2031db4fbfb9SMichel Lespinasse 	if (gap_end < length)
2032db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2033db4fbfb9SMichel Lespinasse 	high_limit = gap_end - length;
2034db4fbfb9SMichel Lespinasse 
2035db4fbfb9SMichel Lespinasse 	if (info->low_limit > high_limit)
2036db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2037db4fbfb9SMichel Lespinasse 	low_limit = info->low_limit + length;
2038db4fbfb9SMichel Lespinasse 
2039db4fbfb9SMichel Lespinasse 	/* Check highest gap, which does not precede any rbtree node */
2040db4fbfb9SMichel Lespinasse 	gap_start = mm->highest_vm_end;
2041db4fbfb9SMichel Lespinasse 	if (gap_start <= high_limit)
2042db4fbfb9SMichel Lespinasse 		goto found_highest;
2043db4fbfb9SMichel Lespinasse 
2044db4fbfb9SMichel Lespinasse 	/* Check if rbtree root looks promising */
2045db4fbfb9SMichel Lespinasse 	if (RB_EMPTY_ROOT(&mm->mm_rb))
2046db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2047db4fbfb9SMichel Lespinasse 	vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
2048db4fbfb9SMichel Lespinasse 	if (vma->rb_subtree_gap < length)
2049db4fbfb9SMichel Lespinasse 		return -ENOMEM;
2050db4fbfb9SMichel Lespinasse 
2051db4fbfb9SMichel Lespinasse 	while (true) {
2052db4fbfb9SMichel Lespinasse 		/* Visit right subtree if it looks promising */
20531be7107fSHugh Dickins 		gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0;
2054db4fbfb9SMichel Lespinasse 		if (gap_start <= high_limit && vma->vm_rb.rb_right) {
2055db4fbfb9SMichel Lespinasse 			struct vm_area_struct *right =
2056db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_right,
2057db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
2058db4fbfb9SMichel Lespinasse 			if (right->rb_subtree_gap >= length) {
2059db4fbfb9SMichel Lespinasse 				vma = right;
2060db4fbfb9SMichel Lespinasse 				continue;
2061db4fbfb9SMichel Lespinasse 			}
2062db4fbfb9SMichel Lespinasse 		}
2063db4fbfb9SMichel Lespinasse 
2064db4fbfb9SMichel Lespinasse check_current:
2065db4fbfb9SMichel Lespinasse 		/* Check if current node has a suitable gap */
20661be7107fSHugh Dickins 		gap_end = vm_start_gap(vma);
2067db4fbfb9SMichel Lespinasse 		if (gap_end < low_limit)
2068db4fbfb9SMichel Lespinasse 			return -ENOMEM;
2069f4cb767dSHugh Dickins 		if (gap_start <= high_limit &&
2070f4cb767dSHugh Dickins 		    gap_end > gap_start && gap_end - gap_start >= length)
2071db4fbfb9SMichel Lespinasse 			goto found;
2072db4fbfb9SMichel Lespinasse 
2073db4fbfb9SMichel Lespinasse 		/* Visit left subtree if it looks promising */
2074db4fbfb9SMichel Lespinasse 		if (vma->vm_rb.rb_left) {
2075db4fbfb9SMichel Lespinasse 			struct vm_area_struct *left =
2076db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_left,
2077db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
2078db4fbfb9SMichel Lespinasse 			if (left->rb_subtree_gap >= length) {
2079db4fbfb9SMichel Lespinasse 				vma = left;
2080db4fbfb9SMichel Lespinasse 				continue;
2081db4fbfb9SMichel Lespinasse 			}
2082db4fbfb9SMichel Lespinasse 		}
2083db4fbfb9SMichel Lespinasse 
2084db4fbfb9SMichel Lespinasse 		/* Go back up the rbtree to find next candidate node */
2085db4fbfb9SMichel Lespinasse 		while (true) {
2086db4fbfb9SMichel Lespinasse 			struct rb_node *prev = &vma->vm_rb;
2087db4fbfb9SMichel Lespinasse 			if (!rb_parent(prev))
2088db4fbfb9SMichel Lespinasse 				return -ENOMEM;
2089db4fbfb9SMichel Lespinasse 			vma = rb_entry(rb_parent(prev),
2090db4fbfb9SMichel Lespinasse 				       struct vm_area_struct, vm_rb);
2091db4fbfb9SMichel Lespinasse 			if (prev == vma->vm_rb.rb_right) {
2092db4fbfb9SMichel Lespinasse 				gap_start = vma->vm_prev ?
20931be7107fSHugh Dickins 					vm_end_gap(vma->vm_prev) : 0;
2094db4fbfb9SMichel Lespinasse 				goto check_current;
2095db4fbfb9SMichel Lespinasse 			}
2096db4fbfb9SMichel Lespinasse 		}
2097db4fbfb9SMichel Lespinasse 	}
2098db4fbfb9SMichel Lespinasse 
2099db4fbfb9SMichel Lespinasse found:
2100db4fbfb9SMichel Lespinasse 	/* We found a suitable gap. Clip it with the original high_limit. */
2101db4fbfb9SMichel Lespinasse 	if (gap_end > info->high_limit)
2102db4fbfb9SMichel Lespinasse 		gap_end = info->high_limit;
2103db4fbfb9SMichel Lespinasse 
2104db4fbfb9SMichel Lespinasse found_highest:
2105db4fbfb9SMichel Lespinasse 	/* Compute highest gap address at the desired alignment */
2106db4fbfb9SMichel Lespinasse 	gap_end -= info->length;
2107db4fbfb9SMichel Lespinasse 	gap_end -= (gap_end - info->align_offset) & info->align_mask;
2108db4fbfb9SMichel Lespinasse 
2109db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_end < info->low_limit);
2110db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_end < gap_start);
2111db4fbfb9SMichel Lespinasse 	return gap_end;
2112db4fbfb9SMichel Lespinasse }
2113db4fbfb9SMichel Lespinasse 
2114baceaf1cSJaewon Kim /*
2115baceaf1cSJaewon Kim  * Search for an unmapped address range.
2116baceaf1cSJaewon Kim  *
2117baceaf1cSJaewon Kim  * We are looking for a range that:
2118baceaf1cSJaewon Kim  * - does not intersect with any VMA;
2119baceaf1cSJaewon Kim  * - is contained within the [low_limit, high_limit) interval;
2120baceaf1cSJaewon Kim  * - is at least the desired size.
2121baceaf1cSJaewon Kim  * - satisfies (begin_addr & align_mask) == (align_offset & align_mask)
2122baceaf1cSJaewon Kim  */
2123baceaf1cSJaewon Kim unsigned long vm_unmapped_area(struct vm_unmapped_area_info *info)
2124baceaf1cSJaewon Kim {
2125df529cabSJaewon Kim 	unsigned long addr;
2126df529cabSJaewon Kim 
2127baceaf1cSJaewon Kim 	if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
2128df529cabSJaewon Kim 		addr = unmapped_area_topdown(info);
2129baceaf1cSJaewon Kim 	else
2130df529cabSJaewon Kim 		addr = unmapped_area(info);
2131df529cabSJaewon Kim 
2132df529cabSJaewon Kim 	trace_vm_unmapped_area(addr, info);
2133df529cabSJaewon Kim 	return addr;
2134baceaf1cSJaewon Kim }
2135f6795053SSteve Capper 
21361da177e4SLinus Torvalds /* Get an address range which is currently unmapped.
21371da177e4SLinus Torvalds  * For shmat() with addr=0.
21381da177e4SLinus Torvalds  *
21391da177e4SLinus Torvalds  * Ugly calling convention alert:
21401da177e4SLinus Torvalds  * Return value with the low bits set means error value,
21411da177e4SLinus Torvalds  * ie
21421da177e4SLinus Torvalds  *	if (ret & ~PAGE_MASK)
21431da177e4SLinus Torvalds  *		error = ret;
21441da177e4SLinus Torvalds  *
21451da177e4SLinus Torvalds  * This function "knows" that -ENOMEM has the bits set.
21461da177e4SLinus Torvalds  */
21471da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA
21481da177e4SLinus Torvalds unsigned long
21491da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr,
21501da177e4SLinus Torvalds 		unsigned long len, unsigned long pgoff, unsigned long flags)
21511da177e4SLinus Torvalds {
21521da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
21531be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
2154db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
2155f6795053SSteve Capper 	const unsigned long mmap_end = arch_get_mmap_end(addr);
21561da177e4SLinus Torvalds 
2157f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
21581da177e4SLinus Torvalds 		return -ENOMEM;
21591da177e4SLinus Torvalds 
216006abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
216106abdfb4SBenjamin Herrenschmidt 		return addr;
216206abdfb4SBenjamin Herrenschmidt 
21631da177e4SLinus Torvalds 	if (addr) {
21641da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
21651be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
2166f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
21671be7107fSHugh Dickins 		    (!vma || addr + len <= vm_start_gap(vma)) &&
21681be7107fSHugh Dickins 		    (!prev || addr >= vm_end_gap(prev)))
21691da177e4SLinus Torvalds 			return addr;
21701da177e4SLinus Torvalds 	}
21711da177e4SLinus Torvalds 
2172db4fbfb9SMichel Lespinasse 	info.flags = 0;
2173db4fbfb9SMichel Lespinasse 	info.length = len;
21744e99b021SHeiko Carstens 	info.low_limit = mm->mmap_base;
2175f6795053SSteve Capper 	info.high_limit = mmap_end;
2176db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
217709ef5283SJaewon Kim 	info.align_offset = 0;
2178db4fbfb9SMichel Lespinasse 	return vm_unmapped_area(&info);
21791da177e4SLinus Torvalds }
21801da177e4SLinus Torvalds #endif
21811da177e4SLinus Torvalds 
21821da177e4SLinus Torvalds /*
21831da177e4SLinus Torvalds  * This mmap-allocator allocates new areas top-down from below the
21841da177e4SLinus Torvalds  * stack's low limit (the base):
21851da177e4SLinus Torvalds  */
21861da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
21871da177e4SLinus Torvalds unsigned long
218843cca0b1SYang Fan arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
218943cca0b1SYang Fan 			  unsigned long len, unsigned long pgoff,
219043cca0b1SYang Fan 			  unsigned long flags)
21911da177e4SLinus Torvalds {
21921be7107fSHugh Dickins 	struct vm_area_struct *vma, *prev;
21931da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
2194db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
2195f6795053SSteve Capper 	const unsigned long mmap_end = arch_get_mmap_end(addr);
21961da177e4SLinus Torvalds 
21971da177e4SLinus Torvalds 	/* requested length too big for entire address space */
2198f6795053SSteve Capper 	if (len > mmap_end - mmap_min_addr)
21991da177e4SLinus Torvalds 		return -ENOMEM;
22001da177e4SLinus Torvalds 
220106abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
220206abdfb4SBenjamin Herrenschmidt 		return addr;
220306abdfb4SBenjamin Herrenschmidt 
22041da177e4SLinus Torvalds 	/* requesting a specific address */
22051da177e4SLinus Torvalds 	if (addr) {
22061da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
22071be7107fSHugh Dickins 		vma = find_vma_prev(mm, addr, &prev);
2208f6795053SSteve Capper 		if (mmap_end - len >= addr && addr >= mmap_min_addr &&
22091be7107fSHugh Dickins 				(!vma || addr + len <= vm_start_gap(vma)) &&
22101be7107fSHugh Dickins 				(!prev || addr >= vm_end_gap(prev)))
22111da177e4SLinus Torvalds 			return addr;
22121da177e4SLinus Torvalds 	}
22131da177e4SLinus Torvalds 
2214db4fbfb9SMichel Lespinasse 	info.flags = VM_UNMAPPED_AREA_TOPDOWN;
2215db4fbfb9SMichel Lespinasse 	info.length = len;
22162afc745fSAkira Takeuchi 	info.low_limit = max(PAGE_SIZE, mmap_min_addr);
2217f6795053SSteve Capper 	info.high_limit = arch_get_mmap_base(addr, mm->mmap_base);
2218db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
221909ef5283SJaewon Kim 	info.align_offset = 0;
2220db4fbfb9SMichel Lespinasse 	addr = vm_unmapped_area(&info);
2221b716ad95SXiao Guangrong 
22221da177e4SLinus Torvalds 	/*
22231da177e4SLinus Torvalds 	 * A failed mmap() very likely causes application failure,
22241da177e4SLinus Torvalds 	 * so fall back to the bottom-up function here. This scenario
22251da177e4SLinus Torvalds 	 * can happen with large stack limits and large mmap()
22261da177e4SLinus Torvalds 	 * allocations.
22271da177e4SLinus Torvalds 	 */
2228de1741a1SAlexander Kuleshov 	if (offset_in_page(addr)) {
2229db4fbfb9SMichel Lespinasse 		VM_BUG_ON(addr != -ENOMEM);
2230db4fbfb9SMichel Lespinasse 		info.flags = 0;
2231db4fbfb9SMichel Lespinasse 		info.low_limit = TASK_UNMAPPED_BASE;
2232f6795053SSteve Capper 		info.high_limit = mmap_end;
2233db4fbfb9SMichel Lespinasse 		addr = vm_unmapped_area(&info);
2234db4fbfb9SMichel Lespinasse 	}
22351da177e4SLinus Torvalds 
22361da177e4SLinus Torvalds 	return addr;
22371da177e4SLinus Torvalds }
22381da177e4SLinus Torvalds #endif
22391da177e4SLinus Torvalds 
22401da177e4SLinus Torvalds unsigned long
22411da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
22421da177e4SLinus Torvalds 		unsigned long pgoff, unsigned long flags)
22431da177e4SLinus Torvalds {
224406abdfb4SBenjamin Herrenschmidt 	unsigned long (*get_area)(struct file *, unsigned long,
224506abdfb4SBenjamin Herrenschmidt 				  unsigned long, unsigned long, unsigned long);
224607ab67c8SLinus Torvalds 
22479206de95SAl Viro 	unsigned long error = arch_mmap_check(addr, len, flags);
22489206de95SAl Viro 	if (error)
22499206de95SAl Viro 		return error;
22509206de95SAl Viro 
22519206de95SAl Viro 	/* Careful about overflows.. */
22529206de95SAl Viro 	if (len > TASK_SIZE)
22539206de95SAl Viro 		return -ENOMEM;
22549206de95SAl Viro 
225507ab67c8SLinus Torvalds 	get_area = current->mm->get_unmapped_area;
2256c01d5b30SHugh Dickins 	if (file) {
2257c01d5b30SHugh Dickins 		if (file->f_op->get_unmapped_area)
225807ab67c8SLinus Torvalds 			get_area = file->f_op->get_unmapped_area;
2259c01d5b30SHugh Dickins 	} else if (flags & MAP_SHARED) {
2260c01d5b30SHugh Dickins 		/*
2261c01d5b30SHugh Dickins 		 * mmap_region() will call shmem_zero_setup() to create a file,
2262c01d5b30SHugh Dickins 		 * so use shmem's get_unmapped_area in case it can be huge.
226345e55300SPeter Collingbourne 		 * do_mmap() will clear pgoff, so match alignment.
2264c01d5b30SHugh Dickins 		 */
2265c01d5b30SHugh Dickins 		pgoff = 0;
2266c01d5b30SHugh Dickins 		get_area = shmem_get_unmapped_area;
2267c01d5b30SHugh Dickins 	}
2268c01d5b30SHugh Dickins 
226907ab67c8SLinus Torvalds 	addr = get_area(file, addr, len, pgoff, flags);
227007ab67c8SLinus Torvalds 	if (IS_ERR_VALUE(addr))
227107ab67c8SLinus Torvalds 		return addr;
227207ab67c8SLinus Torvalds 
22731da177e4SLinus Torvalds 	if (addr > TASK_SIZE - len)
22741da177e4SLinus Torvalds 		return -ENOMEM;
2275de1741a1SAlexander Kuleshov 	if (offset_in_page(addr))
22761da177e4SLinus Torvalds 		return -EINVAL;
227706abdfb4SBenjamin Herrenschmidt 
22789ac4ed4bSAl Viro 	error = security_mmap_addr(addr);
22799ac4ed4bSAl Viro 	return error ? error : addr;
22801da177e4SLinus Torvalds }
22811da177e4SLinus Torvalds 
22821da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area);
22831da177e4SLinus Torvalds 
22841da177e4SLinus Torvalds /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
22851da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
22861da177e4SLinus Torvalds {
2287615d6e87SDavidlohr Bueso 	struct rb_node *rb_node;
2288615d6e87SDavidlohr Bueso 	struct vm_area_struct *vma;
22891da177e4SLinus Torvalds 
22905b78ed24SLuigi Rizzo 	mmap_assert_locked(mm);
22911da177e4SLinus Torvalds 	/* Check the cache first. */
2292615d6e87SDavidlohr Bueso 	vma = vmacache_find(mm, addr);
2293615d6e87SDavidlohr Bueso 	if (likely(vma))
2294615d6e87SDavidlohr Bueso 		return vma;
22951da177e4SLinus Torvalds 
22961da177e4SLinus Torvalds 	rb_node = mm->mm_rb.rb_node;
22971da177e4SLinus Torvalds 
22981da177e4SLinus Torvalds 	while (rb_node) {
2299615d6e87SDavidlohr Bueso 		struct vm_area_struct *tmp;
23001da177e4SLinus Torvalds 
2301615d6e87SDavidlohr Bueso 		tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
23021da177e4SLinus Torvalds 
2303615d6e87SDavidlohr Bueso 		if (tmp->vm_end > addr) {
2304615d6e87SDavidlohr Bueso 			vma = tmp;
2305615d6e87SDavidlohr Bueso 			if (tmp->vm_start <= addr)
23061da177e4SLinus Torvalds 				break;
23071da177e4SLinus Torvalds 			rb_node = rb_node->rb_left;
23081da177e4SLinus Torvalds 		} else
23091da177e4SLinus Torvalds 			rb_node = rb_node->rb_right;
23101da177e4SLinus Torvalds 	}
2311615d6e87SDavidlohr Bueso 
23121da177e4SLinus Torvalds 	if (vma)
2313615d6e87SDavidlohr Bueso 		vmacache_update(addr, vma);
23141da177e4SLinus Torvalds 	return vma;
23151da177e4SLinus Torvalds }
23161da177e4SLinus Torvalds 
23171da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma);
23181da177e4SLinus Torvalds 
23196bd4837dSKOSAKI Motohiro /*
23206bd4837dSKOSAKI Motohiro  * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
23216bd4837dSKOSAKI Motohiro  */
23221da177e4SLinus Torvalds struct vm_area_struct *
23231da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr,
23241da177e4SLinus Torvalds 			struct vm_area_struct **pprev)
23251da177e4SLinus Torvalds {
23266bd4837dSKOSAKI Motohiro 	struct vm_area_struct *vma;
23271da177e4SLinus Torvalds 
23286bd4837dSKOSAKI Motohiro 	vma = find_vma(mm, addr);
232983cd904dSMikulas Patocka 	if (vma) {
233083cd904dSMikulas Patocka 		*pprev = vma->vm_prev;
233183cd904dSMikulas Patocka 	} else {
233273848a97SWei Yang 		struct rb_node *rb_node = rb_last(&mm->mm_rb);
233373848a97SWei Yang 
233473848a97SWei Yang 		*pprev = rb_node ? rb_entry(rb_node, struct vm_area_struct, vm_rb) : NULL;
233583cd904dSMikulas Patocka 	}
23366bd4837dSKOSAKI Motohiro 	return vma;
23371da177e4SLinus Torvalds }
23381da177e4SLinus Torvalds 
23391da177e4SLinus Torvalds /*
23401da177e4SLinus Torvalds  * Verify that the stack growth is acceptable and
23411da177e4SLinus Torvalds  * update accounting. This is shared with both the
23421da177e4SLinus Torvalds  * grow-up and grow-down cases.
23431da177e4SLinus Torvalds  */
23441be7107fSHugh Dickins static int acct_stack_growth(struct vm_area_struct *vma,
23451be7107fSHugh Dickins 			     unsigned long size, unsigned long grow)
23461da177e4SLinus Torvalds {
23471da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
23481be7107fSHugh Dickins 	unsigned long new_start;
23491da177e4SLinus Torvalds 
23501da177e4SLinus Torvalds 	/* address space limit tests */
235184638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vma->vm_flags, grow))
23521da177e4SLinus Torvalds 		return -ENOMEM;
23531da177e4SLinus Torvalds 
23541da177e4SLinus Torvalds 	/* Stack limit test */
235524c79d8eSKrzysztof Opasiak 	if (size > rlimit(RLIMIT_STACK))
23561da177e4SLinus Torvalds 		return -ENOMEM;
23571da177e4SLinus Torvalds 
23581da177e4SLinus Torvalds 	/* mlock limit tests */
2359c5d8a364SMiaohe Lin 	if (mlock_future_check(mm, vma->vm_flags, grow << PAGE_SHIFT))
23601da177e4SLinus Torvalds 		return -ENOMEM;
23611da177e4SLinus Torvalds 
23620d59a01bSAdam Litke 	/* Check to ensure the stack will not grow into a hugetlb-only region */
23630d59a01bSAdam Litke 	new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
23640d59a01bSAdam Litke 			vma->vm_end - size;
23650d59a01bSAdam Litke 	if (is_hugepage_only_range(vma->vm_mm, new_start, size))
23660d59a01bSAdam Litke 		return -EFAULT;
23670d59a01bSAdam Litke 
23681da177e4SLinus Torvalds 	/*
23691da177e4SLinus Torvalds 	 * Overcommit..  This must be the final test, as it will
23701da177e4SLinus Torvalds 	 * update security statistics.
23711da177e4SLinus Torvalds 	 */
237205fa199dSHugh Dickins 	if (security_vm_enough_memory_mm(mm, grow))
23731da177e4SLinus Torvalds 		return -ENOMEM;
23741da177e4SLinus Torvalds 
23751da177e4SLinus Torvalds 	return 0;
23761da177e4SLinus Torvalds }
23771da177e4SLinus Torvalds 
237846dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
23791da177e4SLinus Torvalds /*
238046dea3d0SHugh Dickins  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
238146dea3d0SHugh Dickins  * vma is the last one with address > vma->vm_end.  Have to extend vma.
23821da177e4SLinus Torvalds  */
238346dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address)
23841da177e4SLinus Torvalds {
238509357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
23861be7107fSHugh Dickins 	struct vm_area_struct *next;
23871be7107fSHugh Dickins 	unsigned long gap_addr;
238812352d3cSKonstantin Khlebnikov 	int error = 0;
23891da177e4SLinus Torvalds 
23901da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSUP))
23911da177e4SLinus Torvalds 		return -EFAULT;
23921da177e4SLinus Torvalds 
2393bd726c90SHelge Deller 	/* Guard against exceeding limits of the address space. */
23941be7107fSHugh Dickins 	address &= PAGE_MASK;
239537511fb5SHelge Deller 	if (address >= (TASK_SIZE & PAGE_MASK))
239612352d3cSKonstantin Khlebnikov 		return -ENOMEM;
2397bd726c90SHelge Deller 	address += PAGE_SIZE;
239812352d3cSKonstantin Khlebnikov 
23991be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
24001be7107fSHugh Dickins 	gap_addr = address + stack_guard_gap;
2401bd726c90SHelge Deller 
2402bd726c90SHelge Deller 	/* Guard against overflow */
2403bd726c90SHelge Deller 	if (gap_addr < address || gap_addr > TASK_SIZE)
2404bd726c90SHelge Deller 		gap_addr = TASK_SIZE;
2405bd726c90SHelge Deller 
24061be7107fSHugh Dickins 	next = vma->vm_next;
24073122e80eSAnshuman Khandual 	if (next && next->vm_start < gap_addr && vma_is_accessible(next)) {
24081be7107fSHugh Dickins 		if (!(next->vm_flags & VM_GROWSUP))
24091be7107fSHugh Dickins 			return -ENOMEM;
24101be7107fSHugh Dickins 		/* Check that both stack segments have the same anon_vma? */
24111be7107fSHugh Dickins 	}
24121be7107fSHugh Dickins 
241312352d3cSKonstantin Khlebnikov 	/* We must make sure the anon_vma is allocated. */
24141da177e4SLinus Torvalds 	if (unlikely(anon_vma_prepare(vma)))
24151da177e4SLinus Torvalds 		return -ENOMEM;
24161da177e4SLinus Torvalds 
24171da177e4SLinus Torvalds 	/*
24181da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2419c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
24201da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
24211da177e4SLinus Torvalds 	 */
242212352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
24231da177e4SLinus Torvalds 
24241da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
24251da177e4SLinus Torvalds 	if (address > vma->vm_end) {
24261da177e4SLinus Torvalds 		unsigned long size, grow;
24271da177e4SLinus Torvalds 
24281da177e4SLinus Torvalds 		size = address - vma->vm_start;
24291da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
24301da177e4SLinus Torvalds 
243142c36f63SHugh Dickins 		error = -ENOMEM;
243242c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
24331da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
24343af9e859SEric B Munson 			if (!error) {
24354128997bSMichel Lespinasse 				/*
24364128997bSMichel Lespinasse 				 * vma_gap_update() doesn't support concurrent
2437c1e8d7c6SMichel Lespinasse 				 * updates, but we only hold a shared mmap_lock
24384128997bSMichel Lespinasse 				 * lock here, so we need to protect against
24394128997bSMichel Lespinasse 				 * concurrent vma expansions.
244012352d3cSKonstantin Khlebnikov 				 * anon_vma_lock_write() doesn't help here, as
24414128997bSMichel Lespinasse 				 * we don't guarantee that all growable vmas
24424128997bSMichel Lespinasse 				 * in a mm share the same root anon vma.
24434128997bSMichel Lespinasse 				 * So, we reuse mm->page_table_lock to guard
24444128997bSMichel Lespinasse 				 * against concurrent vma expansions.
24454128997bSMichel Lespinasse 				 */
244609357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
244787e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
244809357814SOleg Nesterov 					mm->locked_vm += grow;
244984638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2450bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
24511da177e4SLinus Torvalds 				vma->vm_end = address;
2452bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2453d3737187SMichel Lespinasse 				if (vma->vm_next)
2454d3737187SMichel Lespinasse 					vma_gap_update(vma->vm_next);
2455d3737187SMichel Lespinasse 				else
24561be7107fSHugh Dickins 					mm->highest_vm_end = vm_end_gap(vma);
245709357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
24584128997bSMichel Lespinasse 
24593af9e859SEric B Munson 				perf_event_mmap(vma);
24603af9e859SEric B Munson 			}
24611da177e4SLinus Torvalds 		}
246242c36f63SHugh Dickins 	}
246312352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
24646d50e60cSDavid Rientjes 	khugepaged_enter_vma_merge(vma, vma->vm_flags);
246509357814SOleg Nesterov 	validate_mm(mm);
24661da177e4SLinus Torvalds 	return error;
24671da177e4SLinus Torvalds }
246846dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
246946dea3d0SHugh Dickins 
24701da177e4SLinus Torvalds /*
24711da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
24721da177e4SLinus Torvalds  */
2473d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma,
2474b6a2fea3SOllie Wild 				   unsigned long address)
24751da177e4SLinus Torvalds {
247609357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
24771be7107fSHugh Dickins 	struct vm_area_struct *prev;
24780a1d5299SJann Horn 	int error = 0;
24791da177e4SLinus Torvalds 
24808869477aSEric Paris 	address &= PAGE_MASK;
24810a1d5299SJann Horn 	if (address < mmap_min_addr)
24820a1d5299SJann Horn 		return -EPERM;
24838869477aSEric Paris 
24841be7107fSHugh Dickins 	/* Enforce stack_guard_gap */
24851be7107fSHugh Dickins 	prev = vma->vm_prev;
24861be7107fSHugh Dickins 	/* Check that both stack segments have the same anon_vma? */
248732e4e6d5SOleg Nesterov 	if (prev && !(prev->vm_flags & VM_GROWSDOWN) &&
24883122e80eSAnshuman Khandual 			vma_is_accessible(prev)) {
248932e4e6d5SOleg Nesterov 		if (address - prev->vm_end < stack_guard_gap)
249032e4e6d5SOleg Nesterov 			return -ENOMEM;
24911be7107fSHugh Dickins 	}
24921be7107fSHugh Dickins 
249312352d3cSKonstantin Khlebnikov 	/* We must make sure the anon_vma is allocated. */
249412352d3cSKonstantin Khlebnikov 	if (unlikely(anon_vma_prepare(vma)))
249512352d3cSKonstantin Khlebnikov 		return -ENOMEM;
24961da177e4SLinus Torvalds 
24971da177e4SLinus Torvalds 	/*
24981da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
2499c1e8d7c6SMichel Lespinasse 	 * is required to hold the mmap_lock in read mode.  We need the
25001da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
25011da177e4SLinus Torvalds 	 */
250212352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
25031da177e4SLinus Torvalds 
25041da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
25051da177e4SLinus Torvalds 	if (address < vma->vm_start) {
25061da177e4SLinus Torvalds 		unsigned long size, grow;
25071da177e4SLinus Torvalds 
25081da177e4SLinus Torvalds 		size = vma->vm_end - address;
25091da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
25101da177e4SLinus Torvalds 
2511a626ca6aSLinus Torvalds 		error = -ENOMEM;
2512a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
25131da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
25141da177e4SLinus Torvalds 			if (!error) {
25154128997bSMichel Lespinasse 				/*
25164128997bSMichel Lespinasse 				 * vma_gap_update() doesn't support concurrent
2517c1e8d7c6SMichel Lespinasse 				 * updates, but we only hold a shared mmap_lock
25184128997bSMichel Lespinasse 				 * lock here, so we need to protect against
25194128997bSMichel Lespinasse 				 * concurrent vma expansions.
252012352d3cSKonstantin Khlebnikov 				 * anon_vma_lock_write() doesn't help here, as
25214128997bSMichel Lespinasse 				 * we don't guarantee that all growable vmas
25224128997bSMichel Lespinasse 				 * in a mm share the same root anon vma.
25234128997bSMichel Lespinasse 				 * So, we reuse mm->page_table_lock to guard
25244128997bSMichel Lespinasse 				 * against concurrent vma expansions.
25254128997bSMichel Lespinasse 				 */
252609357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
252787e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
252809357814SOleg Nesterov 					mm->locked_vm += grow;
252984638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2530bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
25311da177e4SLinus Torvalds 				vma->vm_start = address;
25321da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
2533bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2534d3737187SMichel Lespinasse 				vma_gap_update(vma);
253509357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
25364128997bSMichel Lespinasse 
25373af9e859SEric B Munson 				perf_event_mmap(vma);
25381da177e4SLinus Torvalds 			}
25391da177e4SLinus Torvalds 		}
2540a626ca6aSLinus Torvalds 	}
254112352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
25426d50e60cSDavid Rientjes 	khugepaged_enter_vma_merge(vma, vma->vm_flags);
254309357814SOleg Nesterov 	validate_mm(mm);
25441da177e4SLinus Torvalds 	return error;
25451da177e4SLinus Torvalds }
25461da177e4SLinus Torvalds 
25471be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */
25481be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT;
25491be7107fSHugh Dickins 
25501be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p)
25511be7107fSHugh Dickins {
25521be7107fSHugh Dickins 	unsigned long val;
25531be7107fSHugh Dickins 	char *endptr;
25541be7107fSHugh Dickins 
25551be7107fSHugh Dickins 	val = simple_strtoul(p, &endptr, 10);
25561be7107fSHugh Dickins 	if (!*endptr)
25571be7107fSHugh Dickins 		stack_guard_gap = val << PAGE_SHIFT;
25581be7107fSHugh Dickins 
2559e6d09493SRandy Dunlap 	return 1;
25601be7107fSHugh Dickins }
25611be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap);
25621be7107fSHugh Dickins 
2563b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
2564b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2565b6a2fea3SOllie Wild {
2566b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
2567b6a2fea3SOllie Wild }
2568b6a2fea3SOllie Wild 
2569b6a2fea3SOllie Wild struct vm_area_struct *
2570b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr)
2571b6a2fea3SOllie Wild {
2572b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
2573b6a2fea3SOllie Wild 
2574b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
2575b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
2576b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
2577b6a2fea3SOllie Wild 		return vma;
257804f5866eSAndrea Arcangeli 	/* don't alter vm_end if the coredump is running */
25794d45e75aSJann Horn 	if (!prev || expand_stack(prev, addr))
2580b6a2fea3SOllie Wild 		return NULL;
2581cea10a19SMichel Lespinasse 	if (prev->vm_flags & VM_LOCKED)
2582fc05f566SKirill A. Shutemov 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2583b6a2fea3SOllie Wild 	return prev;
2584b6a2fea3SOllie Wild }
2585b6a2fea3SOllie Wild #else
2586b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2587b6a2fea3SOllie Wild {
2588b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
2589b6a2fea3SOllie Wild }
2590b6a2fea3SOllie Wild 
25911da177e4SLinus Torvalds struct vm_area_struct *
25921da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr)
25931da177e4SLinus Torvalds {
25941da177e4SLinus Torvalds 	struct vm_area_struct *vma;
25951da177e4SLinus Torvalds 	unsigned long start;
25961da177e4SLinus Torvalds 
25971da177e4SLinus Torvalds 	addr &= PAGE_MASK;
25981da177e4SLinus Torvalds 	vma = find_vma(mm, addr);
25991da177e4SLinus Torvalds 	if (!vma)
26001da177e4SLinus Torvalds 		return NULL;
26011da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
26021da177e4SLinus Torvalds 		return vma;
26031da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
26041da177e4SLinus Torvalds 		return NULL;
26051da177e4SLinus Torvalds 	start = vma->vm_start;
26061da177e4SLinus Torvalds 	if (expand_stack(vma, addr))
26071da177e4SLinus Torvalds 		return NULL;
2608cea10a19SMichel Lespinasse 	if (vma->vm_flags & VM_LOCKED)
2609fc05f566SKirill A. Shutemov 		populate_vma_page_range(vma, addr, start, NULL);
26101da177e4SLinus Torvalds 	return vma;
26111da177e4SLinus Torvalds }
26121da177e4SLinus Torvalds #endif
26131da177e4SLinus Torvalds 
2614e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma);
2615e1d6d01aSJesse Barnes 
26162c0b3814SHugh Dickins /*
26172c0b3814SHugh Dickins  * Ok - we have the memory areas we should free on the vma list,
26182c0b3814SHugh Dickins  * so release them, and do the vma updates.
26191da177e4SLinus Torvalds  *
26202c0b3814SHugh Dickins  * Called with the mm semaphore held.
26211da177e4SLinus Torvalds  */
26222c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
26231da177e4SLinus Torvalds {
26244f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
26254f74d2c8SLinus Torvalds 
2626365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
2627365e9c87SHugh Dickins 	update_hiwater_vm(mm);
26282c0b3814SHugh Dickins 	do {
2629ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
26301da177e4SLinus Torvalds 
26314f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
26324f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
263384638335SKonstantin Khlebnikov 		vm_stat_account(mm, vma->vm_flags, -nrpages);
2634a8fb5618SHugh Dickins 		vma = remove_vma(vma);
2635146425a3SHugh Dickins 	} while (vma);
26364f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
26371da177e4SLinus Torvalds 	validate_mm(mm);
26381da177e4SLinus Torvalds }
26391da177e4SLinus Torvalds 
26401da177e4SLinus Torvalds /*
26411da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
26421da177e4SLinus Torvalds  *
2643f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
26441da177e4SLinus Torvalds  */
26451da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm,
2646e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
2647e0da382cSHugh Dickins 		unsigned long start, unsigned long end)
26481da177e4SLinus Torvalds {
26493903b55aSLiam R. Howlett 	struct vm_area_struct *next = vma_next(mm, prev);
2650d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
26511da177e4SLinus Torvalds 
26521da177e4SLinus Torvalds 	lru_add_drain();
2653a72afd87SWill Deacon 	tlb_gather_mmu(&tlb, mm);
2654365e9c87SHugh Dickins 	update_hiwater_rss(mm);
26554f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, start, end);
2656d16dfc55SPeter Zijlstra 	free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
26576ee8630eSHugh Dickins 				 next ? next->vm_start : USER_PGTABLES_CEILING);
2658ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
26591da177e4SLinus Torvalds }
26601da177e4SLinus Torvalds 
26611da177e4SLinus Torvalds /*
26621da177e4SLinus Torvalds  * Create a list of vma's touched by the unmap, removing them from the mm's
26631da177e4SLinus Torvalds  * vma list as we go..
26641da177e4SLinus Torvalds  */
2665246c320aSKirill A. Shutemov static bool
26661da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
26671da177e4SLinus Torvalds 	struct vm_area_struct *prev, unsigned long end)
26681da177e4SLinus Torvalds {
26691da177e4SLinus Torvalds 	struct vm_area_struct **insertion_point;
26701da177e4SLinus Torvalds 	struct vm_area_struct *tail_vma = NULL;
26711da177e4SLinus Torvalds 
26721da177e4SLinus Torvalds 	insertion_point = (prev ? &prev->vm_next : &mm->mmap);
2673297c5eeeSLinus Torvalds 	vma->vm_prev = NULL;
26741da177e4SLinus Torvalds 	do {
2675d3737187SMichel Lespinasse 		vma_rb_erase(vma, &mm->mm_rb);
2676a213e5cfSHugh Dickins 		if (vma->vm_flags & VM_LOCKED)
2677a213e5cfSHugh Dickins 			mm->locked_vm -= vma_pages(vma);
26781da177e4SLinus Torvalds 		mm->map_count--;
26791da177e4SLinus Torvalds 		tail_vma = vma;
26801da177e4SLinus Torvalds 		vma = vma->vm_next;
26811da177e4SLinus Torvalds 	} while (vma && vma->vm_start < end);
26821da177e4SLinus Torvalds 	*insertion_point = vma;
2683d3737187SMichel Lespinasse 	if (vma) {
2684297c5eeeSLinus Torvalds 		vma->vm_prev = prev;
2685d3737187SMichel Lespinasse 		vma_gap_update(vma);
2686d3737187SMichel Lespinasse 	} else
26871be7107fSHugh Dickins 		mm->highest_vm_end = prev ? vm_end_gap(prev) : 0;
26881da177e4SLinus Torvalds 	tail_vma->vm_next = NULL;
2689615d6e87SDavidlohr Bueso 
2690615d6e87SDavidlohr Bueso 	/* Kill the cache */
2691615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
2692246c320aSKirill A. Shutemov 
2693246c320aSKirill A. Shutemov 	/*
2694246c320aSKirill A. Shutemov 	 * Do not downgrade mmap_lock if we are next to VM_GROWSDOWN or
2695246c320aSKirill A. Shutemov 	 * VM_GROWSUP VMA. Such VMAs can change their size under
2696246c320aSKirill A. Shutemov 	 * down_read(mmap_lock) and collide with the VMA we are about to unmap.
2697246c320aSKirill A. Shutemov 	 */
2698246c320aSKirill A. Shutemov 	if (vma && (vma->vm_flags & VM_GROWSDOWN))
2699246c320aSKirill A. Shutemov 		return false;
2700246c320aSKirill A. Shutemov 	if (prev && (prev->vm_flags & VM_GROWSUP))
2701246c320aSKirill A. Shutemov 		return false;
2702246c320aSKirill A. Shutemov 	return true;
27031da177e4SLinus Torvalds }
27041da177e4SLinus Torvalds 
27051da177e4SLinus Torvalds /*
2706def5efe0SDavid Rientjes  * __split_vma() bypasses sysctl_max_map_count checking.  We use this where it
2707def5efe0SDavid Rientjes  * has already been checked or doesn't make sense to fail.
27081da177e4SLinus Torvalds  */
2709def5efe0SDavid Rientjes int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
27101da177e4SLinus Torvalds 		unsigned long addr, int new_below)
27111da177e4SLinus Torvalds {
27121da177e4SLinus Torvalds 	struct vm_area_struct *new;
2713e3975891SChen Gang 	int err;
27141da177e4SLinus Torvalds 
2715dd3b614fSDmitry Safonov 	if (vma->vm_ops && vma->vm_ops->may_split) {
2716dd3b614fSDmitry Safonov 		err = vma->vm_ops->may_split(vma, addr);
271731383c68SDan Williams 		if (err)
271831383c68SDan Williams 			return err;
271931383c68SDan Williams 	}
27201da177e4SLinus Torvalds 
27213928d4f5SLinus Torvalds 	new = vm_area_dup(vma);
27221da177e4SLinus Torvalds 	if (!new)
2723e3975891SChen Gang 		return -ENOMEM;
27241da177e4SLinus Torvalds 
27251da177e4SLinus Torvalds 	if (new_below)
27261da177e4SLinus Torvalds 		new->vm_end = addr;
27271da177e4SLinus Torvalds 	else {
27281da177e4SLinus Torvalds 		new->vm_start = addr;
27291da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
27301da177e4SLinus Torvalds 	}
27311da177e4SLinus Torvalds 
2732ef0855d3SOleg Nesterov 	err = vma_dup_policy(vma, new);
2733ef0855d3SOleg Nesterov 	if (err)
27345beb4930SRik van Riel 		goto out_free_vma;
27351da177e4SLinus Torvalds 
2736c4ea95d7SDaniel Forrest 	err = anon_vma_clone(new, vma);
2737c4ea95d7SDaniel Forrest 	if (err)
27385beb4930SRik van Riel 		goto out_free_mpol;
27395beb4930SRik van Riel 
2740e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
27411da177e4SLinus Torvalds 		get_file(new->vm_file);
27421da177e4SLinus Torvalds 
27431da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
27441da177e4SLinus Torvalds 		new->vm_ops->open(new);
27451da177e4SLinus Torvalds 
27461da177e4SLinus Torvalds 	if (new_below)
27475beb4930SRik van Riel 		err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
27481da177e4SLinus Torvalds 			((addr - new->vm_start) >> PAGE_SHIFT), new);
27491da177e4SLinus Torvalds 	else
27505beb4930SRik van Riel 		err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
27511da177e4SLinus Torvalds 
27525beb4930SRik van Riel 	/* Success. */
27535beb4930SRik van Riel 	if (!err)
27541da177e4SLinus Torvalds 		return 0;
27555beb4930SRik van Riel 
27565beb4930SRik van Riel 	/* Clean everything up if vma_adjust failed. */
275758927533SRik van Riel 	if (new->vm_ops && new->vm_ops->close)
27585beb4930SRik van Riel 		new->vm_ops->close(new);
2759e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
27605beb4930SRik van Riel 		fput(new->vm_file);
27612aeadc30SAndrea Arcangeli 	unlink_anon_vmas(new);
27625beb4930SRik van Riel  out_free_mpol:
2763ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new));
27645beb4930SRik van Riel  out_free_vma:
27653928d4f5SLinus Torvalds 	vm_area_free(new);
27665beb4930SRik van Riel 	return err;
27671da177e4SLinus Torvalds }
27681da177e4SLinus Torvalds 
2769659ace58SKOSAKI Motohiro /*
2770659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2771659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2772659ace58SKOSAKI Motohiro  */
2773659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2774659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2775659ace58SKOSAKI Motohiro {
2776659ace58SKOSAKI Motohiro 	if (mm->map_count >= sysctl_max_map_count)
2777659ace58SKOSAKI Motohiro 		return -ENOMEM;
2778659ace58SKOSAKI Motohiro 
2779659ace58SKOSAKI Motohiro 	return __split_vma(mm, vma, addr, new_below);
2780659ace58SKOSAKI Motohiro }
2781659ace58SKOSAKI Motohiro 
27821da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds
27831da177e4SLinus Torvalds  * what needs doing, and the areas themselves, which do the
27841da177e4SLinus Torvalds  * work.  This now handles partial unmappings.
27851da177e4SLinus Torvalds  * Jeremy Fitzhardinge <jeremy@goop.org>
27861da177e4SLinus Torvalds  */
278785a06835SYang Shi int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2788dd2283f2SYang Shi 		struct list_head *uf, bool downgrade)
27891da177e4SLinus Torvalds {
27901da177e4SLinus Torvalds 	unsigned long end;
2791146425a3SHugh Dickins 	struct vm_area_struct *vma, *prev, *last;
27921da177e4SLinus Torvalds 
2793de1741a1SAlexander Kuleshov 	if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
27941da177e4SLinus Torvalds 		return -EINVAL;
27951da177e4SLinus Torvalds 
2796cc71aba3Svishnu.ps 	len = PAGE_ALIGN(len);
27975a28fc94SDave Hansen 	end = start + len;
2798cc71aba3Svishnu.ps 	if (len == 0)
27991da177e4SLinus Torvalds 		return -EINVAL;
28001da177e4SLinus Torvalds 
28015a28fc94SDave Hansen 	/*
28025a28fc94SDave Hansen 	 * arch_unmap() might do unmaps itself.  It must be called
28035a28fc94SDave Hansen 	 * and finish any rbtree manipulation before this code
28045a28fc94SDave Hansen 	 * runs and also starts to manipulate the rbtree.
28055a28fc94SDave Hansen 	 */
28065a28fc94SDave Hansen 	arch_unmap(mm, start, end);
28075a28fc94SDave Hansen 
280878d9cf60SGonzalo Matias Juarez Tello 	/* Find the first overlapping VMA where start < vma->vm_end */
280978d9cf60SGonzalo Matias Juarez Tello 	vma = find_vma_intersection(mm, start, end);
2810146425a3SHugh Dickins 	if (!vma)
28111da177e4SLinus Torvalds 		return 0;
28129be34c9dSLinus Torvalds 	prev = vma->vm_prev;
28131da177e4SLinus Torvalds 
28141da177e4SLinus Torvalds 	/*
28151da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
28161da177e4SLinus Torvalds 	 *
28171da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
28181da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
28191da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
28201da177e4SLinus Torvalds 	 */
2821146425a3SHugh Dickins 	if (start > vma->vm_start) {
2822659ace58SKOSAKI Motohiro 		int error;
2823659ace58SKOSAKI Motohiro 
2824659ace58SKOSAKI Motohiro 		/*
2825659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
2826659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
2827659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
2828659ace58SKOSAKI Motohiro 		 */
2829659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2830659ace58SKOSAKI Motohiro 			return -ENOMEM;
2831659ace58SKOSAKI Motohiro 
2832659ace58SKOSAKI Motohiro 		error = __split_vma(mm, vma, start, 0);
28331da177e4SLinus Torvalds 		if (error)
28341da177e4SLinus Torvalds 			return error;
2835146425a3SHugh Dickins 		prev = vma;
28361da177e4SLinus Torvalds 	}
28371da177e4SLinus Torvalds 
28381da177e4SLinus Torvalds 	/* Does it split the last one? */
28391da177e4SLinus Torvalds 	last = find_vma(mm, end);
28401da177e4SLinus Torvalds 	if (last && end > last->vm_start) {
2841659ace58SKOSAKI Motohiro 		int error = __split_vma(mm, last, end, 1);
28421da177e4SLinus Torvalds 		if (error)
28431da177e4SLinus Torvalds 			return error;
28441da177e4SLinus Torvalds 	}
28453903b55aSLiam R. Howlett 	vma = vma_next(mm, prev);
28461da177e4SLinus Torvalds 
28472376dd7cSAndrea Arcangeli 	if (unlikely(uf)) {
28482376dd7cSAndrea Arcangeli 		/*
28492376dd7cSAndrea Arcangeli 		 * If userfaultfd_unmap_prep returns an error the vmas
2850f0953a1bSIngo Molnar 		 * will remain split, but userland will get a
28512376dd7cSAndrea Arcangeli 		 * highly unexpected error anyway. This is no
28522376dd7cSAndrea Arcangeli 		 * different than the case where the first of the two
28532376dd7cSAndrea Arcangeli 		 * __split_vma fails, but we don't undo the first
28542376dd7cSAndrea Arcangeli 		 * split, despite we could. This is unlikely enough
28552376dd7cSAndrea Arcangeli 		 * failure that it's not worth optimizing it for.
28562376dd7cSAndrea Arcangeli 		 */
28572376dd7cSAndrea Arcangeli 		int error = userfaultfd_unmap_prep(vma, start, end, uf);
28582376dd7cSAndrea Arcangeli 		if (error)
28592376dd7cSAndrea Arcangeli 			return error;
28602376dd7cSAndrea Arcangeli 	}
28612376dd7cSAndrea Arcangeli 
2862dd2283f2SYang Shi 	/* Detach vmas from rbtree */
2863246c320aSKirill A. Shutemov 	if (!detach_vmas_to_be_unmapped(mm, vma, prev, end))
2864246c320aSKirill A. Shutemov 		downgrade = false;
28651da177e4SLinus Torvalds 
2866dd2283f2SYang Shi 	if (downgrade)
2867d8ed45c5SMichel Lespinasse 		mmap_write_downgrade(mm);
2868dd2283f2SYang Shi 
2869dd2283f2SYang Shi 	unmap_region(mm, vma, prev, start, end);
2870dd2283f2SYang Shi 
28711da177e4SLinus Torvalds 	/* Fix up all other VM information */
28722c0b3814SHugh Dickins 	remove_vma_list(mm, vma);
28731da177e4SLinus Torvalds 
2874dd2283f2SYang Shi 	return downgrade ? 1 : 0;
28751da177e4SLinus Torvalds }
28761da177e4SLinus Torvalds 
2877dd2283f2SYang Shi int do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
2878dd2283f2SYang Shi 	      struct list_head *uf)
2879dd2283f2SYang Shi {
2880dd2283f2SYang Shi 	return __do_munmap(mm, start, len, uf, false);
2881dd2283f2SYang Shi }
2882dd2283f2SYang Shi 
2883dd2283f2SYang Shi static int __vm_munmap(unsigned long start, size_t len, bool downgrade)
2884a46ef99dSLinus Torvalds {
2885a46ef99dSLinus Torvalds 	int ret;
2886bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
2887897ab3e0SMike Rapoport 	LIST_HEAD(uf);
2888a46ef99dSLinus Torvalds 
2889d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2890ae798783SMichal Hocko 		return -EINTR;
2891ae798783SMichal Hocko 
2892dd2283f2SYang Shi 	ret = __do_munmap(mm, start, len, &uf, downgrade);
2893dd2283f2SYang Shi 	/*
2894c1e8d7c6SMichel Lespinasse 	 * Returning 1 indicates mmap_lock is downgraded.
2895dd2283f2SYang Shi 	 * But 1 is not legal return value of vm_munmap() and munmap(), reset
2896dd2283f2SYang Shi 	 * it to 0 before return.
2897dd2283f2SYang Shi 	 */
2898dd2283f2SYang Shi 	if (ret == 1) {
2899d8ed45c5SMichel Lespinasse 		mmap_read_unlock(mm);
2900dd2283f2SYang Shi 		ret = 0;
2901dd2283f2SYang Shi 	} else
2902d8ed45c5SMichel Lespinasse 		mmap_write_unlock(mm);
2903dd2283f2SYang Shi 
2904897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
2905a46ef99dSLinus Torvalds 	return ret;
2906a46ef99dSLinus Torvalds }
2907dd2283f2SYang Shi 
2908dd2283f2SYang Shi int vm_munmap(unsigned long start, size_t len)
2909dd2283f2SYang Shi {
2910dd2283f2SYang Shi 	return __vm_munmap(start, len, false);
2911dd2283f2SYang Shi }
2912a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
2913a46ef99dSLinus Torvalds 
29146a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
29151da177e4SLinus Torvalds {
2916ce18d171SCatalin Marinas 	addr = untagged_addr(addr);
2917dd2283f2SYang Shi 	return __vm_munmap(addr, len, true);
29181da177e4SLinus Torvalds }
29191da177e4SLinus Torvalds 
2920c8d78c18SKirill A. Shutemov 
2921c8d78c18SKirill A. Shutemov /*
2922c8d78c18SKirill A. Shutemov  * Emulation of deprecated remap_file_pages() syscall.
2923c8d78c18SKirill A. Shutemov  */
2924c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2925c8d78c18SKirill A. Shutemov 		unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2926c8d78c18SKirill A. Shutemov {
2927c8d78c18SKirill A. Shutemov 
2928c8d78c18SKirill A. Shutemov 	struct mm_struct *mm = current->mm;
2929c8d78c18SKirill A. Shutemov 	struct vm_area_struct *vma;
2930c8d78c18SKirill A. Shutemov 	unsigned long populate = 0;
2931c8d78c18SKirill A. Shutemov 	unsigned long ret = -EINVAL;
2932c8d78c18SKirill A. Shutemov 	struct file *file;
2933c8d78c18SKirill A. Shutemov 
2934ad56b738SMike Rapoport 	pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.rst.\n",
2935c8d78c18SKirill A. Shutemov 		     current->comm, current->pid);
2936c8d78c18SKirill A. Shutemov 
2937c8d78c18SKirill A. Shutemov 	if (prot)
2938c8d78c18SKirill A. Shutemov 		return ret;
2939c8d78c18SKirill A. Shutemov 	start = start & PAGE_MASK;
2940c8d78c18SKirill A. Shutemov 	size = size & PAGE_MASK;
2941c8d78c18SKirill A. Shutemov 
2942c8d78c18SKirill A. Shutemov 	if (start + size <= start)
2943c8d78c18SKirill A. Shutemov 		return ret;
2944c8d78c18SKirill A. Shutemov 
2945c8d78c18SKirill A. Shutemov 	/* Does pgoff wrap? */
2946c8d78c18SKirill A. Shutemov 	if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2947c8d78c18SKirill A. Shutemov 		return ret;
2948c8d78c18SKirill A. Shutemov 
2949d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
2950dc0ef0dfSMichal Hocko 		return -EINTR;
2951dc0ef0dfSMichal Hocko 
29529b593cb2SLiam R. Howlett 	vma = vma_lookup(mm, start);
2953c8d78c18SKirill A. Shutemov 
2954c8d78c18SKirill A. Shutemov 	if (!vma || !(vma->vm_flags & VM_SHARED))
2955c8d78c18SKirill A. Shutemov 		goto out;
2956c8d78c18SKirill A. Shutemov 
295748f7df32SKirill A. Shutemov 	if (start + size > vma->vm_end) {
295848f7df32SKirill A. Shutemov 		struct vm_area_struct *next;
295948f7df32SKirill A. Shutemov 
296048f7df32SKirill A. Shutemov 		for (next = vma->vm_next; next; next = next->vm_next) {
296148f7df32SKirill A. Shutemov 			/* hole between vmas ? */
296248f7df32SKirill A. Shutemov 			if (next->vm_start != next->vm_prev->vm_end)
296348f7df32SKirill A. Shutemov 				goto out;
296448f7df32SKirill A. Shutemov 
296548f7df32SKirill A. Shutemov 			if (next->vm_file != vma->vm_file)
296648f7df32SKirill A. Shutemov 				goto out;
296748f7df32SKirill A. Shutemov 
296848f7df32SKirill A. Shutemov 			if (next->vm_flags != vma->vm_flags)
296948f7df32SKirill A. Shutemov 				goto out;
297048f7df32SKirill A. Shutemov 
297148f7df32SKirill A. Shutemov 			if (start + size <= next->vm_end)
297248f7df32SKirill A. Shutemov 				break;
297348f7df32SKirill A. Shutemov 		}
297448f7df32SKirill A. Shutemov 
297548f7df32SKirill A. Shutemov 		if (!next)
2976c8d78c18SKirill A. Shutemov 			goto out;
2977c8d78c18SKirill A. Shutemov 	}
2978c8d78c18SKirill A. Shutemov 
2979c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2980c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2981c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2982c8d78c18SKirill A. Shutemov 
2983c8d78c18SKirill A. Shutemov 	flags &= MAP_NONBLOCK;
2984c8d78c18SKirill A. Shutemov 	flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2985fce000b1SLiam Howlett 	if (vma->vm_flags & VM_LOCKED)
2986c8d78c18SKirill A. Shutemov 		flags |= MAP_LOCKED;
298748f7df32SKirill A. Shutemov 
2988c8d78c18SKirill A. Shutemov 	file = get_file(vma->vm_file);
298945e55300SPeter Collingbourne 	ret = do_mmap(vma->vm_file, start, size,
2990897ab3e0SMike Rapoport 			prot, flags, pgoff, &populate, NULL);
2991c8d78c18SKirill A. Shutemov 	fput(file);
2992c8d78c18SKirill A. Shutemov out:
2993d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
2994c8d78c18SKirill A. Shutemov 	if (populate)
2995c8d78c18SKirill A. Shutemov 		mm_populate(ret, populate);
2996c8d78c18SKirill A. Shutemov 	if (!IS_ERR_VALUE(ret))
2997c8d78c18SKirill A. Shutemov 		ret = 0;
2998c8d78c18SKirill A. Shutemov 	return ret;
2999c8d78c18SKirill A. Shutemov }
3000c8d78c18SKirill A. Shutemov 
30011da177e4SLinus Torvalds /*
30021da177e4SLinus Torvalds  *  this is really a simplified "do_mmap".  it only handles
30031da177e4SLinus Torvalds  *  anonymous maps.  eventually we may be able to do some
30041da177e4SLinus Torvalds  *  brk-specific accounting here.
30051da177e4SLinus Torvalds  */
3006bb177a73SMichal Hocko static int do_brk_flags(unsigned long addr, unsigned long len, unsigned long flags, struct list_head *uf)
30071da177e4SLinus Torvalds {
30081da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
30091da177e4SLinus Torvalds 	struct vm_area_struct *vma, *prev;
30101da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
30111da177e4SLinus Torvalds 	pgoff_t pgoff = addr >> PAGE_SHIFT;
30123a459756SKirill Korotaev 	int error;
3013ff68dac6SGaowei Pu 	unsigned long mapped_addr;
30141da177e4SLinus Torvalds 
301516e72e9bSDenys Vlasenko 	/* Until we need other flags, refuse anything except VM_EXEC. */
301616e72e9bSDenys Vlasenko 	if ((flags & (~VM_EXEC)) != 0)
301716e72e9bSDenys Vlasenko 		return -EINVAL;
301816e72e9bSDenys Vlasenko 	flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
30193a459756SKirill Korotaev 
3020ff68dac6SGaowei Pu 	mapped_addr = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
3021ff68dac6SGaowei Pu 	if (IS_ERR_VALUE(mapped_addr))
3022ff68dac6SGaowei Pu 		return mapped_addr;
30233a459756SKirill Korotaev 
3024363ee17fSDavidlohr Bueso 	error = mlock_future_check(mm, mm->def_flags, len);
3025363ee17fSDavidlohr Bueso 	if (error)
3026363ee17fSDavidlohr Bueso 		return error;
30271da177e4SLinus Torvalds 
3028fb8090b6SLiam R. Howlett 	/* Clear old maps, set up prev, rb_link, rb_parent, and uf */
3029fb8090b6SLiam R. Howlett 	if (munmap_vma_range(mm, addr, len, &prev, &rb_link, &rb_parent, uf))
30301da177e4SLinus Torvalds 		return -ENOMEM;
30311da177e4SLinus Torvalds 
30321da177e4SLinus Torvalds 	/* Check against address space limits *after* clearing old maps... */
303384638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
30341da177e4SLinus Torvalds 		return -ENOMEM;
30351da177e4SLinus Torvalds 
30361da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
30371da177e4SLinus Torvalds 		return -ENOMEM;
30381da177e4SLinus Torvalds 
3039191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
30401da177e4SLinus Torvalds 		return -ENOMEM;
30411da177e4SLinus Torvalds 
30421da177e4SLinus Torvalds 	/* Can we just expand an old private anonymous mapping? */
3043ba470de4SRik van Riel 	vma = vma_merge(mm, prev, addr, addr + len, flags,
30449a10064fSColin Cross 			NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
3045ba470de4SRik van Riel 	if (vma)
30461da177e4SLinus Torvalds 		goto out;
30471da177e4SLinus Torvalds 
30481da177e4SLinus Torvalds 	/*
30491da177e4SLinus Torvalds 	 * create a vma struct for an anonymous mapping
30501da177e4SLinus Torvalds 	 */
3051490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
30521da177e4SLinus Torvalds 	if (!vma) {
30531da177e4SLinus Torvalds 		vm_unacct_memory(len >> PAGE_SHIFT);
30541da177e4SLinus Torvalds 		return -ENOMEM;
30551da177e4SLinus Torvalds 	}
30561da177e4SLinus Torvalds 
3057bfd40eafSKirill A. Shutemov 	vma_set_anonymous(vma);
30581da177e4SLinus Torvalds 	vma->vm_start = addr;
30591da177e4SLinus Torvalds 	vma->vm_end = addr + len;
30601da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
30611da177e4SLinus Torvalds 	vma->vm_flags = flags;
30623ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
30631da177e4SLinus Torvalds 	vma_link(mm, vma, prev, rb_link, rb_parent);
30641da177e4SLinus Torvalds out:
30653af9e859SEric B Munson 	perf_event_mmap(vma);
30661da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
306784638335SKonstantin Khlebnikov 	mm->data_vm += len >> PAGE_SHIFT;
3068128557ffSMichel Lespinasse 	if (flags & VM_LOCKED)
3069ba470de4SRik van Riel 		mm->locked_vm += (len >> PAGE_SHIFT);
3070d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
30715d22fc25SLinus Torvalds 	return 0;
30721da177e4SLinus Torvalds }
30731da177e4SLinus Torvalds 
3074bb177a73SMichal Hocko int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags)
3075e4eb1ff6SLinus Torvalds {
3076e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
3077bb177a73SMichal Hocko 	unsigned long len;
30785d22fc25SLinus Torvalds 	int ret;
3079128557ffSMichel Lespinasse 	bool populate;
3080897ab3e0SMike Rapoport 	LIST_HEAD(uf);
3081e4eb1ff6SLinus Torvalds 
3082bb177a73SMichal Hocko 	len = PAGE_ALIGN(request);
3083bb177a73SMichal Hocko 	if (len < request)
3084bb177a73SMichal Hocko 		return -ENOMEM;
3085bb177a73SMichal Hocko 	if (!len)
3086bb177a73SMichal Hocko 		return 0;
3087bb177a73SMichal Hocko 
3088d8ed45c5SMichel Lespinasse 	if (mmap_write_lock_killable(mm))
30892d6c9282SMichal Hocko 		return -EINTR;
30902d6c9282SMichal Hocko 
3091897ab3e0SMike Rapoport 	ret = do_brk_flags(addr, len, flags, &uf);
3092128557ffSMichel Lespinasse 	populate = ((mm->def_flags & VM_LOCKED) != 0);
3093d8ed45c5SMichel Lespinasse 	mmap_write_unlock(mm);
3094897ab3e0SMike Rapoport 	userfaultfd_unmap_complete(mm, &uf);
30955d22fc25SLinus Torvalds 	if (populate && !ret)
3096128557ffSMichel Lespinasse 		mm_populate(addr, len);
3097e4eb1ff6SLinus Torvalds 	return ret;
3098e4eb1ff6SLinus Torvalds }
309916e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags);
310016e72e9bSDenys Vlasenko 
310116e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len)
310216e72e9bSDenys Vlasenko {
310316e72e9bSDenys Vlasenko 	return vm_brk_flags(addr, len, 0);
310416e72e9bSDenys Vlasenko }
3105e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
31061da177e4SLinus Torvalds 
31071da177e4SLinus Torvalds /* Release all mmaps. */
31081da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
31091da177e4SLinus Torvalds {
3110d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
3111ba470de4SRik van Riel 	struct vm_area_struct *vma;
31121da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
31131da177e4SLinus Torvalds 
3114d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
3115cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
3116d6dd61c8SJeremy Fitzhardinge 
311727ae357fSDavid Rientjes 	if (unlikely(mm_is_oom_victim(mm))) {
311827ae357fSDavid Rientjes 		/*
311927ae357fSDavid Rientjes 		 * Manually reap the mm to free as much memory as possible.
312027ae357fSDavid Rientjes 		 * Then, as the oom reaper does, set MMF_OOM_SKIP to disregard
3121c1e8d7c6SMichel Lespinasse 		 * this mm from further consideration.  Taking mm->mmap_lock for
312227ae357fSDavid Rientjes 		 * write after setting MMF_OOM_SKIP will guarantee that the oom
3123c1e8d7c6SMichel Lespinasse 		 * reaper will not run on this mm again after mmap_lock is
312427ae357fSDavid Rientjes 		 * dropped.
312527ae357fSDavid Rientjes 		 *
3126c1e8d7c6SMichel Lespinasse 		 * Nothing can be holding mm->mmap_lock here and the above call
312727ae357fSDavid Rientjes 		 * to mmu_notifier_release(mm) ensures mmu notifier callbacks in
312827ae357fSDavid Rientjes 		 * __oom_reap_task_mm() will not block.
312927ae357fSDavid Rientjes 		 */
313093065ac7SMichal Hocko 		(void)__oom_reap_task_mm(mm);
313127ae357fSDavid Rientjes 		set_bit(MMF_OOM_SKIP, &mm->flags);
313227ae357fSDavid Rientjes 	}
313327ae357fSDavid Rientjes 
313464591e86SSuren Baghdasaryan 	mmap_write_lock(mm);
31359480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
31369480c53eSJeremy Fitzhardinge 
3137ba470de4SRik van Riel 	vma = mm->mmap;
313864591e86SSuren Baghdasaryan 	if (!vma) {
313964591e86SSuren Baghdasaryan 		/* Can happen if dup_mmap() received an OOM */
314064591e86SSuren Baghdasaryan 		mmap_write_unlock(mm);
31419480c53eSJeremy Fitzhardinge 		return;
314264591e86SSuren Baghdasaryan 	}
31439480c53eSJeremy Fitzhardinge 
31441da177e4SLinus Torvalds 	lru_add_drain();
31451da177e4SLinus Torvalds 	flush_cache_mm(mm);
3146d8b45053SWill Deacon 	tlb_gather_mmu_fullmm(&tlb, mm);
3147901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
3148e0da382cSHugh Dickins 	/* Use -1 here to ensure all VMAs in the mm are unmapped */
31494f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, 0, -1);
31506ee8630eSHugh Dickins 	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
3151ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
31521da177e4SLinus Torvalds 
315364591e86SSuren Baghdasaryan 	/* Walk the list again, actually closing and freeing it. */
31544f74d2c8SLinus Torvalds 	while (vma) {
31554f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
31564f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
3157a8fb5618SHugh Dickins 		vma = remove_vma(vma);
31580a3b3c25SPaul E. McKenney 		cond_resched();
31594f74d2c8SLinus Torvalds 	}
3160f798a1d4SSuren Baghdasaryan 	mm->mmap = NULL;
316164591e86SSuren Baghdasaryan 	mmap_write_unlock(mm);
31624f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
31631da177e4SLinus Torvalds }
31641da177e4SLinus Torvalds 
31651da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
31661da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
3167c8c06efaSDavidlohr Bueso  * then i_mmap_rwsem is taken here.
31681da177e4SLinus Torvalds  */
31691da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
31701da177e4SLinus Torvalds {
31716597d783SHugh Dickins 	struct vm_area_struct *prev;
31721da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
31731da177e4SLinus Torvalds 
3174c9d13f5fSChen Gang 	if (find_vma_links(mm, vma->vm_start, vma->vm_end,
3175c9d13f5fSChen Gang 			   &prev, &rb_link, &rb_parent))
3176c9d13f5fSChen Gang 		return -ENOMEM;
3177c9d13f5fSChen Gang 	if ((vma->vm_flags & VM_ACCOUNT) &&
3178c9d13f5fSChen Gang 	     security_vm_enough_memory_mm(mm, vma_pages(vma)))
3179c9d13f5fSChen Gang 		return -ENOMEM;
3180c9d13f5fSChen Gang 
31811da177e4SLinus Torvalds 	/*
31821da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
31831da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
31841da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
31851da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
31861da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
31871da177e4SLinus Torvalds 	 *
31881da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
31891da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
31901da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
31918332326eSLiao Pingfang 	 * Similarly in do_mmap and in do_brk_flags.
31921da177e4SLinus Torvalds 	 */
31938a9cc3b5SOleg Nesterov 	if (vma_is_anonymous(vma)) {
31941da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
31951da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
31961da177e4SLinus Torvalds 	}
31972b144498SSrikar Dronamraju 
31981da177e4SLinus Torvalds 	vma_link(mm, vma, prev, rb_link, rb_parent);
31991da177e4SLinus Torvalds 	return 0;
32001da177e4SLinus Torvalds }
32011da177e4SLinus Torvalds 
32021da177e4SLinus Torvalds /*
32031da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
32041da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
32051da177e4SLinus Torvalds  */
32061da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
320738a76013SMichel Lespinasse 	unsigned long addr, unsigned long len, pgoff_t pgoff,
320838a76013SMichel Lespinasse 	bool *need_rmap_locks)
32091da177e4SLinus Torvalds {
32101da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
32111da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
32121da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
32131da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
32141da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
3215948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
32161da177e4SLinus Torvalds 
32171da177e4SLinus Torvalds 	/*
32181da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
32191da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
32201da177e4SLinus Torvalds 	 */
3221ce75799bSOleg Nesterov 	if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
32221da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
3223948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
3224948f017bSAndrea Arcangeli 	}
32251da177e4SLinus Torvalds 
32266597d783SHugh Dickins 	if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
32276597d783SHugh Dickins 		return NULL;	/* should never get here */
32281da177e4SLinus Torvalds 	new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
322919a809afSAndrea Arcangeli 			    vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
32305c26f6acSSuren Baghdasaryan 			    vma->vm_userfaultfd_ctx, anon_vma_name(vma));
32311da177e4SLinus Torvalds 	if (new_vma) {
32321da177e4SLinus Torvalds 		/*
32331da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
32341da177e4SLinus Torvalds 		 */
3235948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
3236948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
3237948f017bSAndrea Arcangeli 			/*
3238948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
3239948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
3240948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
3241948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
3242948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
3243948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
3244948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
3245948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
3246948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
3247948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
3248948f017bSAndrea Arcangeli 			 */
324981d1b09cSSasha Levin 			VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
325038a76013SMichel Lespinasse 			*vmap = vma = new_vma;
3251108d6642SMichel Lespinasse 		}
325238a76013SMichel Lespinasse 		*need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
32531da177e4SLinus Torvalds 	} else {
32543928d4f5SLinus Torvalds 		new_vma = vm_area_dup(vma);
3255e3975891SChen Gang 		if (!new_vma)
3256e3975891SChen Gang 			goto out;
32571da177e4SLinus Torvalds 		new_vma->vm_start = addr;
32581da177e4SLinus Torvalds 		new_vma->vm_end = addr + len;
32591da177e4SLinus Torvalds 		new_vma->vm_pgoff = pgoff;
3260ef0855d3SOleg Nesterov 		if (vma_dup_policy(vma, new_vma))
3261523d4e20SMichel Lespinasse 			goto out_free_vma;
3262523d4e20SMichel Lespinasse 		if (anon_vma_clone(new_vma, vma))
3263523d4e20SMichel Lespinasse 			goto out_free_mempol;
3264e9714acfSKonstantin Khlebnikov 		if (new_vma->vm_file)
32651da177e4SLinus Torvalds 			get_file(new_vma->vm_file);
32661da177e4SLinus Torvalds 		if (new_vma->vm_ops && new_vma->vm_ops->open)
32671da177e4SLinus Torvalds 			new_vma->vm_ops->open(new_vma);
32681da177e4SLinus Torvalds 		vma_link(mm, new_vma, prev, rb_link, rb_parent);
326938a76013SMichel Lespinasse 		*need_rmap_locks = false;
32701da177e4SLinus Torvalds 	}
32711da177e4SLinus Torvalds 	return new_vma;
32725beb4930SRik van Riel 
32735beb4930SRik van Riel out_free_mempol:
3274ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new_vma));
32755beb4930SRik van Riel out_free_vma:
32763928d4f5SLinus Torvalds 	vm_area_free(new_vma);
3277e3975891SChen Gang out:
32785beb4930SRik van Riel 	return NULL;
32791da177e4SLinus Torvalds }
3280119f657cSakpm@osdl.org 
3281119f657cSakpm@osdl.org /*
3282119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
3283119f657cSakpm@osdl.org  * number of pages
3284119f657cSakpm@osdl.org  */
328584638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3286119f657cSakpm@osdl.org {
328784638335SKonstantin Khlebnikov 	if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
328884638335SKonstantin Khlebnikov 		return false;
3289119f657cSakpm@osdl.org 
3290d977d56cSKonstantin Khlebnikov 	if (is_data_mapping(flags) &&
3291d977d56cSKonstantin Khlebnikov 	    mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3292f4fcd558SKonstantin Khlebnikov 		/* Workaround for Valgrind */
3293f4fcd558SKonstantin Khlebnikov 		if (rlimit(RLIMIT_DATA) == 0 &&
3294f4fcd558SKonstantin Khlebnikov 		    mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3295f4fcd558SKonstantin Khlebnikov 			return true;
329657a7702bSDavid Woodhouse 
329757a7702bSDavid Woodhouse 		pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits%s.\n",
3298d977d56cSKonstantin Khlebnikov 			     current->comm, current->pid,
3299d977d56cSKonstantin Khlebnikov 			     (mm->data_vm + npages) << PAGE_SHIFT,
330057a7702bSDavid Woodhouse 			     rlimit(RLIMIT_DATA),
330157a7702bSDavid Woodhouse 			     ignore_rlimit_data ? "" : " or use boot option ignore_rlimit_data");
330257a7702bSDavid Woodhouse 
330357a7702bSDavid Woodhouse 		if (!ignore_rlimit_data)
3304d977d56cSKonstantin Khlebnikov 			return false;
3305d977d56cSKonstantin Khlebnikov 	}
3306119f657cSakpm@osdl.org 
330784638335SKonstantin Khlebnikov 	return true;
330884638335SKonstantin Khlebnikov }
330984638335SKonstantin Khlebnikov 
331084638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
331184638335SKonstantin Khlebnikov {
33127866076bSPeng Liu 	WRITE_ONCE(mm->total_vm, READ_ONCE(mm->total_vm)+npages);
331384638335SKonstantin Khlebnikov 
3314d977d56cSKonstantin Khlebnikov 	if (is_exec_mapping(flags))
331584638335SKonstantin Khlebnikov 		mm->exec_vm += npages;
3316d977d56cSKonstantin Khlebnikov 	else if (is_stack_mapping(flags))
331784638335SKonstantin Khlebnikov 		mm->stack_vm += npages;
3318d977d56cSKonstantin Khlebnikov 	else if (is_data_mapping(flags))
331984638335SKonstantin Khlebnikov 		mm->data_vm += npages;
3320119f657cSakpm@osdl.org }
3321fa5dc22fSRoland McGrath 
3322b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf);
3323a62c34bdSAndy Lutomirski 
3324a62c34bdSAndy Lutomirski /*
3325a62c34bdSAndy Lutomirski  * Having a close hook prevents vma merging regardless of flags.
3326a62c34bdSAndy Lutomirski  */
3327a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma)
3328a62c34bdSAndy Lutomirski {
3329a62c34bdSAndy Lutomirski }
3330a62c34bdSAndy Lutomirski 
3331a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma)
3332a62c34bdSAndy Lutomirski {
3333a62c34bdSAndy Lutomirski 	return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3334a62c34bdSAndy Lutomirski }
3335a62c34bdSAndy Lutomirski 
333614d07113SBrian Geffon static int special_mapping_mremap(struct vm_area_struct *new_vma)
3337b059a453SDmitry Safonov {
3338b059a453SDmitry Safonov 	struct vm_special_mapping *sm = new_vma->vm_private_data;
3339b059a453SDmitry Safonov 
3340280e87e9SDmitry Safonov 	if (WARN_ON_ONCE(current->mm != new_vma->vm_mm))
3341280e87e9SDmitry Safonov 		return -EFAULT;
3342280e87e9SDmitry Safonov 
3343b059a453SDmitry Safonov 	if (sm->mremap)
3344b059a453SDmitry Safonov 		return sm->mremap(sm, new_vma);
3345280e87e9SDmitry Safonov 
3346b059a453SDmitry Safonov 	return 0;
3347b059a453SDmitry Safonov }
3348b059a453SDmitry Safonov 
3349871402e0SDmitry Safonov static int special_mapping_split(struct vm_area_struct *vma, unsigned long addr)
3350871402e0SDmitry Safonov {
3351871402e0SDmitry Safonov 	/*
3352871402e0SDmitry Safonov 	 * Forbid splitting special mappings - kernel has expectations over
3353871402e0SDmitry Safonov 	 * the number of pages in mapping. Together with VM_DONTEXPAND
3354871402e0SDmitry Safonov 	 * the size of vma should stay the same over the special mapping's
3355871402e0SDmitry Safonov 	 * lifetime.
3356871402e0SDmitry Safonov 	 */
3357871402e0SDmitry Safonov 	return -EINVAL;
3358871402e0SDmitry Safonov }
3359871402e0SDmitry Safonov 
3360a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = {
3361a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3362a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3363b059a453SDmitry Safonov 	.mremap = special_mapping_mremap,
3364a62c34bdSAndy Lutomirski 	.name = special_mapping_name,
3365af34ebebSDmitry Safonov 	/* vDSO code relies that VVAR can't be accessed remotely */
3366af34ebebSDmitry Safonov 	.access = NULL,
3367871402e0SDmitry Safonov 	.may_split = special_mapping_split,
3368a62c34bdSAndy Lutomirski };
3369a62c34bdSAndy Lutomirski 
3370a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = {
3371a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3372a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3373a62c34bdSAndy Lutomirski };
3374fa5dc22fSRoland McGrath 
3375b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf)
3376fa5dc22fSRoland McGrath {
337711bac800SDave Jiang 	struct vm_area_struct *vma = vmf->vma;
3378b1d0e4f5SNick Piggin 	pgoff_t pgoff;
3379fa5dc22fSRoland McGrath 	struct page **pages;
3380fa5dc22fSRoland McGrath 
3381f872f540SAndy Lutomirski 	if (vma->vm_ops == &legacy_special_mapping_vmops) {
3382a62c34bdSAndy Lutomirski 		pages = vma->vm_private_data;
3383f872f540SAndy Lutomirski 	} else {
3384f872f540SAndy Lutomirski 		struct vm_special_mapping *sm = vma->vm_private_data;
3385f872f540SAndy Lutomirski 
3386f872f540SAndy Lutomirski 		if (sm->fault)
338711bac800SDave Jiang 			return sm->fault(sm, vmf->vma, vmf);
3388f872f540SAndy Lutomirski 
3389f872f540SAndy Lutomirski 		pages = sm->pages;
3390f872f540SAndy Lutomirski 	}
3391a62c34bdSAndy Lutomirski 
33928a9cc3b5SOleg Nesterov 	for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3393b1d0e4f5SNick Piggin 		pgoff--;
3394fa5dc22fSRoland McGrath 
3395fa5dc22fSRoland McGrath 	if (*pages) {
3396fa5dc22fSRoland McGrath 		struct page *page = *pages;
3397fa5dc22fSRoland McGrath 		get_page(page);
3398b1d0e4f5SNick Piggin 		vmf->page = page;
3399b1d0e4f5SNick Piggin 		return 0;
3400fa5dc22fSRoland McGrath 	}
3401fa5dc22fSRoland McGrath 
3402b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
3403fa5dc22fSRoland McGrath }
3404fa5dc22fSRoland McGrath 
3405a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping(
3406a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3407fa5dc22fSRoland McGrath 	unsigned long addr, unsigned long len,
340827f28b97SChen Gang 	unsigned long vm_flags, void *priv,
340927f28b97SChen Gang 	const struct vm_operations_struct *ops)
3410fa5dc22fSRoland McGrath {
3411462e635eSTavis Ormandy 	int ret;
3412fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
3413fa5dc22fSRoland McGrath 
3414490fc053SLinus Torvalds 	vma = vm_area_alloc(mm);
3415fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
34163935ed6aSStefani Seibold 		return ERR_PTR(-ENOMEM);
3417fa5dc22fSRoland McGrath 
3418fa5dc22fSRoland McGrath 	vma->vm_start = addr;
3419fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
3420fa5dc22fSRoland McGrath 
3421d9104d1cSCyrill Gorcunov 	vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
34221fc09228SHugh Dickins 	vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
34233ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3424fa5dc22fSRoland McGrath 
3425a62c34bdSAndy Lutomirski 	vma->vm_ops = ops;
3426a62c34bdSAndy Lutomirski 	vma->vm_private_data = priv;
3427fa5dc22fSRoland McGrath 
3428462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
3429462e635eSTavis Ormandy 	if (ret)
3430462e635eSTavis Ormandy 		goto out;
3431fa5dc22fSRoland McGrath 
343284638335SKonstantin Khlebnikov 	vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3433fa5dc22fSRoland McGrath 
3434cdd6c482SIngo Molnar 	perf_event_mmap(vma);
3435089dd79dSPeter Zijlstra 
34363935ed6aSStefani Seibold 	return vma;
3437462e635eSTavis Ormandy 
3438462e635eSTavis Ormandy out:
34393928d4f5SLinus Torvalds 	vm_area_free(vma);
34403935ed6aSStefani Seibold 	return ERR_PTR(ret);
34413935ed6aSStefani Seibold }
34423935ed6aSStefani Seibold 
34432eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma,
34442eefd878SDmitry Safonov 	const struct vm_special_mapping *sm)
34452eefd878SDmitry Safonov {
34462eefd878SDmitry Safonov 	return vma->vm_private_data == sm &&
34472eefd878SDmitry Safonov 		(vma->vm_ops == &special_mapping_vmops ||
34482eefd878SDmitry Safonov 		 vma->vm_ops == &legacy_special_mapping_vmops);
34492eefd878SDmitry Safonov }
34502eefd878SDmitry Safonov 
3451a62c34bdSAndy Lutomirski /*
3452c1e8d7c6SMichel Lespinasse  * Called with mm->mmap_lock held for writing.
3453a62c34bdSAndy Lutomirski  * Insert a new vma covering the given region, with the given flags.
3454a62c34bdSAndy Lutomirski  * Its pages are supplied by the given array of struct page *.
3455a62c34bdSAndy Lutomirski  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3456a62c34bdSAndy Lutomirski  * The region past the last page supplied will always produce SIGBUS.
3457a62c34bdSAndy Lutomirski  * The array pointer and the pages it points to are assumed to stay alive
3458a62c34bdSAndy Lutomirski  * for as long as this mapping might exist.
3459a62c34bdSAndy Lutomirski  */
3460a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping(
3461a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3462a62c34bdSAndy Lutomirski 	unsigned long addr, unsigned long len,
3463a62c34bdSAndy Lutomirski 	unsigned long vm_flags, const struct vm_special_mapping *spec)
3464a62c34bdSAndy Lutomirski {
346527f28b97SChen Gang 	return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
346627f28b97SChen Gang 					&special_mapping_vmops);
3467a62c34bdSAndy Lutomirski }
3468a62c34bdSAndy Lutomirski 
34693935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm,
34703935ed6aSStefani Seibold 			    unsigned long addr, unsigned long len,
34713935ed6aSStefani Seibold 			    unsigned long vm_flags, struct page **pages)
34723935ed6aSStefani Seibold {
3473a62c34bdSAndy Lutomirski 	struct vm_area_struct *vma = __install_special_mapping(
347427f28b97SChen Gang 		mm, addr, len, vm_flags, (void *)pages,
347527f28b97SChen Gang 		&legacy_special_mapping_vmops);
34763935ed6aSStefani Seibold 
347714bd5b45SDuan Jiong 	return PTR_ERR_OR_ZERO(vma);
3478fa5dc22fSRoland McGrath }
34797906d00cSAndrea Arcangeli 
34807906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
34817906d00cSAndrea Arcangeli 
3482454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
34837906d00cSAndrea Arcangeli {
3484f808c13fSDavidlohr Bueso 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
34857906d00cSAndrea Arcangeli 		/*
34867906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
34877906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
34887906d00cSAndrea Arcangeli 		 */
3489da1c55f1SMichel Lespinasse 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
34907906d00cSAndrea Arcangeli 		/*
34917906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
34925a505085SIngo Molnar 		 * anon_vma->root->rwsem. If some other vma in this mm shares
34937906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
34947906d00cSAndrea Arcangeli 		 *
34957906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
34967906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
34975a505085SIngo Molnar 		 * anon_vma->root->rwsem.
34987906d00cSAndrea Arcangeli 		 */
34997906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
3500f808c13fSDavidlohr Bueso 				       &anon_vma->root->rb_root.rb_root.rb_node))
35017906d00cSAndrea Arcangeli 			BUG();
35027906d00cSAndrea Arcangeli 	}
35037906d00cSAndrea Arcangeli }
35047906d00cSAndrea Arcangeli 
3505454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
35067906d00cSAndrea Arcangeli {
35077906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
35087906d00cSAndrea Arcangeli 		/*
35097906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
35107906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
35117906d00cSAndrea Arcangeli 		 *
35127906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
35137906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
35147906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
35157906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
35167906d00cSAndrea Arcangeli 		 */
35177906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
35187906d00cSAndrea Arcangeli 			BUG();
3519da1c55f1SMichel Lespinasse 		down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_lock);
35207906d00cSAndrea Arcangeli 	}
35217906d00cSAndrea Arcangeli }
35227906d00cSAndrea Arcangeli 
35237906d00cSAndrea Arcangeli /*
35247906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
35257906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
35267906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
35277906d00cSAndrea Arcangeli  *
3528c1e8d7c6SMichel Lespinasse  * The caller must take the mmap_lock in write mode before calling
35297906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
3530c1e8d7c6SMichel Lespinasse  * mmap_lock until mm_drop_all_locks() returns.
35317906d00cSAndrea Arcangeli  *
3532c1e8d7c6SMichel Lespinasse  * mmap_lock in write mode is required in order to block all operations
35337906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
353427ba0644SKirill A. Shutemov  * altering the vma layout. It's also needed in write mode to avoid new
35357906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
35367906d00cSAndrea Arcangeli  *
35377906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
35387906d00cSAndrea Arcangeli  * or it would deadlock.
35397906d00cSAndrea Arcangeli  *
3540bf181b9fSMichel Lespinasse  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
35417906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
35427906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
35437906d00cSAndrea Arcangeli  *
354488f306b6SKirill A. Shutemov  * We take locks in following order, accordingly to comment at beginning
354588f306b6SKirill A. Shutemov  * of mm/rmap.c:
354688f306b6SKirill A. Shutemov  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
354788f306b6SKirill A. Shutemov  *     hugetlb mapping);
354888f306b6SKirill A. Shutemov  *   - all i_mmap_rwsem locks;
354988f306b6SKirill A. Shutemov  *   - all anon_vma->rwseml
355088f306b6SKirill A. Shutemov  *
355188f306b6SKirill A. Shutemov  * We can take all locks within these types randomly because the VM code
355288f306b6SKirill A. Shutemov  * doesn't nest them and we protected from parallel mm_take_all_locks() by
355388f306b6SKirill A. Shutemov  * mm_all_locks_mutex.
35547906d00cSAndrea Arcangeli  *
35557906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
35567906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
35577906d00cSAndrea Arcangeli  *
35587906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
35597906d00cSAndrea Arcangeli  */
35607906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
35617906d00cSAndrea Arcangeli {
35627906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
35635beb4930SRik van Riel 	struct anon_vma_chain *avc;
35647906d00cSAndrea Arcangeli 
3565325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
35667906d00cSAndrea Arcangeli 
35677906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
35687906d00cSAndrea Arcangeli 
35697906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
35707906d00cSAndrea Arcangeli 		if (signal_pending(current))
35717906d00cSAndrea Arcangeli 			goto out_unlock;
357288f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
357388f306b6SKirill A. Shutemov 				is_vm_hugetlb_page(vma))
357488f306b6SKirill A. Shutemov 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
357588f306b6SKirill A. Shutemov 	}
357688f306b6SKirill A. Shutemov 
357788f306b6SKirill A. Shutemov 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
357888f306b6SKirill A. Shutemov 		if (signal_pending(current))
357988f306b6SKirill A. Shutemov 			goto out_unlock;
358088f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
358188f306b6SKirill A. Shutemov 				!is_vm_hugetlb_page(vma))
3582454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
35837906d00cSAndrea Arcangeli 	}
35847cd5a02fSPeter Zijlstra 
35857cd5a02fSPeter Zijlstra 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
35867cd5a02fSPeter Zijlstra 		if (signal_pending(current))
35877cd5a02fSPeter Zijlstra 			goto out_unlock;
35887cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
35895beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
35905beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
35917cd5a02fSPeter Zijlstra 	}
35927cd5a02fSPeter Zijlstra 
3593584cff54SKautuk Consul 	return 0;
35947906d00cSAndrea Arcangeli 
35957906d00cSAndrea Arcangeli out_unlock:
35967906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
3597584cff54SKautuk Consul 	return -EINTR;
35987906d00cSAndrea Arcangeli }
35997906d00cSAndrea Arcangeli 
36007906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
36017906d00cSAndrea Arcangeli {
3602f808c13fSDavidlohr Bueso 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
36037906d00cSAndrea Arcangeli 		/*
36047906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
36057906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
36067906d00cSAndrea Arcangeli 		 *
36077906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
3608bf181b9fSMichel Lespinasse 		 * the vma so the users using the anon_vma->rb_root will
36097906d00cSAndrea Arcangeli 		 * never see our bitflag.
36107906d00cSAndrea Arcangeli 		 *
36117906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
36127906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
36135a505085SIngo Molnar 		 * anon_vma->root->rwsem.
36147906d00cSAndrea Arcangeli 		 */
36157906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
3616f808c13fSDavidlohr Bueso 					  &anon_vma->root->rb_root.rb_root.rb_node))
36177906d00cSAndrea Arcangeli 			BUG();
361808b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
36197906d00cSAndrea Arcangeli 	}
36207906d00cSAndrea Arcangeli }
36217906d00cSAndrea Arcangeli 
36227906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
36237906d00cSAndrea Arcangeli {
36247906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
36257906d00cSAndrea Arcangeli 		/*
36267906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
36277906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
36287906d00cSAndrea Arcangeli 		 */
362983cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
36307906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
36317906d00cSAndrea Arcangeli 					&mapping->flags))
36327906d00cSAndrea Arcangeli 			BUG();
36337906d00cSAndrea Arcangeli 	}
36347906d00cSAndrea Arcangeli }
36357906d00cSAndrea Arcangeli 
36367906d00cSAndrea Arcangeli /*
3637c1e8d7c6SMichel Lespinasse  * The mmap_lock cannot be released by the caller until
36387906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
36397906d00cSAndrea Arcangeli  */
36407906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
36417906d00cSAndrea Arcangeli {
36427906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
36435beb4930SRik van Riel 	struct anon_vma_chain *avc;
36447906d00cSAndrea Arcangeli 
3645325bca1fSRolf Eike Beer 	mmap_assert_write_locked(mm);
36467906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
36477906d00cSAndrea Arcangeli 
36487906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
36497906d00cSAndrea Arcangeli 		if (vma->anon_vma)
36505beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
36515beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
36527906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
36537906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
36547906d00cSAndrea Arcangeli 	}
36557906d00cSAndrea Arcangeli 
36567906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
36577906d00cSAndrea Arcangeli }
36588feae131SDavid Howells 
36598feae131SDavid Howells /*
36603edf41d8Sseokhoon.yoon  * initialise the percpu counter for VM
36618feae131SDavid Howells  */
36628feae131SDavid Howells void __init mmap_init(void)
36638feae131SDavid Howells {
366400a62ce9SKOSAKI Motohiro 	int ret;
366500a62ce9SKOSAKI Motohiro 
3666908c7f19STejun Heo 	ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
366700a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
36688feae131SDavid Howells }
3669c9b1d098SAndrew Shewmaker 
3670c9b1d098SAndrew Shewmaker /*
3671c9b1d098SAndrew Shewmaker  * Initialise sysctl_user_reserve_kbytes.
3672c9b1d098SAndrew Shewmaker  *
3673c9b1d098SAndrew Shewmaker  * This is intended to prevent a user from starting a single memory hogging
3674c9b1d098SAndrew Shewmaker  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3675c9b1d098SAndrew Shewmaker  * mode.
3676c9b1d098SAndrew Shewmaker  *
3677c9b1d098SAndrew Shewmaker  * The default value is min(3% of free memory, 128MB)
3678c9b1d098SAndrew Shewmaker  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3679c9b1d098SAndrew Shewmaker  */
36801640879aSAndrew Shewmaker static int init_user_reserve(void)
3681c9b1d098SAndrew Shewmaker {
3682c9b1d098SAndrew Shewmaker 	unsigned long free_kbytes;
3683c9b1d098SAndrew Shewmaker 
3684c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3685c9b1d098SAndrew Shewmaker 
3686c9b1d098SAndrew Shewmaker 	sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3687c9b1d098SAndrew Shewmaker 	return 0;
3688c9b1d098SAndrew Shewmaker }
3689a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve);
36904eeab4f5SAndrew Shewmaker 
36914eeab4f5SAndrew Shewmaker /*
36924eeab4f5SAndrew Shewmaker  * Initialise sysctl_admin_reserve_kbytes.
36934eeab4f5SAndrew Shewmaker  *
36944eeab4f5SAndrew Shewmaker  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
36954eeab4f5SAndrew Shewmaker  * to log in and kill a memory hogging process.
36964eeab4f5SAndrew Shewmaker  *
36974eeab4f5SAndrew Shewmaker  * Systems with more than 256MB will reserve 8MB, enough to recover
36984eeab4f5SAndrew Shewmaker  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
36994eeab4f5SAndrew Shewmaker  * only reserve 3% of free pages by default.
37004eeab4f5SAndrew Shewmaker  */
37011640879aSAndrew Shewmaker static int init_admin_reserve(void)
37024eeab4f5SAndrew Shewmaker {
37034eeab4f5SAndrew Shewmaker 	unsigned long free_kbytes;
37044eeab4f5SAndrew Shewmaker 
3705c41f012aSMichal Hocko 	free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
37064eeab4f5SAndrew Shewmaker 
37074eeab4f5SAndrew Shewmaker 	sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
37084eeab4f5SAndrew Shewmaker 	return 0;
37094eeab4f5SAndrew Shewmaker }
3710a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve);
37111640879aSAndrew Shewmaker 
37121640879aSAndrew Shewmaker /*
37131640879aSAndrew Shewmaker  * Reinititalise user and admin reserves if memory is added or removed.
37141640879aSAndrew Shewmaker  *
37151640879aSAndrew Shewmaker  * The default user reserve max is 128MB, and the default max for the
37161640879aSAndrew Shewmaker  * admin reserve is 8MB. These are usually, but not always, enough to
37171640879aSAndrew Shewmaker  * enable recovery from a memory hogging process using login/sshd, a shell,
37181640879aSAndrew Shewmaker  * and tools like top. It may make sense to increase or even disable the
37191640879aSAndrew Shewmaker  * reserve depending on the existence of swap or variations in the recovery
37201640879aSAndrew Shewmaker  * tools. So, the admin may have changed them.
37211640879aSAndrew Shewmaker  *
37221640879aSAndrew Shewmaker  * If memory is added and the reserves have been eliminated or increased above
37231640879aSAndrew Shewmaker  * the default max, then we'll trust the admin.
37241640879aSAndrew Shewmaker  *
37251640879aSAndrew Shewmaker  * If memory is removed and there isn't enough free memory, then we
37261640879aSAndrew Shewmaker  * need to reset the reserves.
37271640879aSAndrew Shewmaker  *
37281640879aSAndrew Shewmaker  * Otherwise keep the reserve set by the admin.
37291640879aSAndrew Shewmaker  */
37301640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb,
37311640879aSAndrew Shewmaker 			     unsigned long action, void *data)
37321640879aSAndrew Shewmaker {
37331640879aSAndrew Shewmaker 	unsigned long tmp, free_kbytes;
37341640879aSAndrew Shewmaker 
37351640879aSAndrew Shewmaker 	switch (action) {
37361640879aSAndrew Shewmaker 	case MEM_ONLINE:
37371640879aSAndrew Shewmaker 		/* Default max is 128MB. Leave alone if modified by operator. */
37381640879aSAndrew Shewmaker 		tmp = sysctl_user_reserve_kbytes;
37391640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 17))
37401640879aSAndrew Shewmaker 			init_user_reserve();
37411640879aSAndrew Shewmaker 
37421640879aSAndrew Shewmaker 		/* Default max is 8MB.  Leave alone if modified by operator. */
37431640879aSAndrew Shewmaker 		tmp = sysctl_admin_reserve_kbytes;
37441640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 13))
37451640879aSAndrew Shewmaker 			init_admin_reserve();
37461640879aSAndrew Shewmaker 
37471640879aSAndrew Shewmaker 		break;
37481640879aSAndrew Shewmaker 	case MEM_OFFLINE:
3749c41f012aSMichal Hocko 		free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
37501640879aSAndrew Shewmaker 
37511640879aSAndrew Shewmaker 		if (sysctl_user_reserve_kbytes > free_kbytes) {
37521640879aSAndrew Shewmaker 			init_user_reserve();
37531640879aSAndrew Shewmaker 			pr_info("vm.user_reserve_kbytes reset to %lu\n",
37541640879aSAndrew Shewmaker 				sysctl_user_reserve_kbytes);
37551640879aSAndrew Shewmaker 		}
37561640879aSAndrew Shewmaker 
37571640879aSAndrew Shewmaker 		if (sysctl_admin_reserve_kbytes > free_kbytes) {
37581640879aSAndrew Shewmaker 			init_admin_reserve();
37591640879aSAndrew Shewmaker 			pr_info("vm.admin_reserve_kbytes reset to %lu\n",
37601640879aSAndrew Shewmaker 				sysctl_admin_reserve_kbytes);
37611640879aSAndrew Shewmaker 		}
37621640879aSAndrew Shewmaker 		break;
37631640879aSAndrew Shewmaker 	default:
37641640879aSAndrew Shewmaker 		break;
37651640879aSAndrew Shewmaker 	}
37661640879aSAndrew Shewmaker 	return NOTIFY_OK;
37671640879aSAndrew Shewmaker }
37681640879aSAndrew Shewmaker 
37691640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = {
37701640879aSAndrew Shewmaker 	.notifier_call = reserve_mem_notifier,
37711640879aSAndrew Shewmaker };
37721640879aSAndrew Shewmaker 
37731640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void)
37741640879aSAndrew Shewmaker {
37751640879aSAndrew Shewmaker 	if (register_hotmemory_notifier(&reserve_mem_nb))
3776b1de0d13SMitchel Humpherys 		pr_err("Failed registering memory add/remove notifier for admin reserve\n");
37771640879aSAndrew Shewmaker 
37781640879aSAndrew Shewmaker 	return 0;
37791640879aSAndrew Shewmaker }
3780a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier);
3781