xref: /linux/mm/mmap.c (revision 86d12e471d9f152217744f2054e63e3742949879)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * mm/mmap.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Written by obz.
51da177e4SLinus Torvalds  *
6046c6884SAlan Cox  * Address space accounting code	<alan@lxorguk.ukuu.org.uk>
71da177e4SLinus Torvalds  */
81da177e4SLinus Torvalds 
9b1de0d13SMitchel Humpherys #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10b1de0d13SMitchel Humpherys 
11e8420a8eSCyril Hrubis #include <linux/kernel.h>
121da177e4SLinus Torvalds #include <linux/slab.h>
134af3c9ccSAlexey Dobriyan #include <linux/backing-dev.h>
141da177e4SLinus Torvalds #include <linux/mm.h>
15615d6e87SDavidlohr Bueso #include <linux/vmacache.h>
161da177e4SLinus Torvalds #include <linux/shm.h>
171da177e4SLinus Torvalds #include <linux/mman.h>
181da177e4SLinus Torvalds #include <linux/pagemap.h>
191da177e4SLinus Torvalds #include <linux/swap.h>
201da177e4SLinus Torvalds #include <linux/syscalls.h>
21c59ede7bSRandy.Dunlap #include <linux/capability.h>
221da177e4SLinus Torvalds #include <linux/init.h>
231da177e4SLinus Torvalds #include <linux/file.h>
241da177e4SLinus Torvalds #include <linux/fs.h>
251da177e4SLinus Torvalds #include <linux/personality.h>
261da177e4SLinus Torvalds #include <linux/security.h>
271da177e4SLinus Torvalds #include <linux/hugetlb.h>
28c01d5b30SHugh Dickins #include <linux/shmem_fs.h>
291da177e4SLinus Torvalds #include <linux/profile.h>
30b95f1b31SPaul Gortmaker #include <linux/export.h>
311da177e4SLinus Torvalds #include <linux/mount.h>
321da177e4SLinus Torvalds #include <linux/mempolicy.h>
331da177e4SLinus Torvalds #include <linux/rmap.h>
34cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
3582f71ae4SKonstantin Khlebnikov #include <linux/mmdebug.h>
36cdd6c482SIngo Molnar #include <linux/perf_event.h>
37120a795dSAl Viro #include <linux/audit.h>
38b15d00b6SAndrea Arcangeli #include <linux/khugepaged.h>
392b144498SSrikar Dronamraju #include <linux/uprobes.h>
40d3737187SMichel Lespinasse #include <linux/rbtree_augmented.h>
411640879aSAndrew Shewmaker #include <linux/notifier.h>
421640879aSAndrew Shewmaker #include <linux/memory.h>
43b1de0d13SMitchel Humpherys #include <linux/printk.h>
4419a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h>
45d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h>
4662b5f7d0SDave Hansen #include <linux/pkeys.h>
471da177e4SLinus Torvalds 
481da177e4SLinus Torvalds #include <asm/uaccess.h>
491da177e4SLinus Torvalds #include <asm/cacheflush.h>
501da177e4SLinus Torvalds #include <asm/tlb.h>
51d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h>
521da177e4SLinus Torvalds 
5342b77728SJan Beulich #include "internal.h"
5442b77728SJan Beulich 
553a459756SKirill Korotaev #ifndef arch_mmap_check
563a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags)	(0)
573a459756SKirill Korotaev #endif
583a459756SKirill Korotaev 
59d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
60d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN;
61d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX;
62d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS;
63d07e2259SDaniel Cashman #endif
64d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
65d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN;
66d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX;
67d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS;
68d07e2259SDaniel Cashman #endif
69d07e2259SDaniel Cashman 
70f4fcd558SKonstantin Khlebnikov static bool ignore_rlimit_data;
71d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644);
72d07e2259SDaniel Cashman 
73e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm,
74e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
75e0da382cSHugh Dickins 		unsigned long start, unsigned long end);
76e0da382cSHugh Dickins 
771da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation.
781da177e4SLinus Torvalds  * this is due to the limited x86 page protection hardware.  The expected
791da177e4SLinus Torvalds  * behavior is in parens:
801da177e4SLinus Torvalds  *
811da177e4SLinus Torvalds  * map_type	prot
821da177e4SLinus Torvalds  *		PROT_NONE	PROT_READ	PROT_WRITE	PROT_EXEC
831da177e4SLinus Torvalds  * MAP_SHARED	r: (no) no	r: (yes) yes	r: (no) yes	r: (no) yes
841da177e4SLinus Torvalds  *		w: (no) no	w: (no) no	w: (yes) yes	w: (no) no
851da177e4SLinus Torvalds  *		x: (no) no	x: (no) yes	x: (no) yes	x: (yes) yes
861da177e4SLinus Torvalds  *
871da177e4SLinus Torvalds  * MAP_PRIVATE	r: (no) no	r: (yes) yes	r: (no) yes	r: (no) yes
881da177e4SLinus Torvalds  *		w: (no) no	w: (no) no	w: (copy) copy	w: (no) no
891da177e4SLinus Torvalds  *		x: (no) no	x: (no) yes	x: (no) yes	x: (yes) yes
901da177e4SLinus Torvalds  *
91cab15ce6SCatalin Marinas  * On arm64, PROT_EXEC has the following behaviour for both MAP_SHARED and
92cab15ce6SCatalin Marinas  * MAP_PRIVATE:
93cab15ce6SCatalin Marinas  *								r: (no) no
94cab15ce6SCatalin Marinas  *								w: (no) no
95cab15ce6SCatalin Marinas  *								x: (yes) yes
961da177e4SLinus Torvalds  */
971da177e4SLinus Torvalds pgprot_t protection_map[16] = {
981da177e4SLinus Torvalds 	__P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
991da177e4SLinus Torvalds 	__S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
1001da177e4SLinus Torvalds };
1011da177e4SLinus Torvalds 
102804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags)
103804af2cfSHugh Dickins {
104b845f313SDave Kleikamp 	return __pgprot(pgprot_val(protection_map[vm_flags &
105b845f313SDave Kleikamp 				(VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
106b845f313SDave Kleikamp 			pgprot_val(arch_vm_get_page_prot(vm_flags)));
107804af2cfSHugh Dickins }
108804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot);
109804af2cfSHugh Dickins 
11064e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
11164e45507SPeter Feiner {
11264e45507SPeter Feiner 	return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
11364e45507SPeter Feiner }
11464e45507SPeter Feiner 
11564e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */
11664e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma)
11764e45507SPeter Feiner {
11864e45507SPeter Feiner 	unsigned long vm_flags = vma->vm_flags;
1196d2329f8SAndrea Arcangeli 	pgprot_t vm_page_prot;
12064e45507SPeter Feiner 
1216d2329f8SAndrea Arcangeli 	vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
1226d2329f8SAndrea Arcangeli 	if (vma_wants_writenotify(vma, vm_page_prot)) {
12364e45507SPeter Feiner 		vm_flags &= ~VM_SHARED;
1246d2329f8SAndrea Arcangeli 		vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
12564e45507SPeter Feiner 	}
1266d2329f8SAndrea Arcangeli 	/* remove_protection_ptes reads vma->vm_page_prot without mmap_sem */
1276d2329f8SAndrea Arcangeli 	WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
12864e45507SPeter Feiner }
12964e45507SPeter Feiner 
1301da177e4SLinus Torvalds /*
131c8c06efaSDavidlohr Bueso  * Requires inode->i_mapping->i_mmap_rwsem
1321da177e4SLinus Torvalds  */
1331da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma,
1341da177e4SLinus Torvalds 		struct file *file, struct address_space *mapping)
1351da177e4SLinus Torvalds {
1361da177e4SLinus Torvalds 	if (vma->vm_flags & VM_DENYWRITE)
137496ad9aaSAl Viro 		atomic_inc(&file_inode(file)->i_writecount);
1381da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
1394bb5f5d9SDavid Herrmann 		mapping_unmap_writable(mapping);
1401da177e4SLinus Torvalds 
1411da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
1426b2dbba8SMichel Lespinasse 	vma_interval_tree_remove(vma, &mapping->i_mmap);
1431da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
1441da177e4SLinus Torvalds }
1451da177e4SLinus Torvalds 
1461da177e4SLinus Torvalds /*
1476b2dbba8SMichel Lespinasse  * Unlink a file-based vm structure from its interval tree, to hide
148a8fb5618SHugh Dickins  * vma from rmap and vmtruncate before freeing its page tables.
1491da177e4SLinus Torvalds  */
150a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma)
1511da177e4SLinus Torvalds {
1521da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
1531da177e4SLinus Torvalds 
1541da177e4SLinus Torvalds 	if (file) {
1551da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
15683cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
1571da177e4SLinus Torvalds 		__remove_shared_vm_struct(vma, file, mapping);
15883cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
1591da177e4SLinus Torvalds 	}
160a8fb5618SHugh Dickins }
161a8fb5618SHugh Dickins 
162a8fb5618SHugh Dickins /*
163a8fb5618SHugh Dickins  * Close a vm structure and free it, returning the next.
164a8fb5618SHugh Dickins  */
165a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
166a8fb5618SHugh Dickins {
167a8fb5618SHugh Dickins 	struct vm_area_struct *next = vma->vm_next;
168a8fb5618SHugh Dickins 
169a8fb5618SHugh Dickins 	might_sleep();
1701da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
1711da177e4SLinus Torvalds 		vma->vm_ops->close(vma);
172e9714acfSKonstantin Khlebnikov 	if (vma->vm_file)
173a8fb5618SHugh Dickins 		fput(vma->vm_file);
174f0be3d32SLee Schermerhorn 	mpol_put(vma_policy(vma));
1751da177e4SLinus Torvalds 	kmem_cache_free(vm_area_cachep, vma);
176a8fb5618SHugh Dickins 	return next;
1771da177e4SLinus Torvalds }
1781da177e4SLinus Torvalds 
1795d22fc25SLinus Torvalds static int do_brk(unsigned long addr, unsigned long len);
180e4eb1ff6SLinus Torvalds 
1816a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
1821da177e4SLinus Torvalds {
1838764b338SCyrill Gorcunov 	unsigned long retval;
1841da177e4SLinus Torvalds 	unsigned long newbrk, oldbrk;
1851da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
186a5b4592cSJiri Kosina 	unsigned long min_brk;
187128557ffSMichel Lespinasse 	bool populate;
1881da177e4SLinus Torvalds 
189dc0ef0dfSMichal Hocko 	if (down_write_killable(&mm->mmap_sem))
190dc0ef0dfSMichal Hocko 		return -EINTR;
1911da177e4SLinus Torvalds 
192a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
1935520e894SJiri Kosina 	/*
1945520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
1955520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
1965520e894SJiri Kosina 	 * to be arbitrarily shifted
1975520e894SJiri Kosina 	 */
1984471a675SJiri Kosina 	if (current->brk_randomized)
1995520e894SJiri Kosina 		min_brk = mm->start_brk;
2005520e894SJiri Kosina 	else
2015520e894SJiri Kosina 		min_brk = mm->end_data;
202a5b4592cSJiri Kosina #else
203a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
204a5b4592cSJiri Kosina #endif
205a5b4592cSJiri Kosina 	if (brk < min_brk)
2061da177e4SLinus Torvalds 		goto out;
2071e624196SRam Gupta 
2081e624196SRam Gupta 	/*
2091e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
2101e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
2111e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
2121e624196SRam Gupta 	 * not page aligned -Ram Gupta
2131e624196SRam Gupta 	 */
2148764b338SCyrill Gorcunov 	if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
2158764b338SCyrill Gorcunov 			      mm->end_data, mm->start_data))
2161e624196SRam Gupta 		goto out;
2171e624196SRam Gupta 
2181da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
2191da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
2201da177e4SLinus Torvalds 	if (oldbrk == newbrk)
2211da177e4SLinus Torvalds 		goto set_brk;
2221da177e4SLinus Torvalds 
2231da177e4SLinus Torvalds 	/* Always allow shrinking brk. */
2241da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2251da177e4SLinus Torvalds 		if (!do_munmap(mm, newbrk, oldbrk-newbrk))
2261da177e4SLinus Torvalds 			goto set_brk;
2271da177e4SLinus Torvalds 		goto out;
2281da177e4SLinus Torvalds 	}
2291da177e4SLinus Torvalds 
2301da177e4SLinus Torvalds 	/* Check against existing mmap mappings. */
2311da177e4SLinus Torvalds 	if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
2321da177e4SLinus Torvalds 		goto out;
2331da177e4SLinus Torvalds 
2341da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
2355d22fc25SLinus Torvalds 	if (do_brk(oldbrk, newbrk-oldbrk) < 0)
2361da177e4SLinus Torvalds 		goto out;
237128557ffSMichel Lespinasse 
2381da177e4SLinus Torvalds set_brk:
2391da177e4SLinus Torvalds 	mm->brk = brk;
240128557ffSMichel Lespinasse 	populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
241128557ffSMichel Lespinasse 	up_write(&mm->mmap_sem);
242128557ffSMichel Lespinasse 	if (populate)
243128557ffSMichel Lespinasse 		mm_populate(oldbrk, newbrk - oldbrk);
244128557ffSMichel Lespinasse 	return brk;
245128557ffSMichel Lespinasse 
2461da177e4SLinus Torvalds out:
2471da177e4SLinus Torvalds 	retval = mm->brk;
2481da177e4SLinus Torvalds 	up_write(&mm->mmap_sem);
2491da177e4SLinus Torvalds 	return retval;
2501da177e4SLinus Torvalds }
2511da177e4SLinus Torvalds 
252d3737187SMichel Lespinasse static long vma_compute_subtree_gap(struct vm_area_struct *vma)
253d3737187SMichel Lespinasse {
254d3737187SMichel Lespinasse 	unsigned long max, subtree_gap;
255d3737187SMichel Lespinasse 	max = vma->vm_start;
256d3737187SMichel Lespinasse 	if (vma->vm_prev)
257d3737187SMichel Lespinasse 		max -= vma->vm_prev->vm_end;
258d3737187SMichel Lespinasse 	if (vma->vm_rb.rb_left) {
259d3737187SMichel Lespinasse 		subtree_gap = rb_entry(vma->vm_rb.rb_left,
260d3737187SMichel Lespinasse 				struct vm_area_struct, vm_rb)->rb_subtree_gap;
261d3737187SMichel Lespinasse 		if (subtree_gap > max)
262d3737187SMichel Lespinasse 			max = subtree_gap;
263d3737187SMichel Lespinasse 	}
264d3737187SMichel Lespinasse 	if (vma->vm_rb.rb_right) {
265d3737187SMichel Lespinasse 		subtree_gap = rb_entry(vma->vm_rb.rb_right,
266d3737187SMichel Lespinasse 				struct vm_area_struct, vm_rb)->rb_subtree_gap;
267d3737187SMichel Lespinasse 		if (subtree_gap > max)
268d3737187SMichel Lespinasse 			max = subtree_gap;
269d3737187SMichel Lespinasse 	}
270d3737187SMichel Lespinasse 	return max;
271d3737187SMichel Lespinasse }
272d3737187SMichel Lespinasse 
273ed8ea815SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB
274acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm)
2751da177e4SLinus Torvalds {
276acf128d0SAndrea Arcangeli 	struct rb_root *root = &mm->mm_rb;
2775a0768f6SMichel Lespinasse 	int i = 0, j, bug = 0;
2781da177e4SLinus Torvalds 	struct rb_node *nd, *pn = NULL;
2791da177e4SLinus Torvalds 	unsigned long prev = 0, pend = 0;
2801da177e4SLinus Torvalds 
2811da177e4SLinus Torvalds 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
2821da177e4SLinus Torvalds 		struct vm_area_struct *vma;
2831da177e4SLinus Torvalds 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
2845a0768f6SMichel Lespinasse 		if (vma->vm_start < prev) {
285ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx < prev %lx\n",
286ff26f70fSAndrew Morton 				  vma->vm_start, prev);
2875a0768f6SMichel Lespinasse 			bug = 1;
2885a0768f6SMichel Lespinasse 		}
2895a0768f6SMichel Lespinasse 		if (vma->vm_start < pend) {
290ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx < pend %lx\n",
291ff26f70fSAndrew Morton 				  vma->vm_start, pend);
2925a0768f6SMichel Lespinasse 			bug = 1;
2935a0768f6SMichel Lespinasse 		}
2945a0768f6SMichel Lespinasse 		if (vma->vm_start > vma->vm_end) {
295ff26f70fSAndrew Morton 			pr_emerg("vm_start %lx > vm_end %lx\n",
296ff26f70fSAndrew Morton 				  vma->vm_start, vma->vm_end);
2975a0768f6SMichel Lespinasse 			bug = 1;
2985a0768f6SMichel Lespinasse 		}
299acf128d0SAndrea Arcangeli 		spin_lock(&mm->page_table_lock);
3005a0768f6SMichel Lespinasse 		if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
3018542bdfcSSasha Levin 			pr_emerg("free gap %lx, correct %lx\n",
3025a0768f6SMichel Lespinasse 			       vma->rb_subtree_gap,
3035a0768f6SMichel Lespinasse 			       vma_compute_subtree_gap(vma));
3045a0768f6SMichel Lespinasse 			bug = 1;
3055a0768f6SMichel Lespinasse 		}
306acf128d0SAndrea Arcangeli 		spin_unlock(&mm->page_table_lock);
3071da177e4SLinus Torvalds 		i++;
3081da177e4SLinus Torvalds 		pn = nd;
309d1af65d1SDavid Miller 		prev = vma->vm_start;
310d1af65d1SDavid Miller 		pend = vma->vm_end;
3111da177e4SLinus Torvalds 	}
3121da177e4SLinus Torvalds 	j = 0;
3135a0768f6SMichel Lespinasse 	for (nd = pn; nd; nd = rb_prev(nd))
3141da177e4SLinus Torvalds 		j++;
3155a0768f6SMichel Lespinasse 	if (i != j) {
3168542bdfcSSasha Levin 		pr_emerg("backwards %d, forwards %d\n", j, i);
3175a0768f6SMichel Lespinasse 		bug = 1;
3181da177e4SLinus Torvalds 	}
3195a0768f6SMichel Lespinasse 	return bug ? -1 : i;
3201da177e4SLinus Torvalds }
3211da177e4SLinus Torvalds 
322d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
323d3737187SMichel Lespinasse {
324d3737187SMichel Lespinasse 	struct rb_node *nd;
325d3737187SMichel Lespinasse 
326d3737187SMichel Lespinasse 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
327d3737187SMichel Lespinasse 		struct vm_area_struct *vma;
328d3737187SMichel Lespinasse 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
32996dad67fSSasha Levin 		VM_BUG_ON_VMA(vma != ignore &&
33096dad67fSSasha Levin 			vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
33196dad67fSSasha Levin 			vma);
332d3737187SMichel Lespinasse 	}
3331da177e4SLinus Torvalds }
3341da177e4SLinus Torvalds 
335eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm)
3361da177e4SLinus Torvalds {
3371da177e4SLinus Torvalds 	int bug = 0;
3381da177e4SLinus Torvalds 	int i = 0;
3395a0768f6SMichel Lespinasse 	unsigned long highest_address = 0;
340ed8ea815SMichel Lespinasse 	struct vm_area_struct *vma = mm->mmap;
341ff26f70fSAndrew Morton 
342ed8ea815SMichel Lespinasse 	while (vma) {
34312352d3cSKonstantin Khlebnikov 		struct anon_vma *anon_vma = vma->anon_vma;
344ed8ea815SMichel Lespinasse 		struct anon_vma_chain *avc;
345ff26f70fSAndrew Morton 
34612352d3cSKonstantin Khlebnikov 		if (anon_vma) {
34712352d3cSKonstantin Khlebnikov 			anon_vma_lock_read(anon_vma);
348ed8ea815SMichel Lespinasse 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
349ed8ea815SMichel Lespinasse 				anon_vma_interval_tree_verify(avc);
35012352d3cSKonstantin Khlebnikov 			anon_vma_unlock_read(anon_vma);
35112352d3cSKonstantin Khlebnikov 		}
35212352d3cSKonstantin Khlebnikov 
3535a0768f6SMichel Lespinasse 		highest_address = vma->vm_end;
354ed8ea815SMichel Lespinasse 		vma = vma->vm_next;
3551da177e4SLinus Torvalds 		i++;
3561da177e4SLinus Torvalds 	}
3575a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
3588542bdfcSSasha Levin 		pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
3595a0768f6SMichel Lespinasse 		bug = 1;
3605a0768f6SMichel Lespinasse 	}
3615a0768f6SMichel Lespinasse 	if (highest_address != mm->highest_vm_end) {
3628542bdfcSSasha Levin 		pr_emerg("mm->highest_vm_end %lx, found %lx\n",
3635a0768f6SMichel Lespinasse 			  mm->highest_vm_end, highest_address);
3645a0768f6SMichel Lespinasse 		bug = 1;
3655a0768f6SMichel Lespinasse 	}
366acf128d0SAndrea Arcangeli 	i = browse_rb(mm);
3675a0768f6SMichel Lespinasse 	if (i != mm->map_count) {
368ff26f70fSAndrew Morton 		if (i != -1)
3698542bdfcSSasha Levin 			pr_emerg("map_count %d rb %d\n", mm->map_count, i);
3705a0768f6SMichel Lespinasse 		bug = 1;
3715a0768f6SMichel Lespinasse 	}
37296dad67fSSasha Levin 	VM_BUG_ON_MM(bug, mm);
3731da177e4SLinus Torvalds }
3741da177e4SLinus Torvalds #else
375d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0)
3761da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
3771da177e4SLinus Torvalds #endif
3781da177e4SLinus Torvalds 
379d3737187SMichel Lespinasse RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb,
380d3737187SMichel Lespinasse 		     unsigned long, rb_subtree_gap, vma_compute_subtree_gap)
381d3737187SMichel Lespinasse 
382d3737187SMichel Lespinasse /*
383d3737187SMichel Lespinasse  * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
384d3737187SMichel Lespinasse  * vma->vm_prev->vm_end values changed, without modifying the vma's position
385d3737187SMichel Lespinasse  * in the rbtree.
386d3737187SMichel Lespinasse  */
387d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma)
388d3737187SMichel Lespinasse {
389d3737187SMichel Lespinasse 	/*
390d3737187SMichel Lespinasse 	 * As it turns out, RB_DECLARE_CALLBACKS() already created a callback
391d3737187SMichel Lespinasse 	 * function that does exacltly what we want.
392d3737187SMichel Lespinasse 	 */
393d3737187SMichel Lespinasse 	vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
394d3737187SMichel Lespinasse }
395d3737187SMichel Lespinasse 
396d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma,
397d3737187SMichel Lespinasse 				 struct rb_root *root)
398d3737187SMichel Lespinasse {
399d3737187SMichel Lespinasse 	/* All rb_subtree_gap values must be consistent prior to insertion */
400d3737187SMichel Lespinasse 	validate_mm_rb(root, NULL);
401d3737187SMichel Lespinasse 
402d3737187SMichel Lespinasse 	rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
403d3737187SMichel Lespinasse }
404d3737187SMichel Lespinasse 
405d3737187SMichel Lespinasse static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
406d3737187SMichel Lespinasse {
407d3737187SMichel Lespinasse 	/*
408d3737187SMichel Lespinasse 	 * All rb_subtree_gap values must be consistent prior to erase,
409d3737187SMichel Lespinasse 	 * with the possible exception of the vma being erased.
410d3737187SMichel Lespinasse 	 */
411d3737187SMichel Lespinasse 	validate_mm_rb(root, vma);
412d3737187SMichel Lespinasse 
413d3737187SMichel Lespinasse 	/*
414d3737187SMichel Lespinasse 	 * Note rb_erase_augmented is a fairly large inline function,
415d3737187SMichel Lespinasse 	 * so make sure we instantiate it only once with our desired
416d3737187SMichel Lespinasse 	 * augmented rbtree callbacks.
417d3737187SMichel Lespinasse 	 */
418d3737187SMichel Lespinasse 	rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
419d3737187SMichel Lespinasse }
420d3737187SMichel Lespinasse 
421bf181b9fSMichel Lespinasse /*
422bf181b9fSMichel Lespinasse  * vma has some anon_vma assigned, and is already inserted on that
423bf181b9fSMichel Lespinasse  * anon_vma's interval trees.
424bf181b9fSMichel Lespinasse  *
425bf181b9fSMichel Lespinasse  * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
426bf181b9fSMichel Lespinasse  * vma must be removed from the anon_vma's interval trees using
427bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_pre_update_vma().
428bf181b9fSMichel Lespinasse  *
429bf181b9fSMichel Lespinasse  * After the update, the vma will be reinserted using
430bf181b9fSMichel Lespinasse  * anon_vma_interval_tree_post_update_vma().
431bf181b9fSMichel Lespinasse  *
432bf181b9fSMichel Lespinasse  * The entire update must be protected by exclusive mmap_sem and by
433bf181b9fSMichel Lespinasse  * the root anon_vma's mutex.
434bf181b9fSMichel Lespinasse  */
435bf181b9fSMichel Lespinasse static inline void
436bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
437bf181b9fSMichel Lespinasse {
438bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
439bf181b9fSMichel Lespinasse 
440bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
441bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
442bf181b9fSMichel Lespinasse }
443bf181b9fSMichel Lespinasse 
444bf181b9fSMichel Lespinasse static inline void
445bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
446bf181b9fSMichel Lespinasse {
447bf181b9fSMichel Lespinasse 	struct anon_vma_chain *avc;
448bf181b9fSMichel Lespinasse 
449bf181b9fSMichel Lespinasse 	list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
450bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
451bf181b9fSMichel Lespinasse }
452bf181b9fSMichel Lespinasse 
4536597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr,
4546597d783SHugh Dickins 		unsigned long end, struct vm_area_struct **pprev,
4556597d783SHugh Dickins 		struct rb_node ***rb_link, struct rb_node **rb_parent)
4561da177e4SLinus Torvalds {
4571da177e4SLinus Torvalds 	struct rb_node **__rb_link, *__rb_parent, *rb_prev;
4581da177e4SLinus Torvalds 
4591da177e4SLinus Torvalds 	__rb_link = &mm->mm_rb.rb_node;
4601da177e4SLinus Torvalds 	rb_prev = __rb_parent = NULL;
4611da177e4SLinus Torvalds 
4621da177e4SLinus Torvalds 	while (*__rb_link) {
4631da177e4SLinus Torvalds 		struct vm_area_struct *vma_tmp;
4641da177e4SLinus Torvalds 
4651da177e4SLinus Torvalds 		__rb_parent = *__rb_link;
4661da177e4SLinus Torvalds 		vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
4671da177e4SLinus Torvalds 
4681da177e4SLinus Torvalds 		if (vma_tmp->vm_end > addr) {
4696597d783SHugh Dickins 			/* Fail if an existing vma overlaps the area */
4706597d783SHugh Dickins 			if (vma_tmp->vm_start < end)
4716597d783SHugh Dickins 				return -ENOMEM;
4721da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_left;
4731da177e4SLinus Torvalds 		} else {
4741da177e4SLinus Torvalds 			rb_prev = __rb_parent;
4751da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_right;
4761da177e4SLinus Torvalds 		}
4771da177e4SLinus Torvalds 	}
4781da177e4SLinus Torvalds 
4791da177e4SLinus Torvalds 	*pprev = NULL;
4801da177e4SLinus Torvalds 	if (rb_prev)
4811da177e4SLinus Torvalds 		*pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
4821da177e4SLinus Torvalds 	*rb_link = __rb_link;
4831da177e4SLinus Torvalds 	*rb_parent = __rb_parent;
4846597d783SHugh Dickins 	return 0;
4851da177e4SLinus Torvalds }
4861da177e4SLinus Torvalds 
487e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm,
488e8420a8eSCyril Hrubis 		unsigned long addr, unsigned long end)
489e8420a8eSCyril Hrubis {
490e8420a8eSCyril Hrubis 	unsigned long nr_pages = 0;
491e8420a8eSCyril Hrubis 	struct vm_area_struct *vma;
492e8420a8eSCyril Hrubis 
493e8420a8eSCyril Hrubis 	/* Find first overlaping mapping */
494e8420a8eSCyril Hrubis 	vma = find_vma_intersection(mm, addr, end);
495e8420a8eSCyril Hrubis 	if (!vma)
496e8420a8eSCyril Hrubis 		return 0;
497e8420a8eSCyril Hrubis 
498e8420a8eSCyril Hrubis 	nr_pages = (min(end, vma->vm_end) -
499e8420a8eSCyril Hrubis 		max(addr, vma->vm_start)) >> PAGE_SHIFT;
500e8420a8eSCyril Hrubis 
501e8420a8eSCyril Hrubis 	/* Iterate over the rest of the overlaps */
502e8420a8eSCyril Hrubis 	for (vma = vma->vm_next; vma; vma = vma->vm_next) {
503e8420a8eSCyril Hrubis 		unsigned long overlap_len;
504e8420a8eSCyril Hrubis 
505e8420a8eSCyril Hrubis 		if (vma->vm_start > end)
506e8420a8eSCyril Hrubis 			break;
507e8420a8eSCyril Hrubis 
508e8420a8eSCyril Hrubis 		overlap_len = min(end, vma->vm_end) - vma->vm_start;
509e8420a8eSCyril Hrubis 		nr_pages += overlap_len >> PAGE_SHIFT;
510e8420a8eSCyril Hrubis 	}
511e8420a8eSCyril Hrubis 
512e8420a8eSCyril Hrubis 	return nr_pages;
513e8420a8eSCyril Hrubis }
514e8420a8eSCyril Hrubis 
5151da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
5161da177e4SLinus Torvalds 		struct rb_node **rb_link, struct rb_node *rb_parent)
5171da177e4SLinus Torvalds {
518d3737187SMichel Lespinasse 	/* Update tracking information for the gap following the new vma. */
519d3737187SMichel Lespinasse 	if (vma->vm_next)
520d3737187SMichel Lespinasse 		vma_gap_update(vma->vm_next);
521d3737187SMichel Lespinasse 	else
522d3737187SMichel Lespinasse 		mm->highest_vm_end = vma->vm_end;
523d3737187SMichel Lespinasse 
524d3737187SMichel Lespinasse 	/*
525d3737187SMichel Lespinasse 	 * vma->vm_prev wasn't known when we followed the rbtree to find the
526d3737187SMichel Lespinasse 	 * correct insertion point for that vma. As a result, we could not
527d3737187SMichel Lespinasse 	 * update the vma vm_rb parents rb_subtree_gap values on the way down.
528d3737187SMichel Lespinasse 	 * So, we first insert the vma with a zero rb_subtree_gap value
529d3737187SMichel Lespinasse 	 * (to be consistent with what we did on the way down), and then
530d3737187SMichel Lespinasse 	 * immediately update the gap to the correct value. Finally we
531d3737187SMichel Lespinasse 	 * rebalance the rbtree after all augmented values have been set.
532d3737187SMichel Lespinasse 	 */
5331da177e4SLinus Torvalds 	rb_link_node(&vma->vm_rb, rb_parent, rb_link);
534d3737187SMichel Lespinasse 	vma->rb_subtree_gap = 0;
535d3737187SMichel Lespinasse 	vma_gap_update(vma);
536d3737187SMichel Lespinasse 	vma_rb_insert(vma, &mm->mm_rb);
5371da177e4SLinus Torvalds }
5381da177e4SLinus Torvalds 
539cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma)
5401da177e4SLinus Torvalds {
5411da177e4SLinus Torvalds 	struct file *file;
5421da177e4SLinus Torvalds 
5431da177e4SLinus Torvalds 	file = vma->vm_file;
5441da177e4SLinus Torvalds 	if (file) {
5451da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
5461da177e4SLinus Torvalds 
5471da177e4SLinus Torvalds 		if (vma->vm_flags & VM_DENYWRITE)
548496ad9aaSAl Viro 			atomic_dec(&file_inode(file)->i_writecount);
5491da177e4SLinus Torvalds 		if (vma->vm_flags & VM_SHARED)
5504bb5f5d9SDavid Herrmann 			atomic_inc(&mapping->i_mmap_writable);
5511da177e4SLinus Torvalds 
5521da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
5536b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, &mapping->i_mmap);
5541da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
5551da177e4SLinus Torvalds 	}
5561da177e4SLinus Torvalds }
5571da177e4SLinus Torvalds 
5581da177e4SLinus Torvalds static void
5591da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
5601da177e4SLinus Torvalds 	struct vm_area_struct *prev, struct rb_node **rb_link,
5611da177e4SLinus Torvalds 	struct rb_node *rb_parent)
5621da177e4SLinus Torvalds {
5631da177e4SLinus Torvalds 	__vma_link_list(mm, vma, prev, rb_parent);
5641da177e4SLinus Torvalds 	__vma_link_rb(mm, vma, rb_link, rb_parent);
5651da177e4SLinus Torvalds }
5661da177e4SLinus Torvalds 
5671da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
5681da177e4SLinus Torvalds 			struct vm_area_struct *prev, struct rb_node **rb_link,
5691da177e4SLinus Torvalds 			struct rb_node *rb_parent)
5701da177e4SLinus Torvalds {
5711da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
5721da177e4SLinus Torvalds 
57364ac4940SHuang Shijie 	if (vma->vm_file) {
5741da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
57583cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
57664ac4940SHuang Shijie 	}
5771da177e4SLinus Torvalds 
5781da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
5791da177e4SLinus Torvalds 	__vma_link_file(vma);
5801da177e4SLinus Torvalds 
5811da177e4SLinus Torvalds 	if (mapping)
58283cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
5831da177e4SLinus Torvalds 
5841da177e4SLinus Torvalds 	mm->map_count++;
5851da177e4SLinus Torvalds 	validate_mm(mm);
5861da177e4SLinus Torvalds }
5871da177e4SLinus Torvalds 
5881da177e4SLinus Torvalds /*
58988f6b4c3SKautuk Consul  * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
5906b2dbba8SMichel Lespinasse  * mm's list and rbtree.  It has already been inserted into the interval tree.
5911da177e4SLinus Torvalds  */
59248aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
5931da177e4SLinus Torvalds {
5946597d783SHugh Dickins 	struct vm_area_struct *prev;
5951da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
5961da177e4SLinus Torvalds 
5976597d783SHugh Dickins 	if (find_vma_links(mm, vma->vm_start, vma->vm_end,
5986597d783SHugh Dickins 			   &prev, &rb_link, &rb_parent))
5996597d783SHugh Dickins 		BUG();
6001da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
6011da177e4SLinus Torvalds 	mm->map_count++;
6021da177e4SLinus Torvalds }
6031da177e4SLinus Torvalds 
604e86f15eeSAndrea Arcangeli static __always_inline void __vma_unlink_common(struct mm_struct *mm,
605e86f15eeSAndrea Arcangeli 						struct vm_area_struct *vma,
606e86f15eeSAndrea Arcangeli 						struct vm_area_struct *prev,
607e86f15eeSAndrea Arcangeli 						bool has_prev)
6081da177e4SLinus Torvalds {
609d3737187SMichel Lespinasse 	struct vm_area_struct *next;
610297c5eeeSLinus Torvalds 
611d3737187SMichel Lespinasse 	vma_rb_erase(vma, &mm->mm_rb);
612e86f15eeSAndrea Arcangeli 	next = vma->vm_next;
613e86f15eeSAndrea Arcangeli 	if (has_prev)
614e86f15eeSAndrea Arcangeli 		prev->vm_next = next;
615e86f15eeSAndrea Arcangeli 	else {
616e86f15eeSAndrea Arcangeli 		prev = vma->vm_prev;
617e86f15eeSAndrea Arcangeli 		if (prev)
618e86f15eeSAndrea Arcangeli 			prev->vm_next = next;
619e86f15eeSAndrea Arcangeli 		else
620e86f15eeSAndrea Arcangeli 			mm->mmap = next;
621e86f15eeSAndrea Arcangeli 	}
622297c5eeeSLinus Torvalds 	if (next)
623297c5eeeSLinus Torvalds 		next->vm_prev = prev;
624615d6e87SDavidlohr Bueso 
625615d6e87SDavidlohr Bueso 	/* Kill the cache */
626615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
6271da177e4SLinus Torvalds }
6281da177e4SLinus Torvalds 
629e86f15eeSAndrea Arcangeli static inline void __vma_unlink_prev(struct mm_struct *mm,
630e86f15eeSAndrea Arcangeli 				     struct vm_area_struct *vma,
631e86f15eeSAndrea Arcangeli 				     struct vm_area_struct *prev)
632e86f15eeSAndrea Arcangeli {
633e86f15eeSAndrea Arcangeli 	__vma_unlink_common(mm, vma, prev, true);
634e86f15eeSAndrea Arcangeli }
635e86f15eeSAndrea Arcangeli 
636e86f15eeSAndrea Arcangeli static inline void __vma_unlink(struct mm_struct *mm,
637e86f15eeSAndrea Arcangeli 				struct vm_area_struct *vma)
638e86f15eeSAndrea Arcangeli {
639e86f15eeSAndrea Arcangeli 	__vma_unlink_common(mm, vma, NULL, false);
640e86f15eeSAndrea Arcangeli }
641e86f15eeSAndrea Arcangeli 
6421da177e4SLinus Torvalds /*
6431da177e4SLinus Torvalds  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
6441da177e4SLinus Torvalds  * is already present in an i_mmap tree without adjusting the tree.
6451da177e4SLinus Torvalds  * The following helper function should be used when such adjustments
6461da177e4SLinus Torvalds  * are necessary.  The "insert" vma (if any) is to be inserted
6471da177e4SLinus Torvalds  * before we drop the necessary locks.
6481da177e4SLinus Torvalds  */
649e86f15eeSAndrea Arcangeli int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
650e86f15eeSAndrea Arcangeli 	unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
651e86f15eeSAndrea Arcangeli 	struct vm_area_struct *expand)
6521da177e4SLinus Torvalds {
6531da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
654e86f15eeSAndrea Arcangeli 	struct vm_area_struct *next = vma->vm_next, *orig_vma = vma;
6551da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
6566b2dbba8SMichel Lespinasse 	struct rb_root *root = NULL;
657012f1800SRik van Riel 	struct anon_vma *anon_vma = NULL;
6581da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
659d3737187SMichel Lespinasse 	bool start_changed = false, end_changed = false;
6601da177e4SLinus Torvalds 	long adjust_next = 0;
6611da177e4SLinus Torvalds 	int remove_next = 0;
6621da177e4SLinus Torvalds 
6631da177e4SLinus Torvalds 	if (next && !insert) {
664734537c9SKirill A. Shutemov 		struct vm_area_struct *exporter = NULL, *importer = NULL;
665287d97acSLinus Torvalds 
6661da177e4SLinus Torvalds 		if (end >= next->vm_end) {
6671da177e4SLinus Torvalds 			/*
6681da177e4SLinus Torvalds 			 * vma expands, overlapping all the next, and
6691da177e4SLinus Torvalds 			 * perhaps the one after too (mprotect case 6).
670*86d12e47SAndrea Arcangeli 			 * The only other cases that gets here are
671e86f15eeSAndrea Arcangeli 			 * case 1, case 7 and case 8.
672e86f15eeSAndrea Arcangeli 			 */
673e86f15eeSAndrea Arcangeli 			if (next == expand) {
674e86f15eeSAndrea Arcangeli 				/*
675e86f15eeSAndrea Arcangeli 				 * The only case where we don't expand "vma"
676e86f15eeSAndrea Arcangeli 				 * and we expand "next" instead is case 8.
677e86f15eeSAndrea Arcangeli 				 */
678e86f15eeSAndrea Arcangeli 				VM_WARN_ON(end != next->vm_end);
679e86f15eeSAndrea Arcangeli 				/*
680e86f15eeSAndrea Arcangeli 				 * remove_next == 3 means we're
681e86f15eeSAndrea Arcangeli 				 * removing "vma" and that to do so we
682e86f15eeSAndrea Arcangeli 				 * swapped "vma" and "next".
683e86f15eeSAndrea Arcangeli 				 */
684e86f15eeSAndrea Arcangeli 				remove_next = 3;
685e86f15eeSAndrea Arcangeli 				VM_WARN_ON(file != next->vm_file);
686e86f15eeSAndrea Arcangeli 				swap(vma, next);
687e86f15eeSAndrea Arcangeli 			} else {
688e86f15eeSAndrea Arcangeli 				VM_WARN_ON(expand != vma);
689e86f15eeSAndrea Arcangeli 				/*
690e86f15eeSAndrea Arcangeli 				 * case 1, 6, 7, remove_next == 2 is case 6,
691e86f15eeSAndrea Arcangeli 				 * remove_next == 1 is case 1 or 7.
6921da177e4SLinus Torvalds 				 */
693734537c9SKirill A. Shutemov 				remove_next = 1 + (end > next->vm_end);
694e86f15eeSAndrea Arcangeli 				VM_WARN_ON(remove_next == 2 &&
695e86f15eeSAndrea Arcangeli 					   end != next->vm_next->vm_end);
696e86f15eeSAndrea Arcangeli 				VM_WARN_ON(remove_next == 1 &&
697e86f15eeSAndrea Arcangeli 					   end != next->vm_end);
698e86f15eeSAndrea Arcangeli 				/* trim end to next, for case 6 first pass */
6991da177e4SLinus Torvalds 				end = next->vm_end;
700e86f15eeSAndrea Arcangeli 			}
701e86f15eeSAndrea Arcangeli 
702287d97acSLinus Torvalds 			exporter = next;
7031da177e4SLinus Torvalds 			importer = vma;
704734537c9SKirill A. Shutemov 
705734537c9SKirill A. Shutemov 			/*
706734537c9SKirill A. Shutemov 			 * If next doesn't have anon_vma, import from vma after
707734537c9SKirill A. Shutemov 			 * next, if the vma overlaps with it.
708734537c9SKirill A. Shutemov 			 */
70997a42cd4SAndrea Arcangeli 			if (remove_next == 2 && !next->anon_vma)
710734537c9SKirill A. Shutemov 				exporter = next->vm_next;
711734537c9SKirill A. Shutemov 
7121da177e4SLinus Torvalds 		} else if (end > next->vm_start) {
7131da177e4SLinus Torvalds 			/*
7141da177e4SLinus Torvalds 			 * vma expands, overlapping part of the next:
7151da177e4SLinus Torvalds 			 * mprotect case 5 shifting the boundary up.
7161da177e4SLinus Torvalds 			 */
7171da177e4SLinus Torvalds 			adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
718287d97acSLinus Torvalds 			exporter = next;
7191da177e4SLinus Torvalds 			importer = vma;
720e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
7211da177e4SLinus Torvalds 		} else if (end < vma->vm_end) {
7221da177e4SLinus Torvalds 			/*
7231da177e4SLinus Torvalds 			 * vma shrinks, and !insert tells it's not
7241da177e4SLinus Torvalds 			 * split_vma inserting another: so it must be
7251da177e4SLinus Torvalds 			 * mprotect case 4 shifting the boundary down.
7261da177e4SLinus Torvalds 			 */
7271da177e4SLinus Torvalds 			adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT);
728287d97acSLinus Torvalds 			exporter = vma;
7291da177e4SLinus Torvalds 			importer = next;
730e86f15eeSAndrea Arcangeli 			VM_WARN_ON(expand != importer);
7311da177e4SLinus Torvalds 		}
7321da177e4SLinus Torvalds 
7335beb4930SRik van Riel 		/*
7345beb4930SRik van Riel 		 * Easily overlooked: when mprotect shifts the boundary,
7355beb4930SRik van Riel 		 * make sure the expanding vma has anon_vma set if the
7365beb4930SRik van Riel 		 * shrinking vma had, to cover any anon pages imported.
7375beb4930SRik van Riel 		 */
738287d97acSLinus Torvalds 		if (exporter && exporter->anon_vma && !importer->anon_vma) {
739c4ea95d7SDaniel Forrest 			int error;
740c4ea95d7SDaniel Forrest 
741287d97acSLinus Torvalds 			importer->anon_vma = exporter->anon_vma;
742b800c91aSKonstantin Khlebnikov 			error = anon_vma_clone(importer, exporter);
7433fe89b3eSLeon Yu 			if (error)
744b800c91aSKonstantin Khlebnikov 				return error;
745b800c91aSKonstantin Khlebnikov 		}
7465beb4930SRik van Riel 	}
747734537c9SKirill A. Shutemov again:
748e86f15eeSAndrea Arcangeli 	vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
74937f9f559SKirill A. Shutemov 
7501da177e4SLinus Torvalds 	if (file) {
7511da177e4SLinus Torvalds 		mapping = file->f_mapping;
7521da177e4SLinus Torvalds 		root = &mapping->i_mmap;
753cbc91f71SSrikar Dronamraju 		uprobe_munmap(vma, vma->vm_start, vma->vm_end);
754682968e0SSrikar Dronamraju 
755682968e0SSrikar Dronamraju 		if (adjust_next)
75627ba0644SKirill A. Shutemov 			uprobe_munmap(next, next->vm_start, next->vm_end);
757682968e0SSrikar Dronamraju 
75883cde9e8SDavidlohr Bueso 		i_mmap_lock_write(mapping);
7591da177e4SLinus Torvalds 		if (insert) {
7601da177e4SLinus Torvalds 			/*
7616b2dbba8SMichel Lespinasse 			 * Put into interval tree now, so instantiated pages
7621da177e4SLinus Torvalds 			 * are visible to arm/parisc __flush_dcache_page
7631da177e4SLinus Torvalds 			 * throughout; but we cannot insert into address
7641da177e4SLinus Torvalds 			 * space until vma start or end is updated.
7651da177e4SLinus Torvalds 			 */
7661da177e4SLinus Torvalds 			__vma_link_file(insert);
7671da177e4SLinus Torvalds 		}
7681da177e4SLinus Torvalds 	}
7691da177e4SLinus Torvalds 
770012f1800SRik van Riel 	anon_vma = vma->anon_vma;
771bf181b9fSMichel Lespinasse 	if (!anon_vma && adjust_next)
772bf181b9fSMichel Lespinasse 		anon_vma = next->anon_vma;
773bf181b9fSMichel Lespinasse 	if (anon_vma) {
774e86f15eeSAndrea Arcangeli 		VM_WARN_ON(adjust_next && next->anon_vma &&
775e86f15eeSAndrea Arcangeli 			   anon_vma != next->anon_vma);
7764fc3f1d6SIngo Molnar 		anon_vma_lock_write(anon_vma);
777bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_pre_update_vma(vma);
778bf181b9fSMichel Lespinasse 		if (adjust_next)
779bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_pre_update_vma(next);
780bf181b9fSMichel Lespinasse 	}
781012f1800SRik van Riel 
7821da177e4SLinus Torvalds 	if (root) {
7831da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
7846b2dbba8SMichel Lespinasse 		vma_interval_tree_remove(vma, root);
7851da177e4SLinus Torvalds 		if (adjust_next)
7866b2dbba8SMichel Lespinasse 			vma_interval_tree_remove(next, root);
7871da177e4SLinus Torvalds 	}
7881da177e4SLinus Torvalds 
789d3737187SMichel Lespinasse 	if (start != vma->vm_start) {
7901da177e4SLinus Torvalds 		vma->vm_start = start;
791d3737187SMichel Lespinasse 		start_changed = true;
792d3737187SMichel Lespinasse 	}
793d3737187SMichel Lespinasse 	if (end != vma->vm_end) {
7941da177e4SLinus Torvalds 		vma->vm_end = end;
795d3737187SMichel Lespinasse 		end_changed = true;
796d3737187SMichel Lespinasse 	}
7971da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
7981da177e4SLinus Torvalds 	if (adjust_next) {
7991da177e4SLinus Torvalds 		next->vm_start += adjust_next << PAGE_SHIFT;
8001da177e4SLinus Torvalds 		next->vm_pgoff += adjust_next;
8011da177e4SLinus Torvalds 	}
8021da177e4SLinus Torvalds 
8031da177e4SLinus Torvalds 	if (root) {
8041da177e4SLinus Torvalds 		if (adjust_next)
8056b2dbba8SMichel Lespinasse 			vma_interval_tree_insert(next, root);
8066b2dbba8SMichel Lespinasse 		vma_interval_tree_insert(vma, root);
8071da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
8081da177e4SLinus Torvalds 	}
8091da177e4SLinus Torvalds 
8101da177e4SLinus Torvalds 	if (remove_next) {
8111da177e4SLinus Torvalds 		/*
8121da177e4SLinus Torvalds 		 * vma_merge has merged next into vma, and needs
8131da177e4SLinus Torvalds 		 * us to remove next before dropping the locks.
8141da177e4SLinus Torvalds 		 */
815e86f15eeSAndrea Arcangeli 		if (remove_next != 3)
816e86f15eeSAndrea Arcangeli 			__vma_unlink_prev(mm, next, vma);
817e86f15eeSAndrea Arcangeli 		else
818e86f15eeSAndrea Arcangeli 			/* vma is not before next if they've been swapped */
819e86f15eeSAndrea Arcangeli 			__vma_unlink(mm, next);
8201da177e4SLinus Torvalds 		if (file)
8211da177e4SLinus Torvalds 			__remove_shared_vm_struct(next, file, mapping);
8221da177e4SLinus Torvalds 	} else if (insert) {
8231da177e4SLinus Torvalds 		/*
8241da177e4SLinus Torvalds 		 * split_vma has split insert from vma, and needs
8251da177e4SLinus Torvalds 		 * us to insert it before dropping the locks
8261da177e4SLinus Torvalds 		 * (it may either follow vma or precede it).
8271da177e4SLinus Torvalds 		 */
8281da177e4SLinus Torvalds 		__insert_vm_struct(mm, insert);
829d3737187SMichel Lespinasse 	} else {
830d3737187SMichel Lespinasse 		if (start_changed)
831d3737187SMichel Lespinasse 			vma_gap_update(vma);
832d3737187SMichel Lespinasse 		if (end_changed) {
833d3737187SMichel Lespinasse 			if (!next)
834d3737187SMichel Lespinasse 				mm->highest_vm_end = end;
835d3737187SMichel Lespinasse 			else if (!adjust_next)
836d3737187SMichel Lespinasse 				vma_gap_update(next);
837d3737187SMichel Lespinasse 		}
8381da177e4SLinus Torvalds 	}
8391da177e4SLinus Torvalds 
840bf181b9fSMichel Lespinasse 	if (anon_vma) {
841bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_post_update_vma(vma);
842bf181b9fSMichel Lespinasse 		if (adjust_next)
843bf181b9fSMichel Lespinasse 			anon_vma_interval_tree_post_update_vma(next);
84408b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
845bf181b9fSMichel Lespinasse 	}
8461da177e4SLinus Torvalds 	if (mapping)
84783cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
8481da177e4SLinus Torvalds 
8492b144498SSrikar Dronamraju 	if (root) {
8507b2d81d4SIngo Molnar 		uprobe_mmap(vma);
8512b144498SSrikar Dronamraju 
8522b144498SSrikar Dronamraju 		if (adjust_next)
8537b2d81d4SIngo Molnar 			uprobe_mmap(next);
8542b144498SSrikar Dronamraju 	}
8552b144498SSrikar Dronamraju 
8561da177e4SLinus Torvalds 	if (remove_next) {
857925d1c40SMatt Helsley 		if (file) {
858cbc91f71SSrikar Dronamraju 			uprobe_munmap(next, next->vm_start, next->vm_end);
8591da177e4SLinus Torvalds 			fput(file);
860925d1c40SMatt Helsley 		}
8615beb4930SRik van Riel 		if (next->anon_vma)
8625beb4930SRik van Riel 			anon_vma_merge(vma, next);
8631da177e4SLinus Torvalds 		mm->map_count--;
8643964acd0SOleg Nesterov 		mpol_put(vma_policy(next));
8651da177e4SLinus Torvalds 		kmem_cache_free(vm_area_cachep, next);
8661da177e4SLinus Torvalds 		/*
8671da177e4SLinus Torvalds 		 * In mprotect's case 6 (see comments on vma_merge),
8681da177e4SLinus Torvalds 		 * we must remove another next too. It would clutter
8691da177e4SLinus Torvalds 		 * up the code too much to do both in one go.
8701da177e4SLinus Torvalds 		 */
871e86f15eeSAndrea Arcangeli 		if (remove_next != 3) {
872e86f15eeSAndrea Arcangeli 			/*
873e86f15eeSAndrea Arcangeli 			 * If "next" was removed and vma->vm_end was
874e86f15eeSAndrea Arcangeli 			 * expanded (up) over it, in turn
875e86f15eeSAndrea Arcangeli 			 * "next->vm_prev->vm_end" changed and the
876e86f15eeSAndrea Arcangeli 			 * "vma->vm_next" gap must be updated.
877e86f15eeSAndrea Arcangeli 			 */
8781da177e4SLinus Torvalds 			next = vma->vm_next;
879e86f15eeSAndrea Arcangeli 		} else {
880e86f15eeSAndrea Arcangeli 			/*
881e86f15eeSAndrea Arcangeli 			 * For the scope of the comment "next" and
882e86f15eeSAndrea Arcangeli 			 * "vma" considered pre-swap(): if "vma" was
883e86f15eeSAndrea Arcangeli 			 * removed, next->vm_start was expanded (down)
884e86f15eeSAndrea Arcangeli 			 * over it and the "next" gap must be updated.
885e86f15eeSAndrea Arcangeli 			 * Because of the swap() the post-swap() "vma"
886e86f15eeSAndrea Arcangeli 			 * actually points to pre-swap() "next"
887e86f15eeSAndrea Arcangeli 			 * (post-swap() "next" as opposed is now a
888e86f15eeSAndrea Arcangeli 			 * dangling pointer).
889e86f15eeSAndrea Arcangeli 			 */
890e86f15eeSAndrea Arcangeli 			next = vma;
891e86f15eeSAndrea Arcangeli 		}
892734537c9SKirill A. Shutemov 		if (remove_next == 2) {
893734537c9SKirill A. Shutemov 			remove_next = 1;
894734537c9SKirill A. Shutemov 			end = next->vm_end;
8951da177e4SLinus Torvalds 			goto again;
896734537c9SKirill A. Shutemov 		}
897d3737187SMichel Lespinasse 		else if (next)
898d3737187SMichel Lespinasse 			vma_gap_update(next);
899fb8c41e9SAndrea Arcangeli 		else {
900fb8c41e9SAndrea Arcangeli 			/*
901fb8c41e9SAndrea Arcangeli 			 * If remove_next == 2 we obviously can't
902fb8c41e9SAndrea Arcangeli 			 * reach this path.
903fb8c41e9SAndrea Arcangeli 			 *
904fb8c41e9SAndrea Arcangeli 			 * If remove_next == 3 we can't reach this
905fb8c41e9SAndrea Arcangeli 			 * path because pre-swap() next is always not
906fb8c41e9SAndrea Arcangeli 			 * NULL. pre-swap() "next" is not being
907fb8c41e9SAndrea Arcangeli 			 * removed and its next->vm_end is not altered
908fb8c41e9SAndrea Arcangeli 			 * (and furthermore "end" already matches
909fb8c41e9SAndrea Arcangeli 			 * next->vm_end in remove_next == 3).
910fb8c41e9SAndrea Arcangeli 			 *
911fb8c41e9SAndrea Arcangeli 			 * We reach this only in the remove_next == 1
912fb8c41e9SAndrea Arcangeli 			 * case if the "next" vma that was removed was
913fb8c41e9SAndrea Arcangeli 			 * the highest vma of the mm. However in such
914fb8c41e9SAndrea Arcangeli 			 * case next->vm_end == "end" and the extended
915fb8c41e9SAndrea Arcangeli 			 * "vma" has vma->vm_end == next->vm_end so
916fb8c41e9SAndrea Arcangeli 			 * mm->highest_vm_end doesn't need any update
917fb8c41e9SAndrea Arcangeli 			 * in remove_next == 1 case.
918fb8c41e9SAndrea Arcangeli 			 */
919fb8c41e9SAndrea Arcangeli 			VM_WARN_ON(mm->highest_vm_end != end);
920fb8c41e9SAndrea Arcangeli 		}
9211da177e4SLinus Torvalds 	}
9222b144498SSrikar Dronamraju 	if (insert && file)
9237b2d81d4SIngo Molnar 		uprobe_mmap(insert);
9241da177e4SLinus Torvalds 
9251da177e4SLinus Torvalds 	validate_mm(mm);
9265beb4930SRik van Riel 
9275beb4930SRik van Riel 	return 0;
9281da177e4SLinus Torvalds }
9291da177e4SLinus Torvalds 
9301da177e4SLinus Torvalds /*
9311da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
9321da177e4SLinus Torvalds  * per-vma resources, so we don't attempt to merge those.
9331da177e4SLinus Torvalds  */
9341da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma,
93519a809afSAndrea Arcangeli 				struct file *file, unsigned long vm_flags,
93619a809afSAndrea Arcangeli 				struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
9371da177e4SLinus Torvalds {
93834228d47SCyrill Gorcunov 	/*
93934228d47SCyrill Gorcunov 	 * VM_SOFTDIRTY should not prevent from VMA merging, if we
94034228d47SCyrill Gorcunov 	 * match the flags but dirty bit -- the caller should mark
94134228d47SCyrill Gorcunov 	 * merged VMA as dirty. If dirty bit won't be excluded from
94234228d47SCyrill Gorcunov 	 * comparison, we increase pressue on the memory system forcing
94334228d47SCyrill Gorcunov 	 * the kernel to generate new VMAs when old one could be
94434228d47SCyrill Gorcunov 	 * extended instead.
94534228d47SCyrill Gorcunov 	 */
94634228d47SCyrill Gorcunov 	if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
9471da177e4SLinus Torvalds 		return 0;
9481da177e4SLinus Torvalds 	if (vma->vm_file != file)
9491da177e4SLinus Torvalds 		return 0;
9501da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
9511da177e4SLinus Torvalds 		return 0;
95219a809afSAndrea Arcangeli 	if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
95319a809afSAndrea Arcangeli 		return 0;
9541da177e4SLinus Torvalds 	return 1;
9551da177e4SLinus Torvalds }
9561da177e4SLinus Torvalds 
9571da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
958965f55deSShaohua Li 					struct anon_vma *anon_vma2,
959965f55deSShaohua Li 					struct vm_area_struct *vma)
9601da177e4SLinus Torvalds {
961965f55deSShaohua Li 	/*
962965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
963965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
964965f55deSShaohua Li 	 */
965965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
966965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
967965f55deSShaohua Li 		return 1;
968965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
9691da177e4SLinus Torvalds }
9701da177e4SLinus Torvalds 
9711da177e4SLinus Torvalds /*
9721da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
9731da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
9741da177e4SLinus Torvalds  *
9751da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
9761da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
9771da177e4SLinus Torvalds  *
9781da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
9791da177e4SLinus Torvalds  * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
9801da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
9811da177e4SLinus Torvalds  */
9821da177e4SLinus Torvalds static int
9831da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
98419a809afSAndrea Arcangeli 		     struct anon_vma *anon_vma, struct file *file,
98519a809afSAndrea Arcangeli 		     pgoff_t vm_pgoff,
98619a809afSAndrea Arcangeli 		     struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
9871da177e4SLinus Torvalds {
98819a809afSAndrea Arcangeli 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
989965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
9901da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
9911da177e4SLinus Torvalds 			return 1;
9921da177e4SLinus Torvalds 	}
9931da177e4SLinus Torvalds 	return 0;
9941da177e4SLinus Torvalds }
9951da177e4SLinus Torvalds 
9961da177e4SLinus Torvalds /*
9971da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
9981da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
9991da177e4SLinus Torvalds  *
10001da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
10011da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
10021da177e4SLinus Torvalds  */
10031da177e4SLinus Torvalds static int
10041da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
100519a809afSAndrea Arcangeli 		    struct anon_vma *anon_vma, struct file *file,
100619a809afSAndrea Arcangeli 		    pgoff_t vm_pgoff,
100719a809afSAndrea Arcangeli 		    struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
10081da177e4SLinus Torvalds {
100919a809afSAndrea Arcangeli 	if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
1010965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
10111da177e4SLinus Torvalds 		pgoff_t vm_pglen;
1012d6e93217SLibin 		vm_pglen = vma_pages(vma);
10131da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
10141da177e4SLinus Torvalds 			return 1;
10151da177e4SLinus Torvalds 	}
10161da177e4SLinus Torvalds 	return 0;
10171da177e4SLinus Torvalds }
10181da177e4SLinus Torvalds 
10191da177e4SLinus Torvalds /*
10201da177e4SLinus Torvalds  * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
10211da177e4SLinus Torvalds  * whether that can be merged with its predecessor or its successor.
10221da177e4SLinus Torvalds  * Or both (it neatly fills a hole).
10231da177e4SLinus Torvalds  *
10241da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
10251da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
10261da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
10271da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
10281da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
10291da177e4SLinus Torvalds  * case has already been eliminated.
10301da177e4SLinus Torvalds  *
10311da177e4SLinus Torvalds  * The following mprotect cases have to be considered, where AAAA is
10321da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
10331da177e4SLinus Torvalds  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
10341da177e4SLinus Torvalds  *
10351da177e4SLinus Torvalds  *     AAAA             AAAA                AAAA          AAAA
10361da177e4SLinus Torvalds  *    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPNNNNXXXX
10371da177e4SLinus Torvalds  *    cannot merge    might become    might become    might become
10381da177e4SLinus Torvalds  *                    PPNNNNNNNNNN    PPPPPPPPPPNN    PPPPPPPPPPPP 6 or
10391da177e4SLinus Torvalds  *    mmap, brk or    case 4 below    case 5 below    PPPPPPPPXXXX 7 or
1040e86f15eeSAndrea Arcangeli  *    mremap move:                                    PPPPXXXXXXXX 8
10411da177e4SLinus Torvalds  *        AAAA
10421da177e4SLinus Torvalds  *    PPPP    NNNN    PPPPPPPPPPPP    PPPPPPPPNNNN    PPPPNNNNNNNN
10431da177e4SLinus Torvalds  *    might become    case 1 below    case 2 below    case 3 below
10441da177e4SLinus Torvalds  *
1045e86f15eeSAndrea Arcangeli  * It is important for case 8 that the the vma NNNN overlapping the
1046e86f15eeSAndrea Arcangeli  * region AAAA is never going to extended over XXXX. Instead XXXX must
1047e86f15eeSAndrea Arcangeli  * be extended in region AAAA and NNNN must be removed. This way in
1048e86f15eeSAndrea Arcangeli  * all cases where vma_merge succeeds, the moment vma_adjust drops the
1049e86f15eeSAndrea Arcangeli  * rmap_locks, the properties of the merged vma will be already
1050e86f15eeSAndrea Arcangeli  * correct for the whole merged range. Some of those properties like
1051e86f15eeSAndrea Arcangeli  * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
1052e86f15eeSAndrea Arcangeli  * be correct for the whole merged range immediately after the
1053e86f15eeSAndrea Arcangeli  * rmap_locks are released. Otherwise if XXXX would be removed and
1054e86f15eeSAndrea Arcangeli  * NNNN would be extended over the XXXX range, remove_migration_ptes
1055e86f15eeSAndrea Arcangeli  * or other rmap walkers (if working on addresses beyond the "end"
1056e86f15eeSAndrea Arcangeli  * parameter) may establish ptes with the wrong permissions of NNNN
1057e86f15eeSAndrea Arcangeli  * instead of the right permissions of XXXX.
10581da177e4SLinus Torvalds  */
10591da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm,
10601da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
10611da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
10621da177e4SLinus Torvalds 			struct anon_vma *anon_vma, struct file *file,
106319a809afSAndrea Arcangeli 			pgoff_t pgoff, struct mempolicy *policy,
106419a809afSAndrea Arcangeli 			struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
10651da177e4SLinus Torvalds {
10661da177e4SLinus Torvalds 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
10671da177e4SLinus Torvalds 	struct vm_area_struct *area, *next;
10685beb4930SRik van Riel 	int err;
10691da177e4SLinus Torvalds 
10701da177e4SLinus Torvalds 	/*
10711da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
10721da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
10731da177e4SLinus Torvalds 	 */
10741da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
10751da177e4SLinus Torvalds 		return NULL;
10761da177e4SLinus Torvalds 
10771da177e4SLinus Torvalds 	if (prev)
10781da177e4SLinus Torvalds 		next = prev->vm_next;
10791da177e4SLinus Torvalds 	else
10801da177e4SLinus Torvalds 		next = mm->mmap;
10811da177e4SLinus Torvalds 	area = next;
1082e86f15eeSAndrea Arcangeli 	if (area && area->vm_end == end)		/* cases 6, 7, 8 */
10831da177e4SLinus Torvalds 		next = next->vm_next;
10841da177e4SLinus Torvalds 
1085e86f15eeSAndrea Arcangeli 	/* verify some invariant that must be enforced by the caller */
1086e86f15eeSAndrea Arcangeli 	VM_WARN_ON(prev && addr <= prev->vm_start);
1087e86f15eeSAndrea Arcangeli 	VM_WARN_ON(area && end > area->vm_end);
1088e86f15eeSAndrea Arcangeli 	VM_WARN_ON(addr >= end);
1089e86f15eeSAndrea Arcangeli 
10901da177e4SLinus Torvalds 	/*
10911da177e4SLinus Torvalds 	 * Can it merge with the predecessor?
10921da177e4SLinus Torvalds 	 */
10931da177e4SLinus Torvalds 	if (prev && prev->vm_end == addr &&
10941da177e4SLinus Torvalds 			mpol_equal(vma_policy(prev), policy) &&
10951da177e4SLinus Torvalds 			can_vma_merge_after(prev, vm_flags,
109619a809afSAndrea Arcangeli 					    anon_vma, file, pgoff,
109719a809afSAndrea Arcangeli 					    vm_userfaultfd_ctx)) {
10981da177e4SLinus Torvalds 		/*
10991da177e4SLinus Torvalds 		 * OK, it can.  Can we now merge in the successor as well?
11001da177e4SLinus Torvalds 		 */
11011da177e4SLinus Torvalds 		if (next && end == next->vm_start &&
11021da177e4SLinus Torvalds 				mpol_equal(policy, vma_policy(next)) &&
11031da177e4SLinus Torvalds 				can_vma_merge_before(next, vm_flags,
110419a809afSAndrea Arcangeli 						     anon_vma, file,
110519a809afSAndrea Arcangeli 						     pgoff+pglen,
110619a809afSAndrea Arcangeli 						     vm_userfaultfd_ctx) &&
11071da177e4SLinus Torvalds 				is_mergeable_anon_vma(prev->anon_vma,
1108965f55deSShaohua Li 						      next->anon_vma, NULL)) {
11091da177e4SLinus Torvalds 							/* cases 1, 6 */
1110e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1111e86f15eeSAndrea Arcangeli 					 next->vm_end, prev->vm_pgoff, NULL,
1112e86f15eeSAndrea Arcangeli 					 prev);
11131da177e4SLinus Torvalds 		} else					/* cases 2, 5, 7 */
1114e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1115e86f15eeSAndrea Arcangeli 					 end, prev->vm_pgoff, NULL, prev);
11165beb4930SRik van Riel 		if (err)
11175beb4930SRik van Riel 			return NULL;
11186d50e60cSDavid Rientjes 		khugepaged_enter_vma_merge(prev, vm_flags);
11191da177e4SLinus Torvalds 		return prev;
11201da177e4SLinus Torvalds 	}
11211da177e4SLinus Torvalds 
11221da177e4SLinus Torvalds 	/*
11231da177e4SLinus Torvalds 	 * Can this new request be merged in front of next?
11241da177e4SLinus Torvalds 	 */
11251da177e4SLinus Torvalds 	if (next && end == next->vm_start &&
11261da177e4SLinus Torvalds 			mpol_equal(policy, vma_policy(next)) &&
11271da177e4SLinus Torvalds 			can_vma_merge_before(next, vm_flags,
112819a809afSAndrea Arcangeli 					     anon_vma, file, pgoff+pglen,
112919a809afSAndrea Arcangeli 					     vm_userfaultfd_ctx)) {
11301da177e4SLinus Torvalds 		if (prev && addr < prev->vm_end)	/* case 4 */
1131e86f15eeSAndrea Arcangeli 			err = __vma_adjust(prev, prev->vm_start,
1132e86f15eeSAndrea Arcangeli 					 addr, prev->vm_pgoff, NULL, next);
1133e86f15eeSAndrea Arcangeli 		else {					/* cases 3, 8 */
1134e86f15eeSAndrea Arcangeli 			err = __vma_adjust(area, addr, next->vm_end,
1135e86f15eeSAndrea Arcangeli 					 next->vm_pgoff - pglen, NULL, next);
1136e86f15eeSAndrea Arcangeli 			/*
1137e86f15eeSAndrea Arcangeli 			 * In case 3 area is already equal to next and
1138e86f15eeSAndrea Arcangeli 			 * this is a noop, but in case 8 "area" has
1139e86f15eeSAndrea Arcangeli 			 * been removed and next was expanded over it.
1140e86f15eeSAndrea Arcangeli 			 */
1141e86f15eeSAndrea Arcangeli 			area = next;
1142e86f15eeSAndrea Arcangeli 		}
11435beb4930SRik van Riel 		if (err)
11445beb4930SRik van Riel 			return NULL;
11456d50e60cSDavid Rientjes 		khugepaged_enter_vma_merge(area, vm_flags);
11461da177e4SLinus Torvalds 		return area;
11471da177e4SLinus Torvalds 	}
11481da177e4SLinus Torvalds 
11491da177e4SLinus Torvalds 	return NULL;
11501da177e4SLinus Torvalds }
11511da177e4SLinus Torvalds 
11521da177e4SLinus Torvalds /*
1153d0e9fe17SLinus Torvalds  * Rough compatbility check to quickly see if it's even worth looking
1154d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
1155d0e9fe17SLinus Torvalds  *
1156d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
1157d0e9fe17SLinus Torvalds  * in things that mprotect may change.
1158d0e9fe17SLinus Torvalds  *
1159d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1160d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
1161d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
1162d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
1163d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
1164d0e9fe17SLinus Torvalds  */
1165d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1166d0e9fe17SLinus Torvalds {
1167d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
1168d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
1169d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
117034228d47SCyrill Gorcunov 		!((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) &&
1171d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1172d0e9fe17SLinus Torvalds }
1173d0e9fe17SLinus Torvalds 
1174d0e9fe17SLinus Torvalds /*
1175d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
1176d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1177d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
1178d0e9fe17SLinus Torvalds  * to share the anon_vma.
1179d0e9fe17SLinus Torvalds  *
1180d0e9fe17SLinus Torvalds  * NOTE! This runs with mm_sem held for reading, so it is possible that
1181d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
1182d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
1183d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
1184d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
11854db0c3c2SJason Low  * we do that READ_ONCE() to make sure that we never re-load the pointer.
1186d0e9fe17SLinus Torvalds  *
1187d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1188d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1189d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
1190d0e9fe17SLinus Torvalds  * a fork).
1191d0e9fe17SLinus Torvalds  *
1192d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
1193d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
1194d0e9fe17SLinus Torvalds  * a read lock on the mm_sem.
1195d0e9fe17SLinus Torvalds  */
1196d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1197d0e9fe17SLinus Torvalds {
1198d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
11994db0c3c2SJason Low 		struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
1200d0e9fe17SLinus Torvalds 
1201d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
1202d0e9fe17SLinus Torvalds 			return anon_vma;
1203d0e9fe17SLinus Torvalds 	}
1204d0e9fe17SLinus Torvalds 	return NULL;
1205d0e9fe17SLinus Torvalds }
1206d0e9fe17SLinus Torvalds 
1207d0e9fe17SLinus Torvalds /*
12081da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
12091da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
12101da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
12111da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
12121da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
12131da177e4SLinus Torvalds  * mprotect.
12141da177e4SLinus Torvalds  */
12151da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
12161da177e4SLinus Torvalds {
1217d0e9fe17SLinus Torvalds 	struct anon_vma *anon_vma;
12181da177e4SLinus Torvalds 	struct vm_area_struct *near;
12191da177e4SLinus Torvalds 
12201da177e4SLinus Torvalds 	near = vma->vm_next;
12211da177e4SLinus Torvalds 	if (!near)
12221da177e4SLinus Torvalds 		goto try_prev;
12231da177e4SLinus Torvalds 
1224d0e9fe17SLinus Torvalds 	anon_vma = reusable_anon_vma(near, vma, near);
1225d0e9fe17SLinus Torvalds 	if (anon_vma)
1226d0e9fe17SLinus Torvalds 		return anon_vma;
12271da177e4SLinus Torvalds try_prev:
12289be34c9dSLinus Torvalds 	near = vma->vm_prev;
12291da177e4SLinus Torvalds 	if (!near)
12301da177e4SLinus Torvalds 		goto none;
12311da177e4SLinus Torvalds 
1232d0e9fe17SLinus Torvalds 	anon_vma = reusable_anon_vma(near, near, vma);
1233d0e9fe17SLinus Torvalds 	if (anon_vma)
1234d0e9fe17SLinus Torvalds 		return anon_vma;
12351da177e4SLinus Torvalds none:
12361da177e4SLinus Torvalds 	/*
12371da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
12381da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
12391da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
12401da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
12411da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
12421da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
12431da177e4SLinus Torvalds 	 */
12441da177e4SLinus Torvalds 	return NULL;
12451da177e4SLinus Torvalds }
12461da177e4SLinus Torvalds 
12471da177e4SLinus Torvalds /*
124840401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
124940401530SAl Viro  * low as possible but still greater than mmap_min_addr
125040401530SAl Viro  */
125140401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
125240401530SAl Viro {
125340401530SAl Viro 	hint &= PAGE_MASK;
125440401530SAl Viro 	if (((void *)hint != NULL) &&
125540401530SAl Viro 	    (hint < mmap_min_addr))
125640401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
125740401530SAl Viro 	return hint;
125840401530SAl Viro }
125940401530SAl Viro 
1260363ee17fSDavidlohr Bueso static inline int mlock_future_check(struct mm_struct *mm,
1261363ee17fSDavidlohr Bueso 				     unsigned long flags,
1262363ee17fSDavidlohr Bueso 				     unsigned long len)
1263363ee17fSDavidlohr Bueso {
1264363ee17fSDavidlohr Bueso 	unsigned long locked, lock_limit;
1265363ee17fSDavidlohr Bueso 
1266363ee17fSDavidlohr Bueso 	/*  mlock MCL_FUTURE? */
1267363ee17fSDavidlohr Bueso 	if (flags & VM_LOCKED) {
1268363ee17fSDavidlohr Bueso 		locked = len >> PAGE_SHIFT;
1269363ee17fSDavidlohr Bueso 		locked += mm->locked_vm;
1270363ee17fSDavidlohr Bueso 		lock_limit = rlimit(RLIMIT_MEMLOCK);
1271363ee17fSDavidlohr Bueso 		lock_limit >>= PAGE_SHIFT;
1272363ee17fSDavidlohr Bueso 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1273363ee17fSDavidlohr Bueso 			return -EAGAIN;
1274363ee17fSDavidlohr Bueso 	}
1275363ee17fSDavidlohr Bueso 	return 0;
1276363ee17fSDavidlohr Bueso }
1277363ee17fSDavidlohr Bueso 
127840401530SAl Viro /*
127927f5de79SJianjun Kong  * The caller must hold down_write(&current->mm->mmap_sem).
12801da177e4SLinus Torvalds  */
12811fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr,
12821da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
12831fcfd8dbSOleg Nesterov 			unsigned long flags, vm_flags_t vm_flags,
12841fcfd8dbSOleg Nesterov 			unsigned long pgoff, unsigned long *populate)
12851da177e4SLinus Torvalds {
12861da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
128762b5f7d0SDave Hansen 	int pkey = 0;
12881da177e4SLinus Torvalds 
128941badc15SMichel Lespinasse 	*populate = 0;
1290bebeb3d6SMichel Lespinasse 
1291e37609bbSPiotr Kwapulinski 	if (!len)
1292e37609bbSPiotr Kwapulinski 		return -EINVAL;
1293e37609bbSPiotr Kwapulinski 
12941da177e4SLinus Torvalds 	/*
12951da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
12961da177e4SLinus Torvalds 	 *
12971da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
12981da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
12991da177e4SLinus Torvalds 	 */
13001da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
130190f8572bSEric W. Biederman 		if (!(file && path_noexec(&file->f_path)))
13021da177e4SLinus Torvalds 			prot |= PROT_EXEC;
13031da177e4SLinus Torvalds 
13047cd94146SEric Paris 	if (!(flags & MAP_FIXED))
13057cd94146SEric Paris 		addr = round_hint_to_min(addr);
13067cd94146SEric Paris 
13071da177e4SLinus Torvalds 	/* Careful about overflows.. */
13081da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
13099206de95SAl Viro 	if (!len)
13101da177e4SLinus Torvalds 		return -ENOMEM;
13111da177e4SLinus Torvalds 
13121da177e4SLinus Torvalds 	/* offset overflow? */
13131da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
13141da177e4SLinus Torvalds 		return -EOVERFLOW;
13151da177e4SLinus Torvalds 
13161da177e4SLinus Torvalds 	/* Too many mappings? */
13171da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
13181da177e4SLinus Torvalds 		return -ENOMEM;
13191da177e4SLinus Torvalds 
13201da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
13211da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
13221da177e4SLinus Torvalds 	 */
13231da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
1324de1741a1SAlexander Kuleshov 	if (offset_in_page(addr))
13251da177e4SLinus Torvalds 		return addr;
13261da177e4SLinus Torvalds 
132762b5f7d0SDave Hansen 	if (prot == PROT_EXEC) {
132862b5f7d0SDave Hansen 		pkey = execute_only_pkey(mm);
132962b5f7d0SDave Hansen 		if (pkey < 0)
133062b5f7d0SDave Hansen 			pkey = 0;
133162b5f7d0SDave Hansen 	}
133262b5f7d0SDave Hansen 
13331da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
13341da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
13351da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
13361da177e4SLinus Torvalds 	 */
133762b5f7d0SDave Hansen 	vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
13381da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
13391da177e4SLinus Torvalds 
1340cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
13411da177e4SLinus Torvalds 		if (!can_do_mlock())
13421da177e4SLinus Torvalds 			return -EPERM;
1343ba470de4SRik van Riel 
1344363ee17fSDavidlohr Bueso 	if (mlock_future_check(mm, vm_flags, len))
13451da177e4SLinus Torvalds 		return -EAGAIN;
13461da177e4SLinus Torvalds 
13471da177e4SLinus Torvalds 	if (file) {
1348077bf22bSOleg Nesterov 		struct inode *inode = file_inode(file);
1349077bf22bSOleg Nesterov 
13501da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
13511da177e4SLinus Torvalds 		case MAP_SHARED:
13521da177e4SLinus Torvalds 			if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
13531da177e4SLinus Torvalds 				return -EACCES;
13541da177e4SLinus Torvalds 
13551da177e4SLinus Torvalds 			/*
13561da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
13571da177e4SLinus Torvalds 			 * file..
13581da177e4SLinus Torvalds 			 */
13591da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
13601da177e4SLinus Torvalds 				return -EACCES;
13611da177e4SLinus Torvalds 
13621da177e4SLinus Torvalds 			/*
13631da177e4SLinus Torvalds 			 * Make sure there are no mandatory locks on the file.
13641da177e4SLinus Torvalds 			 */
1365d7a06983SJeff Layton 			if (locks_verify_locked(file))
13661da177e4SLinus Torvalds 				return -EAGAIN;
13671da177e4SLinus Torvalds 
13681da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
13691da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
13701da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
13711da177e4SLinus Torvalds 
13721da177e4SLinus Torvalds 			/* fall through */
13731da177e4SLinus Torvalds 		case MAP_PRIVATE:
13741da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
13751da177e4SLinus Torvalds 				return -EACCES;
137690f8572bSEric W. Biederman 			if (path_noexec(&file->f_path)) {
137780c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
137880c5606cSLinus Torvalds 					return -EPERM;
137980c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
138080c5606cSLinus Torvalds 			}
138180c5606cSLinus Torvalds 
138272c2d531SAl Viro 			if (!file->f_op->mmap)
138380c5606cSLinus Torvalds 				return -ENODEV;
1384b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1385b2c56e4fSOleg Nesterov 				return -EINVAL;
13861da177e4SLinus Torvalds 			break;
13871da177e4SLinus Torvalds 
13881da177e4SLinus Torvalds 		default:
13891da177e4SLinus Torvalds 			return -EINVAL;
13901da177e4SLinus Torvalds 		}
13911da177e4SLinus Torvalds 	} else {
13921da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
13931da177e4SLinus Torvalds 		case MAP_SHARED:
1394b2c56e4fSOleg Nesterov 			if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1395b2c56e4fSOleg Nesterov 				return -EINVAL;
1396ce363942STejun Heo 			/*
1397ce363942STejun Heo 			 * Ignore pgoff.
1398ce363942STejun Heo 			 */
1399ce363942STejun Heo 			pgoff = 0;
14001da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
14011da177e4SLinus Torvalds 			break;
14021da177e4SLinus Torvalds 		case MAP_PRIVATE:
14031da177e4SLinus Torvalds 			/*
14041da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
14051da177e4SLinus Torvalds 			 */
14061da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
14071da177e4SLinus Torvalds 			break;
14081da177e4SLinus Torvalds 		default:
14091da177e4SLinus Torvalds 			return -EINVAL;
14101da177e4SLinus Torvalds 		}
14111da177e4SLinus Torvalds 	}
14121da177e4SLinus Torvalds 
1413c22c0d63SMichel Lespinasse 	/*
1414c22c0d63SMichel Lespinasse 	 * Set 'VM_NORESERVE' if we should not account for the
1415c22c0d63SMichel Lespinasse 	 * memory use of this mapping.
1416c22c0d63SMichel Lespinasse 	 */
1417c22c0d63SMichel Lespinasse 	if (flags & MAP_NORESERVE) {
1418c22c0d63SMichel Lespinasse 		/* We honor MAP_NORESERVE if allowed to overcommit */
1419c22c0d63SMichel Lespinasse 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1420c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1421c22c0d63SMichel Lespinasse 
1422c22c0d63SMichel Lespinasse 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
1423c22c0d63SMichel Lespinasse 		if (file && is_file_hugepages(file))
1424c22c0d63SMichel Lespinasse 			vm_flags |= VM_NORESERVE;
1425c22c0d63SMichel Lespinasse 	}
1426c22c0d63SMichel Lespinasse 
1427c22c0d63SMichel Lespinasse 	addr = mmap_region(file, addr, len, vm_flags, pgoff);
142809a9f1d2SMichel Lespinasse 	if (!IS_ERR_VALUE(addr) &&
142909a9f1d2SMichel Lespinasse 	    ((vm_flags & VM_LOCKED) ||
143009a9f1d2SMichel Lespinasse 	     (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
143141badc15SMichel Lespinasse 		*populate = len;
1432bebeb3d6SMichel Lespinasse 	return addr;
14330165ab44SMiklos Szeredi }
14346be5ceb0SLinus Torvalds 
143566f0dc48SHugh Dickins SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
143666f0dc48SHugh Dickins 		unsigned long, prot, unsigned long, flags,
143766f0dc48SHugh Dickins 		unsigned long, fd, unsigned long, pgoff)
143866f0dc48SHugh Dickins {
143966f0dc48SHugh Dickins 	struct file *file = NULL;
14401e3ee14bSChen Gang 	unsigned long retval;
144166f0dc48SHugh Dickins 
144266f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1443120a795dSAl Viro 		audit_mmap_fd(fd, flags);
144466f0dc48SHugh Dickins 		file = fget(fd);
144566f0dc48SHugh Dickins 		if (!file)
14461e3ee14bSChen Gang 			return -EBADF;
1447af73e4d9SNaoya Horiguchi 		if (is_file_hugepages(file))
1448af73e4d9SNaoya Horiguchi 			len = ALIGN(len, huge_page_size(hstate_file(file)));
1449493af578SJörn Engel 		retval = -EINVAL;
1450493af578SJörn Engel 		if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file)))
1451493af578SJörn Engel 			goto out_fput;
145266f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
145366f0dc48SHugh Dickins 		struct user_struct *user = NULL;
1454c103a4dcSAndrew Morton 		struct hstate *hs;
1455af73e4d9SNaoya Horiguchi 
1456c103a4dcSAndrew Morton 		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK);
1457091d0d55SLi Zefan 		if (!hs)
1458091d0d55SLi Zefan 			return -EINVAL;
1459091d0d55SLi Zefan 
1460091d0d55SLi Zefan 		len = ALIGN(len, huge_page_size(hs));
146166f0dc48SHugh Dickins 		/*
146266f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
146366f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
146466f0dc48SHugh Dickins 		 * A dummy user value is used because we are not locking
146566f0dc48SHugh Dickins 		 * memory so no accounting is necessary
146666f0dc48SHugh Dickins 		 */
1467af73e4d9SNaoya Horiguchi 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
146842d7395fSAndi Kleen 				VM_NORESERVE,
146942d7395fSAndi Kleen 				&user, HUGETLB_ANONHUGE_INODE,
147042d7395fSAndi Kleen 				(flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
147166f0dc48SHugh Dickins 		if (IS_ERR(file))
147266f0dc48SHugh Dickins 			return PTR_ERR(file);
147366f0dc48SHugh Dickins 	}
147466f0dc48SHugh Dickins 
147566f0dc48SHugh Dickins 	flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
147666f0dc48SHugh Dickins 
14779fbeb5abSMichal Hocko 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
1478493af578SJörn Engel out_fput:
147966f0dc48SHugh Dickins 	if (file)
148066f0dc48SHugh Dickins 		fput(file);
148166f0dc48SHugh Dickins 	return retval;
148266f0dc48SHugh Dickins }
148366f0dc48SHugh Dickins 
1484a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1485a4679373SChristoph Hellwig struct mmap_arg_struct {
1486a4679373SChristoph Hellwig 	unsigned long addr;
1487a4679373SChristoph Hellwig 	unsigned long len;
1488a4679373SChristoph Hellwig 	unsigned long prot;
1489a4679373SChristoph Hellwig 	unsigned long flags;
1490a4679373SChristoph Hellwig 	unsigned long fd;
1491a4679373SChristoph Hellwig 	unsigned long offset;
1492a4679373SChristoph Hellwig };
1493a4679373SChristoph Hellwig 
1494a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1495a4679373SChristoph Hellwig {
1496a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1497a4679373SChristoph Hellwig 
1498a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1499a4679373SChristoph Hellwig 		return -EFAULT;
1500de1741a1SAlexander Kuleshov 	if (offset_in_page(a.offset))
1501a4679373SChristoph Hellwig 		return -EINVAL;
1502a4679373SChristoph Hellwig 
1503a4679373SChristoph Hellwig 	return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1504a4679373SChristoph Hellwig 			      a.offset >> PAGE_SHIFT);
1505a4679373SChristoph Hellwig }
1506a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1507a4679373SChristoph Hellwig 
15084e950f6fSAlexey Dobriyan /*
15094e950f6fSAlexey Dobriyan  * Some shared mappigns will want the pages marked read-only
15104e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
15114e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
15124e950f6fSAlexey Dobriyan  * VM_SHARED bit).
15134e950f6fSAlexey Dobriyan  */
15146d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
15154e950f6fSAlexey Dobriyan {
1516ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags = vma->vm_flags;
15178a04446aSKirill A. Shutemov 	const struct vm_operations_struct *vm_ops = vma->vm_ops;
15184e950f6fSAlexey Dobriyan 
15194e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
15204e950f6fSAlexey Dobriyan 	if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
15214e950f6fSAlexey Dobriyan 		return 0;
15224e950f6fSAlexey Dobriyan 
15234e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
15248a04446aSKirill A. Shutemov 	if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
15254e950f6fSAlexey Dobriyan 		return 1;
15264e950f6fSAlexey Dobriyan 
152764e45507SPeter Feiner 	/* The open routine did something to the protections that pgprot_modify
152864e45507SPeter Feiner 	 * won't preserve? */
15296d2329f8SAndrea Arcangeli 	if (pgprot_val(vm_page_prot) !=
15306d2329f8SAndrea Arcangeli 	    pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
15314e950f6fSAlexey Dobriyan 		return 0;
15324e950f6fSAlexey Dobriyan 
153364e45507SPeter Feiner 	/* Do we need to track softdirty? */
153464e45507SPeter Feiner 	if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY))
153564e45507SPeter Feiner 		return 1;
153664e45507SPeter Feiner 
15374e950f6fSAlexey Dobriyan 	/* Specialty mapping? */
15384b6e1e37SKonstantin Khlebnikov 	if (vm_flags & VM_PFNMAP)
15394e950f6fSAlexey Dobriyan 		return 0;
15404e950f6fSAlexey Dobriyan 
15414e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
15424e950f6fSAlexey Dobriyan 	return vma->vm_file && vma->vm_file->f_mapping &&
15434e950f6fSAlexey Dobriyan 		mapping_cap_account_dirty(vma->vm_file->f_mapping);
15444e950f6fSAlexey Dobriyan }
15454e950f6fSAlexey Dobriyan 
1546fc8744adSLinus Torvalds /*
1547fc8744adSLinus Torvalds  * We account for memory if it's a private writeable mapping,
15485a6fe125SMel Gorman  * not hugepages and VM_NORESERVE wasn't set.
1549fc8744adSLinus Torvalds  */
1550ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1551fc8744adSLinus Torvalds {
15525a6fe125SMel Gorman 	/*
15535a6fe125SMel Gorman 	 * hugetlb has its own accounting separate from the core VM
15545a6fe125SMel Gorman 	 * VM_HUGETLB may not be set yet so we cannot check for that flag.
15555a6fe125SMel Gorman 	 */
15565a6fe125SMel Gorman 	if (file && is_file_hugepages(file))
15575a6fe125SMel Gorman 		return 0;
15585a6fe125SMel Gorman 
1559fc8744adSLinus Torvalds 	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1560fc8744adSLinus Torvalds }
1561fc8744adSLinus Torvalds 
15620165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr,
1563c22c0d63SMichel Lespinasse 		unsigned long len, vm_flags_t vm_flags, unsigned long pgoff)
15640165ab44SMiklos Szeredi {
15650165ab44SMiklos Szeredi 	struct mm_struct *mm = current->mm;
15660165ab44SMiklos Szeredi 	struct vm_area_struct *vma, *prev;
15670165ab44SMiklos Szeredi 	int error;
15680165ab44SMiklos Szeredi 	struct rb_node **rb_link, *rb_parent;
15690165ab44SMiklos Szeredi 	unsigned long charged = 0;
15700165ab44SMiklos Szeredi 
1571e8420a8eSCyril Hrubis 	/* Check against address space limit. */
157284638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
1573e8420a8eSCyril Hrubis 		unsigned long nr_pages;
1574e8420a8eSCyril Hrubis 
1575e8420a8eSCyril Hrubis 		/*
1576e8420a8eSCyril Hrubis 		 * MAP_FIXED may remove pages of mappings that intersects with
1577e8420a8eSCyril Hrubis 		 * requested mapping. Account for the pages it would unmap.
1578e8420a8eSCyril Hrubis 		 */
1579e8420a8eSCyril Hrubis 		nr_pages = count_vma_pages_range(mm, addr, addr + len);
1580e8420a8eSCyril Hrubis 
158184638335SKonstantin Khlebnikov 		if (!may_expand_vm(mm, vm_flags,
158284638335SKonstantin Khlebnikov 					(len >> PAGE_SHIFT) - nr_pages))
1583e8420a8eSCyril Hrubis 			return -ENOMEM;
1584e8420a8eSCyril Hrubis 	}
1585e8420a8eSCyril Hrubis 
15861da177e4SLinus Torvalds 	/* Clear old maps */
15879fcd1457SRasmus Villemoes 	while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
15889fcd1457SRasmus Villemoes 			      &rb_parent)) {
15891da177e4SLinus Torvalds 		if (do_munmap(mm, addr, len))
15901da177e4SLinus Torvalds 			return -ENOMEM;
15911da177e4SLinus Torvalds 	}
15921da177e4SLinus Torvalds 
1593fc8744adSLinus Torvalds 	/*
15941da177e4SLinus Torvalds 	 * Private writable mapping: check memory availability
15951da177e4SLinus Torvalds 	 */
15965a6fe125SMel Gorman 	if (accountable_mapping(file, vm_flags)) {
15971da177e4SLinus Torvalds 		charged = len >> PAGE_SHIFT;
1598191c5424SAl Viro 		if (security_vm_enough_memory_mm(mm, charged))
15991da177e4SLinus Torvalds 			return -ENOMEM;
16001da177e4SLinus Torvalds 		vm_flags |= VM_ACCOUNT;
16011da177e4SLinus Torvalds 	}
16021da177e4SLinus Torvalds 
16031da177e4SLinus Torvalds 	/*
1604de33c8dbSLinus Torvalds 	 * Can we just expand an old mapping?
16051da177e4SLinus Torvalds 	 */
160619a809afSAndrea Arcangeli 	vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
160719a809afSAndrea Arcangeli 			NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX);
1608ba470de4SRik van Riel 	if (vma)
16091da177e4SLinus Torvalds 		goto out;
16101da177e4SLinus Torvalds 
16111da177e4SLinus Torvalds 	/*
16121da177e4SLinus Torvalds 	 * Determine the object being mapped and call the appropriate
16131da177e4SLinus Torvalds 	 * specific mapper. the address has already been validated, but
16141da177e4SLinus Torvalds 	 * not unmapped, but the maps are removed from the list.
16151da177e4SLinus Torvalds 	 */
1616c5e3b83eSPekka Enberg 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
16171da177e4SLinus Torvalds 	if (!vma) {
16181da177e4SLinus Torvalds 		error = -ENOMEM;
16191da177e4SLinus Torvalds 		goto unacct_error;
16201da177e4SLinus Torvalds 	}
16211da177e4SLinus Torvalds 
16221da177e4SLinus Torvalds 	vma->vm_mm = mm;
16231da177e4SLinus Torvalds 	vma->vm_start = addr;
16241da177e4SLinus Torvalds 	vma->vm_end = addr + len;
16251da177e4SLinus Torvalds 	vma->vm_flags = vm_flags;
16263ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
16271da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
16285beb4930SRik van Riel 	INIT_LIST_HEAD(&vma->anon_vma_chain);
16291da177e4SLinus Torvalds 
16301da177e4SLinus Torvalds 	if (file) {
16311da177e4SLinus Torvalds 		if (vm_flags & VM_DENYWRITE) {
16321da177e4SLinus Torvalds 			error = deny_write_access(file);
16331da177e4SLinus Torvalds 			if (error)
16341da177e4SLinus Torvalds 				goto free_vma;
16351da177e4SLinus Torvalds 		}
16364bb5f5d9SDavid Herrmann 		if (vm_flags & VM_SHARED) {
16374bb5f5d9SDavid Herrmann 			error = mapping_map_writable(file->f_mapping);
16384bb5f5d9SDavid Herrmann 			if (error)
16394bb5f5d9SDavid Herrmann 				goto allow_write_and_free_vma;
16404bb5f5d9SDavid Herrmann 		}
16414bb5f5d9SDavid Herrmann 
16424bb5f5d9SDavid Herrmann 		/* ->mmap() can change vma->vm_file, but must guarantee that
16434bb5f5d9SDavid Herrmann 		 * vma_link() below can deny write-access if VM_DENYWRITE is set
16444bb5f5d9SDavid Herrmann 		 * and map writably if VM_SHARED is set. This usually means the
16454bb5f5d9SDavid Herrmann 		 * new file must not have been exposed to user-space, yet.
16464bb5f5d9SDavid Herrmann 		 */
1647cb0942b8SAl Viro 		vma->vm_file = get_file(file);
16481da177e4SLinus Torvalds 		error = file->f_op->mmap(file, vma);
16491da177e4SLinus Torvalds 		if (error)
16501da177e4SLinus Torvalds 			goto unmap_and_free_vma;
16511da177e4SLinus Torvalds 
16521da177e4SLinus Torvalds 		/* Can addr have changed??
16531da177e4SLinus Torvalds 		 *
16541da177e4SLinus Torvalds 		 * Answer: Yes, several device drivers can do it in their
16551da177e4SLinus Torvalds 		 *         f_op->mmap method. -DaveM
16562897b4d2SJoonsoo Kim 		 * Bug: If addr is changed, prev, rb_link, rb_parent should
16572897b4d2SJoonsoo Kim 		 *      be updated for vma_link()
16581da177e4SLinus Torvalds 		 */
16592897b4d2SJoonsoo Kim 		WARN_ON_ONCE(addr != vma->vm_start);
16602897b4d2SJoonsoo Kim 
16611da177e4SLinus Torvalds 		addr = vma->vm_start;
16621da177e4SLinus Torvalds 		vm_flags = vma->vm_flags;
1663f8dbf0a7SHuang Shijie 	} else if (vm_flags & VM_SHARED) {
1664f8dbf0a7SHuang Shijie 		error = shmem_zero_setup(vma);
1665f8dbf0a7SHuang Shijie 		if (error)
1666f8dbf0a7SHuang Shijie 			goto free_vma;
1667f8dbf0a7SHuang Shijie 	}
16681da177e4SLinus Torvalds 
16694d3d5b41SOleg Nesterov 	vma_link(mm, vma, prev, rb_link, rb_parent);
16704d3d5b41SOleg Nesterov 	/* Once vma denies write, undo our temporary denial count */
16714bb5f5d9SDavid Herrmann 	if (file) {
16724bb5f5d9SDavid Herrmann 		if (vm_flags & VM_SHARED)
16734bb5f5d9SDavid Herrmann 			mapping_unmap_writable(file->f_mapping);
1674e8686772SOleg Nesterov 		if (vm_flags & VM_DENYWRITE)
1675e8686772SOleg Nesterov 			allow_write_access(file);
16764bb5f5d9SDavid Herrmann 	}
1677e8686772SOleg Nesterov 	file = vma->vm_file;
16781da177e4SLinus Torvalds out:
1679cdd6c482SIngo Molnar 	perf_event_mmap(vma);
16800a4a9391SPeter Zijlstra 
168184638335SKonstantin Khlebnikov 	vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
16821da177e4SLinus Torvalds 	if (vm_flags & VM_LOCKED) {
1683bebeb3d6SMichel Lespinasse 		if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) ||
1684bebeb3d6SMichel Lespinasse 					vma == get_gate_vma(current->mm)))
168506f9d8c2SKOSAKI Motohiro 			mm->locked_vm += (len >> PAGE_SHIFT);
1686bebeb3d6SMichel Lespinasse 		else
1687de60f5f1SEric B Munson 			vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
1688bebeb3d6SMichel Lespinasse 	}
16892b144498SSrikar Dronamraju 
1690c7a3a88cSOleg Nesterov 	if (file)
1691c7a3a88cSOleg Nesterov 		uprobe_mmap(vma);
16922b144498SSrikar Dronamraju 
1693d9104d1cSCyrill Gorcunov 	/*
1694d9104d1cSCyrill Gorcunov 	 * New (or expanded) vma always get soft dirty status.
1695d9104d1cSCyrill Gorcunov 	 * Otherwise user-space soft-dirty page tracker won't
1696d9104d1cSCyrill Gorcunov 	 * be able to distinguish situation when vma area unmapped,
1697d9104d1cSCyrill Gorcunov 	 * then new mapped in-place (which must be aimed as
1698d9104d1cSCyrill Gorcunov 	 * a completely new data area).
1699d9104d1cSCyrill Gorcunov 	 */
1700d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
1701d9104d1cSCyrill Gorcunov 
170264e45507SPeter Feiner 	vma_set_page_prot(vma);
170364e45507SPeter Feiner 
17041da177e4SLinus Torvalds 	return addr;
17051da177e4SLinus Torvalds 
17061da177e4SLinus Torvalds unmap_and_free_vma:
17071da177e4SLinus Torvalds 	vma->vm_file = NULL;
17081da177e4SLinus Torvalds 	fput(file);
17091da177e4SLinus Torvalds 
17101da177e4SLinus Torvalds 	/* Undo any partial mapping done by a device driver. */
1711e0da382cSHugh Dickins 	unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1712e0da382cSHugh Dickins 	charged = 0;
17134bb5f5d9SDavid Herrmann 	if (vm_flags & VM_SHARED)
17144bb5f5d9SDavid Herrmann 		mapping_unmap_writable(file->f_mapping);
17154bb5f5d9SDavid Herrmann allow_write_and_free_vma:
17164bb5f5d9SDavid Herrmann 	if (vm_flags & VM_DENYWRITE)
17174bb5f5d9SDavid Herrmann 		allow_write_access(file);
17181da177e4SLinus Torvalds free_vma:
17191da177e4SLinus Torvalds 	kmem_cache_free(vm_area_cachep, vma);
17201da177e4SLinus Torvalds unacct_error:
17211da177e4SLinus Torvalds 	if (charged)
17221da177e4SLinus Torvalds 		vm_unacct_memory(charged);
17231da177e4SLinus Torvalds 	return error;
17241da177e4SLinus Torvalds }
17251da177e4SLinus Torvalds 
1726db4fbfb9SMichel Lespinasse unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1727db4fbfb9SMichel Lespinasse {
1728db4fbfb9SMichel Lespinasse 	/*
1729db4fbfb9SMichel Lespinasse 	 * We implement the search by looking for an rbtree node that
1730db4fbfb9SMichel Lespinasse 	 * immediately follows a suitable gap. That is,
1731db4fbfb9SMichel Lespinasse 	 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1732db4fbfb9SMichel Lespinasse 	 * - gap_end   = vma->vm_start        >= info->low_limit  + length;
1733db4fbfb9SMichel Lespinasse 	 * - gap_end - gap_start >= length
1734db4fbfb9SMichel Lespinasse 	 */
1735db4fbfb9SMichel Lespinasse 
1736db4fbfb9SMichel Lespinasse 	struct mm_struct *mm = current->mm;
1737db4fbfb9SMichel Lespinasse 	struct vm_area_struct *vma;
1738db4fbfb9SMichel Lespinasse 	unsigned long length, low_limit, high_limit, gap_start, gap_end;
1739db4fbfb9SMichel Lespinasse 
1740db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1741db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1742db4fbfb9SMichel Lespinasse 	if (length < info->length)
1743db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1744db4fbfb9SMichel Lespinasse 
1745db4fbfb9SMichel Lespinasse 	/* Adjust search limits by the desired length */
1746db4fbfb9SMichel Lespinasse 	if (info->high_limit < length)
1747db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1748db4fbfb9SMichel Lespinasse 	high_limit = info->high_limit - length;
1749db4fbfb9SMichel Lespinasse 
1750db4fbfb9SMichel Lespinasse 	if (info->low_limit > high_limit)
1751db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1752db4fbfb9SMichel Lespinasse 	low_limit = info->low_limit + length;
1753db4fbfb9SMichel Lespinasse 
1754db4fbfb9SMichel Lespinasse 	/* Check if rbtree root looks promising */
1755db4fbfb9SMichel Lespinasse 	if (RB_EMPTY_ROOT(&mm->mm_rb))
1756db4fbfb9SMichel Lespinasse 		goto check_highest;
1757db4fbfb9SMichel Lespinasse 	vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1758db4fbfb9SMichel Lespinasse 	if (vma->rb_subtree_gap < length)
1759db4fbfb9SMichel Lespinasse 		goto check_highest;
1760db4fbfb9SMichel Lespinasse 
1761db4fbfb9SMichel Lespinasse 	while (true) {
1762db4fbfb9SMichel Lespinasse 		/* Visit left subtree if it looks promising */
1763db4fbfb9SMichel Lespinasse 		gap_end = vma->vm_start;
1764db4fbfb9SMichel Lespinasse 		if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1765db4fbfb9SMichel Lespinasse 			struct vm_area_struct *left =
1766db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_left,
1767db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
1768db4fbfb9SMichel Lespinasse 			if (left->rb_subtree_gap >= length) {
1769db4fbfb9SMichel Lespinasse 				vma = left;
1770db4fbfb9SMichel Lespinasse 				continue;
1771db4fbfb9SMichel Lespinasse 			}
1772db4fbfb9SMichel Lespinasse 		}
1773db4fbfb9SMichel Lespinasse 
1774db4fbfb9SMichel Lespinasse 		gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1775db4fbfb9SMichel Lespinasse check_current:
1776db4fbfb9SMichel Lespinasse 		/* Check if current node has a suitable gap */
1777db4fbfb9SMichel Lespinasse 		if (gap_start > high_limit)
1778db4fbfb9SMichel Lespinasse 			return -ENOMEM;
1779db4fbfb9SMichel Lespinasse 		if (gap_end >= low_limit && gap_end - gap_start >= length)
1780db4fbfb9SMichel Lespinasse 			goto found;
1781db4fbfb9SMichel Lespinasse 
1782db4fbfb9SMichel Lespinasse 		/* Visit right subtree if it looks promising */
1783db4fbfb9SMichel Lespinasse 		if (vma->vm_rb.rb_right) {
1784db4fbfb9SMichel Lespinasse 			struct vm_area_struct *right =
1785db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_right,
1786db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
1787db4fbfb9SMichel Lespinasse 			if (right->rb_subtree_gap >= length) {
1788db4fbfb9SMichel Lespinasse 				vma = right;
1789db4fbfb9SMichel Lespinasse 				continue;
1790db4fbfb9SMichel Lespinasse 			}
1791db4fbfb9SMichel Lespinasse 		}
1792db4fbfb9SMichel Lespinasse 
1793db4fbfb9SMichel Lespinasse 		/* Go back up the rbtree to find next candidate node */
1794db4fbfb9SMichel Lespinasse 		while (true) {
1795db4fbfb9SMichel Lespinasse 			struct rb_node *prev = &vma->vm_rb;
1796db4fbfb9SMichel Lespinasse 			if (!rb_parent(prev))
1797db4fbfb9SMichel Lespinasse 				goto check_highest;
1798db4fbfb9SMichel Lespinasse 			vma = rb_entry(rb_parent(prev),
1799db4fbfb9SMichel Lespinasse 				       struct vm_area_struct, vm_rb);
1800db4fbfb9SMichel Lespinasse 			if (prev == vma->vm_rb.rb_left) {
1801db4fbfb9SMichel Lespinasse 				gap_start = vma->vm_prev->vm_end;
1802db4fbfb9SMichel Lespinasse 				gap_end = vma->vm_start;
1803db4fbfb9SMichel Lespinasse 				goto check_current;
1804db4fbfb9SMichel Lespinasse 			}
1805db4fbfb9SMichel Lespinasse 		}
1806db4fbfb9SMichel Lespinasse 	}
1807db4fbfb9SMichel Lespinasse 
1808db4fbfb9SMichel Lespinasse check_highest:
1809db4fbfb9SMichel Lespinasse 	/* Check highest gap, which does not precede any rbtree node */
1810db4fbfb9SMichel Lespinasse 	gap_start = mm->highest_vm_end;
1811db4fbfb9SMichel Lespinasse 	gap_end = ULONG_MAX;  /* Only for VM_BUG_ON below */
1812db4fbfb9SMichel Lespinasse 	if (gap_start > high_limit)
1813db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1814db4fbfb9SMichel Lespinasse 
1815db4fbfb9SMichel Lespinasse found:
1816db4fbfb9SMichel Lespinasse 	/* We found a suitable gap. Clip it with the original low_limit. */
1817db4fbfb9SMichel Lespinasse 	if (gap_start < info->low_limit)
1818db4fbfb9SMichel Lespinasse 		gap_start = info->low_limit;
1819db4fbfb9SMichel Lespinasse 
1820db4fbfb9SMichel Lespinasse 	/* Adjust gap address to the desired alignment */
1821db4fbfb9SMichel Lespinasse 	gap_start += (info->align_offset - gap_start) & info->align_mask;
1822db4fbfb9SMichel Lespinasse 
1823db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_start + info->length > info->high_limit);
1824db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_start + info->length > gap_end);
1825db4fbfb9SMichel Lespinasse 	return gap_start;
1826db4fbfb9SMichel Lespinasse }
1827db4fbfb9SMichel Lespinasse 
1828db4fbfb9SMichel Lespinasse unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1829db4fbfb9SMichel Lespinasse {
1830db4fbfb9SMichel Lespinasse 	struct mm_struct *mm = current->mm;
1831db4fbfb9SMichel Lespinasse 	struct vm_area_struct *vma;
1832db4fbfb9SMichel Lespinasse 	unsigned long length, low_limit, high_limit, gap_start, gap_end;
1833db4fbfb9SMichel Lespinasse 
1834db4fbfb9SMichel Lespinasse 	/* Adjust search length to account for worst case alignment overhead */
1835db4fbfb9SMichel Lespinasse 	length = info->length + info->align_mask;
1836db4fbfb9SMichel Lespinasse 	if (length < info->length)
1837db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1838db4fbfb9SMichel Lespinasse 
1839db4fbfb9SMichel Lespinasse 	/*
1840db4fbfb9SMichel Lespinasse 	 * Adjust search limits by the desired length.
1841db4fbfb9SMichel Lespinasse 	 * See implementation comment at top of unmapped_area().
1842db4fbfb9SMichel Lespinasse 	 */
1843db4fbfb9SMichel Lespinasse 	gap_end = info->high_limit;
1844db4fbfb9SMichel Lespinasse 	if (gap_end < length)
1845db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1846db4fbfb9SMichel Lespinasse 	high_limit = gap_end - length;
1847db4fbfb9SMichel Lespinasse 
1848db4fbfb9SMichel Lespinasse 	if (info->low_limit > high_limit)
1849db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1850db4fbfb9SMichel Lespinasse 	low_limit = info->low_limit + length;
1851db4fbfb9SMichel Lespinasse 
1852db4fbfb9SMichel Lespinasse 	/* Check highest gap, which does not precede any rbtree node */
1853db4fbfb9SMichel Lespinasse 	gap_start = mm->highest_vm_end;
1854db4fbfb9SMichel Lespinasse 	if (gap_start <= high_limit)
1855db4fbfb9SMichel Lespinasse 		goto found_highest;
1856db4fbfb9SMichel Lespinasse 
1857db4fbfb9SMichel Lespinasse 	/* Check if rbtree root looks promising */
1858db4fbfb9SMichel Lespinasse 	if (RB_EMPTY_ROOT(&mm->mm_rb))
1859db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1860db4fbfb9SMichel Lespinasse 	vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1861db4fbfb9SMichel Lespinasse 	if (vma->rb_subtree_gap < length)
1862db4fbfb9SMichel Lespinasse 		return -ENOMEM;
1863db4fbfb9SMichel Lespinasse 
1864db4fbfb9SMichel Lespinasse 	while (true) {
1865db4fbfb9SMichel Lespinasse 		/* Visit right subtree if it looks promising */
1866db4fbfb9SMichel Lespinasse 		gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1867db4fbfb9SMichel Lespinasse 		if (gap_start <= high_limit && vma->vm_rb.rb_right) {
1868db4fbfb9SMichel Lespinasse 			struct vm_area_struct *right =
1869db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_right,
1870db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
1871db4fbfb9SMichel Lespinasse 			if (right->rb_subtree_gap >= length) {
1872db4fbfb9SMichel Lespinasse 				vma = right;
1873db4fbfb9SMichel Lespinasse 				continue;
1874db4fbfb9SMichel Lespinasse 			}
1875db4fbfb9SMichel Lespinasse 		}
1876db4fbfb9SMichel Lespinasse 
1877db4fbfb9SMichel Lespinasse check_current:
1878db4fbfb9SMichel Lespinasse 		/* Check if current node has a suitable gap */
1879db4fbfb9SMichel Lespinasse 		gap_end = vma->vm_start;
1880db4fbfb9SMichel Lespinasse 		if (gap_end < low_limit)
1881db4fbfb9SMichel Lespinasse 			return -ENOMEM;
1882db4fbfb9SMichel Lespinasse 		if (gap_start <= high_limit && gap_end - gap_start >= length)
1883db4fbfb9SMichel Lespinasse 			goto found;
1884db4fbfb9SMichel Lespinasse 
1885db4fbfb9SMichel Lespinasse 		/* Visit left subtree if it looks promising */
1886db4fbfb9SMichel Lespinasse 		if (vma->vm_rb.rb_left) {
1887db4fbfb9SMichel Lespinasse 			struct vm_area_struct *left =
1888db4fbfb9SMichel Lespinasse 				rb_entry(vma->vm_rb.rb_left,
1889db4fbfb9SMichel Lespinasse 					 struct vm_area_struct, vm_rb);
1890db4fbfb9SMichel Lespinasse 			if (left->rb_subtree_gap >= length) {
1891db4fbfb9SMichel Lespinasse 				vma = left;
1892db4fbfb9SMichel Lespinasse 				continue;
1893db4fbfb9SMichel Lespinasse 			}
1894db4fbfb9SMichel Lespinasse 		}
1895db4fbfb9SMichel Lespinasse 
1896db4fbfb9SMichel Lespinasse 		/* Go back up the rbtree to find next candidate node */
1897db4fbfb9SMichel Lespinasse 		while (true) {
1898db4fbfb9SMichel Lespinasse 			struct rb_node *prev = &vma->vm_rb;
1899db4fbfb9SMichel Lespinasse 			if (!rb_parent(prev))
1900db4fbfb9SMichel Lespinasse 				return -ENOMEM;
1901db4fbfb9SMichel Lespinasse 			vma = rb_entry(rb_parent(prev),
1902db4fbfb9SMichel Lespinasse 				       struct vm_area_struct, vm_rb);
1903db4fbfb9SMichel Lespinasse 			if (prev == vma->vm_rb.rb_right) {
1904db4fbfb9SMichel Lespinasse 				gap_start = vma->vm_prev ?
1905db4fbfb9SMichel Lespinasse 					vma->vm_prev->vm_end : 0;
1906db4fbfb9SMichel Lespinasse 				goto check_current;
1907db4fbfb9SMichel Lespinasse 			}
1908db4fbfb9SMichel Lespinasse 		}
1909db4fbfb9SMichel Lespinasse 	}
1910db4fbfb9SMichel Lespinasse 
1911db4fbfb9SMichel Lespinasse found:
1912db4fbfb9SMichel Lespinasse 	/* We found a suitable gap. Clip it with the original high_limit. */
1913db4fbfb9SMichel Lespinasse 	if (gap_end > info->high_limit)
1914db4fbfb9SMichel Lespinasse 		gap_end = info->high_limit;
1915db4fbfb9SMichel Lespinasse 
1916db4fbfb9SMichel Lespinasse found_highest:
1917db4fbfb9SMichel Lespinasse 	/* Compute highest gap address at the desired alignment */
1918db4fbfb9SMichel Lespinasse 	gap_end -= info->length;
1919db4fbfb9SMichel Lespinasse 	gap_end -= (gap_end - info->align_offset) & info->align_mask;
1920db4fbfb9SMichel Lespinasse 
1921db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_end < info->low_limit);
1922db4fbfb9SMichel Lespinasse 	VM_BUG_ON(gap_end < gap_start);
1923db4fbfb9SMichel Lespinasse 	return gap_end;
1924db4fbfb9SMichel Lespinasse }
1925db4fbfb9SMichel Lespinasse 
19261da177e4SLinus Torvalds /* Get an address range which is currently unmapped.
19271da177e4SLinus Torvalds  * For shmat() with addr=0.
19281da177e4SLinus Torvalds  *
19291da177e4SLinus Torvalds  * Ugly calling convention alert:
19301da177e4SLinus Torvalds  * Return value with the low bits set means error value,
19311da177e4SLinus Torvalds  * ie
19321da177e4SLinus Torvalds  *	if (ret & ~PAGE_MASK)
19331da177e4SLinus Torvalds  *		error = ret;
19341da177e4SLinus Torvalds  *
19351da177e4SLinus Torvalds  * This function "knows" that -ENOMEM has the bits set.
19361da177e4SLinus Torvalds  */
19371da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA
19381da177e4SLinus Torvalds unsigned long
19391da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr,
19401da177e4SLinus Torvalds 		unsigned long len, unsigned long pgoff, unsigned long flags)
19411da177e4SLinus Torvalds {
19421da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
19431da177e4SLinus Torvalds 	struct vm_area_struct *vma;
1944db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
19451da177e4SLinus Torvalds 
19462afc745fSAkira Takeuchi 	if (len > TASK_SIZE - mmap_min_addr)
19471da177e4SLinus Torvalds 		return -ENOMEM;
19481da177e4SLinus Torvalds 
194906abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
195006abdfb4SBenjamin Herrenschmidt 		return addr;
195106abdfb4SBenjamin Herrenschmidt 
19521da177e4SLinus Torvalds 	if (addr) {
19531da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
19541da177e4SLinus Torvalds 		vma = find_vma(mm, addr);
19552afc745fSAkira Takeuchi 		if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
19561da177e4SLinus Torvalds 		    (!vma || addr + len <= vma->vm_start))
19571da177e4SLinus Torvalds 			return addr;
19581da177e4SLinus Torvalds 	}
19591da177e4SLinus Torvalds 
1960db4fbfb9SMichel Lespinasse 	info.flags = 0;
1961db4fbfb9SMichel Lespinasse 	info.length = len;
19624e99b021SHeiko Carstens 	info.low_limit = mm->mmap_base;
1963db4fbfb9SMichel Lespinasse 	info.high_limit = TASK_SIZE;
1964db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
1965db4fbfb9SMichel Lespinasse 	return vm_unmapped_area(&info);
19661da177e4SLinus Torvalds }
19671da177e4SLinus Torvalds #endif
19681da177e4SLinus Torvalds 
19691da177e4SLinus Torvalds /*
19701da177e4SLinus Torvalds  * This mmap-allocator allocates new areas top-down from below the
19711da177e4SLinus Torvalds  * stack's low limit (the base):
19721da177e4SLinus Torvalds  */
19731da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
19741da177e4SLinus Torvalds unsigned long
19751da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
19761da177e4SLinus Torvalds 			  const unsigned long len, const unsigned long pgoff,
19771da177e4SLinus Torvalds 			  const unsigned long flags)
19781da177e4SLinus Torvalds {
19791da177e4SLinus Torvalds 	struct vm_area_struct *vma;
19801da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1981db4fbfb9SMichel Lespinasse 	unsigned long addr = addr0;
1982db4fbfb9SMichel Lespinasse 	struct vm_unmapped_area_info info;
19831da177e4SLinus Torvalds 
19841da177e4SLinus Torvalds 	/* requested length too big for entire address space */
19852afc745fSAkira Takeuchi 	if (len > TASK_SIZE - mmap_min_addr)
19861da177e4SLinus Torvalds 		return -ENOMEM;
19871da177e4SLinus Torvalds 
198806abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
198906abdfb4SBenjamin Herrenschmidt 		return addr;
199006abdfb4SBenjamin Herrenschmidt 
19911da177e4SLinus Torvalds 	/* requesting a specific address */
19921da177e4SLinus Torvalds 	if (addr) {
19931da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
19941da177e4SLinus Torvalds 		vma = find_vma(mm, addr);
19952afc745fSAkira Takeuchi 		if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
19961da177e4SLinus Torvalds 				(!vma || addr + len <= vma->vm_start))
19971da177e4SLinus Torvalds 			return addr;
19981da177e4SLinus Torvalds 	}
19991da177e4SLinus Torvalds 
2000db4fbfb9SMichel Lespinasse 	info.flags = VM_UNMAPPED_AREA_TOPDOWN;
2001db4fbfb9SMichel Lespinasse 	info.length = len;
20022afc745fSAkira Takeuchi 	info.low_limit = max(PAGE_SIZE, mmap_min_addr);
2003db4fbfb9SMichel Lespinasse 	info.high_limit = mm->mmap_base;
2004db4fbfb9SMichel Lespinasse 	info.align_mask = 0;
2005db4fbfb9SMichel Lespinasse 	addr = vm_unmapped_area(&info);
2006b716ad95SXiao Guangrong 
20071da177e4SLinus Torvalds 	/*
20081da177e4SLinus Torvalds 	 * A failed mmap() very likely causes application failure,
20091da177e4SLinus Torvalds 	 * so fall back to the bottom-up function here. This scenario
20101da177e4SLinus Torvalds 	 * can happen with large stack limits and large mmap()
20111da177e4SLinus Torvalds 	 * allocations.
20121da177e4SLinus Torvalds 	 */
2013de1741a1SAlexander Kuleshov 	if (offset_in_page(addr)) {
2014db4fbfb9SMichel Lespinasse 		VM_BUG_ON(addr != -ENOMEM);
2015db4fbfb9SMichel Lespinasse 		info.flags = 0;
2016db4fbfb9SMichel Lespinasse 		info.low_limit = TASK_UNMAPPED_BASE;
2017db4fbfb9SMichel Lespinasse 		info.high_limit = TASK_SIZE;
2018db4fbfb9SMichel Lespinasse 		addr = vm_unmapped_area(&info);
2019db4fbfb9SMichel Lespinasse 	}
20201da177e4SLinus Torvalds 
20211da177e4SLinus Torvalds 	return addr;
20221da177e4SLinus Torvalds }
20231da177e4SLinus Torvalds #endif
20241da177e4SLinus Torvalds 
20251da177e4SLinus Torvalds unsigned long
20261da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
20271da177e4SLinus Torvalds 		unsigned long pgoff, unsigned long flags)
20281da177e4SLinus Torvalds {
202906abdfb4SBenjamin Herrenschmidt 	unsigned long (*get_area)(struct file *, unsigned long,
203006abdfb4SBenjamin Herrenschmidt 				  unsigned long, unsigned long, unsigned long);
203107ab67c8SLinus Torvalds 
20329206de95SAl Viro 	unsigned long error = arch_mmap_check(addr, len, flags);
20339206de95SAl Viro 	if (error)
20349206de95SAl Viro 		return error;
20359206de95SAl Viro 
20369206de95SAl Viro 	/* Careful about overflows.. */
20379206de95SAl Viro 	if (len > TASK_SIZE)
20389206de95SAl Viro 		return -ENOMEM;
20399206de95SAl Viro 
204007ab67c8SLinus Torvalds 	get_area = current->mm->get_unmapped_area;
2041c01d5b30SHugh Dickins 	if (file) {
2042c01d5b30SHugh Dickins 		if (file->f_op->get_unmapped_area)
204307ab67c8SLinus Torvalds 			get_area = file->f_op->get_unmapped_area;
2044c01d5b30SHugh Dickins 	} else if (flags & MAP_SHARED) {
2045c01d5b30SHugh Dickins 		/*
2046c01d5b30SHugh Dickins 		 * mmap_region() will call shmem_zero_setup() to create a file,
2047c01d5b30SHugh Dickins 		 * so use shmem's get_unmapped_area in case it can be huge.
2048c01d5b30SHugh Dickins 		 * do_mmap_pgoff() will clear pgoff, so match alignment.
2049c01d5b30SHugh Dickins 		 */
2050c01d5b30SHugh Dickins 		pgoff = 0;
2051c01d5b30SHugh Dickins 		get_area = shmem_get_unmapped_area;
2052c01d5b30SHugh Dickins 	}
2053c01d5b30SHugh Dickins 
205407ab67c8SLinus Torvalds 	addr = get_area(file, addr, len, pgoff, flags);
205507ab67c8SLinus Torvalds 	if (IS_ERR_VALUE(addr))
205607ab67c8SLinus Torvalds 		return addr;
205707ab67c8SLinus Torvalds 
20581da177e4SLinus Torvalds 	if (addr > TASK_SIZE - len)
20591da177e4SLinus Torvalds 		return -ENOMEM;
2060de1741a1SAlexander Kuleshov 	if (offset_in_page(addr))
20611da177e4SLinus Torvalds 		return -EINVAL;
206206abdfb4SBenjamin Herrenschmidt 
20639ac4ed4bSAl Viro 	error = security_mmap_addr(addr);
20649ac4ed4bSAl Viro 	return error ? error : addr;
20651da177e4SLinus Torvalds }
20661da177e4SLinus Torvalds 
20671da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area);
20681da177e4SLinus Torvalds 
20691da177e4SLinus Torvalds /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
20701da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
20711da177e4SLinus Torvalds {
2072615d6e87SDavidlohr Bueso 	struct rb_node *rb_node;
2073615d6e87SDavidlohr Bueso 	struct vm_area_struct *vma;
20741da177e4SLinus Torvalds 
20751da177e4SLinus Torvalds 	/* Check the cache first. */
2076615d6e87SDavidlohr Bueso 	vma = vmacache_find(mm, addr);
2077615d6e87SDavidlohr Bueso 	if (likely(vma))
2078615d6e87SDavidlohr Bueso 		return vma;
20791da177e4SLinus Torvalds 
20801da177e4SLinus Torvalds 	rb_node = mm->mm_rb.rb_node;
20811da177e4SLinus Torvalds 
20821da177e4SLinus Torvalds 	while (rb_node) {
2083615d6e87SDavidlohr Bueso 		struct vm_area_struct *tmp;
20841da177e4SLinus Torvalds 
2085615d6e87SDavidlohr Bueso 		tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
20861da177e4SLinus Torvalds 
2087615d6e87SDavidlohr Bueso 		if (tmp->vm_end > addr) {
2088615d6e87SDavidlohr Bueso 			vma = tmp;
2089615d6e87SDavidlohr Bueso 			if (tmp->vm_start <= addr)
20901da177e4SLinus Torvalds 				break;
20911da177e4SLinus Torvalds 			rb_node = rb_node->rb_left;
20921da177e4SLinus Torvalds 		} else
20931da177e4SLinus Torvalds 			rb_node = rb_node->rb_right;
20941da177e4SLinus Torvalds 	}
2095615d6e87SDavidlohr Bueso 
20961da177e4SLinus Torvalds 	if (vma)
2097615d6e87SDavidlohr Bueso 		vmacache_update(addr, vma);
20981da177e4SLinus Torvalds 	return vma;
20991da177e4SLinus Torvalds }
21001da177e4SLinus Torvalds 
21011da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma);
21021da177e4SLinus Torvalds 
21036bd4837dSKOSAKI Motohiro /*
21046bd4837dSKOSAKI Motohiro  * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
21056bd4837dSKOSAKI Motohiro  */
21061da177e4SLinus Torvalds struct vm_area_struct *
21071da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr,
21081da177e4SLinus Torvalds 			struct vm_area_struct **pprev)
21091da177e4SLinus Torvalds {
21106bd4837dSKOSAKI Motohiro 	struct vm_area_struct *vma;
21111da177e4SLinus Torvalds 
21126bd4837dSKOSAKI Motohiro 	vma = find_vma(mm, addr);
211383cd904dSMikulas Patocka 	if (vma) {
211483cd904dSMikulas Patocka 		*pprev = vma->vm_prev;
211583cd904dSMikulas Patocka 	} else {
211683cd904dSMikulas Patocka 		struct rb_node *rb_node = mm->mm_rb.rb_node;
211783cd904dSMikulas Patocka 		*pprev = NULL;
211883cd904dSMikulas Patocka 		while (rb_node) {
211983cd904dSMikulas Patocka 			*pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
212083cd904dSMikulas Patocka 			rb_node = rb_node->rb_right;
212183cd904dSMikulas Patocka 		}
212283cd904dSMikulas Patocka 	}
21236bd4837dSKOSAKI Motohiro 	return vma;
21241da177e4SLinus Torvalds }
21251da177e4SLinus Torvalds 
21261da177e4SLinus Torvalds /*
21271da177e4SLinus Torvalds  * Verify that the stack growth is acceptable and
21281da177e4SLinus Torvalds  * update accounting. This is shared with both the
21291da177e4SLinus Torvalds  * grow-up and grow-down cases.
21301da177e4SLinus Torvalds  */
21311da177e4SLinus Torvalds static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
21321da177e4SLinus Torvalds {
21331da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
21341da177e4SLinus Torvalds 	struct rlimit *rlim = current->signal->rlim;
2135690eac53SLinus Torvalds 	unsigned long new_start, actual_size;
21361da177e4SLinus Torvalds 
21371da177e4SLinus Torvalds 	/* address space limit tests */
213884638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, vma->vm_flags, grow))
21391da177e4SLinus Torvalds 		return -ENOMEM;
21401da177e4SLinus Torvalds 
21411da177e4SLinus Torvalds 	/* Stack limit test */
2142690eac53SLinus Torvalds 	actual_size = size;
2143690eac53SLinus Torvalds 	if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN)))
2144690eac53SLinus Torvalds 		actual_size -= PAGE_SIZE;
21454db0c3c2SJason Low 	if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur))
21461da177e4SLinus Torvalds 		return -ENOMEM;
21471da177e4SLinus Torvalds 
21481da177e4SLinus Torvalds 	/* mlock limit tests */
21491da177e4SLinus Torvalds 	if (vma->vm_flags & VM_LOCKED) {
21501da177e4SLinus Torvalds 		unsigned long locked;
21511da177e4SLinus Torvalds 		unsigned long limit;
21521da177e4SLinus Torvalds 		locked = mm->locked_vm + grow;
21534db0c3c2SJason Low 		limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
215459e99e5bSJiri Slaby 		limit >>= PAGE_SHIFT;
21551da177e4SLinus Torvalds 		if (locked > limit && !capable(CAP_IPC_LOCK))
21561da177e4SLinus Torvalds 			return -ENOMEM;
21571da177e4SLinus Torvalds 	}
21581da177e4SLinus Torvalds 
21590d59a01bSAdam Litke 	/* Check to ensure the stack will not grow into a hugetlb-only region */
21600d59a01bSAdam Litke 	new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
21610d59a01bSAdam Litke 			vma->vm_end - size;
21620d59a01bSAdam Litke 	if (is_hugepage_only_range(vma->vm_mm, new_start, size))
21630d59a01bSAdam Litke 		return -EFAULT;
21640d59a01bSAdam Litke 
21651da177e4SLinus Torvalds 	/*
21661da177e4SLinus Torvalds 	 * Overcommit..  This must be the final test, as it will
21671da177e4SLinus Torvalds 	 * update security statistics.
21681da177e4SLinus Torvalds 	 */
216905fa199dSHugh Dickins 	if (security_vm_enough_memory_mm(mm, grow))
21701da177e4SLinus Torvalds 		return -ENOMEM;
21711da177e4SLinus Torvalds 
21721da177e4SLinus Torvalds 	return 0;
21731da177e4SLinus Torvalds }
21741da177e4SLinus Torvalds 
217546dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
21761da177e4SLinus Torvalds /*
217746dea3d0SHugh Dickins  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
217846dea3d0SHugh Dickins  * vma is the last one with address > vma->vm_end.  Have to extend vma.
21791da177e4SLinus Torvalds  */
218046dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address)
21811da177e4SLinus Torvalds {
218209357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
218312352d3cSKonstantin Khlebnikov 	int error = 0;
21841da177e4SLinus Torvalds 
21851da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSUP))
21861da177e4SLinus Torvalds 		return -EFAULT;
21871da177e4SLinus Torvalds 
218812352d3cSKonstantin Khlebnikov 	/* Guard against wrapping around to address 0. */
218912352d3cSKonstantin Khlebnikov 	if (address < PAGE_ALIGN(address+4))
219012352d3cSKonstantin Khlebnikov 		address = PAGE_ALIGN(address+4);
219112352d3cSKonstantin Khlebnikov 	else
219212352d3cSKonstantin Khlebnikov 		return -ENOMEM;
219312352d3cSKonstantin Khlebnikov 
219412352d3cSKonstantin Khlebnikov 	/* We must make sure the anon_vma is allocated. */
21951da177e4SLinus Torvalds 	if (unlikely(anon_vma_prepare(vma)))
21961da177e4SLinus Torvalds 		return -ENOMEM;
21971da177e4SLinus Torvalds 
21981da177e4SLinus Torvalds 	/*
21991da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
22001da177e4SLinus Torvalds 	 * is required to hold the mmap_sem in read mode.  We need the
22011da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
22021da177e4SLinus Torvalds 	 */
220312352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
22041da177e4SLinus Torvalds 
22051da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
22061da177e4SLinus Torvalds 	if (address > vma->vm_end) {
22071da177e4SLinus Torvalds 		unsigned long size, grow;
22081da177e4SLinus Torvalds 
22091da177e4SLinus Torvalds 		size = address - vma->vm_start;
22101da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
22111da177e4SLinus Torvalds 
221242c36f63SHugh Dickins 		error = -ENOMEM;
221342c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
22141da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
22153af9e859SEric B Munson 			if (!error) {
22164128997bSMichel Lespinasse 				/*
22174128997bSMichel Lespinasse 				 * vma_gap_update() doesn't support concurrent
22184128997bSMichel Lespinasse 				 * updates, but we only hold a shared mmap_sem
22194128997bSMichel Lespinasse 				 * lock here, so we need to protect against
22204128997bSMichel Lespinasse 				 * concurrent vma expansions.
222112352d3cSKonstantin Khlebnikov 				 * anon_vma_lock_write() doesn't help here, as
22224128997bSMichel Lespinasse 				 * we don't guarantee that all growable vmas
22234128997bSMichel Lespinasse 				 * in a mm share the same root anon vma.
22244128997bSMichel Lespinasse 				 * So, we reuse mm->page_table_lock to guard
22254128997bSMichel Lespinasse 				 * against concurrent vma expansions.
22264128997bSMichel Lespinasse 				 */
222709357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
222887e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
222909357814SOleg Nesterov 					mm->locked_vm += grow;
223084638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2231bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
22321da177e4SLinus Torvalds 				vma->vm_end = address;
2233bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2234d3737187SMichel Lespinasse 				if (vma->vm_next)
2235d3737187SMichel Lespinasse 					vma_gap_update(vma->vm_next);
2236d3737187SMichel Lespinasse 				else
223709357814SOleg Nesterov 					mm->highest_vm_end = address;
223809357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
22394128997bSMichel Lespinasse 
22403af9e859SEric B Munson 				perf_event_mmap(vma);
22413af9e859SEric B Munson 			}
22421da177e4SLinus Torvalds 		}
224342c36f63SHugh Dickins 	}
224412352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
22456d50e60cSDavid Rientjes 	khugepaged_enter_vma_merge(vma, vma->vm_flags);
224609357814SOleg Nesterov 	validate_mm(mm);
22471da177e4SLinus Torvalds 	return error;
22481da177e4SLinus Torvalds }
224946dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
225046dea3d0SHugh Dickins 
22511da177e4SLinus Torvalds /*
22521da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
22531da177e4SLinus Torvalds  */
2254d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma,
2255b6a2fea3SOllie Wild 				   unsigned long address)
22561da177e4SLinus Torvalds {
225709357814SOleg Nesterov 	struct mm_struct *mm = vma->vm_mm;
22581da177e4SLinus Torvalds 	int error;
22591da177e4SLinus Torvalds 
22608869477aSEric Paris 	address &= PAGE_MASK;
2261e5467859SAl Viro 	error = security_mmap_addr(address);
22628869477aSEric Paris 	if (error)
22638869477aSEric Paris 		return error;
22648869477aSEric Paris 
226512352d3cSKonstantin Khlebnikov 	/* We must make sure the anon_vma is allocated. */
226612352d3cSKonstantin Khlebnikov 	if (unlikely(anon_vma_prepare(vma)))
226712352d3cSKonstantin Khlebnikov 		return -ENOMEM;
22681da177e4SLinus Torvalds 
22691da177e4SLinus Torvalds 	/*
22701da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
22711da177e4SLinus Torvalds 	 * is required to hold the mmap_sem in read mode.  We need the
22721da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
22731da177e4SLinus Torvalds 	 */
227412352d3cSKonstantin Khlebnikov 	anon_vma_lock_write(vma->anon_vma);
22751da177e4SLinus Torvalds 
22761da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
22771da177e4SLinus Torvalds 	if (address < vma->vm_start) {
22781da177e4SLinus Torvalds 		unsigned long size, grow;
22791da177e4SLinus Torvalds 
22801da177e4SLinus Torvalds 		size = vma->vm_end - address;
22811da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
22821da177e4SLinus Torvalds 
2283a626ca6aSLinus Torvalds 		error = -ENOMEM;
2284a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
22851da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
22861da177e4SLinus Torvalds 			if (!error) {
22874128997bSMichel Lespinasse 				/*
22884128997bSMichel Lespinasse 				 * vma_gap_update() doesn't support concurrent
22894128997bSMichel Lespinasse 				 * updates, but we only hold a shared mmap_sem
22904128997bSMichel Lespinasse 				 * lock here, so we need to protect against
22914128997bSMichel Lespinasse 				 * concurrent vma expansions.
229212352d3cSKonstantin Khlebnikov 				 * anon_vma_lock_write() doesn't help here, as
22934128997bSMichel Lespinasse 				 * we don't guarantee that all growable vmas
22944128997bSMichel Lespinasse 				 * in a mm share the same root anon vma.
22954128997bSMichel Lespinasse 				 * So, we reuse mm->page_table_lock to guard
22964128997bSMichel Lespinasse 				 * against concurrent vma expansions.
22974128997bSMichel Lespinasse 				 */
229809357814SOleg Nesterov 				spin_lock(&mm->page_table_lock);
229987e8827bSOleg Nesterov 				if (vma->vm_flags & VM_LOCKED)
230009357814SOleg Nesterov 					mm->locked_vm += grow;
230184638335SKonstantin Khlebnikov 				vm_stat_account(mm, vma->vm_flags, grow);
2302bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_pre_update_vma(vma);
23031da177e4SLinus Torvalds 				vma->vm_start = address;
23041da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
2305bf181b9fSMichel Lespinasse 				anon_vma_interval_tree_post_update_vma(vma);
2306d3737187SMichel Lespinasse 				vma_gap_update(vma);
230709357814SOleg Nesterov 				spin_unlock(&mm->page_table_lock);
23084128997bSMichel Lespinasse 
23093af9e859SEric B Munson 				perf_event_mmap(vma);
23101da177e4SLinus Torvalds 			}
23111da177e4SLinus Torvalds 		}
2312a626ca6aSLinus Torvalds 	}
231312352d3cSKonstantin Khlebnikov 	anon_vma_unlock_write(vma->anon_vma);
23146d50e60cSDavid Rientjes 	khugepaged_enter_vma_merge(vma, vma->vm_flags);
231509357814SOleg Nesterov 	validate_mm(mm);
23161da177e4SLinus Torvalds 	return error;
23171da177e4SLinus Torvalds }
23181da177e4SLinus Torvalds 
231909884964SLinus Torvalds /*
232009884964SLinus Torvalds  * Note how expand_stack() refuses to expand the stack all the way to
232109884964SLinus Torvalds  * abut the next virtual mapping, *unless* that mapping itself is also
232209884964SLinus Torvalds  * a stack mapping. We want to leave room for a guard page, after all
232309884964SLinus Torvalds  * (the guard page itself is not added here, that is done by the
232409884964SLinus Torvalds  * actual page faulting logic)
232509884964SLinus Torvalds  *
232609884964SLinus Torvalds  * This matches the behavior of the guard page logic (see mm/memory.c:
232709884964SLinus Torvalds  * check_stack_guard_page()), which only allows the guard page to be
232809884964SLinus Torvalds  * removed under these circumstances.
232909884964SLinus Torvalds  */
2330b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
2331b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2332b6a2fea3SOllie Wild {
233309884964SLinus Torvalds 	struct vm_area_struct *next;
233409884964SLinus Torvalds 
233509884964SLinus Torvalds 	address &= PAGE_MASK;
233609884964SLinus Torvalds 	next = vma->vm_next;
233709884964SLinus Torvalds 	if (next && next->vm_start == address + PAGE_SIZE) {
233809884964SLinus Torvalds 		if (!(next->vm_flags & VM_GROWSUP))
233909884964SLinus Torvalds 			return -ENOMEM;
234009884964SLinus Torvalds 	}
2341b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
2342b6a2fea3SOllie Wild }
2343b6a2fea3SOllie Wild 
2344b6a2fea3SOllie Wild struct vm_area_struct *
2345b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr)
2346b6a2fea3SOllie Wild {
2347b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
2348b6a2fea3SOllie Wild 
2349b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
2350b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
2351b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
2352b6a2fea3SOllie Wild 		return vma;
23531c127185SDenys Vlasenko 	if (!prev || expand_stack(prev, addr))
2354b6a2fea3SOllie Wild 		return NULL;
2355cea10a19SMichel Lespinasse 	if (prev->vm_flags & VM_LOCKED)
2356fc05f566SKirill A. Shutemov 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
2357b6a2fea3SOllie Wild 	return prev;
2358b6a2fea3SOllie Wild }
2359b6a2fea3SOllie Wild #else
2360b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
2361b6a2fea3SOllie Wild {
236209884964SLinus Torvalds 	struct vm_area_struct *prev;
236309884964SLinus Torvalds 
236409884964SLinus Torvalds 	address &= PAGE_MASK;
236509884964SLinus Torvalds 	prev = vma->vm_prev;
236609884964SLinus Torvalds 	if (prev && prev->vm_end == address) {
236709884964SLinus Torvalds 		if (!(prev->vm_flags & VM_GROWSDOWN))
236809884964SLinus Torvalds 			return -ENOMEM;
236909884964SLinus Torvalds 	}
2370b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
2371b6a2fea3SOllie Wild }
2372b6a2fea3SOllie Wild 
23731da177e4SLinus Torvalds struct vm_area_struct *
23741da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr)
23751da177e4SLinus Torvalds {
23761da177e4SLinus Torvalds 	struct vm_area_struct *vma;
23771da177e4SLinus Torvalds 	unsigned long start;
23781da177e4SLinus Torvalds 
23791da177e4SLinus Torvalds 	addr &= PAGE_MASK;
23801da177e4SLinus Torvalds 	vma = find_vma(mm, addr);
23811da177e4SLinus Torvalds 	if (!vma)
23821da177e4SLinus Torvalds 		return NULL;
23831da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
23841da177e4SLinus Torvalds 		return vma;
23851da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
23861da177e4SLinus Torvalds 		return NULL;
23871da177e4SLinus Torvalds 	start = vma->vm_start;
23881da177e4SLinus Torvalds 	if (expand_stack(vma, addr))
23891da177e4SLinus Torvalds 		return NULL;
2390cea10a19SMichel Lespinasse 	if (vma->vm_flags & VM_LOCKED)
2391fc05f566SKirill A. Shutemov 		populate_vma_page_range(vma, addr, start, NULL);
23921da177e4SLinus Torvalds 	return vma;
23931da177e4SLinus Torvalds }
23941da177e4SLinus Torvalds #endif
23951da177e4SLinus Torvalds 
2396e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma);
2397e1d6d01aSJesse Barnes 
23982c0b3814SHugh Dickins /*
23992c0b3814SHugh Dickins  * Ok - we have the memory areas we should free on the vma list,
24002c0b3814SHugh Dickins  * so release them, and do the vma updates.
24011da177e4SLinus Torvalds  *
24022c0b3814SHugh Dickins  * Called with the mm semaphore held.
24031da177e4SLinus Torvalds  */
24042c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
24051da177e4SLinus Torvalds {
24064f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
24074f74d2c8SLinus Torvalds 
2408365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
2409365e9c87SHugh Dickins 	update_hiwater_vm(mm);
24102c0b3814SHugh Dickins 	do {
2411ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
24121da177e4SLinus Torvalds 
24134f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
24144f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
241584638335SKonstantin Khlebnikov 		vm_stat_account(mm, vma->vm_flags, -nrpages);
2416a8fb5618SHugh Dickins 		vma = remove_vma(vma);
2417146425a3SHugh Dickins 	} while (vma);
24184f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
24191da177e4SLinus Torvalds 	validate_mm(mm);
24201da177e4SLinus Torvalds }
24211da177e4SLinus Torvalds 
24221da177e4SLinus Torvalds /*
24231da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
24241da177e4SLinus Torvalds  *
2425f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
24261da177e4SLinus Torvalds  */
24271da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm,
2428e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
2429e0da382cSHugh Dickins 		unsigned long start, unsigned long end)
24301da177e4SLinus Torvalds {
2431e0da382cSHugh Dickins 	struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap;
2432d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
24331da177e4SLinus Torvalds 
24341da177e4SLinus Torvalds 	lru_add_drain();
24352b047252SLinus Torvalds 	tlb_gather_mmu(&tlb, mm, start, end);
2436365e9c87SHugh Dickins 	update_hiwater_rss(mm);
24374f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, start, end);
2438d16dfc55SPeter Zijlstra 	free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
24396ee8630eSHugh Dickins 				 next ? next->vm_start : USER_PGTABLES_CEILING);
2440d16dfc55SPeter Zijlstra 	tlb_finish_mmu(&tlb, start, end);
24411da177e4SLinus Torvalds }
24421da177e4SLinus Torvalds 
24431da177e4SLinus Torvalds /*
24441da177e4SLinus Torvalds  * Create a list of vma's touched by the unmap, removing them from the mm's
24451da177e4SLinus Torvalds  * vma list as we go..
24461da177e4SLinus Torvalds  */
24471da177e4SLinus Torvalds static void
24481da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
24491da177e4SLinus Torvalds 	struct vm_area_struct *prev, unsigned long end)
24501da177e4SLinus Torvalds {
24511da177e4SLinus Torvalds 	struct vm_area_struct **insertion_point;
24521da177e4SLinus Torvalds 	struct vm_area_struct *tail_vma = NULL;
24531da177e4SLinus Torvalds 
24541da177e4SLinus Torvalds 	insertion_point = (prev ? &prev->vm_next : &mm->mmap);
2455297c5eeeSLinus Torvalds 	vma->vm_prev = NULL;
24561da177e4SLinus Torvalds 	do {
2457d3737187SMichel Lespinasse 		vma_rb_erase(vma, &mm->mm_rb);
24581da177e4SLinus Torvalds 		mm->map_count--;
24591da177e4SLinus Torvalds 		tail_vma = vma;
24601da177e4SLinus Torvalds 		vma = vma->vm_next;
24611da177e4SLinus Torvalds 	} while (vma && vma->vm_start < end);
24621da177e4SLinus Torvalds 	*insertion_point = vma;
2463d3737187SMichel Lespinasse 	if (vma) {
2464297c5eeeSLinus Torvalds 		vma->vm_prev = prev;
2465d3737187SMichel Lespinasse 		vma_gap_update(vma);
2466d3737187SMichel Lespinasse 	} else
2467d3737187SMichel Lespinasse 		mm->highest_vm_end = prev ? prev->vm_end : 0;
24681da177e4SLinus Torvalds 	tail_vma->vm_next = NULL;
2469615d6e87SDavidlohr Bueso 
2470615d6e87SDavidlohr Bueso 	/* Kill the cache */
2471615d6e87SDavidlohr Bueso 	vmacache_invalidate(mm);
24721da177e4SLinus Torvalds }
24731da177e4SLinus Torvalds 
24741da177e4SLinus Torvalds /*
2475659ace58SKOSAKI Motohiro  * __split_vma() bypasses sysctl_max_map_count checking.  We use this on the
2476659ace58SKOSAKI Motohiro  * munmap path where it doesn't make sense to fail.
24771da177e4SLinus Torvalds  */
2478659ace58SKOSAKI Motohiro static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
24791da177e4SLinus Torvalds 	      unsigned long addr, int new_below)
24801da177e4SLinus Torvalds {
24811da177e4SLinus Torvalds 	struct vm_area_struct *new;
2482e3975891SChen Gang 	int err;
24831da177e4SLinus Torvalds 
2484a5516438SAndi Kleen 	if (is_vm_hugetlb_page(vma) && (addr &
2485a5516438SAndi Kleen 					~(huge_page_mask(hstate_vma(vma)))))
24861da177e4SLinus Torvalds 		return -EINVAL;
24871da177e4SLinus Torvalds 
2488e94b1766SChristoph Lameter 	new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
24891da177e4SLinus Torvalds 	if (!new)
2490e3975891SChen Gang 		return -ENOMEM;
24911da177e4SLinus Torvalds 
24921da177e4SLinus Torvalds 	/* most fields are the same, copy all, and then fixup */
24931da177e4SLinus Torvalds 	*new = *vma;
24941da177e4SLinus Torvalds 
24955beb4930SRik van Riel 	INIT_LIST_HEAD(&new->anon_vma_chain);
24965beb4930SRik van Riel 
24971da177e4SLinus Torvalds 	if (new_below)
24981da177e4SLinus Torvalds 		new->vm_end = addr;
24991da177e4SLinus Torvalds 	else {
25001da177e4SLinus Torvalds 		new->vm_start = addr;
25011da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
25021da177e4SLinus Torvalds 	}
25031da177e4SLinus Torvalds 
2504ef0855d3SOleg Nesterov 	err = vma_dup_policy(vma, new);
2505ef0855d3SOleg Nesterov 	if (err)
25065beb4930SRik van Riel 		goto out_free_vma;
25071da177e4SLinus Torvalds 
2508c4ea95d7SDaniel Forrest 	err = anon_vma_clone(new, vma);
2509c4ea95d7SDaniel Forrest 	if (err)
25105beb4930SRik van Riel 		goto out_free_mpol;
25115beb4930SRik van Riel 
2512e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
25131da177e4SLinus Torvalds 		get_file(new->vm_file);
25141da177e4SLinus Torvalds 
25151da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
25161da177e4SLinus Torvalds 		new->vm_ops->open(new);
25171da177e4SLinus Torvalds 
25181da177e4SLinus Torvalds 	if (new_below)
25195beb4930SRik van Riel 		err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
25201da177e4SLinus Torvalds 			((addr - new->vm_start) >> PAGE_SHIFT), new);
25211da177e4SLinus Torvalds 	else
25225beb4930SRik van Riel 		err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
25231da177e4SLinus Torvalds 
25245beb4930SRik van Riel 	/* Success. */
25255beb4930SRik van Riel 	if (!err)
25261da177e4SLinus Torvalds 		return 0;
25275beb4930SRik van Riel 
25285beb4930SRik van Riel 	/* Clean everything up if vma_adjust failed. */
252958927533SRik van Riel 	if (new->vm_ops && new->vm_ops->close)
25305beb4930SRik van Riel 		new->vm_ops->close(new);
2531e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
25325beb4930SRik van Riel 		fput(new->vm_file);
25332aeadc30SAndrea Arcangeli 	unlink_anon_vmas(new);
25345beb4930SRik van Riel  out_free_mpol:
2535ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new));
25365beb4930SRik van Riel  out_free_vma:
25375beb4930SRik van Riel 	kmem_cache_free(vm_area_cachep, new);
25385beb4930SRik van Riel 	return err;
25391da177e4SLinus Torvalds }
25401da177e4SLinus Torvalds 
2541659ace58SKOSAKI Motohiro /*
2542659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2543659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2544659ace58SKOSAKI Motohiro  */
2545659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2546659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2547659ace58SKOSAKI Motohiro {
2548659ace58SKOSAKI Motohiro 	if (mm->map_count >= sysctl_max_map_count)
2549659ace58SKOSAKI Motohiro 		return -ENOMEM;
2550659ace58SKOSAKI Motohiro 
2551659ace58SKOSAKI Motohiro 	return __split_vma(mm, vma, addr, new_below);
2552659ace58SKOSAKI Motohiro }
2553659ace58SKOSAKI Motohiro 
25541da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds
25551da177e4SLinus Torvalds  * what needs doing, and the areas themselves, which do the
25561da177e4SLinus Torvalds  * work.  This now handles partial unmappings.
25571da177e4SLinus Torvalds  * Jeremy Fitzhardinge <jeremy@goop.org>
25581da177e4SLinus Torvalds  */
25591da177e4SLinus Torvalds int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
25601da177e4SLinus Torvalds {
25611da177e4SLinus Torvalds 	unsigned long end;
2562146425a3SHugh Dickins 	struct vm_area_struct *vma, *prev, *last;
25631da177e4SLinus Torvalds 
2564de1741a1SAlexander Kuleshov 	if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
25651da177e4SLinus Torvalds 		return -EINVAL;
25661da177e4SLinus Torvalds 
2567cc71aba3Svishnu.ps 	len = PAGE_ALIGN(len);
2568cc71aba3Svishnu.ps 	if (len == 0)
25691da177e4SLinus Torvalds 		return -EINVAL;
25701da177e4SLinus Torvalds 
25711da177e4SLinus Torvalds 	/* Find the first overlapping VMA */
25729be34c9dSLinus Torvalds 	vma = find_vma(mm, start);
2573146425a3SHugh Dickins 	if (!vma)
25741da177e4SLinus Torvalds 		return 0;
25759be34c9dSLinus Torvalds 	prev = vma->vm_prev;
2576146425a3SHugh Dickins 	/* we have  start < vma->vm_end  */
25771da177e4SLinus Torvalds 
25781da177e4SLinus Torvalds 	/* if it doesn't overlap, we have nothing.. */
25791da177e4SLinus Torvalds 	end = start + len;
2580146425a3SHugh Dickins 	if (vma->vm_start >= end)
25811da177e4SLinus Torvalds 		return 0;
25821da177e4SLinus Torvalds 
25831da177e4SLinus Torvalds 	/*
25841da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
25851da177e4SLinus Torvalds 	 *
25861da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
25871da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
25881da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
25891da177e4SLinus Torvalds 	 */
2590146425a3SHugh Dickins 	if (start > vma->vm_start) {
2591659ace58SKOSAKI Motohiro 		int error;
2592659ace58SKOSAKI Motohiro 
2593659ace58SKOSAKI Motohiro 		/*
2594659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
2595659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
2596659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
2597659ace58SKOSAKI Motohiro 		 */
2598659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2599659ace58SKOSAKI Motohiro 			return -ENOMEM;
2600659ace58SKOSAKI Motohiro 
2601659ace58SKOSAKI Motohiro 		error = __split_vma(mm, vma, start, 0);
26021da177e4SLinus Torvalds 		if (error)
26031da177e4SLinus Torvalds 			return error;
2604146425a3SHugh Dickins 		prev = vma;
26051da177e4SLinus Torvalds 	}
26061da177e4SLinus Torvalds 
26071da177e4SLinus Torvalds 	/* Does it split the last one? */
26081da177e4SLinus Torvalds 	last = find_vma(mm, end);
26091da177e4SLinus Torvalds 	if (last && end > last->vm_start) {
2610659ace58SKOSAKI Motohiro 		int error = __split_vma(mm, last, end, 1);
26111da177e4SLinus Torvalds 		if (error)
26121da177e4SLinus Torvalds 			return error;
26131da177e4SLinus Torvalds 	}
2614146425a3SHugh Dickins 	vma = prev ? prev->vm_next : mm->mmap;
26151da177e4SLinus Torvalds 
26161da177e4SLinus Torvalds 	/*
2617ba470de4SRik van Riel 	 * unlock any mlock()ed ranges before detaching vmas
2618ba470de4SRik van Riel 	 */
2619ba470de4SRik van Riel 	if (mm->locked_vm) {
2620ba470de4SRik van Riel 		struct vm_area_struct *tmp = vma;
2621ba470de4SRik van Riel 		while (tmp && tmp->vm_start < end) {
2622ba470de4SRik van Riel 			if (tmp->vm_flags & VM_LOCKED) {
2623ba470de4SRik van Riel 				mm->locked_vm -= vma_pages(tmp);
2624ba470de4SRik van Riel 				munlock_vma_pages_all(tmp);
2625ba470de4SRik van Riel 			}
2626ba470de4SRik van Riel 			tmp = tmp->vm_next;
2627ba470de4SRik van Riel 		}
2628ba470de4SRik van Riel 	}
2629ba470de4SRik van Riel 
2630ba470de4SRik van Riel 	/*
26311da177e4SLinus Torvalds 	 * Remove the vma's, and unmap the actual pages
26321da177e4SLinus Torvalds 	 */
2633146425a3SHugh Dickins 	detach_vmas_to_be_unmapped(mm, vma, prev, end);
2634146425a3SHugh Dickins 	unmap_region(mm, vma, prev, start, end);
26351da177e4SLinus Torvalds 
26361de4fa14SDave Hansen 	arch_unmap(mm, vma, start, end);
26371de4fa14SDave Hansen 
26381da177e4SLinus Torvalds 	/* Fix up all other VM information */
26392c0b3814SHugh Dickins 	remove_vma_list(mm, vma);
26401da177e4SLinus Torvalds 
26411da177e4SLinus Torvalds 	return 0;
26421da177e4SLinus Torvalds }
26431da177e4SLinus Torvalds 
2644bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len)
2645a46ef99dSLinus Torvalds {
2646a46ef99dSLinus Torvalds 	int ret;
2647bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
2648a46ef99dSLinus Torvalds 
2649ae798783SMichal Hocko 	if (down_write_killable(&mm->mmap_sem))
2650ae798783SMichal Hocko 		return -EINTR;
2651ae798783SMichal Hocko 
2652a46ef99dSLinus Torvalds 	ret = do_munmap(mm, start, len);
2653a46ef99dSLinus Torvalds 	up_write(&mm->mmap_sem);
2654a46ef99dSLinus Torvalds 	return ret;
2655a46ef99dSLinus Torvalds }
2656a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
2657a46ef99dSLinus Torvalds 
26586a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
26591da177e4SLinus Torvalds {
2660dc0ef0dfSMichal Hocko 	int ret;
2661dc0ef0dfSMichal Hocko 	struct mm_struct *mm = current->mm;
2662dc0ef0dfSMichal Hocko 
26631da177e4SLinus Torvalds 	profile_munmap(addr);
2664dc0ef0dfSMichal Hocko 	if (down_write_killable(&mm->mmap_sem))
2665dc0ef0dfSMichal Hocko 		return -EINTR;
2666dc0ef0dfSMichal Hocko 	ret = do_munmap(mm, addr, len);
2667dc0ef0dfSMichal Hocko 	up_write(&mm->mmap_sem);
2668dc0ef0dfSMichal Hocko 	return ret;
26691da177e4SLinus Torvalds }
26701da177e4SLinus Torvalds 
2671c8d78c18SKirill A. Shutemov 
2672c8d78c18SKirill A. Shutemov /*
2673c8d78c18SKirill A. Shutemov  * Emulation of deprecated remap_file_pages() syscall.
2674c8d78c18SKirill A. Shutemov  */
2675c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2676c8d78c18SKirill A. Shutemov 		unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2677c8d78c18SKirill A. Shutemov {
2678c8d78c18SKirill A. Shutemov 
2679c8d78c18SKirill A. Shutemov 	struct mm_struct *mm = current->mm;
2680c8d78c18SKirill A. Shutemov 	struct vm_area_struct *vma;
2681c8d78c18SKirill A. Shutemov 	unsigned long populate = 0;
2682c8d78c18SKirill A. Shutemov 	unsigned long ret = -EINVAL;
2683c8d78c18SKirill A. Shutemov 	struct file *file;
2684c8d78c18SKirill A. Shutemov 
2685756a025fSJoe Perches 	pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n",
2686c8d78c18SKirill A. Shutemov 		     current->comm, current->pid);
2687c8d78c18SKirill A. Shutemov 
2688c8d78c18SKirill A. Shutemov 	if (prot)
2689c8d78c18SKirill A. Shutemov 		return ret;
2690c8d78c18SKirill A. Shutemov 	start = start & PAGE_MASK;
2691c8d78c18SKirill A. Shutemov 	size = size & PAGE_MASK;
2692c8d78c18SKirill A. Shutemov 
2693c8d78c18SKirill A. Shutemov 	if (start + size <= start)
2694c8d78c18SKirill A. Shutemov 		return ret;
2695c8d78c18SKirill A. Shutemov 
2696c8d78c18SKirill A. Shutemov 	/* Does pgoff wrap? */
2697c8d78c18SKirill A. Shutemov 	if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2698c8d78c18SKirill A. Shutemov 		return ret;
2699c8d78c18SKirill A. Shutemov 
2700dc0ef0dfSMichal Hocko 	if (down_write_killable(&mm->mmap_sem))
2701dc0ef0dfSMichal Hocko 		return -EINTR;
2702dc0ef0dfSMichal Hocko 
2703c8d78c18SKirill A. Shutemov 	vma = find_vma(mm, start);
2704c8d78c18SKirill A. Shutemov 
2705c8d78c18SKirill A. Shutemov 	if (!vma || !(vma->vm_flags & VM_SHARED))
2706c8d78c18SKirill A. Shutemov 		goto out;
2707c8d78c18SKirill A. Shutemov 
270848f7df32SKirill A. Shutemov 	if (start < vma->vm_start)
2709c8d78c18SKirill A. Shutemov 		goto out;
2710c8d78c18SKirill A. Shutemov 
271148f7df32SKirill A. Shutemov 	if (start + size > vma->vm_end) {
271248f7df32SKirill A. Shutemov 		struct vm_area_struct *next;
271348f7df32SKirill A. Shutemov 
271448f7df32SKirill A. Shutemov 		for (next = vma->vm_next; next; next = next->vm_next) {
271548f7df32SKirill A. Shutemov 			/* hole between vmas ? */
271648f7df32SKirill A. Shutemov 			if (next->vm_start != next->vm_prev->vm_end)
271748f7df32SKirill A. Shutemov 				goto out;
271848f7df32SKirill A. Shutemov 
271948f7df32SKirill A. Shutemov 			if (next->vm_file != vma->vm_file)
272048f7df32SKirill A. Shutemov 				goto out;
272148f7df32SKirill A. Shutemov 
272248f7df32SKirill A. Shutemov 			if (next->vm_flags != vma->vm_flags)
272348f7df32SKirill A. Shutemov 				goto out;
272448f7df32SKirill A. Shutemov 
272548f7df32SKirill A. Shutemov 			if (start + size <= next->vm_end)
272648f7df32SKirill A. Shutemov 				break;
272748f7df32SKirill A. Shutemov 		}
272848f7df32SKirill A. Shutemov 
272948f7df32SKirill A. Shutemov 		if (!next)
2730c8d78c18SKirill A. Shutemov 			goto out;
2731c8d78c18SKirill A. Shutemov 	}
2732c8d78c18SKirill A. Shutemov 
2733c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2734c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2735c8d78c18SKirill A. Shutemov 	prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2736c8d78c18SKirill A. Shutemov 
2737c8d78c18SKirill A. Shutemov 	flags &= MAP_NONBLOCK;
2738c8d78c18SKirill A. Shutemov 	flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2739c8d78c18SKirill A. Shutemov 	if (vma->vm_flags & VM_LOCKED) {
274048f7df32SKirill A. Shutemov 		struct vm_area_struct *tmp;
2741c8d78c18SKirill A. Shutemov 		flags |= MAP_LOCKED;
274248f7df32SKirill A. Shutemov 
2743c8d78c18SKirill A. Shutemov 		/* drop PG_Mlocked flag for over-mapped range */
274448f7df32SKirill A. Shutemov 		for (tmp = vma; tmp->vm_start >= start + size;
274548f7df32SKirill A. Shutemov 				tmp = tmp->vm_next) {
27469a73f61bSKirill A. Shutemov 			/*
27479a73f61bSKirill A. Shutemov 			 * Split pmd and munlock page on the border
27489a73f61bSKirill A. Shutemov 			 * of the range.
27499a73f61bSKirill A. Shutemov 			 */
27509a73f61bSKirill A. Shutemov 			vma_adjust_trans_huge(tmp, start, start + size, 0);
27519a73f61bSKirill A. Shutemov 
275248f7df32SKirill A. Shutemov 			munlock_vma_pages_range(tmp,
275348f7df32SKirill A. Shutemov 					max(tmp->vm_start, start),
275448f7df32SKirill A. Shutemov 					min(tmp->vm_end, start + size));
275548f7df32SKirill A. Shutemov 		}
2756c8d78c18SKirill A. Shutemov 	}
2757c8d78c18SKirill A. Shutemov 
2758c8d78c18SKirill A. Shutemov 	file = get_file(vma->vm_file);
2759c8d78c18SKirill A. Shutemov 	ret = do_mmap_pgoff(vma->vm_file, start, size,
2760c8d78c18SKirill A. Shutemov 			prot, flags, pgoff, &populate);
2761c8d78c18SKirill A. Shutemov 	fput(file);
2762c8d78c18SKirill A. Shutemov out:
2763c8d78c18SKirill A. Shutemov 	up_write(&mm->mmap_sem);
2764c8d78c18SKirill A. Shutemov 	if (populate)
2765c8d78c18SKirill A. Shutemov 		mm_populate(ret, populate);
2766c8d78c18SKirill A. Shutemov 	if (!IS_ERR_VALUE(ret))
2767c8d78c18SKirill A. Shutemov 		ret = 0;
2768c8d78c18SKirill A. Shutemov 	return ret;
2769c8d78c18SKirill A. Shutemov }
2770c8d78c18SKirill A. Shutemov 
27711da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm)
27721da177e4SLinus Torvalds {
2773a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM
27741da177e4SLinus Torvalds 	if (unlikely(down_read_trylock(&mm->mmap_sem))) {
27751da177e4SLinus Torvalds 		WARN_ON(1);
27761da177e4SLinus Torvalds 		up_read(&mm->mmap_sem);
27771da177e4SLinus Torvalds 	}
27781da177e4SLinus Torvalds #endif
27791da177e4SLinus Torvalds }
27801da177e4SLinus Torvalds 
27811da177e4SLinus Torvalds /*
27821da177e4SLinus Torvalds  *  this is really a simplified "do_mmap".  it only handles
27831da177e4SLinus Torvalds  *  anonymous maps.  eventually we may be able to do some
27841da177e4SLinus Torvalds  *  brk-specific accounting here.
27851da177e4SLinus Torvalds  */
2786ba093a6dSKees Cook static int do_brk(unsigned long addr, unsigned long request)
27871da177e4SLinus Torvalds {
27881da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
27891da177e4SLinus Torvalds 	struct vm_area_struct *vma, *prev;
2790ba093a6dSKees Cook 	unsigned long flags, len;
27911da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
27921da177e4SLinus Torvalds 	pgoff_t pgoff = addr >> PAGE_SHIFT;
27933a459756SKirill Korotaev 	int error;
27941da177e4SLinus Torvalds 
2795ba093a6dSKees Cook 	len = PAGE_ALIGN(request);
2796ba093a6dSKees Cook 	if (len < request)
2797ba093a6dSKees Cook 		return -ENOMEM;
27981da177e4SLinus Torvalds 	if (!len)
27995d22fc25SLinus Torvalds 		return 0;
28001da177e4SLinus Torvalds 
28013a459756SKirill Korotaev 	flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
28023a459756SKirill Korotaev 
28032c6a1016SAl Viro 	error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
2804de1741a1SAlexander Kuleshov 	if (offset_in_page(error))
28053a459756SKirill Korotaev 		return error;
28063a459756SKirill Korotaev 
2807363ee17fSDavidlohr Bueso 	error = mlock_future_check(mm, mm->def_flags, len);
2808363ee17fSDavidlohr Bueso 	if (error)
2809363ee17fSDavidlohr Bueso 		return error;
28101da177e4SLinus Torvalds 
28111da177e4SLinus Torvalds 	/*
28121da177e4SLinus Torvalds 	 * mm->mmap_sem is required to protect against another thread
28131da177e4SLinus Torvalds 	 * changing the mappings in case we sleep.
28141da177e4SLinus Torvalds 	 */
28151da177e4SLinus Torvalds 	verify_mm_writelocked(mm);
28161da177e4SLinus Torvalds 
28171da177e4SLinus Torvalds 	/*
28181da177e4SLinus Torvalds 	 * Clear old maps.  this also does some error checking for us
28191da177e4SLinus Torvalds 	 */
28209fcd1457SRasmus Villemoes 	while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
28219fcd1457SRasmus Villemoes 			      &rb_parent)) {
28221da177e4SLinus Torvalds 		if (do_munmap(mm, addr, len))
28231da177e4SLinus Torvalds 			return -ENOMEM;
28241da177e4SLinus Torvalds 	}
28251da177e4SLinus Torvalds 
28261da177e4SLinus Torvalds 	/* Check against address space limits *after* clearing old maps... */
282784638335SKonstantin Khlebnikov 	if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
28281da177e4SLinus Torvalds 		return -ENOMEM;
28291da177e4SLinus Torvalds 
28301da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
28311da177e4SLinus Torvalds 		return -ENOMEM;
28321da177e4SLinus Torvalds 
2833191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
28341da177e4SLinus Torvalds 		return -ENOMEM;
28351da177e4SLinus Torvalds 
28361da177e4SLinus Torvalds 	/* Can we just expand an old private anonymous mapping? */
2837ba470de4SRik van Riel 	vma = vma_merge(mm, prev, addr, addr + len, flags,
283819a809afSAndrea Arcangeli 			NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX);
2839ba470de4SRik van Riel 	if (vma)
28401da177e4SLinus Torvalds 		goto out;
28411da177e4SLinus Torvalds 
28421da177e4SLinus Torvalds 	/*
28431da177e4SLinus Torvalds 	 * create a vma struct for an anonymous mapping
28441da177e4SLinus Torvalds 	 */
2845c5e3b83eSPekka Enberg 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
28461da177e4SLinus Torvalds 	if (!vma) {
28471da177e4SLinus Torvalds 		vm_unacct_memory(len >> PAGE_SHIFT);
28481da177e4SLinus Torvalds 		return -ENOMEM;
28491da177e4SLinus Torvalds 	}
28501da177e4SLinus Torvalds 
28515beb4930SRik van Riel 	INIT_LIST_HEAD(&vma->anon_vma_chain);
28521da177e4SLinus Torvalds 	vma->vm_mm = mm;
28531da177e4SLinus Torvalds 	vma->vm_start = addr;
28541da177e4SLinus Torvalds 	vma->vm_end = addr + len;
28551da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
28561da177e4SLinus Torvalds 	vma->vm_flags = flags;
28573ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
28581da177e4SLinus Torvalds 	vma_link(mm, vma, prev, rb_link, rb_parent);
28591da177e4SLinus Torvalds out:
28603af9e859SEric B Munson 	perf_event_mmap(vma);
28611da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
286284638335SKonstantin Khlebnikov 	mm->data_vm += len >> PAGE_SHIFT;
2863128557ffSMichel Lespinasse 	if (flags & VM_LOCKED)
2864ba470de4SRik van Riel 		mm->locked_vm += (len >> PAGE_SHIFT);
2865d9104d1cSCyrill Gorcunov 	vma->vm_flags |= VM_SOFTDIRTY;
28665d22fc25SLinus Torvalds 	return 0;
28671da177e4SLinus Torvalds }
28681da177e4SLinus Torvalds 
28695d22fc25SLinus Torvalds int vm_brk(unsigned long addr, unsigned long len)
2870e4eb1ff6SLinus Torvalds {
2871e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
28725d22fc25SLinus Torvalds 	int ret;
2873128557ffSMichel Lespinasse 	bool populate;
2874e4eb1ff6SLinus Torvalds 
28752d6c9282SMichal Hocko 	if (down_write_killable(&mm->mmap_sem))
28762d6c9282SMichal Hocko 		return -EINTR;
28772d6c9282SMichal Hocko 
2878e4eb1ff6SLinus Torvalds 	ret = do_brk(addr, len);
2879128557ffSMichel Lespinasse 	populate = ((mm->def_flags & VM_LOCKED) != 0);
2880e4eb1ff6SLinus Torvalds 	up_write(&mm->mmap_sem);
28815d22fc25SLinus Torvalds 	if (populate && !ret)
2882128557ffSMichel Lespinasse 		mm_populate(addr, len);
2883e4eb1ff6SLinus Torvalds 	return ret;
2884e4eb1ff6SLinus Torvalds }
2885e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
28861da177e4SLinus Torvalds 
28871da177e4SLinus Torvalds /* Release all mmaps. */
28881da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
28891da177e4SLinus Torvalds {
2890d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
2891ba470de4SRik van Riel 	struct vm_area_struct *vma;
28921da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
28931da177e4SLinus Torvalds 
2894d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
2895cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
2896d6dd61c8SJeremy Fitzhardinge 
2897ba470de4SRik van Riel 	if (mm->locked_vm) {
2898ba470de4SRik van Riel 		vma = mm->mmap;
2899ba470de4SRik van Riel 		while (vma) {
2900ba470de4SRik van Riel 			if (vma->vm_flags & VM_LOCKED)
2901ba470de4SRik van Riel 				munlock_vma_pages_all(vma);
2902ba470de4SRik van Riel 			vma = vma->vm_next;
2903ba470de4SRik van Riel 		}
2904ba470de4SRik van Riel 	}
29059480c53eSJeremy Fitzhardinge 
29069480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
29079480c53eSJeremy Fitzhardinge 
2908ba470de4SRik van Riel 	vma = mm->mmap;
29099480c53eSJeremy Fitzhardinge 	if (!vma)	/* Can happen if dup_mmap() received an OOM */
29109480c53eSJeremy Fitzhardinge 		return;
29119480c53eSJeremy Fitzhardinge 
29121da177e4SLinus Torvalds 	lru_add_drain();
29131da177e4SLinus Torvalds 	flush_cache_mm(mm);
29142b047252SLinus Torvalds 	tlb_gather_mmu(&tlb, mm, 0, -1);
2915901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
2916e0da382cSHugh Dickins 	/* Use -1 here to ensure all VMAs in the mm are unmapped */
29174f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, 0, -1);
29189ba69294SHugh Dickins 
29196ee8630eSHugh Dickins 	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
2920853f5e26SAl Viro 	tlb_finish_mmu(&tlb, 0, -1);
29211da177e4SLinus Torvalds 
29221da177e4SLinus Torvalds 	/*
29238f4f8c16SHugh Dickins 	 * Walk the list again, actually closing and freeing it,
29248f4f8c16SHugh Dickins 	 * with preemption enabled, without holding any MM locks.
29251da177e4SLinus Torvalds 	 */
29264f74d2c8SLinus Torvalds 	while (vma) {
29274f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
29284f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
2929a8fb5618SHugh Dickins 		vma = remove_vma(vma);
29304f74d2c8SLinus Torvalds 	}
29314f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
29321da177e4SLinus Torvalds }
29331da177e4SLinus Torvalds 
29341da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
29351da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
2936c8c06efaSDavidlohr Bueso  * then i_mmap_rwsem is taken here.
29371da177e4SLinus Torvalds  */
29381da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
29391da177e4SLinus Torvalds {
29406597d783SHugh Dickins 	struct vm_area_struct *prev;
29411da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
29421da177e4SLinus Torvalds 
2943c9d13f5fSChen Gang 	if (find_vma_links(mm, vma->vm_start, vma->vm_end,
2944c9d13f5fSChen Gang 			   &prev, &rb_link, &rb_parent))
2945c9d13f5fSChen Gang 		return -ENOMEM;
2946c9d13f5fSChen Gang 	if ((vma->vm_flags & VM_ACCOUNT) &&
2947c9d13f5fSChen Gang 	     security_vm_enough_memory_mm(mm, vma_pages(vma)))
2948c9d13f5fSChen Gang 		return -ENOMEM;
2949c9d13f5fSChen Gang 
29501da177e4SLinus Torvalds 	/*
29511da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
29521da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
29531da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
29541da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
29551da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
29561da177e4SLinus Torvalds 	 *
29571da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
29581da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
29591da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
29601da177e4SLinus Torvalds 	 * Similarly in do_mmap_pgoff and in do_brk.
29611da177e4SLinus Torvalds 	 */
29628a9cc3b5SOleg Nesterov 	if (vma_is_anonymous(vma)) {
29631da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
29641da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
29651da177e4SLinus Torvalds 	}
29662b144498SSrikar Dronamraju 
29671da177e4SLinus Torvalds 	vma_link(mm, vma, prev, rb_link, rb_parent);
29681da177e4SLinus Torvalds 	return 0;
29691da177e4SLinus Torvalds }
29701da177e4SLinus Torvalds 
29711da177e4SLinus Torvalds /*
29721da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
29731da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
29741da177e4SLinus Torvalds  */
29751da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
297638a76013SMichel Lespinasse 	unsigned long addr, unsigned long len, pgoff_t pgoff,
297738a76013SMichel Lespinasse 	bool *need_rmap_locks)
29781da177e4SLinus Torvalds {
29791da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
29801da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
29811da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
29821da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
29831da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
2984948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
29851da177e4SLinus Torvalds 
29861da177e4SLinus Torvalds 	/*
29871da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
29881da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
29891da177e4SLinus Torvalds 	 */
2990ce75799bSOleg Nesterov 	if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
29911da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
2992948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
2993948f017bSAndrea Arcangeli 	}
29941da177e4SLinus Torvalds 
29956597d783SHugh Dickins 	if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
29966597d783SHugh Dickins 		return NULL;	/* should never get here */
29971da177e4SLinus Torvalds 	new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
299819a809afSAndrea Arcangeli 			    vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
299919a809afSAndrea Arcangeli 			    vma->vm_userfaultfd_ctx);
30001da177e4SLinus Torvalds 	if (new_vma) {
30011da177e4SLinus Torvalds 		/*
30021da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
30031da177e4SLinus Torvalds 		 */
3004948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
3005948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
3006948f017bSAndrea Arcangeli 			/*
3007948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
3008948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
3009948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
3010948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
3011948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
3012948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
3013948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
3014948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
3015948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
3016948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
3017948f017bSAndrea Arcangeli 			 */
301881d1b09cSSasha Levin 			VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
301938a76013SMichel Lespinasse 			*vmap = vma = new_vma;
3020108d6642SMichel Lespinasse 		}
302138a76013SMichel Lespinasse 		*need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
30221da177e4SLinus Torvalds 	} else {
3023e94b1766SChristoph Lameter 		new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
3024e3975891SChen Gang 		if (!new_vma)
3025e3975891SChen Gang 			goto out;
30261da177e4SLinus Torvalds 		*new_vma = *vma;
30271da177e4SLinus Torvalds 		new_vma->vm_start = addr;
30281da177e4SLinus Torvalds 		new_vma->vm_end = addr + len;
30291da177e4SLinus Torvalds 		new_vma->vm_pgoff = pgoff;
3030ef0855d3SOleg Nesterov 		if (vma_dup_policy(vma, new_vma))
3031523d4e20SMichel Lespinasse 			goto out_free_vma;
3032523d4e20SMichel Lespinasse 		INIT_LIST_HEAD(&new_vma->anon_vma_chain);
3033523d4e20SMichel Lespinasse 		if (anon_vma_clone(new_vma, vma))
3034523d4e20SMichel Lespinasse 			goto out_free_mempol;
3035e9714acfSKonstantin Khlebnikov 		if (new_vma->vm_file)
30361da177e4SLinus Torvalds 			get_file(new_vma->vm_file);
30371da177e4SLinus Torvalds 		if (new_vma->vm_ops && new_vma->vm_ops->open)
30381da177e4SLinus Torvalds 			new_vma->vm_ops->open(new_vma);
30391da177e4SLinus Torvalds 		vma_link(mm, new_vma, prev, rb_link, rb_parent);
304038a76013SMichel Lespinasse 		*need_rmap_locks = false;
30411da177e4SLinus Torvalds 	}
30421da177e4SLinus Torvalds 	return new_vma;
30435beb4930SRik van Riel 
30445beb4930SRik van Riel out_free_mempol:
3045ef0855d3SOleg Nesterov 	mpol_put(vma_policy(new_vma));
30465beb4930SRik van Riel out_free_vma:
30475beb4930SRik van Riel 	kmem_cache_free(vm_area_cachep, new_vma);
3048e3975891SChen Gang out:
30495beb4930SRik van Riel 	return NULL;
30501da177e4SLinus Torvalds }
3051119f657cSakpm@osdl.org 
3052119f657cSakpm@osdl.org /*
3053119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
3054119f657cSakpm@osdl.org  * number of pages
3055119f657cSakpm@osdl.org  */
305684638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
3057119f657cSakpm@osdl.org {
305884638335SKonstantin Khlebnikov 	if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
305984638335SKonstantin Khlebnikov 		return false;
3060119f657cSakpm@osdl.org 
3061d977d56cSKonstantin Khlebnikov 	if (is_data_mapping(flags) &&
3062d977d56cSKonstantin Khlebnikov 	    mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
3063f4fcd558SKonstantin Khlebnikov 		/* Workaround for Valgrind */
3064f4fcd558SKonstantin Khlebnikov 		if (rlimit(RLIMIT_DATA) == 0 &&
3065f4fcd558SKonstantin Khlebnikov 		    mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3066f4fcd558SKonstantin Khlebnikov 			return true;
3067f4fcd558SKonstantin Khlebnikov 		if (!ignore_rlimit_data) {
3068f4fcd558SKonstantin Khlebnikov 			pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits or use boot option ignore_rlimit_data.\n",
3069d977d56cSKonstantin Khlebnikov 				     current->comm, current->pid,
3070d977d56cSKonstantin Khlebnikov 				     (mm->data_vm + npages) << PAGE_SHIFT,
3071d977d56cSKonstantin Khlebnikov 				     rlimit(RLIMIT_DATA));
3072d977d56cSKonstantin Khlebnikov 			return false;
3073d977d56cSKonstantin Khlebnikov 		}
3074f4fcd558SKonstantin Khlebnikov 	}
3075119f657cSakpm@osdl.org 
307684638335SKonstantin Khlebnikov 	return true;
307784638335SKonstantin Khlebnikov }
307884638335SKonstantin Khlebnikov 
307984638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
308084638335SKonstantin Khlebnikov {
308184638335SKonstantin Khlebnikov 	mm->total_vm += npages;
308284638335SKonstantin Khlebnikov 
3083d977d56cSKonstantin Khlebnikov 	if (is_exec_mapping(flags))
308484638335SKonstantin Khlebnikov 		mm->exec_vm += npages;
3085d977d56cSKonstantin Khlebnikov 	else if (is_stack_mapping(flags))
308684638335SKonstantin Khlebnikov 		mm->stack_vm += npages;
3087d977d56cSKonstantin Khlebnikov 	else if (is_data_mapping(flags))
308884638335SKonstantin Khlebnikov 		mm->data_vm += npages;
3089119f657cSakpm@osdl.org }
3090fa5dc22fSRoland McGrath 
3091a62c34bdSAndy Lutomirski static int special_mapping_fault(struct vm_area_struct *vma,
3092a62c34bdSAndy Lutomirski 				 struct vm_fault *vmf);
3093a62c34bdSAndy Lutomirski 
3094a62c34bdSAndy Lutomirski /*
3095a62c34bdSAndy Lutomirski  * Having a close hook prevents vma merging regardless of flags.
3096a62c34bdSAndy Lutomirski  */
3097a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma)
3098a62c34bdSAndy Lutomirski {
3099a62c34bdSAndy Lutomirski }
3100a62c34bdSAndy Lutomirski 
3101a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma)
3102a62c34bdSAndy Lutomirski {
3103a62c34bdSAndy Lutomirski 	return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3104a62c34bdSAndy Lutomirski }
3105a62c34bdSAndy Lutomirski 
3106b059a453SDmitry Safonov static int special_mapping_mremap(struct vm_area_struct *new_vma)
3107b059a453SDmitry Safonov {
3108b059a453SDmitry Safonov 	struct vm_special_mapping *sm = new_vma->vm_private_data;
3109b059a453SDmitry Safonov 
3110b059a453SDmitry Safonov 	if (sm->mremap)
3111b059a453SDmitry Safonov 		return sm->mremap(sm, new_vma);
3112b059a453SDmitry Safonov 	return 0;
3113b059a453SDmitry Safonov }
3114b059a453SDmitry Safonov 
3115a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = {
3116a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3117a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3118b059a453SDmitry Safonov 	.mremap = special_mapping_mremap,
3119a62c34bdSAndy Lutomirski 	.name = special_mapping_name,
3120a62c34bdSAndy Lutomirski };
3121a62c34bdSAndy Lutomirski 
3122a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = {
3123a62c34bdSAndy Lutomirski 	.close = special_mapping_close,
3124a62c34bdSAndy Lutomirski 	.fault = special_mapping_fault,
3125a62c34bdSAndy Lutomirski };
3126fa5dc22fSRoland McGrath 
3127b1d0e4f5SNick Piggin static int special_mapping_fault(struct vm_area_struct *vma,
3128b1d0e4f5SNick Piggin 				struct vm_fault *vmf)
3129fa5dc22fSRoland McGrath {
3130b1d0e4f5SNick Piggin 	pgoff_t pgoff;
3131fa5dc22fSRoland McGrath 	struct page **pages;
3132fa5dc22fSRoland McGrath 
3133f872f540SAndy Lutomirski 	if (vma->vm_ops == &legacy_special_mapping_vmops) {
3134a62c34bdSAndy Lutomirski 		pages = vma->vm_private_data;
3135f872f540SAndy Lutomirski 	} else {
3136f872f540SAndy Lutomirski 		struct vm_special_mapping *sm = vma->vm_private_data;
3137f872f540SAndy Lutomirski 
3138f872f540SAndy Lutomirski 		if (sm->fault)
3139f872f540SAndy Lutomirski 			return sm->fault(sm, vma, vmf);
3140f872f540SAndy Lutomirski 
3141f872f540SAndy Lutomirski 		pages = sm->pages;
3142f872f540SAndy Lutomirski 	}
3143a62c34bdSAndy Lutomirski 
31448a9cc3b5SOleg Nesterov 	for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
3145b1d0e4f5SNick Piggin 		pgoff--;
3146fa5dc22fSRoland McGrath 
3147fa5dc22fSRoland McGrath 	if (*pages) {
3148fa5dc22fSRoland McGrath 		struct page *page = *pages;
3149fa5dc22fSRoland McGrath 		get_page(page);
3150b1d0e4f5SNick Piggin 		vmf->page = page;
3151b1d0e4f5SNick Piggin 		return 0;
3152fa5dc22fSRoland McGrath 	}
3153fa5dc22fSRoland McGrath 
3154b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
3155fa5dc22fSRoland McGrath }
3156fa5dc22fSRoland McGrath 
3157a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping(
3158a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3159fa5dc22fSRoland McGrath 	unsigned long addr, unsigned long len,
316027f28b97SChen Gang 	unsigned long vm_flags, void *priv,
316127f28b97SChen Gang 	const struct vm_operations_struct *ops)
3162fa5dc22fSRoland McGrath {
3163462e635eSTavis Ormandy 	int ret;
3164fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
3165fa5dc22fSRoland McGrath 
3166fa5dc22fSRoland McGrath 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
3167fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
31683935ed6aSStefani Seibold 		return ERR_PTR(-ENOMEM);
3169fa5dc22fSRoland McGrath 
31705beb4930SRik van Riel 	INIT_LIST_HEAD(&vma->anon_vma_chain);
3171fa5dc22fSRoland McGrath 	vma->vm_mm = mm;
3172fa5dc22fSRoland McGrath 	vma->vm_start = addr;
3173fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
3174fa5dc22fSRoland McGrath 
3175d9104d1cSCyrill Gorcunov 	vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
31763ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
3177fa5dc22fSRoland McGrath 
3178a62c34bdSAndy Lutomirski 	vma->vm_ops = ops;
3179a62c34bdSAndy Lutomirski 	vma->vm_private_data = priv;
3180fa5dc22fSRoland McGrath 
3181462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
3182462e635eSTavis Ormandy 	if (ret)
3183462e635eSTavis Ormandy 		goto out;
3184fa5dc22fSRoland McGrath 
318584638335SKonstantin Khlebnikov 	vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
3186fa5dc22fSRoland McGrath 
3187cdd6c482SIngo Molnar 	perf_event_mmap(vma);
3188089dd79dSPeter Zijlstra 
31893935ed6aSStefani Seibold 	return vma;
3190462e635eSTavis Ormandy 
3191462e635eSTavis Ormandy out:
3192462e635eSTavis Ormandy 	kmem_cache_free(vm_area_cachep, vma);
31933935ed6aSStefani Seibold 	return ERR_PTR(ret);
31943935ed6aSStefani Seibold }
31953935ed6aSStefani Seibold 
31962eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma,
31972eefd878SDmitry Safonov 	const struct vm_special_mapping *sm)
31982eefd878SDmitry Safonov {
31992eefd878SDmitry Safonov 	return vma->vm_private_data == sm &&
32002eefd878SDmitry Safonov 		(vma->vm_ops == &special_mapping_vmops ||
32012eefd878SDmitry Safonov 		 vma->vm_ops == &legacy_special_mapping_vmops);
32022eefd878SDmitry Safonov }
32032eefd878SDmitry Safonov 
3204a62c34bdSAndy Lutomirski /*
3205a62c34bdSAndy Lutomirski  * Called with mm->mmap_sem held for writing.
3206a62c34bdSAndy Lutomirski  * Insert a new vma covering the given region, with the given flags.
3207a62c34bdSAndy Lutomirski  * Its pages are supplied by the given array of struct page *.
3208a62c34bdSAndy Lutomirski  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3209a62c34bdSAndy Lutomirski  * The region past the last page supplied will always produce SIGBUS.
3210a62c34bdSAndy Lutomirski  * The array pointer and the pages it points to are assumed to stay alive
3211a62c34bdSAndy Lutomirski  * for as long as this mapping might exist.
3212a62c34bdSAndy Lutomirski  */
3213a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping(
3214a62c34bdSAndy Lutomirski 	struct mm_struct *mm,
3215a62c34bdSAndy Lutomirski 	unsigned long addr, unsigned long len,
3216a62c34bdSAndy Lutomirski 	unsigned long vm_flags, const struct vm_special_mapping *spec)
3217a62c34bdSAndy Lutomirski {
321827f28b97SChen Gang 	return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
321927f28b97SChen Gang 					&special_mapping_vmops);
3220a62c34bdSAndy Lutomirski }
3221a62c34bdSAndy Lutomirski 
32223935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm,
32233935ed6aSStefani Seibold 			    unsigned long addr, unsigned long len,
32243935ed6aSStefani Seibold 			    unsigned long vm_flags, struct page **pages)
32253935ed6aSStefani Seibold {
3226a62c34bdSAndy Lutomirski 	struct vm_area_struct *vma = __install_special_mapping(
322727f28b97SChen Gang 		mm, addr, len, vm_flags, (void *)pages,
322827f28b97SChen Gang 		&legacy_special_mapping_vmops);
32293935ed6aSStefani Seibold 
323014bd5b45SDuan Jiong 	return PTR_ERR_OR_ZERO(vma);
3231fa5dc22fSRoland McGrath }
32327906d00cSAndrea Arcangeli 
32337906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
32347906d00cSAndrea Arcangeli 
3235454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
32367906d00cSAndrea Arcangeli {
3237bf181b9fSMichel Lespinasse 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
32387906d00cSAndrea Arcangeli 		/*
32397906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
32407906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
32417906d00cSAndrea Arcangeli 		 */
3242572043c9SJiri Kosina 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem);
32437906d00cSAndrea Arcangeli 		/*
32447906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
32455a505085SIngo Molnar 		 * anon_vma->root->rwsem. If some other vma in this mm shares
32467906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
32477906d00cSAndrea Arcangeli 		 *
32487906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
32497906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
32505a505085SIngo Molnar 		 * anon_vma->root->rwsem.
32517906d00cSAndrea Arcangeli 		 */
32527906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
3253bf181b9fSMichel Lespinasse 				       &anon_vma->root->rb_root.rb_node))
32547906d00cSAndrea Arcangeli 			BUG();
32557906d00cSAndrea Arcangeli 	}
32567906d00cSAndrea Arcangeli }
32577906d00cSAndrea Arcangeli 
3258454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
32597906d00cSAndrea Arcangeli {
32607906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
32617906d00cSAndrea Arcangeli 		/*
32627906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
32637906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
32647906d00cSAndrea Arcangeli 		 *
32657906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
32667906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
32677906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
32687906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
32697906d00cSAndrea Arcangeli 		 */
32707906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
32717906d00cSAndrea Arcangeli 			BUG();
3272c8c06efaSDavidlohr Bueso 		down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem);
32737906d00cSAndrea Arcangeli 	}
32747906d00cSAndrea Arcangeli }
32757906d00cSAndrea Arcangeli 
32767906d00cSAndrea Arcangeli /*
32777906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
32787906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
32797906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
32807906d00cSAndrea Arcangeli  *
32817906d00cSAndrea Arcangeli  * The caller must take the mmap_sem in write mode before calling
32827906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
32837906d00cSAndrea Arcangeli  * mmap_sem until mm_drop_all_locks() returns.
32847906d00cSAndrea Arcangeli  *
32857906d00cSAndrea Arcangeli  * mmap_sem in write mode is required in order to block all operations
32867906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
328727ba0644SKirill A. Shutemov  * altering the vma layout. It's also needed in write mode to avoid new
32887906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
32897906d00cSAndrea Arcangeli  *
32907906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
32917906d00cSAndrea Arcangeli  * or it would deadlock.
32927906d00cSAndrea Arcangeli  *
3293bf181b9fSMichel Lespinasse  * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
32947906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
32957906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
32967906d00cSAndrea Arcangeli  *
329788f306b6SKirill A. Shutemov  * We take locks in following order, accordingly to comment at beginning
329888f306b6SKirill A. Shutemov  * of mm/rmap.c:
329988f306b6SKirill A. Shutemov  *   - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
330088f306b6SKirill A. Shutemov  *     hugetlb mapping);
330188f306b6SKirill A. Shutemov  *   - all i_mmap_rwsem locks;
330288f306b6SKirill A. Shutemov  *   - all anon_vma->rwseml
330388f306b6SKirill A. Shutemov  *
330488f306b6SKirill A. Shutemov  * We can take all locks within these types randomly because the VM code
330588f306b6SKirill A. Shutemov  * doesn't nest them and we protected from parallel mm_take_all_locks() by
330688f306b6SKirill A. Shutemov  * mm_all_locks_mutex.
33077906d00cSAndrea Arcangeli  *
33087906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
33097906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
33107906d00cSAndrea Arcangeli  *
33117906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
33127906d00cSAndrea Arcangeli  */
33137906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
33147906d00cSAndrea Arcangeli {
33157906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
33165beb4930SRik van Riel 	struct anon_vma_chain *avc;
33177906d00cSAndrea Arcangeli 
33187906d00cSAndrea Arcangeli 	BUG_ON(down_read_trylock(&mm->mmap_sem));
33197906d00cSAndrea Arcangeli 
33207906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
33217906d00cSAndrea Arcangeli 
33227906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
33237906d00cSAndrea Arcangeli 		if (signal_pending(current))
33247906d00cSAndrea Arcangeli 			goto out_unlock;
332588f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
332688f306b6SKirill A. Shutemov 				is_vm_hugetlb_page(vma))
332788f306b6SKirill A. Shutemov 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
332888f306b6SKirill A. Shutemov 	}
332988f306b6SKirill A. Shutemov 
333088f306b6SKirill A. Shutemov 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
333188f306b6SKirill A. Shutemov 		if (signal_pending(current))
333288f306b6SKirill A. Shutemov 			goto out_unlock;
333388f306b6SKirill A. Shutemov 		if (vma->vm_file && vma->vm_file->f_mapping &&
333488f306b6SKirill A. Shutemov 				!is_vm_hugetlb_page(vma))
3335454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
33367906d00cSAndrea Arcangeli 	}
33377cd5a02fSPeter Zijlstra 
33387cd5a02fSPeter Zijlstra 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
33397cd5a02fSPeter Zijlstra 		if (signal_pending(current))
33407cd5a02fSPeter Zijlstra 			goto out_unlock;
33417cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
33425beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
33435beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
33447cd5a02fSPeter Zijlstra 	}
33457cd5a02fSPeter Zijlstra 
3346584cff54SKautuk Consul 	return 0;
33477906d00cSAndrea Arcangeli 
33487906d00cSAndrea Arcangeli out_unlock:
33497906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
3350584cff54SKautuk Consul 	return -EINTR;
33517906d00cSAndrea Arcangeli }
33527906d00cSAndrea Arcangeli 
33537906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
33547906d00cSAndrea Arcangeli {
3355bf181b9fSMichel Lespinasse 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
33567906d00cSAndrea Arcangeli 		/*
33577906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
33587906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
33597906d00cSAndrea Arcangeli 		 *
33607906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
3361bf181b9fSMichel Lespinasse 		 * the vma so the users using the anon_vma->rb_root will
33627906d00cSAndrea Arcangeli 		 * never see our bitflag.
33637906d00cSAndrea Arcangeli 		 *
33647906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
33657906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
33665a505085SIngo Molnar 		 * anon_vma->root->rwsem.
33677906d00cSAndrea Arcangeli 		 */
33687906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
3369bf181b9fSMichel Lespinasse 					  &anon_vma->root->rb_root.rb_node))
33707906d00cSAndrea Arcangeli 			BUG();
337108b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
33727906d00cSAndrea Arcangeli 	}
33737906d00cSAndrea Arcangeli }
33747906d00cSAndrea Arcangeli 
33757906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
33767906d00cSAndrea Arcangeli {
33777906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
33787906d00cSAndrea Arcangeli 		/*
33797906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
33807906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
33817906d00cSAndrea Arcangeli 		 */
338283cde9e8SDavidlohr Bueso 		i_mmap_unlock_write(mapping);
33837906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
33847906d00cSAndrea Arcangeli 					&mapping->flags))
33857906d00cSAndrea Arcangeli 			BUG();
33867906d00cSAndrea Arcangeli 	}
33877906d00cSAndrea Arcangeli }
33887906d00cSAndrea Arcangeli 
33897906d00cSAndrea Arcangeli /*
33907906d00cSAndrea Arcangeli  * The mmap_sem cannot be released by the caller until
33917906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
33927906d00cSAndrea Arcangeli  */
33937906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
33947906d00cSAndrea Arcangeli {
33957906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
33965beb4930SRik van Riel 	struct anon_vma_chain *avc;
33977906d00cSAndrea Arcangeli 
33987906d00cSAndrea Arcangeli 	BUG_ON(down_read_trylock(&mm->mmap_sem));
33997906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
34007906d00cSAndrea Arcangeli 
34017906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
34027906d00cSAndrea Arcangeli 		if (vma->anon_vma)
34035beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
34045beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
34057906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
34067906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
34077906d00cSAndrea Arcangeli 	}
34087906d00cSAndrea Arcangeli 
34097906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
34107906d00cSAndrea Arcangeli }
34118feae131SDavid Howells 
34128feae131SDavid Howells /*
34138feae131SDavid Howells  * initialise the VMA slab
34148feae131SDavid Howells  */
34158feae131SDavid Howells void __init mmap_init(void)
34168feae131SDavid Howells {
341700a62ce9SKOSAKI Motohiro 	int ret;
341800a62ce9SKOSAKI Motohiro 
3419908c7f19STejun Heo 	ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
342000a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
34218feae131SDavid Howells }
3422c9b1d098SAndrew Shewmaker 
3423c9b1d098SAndrew Shewmaker /*
3424c9b1d098SAndrew Shewmaker  * Initialise sysctl_user_reserve_kbytes.
3425c9b1d098SAndrew Shewmaker  *
3426c9b1d098SAndrew Shewmaker  * This is intended to prevent a user from starting a single memory hogging
3427c9b1d098SAndrew Shewmaker  * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3428c9b1d098SAndrew Shewmaker  * mode.
3429c9b1d098SAndrew Shewmaker  *
3430c9b1d098SAndrew Shewmaker  * The default value is min(3% of free memory, 128MB)
3431c9b1d098SAndrew Shewmaker  * 128MB is enough to recover with sshd/login, bash, and top/kill.
3432c9b1d098SAndrew Shewmaker  */
34331640879aSAndrew Shewmaker static int init_user_reserve(void)
3434c9b1d098SAndrew Shewmaker {
3435c9b1d098SAndrew Shewmaker 	unsigned long free_kbytes;
3436c9b1d098SAndrew Shewmaker 
3437c9b1d098SAndrew Shewmaker 	free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3438c9b1d098SAndrew Shewmaker 
3439c9b1d098SAndrew Shewmaker 	sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3440c9b1d098SAndrew Shewmaker 	return 0;
3441c9b1d098SAndrew Shewmaker }
3442a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve);
34434eeab4f5SAndrew Shewmaker 
34444eeab4f5SAndrew Shewmaker /*
34454eeab4f5SAndrew Shewmaker  * Initialise sysctl_admin_reserve_kbytes.
34464eeab4f5SAndrew Shewmaker  *
34474eeab4f5SAndrew Shewmaker  * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
34484eeab4f5SAndrew Shewmaker  * to log in and kill a memory hogging process.
34494eeab4f5SAndrew Shewmaker  *
34504eeab4f5SAndrew Shewmaker  * Systems with more than 256MB will reserve 8MB, enough to recover
34514eeab4f5SAndrew Shewmaker  * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
34524eeab4f5SAndrew Shewmaker  * only reserve 3% of free pages by default.
34534eeab4f5SAndrew Shewmaker  */
34541640879aSAndrew Shewmaker static int init_admin_reserve(void)
34554eeab4f5SAndrew Shewmaker {
34564eeab4f5SAndrew Shewmaker 	unsigned long free_kbytes;
34574eeab4f5SAndrew Shewmaker 
34584eeab4f5SAndrew Shewmaker 	free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
34594eeab4f5SAndrew Shewmaker 
34604eeab4f5SAndrew Shewmaker 	sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
34614eeab4f5SAndrew Shewmaker 	return 0;
34624eeab4f5SAndrew Shewmaker }
3463a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve);
34641640879aSAndrew Shewmaker 
34651640879aSAndrew Shewmaker /*
34661640879aSAndrew Shewmaker  * Reinititalise user and admin reserves if memory is added or removed.
34671640879aSAndrew Shewmaker  *
34681640879aSAndrew Shewmaker  * The default user reserve max is 128MB, and the default max for the
34691640879aSAndrew Shewmaker  * admin reserve is 8MB. These are usually, but not always, enough to
34701640879aSAndrew Shewmaker  * enable recovery from a memory hogging process using login/sshd, a shell,
34711640879aSAndrew Shewmaker  * and tools like top. It may make sense to increase or even disable the
34721640879aSAndrew Shewmaker  * reserve depending on the existence of swap or variations in the recovery
34731640879aSAndrew Shewmaker  * tools. So, the admin may have changed them.
34741640879aSAndrew Shewmaker  *
34751640879aSAndrew Shewmaker  * If memory is added and the reserves have been eliminated or increased above
34761640879aSAndrew Shewmaker  * the default max, then we'll trust the admin.
34771640879aSAndrew Shewmaker  *
34781640879aSAndrew Shewmaker  * If memory is removed and there isn't enough free memory, then we
34791640879aSAndrew Shewmaker  * need to reset the reserves.
34801640879aSAndrew Shewmaker  *
34811640879aSAndrew Shewmaker  * Otherwise keep the reserve set by the admin.
34821640879aSAndrew Shewmaker  */
34831640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb,
34841640879aSAndrew Shewmaker 			     unsigned long action, void *data)
34851640879aSAndrew Shewmaker {
34861640879aSAndrew Shewmaker 	unsigned long tmp, free_kbytes;
34871640879aSAndrew Shewmaker 
34881640879aSAndrew Shewmaker 	switch (action) {
34891640879aSAndrew Shewmaker 	case MEM_ONLINE:
34901640879aSAndrew Shewmaker 		/* Default max is 128MB. Leave alone if modified by operator. */
34911640879aSAndrew Shewmaker 		tmp = sysctl_user_reserve_kbytes;
34921640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 17))
34931640879aSAndrew Shewmaker 			init_user_reserve();
34941640879aSAndrew Shewmaker 
34951640879aSAndrew Shewmaker 		/* Default max is 8MB.  Leave alone if modified by operator. */
34961640879aSAndrew Shewmaker 		tmp = sysctl_admin_reserve_kbytes;
34971640879aSAndrew Shewmaker 		if (0 < tmp && tmp < (1UL << 13))
34981640879aSAndrew Shewmaker 			init_admin_reserve();
34991640879aSAndrew Shewmaker 
35001640879aSAndrew Shewmaker 		break;
35011640879aSAndrew Shewmaker 	case MEM_OFFLINE:
35021640879aSAndrew Shewmaker 		free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
35031640879aSAndrew Shewmaker 
35041640879aSAndrew Shewmaker 		if (sysctl_user_reserve_kbytes > free_kbytes) {
35051640879aSAndrew Shewmaker 			init_user_reserve();
35061640879aSAndrew Shewmaker 			pr_info("vm.user_reserve_kbytes reset to %lu\n",
35071640879aSAndrew Shewmaker 				sysctl_user_reserve_kbytes);
35081640879aSAndrew Shewmaker 		}
35091640879aSAndrew Shewmaker 
35101640879aSAndrew Shewmaker 		if (sysctl_admin_reserve_kbytes > free_kbytes) {
35111640879aSAndrew Shewmaker 			init_admin_reserve();
35121640879aSAndrew Shewmaker 			pr_info("vm.admin_reserve_kbytes reset to %lu\n",
35131640879aSAndrew Shewmaker 				sysctl_admin_reserve_kbytes);
35141640879aSAndrew Shewmaker 		}
35151640879aSAndrew Shewmaker 		break;
35161640879aSAndrew Shewmaker 	default:
35171640879aSAndrew Shewmaker 		break;
35181640879aSAndrew Shewmaker 	}
35191640879aSAndrew Shewmaker 	return NOTIFY_OK;
35201640879aSAndrew Shewmaker }
35211640879aSAndrew Shewmaker 
35221640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = {
35231640879aSAndrew Shewmaker 	.notifier_call = reserve_mem_notifier,
35241640879aSAndrew Shewmaker };
35251640879aSAndrew Shewmaker 
35261640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void)
35271640879aSAndrew Shewmaker {
35281640879aSAndrew Shewmaker 	if (register_hotmemory_notifier(&reserve_mem_nb))
3529b1de0d13SMitchel Humpherys 		pr_err("Failed registering memory add/remove notifier for admin reserve\n");
35301640879aSAndrew Shewmaker 
35311640879aSAndrew Shewmaker 	return 0;
35321640879aSAndrew Shewmaker }
3533a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier);
3534