xref: /linux/mm/mmap.c (revision e9714acf8c439688884234dcac2bfc38bb607d38)
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 
91da177e4SLinus Torvalds #include <linux/slab.h>
104af3c9ccSAlexey Dobriyan #include <linux/backing-dev.h>
111da177e4SLinus Torvalds #include <linux/mm.h>
121da177e4SLinus Torvalds #include <linux/shm.h>
131da177e4SLinus Torvalds #include <linux/mman.h>
141da177e4SLinus Torvalds #include <linux/pagemap.h>
151da177e4SLinus Torvalds #include <linux/swap.h>
161da177e4SLinus Torvalds #include <linux/syscalls.h>
17c59ede7bSRandy.Dunlap #include <linux/capability.h>
181da177e4SLinus Torvalds #include <linux/init.h>
191da177e4SLinus Torvalds #include <linux/file.h>
201da177e4SLinus Torvalds #include <linux/fs.h>
211da177e4SLinus Torvalds #include <linux/personality.h>
221da177e4SLinus Torvalds #include <linux/security.h>
231da177e4SLinus Torvalds #include <linux/hugetlb.h>
241da177e4SLinus Torvalds #include <linux/profile.h>
25b95f1b31SPaul Gortmaker #include <linux/export.h>
261da177e4SLinus Torvalds #include <linux/mount.h>
271da177e4SLinus Torvalds #include <linux/mempolicy.h>
281da177e4SLinus Torvalds #include <linux/rmap.h>
29cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
30cdd6c482SIngo Molnar #include <linux/perf_event.h>
31120a795dSAl Viro #include <linux/audit.h>
32b15d00b6SAndrea Arcangeli #include <linux/khugepaged.h>
332b144498SSrikar Dronamraju #include <linux/uprobes.h>
341da177e4SLinus Torvalds 
351da177e4SLinus Torvalds #include <asm/uaccess.h>
361da177e4SLinus Torvalds #include <asm/cacheflush.h>
371da177e4SLinus Torvalds #include <asm/tlb.h>
38d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h>
391da177e4SLinus Torvalds 
4042b77728SJan Beulich #include "internal.h"
4142b77728SJan Beulich 
423a459756SKirill Korotaev #ifndef arch_mmap_check
433a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags)	(0)
443a459756SKirill Korotaev #endif
453a459756SKirill Korotaev 
4608e7d9b5SMartin Schwidefsky #ifndef arch_rebalance_pgtables
4708e7d9b5SMartin Schwidefsky #define arch_rebalance_pgtables(addr, len)		(addr)
4808e7d9b5SMartin Schwidefsky #endif
4908e7d9b5SMartin Schwidefsky 
50e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm,
51e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
52e0da382cSHugh Dickins 		unsigned long start, unsigned long end);
53e0da382cSHugh Dickins 
541da177e4SLinus Torvalds /*
551da177e4SLinus Torvalds  * WARNING: the debugging will use recursive algorithms so never enable this
561da177e4SLinus Torvalds  * unless you know what you are doing.
571da177e4SLinus Torvalds  */
581da177e4SLinus Torvalds #undef DEBUG_MM_RB
591da177e4SLinus Torvalds 
601da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation.
611da177e4SLinus Torvalds  * this is due to the limited x86 page protection hardware.  The expected
621da177e4SLinus Torvalds  * behavior is in parens:
631da177e4SLinus Torvalds  *
641da177e4SLinus Torvalds  * map_type	prot
651da177e4SLinus Torvalds  *		PROT_NONE	PROT_READ	PROT_WRITE	PROT_EXEC
661da177e4SLinus Torvalds  * MAP_SHARED	r: (no) no	r: (yes) yes	r: (no) yes	r: (no) yes
671da177e4SLinus Torvalds  *		w: (no) no	w: (no) no	w: (yes) yes	w: (no) no
681da177e4SLinus Torvalds  *		x: (no) no	x: (no) yes	x: (no) yes	x: (yes) yes
691da177e4SLinus Torvalds  *
701da177e4SLinus Torvalds  * MAP_PRIVATE	r: (no) no	r: (yes) yes	r: (no) yes	r: (no) yes
711da177e4SLinus Torvalds  *		w: (no) no	w: (no) no	w: (copy) copy	w: (no) no
721da177e4SLinus Torvalds  *		x: (no) no	x: (no) yes	x: (no) yes	x: (yes) yes
731da177e4SLinus Torvalds  *
741da177e4SLinus Torvalds  */
751da177e4SLinus Torvalds pgprot_t protection_map[16] = {
761da177e4SLinus Torvalds 	__P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
771da177e4SLinus Torvalds 	__S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
781da177e4SLinus Torvalds };
791da177e4SLinus Torvalds 
80804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags)
81804af2cfSHugh Dickins {
82b845f313SDave Kleikamp 	return __pgprot(pgprot_val(protection_map[vm_flags &
83b845f313SDave Kleikamp 				(VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
84b845f313SDave Kleikamp 			pgprot_val(arch_vm_get_page_prot(vm_flags)));
85804af2cfSHugh Dickins }
86804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot);
87804af2cfSHugh Dickins 
8834679d7eSShaohua Li int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS;  /* heuristic overcommit */
8934679d7eSShaohua Li int sysctl_overcommit_ratio __read_mostly = 50;	/* default is 50% */
90c3d8c141SChristoph Lameter int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
9134679d7eSShaohua Li /*
9234679d7eSShaohua Li  * Make sure vm_committed_as in one cacheline and not cacheline shared with
9334679d7eSShaohua Li  * other variables. It can be updated by several CPUs frequently.
9434679d7eSShaohua Li  */
9534679d7eSShaohua Li struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp;
961da177e4SLinus Torvalds 
971da177e4SLinus Torvalds /*
981da177e4SLinus Torvalds  * Check that a process has enough memory to allocate a new virtual
991da177e4SLinus Torvalds  * mapping. 0 means there is enough memory for the allocation to
1001da177e4SLinus Torvalds  * succeed and -ENOMEM implies there is not.
1011da177e4SLinus Torvalds  *
1021da177e4SLinus Torvalds  * We currently support three overcommit policies, which are set via the
1031da177e4SLinus Torvalds  * vm.overcommit_memory sysctl.  See Documentation/vm/overcommit-accounting
1041da177e4SLinus Torvalds  *
1051da177e4SLinus Torvalds  * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1061da177e4SLinus Torvalds  * Additional code 2002 Jul 20 by Robert Love.
1071da177e4SLinus Torvalds  *
1081da177e4SLinus Torvalds  * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1091da177e4SLinus Torvalds  *
1101da177e4SLinus Torvalds  * Note this is a helper function intended to be used by LSMs which
1111da177e4SLinus Torvalds  * wish to use this logic.
1121da177e4SLinus Torvalds  */
11334b4e4aaSAlan Cox int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
1141da177e4SLinus Torvalds {
1151da177e4SLinus Torvalds 	unsigned long free, allowed;
1161da177e4SLinus Torvalds 
1171da177e4SLinus Torvalds 	vm_acct_memory(pages);
1181da177e4SLinus Torvalds 
1191da177e4SLinus Torvalds 	/*
1201da177e4SLinus Torvalds 	 * Sometimes we want to use more memory than we have
1211da177e4SLinus Torvalds 	 */
1221da177e4SLinus Torvalds 	if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
1231da177e4SLinus Torvalds 		return 0;
1241da177e4SLinus Torvalds 
1251da177e4SLinus Torvalds 	if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
126c15bef30SDmitry Fink 		free = global_page_state(NR_FREE_PAGES);
127c15bef30SDmitry Fink 		free += global_page_state(NR_FILE_PAGES);
1281da177e4SLinus Torvalds 
129c15bef30SDmitry Fink 		/*
130c15bef30SDmitry Fink 		 * shmem pages shouldn't be counted as free in this
131c15bef30SDmitry Fink 		 * case, they can't be purged, only swapped out, and
132c15bef30SDmitry Fink 		 * that won't affect the overall amount of available
133c15bef30SDmitry Fink 		 * memory in the system.
134c15bef30SDmitry Fink 		 */
135c15bef30SDmitry Fink 		free -= global_page_state(NR_SHMEM);
136c15bef30SDmitry Fink 
1371da177e4SLinus Torvalds 		free += nr_swap_pages;
1381da177e4SLinus Torvalds 
1391da177e4SLinus Torvalds 		/*
1401da177e4SLinus Torvalds 		 * Any slabs which are created with the
1411da177e4SLinus Torvalds 		 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1421da177e4SLinus Torvalds 		 * which are reclaimable, under pressure.  The dentry
1431da177e4SLinus Torvalds 		 * cache and most inode caches should fall into this
1441da177e4SLinus Torvalds 		 */
145972d1a7bSChristoph Lameter 		free += global_page_state(NR_SLAB_RECLAIMABLE);
1461da177e4SLinus Torvalds 
1471da177e4SLinus Torvalds 		/*
148c15bef30SDmitry Fink 		 * Leave reserved pages. The pages are not for anonymous pages.
149c15bef30SDmitry Fink 		 */
150c15bef30SDmitry Fink 		if (free <= totalreserve_pages)
151c15bef30SDmitry Fink 			goto error;
152c15bef30SDmitry Fink 		else
153c15bef30SDmitry Fink 			free -= totalreserve_pages;
154c15bef30SDmitry Fink 
155c15bef30SDmitry Fink 		/*
1561da177e4SLinus Torvalds 		 * Leave the last 3% for root
1571da177e4SLinus Torvalds 		 */
1581da177e4SLinus Torvalds 		if (!cap_sys_admin)
1591da177e4SLinus Torvalds 			free -= free / 32;
1601da177e4SLinus Torvalds 
1611da177e4SLinus Torvalds 		if (free > pages)
1621da177e4SLinus Torvalds 			return 0;
1631da177e4SLinus Torvalds 
1646d9f7839SHideo AOKI 		goto error;
1651da177e4SLinus Torvalds 	}
1661da177e4SLinus Torvalds 
1671da177e4SLinus Torvalds 	allowed = (totalram_pages - hugetlb_total_pages())
1681da177e4SLinus Torvalds 	       	* sysctl_overcommit_ratio / 100;
1691da177e4SLinus Torvalds 	/*
1701da177e4SLinus Torvalds 	 * Leave the last 3% for root
1711da177e4SLinus Torvalds 	 */
1721da177e4SLinus Torvalds 	if (!cap_sys_admin)
1731da177e4SLinus Torvalds 		allowed -= allowed / 32;
1741da177e4SLinus Torvalds 	allowed += total_swap_pages;
1751da177e4SLinus Torvalds 
1761da177e4SLinus Torvalds 	/* Don't let a single process grow too big:
1771da177e4SLinus Torvalds 	   leave 3% of the size of this process for other processes */
178731572d3SAlan Cox 	if (mm)
17934b4e4aaSAlan Cox 		allowed -= mm->total_vm / 32;
1801da177e4SLinus Torvalds 
18100a62ce9SKOSAKI Motohiro 	if (percpu_counter_read_positive(&vm_committed_as) < allowed)
1821da177e4SLinus Torvalds 		return 0;
1836d9f7839SHideo AOKI error:
1841da177e4SLinus Torvalds 	vm_unacct_memory(pages);
1851da177e4SLinus Torvalds 
1861da177e4SLinus Torvalds 	return -ENOMEM;
1871da177e4SLinus Torvalds }
1881da177e4SLinus Torvalds 
1891da177e4SLinus Torvalds /*
1903d48ae45SPeter Zijlstra  * Requires inode->i_mapping->i_mmap_mutex
1911da177e4SLinus Torvalds  */
1921da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma,
1931da177e4SLinus Torvalds 		struct file *file, struct address_space *mapping)
1941da177e4SLinus Torvalds {
1951da177e4SLinus Torvalds 	if (vma->vm_flags & VM_DENYWRITE)
196d3ac7f89SJosef "Jeff" Sipek 		atomic_inc(&file->f_path.dentry->d_inode->i_writecount);
1971da177e4SLinus Torvalds 	if (vma->vm_flags & VM_SHARED)
1981da177e4SLinus Torvalds 		mapping->i_mmap_writable--;
1991da177e4SLinus Torvalds 
2001da177e4SLinus Torvalds 	flush_dcache_mmap_lock(mapping);
2011da177e4SLinus Torvalds 	if (unlikely(vma->vm_flags & VM_NONLINEAR))
2021da177e4SLinus Torvalds 		list_del_init(&vma->shared.vm_set.list);
2031da177e4SLinus Torvalds 	else
2041da177e4SLinus Torvalds 		vma_prio_tree_remove(vma, &mapping->i_mmap);
2051da177e4SLinus Torvalds 	flush_dcache_mmap_unlock(mapping);
2061da177e4SLinus Torvalds }
2071da177e4SLinus Torvalds 
2081da177e4SLinus Torvalds /*
209a8fb5618SHugh Dickins  * Unlink a file-based vm structure from its prio_tree, to hide
210a8fb5618SHugh Dickins  * vma from rmap and vmtruncate before freeing its page tables.
2111da177e4SLinus Torvalds  */
212a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma)
2131da177e4SLinus Torvalds {
2141da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
2151da177e4SLinus Torvalds 
2161da177e4SLinus Torvalds 	if (file) {
2171da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
2183d48ae45SPeter Zijlstra 		mutex_lock(&mapping->i_mmap_mutex);
2191da177e4SLinus Torvalds 		__remove_shared_vm_struct(vma, file, mapping);
2203d48ae45SPeter Zijlstra 		mutex_unlock(&mapping->i_mmap_mutex);
2211da177e4SLinus Torvalds 	}
222a8fb5618SHugh Dickins }
223a8fb5618SHugh Dickins 
224a8fb5618SHugh Dickins /*
225a8fb5618SHugh Dickins  * Close a vm structure and free it, returning the next.
226a8fb5618SHugh Dickins  */
227a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
228a8fb5618SHugh Dickins {
229a8fb5618SHugh Dickins 	struct vm_area_struct *next = vma->vm_next;
230a8fb5618SHugh Dickins 
231a8fb5618SHugh Dickins 	might_sleep();
2321da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
2331da177e4SLinus Torvalds 		vma->vm_ops->close(vma);
234*e9714acfSKonstantin Khlebnikov 	if (vma->vm_file)
235a8fb5618SHugh Dickins 		fput(vma->vm_file);
236f0be3d32SLee Schermerhorn 	mpol_put(vma_policy(vma));
2371da177e4SLinus Torvalds 	kmem_cache_free(vm_area_cachep, vma);
238a8fb5618SHugh Dickins 	return next;
2391da177e4SLinus Torvalds }
2401da177e4SLinus Torvalds 
241e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len);
242e4eb1ff6SLinus Torvalds 
2436a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
2441da177e4SLinus Torvalds {
2451da177e4SLinus Torvalds 	unsigned long rlim, retval;
2461da177e4SLinus Torvalds 	unsigned long newbrk, oldbrk;
2471da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
248a5b4592cSJiri Kosina 	unsigned long min_brk;
2491da177e4SLinus Torvalds 
2501da177e4SLinus Torvalds 	down_write(&mm->mmap_sem);
2511da177e4SLinus Torvalds 
252a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK
2535520e894SJiri Kosina 	/*
2545520e894SJiri Kosina 	 * CONFIG_COMPAT_BRK can still be overridden by setting
2555520e894SJiri Kosina 	 * randomize_va_space to 2, which will still cause mm->start_brk
2565520e894SJiri Kosina 	 * to be arbitrarily shifted
2575520e894SJiri Kosina 	 */
2584471a675SJiri Kosina 	if (current->brk_randomized)
2595520e894SJiri Kosina 		min_brk = mm->start_brk;
2605520e894SJiri Kosina 	else
2615520e894SJiri Kosina 		min_brk = mm->end_data;
262a5b4592cSJiri Kosina #else
263a5b4592cSJiri Kosina 	min_brk = mm->start_brk;
264a5b4592cSJiri Kosina #endif
265a5b4592cSJiri Kosina 	if (brk < min_brk)
2661da177e4SLinus Torvalds 		goto out;
2671e624196SRam Gupta 
2681e624196SRam Gupta 	/*
2691e624196SRam Gupta 	 * Check against rlimit here. If this check is done later after the test
2701e624196SRam Gupta 	 * of oldbrk with newbrk then it can escape the test and let the data
2711e624196SRam Gupta 	 * segment grow beyond its set limit the in case where the limit is
2721e624196SRam Gupta 	 * not page aligned -Ram Gupta
2731e624196SRam Gupta 	 */
27459e99e5bSJiri Slaby 	rlim = rlimit(RLIMIT_DATA);
275c1d171a0SJiri Kosina 	if (rlim < RLIM_INFINITY && (brk - mm->start_brk) +
276c1d171a0SJiri Kosina 			(mm->end_data - mm->start_data) > rlim)
2771e624196SRam Gupta 		goto out;
2781e624196SRam Gupta 
2791da177e4SLinus Torvalds 	newbrk = PAGE_ALIGN(brk);
2801da177e4SLinus Torvalds 	oldbrk = PAGE_ALIGN(mm->brk);
2811da177e4SLinus Torvalds 	if (oldbrk == newbrk)
2821da177e4SLinus Torvalds 		goto set_brk;
2831da177e4SLinus Torvalds 
2841da177e4SLinus Torvalds 	/* Always allow shrinking brk. */
2851da177e4SLinus Torvalds 	if (brk <= mm->brk) {
2861da177e4SLinus Torvalds 		if (!do_munmap(mm, newbrk, oldbrk-newbrk))
2871da177e4SLinus Torvalds 			goto set_brk;
2881da177e4SLinus Torvalds 		goto out;
2891da177e4SLinus Torvalds 	}
2901da177e4SLinus Torvalds 
2911da177e4SLinus Torvalds 	/* Check against existing mmap mappings. */
2921da177e4SLinus Torvalds 	if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
2931da177e4SLinus Torvalds 		goto out;
2941da177e4SLinus Torvalds 
2951da177e4SLinus Torvalds 	/* Ok, looks good - let it rip. */
2961da177e4SLinus Torvalds 	if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
2971da177e4SLinus Torvalds 		goto out;
2981da177e4SLinus Torvalds set_brk:
2991da177e4SLinus Torvalds 	mm->brk = brk;
3001da177e4SLinus Torvalds out:
3011da177e4SLinus Torvalds 	retval = mm->brk;
3021da177e4SLinus Torvalds 	up_write(&mm->mmap_sem);
3031da177e4SLinus Torvalds 	return retval;
3041da177e4SLinus Torvalds }
3051da177e4SLinus Torvalds 
3061da177e4SLinus Torvalds #ifdef DEBUG_MM_RB
3071da177e4SLinus Torvalds static int browse_rb(struct rb_root *root)
3081da177e4SLinus Torvalds {
3091da177e4SLinus Torvalds 	int i = 0, j;
3101da177e4SLinus Torvalds 	struct rb_node *nd, *pn = NULL;
3111da177e4SLinus Torvalds 	unsigned long prev = 0, pend = 0;
3121da177e4SLinus Torvalds 
3131da177e4SLinus Torvalds 	for (nd = rb_first(root); nd; nd = rb_next(nd)) {
3141da177e4SLinus Torvalds 		struct vm_area_struct *vma;
3151da177e4SLinus Torvalds 		vma = rb_entry(nd, struct vm_area_struct, vm_rb);
3161da177e4SLinus Torvalds 		if (vma->vm_start < prev)
3171da177e4SLinus Torvalds 			printk("vm_start %lx prev %lx\n", vma->vm_start, prev), i = -1;
3181da177e4SLinus Torvalds 		if (vma->vm_start < pend)
3191da177e4SLinus Torvalds 			printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
3201da177e4SLinus Torvalds 		if (vma->vm_start > vma->vm_end)
3211da177e4SLinus Torvalds 			printk("vm_end %lx < vm_start %lx\n", vma->vm_end, vma->vm_start);
3221da177e4SLinus Torvalds 		i++;
3231da177e4SLinus Torvalds 		pn = nd;
324d1af65d1SDavid Miller 		prev = vma->vm_start;
325d1af65d1SDavid Miller 		pend = vma->vm_end;
3261da177e4SLinus Torvalds 	}
3271da177e4SLinus Torvalds 	j = 0;
3281da177e4SLinus Torvalds 	for (nd = pn; nd; nd = rb_prev(nd)) {
3291da177e4SLinus Torvalds 		j++;
3301da177e4SLinus Torvalds 	}
3311da177e4SLinus Torvalds 	if (i != j)
3321da177e4SLinus Torvalds 		printk("backwards %d, forwards %d\n", j, i), i = 0;
3331da177e4SLinus Torvalds 	return i;
3341da177e4SLinus Torvalds }
3351da177e4SLinus Torvalds 
3361da177e4SLinus Torvalds void validate_mm(struct mm_struct *mm)
3371da177e4SLinus Torvalds {
3381da177e4SLinus Torvalds 	int bug = 0;
3391da177e4SLinus Torvalds 	int i = 0;
3401da177e4SLinus Torvalds 	struct vm_area_struct *tmp = mm->mmap;
3411da177e4SLinus Torvalds 	while (tmp) {
3421da177e4SLinus Torvalds 		tmp = tmp->vm_next;
3431da177e4SLinus Torvalds 		i++;
3441da177e4SLinus Torvalds 	}
3451da177e4SLinus Torvalds 	if (i != mm->map_count)
3461da177e4SLinus Torvalds 		printk("map_count %d vm_next %d\n", mm->map_count, i), bug = 1;
3471da177e4SLinus Torvalds 	i = browse_rb(&mm->mm_rb);
3481da177e4SLinus Torvalds 	if (i != mm->map_count)
3491da177e4SLinus Torvalds 		printk("map_count %d rb %d\n", mm->map_count, i), bug = 1;
35046a350efSEric Sesterhenn 	BUG_ON(bug);
3511da177e4SLinus Torvalds }
3521da177e4SLinus Torvalds #else
3531da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0)
3541da177e4SLinus Torvalds #endif
3551da177e4SLinus Torvalds 
3561da177e4SLinus Torvalds static struct vm_area_struct *
3571da177e4SLinus Torvalds find_vma_prepare(struct mm_struct *mm, unsigned long addr,
3581da177e4SLinus Torvalds 		struct vm_area_struct **pprev, struct rb_node ***rb_link,
3591da177e4SLinus Torvalds 		struct rb_node ** rb_parent)
3601da177e4SLinus Torvalds {
3611da177e4SLinus Torvalds 	struct vm_area_struct * vma;
3621da177e4SLinus Torvalds 	struct rb_node ** __rb_link, * __rb_parent, * rb_prev;
3631da177e4SLinus Torvalds 
3641da177e4SLinus Torvalds 	__rb_link = &mm->mm_rb.rb_node;
3651da177e4SLinus Torvalds 	rb_prev = __rb_parent = NULL;
3661da177e4SLinus Torvalds 	vma = NULL;
3671da177e4SLinus Torvalds 
3681da177e4SLinus Torvalds 	while (*__rb_link) {
3691da177e4SLinus Torvalds 		struct vm_area_struct *vma_tmp;
3701da177e4SLinus Torvalds 
3711da177e4SLinus Torvalds 		__rb_parent = *__rb_link;
3721da177e4SLinus Torvalds 		vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
3731da177e4SLinus Torvalds 
3741da177e4SLinus Torvalds 		if (vma_tmp->vm_end > addr) {
3751da177e4SLinus Torvalds 			vma = vma_tmp;
3761da177e4SLinus Torvalds 			if (vma_tmp->vm_start <= addr)
377dfe195fbSBenny Halevy 				break;
3781da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_left;
3791da177e4SLinus Torvalds 		} else {
3801da177e4SLinus Torvalds 			rb_prev = __rb_parent;
3811da177e4SLinus Torvalds 			__rb_link = &__rb_parent->rb_right;
3821da177e4SLinus Torvalds 		}
3831da177e4SLinus Torvalds 	}
3841da177e4SLinus Torvalds 
3851da177e4SLinus Torvalds 	*pprev = NULL;
3861da177e4SLinus Torvalds 	if (rb_prev)
3871da177e4SLinus Torvalds 		*pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
3881da177e4SLinus Torvalds 	*rb_link = __rb_link;
3891da177e4SLinus Torvalds 	*rb_parent = __rb_parent;
3901da177e4SLinus Torvalds 	return vma;
3911da177e4SLinus Torvalds }
3921da177e4SLinus Torvalds 
3931da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
3941da177e4SLinus Torvalds 		struct rb_node **rb_link, struct rb_node *rb_parent)
3951da177e4SLinus Torvalds {
3961da177e4SLinus Torvalds 	rb_link_node(&vma->vm_rb, rb_parent, rb_link);
3971da177e4SLinus Torvalds 	rb_insert_color(&vma->vm_rb, &mm->mm_rb);
3981da177e4SLinus Torvalds }
3991da177e4SLinus Torvalds 
400cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma)
4011da177e4SLinus Torvalds {
4021da177e4SLinus Torvalds 	struct file *file;
4031da177e4SLinus Torvalds 
4041da177e4SLinus Torvalds 	file = vma->vm_file;
4051da177e4SLinus Torvalds 	if (file) {
4061da177e4SLinus Torvalds 		struct address_space *mapping = file->f_mapping;
4071da177e4SLinus Torvalds 
4081da177e4SLinus Torvalds 		if (vma->vm_flags & VM_DENYWRITE)
409d3ac7f89SJosef "Jeff" Sipek 			atomic_dec(&file->f_path.dentry->d_inode->i_writecount);
4101da177e4SLinus Torvalds 		if (vma->vm_flags & VM_SHARED)
4111da177e4SLinus Torvalds 			mapping->i_mmap_writable++;
4121da177e4SLinus Torvalds 
4131da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
4141da177e4SLinus Torvalds 		if (unlikely(vma->vm_flags & VM_NONLINEAR))
4151da177e4SLinus Torvalds 			vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
4161da177e4SLinus Torvalds 		else
4171da177e4SLinus Torvalds 			vma_prio_tree_insert(vma, &mapping->i_mmap);
4181da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
4191da177e4SLinus Torvalds 	}
4201da177e4SLinus Torvalds }
4211da177e4SLinus Torvalds 
4221da177e4SLinus Torvalds static void
4231da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
4241da177e4SLinus Torvalds 	struct vm_area_struct *prev, struct rb_node **rb_link,
4251da177e4SLinus Torvalds 	struct rb_node *rb_parent)
4261da177e4SLinus Torvalds {
4271da177e4SLinus Torvalds 	__vma_link_list(mm, vma, prev, rb_parent);
4281da177e4SLinus Torvalds 	__vma_link_rb(mm, vma, rb_link, rb_parent);
4291da177e4SLinus Torvalds }
4301da177e4SLinus Torvalds 
4311da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
4321da177e4SLinus Torvalds 			struct vm_area_struct *prev, struct rb_node **rb_link,
4331da177e4SLinus Torvalds 			struct rb_node *rb_parent)
4341da177e4SLinus Torvalds {
4351da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
4361da177e4SLinus Torvalds 
4371da177e4SLinus Torvalds 	if (vma->vm_file)
4381da177e4SLinus Torvalds 		mapping = vma->vm_file->f_mapping;
4391da177e4SLinus Torvalds 
44097a89413SPeter Zijlstra 	if (mapping)
4413d48ae45SPeter Zijlstra 		mutex_lock(&mapping->i_mmap_mutex);
4421da177e4SLinus Torvalds 
4431da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
4441da177e4SLinus Torvalds 	__vma_link_file(vma);
4451da177e4SLinus Torvalds 
4461da177e4SLinus Torvalds 	if (mapping)
4473d48ae45SPeter Zijlstra 		mutex_unlock(&mapping->i_mmap_mutex);
4481da177e4SLinus Torvalds 
4491da177e4SLinus Torvalds 	mm->map_count++;
4501da177e4SLinus Torvalds 	validate_mm(mm);
4511da177e4SLinus Torvalds }
4521da177e4SLinus Torvalds 
4531da177e4SLinus Torvalds /*
45488f6b4c3SKautuk Consul  * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
45588f6b4c3SKautuk Consul  * mm's list and rbtree.  It has already been inserted into the prio_tree.
4561da177e4SLinus Torvalds  */
45748aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
4581da177e4SLinus Torvalds {
4591da177e4SLinus Torvalds 	struct vm_area_struct *__vma, *prev;
4601da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
4611da177e4SLinus Torvalds 
4621da177e4SLinus Torvalds 	__vma = find_vma_prepare(mm, vma->vm_start,&prev, &rb_link, &rb_parent);
46346a350efSEric Sesterhenn 	BUG_ON(__vma && __vma->vm_start < vma->vm_end);
4641da177e4SLinus Torvalds 	__vma_link(mm, vma, prev, rb_link, rb_parent);
4651da177e4SLinus Torvalds 	mm->map_count++;
4661da177e4SLinus Torvalds }
4671da177e4SLinus Torvalds 
4681da177e4SLinus Torvalds static inline void
4691da177e4SLinus Torvalds __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
4701da177e4SLinus Torvalds 		struct vm_area_struct *prev)
4711da177e4SLinus Torvalds {
472297c5eeeSLinus Torvalds 	struct vm_area_struct *next = vma->vm_next;
473297c5eeeSLinus Torvalds 
474297c5eeeSLinus Torvalds 	prev->vm_next = next;
475297c5eeeSLinus Torvalds 	if (next)
476297c5eeeSLinus Torvalds 		next->vm_prev = prev;
4771da177e4SLinus Torvalds 	rb_erase(&vma->vm_rb, &mm->mm_rb);
4781da177e4SLinus Torvalds 	if (mm->mmap_cache == vma)
4791da177e4SLinus Torvalds 		mm->mmap_cache = prev;
4801da177e4SLinus Torvalds }
4811da177e4SLinus Torvalds 
4821da177e4SLinus Torvalds /*
4831da177e4SLinus Torvalds  * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
4841da177e4SLinus Torvalds  * is already present in an i_mmap tree without adjusting the tree.
4851da177e4SLinus Torvalds  * The following helper function should be used when such adjustments
4861da177e4SLinus Torvalds  * are necessary.  The "insert" vma (if any) is to be inserted
4871da177e4SLinus Torvalds  * before we drop the necessary locks.
4881da177e4SLinus Torvalds  */
4895beb4930SRik van Riel int vma_adjust(struct vm_area_struct *vma, unsigned long start,
4901da177e4SLinus Torvalds 	unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
4911da177e4SLinus Torvalds {
4921da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
4931da177e4SLinus Torvalds 	struct vm_area_struct *next = vma->vm_next;
4941da177e4SLinus Torvalds 	struct vm_area_struct *importer = NULL;
4951da177e4SLinus Torvalds 	struct address_space *mapping = NULL;
4961da177e4SLinus Torvalds 	struct prio_tree_root *root = NULL;
497012f1800SRik van Riel 	struct anon_vma *anon_vma = NULL;
4981da177e4SLinus Torvalds 	struct file *file = vma->vm_file;
4991da177e4SLinus Torvalds 	long adjust_next = 0;
5001da177e4SLinus Torvalds 	int remove_next = 0;
5011da177e4SLinus Torvalds 
5021da177e4SLinus Torvalds 	if (next && !insert) {
503287d97acSLinus Torvalds 		struct vm_area_struct *exporter = NULL;
504287d97acSLinus Torvalds 
5051da177e4SLinus Torvalds 		if (end >= next->vm_end) {
5061da177e4SLinus Torvalds 			/*
5071da177e4SLinus Torvalds 			 * vma expands, overlapping all the next, and
5081da177e4SLinus Torvalds 			 * perhaps the one after too (mprotect case 6).
5091da177e4SLinus Torvalds 			 */
5101da177e4SLinus Torvalds again:			remove_next = 1 + (end > next->vm_end);
5111da177e4SLinus Torvalds 			end = next->vm_end;
512287d97acSLinus Torvalds 			exporter = next;
5131da177e4SLinus Torvalds 			importer = vma;
5141da177e4SLinus Torvalds 		} else if (end > next->vm_start) {
5151da177e4SLinus Torvalds 			/*
5161da177e4SLinus Torvalds 			 * vma expands, overlapping part of the next:
5171da177e4SLinus Torvalds 			 * mprotect case 5 shifting the boundary up.
5181da177e4SLinus Torvalds 			 */
5191da177e4SLinus Torvalds 			adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
520287d97acSLinus Torvalds 			exporter = next;
5211da177e4SLinus Torvalds 			importer = vma;
5221da177e4SLinus Torvalds 		} else if (end < vma->vm_end) {
5231da177e4SLinus Torvalds 			/*
5241da177e4SLinus Torvalds 			 * vma shrinks, and !insert tells it's not
5251da177e4SLinus Torvalds 			 * split_vma inserting another: so it must be
5261da177e4SLinus Torvalds 			 * mprotect case 4 shifting the boundary down.
5271da177e4SLinus Torvalds 			 */
5281da177e4SLinus Torvalds 			adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
529287d97acSLinus Torvalds 			exporter = vma;
5301da177e4SLinus Torvalds 			importer = next;
5311da177e4SLinus Torvalds 		}
5321da177e4SLinus Torvalds 
5335beb4930SRik van Riel 		/*
5345beb4930SRik van Riel 		 * Easily overlooked: when mprotect shifts the boundary,
5355beb4930SRik van Riel 		 * make sure the expanding vma has anon_vma set if the
5365beb4930SRik van Riel 		 * shrinking vma had, to cover any anon pages imported.
5375beb4930SRik van Riel 		 */
538287d97acSLinus Torvalds 		if (exporter && exporter->anon_vma && !importer->anon_vma) {
539287d97acSLinus Torvalds 			if (anon_vma_clone(importer, exporter))
5405beb4930SRik van Riel 				return -ENOMEM;
541287d97acSLinus Torvalds 			importer->anon_vma = exporter->anon_vma;
5425beb4930SRik van Riel 		}
5435beb4930SRik van Riel 	}
5445beb4930SRik van Riel 
5451da177e4SLinus Torvalds 	if (file) {
5461da177e4SLinus Torvalds 		mapping = file->f_mapping;
547682968e0SSrikar Dronamraju 		if (!(vma->vm_flags & VM_NONLINEAR)) {
5481da177e4SLinus Torvalds 			root = &mapping->i_mmap;
549cbc91f71SSrikar Dronamraju 			uprobe_munmap(vma, vma->vm_start, vma->vm_end);
550682968e0SSrikar Dronamraju 
551682968e0SSrikar Dronamraju 			if (adjust_next)
552cbc91f71SSrikar Dronamraju 				uprobe_munmap(next, next->vm_start,
553cbc91f71SSrikar Dronamraju 							next->vm_end);
554682968e0SSrikar Dronamraju 		}
555682968e0SSrikar Dronamraju 
5563d48ae45SPeter Zijlstra 		mutex_lock(&mapping->i_mmap_mutex);
5571da177e4SLinus Torvalds 		if (insert) {
5581da177e4SLinus Torvalds 			/*
5591da177e4SLinus Torvalds 			 * Put into prio_tree now, so instantiated pages
5601da177e4SLinus Torvalds 			 * are visible to arm/parisc __flush_dcache_page
5611da177e4SLinus Torvalds 			 * throughout; but we cannot insert into address
5621da177e4SLinus Torvalds 			 * space until vma start or end is updated.
5631da177e4SLinus Torvalds 			 */
5641da177e4SLinus Torvalds 			__vma_link_file(insert);
5651da177e4SLinus Torvalds 		}
5661da177e4SLinus Torvalds 	}
5671da177e4SLinus Torvalds 
56894fcc585SAndrea Arcangeli 	vma_adjust_trans_huge(vma, start, end, adjust_next);
56994fcc585SAndrea Arcangeli 
570012f1800SRik van Riel 	/*
571012f1800SRik van Riel 	 * When changing only vma->vm_end, we don't really need anon_vma
572012f1800SRik van Riel 	 * lock. This is a fairly rare case by itself, but the anon_vma
573012f1800SRik van Riel 	 * lock may be shared between many sibling processes.  Skipping
574012f1800SRik van Riel 	 * the lock for brk adjustments makes a difference sometimes.
575012f1800SRik van Riel 	 */
5765f70b962SShaohua Li 	if (vma->anon_vma && (importer || start != vma->vm_start)) {
577012f1800SRik van Riel 		anon_vma = vma->anon_vma;
578012f1800SRik van Riel 		anon_vma_lock(anon_vma);
579012f1800SRik van Riel 	}
580012f1800SRik van Riel 
5811da177e4SLinus Torvalds 	if (root) {
5821da177e4SLinus Torvalds 		flush_dcache_mmap_lock(mapping);
5831da177e4SLinus Torvalds 		vma_prio_tree_remove(vma, root);
5841da177e4SLinus Torvalds 		if (adjust_next)
5851da177e4SLinus Torvalds 			vma_prio_tree_remove(next, root);
5861da177e4SLinus Torvalds 	}
5871da177e4SLinus Torvalds 
5881da177e4SLinus Torvalds 	vma->vm_start = start;
5891da177e4SLinus Torvalds 	vma->vm_end = end;
5901da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
5911da177e4SLinus Torvalds 	if (adjust_next) {
5921da177e4SLinus Torvalds 		next->vm_start += adjust_next << PAGE_SHIFT;
5931da177e4SLinus Torvalds 		next->vm_pgoff += adjust_next;
5941da177e4SLinus Torvalds 	}
5951da177e4SLinus Torvalds 
5961da177e4SLinus Torvalds 	if (root) {
5971da177e4SLinus Torvalds 		if (adjust_next)
5981da177e4SLinus Torvalds 			vma_prio_tree_insert(next, root);
5991da177e4SLinus Torvalds 		vma_prio_tree_insert(vma, root);
6001da177e4SLinus Torvalds 		flush_dcache_mmap_unlock(mapping);
6011da177e4SLinus Torvalds 	}
6021da177e4SLinus Torvalds 
6031da177e4SLinus Torvalds 	if (remove_next) {
6041da177e4SLinus Torvalds 		/*
6051da177e4SLinus Torvalds 		 * vma_merge has merged next into vma, and needs
6061da177e4SLinus Torvalds 		 * us to remove next before dropping the locks.
6071da177e4SLinus Torvalds 		 */
6081da177e4SLinus Torvalds 		__vma_unlink(mm, next, vma);
6091da177e4SLinus Torvalds 		if (file)
6101da177e4SLinus Torvalds 			__remove_shared_vm_struct(next, file, mapping);
6111da177e4SLinus Torvalds 	} else if (insert) {
6121da177e4SLinus Torvalds 		/*
6131da177e4SLinus Torvalds 		 * split_vma has split insert from vma, and needs
6141da177e4SLinus Torvalds 		 * us to insert it before dropping the locks
6151da177e4SLinus Torvalds 		 * (it may either follow vma or precede it).
6161da177e4SLinus Torvalds 		 */
6171da177e4SLinus Torvalds 		__insert_vm_struct(mm, insert);
6181da177e4SLinus Torvalds 	}
6191da177e4SLinus Torvalds 
620012f1800SRik van Riel 	if (anon_vma)
621012f1800SRik van Riel 		anon_vma_unlock(anon_vma);
6221da177e4SLinus Torvalds 	if (mapping)
6233d48ae45SPeter Zijlstra 		mutex_unlock(&mapping->i_mmap_mutex);
6241da177e4SLinus Torvalds 
6252b144498SSrikar Dronamraju 	if (root) {
6267b2d81d4SIngo Molnar 		uprobe_mmap(vma);
6272b144498SSrikar Dronamraju 
6282b144498SSrikar Dronamraju 		if (adjust_next)
6297b2d81d4SIngo Molnar 			uprobe_mmap(next);
6302b144498SSrikar Dronamraju 	}
6312b144498SSrikar Dronamraju 
6321da177e4SLinus Torvalds 	if (remove_next) {
633925d1c40SMatt Helsley 		if (file) {
634cbc91f71SSrikar Dronamraju 			uprobe_munmap(next, next->vm_start, next->vm_end);
6351da177e4SLinus Torvalds 			fput(file);
636925d1c40SMatt Helsley 		}
6375beb4930SRik van Riel 		if (next->anon_vma)
6385beb4930SRik van Riel 			anon_vma_merge(vma, next);
6391da177e4SLinus Torvalds 		mm->map_count--;
640f0be3d32SLee Schermerhorn 		mpol_put(vma_policy(next));
6411da177e4SLinus Torvalds 		kmem_cache_free(vm_area_cachep, next);
6421da177e4SLinus Torvalds 		/*
6431da177e4SLinus Torvalds 		 * In mprotect's case 6 (see comments on vma_merge),
6441da177e4SLinus Torvalds 		 * we must remove another next too. It would clutter
6451da177e4SLinus Torvalds 		 * up the code too much to do both in one go.
6461da177e4SLinus Torvalds 		 */
6471da177e4SLinus Torvalds 		if (remove_next == 2) {
6481da177e4SLinus Torvalds 			next = vma->vm_next;
6491da177e4SLinus Torvalds 			goto again;
6501da177e4SLinus Torvalds 		}
6511da177e4SLinus Torvalds 	}
6522b144498SSrikar Dronamraju 	if (insert && file)
6537b2d81d4SIngo Molnar 		uprobe_mmap(insert);
6541da177e4SLinus Torvalds 
6551da177e4SLinus Torvalds 	validate_mm(mm);
6565beb4930SRik van Riel 
6575beb4930SRik van Riel 	return 0;
6581da177e4SLinus Torvalds }
6591da177e4SLinus Torvalds 
6601da177e4SLinus Torvalds /*
6611da177e4SLinus Torvalds  * If the vma has a ->close operation then the driver probably needs to release
6621da177e4SLinus Torvalds  * per-vma resources, so we don't attempt to merge those.
6631da177e4SLinus Torvalds  */
6641da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma,
6651da177e4SLinus Torvalds 			struct file *file, unsigned long vm_flags)
6661da177e4SLinus Torvalds {
6670b173bc4SKonstantin Khlebnikov 	if (vma->vm_flags ^ vm_flags)
6681da177e4SLinus Torvalds 		return 0;
6691da177e4SLinus Torvalds 	if (vma->vm_file != file)
6701da177e4SLinus Torvalds 		return 0;
6711da177e4SLinus Torvalds 	if (vma->vm_ops && vma->vm_ops->close)
6721da177e4SLinus Torvalds 		return 0;
6731da177e4SLinus Torvalds 	return 1;
6741da177e4SLinus Torvalds }
6751da177e4SLinus Torvalds 
6761da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
677965f55deSShaohua Li 					struct anon_vma *anon_vma2,
678965f55deSShaohua Li 					struct vm_area_struct *vma)
6791da177e4SLinus Torvalds {
680965f55deSShaohua Li 	/*
681965f55deSShaohua Li 	 * The list_is_singular() test is to avoid merging VMA cloned from
682965f55deSShaohua Li 	 * parents. This can improve scalability caused by anon_vma lock.
683965f55deSShaohua Li 	 */
684965f55deSShaohua Li 	if ((!anon_vma1 || !anon_vma2) && (!vma ||
685965f55deSShaohua Li 		list_is_singular(&vma->anon_vma_chain)))
686965f55deSShaohua Li 		return 1;
687965f55deSShaohua Li 	return anon_vma1 == anon_vma2;
6881da177e4SLinus Torvalds }
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds /*
6911da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
6921da177e4SLinus Torvalds  * in front of (at a lower virtual address and file offset than) the vma.
6931da177e4SLinus Torvalds  *
6941da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
6951da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
6961da177e4SLinus Torvalds  *
6971da177e4SLinus Torvalds  * We don't check here for the merged mmap wrapping around the end of pagecache
6981da177e4SLinus Torvalds  * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
6991da177e4SLinus Torvalds  * wrap, nor mmaps which cover the final page at index -1UL.
7001da177e4SLinus Torvalds  */
7011da177e4SLinus Torvalds static int
7021da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
7031da177e4SLinus Torvalds 	struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
7041da177e4SLinus Torvalds {
7051da177e4SLinus Torvalds 	if (is_mergeable_vma(vma, file, vm_flags) &&
706965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
7071da177e4SLinus Torvalds 		if (vma->vm_pgoff == vm_pgoff)
7081da177e4SLinus Torvalds 			return 1;
7091da177e4SLinus Torvalds 	}
7101da177e4SLinus Torvalds 	return 0;
7111da177e4SLinus Torvalds }
7121da177e4SLinus Torvalds 
7131da177e4SLinus Torvalds /*
7141da177e4SLinus Torvalds  * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
7151da177e4SLinus Torvalds  * beyond (at a higher virtual address and file offset than) the vma.
7161da177e4SLinus Torvalds  *
7171da177e4SLinus Torvalds  * We cannot merge two vmas if they have differently assigned (non-NULL)
7181da177e4SLinus Torvalds  * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
7191da177e4SLinus Torvalds  */
7201da177e4SLinus Torvalds static int
7211da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
7221da177e4SLinus Torvalds 	struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
7231da177e4SLinus Torvalds {
7241da177e4SLinus Torvalds 	if (is_mergeable_vma(vma, file, vm_flags) &&
725965f55deSShaohua Li 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
7261da177e4SLinus Torvalds 		pgoff_t vm_pglen;
7271da177e4SLinus Torvalds 		vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
7281da177e4SLinus Torvalds 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
7291da177e4SLinus Torvalds 			return 1;
7301da177e4SLinus Torvalds 	}
7311da177e4SLinus Torvalds 	return 0;
7321da177e4SLinus Torvalds }
7331da177e4SLinus Torvalds 
7341da177e4SLinus Torvalds /*
7351da177e4SLinus Torvalds  * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
7361da177e4SLinus Torvalds  * whether that can be merged with its predecessor or its successor.
7371da177e4SLinus Torvalds  * Or both (it neatly fills a hole).
7381da177e4SLinus Torvalds  *
7391da177e4SLinus Torvalds  * In most cases - when called for mmap, brk or mremap - [addr,end) is
7401da177e4SLinus Torvalds  * certain not to be mapped by the time vma_merge is called; but when
7411da177e4SLinus Torvalds  * called for mprotect, it is certain to be already mapped (either at
7421da177e4SLinus Torvalds  * an offset within prev, or at the start of next), and the flags of
7431da177e4SLinus Torvalds  * this area are about to be changed to vm_flags - and the no-change
7441da177e4SLinus Torvalds  * case has already been eliminated.
7451da177e4SLinus Torvalds  *
7461da177e4SLinus Torvalds  * The following mprotect cases have to be considered, where AAAA is
7471da177e4SLinus Torvalds  * the area passed down from mprotect_fixup, never extending beyond one
7481da177e4SLinus Torvalds  * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
7491da177e4SLinus Torvalds  *
7501da177e4SLinus Torvalds  *     AAAA             AAAA                AAAA          AAAA
7511da177e4SLinus Torvalds  *    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPPPNNNNNN    PPPPNNNNXXXX
7521da177e4SLinus Torvalds  *    cannot merge    might become    might become    might become
7531da177e4SLinus Torvalds  *                    PPNNNNNNNNNN    PPPPPPPPPPNN    PPPPPPPPPPPP 6 or
7541da177e4SLinus Torvalds  *    mmap, brk or    case 4 below    case 5 below    PPPPPPPPXXXX 7 or
7551da177e4SLinus Torvalds  *    mremap move:                                    PPPPNNNNNNNN 8
7561da177e4SLinus Torvalds  *        AAAA
7571da177e4SLinus Torvalds  *    PPPP    NNNN    PPPPPPPPPPPP    PPPPPPPPNNNN    PPPPNNNNNNNN
7581da177e4SLinus Torvalds  *    might become    case 1 below    case 2 below    case 3 below
7591da177e4SLinus Torvalds  *
7601da177e4SLinus Torvalds  * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
7611da177e4SLinus Torvalds  * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
7621da177e4SLinus Torvalds  */
7631da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm,
7641da177e4SLinus Torvalds 			struct vm_area_struct *prev, unsigned long addr,
7651da177e4SLinus Torvalds 			unsigned long end, unsigned long vm_flags,
7661da177e4SLinus Torvalds 		     	struct anon_vma *anon_vma, struct file *file,
7671da177e4SLinus Torvalds 			pgoff_t pgoff, struct mempolicy *policy)
7681da177e4SLinus Torvalds {
7691da177e4SLinus Torvalds 	pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
7701da177e4SLinus Torvalds 	struct vm_area_struct *area, *next;
7715beb4930SRik van Riel 	int err;
7721da177e4SLinus Torvalds 
7731da177e4SLinus Torvalds 	/*
7741da177e4SLinus Torvalds 	 * We later require that vma->vm_flags == vm_flags,
7751da177e4SLinus Torvalds 	 * so this tests vma->vm_flags & VM_SPECIAL, too.
7761da177e4SLinus Torvalds 	 */
7771da177e4SLinus Torvalds 	if (vm_flags & VM_SPECIAL)
7781da177e4SLinus Torvalds 		return NULL;
7791da177e4SLinus Torvalds 
7801da177e4SLinus Torvalds 	if (prev)
7811da177e4SLinus Torvalds 		next = prev->vm_next;
7821da177e4SLinus Torvalds 	else
7831da177e4SLinus Torvalds 		next = mm->mmap;
7841da177e4SLinus Torvalds 	area = next;
7851da177e4SLinus Torvalds 	if (next && next->vm_end == end)		/* cases 6, 7, 8 */
7861da177e4SLinus Torvalds 		next = next->vm_next;
7871da177e4SLinus Torvalds 
7881da177e4SLinus Torvalds 	/*
7891da177e4SLinus Torvalds 	 * Can it merge with the predecessor?
7901da177e4SLinus Torvalds 	 */
7911da177e4SLinus Torvalds 	if (prev && prev->vm_end == addr &&
7921da177e4SLinus Torvalds   			mpol_equal(vma_policy(prev), policy) &&
7931da177e4SLinus Torvalds 			can_vma_merge_after(prev, vm_flags,
7941da177e4SLinus Torvalds 						anon_vma, file, pgoff)) {
7951da177e4SLinus Torvalds 		/*
7961da177e4SLinus Torvalds 		 * OK, it can.  Can we now merge in the successor as well?
7971da177e4SLinus Torvalds 		 */
7981da177e4SLinus Torvalds 		if (next && end == next->vm_start &&
7991da177e4SLinus Torvalds 				mpol_equal(policy, vma_policy(next)) &&
8001da177e4SLinus Torvalds 				can_vma_merge_before(next, vm_flags,
8011da177e4SLinus Torvalds 					anon_vma, file, pgoff+pglen) &&
8021da177e4SLinus Torvalds 				is_mergeable_anon_vma(prev->anon_vma,
803965f55deSShaohua Li 						      next->anon_vma, NULL)) {
8041da177e4SLinus Torvalds 							/* cases 1, 6 */
8055beb4930SRik van Riel 			err = vma_adjust(prev, prev->vm_start,
8061da177e4SLinus Torvalds 				next->vm_end, prev->vm_pgoff, NULL);
8071da177e4SLinus Torvalds 		} else					/* cases 2, 5, 7 */
8085beb4930SRik van Riel 			err = vma_adjust(prev, prev->vm_start,
8091da177e4SLinus Torvalds 				end, prev->vm_pgoff, NULL);
8105beb4930SRik van Riel 		if (err)
8115beb4930SRik van Riel 			return NULL;
812b15d00b6SAndrea Arcangeli 		khugepaged_enter_vma_merge(prev);
8131da177e4SLinus Torvalds 		return prev;
8141da177e4SLinus Torvalds 	}
8151da177e4SLinus Torvalds 
8161da177e4SLinus Torvalds 	/*
8171da177e4SLinus Torvalds 	 * Can this new request be merged in front of next?
8181da177e4SLinus Torvalds 	 */
8191da177e4SLinus Torvalds 	if (next && end == next->vm_start &&
8201da177e4SLinus Torvalds  			mpol_equal(policy, vma_policy(next)) &&
8211da177e4SLinus Torvalds 			can_vma_merge_before(next, vm_flags,
8221da177e4SLinus Torvalds 					anon_vma, file, pgoff+pglen)) {
8231da177e4SLinus Torvalds 		if (prev && addr < prev->vm_end)	/* case 4 */
8245beb4930SRik van Riel 			err = vma_adjust(prev, prev->vm_start,
8251da177e4SLinus Torvalds 				addr, prev->vm_pgoff, NULL);
8261da177e4SLinus Torvalds 		else					/* cases 3, 8 */
8275beb4930SRik van Riel 			err = vma_adjust(area, addr, next->vm_end,
8281da177e4SLinus Torvalds 				next->vm_pgoff - pglen, NULL);
8295beb4930SRik van Riel 		if (err)
8305beb4930SRik van Riel 			return NULL;
831b15d00b6SAndrea Arcangeli 		khugepaged_enter_vma_merge(area);
8321da177e4SLinus Torvalds 		return area;
8331da177e4SLinus Torvalds 	}
8341da177e4SLinus Torvalds 
8351da177e4SLinus Torvalds 	return NULL;
8361da177e4SLinus Torvalds }
8371da177e4SLinus Torvalds 
8381da177e4SLinus Torvalds /*
839d0e9fe17SLinus Torvalds  * Rough compatbility check to quickly see if it's even worth looking
840d0e9fe17SLinus Torvalds  * at sharing an anon_vma.
841d0e9fe17SLinus Torvalds  *
842d0e9fe17SLinus Torvalds  * They need to have the same vm_file, and the flags can only differ
843d0e9fe17SLinus Torvalds  * in things that mprotect may change.
844d0e9fe17SLinus Torvalds  *
845d0e9fe17SLinus Torvalds  * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
846d0e9fe17SLinus Torvalds  * we can merge the two vma's. For example, we refuse to merge a vma if
847d0e9fe17SLinus Torvalds  * there is a vm_ops->close() function, because that indicates that the
848d0e9fe17SLinus Torvalds  * driver is doing some kind of reference counting. But that doesn't
849d0e9fe17SLinus Torvalds  * really matter for the anon_vma sharing case.
850d0e9fe17SLinus Torvalds  */
851d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
852d0e9fe17SLinus Torvalds {
853d0e9fe17SLinus Torvalds 	return a->vm_end == b->vm_start &&
854d0e9fe17SLinus Torvalds 		mpol_equal(vma_policy(a), vma_policy(b)) &&
855d0e9fe17SLinus Torvalds 		a->vm_file == b->vm_file &&
856d0e9fe17SLinus Torvalds 		!((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC)) &&
857d0e9fe17SLinus Torvalds 		b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
858d0e9fe17SLinus Torvalds }
859d0e9fe17SLinus Torvalds 
860d0e9fe17SLinus Torvalds /*
861d0e9fe17SLinus Torvalds  * Do some basic sanity checking to see if we can re-use the anon_vma
862d0e9fe17SLinus Torvalds  * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
863d0e9fe17SLinus Torvalds  * the same as 'old', the other will be the new one that is trying
864d0e9fe17SLinus Torvalds  * to share the anon_vma.
865d0e9fe17SLinus Torvalds  *
866d0e9fe17SLinus Torvalds  * NOTE! This runs with mm_sem held for reading, so it is possible that
867d0e9fe17SLinus Torvalds  * the anon_vma of 'old' is concurrently in the process of being set up
868d0e9fe17SLinus Torvalds  * by another page fault trying to merge _that_. But that's ok: if it
869d0e9fe17SLinus Torvalds  * is being set up, that automatically means that it will be a singleton
870d0e9fe17SLinus Torvalds  * acceptable for merging, so we can do all of this optimistically. But
871d0e9fe17SLinus Torvalds  * we do that ACCESS_ONCE() to make sure that we never re-load the pointer.
872d0e9fe17SLinus Torvalds  *
873d0e9fe17SLinus Torvalds  * IOW: that the "list_is_singular()" test on the anon_vma_chain only
874d0e9fe17SLinus Torvalds  * matters for the 'stable anon_vma' case (ie the thing we want to avoid
875d0e9fe17SLinus Torvalds  * is to return an anon_vma that is "complex" due to having gone through
876d0e9fe17SLinus Torvalds  * a fork).
877d0e9fe17SLinus Torvalds  *
878d0e9fe17SLinus Torvalds  * We also make sure that the two vma's are compatible (adjacent,
879d0e9fe17SLinus Torvalds  * and with the same memory policies). That's all stable, even with just
880d0e9fe17SLinus Torvalds  * a read lock on the mm_sem.
881d0e9fe17SLinus Torvalds  */
882d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
883d0e9fe17SLinus Torvalds {
884d0e9fe17SLinus Torvalds 	if (anon_vma_compatible(a, b)) {
885d0e9fe17SLinus Torvalds 		struct anon_vma *anon_vma = ACCESS_ONCE(old->anon_vma);
886d0e9fe17SLinus Torvalds 
887d0e9fe17SLinus Torvalds 		if (anon_vma && list_is_singular(&old->anon_vma_chain))
888d0e9fe17SLinus Torvalds 			return anon_vma;
889d0e9fe17SLinus Torvalds 	}
890d0e9fe17SLinus Torvalds 	return NULL;
891d0e9fe17SLinus Torvalds }
892d0e9fe17SLinus Torvalds 
893d0e9fe17SLinus Torvalds /*
8941da177e4SLinus Torvalds  * find_mergeable_anon_vma is used by anon_vma_prepare, to check
8951da177e4SLinus Torvalds  * neighbouring vmas for a suitable anon_vma, before it goes off
8961da177e4SLinus Torvalds  * to allocate a new anon_vma.  It checks because a repetitive
8971da177e4SLinus Torvalds  * sequence of mprotects and faults may otherwise lead to distinct
8981da177e4SLinus Torvalds  * anon_vmas being allocated, preventing vma merge in subsequent
8991da177e4SLinus Torvalds  * mprotect.
9001da177e4SLinus Torvalds  */
9011da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
9021da177e4SLinus Torvalds {
903d0e9fe17SLinus Torvalds 	struct anon_vma *anon_vma;
9041da177e4SLinus Torvalds 	struct vm_area_struct *near;
9051da177e4SLinus Torvalds 
9061da177e4SLinus Torvalds 	near = vma->vm_next;
9071da177e4SLinus Torvalds 	if (!near)
9081da177e4SLinus Torvalds 		goto try_prev;
9091da177e4SLinus Torvalds 
910d0e9fe17SLinus Torvalds 	anon_vma = reusable_anon_vma(near, vma, near);
911d0e9fe17SLinus Torvalds 	if (anon_vma)
912d0e9fe17SLinus Torvalds 		return anon_vma;
9131da177e4SLinus Torvalds try_prev:
9149be34c9dSLinus Torvalds 	near = vma->vm_prev;
9151da177e4SLinus Torvalds 	if (!near)
9161da177e4SLinus Torvalds 		goto none;
9171da177e4SLinus Torvalds 
918d0e9fe17SLinus Torvalds 	anon_vma = reusable_anon_vma(near, near, vma);
919d0e9fe17SLinus Torvalds 	if (anon_vma)
920d0e9fe17SLinus Torvalds 		return anon_vma;
9211da177e4SLinus Torvalds none:
9221da177e4SLinus Torvalds 	/*
9231da177e4SLinus Torvalds 	 * There's no absolute need to look only at touching neighbours:
9241da177e4SLinus Torvalds 	 * we could search further afield for "compatible" anon_vmas.
9251da177e4SLinus Torvalds 	 * But it would probably just be a waste of time searching,
9261da177e4SLinus Torvalds 	 * or lead to too many vmas hanging off the same anon_vma.
9271da177e4SLinus Torvalds 	 * We're trying to allow mprotect remerging later on,
9281da177e4SLinus Torvalds 	 * not trying to minimize memory used for anon_vmas.
9291da177e4SLinus Torvalds 	 */
9301da177e4SLinus Torvalds 	return NULL;
9311da177e4SLinus Torvalds }
9321da177e4SLinus Torvalds 
9331da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS
934ab50b8edSHugh Dickins void vm_stat_account(struct mm_struct *mm, unsigned long flags,
9351da177e4SLinus Torvalds 						struct file *file, long pages)
9361da177e4SLinus Torvalds {
9371da177e4SLinus Torvalds 	const unsigned long stack_flags
9381da177e4SLinus Torvalds 		= VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN);
9391da177e4SLinus Torvalds 
94044de9d0cSHuang Shijie 	mm->total_vm += pages;
94144de9d0cSHuang Shijie 
9421da177e4SLinus Torvalds 	if (file) {
9431da177e4SLinus Torvalds 		mm->shared_vm += pages;
9441da177e4SLinus Torvalds 		if ((flags & (VM_EXEC|VM_WRITE)) == VM_EXEC)
9451da177e4SLinus Torvalds 			mm->exec_vm += pages;
9461da177e4SLinus Torvalds 	} else if (flags & stack_flags)
9471da177e4SLinus Torvalds 		mm->stack_vm += pages;
9481da177e4SLinus Torvalds 	if (flags & (VM_RESERVED|VM_IO))
9491da177e4SLinus Torvalds 		mm->reserved_vm += pages;
9501da177e4SLinus Torvalds }
9511da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */
9521da177e4SLinus Torvalds 
9531da177e4SLinus Torvalds /*
95440401530SAl Viro  * If a hint addr is less than mmap_min_addr change hint to be as
95540401530SAl Viro  * low as possible but still greater than mmap_min_addr
95640401530SAl Viro  */
95740401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint)
95840401530SAl Viro {
95940401530SAl Viro 	hint &= PAGE_MASK;
96040401530SAl Viro 	if (((void *)hint != NULL) &&
96140401530SAl Viro 	    (hint < mmap_min_addr))
96240401530SAl Viro 		return PAGE_ALIGN(mmap_min_addr);
96340401530SAl Viro 	return hint;
96440401530SAl Viro }
96540401530SAl Viro 
96640401530SAl Viro /*
96727f5de79SJianjun Kong  * The caller must hold down_write(&current->mm->mmap_sem).
9681da177e4SLinus Torvalds  */
9691da177e4SLinus Torvalds 
970e3fc629dSAl Viro unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
9711da177e4SLinus Torvalds 			unsigned long len, unsigned long prot,
9721da177e4SLinus Torvalds 			unsigned long flags, unsigned long pgoff)
9731da177e4SLinus Torvalds {
9741da177e4SLinus Torvalds 	struct mm_struct * mm = current->mm;
9751da177e4SLinus Torvalds 	struct inode *inode;
976ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags;
9771da177e4SLinus Torvalds 
9781da177e4SLinus Torvalds 	/*
9791da177e4SLinus Torvalds 	 * Does the application expect PROT_READ to imply PROT_EXEC?
9801da177e4SLinus Torvalds 	 *
9811da177e4SLinus Torvalds 	 * (the exception is when the underlying filesystem is noexec
9821da177e4SLinus Torvalds 	 *  mounted, in which case we dont add PROT_EXEC.)
9831da177e4SLinus Torvalds 	 */
9841da177e4SLinus Torvalds 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
985d3ac7f89SJosef "Jeff" Sipek 		if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC)))
9861da177e4SLinus Torvalds 			prot |= PROT_EXEC;
9871da177e4SLinus Torvalds 
9881da177e4SLinus Torvalds 	if (!len)
9891da177e4SLinus Torvalds 		return -EINVAL;
9901da177e4SLinus Torvalds 
9917cd94146SEric Paris 	if (!(flags & MAP_FIXED))
9927cd94146SEric Paris 		addr = round_hint_to_min(addr);
9937cd94146SEric Paris 
9941da177e4SLinus Torvalds 	/* Careful about overflows.. */
9951da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
9969206de95SAl Viro 	if (!len)
9971da177e4SLinus Torvalds 		return -ENOMEM;
9981da177e4SLinus Torvalds 
9991da177e4SLinus Torvalds 	/* offset overflow? */
10001da177e4SLinus Torvalds 	if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
10011da177e4SLinus Torvalds                return -EOVERFLOW;
10021da177e4SLinus Torvalds 
10031da177e4SLinus Torvalds 	/* Too many mappings? */
10041da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
10051da177e4SLinus Torvalds 		return -ENOMEM;
10061da177e4SLinus Torvalds 
10071da177e4SLinus Torvalds 	/* Obtain the address to map to. we verify (or select) it and ensure
10081da177e4SLinus Torvalds 	 * that it represents a valid section of the address space.
10091da177e4SLinus Torvalds 	 */
10101da177e4SLinus Torvalds 	addr = get_unmapped_area(file, addr, len, pgoff, flags);
10111da177e4SLinus Torvalds 	if (addr & ~PAGE_MASK)
10121da177e4SLinus Torvalds 		return addr;
10131da177e4SLinus Torvalds 
10141da177e4SLinus Torvalds 	/* Do simple checking here so the lower-level routines won't have
10151da177e4SLinus Torvalds 	 * to. we assume access permissions have been handled by the open
10161da177e4SLinus Torvalds 	 * of the memory object, so we don't do any here.
10171da177e4SLinus Torvalds 	 */
10181da177e4SLinus Torvalds 	vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
10191da177e4SLinus Torvalds 			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
10201da177e4SLinus Torvalds 
1021cdf7b341SHuang Shijie 	if (flags & MAP_LOCKED)
10221da177e4SLinus Torvalds 		if (!can_do_mlock())
10231da177e4SLinus Torvalds 			return -EPERM;
1024ba470de4SRik van Riel 
10251da177e4SLinus Torvalds 	/* mlock MCL_FUTURE? */
10261da177e4SLinus Torvalds 	if (vm_flags & VM_LOCKED) {
10271da177e4SLinus Torvalds 		unsigned long locked, lock_limit;
102893ea1d0aSChris Wright 		locked = len >> PAGE_SHIFT;
102993ea1d0aSChris Wright 		locked += mm->locked_vm;
103059e99e5bSJiri Slaby 		lock_limit = rlimit(RLIMIT_MEMLOCK);
103193ea1d0aSChris Wright 		lock_limit >>= PAGE_SHIFT;
10321da177e4SLinus Torvalds 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
10331da177e4SLinus Torvalds 			return -EAGAIN;
10341da177e4SLinus Torvalds 	}
10351da177e4SLinus Torvalds 
1036d3ac7f89SJosef "Jeff" Sipek 	inode = file ? file->f_path.dentry->d_inode : NULL;
10371da177e4SLinus Torvalds 
10381da177e4SLinus Torvalds 	if (file) {
10391da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
10401da177e4SLinus Torvalds 		case MAP_SHARED:
10411da177e4SLinus Torvalds 			if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
10421da177e4SLinus Torvalds 				return -EACCES;
10431da177e4SLinus Torvalds 
10441da177e4SLinus Torvalds 			/*
10451da177e4SLinus Torvalds 			 * Make sure we don't allow writing to an append-only
10461da177e4SLinus Torvalds 			 * file..
10471da177e4SLinus Torvalds 			 */
10481da177e4SLinus Torvalds 			if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
10491da177e4SLinus Torvalds 				return -EACCES;
10501da177e4SLinus Torvalds 
10511da177e4SLinus Torvalds 			/*
10521da177e4SLinus Torvalds 			 * Make sure there are no mandatory locks on the file.
10531da177e4SLinus Torvalds 			 */
10541da177e4SLinus Torvalds 			if (locks_verify_locked(inode))
10551da177e4SLinus Torvalds 				return -EAGAIN;
10561da177e4SLinus Torvalds 
10571da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
10581da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_WRITE))
10591da177e4SLinus Torvalds 				vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
10601da177e4SLinus Torvalds 
10611da177e4SLinus Torvalds 			/* fall through */
10621da177e4SLinus Torvalds 		case MAP_PRIVATE:
10631da177e4SLinus Torvalds 			if (!(file->f_mode & FMODE_READ))
10641da177e4SLinus Torvalds 				return -EACCES;
1065d3ac7f89SJosef "Jeff" Sipek 			if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
106680c5606cSLinus Torvalds 				if (vm_flags & VM_EXEC)
106780c5606cSLinus Torvalds 					return -EPERM;
106880c5606cSLinus Torvalds 				vm_flags &= ~VM_MAYEXEC;
106980c5606cSLinus Torvalds 			}
107080c5606cSLinus Torvalds 
107180c5606cSLinus Torvalds 			if (!file->f_op || !file->f_op->mmap)
107280c5606cSLinus Torvalds 				return -ENODEV;
10731da177e4SLinus Torvalds 			break;
10741da177e4SLinus Torvalds 
10751da177e4SLinus Torvalds 		default:
10761da177e4SLinus Torvalds 			return -EINVAL;
10771da177e4SLinus Torvalds 		}
10781da177e4SLinus Torvalds 	} else {
10791da177e4SLinus Torvalds 		switch (flags & MAP_TYPE) {
10801da177e4SLinus Torvalds 		case MAP_SHARED:
1081ce363942STejun Heo 			/*
1082ce363942STejun Heo 			 * Ignore pgoff.
1083ce363942STejun Heo 			 */
1084ce363942STejun Heo 			pgoff = 0;
10851da177e4SLinus Torvalds 			vm_flags |= VM_SHARED | VM_MAYSHARE;
10861da177e4SLinus Torvalds 			break;
10871da177e4SLinus Torvalds 		case MAP_PRIVATE:
10881da177e4SLinus Torvalds 			/*
10891da177e4SLinus Torvalds 			 * Set pgoff according to addr for anon_vma.
10901da177e4SLinus Torvalds 			 */
10911da177e4SLinus Torvalds 			pgoff = addr >> PAGE_SHIFT;
10921da177e4SLinus Torvalds 			break;
10931da177e4SLinus Torvalds 		default:
10941da177e4SLinus Torvalds 			return -EINVAL;
10951da177e4SLinus Torvalds 		}
10961da177e4SLinus Torvalds 	}
10971da177e4SLinus Torvalds 
10985a6fe125SMel Gorman 	return mmap_region(file, addr, len, flags, vm_flags, pgoff);
10990165ab44SMiklos Szeredi }
11006be5ceb0SLinus Torvalds 
110166f0dc48SHugh Dickins SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
110266f0dc48SHugh Dickins 		unsigned long, prot, unsigned long, flags,
110366f0dc48SHugh Dickins 		unsigned long, fd, unsigned long, pgoff)
110466f0dc48SHugh Dickins {
110566f0dc48SHugh Dickins 	struct file *file = NULL;
110666f0dc48SHugh Dickins 	unsigned long retval = -EBADF;
110766f0dc48SHugh Dickins 
110866f0dc48SHugh Dickins 	if (!(flags & MAP_ANONYMOUS)) {
1109120a795dSAl Viro 		audit_mmap_fd(fd, flags);
111066f0dc48SHugh Dickins 		if (unlikely(flags & MAP_HUGETLB))
111166f0dc48SHugh Dickins 			return -EINVAL;
111266f0dc48SHugh Dickins 		file = fget(fd);
111366f0dc48SHugh Dickins 		if (!file)
111466f0dc48SHugh Dickins 			goto out;
111566f0dc48SHugh Dickins 	} else if (flags & MAP_HUGETLB) {
111666f0dc48SHugh Dickins 		struct user_struct *user = NULL;
111766f0dc48SHugh Dickins 		/*
111866f0dc48SHugh Dickins 		 * VM_NORESERVE is used because the reservations will be
111966f0dc48SHugh Dickins 		 * taken when vm_ops->mmap() is called
112066f0dc48SHugh Dickins 		 * A dummy user value is used because we are not locking
112166f0dc48SHugh Dickins 		 * memory so no accounting is necessary
112266f0dc48SHugh Dickins 		 */
112340716e29SSteven Truelove 		file = hugetlb_file_setup(HUGETLB_ANON_FILE, addr, len,
112440716e29SSteven Truelove 						VM_NORESERVE, &user,
112540716e29SSteven Truelove 						HUGETLB_ANONHUGE_INODE);
112666f0dc48SHugh Dickins 		if (IS_ERR(file))
112766f0dc48SHugh Dickins 			return PTR_ERR(file);
112866f0dc48SHugh Dickins 	}
112966f0dc48SHugh Dickins 
113066f0dc48SHugh Dickins 	flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
113166f0dc48SHugh Dickins 
1132eb36c587SAl Viro 	retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
113366f0dc48SHugh Dickins 	if (file)
113466f0dc48SHugh Dickins 		fput(file);
113566f0dc48SHugh Dickins out:
113666f0dc48SHugh Dickins 	return retval;
113766f0dc48SHugh Dickins }
113866f0dc48SHugh Dickins 
1139a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP
1140a4679373SChristoph Hellwig struct mmap_arg_struct {
1141a4679373SChristoph Hellwig 	unsigned long addr;
1142a4679373SChristoph Hellwig 	unsigned long len;
1143a4679373SChristoph Hellwig 	unsigned long prot;
1144a4679373SChristoph Hellwig 	unsigned long flags;
1145a4679373SChristoph Hellwig 	unsigned long fd;
1146a4679373SChristoph Hellwig 	unsigned long offset;
1147a4679373SChristoph Hellwig };
1148a4679373SChristoph Hellwig 
1149a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1150a4679373SChristoph Hellwig {
1151a4679373SChristoph Hellwig 	struct mmap_arg_struct a;
1152a4679373SChristoph Hellwig 
1153a4679373SChristoph Hellwig 	if (copy_from_user(&a, arg, sizeof(a)))
1154a4679373SChristoph Hellwig 		return -EFAULT;
1155a4679373SChristoph Hellwig 	if (a.offset & ~PAGE_MASK)
1156a4679373SChristoph Hellwig 		return -EINVAL;
1157a4679373SChristoph Hellwig 
1158a4679373SChristoph Hellwig 	return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1159a4679373SChristoph Hellwig 			      a.offset >> PAGE_SHIFT);
1160a4679373SChristoph Hellwig }
1161a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */
1162a4679373SChristoph Hellwig 
11634e950f6fSAlexey Dobriyan /*
11644e950f6fSAlexey Dobriyan  * Some shared mappigns will want the pages marked read-only
11654e950f6fSAlexey Dobriyan  * to track write events. If so, we'll downgrade vm_page_prot
11664e950f6fSAlexey Dobriyan  * to the private version (using protection_map[] without the
11674e950f6fSAlexey Dobriyan  * VM_SHARED bit).
11684e950f6fSAlexey Dobriyan  */
11694e950f6fSAlexey Dobriyan int vma_wants_writenotify(struct vm_area_struct *vma)
11704e950f6fSAlexey Dobriyan {
1171ca16d140SKOSAKI Motohiro 	vm_flags_t vm_flags = vma->vm_flags;
11724e950f6fSAlexey Dobriyan 
11734e950f6fSAlexey Dobriyan 	/* If it was private or non-writable, the write bit is already clear */
11744e950f6fSAlexey Dobriyan 	if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
11754e950f6fSAlexey Dobriyan 		return 0;
11764e950f6fSAlexey Dobriyan 
11774e950f6fSAlexey Dobriyan 	/* The backer wishes to know when pages are first written to? */
11784e950f6fSAlexey Dobriyan 	if (vma->vm_ops && vma->vm_ops->page_mkwrite)
11794e950f6fSAlexey Dobriyan 		return 1;
11804e950f6fSAlexey Dobriyan 
11814e950f6fSAlexey Dobriyan 	/* The open routine did something to the protections already? */
11824e950f6fSAlexey Dobriyan 	if (pgprot_val(vma->vm_page_prot) !=
11833ed75eb8SColy Li 	    pgprot_val(vm_get_page_prot(vm_flags)))
11844e950f6fSAlexey Dobriyan 		return 0;
11854e950f6fSAlexey Dobriyan 
11864e950f6fSAlexey Dobriyan 	/* Specialty mapping? */
11874b6e1e37SKonstantin Khlebnikov 	if (vm_flags & VM_PFNMAP)
11884e950f6fSAlexey Dobriyan 		return 0;
11894e950f6fSAlexey Dobriyan 
11904e950f6fSAlexey Dobriyan 	/* Can the mapping track the dirty pages? */
11914e950f6fSAlexey Dobriyan 	return vma->vm_file && vma->vm_file->f_mapping &&
11924e950f6fSAlexey Dobriyan 		mapping_cap_account_dirty(vma->vm_file->f_mapping);
11934e950f6fSAlexey Dobriyan }
11944e950f6fSAlexey Dobriyan 
1195fc8744adSLinus Torvalds /*
1196fc8744adSLinus Torvalds  * We account for memory if it's a private writeable mapping,
11975a6fe125SMel Gorman  * not hugepages and VM_NORESERVE wasn't set.
1198fc8744adSLinus Torvalds  */
1199ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
1200fc8744adSLinus Torvalds {
12015a6fe125SMel Gorman 	/*
12025a6fe125SMel Gorman 	 * hugetlb has its own accounting separate from the core VM
12035a6fe125SMel Gorman 	 * VM_HUGETLB may not be set yet so we cannot check for that flag.
12045a6fe125SMel Gorman 	 */
12055a6fe125SMel Gorman 	if (file && is_file_hugepages(file))
12065a6fe125SMel Gorman 		return 0;
12075a6fe125SMel Gorman 
1208fc8744adSLinus Torvalds 	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1209fc8744adSLinus Torvalds }
1210fc8744adSLinus Torvalds 
12110165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr,
12120165ab44SMiklos Szeredi 			  unsigned long len, unsigned long flags,
1213ca16d140SKOSAKI Motohiro 			  vm_flags_t vm_flags, unsigned long pgoff)
12140165ab44SMiklos Szeredi {
12150165ab44SMiklos Szeredi 	struct mm_struct *mm = current->mm;
12160165ab44SMiklos Szeredi 	struct vm_area_struct *vma, *prev;
12170165ab44SMiklos Szeredi 	int correct_wcount = 0;
12180165ab44SMiklos Szeredi 	int error;
12190165ab44SMiklos Szeredi 	struct rb_node **rb_link, *rb_parent;
12200165ab44SMiklos Szeredi 	unsigned long charged = 0;
12210165ab44SMiklos Szeredi 	struct inode *inode =  file ? file->f_path.dentry->d_inode : NULL;
12220165ab44SMiklos Szeredi 
12231da177e4SLinus Torvalds 	/* Clear old maps */
12241da177e4SLinus Torvalds 	error = -ENOMEM;
12251da177e4SLinus Torvalds munmap_back:
12261da177e4SLinus Torvalds 	vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
12271da177e4SLinus Torvalds 	if (vma && vma->vm_start < addr + len) {
12281da177e4SLinus Torvalds 		if (do_munmap(mm, addr, len))
12291da177e4SLinus Torvalds 			return -ENOMEM;
12301da177e4SLinus Torvalds 		goto munmap_back;
12311da177e4SLinus Torvalds 	}
12321da177e4SLinus Torvalds 
12331da177e4SLinus Torvalds 	/* Check against address space limit. */
1234119f657cSakpm@osdl.org 	if (!may_expand_vm(mm, len >> PAGE_SHIFT))
12351da177e4SLinus Torvalds 		return -ENOMEM;
12361da177e4SLinus Torvalds 
1237fc8744adSLinus Torvalds 	/*
1238fc8744adSLinus Torvalds 	 * Set 'VM_NORESERVE' if we should not account for the
12395a6fe125SMel Gorman 	 * memory use of this mapping.
1240fc8744adSLinus Torvalds 	 */
12415a6fe125SMel Gorman 	if ((flags & MAP_NORESERVE)) {
12425a6fe125SMel Gorman 		/* We honor MAP_NORESERVE if allowed to overcommit */
12435a6fe125SMel Gorman 		if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1244fc8744adSLinus Torvalds 			vm_flags |= VM_NORESERVE;
12455a6fe125SMel Gorman 
12465a6fe125SMel Gorman 		/* hugetlb applies strict overcommit unless MAP_NORESERVE */
12475a6fe125SMel Gorman 		if (file && is_file_hugepages(file))
1248cdfd4325SAndy Whitcroft 			vm_flags |= VM_NORESERVE;
12495a6fe125SMel Gorman 	}
1250cdfd4325SAndy Whitcroft 
12511da177e4SLinus Torvalds 	/*
12521da177e4SLinus Torvalds 	 * Private writable mapping: check memory availability
12531da177e4SLinus Torvalds 	 */
12545a6fe125SMel Gorman 	if (accountable_mapping(file, vm_flags)) {
12551da177e4SLinus Torvalds 		charged = len >> PAGE_SHIFT;
1256191c5424SAl Viro 		if (security_vm_enough_memory_mm(mm, charged))
12571da177e4SLinus Torvalds 			return -ENOMEM;
12581da177e4SLinus Torvalds 		vm_flags |= VM_ACCOUNT;
12591da177e4SLinus Torvalds 	}
12601da177e4SLinus Torvalds 
12611da177e4SLinus Torvalds 	/*
1262de33c8dbSLinus Torvalds 	 * Can we just expand an old mapping?
12631da177e4SLinus Torvalds 	 */
1264de33c8dbSLinus Torvalds 	vma = vma_merge(mm, prev, addr, addr + len, vm_flags, NULL, file, pgoff, NULL);
1265ba470de4SRik van Riel 	if (vma)
12661da177e4SLinus Torvalds 		goto out;
12671da177e4SLinus Torvalds 
12681da177e4SLinus Torvalds 	/*
12691da177e4SLinus Torvalds 	 * Determine the object being mapped and call the appropriate
12701da177e4SLinus Torvalds 	 * specific mapper. the address has already been validated, but
12711da177e4SLinus Torvalds 	 * not unmapped, but the maps are removed from the list.
12721da177e4SLinus Torvalds 	 */
1273c5e3b83eSPekka Enberg 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
12741da177e4SLinus Torvalds 	if (!vma) {
12751da177e4SLinus Torvalds 		error = -ENOMEM;
12761da177e4SLinus Torvalds 		goto unacct_error;
12771da177e4SLinus Torvalds 	}
12781da177e4SLinus Torvalds 
12791da177e4SLinus Torvalds 	vma->vm_mm = mm;
12801da177e4SLinus Torvalds 	vma->vm_start = addr;
12811da177e4SLinus Torvalds 	vma->vm_end = addr + len;
12821da177e4SLinus Torvalds 	vma->vm_flags = vm_flags;
12833ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vm_flags);
12841da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
12855beb4930SRik van Riel 	INIT_LIST_HEAD(&vma->anon_vma_chain);
12861da177e4SLinus Torvalds 
1287ce8fea7aSHugh Dickins 	error = -EINVAL;	/* when rejecting VM_GROWSDOWN|VM_GROWSUP */
1288ce8fea7aSHugh Dickins 
12891da177e4SLinus Torvalds 	if (file) {
12901da177e4SLinus Torvalds 		if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
12911da177e4SLinus Torvalds 			goto free_vma;
12921da177e4SLinus Torvalds 		if (vm_flags & VM_DENYWRITE) {
12931da177e4SLinus Torvalds 			error = deny_write_access(file);
12941da177e4SLinus Torvalds 			if (error)
12951da177e4SLinus Torvalds 				goto free_vma;
12961da177e4SLinus Torvalds 			correct_wcount = 1;
12971da177e4SLinus Torvalds 		}
1298cb0942b8SAl Viro 		vma->vm_file = get_file(file);
12991da177e4SLinus Torvalds 		error = file->f_op->mmap(file, vma);
13001da177e4SLinus Torvalds 		if (error)
13011da177e4SLinus Torvalds 			goto unmap_and_free_vma;
13021da177e4SLinus Torvalds 
13031da177e4SLinus Torvalds 		/* Can addr have changed??
13041da177e4SLinus Torvalds 		 *
13051da177e4SLinus Torvalds 		 * Answer: Yes, several device drivers can do it in their
13061da177e4SLinus Torvalds 		 *         f_op->mmap method. -DaveM
13071da177e4SLinus Torvalds 		 */
13081da177e4SLinus Torvalds 		addr = vma->vm_start;
13091da177e4SLinus Torvalds 		pgoff = vma->vm_pgoff;
13101da177e4SLinus Torvalds 		vm_flags = vma->vm_flags;
1311f8dbf0a7SHuang Shijie 	} else if (vm_flags & VM_SHARED) {
1312835ee797SAl Viro 		if (unlikely(vm_flags & (VM_GROWSDOWN|VM_GROWSUP)))
1313835ee797SAl Viro 			goto free_vma;
1314f8dbf0a7SHuang Shijie 		error = shmem_zero_setup(vma);
1315f8dbf0a7SHuang Shijie 		if (error)
1316f8dbf0a7SHuang Shijie 			goto free_vma;
1317f8dbf0a7SHuang Shijie 	}
13181da177e4SLinus Torvalds 
1319c9d0bf24SMagnus Damm 	if (vma_wants_writenotify(vma)) {
1320c9d0bf24SMagnus Damm 		pgprot_t pprot = vma->vm_page_prot;
1321c9d0bf24SMagnus Damm 
1322c9d0bf24SMagnus Damm 		/* Can vma->vm_page_prot have changed??
1323c9d0bf24SMagnus Damm 		 *
1324c9d0bf24SMagnus Damm 		 * Answer: Yes, drivers may have changed it in their
1325c9d0bf24SMagnus Damm 		 *         f_op->mmap method.
1326c9d0bf24SMagnus Damm 		 *
1327c9d0bf24SMagnus Damm 		 * Ensures that vmas marked as uncached stay that way.
1328c9d0bf24SMagnus Damm 		 */
13291ddd439eSHugh Dickins 		vma->vm_page_prot = vm_get_page_prot(vm_flags & ~VM_SHARED);
1330c9d0bf24SMagnus Damm 		if (pgprot_val(pprot) == pgprot_val(pgprot_noncached(pprot)))
1331c9d0bf24SMagnus Damm 			vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1332c9d0bf24SMagnus Damm 	}
1333d08b3851SPeter Zijlstra 
13344d3d5b41SOleg Nesterov 	vma_link(mm, vma, prev, rb_link, rb_parent);
13354d3d5b41SOleg Nesterov 	file = vma->vm_file;
13364d3d5b41SOleg Nesterov 
13374d3d5b41SOleg Nesterov 	/* Once vma denies write, undo our temporary denial count */
13384d3d5b41SOleg Nesterov 	if (correct_wcount)
13394d3d5b41SOleg Nesterov 		atomic_inc(&inode->i_writecount);
13401da177e4SLinus Torvalds out:
1341cdd6c482SIngo Molnar 	perf_event_mmap(vma);
13420a4a9391SPeter Zijlstra 
1343ab50b8edSHugh Dickins 	vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
13441da177e4SLinus Torvalds 	if (vm_flags & VM_LOCKED) {
134506f9d8c2SKOSAKI Motohiro 		if (!mlock_vma_pages_range(vma, addr, addr + len))
134606f9d8c2SKOSAKI Motohiro 			mm->locked_vm += (len >> PAGE_SHIFT);
1347ba470de4SRik van Riel 	} else if ((flags & MAP_POPULATE) && !(flags & MAP_NONBLOCK))
134854cb8821SNick Piggin 		make_pages_present(addr, addr + len);
13492b144498SSrikar Dronamraju 
1350c7a3a88cSOleg Nesterov 	if (file)
1351c7a3a88cSOleg Nesterov 		uprobe_mmap(vma);
13522b144498SSrikar Dronamraju 
13531da177e4SLinus Torvalds 	return addr;
13541da177e4SLinus Torvalds 
13551da177e4SLinus Torvalds unmap_and_free_vma:
13561da177e4SLinus Torvalds 	if (correct_wcount)
13571da177e4SLinus Torvalds 		atomic_inc(&inode->i_writecount);
13581da177e4SLinus Torvalds 	vma->vm_file = NULL;
13591da177e4SLinus Torvalds 	fput(file);
13601da177e4SLinus Torvalds 
13611da177e4SLinus Torvalds 	/* Undo any partial mapping done by a device driver. */
1362e0da382cSHugh Dickins 	unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1363e0da382cSHugh Dickins 	charged = 0;
13641da177e4SLinus Torvalds free_vma:
13651da177e4SLinus Torvalds 	kmem_cache_free(vm_area_cachep, vma);
13661da177e4SLinus Torvalds unacct_error:
13671da177e4SLinus Torvalds 	if (charged)
13681da177e4SLinus Torvalds 		vm_unacct_memory(charged);
13691da177e4SLinus Torvalds 	return error;
13701da177e4SLinus Torvalds }
13711da177e4SLinus Torvalds 
13721da177e4SLinus Torvalds /* Get an address range which is currently unmapped.
13731da177e4SLinus Torvalds  * For shmat() with addr=0.
13741da177e4SLinus Torvalds  *
13751da177e4SLinus Torvalds  * Ugly calling convention alert:
13761da177e4SLinus Torvalds  * Return value with the low bits set means error value,
13771da177e4SLinus Torvalds  * ie
13781da177e4SLinus Torvalds  *	if (ret & ~PAGE_MASK)
13791da177e4SLinus Torvalds  *		error = ret;
13801da177e4SLinus Torvalds  *
13811da177e4SLinus Torvalds  * This function "knows" that -ENOMEM has the bits set.
13821da177e4SLinus Torvalds  */
13831da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA
13841da177e4SLinus Torvalds unsigned long
13851da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr,
13861da177e4SLinus Torvalds 		unsigned long len, unsigned long pgoff, unsigned long flags)
13871da177e4SLinus Torvalds {
13881da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
13891da177e4SLinus Torvalds 	struct vm_area_struct *vma;
13901da177e4SLinus Torvalds 	unsigned long start_addr;
13911da177e4SLinus Torvalds 
13921da177e4SLinus Torvalds 	if (len > TASK_SIZE)
13931da177e4SLinus Torvalds 		return -ENOMEM;
13941da177e4SLinus Torvalds 
139506abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
139606abdfb4SBenjamin Herrenschmidt 		return addr;
139706abdfb4SBenjamin Herrenschmidt 
13981da177e4SLinus Torvalds 	if (addr) {
13991da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
14001da177e4SLinus Torvalds 		vma = find_vma(mm, addr);
14011da177e4SLinus Torvalds 		if (TASK_SIZE - len >= addr &&
14021da177e4SLinus Torvalds 		    (!vma || addr + len <= vma->vm_start))
14031da177e4SLinus Torvalds 			return addr;
14041da177e4SLinus Torvalds 	}
14051363c3cdSWolfgang Wander 	if (len > mm->cached_hole_size) {
14061da177e4SLinus Torvalds 	        start_addr = addr = mm->free_area_cache;
14071363c3cdSWolfgang Wander 	} else {
14081363c3cdSWolfgang Wander 	        start_addr = addr = TASK_UNMAPPED_BASE;
14091363c3cdSWolfgang Wander 	        mm->cached_hole_size = 0;
14101363c3cdSWolfgang Wander 	}
14111da177e4SLinus Torvalds 
14121da177e4SLinus Torvalds full_search:
14131da177e4SLinus Torvalds 	for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
14141da177e4SLinus Torvalds 		/* At this point:  (!vma || addr < vma->vm_end). */
14151da177e4SLinus Torvalds 		if (TASK_SIZE - len < addr) {
14161da177e4SLinus Torvalds 			/*
14171da177e4SLinus Torvalds 			 * Start a new search - just in case we missed
14181da177e4SLinus Torvalds 			 * some holes.
14191da177e4SLinus Torvalds 			 */
14201da177e4SLinus Torvalds 			if (start_addr != TASK_UNMAPPED_BASE) {
14211363c3cdSWolfgang Wander 				addr = TASK_UNMAPPED_BASE;
14221363c3cdSWolfgang Wander 			        start_addr = addr;
14231363c3cdSWolfgang Wander 				mm->cached_hole_size = 0;
14241da177e4SLinus Torvalds 				goto full_search;
14251da177e4SLinus Torvalds 			}
14261da177e4SLinus Torvalds 			return -ENOMEM;
14271da177e4SLinus Torvalds 		}
14281da177e4SLinus Torvalds 		if (!vma || addr + len <= vma->vm_start) {
14291da177e4SLinus Torvalds 			/*
14301da177e4SLinus Torvalds 			 * Remember the place where we stopped the search:
14311da177e4SLinus Torvalds 			 */
14321da177e4SLinus Torvalds 			mm->free_area_cache = addr + len;
14331da177e4SLinus Torvalds 			return addr;
14341da177e4SLinus Torvalds 		}
14351363c3cdSWolfgang Wander 		if (addr + mm->cached_hole_size < vma->vm_start)
14361363c3cdSWolfgang Wander 		        mm->cached_hole_size = vma->vm_start - addr;
14371da177e4SLinus Torvalds 		addr = vma->vm_end;
14381da177e4SLinus Torvalds 	}
14391da177e4SLinus Torvalds }
14401da177e4SLinus Torvalds #endif
14411da177e4SLinus Torvalds 
14421363c3cdSWolfgang Wander void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
14431da177e4SLinus Torvalds {
14441da177e4SLinus Torvalds 	/*
14451da177e4SLinus Torvalds 	 * Is this a new hole at the lowest possible address?
14461da177e4SLinus Torvalds 	 */
1447f44d2198SXiao Guangrong 	if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache)
14481363c3cdSWolfgang Wander 		mm->free_area_cache = addr;
14491da177e4SLinus Torvalds }
14501da177e4SLinus Torvalds 
14511da177e4SLinus Torvalds /*
14521da177e4SLinus Torvalds  * This mmap-allocator allocates new areas top-down from below the
14531da177e4SLinus Torvalds  * stack's low limit (the base):
14541da177e4SLinus Torvalds  */
14551da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
14561da177e4SLinus Torvalds unsigned long
14571da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
14581da177e4SLinus Torvalds 			  const unsigned long len, const unsigned long pgoff,
14591da177e4SLinus Torvalds 			  const unsigned long flags)
14601da177e4SLinus Torvalds {
14611da177e4SLinus Torvalds 	struct vm_area_struct *vma;
14621da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
1463b716ad95SXiao Guangrong 	unsigned long addr = addr0, start_addr;
14641da177e4SLinus Torvalds 
14651da177e4SLinus Torvalds 	/* requested length too big for entire address space */
14661da177e4SLinus Torvalds 	if (len > TASK_SIZE)
14671da177e4SLinus Torvalds 		return -ENOMEM;
14681da177e4SLinus Torvalds 
146906abdfb4SBenjamin Herrenschmidt 	if (flags & MAP_FIXED)
147006abdfb4SBenjamin Herrenschmidt 		return addr;
147106abdfb4SBenjamin Herrenschmidt 
14721da177e4SLinus Torvalds 	/* requesting a specific address */
14731da177e4SLinus Torvalds 	if (addr) {
14741da177e4SLinus Torvalds 		addr = PAGE_ALIGN(addr);
14751da177e4SLinus Torvalds 		vma = find_vma(mm, addr);
14761da177e4SLinus Torvalds 		if (TASK_SIZE - len >= addr &&
14771da177e4SLinus Torvalds 				(!vma || addr + len <= vma->vm_start))
14781da177e4SLinus Torvalds 			return addr;
14791da177e4SLinus Torvalds 	}
14801da177e4SLinus Torvalds 
14811363c3cdSWolfgang Wander 	/* check if free_area_cache is useful for us */
14821363c3cdSWolfgang Wander 	if (len <= mm->cached_hole_size) {
14831363c3cdSWolfgang Wander  	        mm->cached_hole_size = 0;
14841363c3cdSWolfgang Wander  		mm->free_area_cache = mm->mmap_base;
14851363c3cdSWolfgang Wander  	}
14861363c3cdSWolfgang Wander 
1487b716ad95SXiao Guangrong try_again:
14881da177e4SLinus Torvalds 	/* either no address requested or can't fit in requested address hole */
1489b716ad95SXiao Guangrong 	start_addr = addr = mm->free_area_cache;
14901da177e4SLinus Torvalds 
1491b716ad95SXiao Guangrong 	if (addr < len)
1492b716ad95SXiao Guangrong 		goto fail;
14931da177e4SLinus Torvalds 
1494b716ad95SXiao Guangrong 	addr -= len;
14951da177e4SLinus Torvalds 	do {
14961da177e4SLinus Torvalds 		/*
14971da177e4SLinus Torvalds 		 * Lookup failure means no vma is above this address,
14981da177e4SLinus Torvalds 		 * else if new region fits below vma->vm_start,
14991da177e4SLinus Torvalds 		 * return with success:
15001da177e4SLinus Torvalds 		 */
15011da177e4SLinus Torvalds 		vma = find_vma(mm, addr);
15021da177e4SLinus Torvalds 		if (!vma || addr+len <= vma->vm_start)
15031da177e4SLinus Torvalds 			/* remember the address as a hint for next time */
15041da177e4SLinus Torvalds 			return (mm->free_area_cache = addr);
15051da177e4SLinus Torvalds 
15061363c3cdSWolfgang Wander  		/* remember the largest hole we saw so far */
15071363c3cdSWolfgang Wander  		if (addr + mm->cached_hole_size < vma->vm_start)
15081363c3cdSWolfgang Wander  		        mm->cached_hole_size = vma->vm_start - addr;
15091363c3cdSWolfgang Wander 
15101da177e4SLinus Torvalds 		/* try just below the current vma->vm_start */
15111da177e4SLinus Torvalds 		addr = vma->vm_start-len;
151249a43876SLinus Torvalds 	} while (len < vma->vm_start);
15131da177e4SLinus Torvalds 
1514b716ad95SXiao Guangrong fail:
1515b716ad95SXiao Guangrong 	/*
1516b716ad95SXiao Guangrong 	 * if hint left us with no space for the requested
1517b716ad95SXiao Guangrong 	 * mapping then try again:
1518b716ad95SXiao Guangrong 	 *
1519b716ad95SXiao Guangrong 	 * Note: this is different with the case of bottomup
1520b716ad95SXiao Guangrong 	 * which does the fully line-search, but we use find_vma
1521b716ad95SXiao Guangrong 	 * here that causes some holes skipped.
1522b716ad95SXiao Guangrong 	 */
1523b716ad95SXiao Guangrong 	if (start_addr != mm->mmap_base) {
1524b716ad95SXiao Guangrong 		mm->free_area_cache = mm->mmap_base;
1525b716ad95SXiao Guangrong 		mm->cached_hole_size = 0;
1526b716ad95SXiao Guangrong 		goto try_again;
1527b716ad95SXiao Guangrong 	}
1528b716ad95SXiao Guangrong 
15291da177e4SLinus Torvalds 	/*
15301da177e4SLinus Torvalds 	 * A failed mmap() very likely causes application failure,
15311da177e4SLinus Torvalds 	 * so fall back to the bottom-up function here. This scenario
15321da177e4SLinus Torvalds 	 * can happen with large stack limits and large mmap()
15331da177e4SLinus Torvalds 	 * allocations.
15341da177e4SLinus Torvalds 	 */
15351363c3cdSWolfgang Wander 	mm->cached_hole_size = ~0UL;
15361da177e4SLinus Torvalds   	mm->free_area_cache = TASK_UNMAPPED_BASE;
15371da177e4SLinus Torvalds 	addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
15381da177e4SLinus Torvalds 	/*
15391da177e4SLinus Torvalds 	 * Restore the topdown base:
15401da177e4SLinus Torvalds 	 */
15411da177e4SLinus Torvalds 	mm->free_area_cache = mm->mmap_base;
15421363c3cdSWolfgang Wander 	mm->cached_hole_size = ~0UL;
15431da177e4SLinus Torvalds 
15441da177e4SLinus Torvalds 	return addr;
15451da177e4SLinus Torvalds }
15461da177e4SLinus Torvalds #endif
15471da177e4SLinus Torvalds 
15481363c3cdSWolfgang Wander void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
15491da177e4SLinus Torvalds {
15501da177e4SLinus Torvalds 	/*
15511da177e4SLinus Torvalds 	 * Is this a new hole at the highest possible address?
15521da177e4SLinus Torvalds 	 */
15531363c3cdSWolfgang Wander 	if (addr > mm->free_area_cache)
15541363c3cdSWolfgang Wander 		mm->free_area_cache = addr;
15551da177e4SLinus Torvalds 
15561da177e4SLinus Torvalds 	/* dont allow allocations above current base */
15571363c3cdSWolfgang Wander 	if (mm->free_area_cache > mm->mmap_base)
15581363c3cdSWolfgang Wander 		mm->free_area_cache = mm->mmap_base;
15591da177e4SLinus Torvalds }
15601da177e4SLinus Torvalds 
15611da177e4SLinus Torvalds unsigned long
15621da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
15631da177e4SLinus Torvalds 		unsigned long pgoff, unsigned long flags)
15641da177e4SLinus Torvalds {
156506abdfb4SBenjamin Herrenschmidt 	unsigned long (*get_area)(struct file *, unsigned long,
156606abdfb4SBenjamin Herrenschmidt 				  unsigned long, unsigned long, unsigned long);
156707ab67c8SLinus Torvalds 
15689206de95SAl Viro 	unsigned long error = arch_mmap_check(addr, len, flags);
15699206de95SAl Viro 	if (error)
15709206de95SAl Viro 		return error;
15719206de95SAl Viro 
15729206de95SAl Viro 	/* Careful about overflows.. */
15739206de95SAl Viro 	if (len > TASK_SIZE)
15749206de95SAl Viro 		return -ENOMEM;
15759206de95SAl Viro 
157607ab67c8SLinus Torvalds 	get_area = current->mm->get_unmapped_area;
157707ab67c8SLinus Torvalds 	if (file && file->f_op && file->f_op->get_unmapped_area)
157807ab67c8SLinus Torvalds 		get_area = file->f_op->get_unmapped_area;
157907ab67c8SLinus Torvalds 	addr = get_area(file, addr, len, pgoff, flags);
158007ab67c8SLinus Torvalds 	if (IS_ERR_VALUE(addr))
158107ab67c8SLinus Torvalds 		return addr;
158207ab67c8SLinus Torvalds 
15831da177e4SLinus Torvalds 	if (addr > TASK_SIZE - len)
15841da177e4SLinus Torvalds 		return -ENOMEM;
15851da177e4SLinus Torvalds 	if (addr & ~PAGE_MASK)
15861da177e4SLinus Torvalds 		return -EINVAL;
158706abdfb4SBenjamin Herrenschmidt 
15889ac4ed4bSAl Viro 	addr = arch_rebalance_pgtables(addr, len);
15899ac4ed4bSAl Viro 	error = security_mmap_addr(addr);
15909ac4ed4bSAl Viro 	return error ? error : addr;
15911da177e4SLinus Torvalds }
15921da177e4SLinus Torvalds 
15931da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area);
15941da177e4SLinus Torvalds 
15951da177e4SLinus Torvalds /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
15961da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
15971da177e4SLinus Torvalds {
15981da177e4SLinus Torvalds 	struct vm_area_struct *vma = NULL;
15991da177e4SLinus Torvalds 
1600841e31e5SRajman Mekaco 	if (WARN_ON_ONCE(!mm))		/* Remove this in linux-3.6 */
1601841e31e5SRajman Mekaco 		return NULL;
1602841e31e5SRajman Mekaco 
16031da177e4SLinus Torvalds 	/* Check the cache first. */
16041da177e4SLinus Torvalds 	/* (Cache hit rate is typically around 35%.) */
16051da177e4SLinus Torvalds 	vma = mm->mmap_cache;
16061da177e4SLinus Torvalds 	if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
16071da177e4SLinus Torvalds 		struct rb_node *rb_node;
16081da177e4SLinus Torvalds 
16091da177e4SLinus Torvalds 		rb_node = mm->mm_rb.rb_node;
16101da177e4SLinus Torvalds 		vma = NULL;
16111da177e4SLinus Torvalds 
16121da177e4SLinus Torvalds 		while (rb_node) {
16131da177e4SLinus Torvalds 			struct vm_area_struct *vma_tmp;
16141da177e4SLinus Torvalds 
16151da177e4SLinus Torvalds 			vma_tmp = rb_entry(rb_node,
16161da177e4SLinus Torvalds 					   struct vm_area_struct, vm_rb);
16171da177e4SLinus Torvalds 
16181da177e4SLinus Torvalds 			if (vma_tmp->vm_end > addr) {
16191da177e4SLinus Torvalds 				vma = vma_tmp;
16201da177e4SLinus Torvalds 				if (vma_tmp->vm_start <= addr)
16211da177e4SLinus Torvalds 					break;
16221da177e4SLinus Torvalds 				rb_node = rb_node->rb_left;
16231da177e4SLinus Torvalds 			} else
16241da177e4SLinus Torvalds 				rb_node = rb_node->rb_right;
16251da177e4SLinus Torvalds 		}
16261da177e4SLinus Torvalds 		if (vma)
16271da177e4SLinus Torvalds 			mm->mmap_cache = vma;
16281da177e4SLinus Torvalds 	}
16291da177e4SLinus Torvalds 	return vma;
16301da177e4SLinus Torvalds }
16311da177e4SLinus Torvalds 
16321da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma);
16331da177e4SLinus Torvalds 
16346bd4837dSKOSAKI Motohiro /*
16356bd4837dSKOSAKI Motohiro  * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
16366bd4837dSKOSAKI Motohiro  */
16371da177e4SLinus Torvalds struct vm_area_struct *
16381da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr,
16391da177e4SLinus Torvalds 			struct vm_area_struct **pprev)
16401da177e4SLinus Torvalds {
16416bd4837dSKOSAKI Motohiro 	struct vm_area_struct *vma;
16421da177e4SLinus Torvalds 
16436bd4837dSKOSAKI Motohiro 	vma = find_vma(mm, addr);
164483cd904dSMikulas Patocka 	if (vma) {
164583cd904dSMikulas Patocka 		*pprev = vma->vm_prev;
164683cd904dSMikulas Patocka 	} else {
164783cd904dSMikulas Patocka 		struct rb_node *rb_node = mm->mm_rb.rb_node;
164883cd904dSMikulas Patocka 		*pprev = NULL;
164983cd904dSMikulas Patocka 		while (rb_node) {
165083cd904dSMikulas Patocka 			*pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
165183cd904dSMikulas Patocka 			rb_node = rb_node->rb_right;
165283cd904dSMikulas Patocka 		}
165383cd904dSMikulas Patocka 	}
16546bd4837dSKOSAKI Motohiro 	return vma;
16551da177e4SLinus Torvalds }
16561da177e4SLinus Torvalds 
16571da177e4SLinus Torvalds /*
16581da177e4SLinus Torvalds  * Verify that the stack growth is acceptable and
16591da177e4SLinus Torvalds  * update accounting. This is shared with both the
16601da177e4SLinus Torvalds  * grow-up and grow-down cases.
16611da177e4SLinus Torvalds  */
16621da177e4SLinus Torvalds static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
16631da177e4SLinus Torvalds {
16641da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
16651da177e4SLinus Torvalds 	struct rlimit *rlim = current->signal->rlim;
16660d59a01bSAdam Litke 	unsigned long new_start;
16671da177e4SLinus Torvalds 
16681da177e4SLinus Torvalds 	/* address space limit tests */
1669119f657cSakpm@osdl.org 	if (!may_expand_vm(mm, grow))
16701da177e4SLinus Torvalds 		return -ENOMEM;
16711da177e4SLinus Torvalds 
16721da177e4SLinus Torvalds 	/* Stack limit test */
167359e99e5bSJiri Slaby 	if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur))
16741da177e4SLinus Torvalds 		return -ENOMEM;
16751da177e4SLinus Torvalds 
16761da177e4SLinus Torvalds 	/* mlock limit tests */
16771da177e4SLinus Torvalds 	if (vma->vm_flags & VM_LOCKED) {
16781da177e4SLinus Torvalds 		unsigned long locked;
16791da177e4SLinus Torvalds 		unsigned long limit;
16801da177e4SLinus Torvalds 		locked = mm->locked_vm + grow;
168159e99e5bSJiri Slaby 		limit = ACCESS_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
168259e99e5bSJiri Slaby 		limit >>= PAGE_SHIFT;
16831da177e4SLinus Torvalds 		if (locked > limit && !capable(CAP_IPC_LOCK))
16841da177e4SLinus Torvalds 			return -ENOMEM;
16851da177e4SLinus Torvalds 	}
16861da177e4SLinus Torvalds 
16870d59a01bSAdam Litke 	/* Check to ensure the stack will not grow into a hugetlb-only region */
16880d59a01bSAdam Litke 	new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
16890d59a01bSAdam Litke 			vma->vm_end - size;
16900d59a01bSAdam Litke 	if (is_hugepage_only_range(vma->vm_mm, new_start, size))
16910d59a01bSAdam Litke 		return -EFAULT;
16920d59a01bSAdam Litke 
16931da177e4SLinus Torvalds 	/*
16941da177e4SLinus Torvalds 	 * Overcommit..  This must be the final test, as it will
16951da177e4SLinus Torvalds 	 * update security statistics.
16961da177e4SLinus Torvalds 	 */
169705fa199dSHugh Dickins 	if (security_vm_enough_memory_mm(mm, grow))
16981da177e4SLinus Torvalds 		return -ENOMEM;
16991da177e4SLinus Torvalds 
17001da177e4SLinus Torvalds 	/* Ok, everything looks good - let it rip */
17011da177e4SLinus Torvalds 	if (vma->vm_flags & VM_LOCKED)
17021da177e4SLinus Torvalds 		mm->locked_vm += grow;
1703ab50b8edSHugh Dickins 	vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
17041da177e4SLinus Torvalds 	return 0;
17051da177e4SLinus Torvalds }
17061da177e4SLinus Torvalds 
170746dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
17081da177e4SLinus Torvalds /*
170946dea3d0SHugh Dickins  * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
171046dea3d0SHugh Dickins  * vma is the last one with address > vma->vm_end.  Have to extend vma.
17111da177e4SLinus Torvalds  */
171246dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address)
17131da177e4SLinus Torvalds {
17141da177e4SLinus Torvalds 	int error;
17151da177e4SLinus Torvalds 
17161da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSUP))
17171da177e4SLinus Torvalds 		return -EFAULT;
17181da177e4SLinus Torvalds 
17191da177e4SLinus Torvalds 	/*
17201da177e4SLinus Torvalds 	 * We must make sure the anon_vma is allocated
17211da177e4SLinus Torvalds 	 * so that the anon_vma locking is not a noop.
17221da177e4SLinus Torvalds 	 */
17231da177e4SLinus Torvalds 	if (unlikely(anon_vma_prepare(vma)))
17241da177e4SLinus Torvalds 		return -ENOMEM;
1725bb4a340eSRik van Riel 	vma_lock_anon_vma(vma);
17261da177e4SLinus Torvalds 
17271da177e4SLinus Torvalds 	/*
17281da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
17291da177e4SLinus Torvalds 	 * is required to hold the mmap_sem in read mode.  We need the
17301da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
173106b32f3aSHelge Deller 	 * Also guard against wrapping around to address 0.
17321da177e4SLinus Torvalds 	 */
173306b32f3aSHelge Deller 	if (address < PAGE_ALIGN(address+4))
173406b32f3aSHelge Deller 		address = PAGE_ALIGN(address+4);
173506b32f3aSHelge Deller 	else {
1736bb4a340eSRik van Riel 		vma_unlock_anon_vma(vma);
173706b32f3aSHelge Deller 		return -ENOMEM;
173806b32f3aSHelge Deller 	}
17391da177e4SLinus Torvalds 	error = 0;
17401da177e4SLinus Torvalds 
17411da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
17421da177e4SLinus Torvalds 	if (address > vma->vm_end) {
17431da177e4SLinus Torvalds 		unsigned long size, grow;
17441da177e4SLinus Torvalds 
17451da177e4SLinus Torvalds 		size = address - vma->vm_start;
17461da177e4SLinus Torvalds 		grow = (address - vma->vm_end) >> PAGE_SHIFT;
17471da177e4SLinus Torvalds 
174842c36f63SHugh Dickins 		error = -ENOMEM;
174942c36f63SHugh Dickins 		if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
17501da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
17513af9e859SEric B Munson 			if (!error) {
17521da177e4SLinus Torvalds 				vma->vm_end = address;
17533af9e859SEric B Munson 				perf_event_mmap(vma);
17543af9e859SEric B Munson 			}
17551da177e4SLinus Torvalds 		}
175642c36f63SHugh Dickins 	}
1757bb4a340eSRik van Riel 	vma_unlock_anon_vma(vma);
1758b15d00b6SAndrea Arcangeli 	khugepaged_enter_vma_merge(vma);
17591da177e4SLinus Torvalds 	return error;
17601da177e4SLinus Torvalds }
176146dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
176246dea3d0SHugh Dickins 
17631da177e4SLinus Torvalds /*
17641da177e4SLinus Torvalds  * vma is the first one with address < vma->vm_start.  Have to extend vma.
17651da177e4SLinus Torvalds  */
1766d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma,
1767b6a2fea3SOllie Wild 				   unsigned long address)
17681da177e4SLinus Torvalds {
17691da177e4SLinus Torvalds 	int error;
17701da177e4SLinus Torvalds 
17711da177e4SLinus Torvalds 	/*
17721da177e4SLinus Torvalds 	 * We must make sure the anon_vma is allocated
17731da177e4SLinus Torvalds 	 * so that the anon_vma locking is not a noop.
17741da177e4SLinus Torvalds 	 */
17751da177e4SLinus Torvalds 	if (unlikely(anon_vma_prepare(vma)))
17761da177e4SLinus Torvalds 		return -ENOMEM;
17778869477aSEric Paris 
17788869477aSEric Paris 	address &= PAGE_MASK;
1779e5467859SAl Viro 	error = security_mmap_addr(address);
17808869477aSEric Paris 	if (error)
17818869477aSEric Paris 		return error;
17828869477aSEric Paris 
1783bb4a340eSRik van Riel 	vma_lock_anon_vma(vma);
17841da177e4SLinus Torvalds 
17851da177e4SLinus Torvalds 	/*
17861da177e4SLinus Torvalds 	 * vma->vm_start/vm_end cannot change under us because the caller
17871da177e4SLinus Torvalds 	 * is required to hold the mmap_sem in read mode.  We need the
17881da177e4SLinus Torvalds 	 * anon_vma lock to serialize against concurrent expand_stacks.
17891da177e4SLinus Torvalds 	 */
17901da177e4SLinus Torvalds 
17911da177e4SLinus Torvalds 	/* Somebody else might have raced and expanded it already */
17921da177e4SLinus Torvalds 	if (address < vma->vm_start) {
17931da177e4SLinus Torvalds 		unsigned long size, grow;
17941da177e4SLinus Torvalds 
17951da177e4SLinus Torvalds 		size = vma->vm_end - address;
17961da177e4SLinus Torvalds 		grow = (vma->vm_start - address) >> PAGE_SHIFT;
17971da177e4SLinus Torvalds 
1798a626ca6aSLinus Torvalds 		error = -ENOMEM;
1799a626ca6aSLinus Torvalds 		if (grow <= vma->vm_pgoff) {
18001da177e4SLinus Torvalds 			error = acct_stack_growth(vma, size, grow);
18011da177e4SLinus Torvalds 			if (!error) {
18021da177e4SLinus Torvalds 				vma->vm_start = address;
18031da177e4SLinus Torvalds 				vma->vm_pgoff -= grow;
18043af9e859SEric B Munson 				perf_event_mmap(vma);
18051da177e4SLinus Torvalds 			}
18061da177e4SLinus Torvalds 		}
1807a626ca6aSLinus Torvalds 	}
1808bb4a340eSRik van Riel 	vma_unlock_anon_vma(vma);
1809b15d00b6SAndrea Arcangeli 	khugepaged_enter_vma_merge(vma);
18101da177e4SLinus Torvalds 	return error;
18111da177e4SLinus Torvalds }
18121da177e4SLinus Torvalds 
1813b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP
1814b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
1815b6a2fea3SOllie Wild {
1816b6a2fea3SOllie Wild 	return expand_upwards(vma, address);
1817b6a2fea3SOllie Wild }
1818b6a2fea3SOllie Wild 
1819b6a2fea3SOllie Wild struct vm_area_struct *
1820b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr)
1821b6a2fea3SOllie Wild {
1822b6a2fea3SOllie Wild 	struct vm_area_struct *vma, *prev;
1823b6a2fea3SOllie Wild 
1824b6a2fea3SOllie Wild 	addr &= PAGE_MASK;
1825b6a2fea3SOllie Wild 	vma = find_vma_prev(mm, addr, &prev);
1826b6a2fea3SOllie Wild 	if (vma && (vma->vm_start <= addr))
1827b6a2fea3SOllie Wild 		return vma;
18281c127185SDenys Vlasenko 	if (!prev || expand_stack(prev, addr))
1829b6a2fea3SOllie Wild 		return NULL;
1830ba470de4SRik van Riel 	if (prev->vm_flags & VM_LOCKED) {
1831c58267c3SKOSAKI Motohiro 		mlock_vma_pages_range(prev, addr, prev->vm_end);
1832ba470de4SRik van Riel 	}
1833b6a2fea3SOllie Wild 	return prev;
1834b6a2fea3SOllie Wild }
1835b6a2fea3SOllie Wild #else
1836b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address)
1837b6a2fea3SOllie Wild {
1838b6a2fea3SOllie Wild 	return expand_downwards(vma, address);
1839b6a2fea3SOllie Wild }
1840b6a2fea3SOllie Wild 
18411da177e4SLinus Torvalds struct vm_area_struct *
18421da177e4SLinus Torvalds find_extend_vma(struct mm_struct * mm, unsigned long addr)
18431da177e4SLinus Torvalds {
18441da177e4SLinus Torvalds 	struct vm_area_struct * vma;
18451da177e4SLinus Torvalds 	unsigned long start;
18461da177e4SLinus Torvalds 
18471da177e4SLinus Torvalds 	addr &= PAGE_MASK;
18481da177e4SLinus Torvalds 	vma = find_vma(mm,addr);
18491da177e4SLinus Torvalds 	if (!vma)
18501da177e4SLinus Torvalds 		return NULL;
18511da177e4SLinus Torvalds 	if (vma->vm_start <= addr)
18521da177e4SLinus Torvalds 		return vma;
18531da177e4SLinus Torvalds 	if (!(vma->vm_flags & VM_GROWSDOWN))
18541da177e4SLinus Torvalds 		return NULL;
18551da177e4SLinus Torvalds 	start = vma->vm_start;
18561da177e4SLinus Torvalds 	if (expand_stack(vma, addr))
18571da177e4SLinus Torvalds 		return NULL;
1858ba470de4SRik van Riel 	if (vma->vm_flags & VM_LOCKED) {
1859c58267c3SKOSAKI Motohiro 		mlock_vma_pages_range(vma, addr, start);
1860ba470de4SRik van Riel 	}
18611da177e4SLinus Torvalds 	return vma;
18621da177e4SLinus Torvalds }
18631da177e4SLinus Torvalds #endif
18641da177e4SLinus Torvalds 
18652c0b3814SHugh Dickins /*
18662c0b3814SHugh Dickins  * Ok - we have the memory areas we should free on the vma list,
18672c0b3814SHugh Dickins  * so release them, and do the vma updates.
18681da177e4SLinus Torvalds  *
18692c0b3814SHugh Dickins  * Called with the mm semaphore held.
18701da177e4SLinus Torvalds  */
18712c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
18721da177e4SLinus Torvalds {
18734f74d2c8SLinus Torvalds 	unsigned long nr_accounted = 0;
18744f74d2c8SLinus Torvalds 
1875365e9c87SHugh Dickins 	/* Update high watermark before we lower total_vm */
1876365e9c87SHugh Dickins 	update_hiwater_vm(mm);
18772c0b3814SHugh Dickins 	do {
1878ab50b8edSHugh Dickins 		long nrpages = vma_pages(vma);
18791da177e4SLinus Torvalds 
18804f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
18814f74d2c8SLinus Torvalds 			nr_accounted += nrpages;
1882ab50b8edSHugh Dickins 		vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
1883a8fb5618SHugh Dickins 		vma = remove_vma(vma);
1884146425a3SHugh Dickins 	} while (vma);
18854f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
18861da177e4SLinus Torvalds 	validate_mm(mm);
18871da177e4SLinus Torvalds }
18881da177e4SLinus Torvalds 
18891da177e4SLinus Torvalds /*
18901da177e4SLinus Torvalds  * Get rid of page table information in the indicated region.
18911da177e4SLinus Torvalds  *
1892f10df686SPaolo 'Blaisorblade' Giarrusso  * Called with the mm semaphore held.
18931da177e4SLinus Torvalds  */
18941da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm,
1895e0da382cSHugh Dickins 		struct vm_area_struct *vma, struct vm_area_struct *prev,
1896e0da382cSHugh Dickins 		unsigned long start, unsigned long end)
18971da177e4SLinus Torvalds {
1898e0da382cSHugh Dickins 	struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
1899d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
19001da177e4SLinus Torvalds 
19011da177e4SLinus Torvalds 	lru_add_drain();
1902d16dfc55SPeter Zijlstra 	tlb_gather_mmu(&tlb, mm, 0);
1903365e9c87SHugh Dickins 	update_hiwater_rss(mm);
19044f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, start, end);
1905d16dfc55SPeter Zijlstra 	free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
1906e0da382cSHugh Dickins 				 next ? next->vm_start : 0);
1907d16dfc55SPeter Zijlstra 	tlb_finish_mmu(&tlb, start, end);
19081da177e4SLinus Torvalds }
19091da177e4SLinus Torvalds 
19101da177e4SLinus Torvalds /*
19111da177e4SLinus Torvalds  * Create a list of vma's touched by the unmap, removing them from the mm's
19121da177e4SLinus Torvalds  * vma list as we go..
19131da177e4SLinus Torvalds  */
19141da177e4SLinus Torvalds static void
19151da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
19161da177e4SLinus Torvalds 	struct vm_area_struct *prev, unsigned long end)
19171da177e4SLinus Torvalds {
19181da177e4SLinus Torvalds 	struct vm_area_struct **insertion_point;
19191da177e4SLinus Torvalds 	struct vm_area_struct *tail_vma = NULL;
19201363c3cdSWolfgang Wander 	unsigned long addr;
19211da177e4SLinus Torvalds 
19221da177e4SLinus Torvalds 	insertion_point = (prev ? &prev->vm_next : &mm->mmap);
1923297c5eeeSLinus Torvalds 	vma->vm_prev = NULL;
19241da177e4SLinus Torvalds 	do {
19251da177e4SLinus Torvalds 		rb_erase(&vma->vm_rb, &mm->mm_rb);
19261da177e4SLinus Torvalds 		mm->map_count--;
19271da177e4SLinus Torvalds 		tail_vma = vma;
19281da177e4SLinus Torvalds 		vma = vma->vm_next;
19291da177e4SLinus Torvalds 	} while (vma && vma->vm_start < end);
19301da177e4SLinus Torvalds 	*insertion_point = vma;
1931297c5eeeSLinus Torvalds 	if (vma)
1932297c5eeeSLinus Torvalds 		vma->vm_prev = prev;
19331da177e4SLinus Torvalds 	tail_vma->vm_next = NULL;
19341363c3cdSWolfgang Wander 	if (mm->unmap_area == arch_unmap_area)
19351363c3cdSWolfgang Wander 		addr = prev ? prev->vm_end : mm->mmap_base;
19361363c3cdSWolfgang Wander 	else
19371363c3cdSWolfgang Wander 		addr = vma ?  vma->vm_start : mm->mmap_base;
19381363c3cdSWolfgang Wander 	mm->unmap_area(mm, addr);
19391da177e4SLinus Torvalds 	mm->mmap_cache = NULL;		/* Kill the cache. */
19401da177e4SLinus Torvalds }
19411da177e4SLinus Torvalds 
19421da177e4SLinus Torvalds /*
1943659ace58SKOSAKI Motohiro  * __split_vma() bypasses sysctl_max_map_count checking.  We use this on the
1944659ace58SKOSAKI Motohiro  * munmap path where it doesn't make sense to fail.
19451da177e4SLinus Torvalds  */
1946659ace58SKOSAKI Motohiro static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
19471da177e4SLinus Torvalds 	      unsigned long addr, int new_below)
19481da177e4SLinus Torvalds {
19491da177e4SLinus Torvalds 	struct mempolicy *pol;
19501da177e4SLinus Torvalds 	struct vm_area_struct *new;
19515beb4930SRik van Riel 	int err = -ENOMEM;
19521da177e4SLinus Torvalds 
1953a5516438SAndi Kleen 	if (is_vm_hugetlb_page(vma) && (addr &
1954a5516438SAndi Kleen 					~(huge_page_mask(hstate_vma(vma)))))
19551da177e4SLinus Torvalds 		return -EINVAL;
19561da177e4SLinus Torvalds 
1957e94b1766SChristoph Lameter 	new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
19581da177e4SLinus Torvalds 	if (!new)
19595beb4930SRik van Riel 		goto out_err;
19601da177e4SLinus Torvalds 
19611da177e4SLinus Torvalds 	/* most fields are the same, copy all, and then fixup */
19621da177e4SLinus Torvalds 	*new = *vma;
19631da177e4SLinus Torvalds 
19645beb4930SRik van Riel 	INIT_LIST_HEAD(&new->anon_vma_chain);
19655beb4930SRik van Riel 
19661da177e4SLinus Torvalds 	if (new_below)
19671da177e4SLinus Torvalds 		new->vm_end = addr;
19681da177e4SLinus Torvalds 	else {
19691da177e4SLinus Torvalds 		new->vm_start = addr;
19701da177e4SLinus Torvalds 		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
19711da177e4SLinus Torvalds 	}
19721da177e4SLinus Torvalds 
1973846a16bfSLee Schermerhorn 	pol = mpol_dup(vma_policy(vma));
19741da177e4SLinus Torvalds 	if (IS_ERR(pol)) {
19755beb4930SRik van Riel 		err = PTR_ERR(pol);
19765beb4930SRik van Riel 		goto out_free_vma;
19771da177e4SLinus Torvalds 	}
19781da177e4SLinus Torvalds 	vma_set_policy(new, pol);
19791da177e4SLinus Torvalds 
19805beb4930SRik van Riel 	if (anon_vma_clone(new, vma))
19815beb4930SRik van Riel 		goto out_free_mpol;
19825beb4930SRik van Riel 
1983*e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
19841da177e4SLinus Torvalds 		get_file(new->vm_file);
19851da177e4SLinus Torvalds 
19861da177e4SLinus Torvalds 	if (new->vm_ops && new->vm_ops->open)
19871da177e4SLinus Torvalds 		new->vm_ops->open(new);
19881da177e4SLinus Torvalds 
19891da177e4SLinus Torvalds 	if (new_below)
19905beb4930SRik van Riel 		err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
19911da177e4SLinus Torvalds 			((addr - new->vm_start) >> PAGE_SHIFT), new);
19921da177e4SLinus Torvalds 	else
19935beb4930SRik van Riel 		err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
19941da177e4SLinus Torvalds 
19955beb4930SRik van Riel 	/* Success. */
19965beb4930SRik van Riel 	if (!err)
19971da177e4SLinus Torvalds 		return 0;
19985beb4930SRik van Riel 
19995beb4930SRik van Riel 	/* Clean everything up if vma_adjust failed. */
200058927533SRik van Riel 	if (new->vm_ops && new->vm_ops->close)
20015beb4930SRik van Riel 		new->vm_ops->close(new);
2002*e9714acfSKonstantin Khlebnikov 	if (new->vm_file)
20035beb4930SRik van Riel 		fput(new->vm_file);
20042aeadc30SAndrea Arcangeli 	unlink_anon_vmas(new);
20055beb4930SRik van Riel  out_free_mpol:
20065beb4930SRik van Riel 	mpol_put(pol);
20075beb4930SRik van Riel  out_free_vma:
20085beb4930SRik van Riel 	kmem_cache_free(vm_area_cachep, new);
20095beb4930SRik van Riel  out_err:
20105beb4930SRik van Riel 	return err;
20111da177e4SLinus Torvalds }
20121da177e4SLinus Torvalds 
2013659ace58SKOSAKI Motohiro /*
2014659ace58SKOSAKI Motohiro  * Split a vma into two pieces at address 'addr', a new vma is allocated
2015659ace58SKOSAKI Motohiro  * either for the first part or the tail.
2016659ace58SKOSAKI Motohiro  */
2017659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2018659ace58SKOSAKI Motohiro 	      unsigned long addr, int new_below)
2019659ace58SKOSAKI Motohiro {
2020659ace58SKOSAKI Motohiro 	if (mm->map_count >= sysctl_max_map_count)
2021659ace58SKOSAKI Motohiro 		return -ENOMEM;
2022659ace58SKOSAKI Motohiro 
2023659ace58SKOSAKI Motohiro 	return __split_vma(mm, vma, addr, new_below);
2024659ace58SKOSAKI Motohiro }
2025659ace58SKOSAKI Motohiro 
20261da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds
20271da177e4SLinus Torvalds  * what needs doing, and the areas themselves, which do the
20281da177e4SLinus Torvalds  * work.  This now handles partial unmappings.
20291da177e4SLinus Torvalds  * Jeremy Fitzhardinge <jeremy@goop.org>
20301da177e4SLinus Torvalds  */
20311da177e4SLinus Torvalds int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
20321da177e4SLinus Torvalds {
20331da177e4SLinus Torvalds 	unsigned long end;
2034146425a3SHugh Dickins 	struct vm_area_struct *vma, *prev, *last;
20351da177e4SLinus Torvalds 
20361da177e4SLinus Torvalds 	if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
20371da177e4SLinus Torvalds 		return -EINVAL;
20381da177e4SLinus Torvalds 
20391da177e4SLinus Torvalds 	if ((len = PAGE_ALIGN(len)) == 0)
20401da177e4SLinus Torvalds 		return -EINVAL;
20411da177e4SLinus Torvalds 
20421da177e4SLinus Torvalds 	/* Find the first overlapping VMA */
20439be34c9dSLinus Torvalds 	vma = find_vma(mm, start);
2044146425a3SHugh Dickins 	if (!vma)
20451da177e4SLinus Torvalds 		return 0;
20469be34c9dSLinus Torvalds 	prev = vma->vm_prev;
2047146425a3SHugh Dickins 	/* we have  start < vma->vm_end  */
20481da177e4SLinus Torvalds 
20491da177e4SLinus Torvalds 	/* if it doesn't overlap, we have nothing.. */
20501da177e4SLinus Torvalds 	end = start + len;
2051146425a3SHugh Dickins 	if (vma->vm_start >= end)
20521da177e4SLinus Torvalds 		return 0;
20531da177e4SLinus Torvalds 
20541da177e4SLinus Torvalds 	/*
20551da177e4SLinus Torvalds 	 * If we need to split any vma, do it now to save pain later.
20561da177e4SLinus Torvalds 	 *
20571da177e4SLinus Torvalds 	 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
20581da177e4SLinus Torvalds 	 * unmapped vm_area_struct will remain in use: so lower split_vma
20591da177e4SLinus Torvalds 	 * places tmp vma above, and higher split_vma places tmp vma below.
20601da177e4SLinus Torvalds 	 */
2061146425a3SHugh Dickins 	if (start > vma->vm_start) {
2062659ace58SKOSAKI Motohiro 		int error;
2063659ace58SKOSAKI Motohiro 
2064659ace58SKOSAKI Motohiro 		/*
2065659ace58SKOSAKI Motohiro 		 * Make sure that map_count on return from munmap() will
2066659ace58SKOSAKI Motohiro 		 * not exceed its limit; but let map_count go just above
2067659ace58SKOSAKI Motohiro 		 * its limit temporarily, to help free resources as expected.
2068659ace58SKOSAKI Motohiro 		 */
2069659ace58SKOSAKI Motohiro 		if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2070659ace58SKOSAKI Motohiro 			return -ENOMEM;
2071659ace58SKOSAKI Motohiro 
2072659ace58SKOSAKI Motohiro 		error = __split_vma(mm, vma, start, 0);
20731da177e4SLinus Torvalds 		if (error)
20741da177e4SLinus Torvalds 			return error;
2075146425a3SHugh Dickins 		prev = vma;
20761da177e4SLinus Torvalds 	}
20771da177e4SLinus Torvalds 
20781da177e4SLinus Torvalds 	/* Does it split the last one? */
20791da177e4SLinus Torvalds 	last = find_vma(mm, end);
20801da177e4SLinus Torvalds 	if (last && end > last->vm_start) {
2081659ace58SKOSAKI Motohiro 		int error = __split_vma(mm, last, end, 1);
20821da177e4SLinus Torvalds 		if (error)
20831da177e4SLinus Torvalds 			return error;
20841da177e4SLinus Torvalds 	}
2085146425a3SHugh Dickins 	vma = prev? prev->vm_next: mm->mmap;
20861da177e4SLinus Torvalds 
20871da177e4SLinus Torvalds 	/*
2088ba470de4SRik van Riel 	 * unlock any mlock()ed ranges before detaching vmas
2089ba470de4SRik van Riel 	 */
2090ba470de4SRik van Riel 	if (mm->locked_vm) {
2091ba470de4SRik van Riel 		struct vm_area_struct *tmp = vma;
2092ba470de4SRik van Riel 		while (tmp && tmp->vm_start < end) {
2093ba470de4SRik van Riel 			if (tmp->vm_flags & VM_LOCKED) {
2094ba470de4SRik van Riel 				mm->locked_vm -= vma_pages(tmp);
2095ba470de4SRik van Riel 				munlock_vma_pages_all(tmp);
2096ba470de4SRik van Riel 			}
2097ba470de4SRik van Riel 			tmp = tmp->vm_next;
2098ba470de4SRik van Riel 		}
2099ba470de4SRik van Riel 	}
2100ba470de4SRik van Riel 
2101ba470de4SRik van Riel 	/*
21021da177e4SLinus Torvalds 	 * Remove the vma's, and unmap the actual pages
21031da177e4SLinus Torvalds 	 */
2104146425a3SHugh Dickins 	detach_vmas_to_be_unmapped(mm, vma, prev, end);
2105146425a3SHugh Dickins 	unmap_region(mm, vma, prev, start, end);
21061da177e4SLinus Torvalds 
21071da177e4SLinus Torvalds 	/* Fix up all other VM information */
21082c0b3814SHugh Dickins 	remove_vma_list(mm, vma);
21091da177e4SLinus Torvalds 
21101da177e4SLinus Torvalds 	return 0;
21111da177e4SLinus Torvalds }
21121da177e4SLinus Torvalds 
2113bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len)
2114a46ef99dSLinus Torvalds {
2115a46ef99dSLinus Torvalds 	int ret;
2116bfce281cSAl Viro 	struct mm_struct *mm = current->mm;
2117a46ef99dSLinus Torvalds 
2118a46ef99dSLinus Torvalds 	down_write(&mm->mmap_sem);
2119a46ef99dSLinus Torvalds 	ret = do_munmap(mm, start, len);
2120a46ef99dSLinus Torvalds 	up_write(&mm->mmap_sem);
2121a46ef99dSLinus Torvalds 	return ret;
2122a46ef99dSLinus Torvalds }
2123a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap);
2124a46ef99dSLinus Torvalds 
21256a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
21261da177e4SLinus Torvalds {
21271da177e4SLinus Torvalds 	profile_munmap(addr);
2128bfce281cSAl Viro 	return vm_munmap(addr, len);
21291da177e4SLinus Torvalds }
21301da177e4SLinus Torvalds 
21311da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm)
21321da177e4SLinus Torvalds {
2133a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM
21341da177e4SLinus Torvalds 	if (unlikely(down_read_trylock(&mm->mmap_sem))) {
21351da177e4SLinus Torvalds 		WARN_ON(1);
21361da177e4SLinus Torvalds 		up_read(&mm->mmap_sem);
21371da177e4SLinus Torvalds 	}
21381da177e4SLinus Torvalds #endif
21391da177e4SLinus Torvalds }
21401da177e4SLinus Torvalds 
21411da177e4SLinus Torvalds /*
21421da177e4SLinus Torvalds  *  this is really a simplified "do_mmap".  it only handles
21431da177e4SLinus Torvalds  *  anonymous maps.  eventually we may be able to do some
21441da177e4SLinus Torvalds  *  brk-specific accounting here.
21451da177e4SLinus Torvalds  */
2146e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len)
21471da177e4SLinus Torvalds {
21481da177e4SLinus Torvalds 	struct mm_struct * mm = current->mm;
21491da177e4SLinus Torvalds 	struct vm_area_struct * vma, * prev;
21501da177e4SLinus Torvalds 	unsigned long flags;
21511da177e4SLinus Torvalds 	struct rb_node ** rb_link, * rb_parent;
21521da177e4SLinus Torvalds 	pgoff_t pgoff = addr >> PAGE_SHIFT;
21533a459756SKirill Korotaev 	int error;
21541da177e4SLinus Torvalds 
21551da177e4SLinus Torvalds 	len = PAGE_ALIGN(len);
21561da177e4SLinus Torvalds 	if (!len)
21571da177e4SLinus Torvalds 		return addr;
21581da177e4SLinus Torvalds 
21593a459756SKirill Korotaev 	flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
21603a459756SKirill Korotaev 
21612c6a1016SAl Viro 	error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
21622c6a1016SAl Viro 	if (error & ~PAGE_MASK)
21633a459756SKirill Korotaev 		return error;
21643a459756SKirill Korotaev 
21651da177e4SLinus Torvalds 	/*
21661da177e4SLinus Torvalds 	 * mlock MCL_FUTURE?
21671da177e4SLinus Torvalds 	 */
21681da177e4SLinus Torvalds 	if (mm->def_flags & VM_LOCKED) {
21691da177e4SLinus Torvalds 		unsigned long locked, lock_limit;
217093ea1d0aSChris Wright 		locked = len >> PAGE_SHIFT;
217193ea1d0aSChris Wright 		locked += mm->locked_vm;
217259e99e5bSJiri Slaby 		lock_limit = rlimit(RLIMIT_MEMLOCK);
217393ea1d0aSChris Wright 		lock_limit >>= PAGE_SHIFT;
21741da177e4SLinus Torvalds 		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
21751da177e4SLinus Torvalds 			return -EAGAIN;
21761da177e4SLinus Torvalds 	}
21771da177e4SLinus Torvalds 
21781da177e4SLinus Torvalds 	/*
21791da177e4SLinus Torvalds 	 * mm->mmap_sem is required to protect against another thread
21801da177e4SLinus Torvalds 	 * changing the mappings in case we sleep.
21811da177e4SLinus Torvalds 	 */
21821da177e4SLinus Torvalds 	verify_mm_writelocked(mm);
21831da177e4SLinus Torvalds 
21841da177e4SLinus Torvalds 	/*
21851da177e4SLinus Torvalds 	 * Clear old maps.  this also does some error checking for us
21861da177e4SLinus Torvalds 	 */
21871da177e4SLinus Torvalds  munmap_back:
21881da177e4SLinus Torvalds 	vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
21891da177e4SLinus Torvalds 	if (vma && vma->vm_start < addr + len) {
21901da177e4SLinus Torvalds 		if (do_munmap(mm, addr, len))
21911da177e4SLinus Torvalds 			return -ENOMEM;
21921da177e4SLinus Torvalds 		goto munmap_back;
21931da177e4SLinus Torvalds 	}
21941da177e4SLinus Torvalds 
21951da177e4SLinus Torvalds 	/* Check against address space limits *after* clearing old maps... */
2196119f657cSakpm@osdl.org 	if (!may_expand_vm(mm, len >> PAGE_SHIFT))
21971da177e4SLinus Torvalds 		return -ENOMEM;
21981da177e4SLinus Torvalds 
21991da177e4SLinus Torvalds 	if (mm->map_count > sysctl_max_map_count)
22001da177e4SLinus Torvalds 		return -ENOMEM;
22011da177e4SLinus Torvalds 
2202191c5424SAl Viro 	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
22031da177e4SLinus Torvalds 		return -ENOMEM;
22041da177e4SLinus Torvalds 
22051da177e4SLinus Torvalds 	/* Can we just expand an old private anonymous mapping? */
2206ba470de4SRik van Riel 	vma = vma_merge(mm, prev, addr, addr + len, flags,
2207ba470de4SRik van Riel 					NULL, NULL, pgoff, NULL);
2208ba470de4SRik van Riel 	if (vma)
22091da177e4SLinus Torvalds 		goto out;
22101da177e4SLinus Torvalds 
22111da177e4SLinus Torvalds 	/*
22121da177e4SLinus Torvalds 	 * create a vma struct for an anonymous mapping
22131da177e4SLinus Torvalds 	 */
2214c5e3b83eSPekka Enberg 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
22151da177e4SLinus Torvalds 	if (!vma) {
22161da177e4SLinus Torvalds 		vm_unacct_memory(len >> PAGE_SHIFT);
22171da177e4SLinus Torvalds 		return -ENOMEM;
22181da177e4SLinus Torvalds 	}
22191da177e4SLinus Torvalds 
22205beb4930SRik van Riel 	INIT_LIST_HEAD(&vma->anon_vma_chain);
22211da177e4SLinus Torvalds 	vma->vm_mm = mm;
22221da177e4SLinus Torvalds 	vma->vm_start = addr;
22231da177e4SLinus Torvalds 	vma->vm_end = addr + len;
22241da177e4SLinus Torvalds 	vma->vm_pgoff = pgoff;
22251da177e4SLinus Torvalds 	vma->vm_flags = flags;
22263ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(flags);
22271da177e4SLinus Torvalds 	vma_link(mm, vma, prev, rb_link, rb_parent);
22281da177e4SLinus Torvalds out:
22293af9e859SEric B Munson 	perf_event_mmap(vma);
22301da177e4SLinus Torvalds 	mm->total_vm += len >> PAGE_SHIFT;
22311da177e4SLinus Torvalds 	if (flags & VM_LOCKED) {
2232ba470de4SRik van Riel 		if (!mlock_vma_pages_range(vma, addr, addr + len))
2233ba470de4SRik van Riel 			mm->locked_vm += (len >> PAGE_SHIFT);
22341da177e4SLinus Torvalds 	}
22351da177e4SLinus Torvalds 	return addr;
22361da177e4SLinus Torvalds }
22371da177e4SLinus Torvalds 
2238e4eb1ff6SLinus Torvalds unsigned long vm_brk(unsigned long addr, unsigned long len)
2239e4eb1ff6SLinus Torvalds {
2240e4eb1ff6SLinus Torvalds 	struct mm_struct *mm = current->mm;
2241e4eb1ff6SLinus Torvalds 	unsigned long ret;
2242e4eb1ff6SLinus Torvalds 
2243e4eb1ff6SLinus Torvalds 	down_write(&mm->mmap_sem);
2244e4eb1ff6SLinus Torvalds 	ret = do_brk(addr, len);
2245e4eb1ff6SLinus Torvalds 	up_write(&mm->mmap_sem);
2246e4eb1ff6SLinus Torvalds 	return ret;
2247e4eb1ff6SLinus Torvalds }
2248e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk);
22491da177e4SLinus Torvalds 
22501da177e4SLinus Torvalds /* Release all mmaps. */
22511da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
22521da177e4SLinus Torvalds {
2253d16dfc55SPeter Zijlstra 	struct mmu_gather tlb;
2254ba470de4SRik van Riel 	struct vm_area_struct *vma;
22551da177e4SLinus Torvalds 	unsigned long nr_accounted = 0;
22561da177e4SLinus Torvalds 
2257d6dd61c8SJeremy Fitzhardinge 	/* mm's last user has gone, and its about to be pulled down */
2258cddb8a5cSAndrea Arcangeli 	mmu_notifier_release(mm);
2259d6dd61c8SJeremy Fitzhardinge 
2260ba470de4SRik van Riel 	if (mm->locked_vm) {
2261ba470de4SRik van Riel 		vma = mm->mmap;
2262ba470de4SRik van Riel 		while (vma) {
2263ba470de4SRik van Riel 			if (vma->vm_flags & VM_LOCKED)
2264ba470de4SRik van Riel 				munlock_vma_pages_all(vma);
2265ba470de4SRik van Riel 			vma = vma->vm_next;
2266ba470de4SRik van Riel 		}
2267ba470de4SRik van Riel 	}
22689480c53eSJeremy Fitzhardinge 
22699480c53eSJeremy Fitzhardinge 	arch_exit_mmap(mm);
22709480c53eSJeremy Fitzhardinge 
2271ba470de4SRik van Riel 	vma = mm->mmap;
22729480c53eSJeremy Fitzhardinge 	if (!vma)	/* Can happen if dup_mmap() received an OOM */
22739480c53eSJeremy Fitzhardinge 		return;
22749480c53eSJeremy Fitzhardinge 
22751da177e4SLinus Torvalds 	lru_add_drain();
22761da177e4SLinus Torvalds 	flush_cache_mm(mm);
2277d16dfc55SPeter Zijlstra 	tlb_gather_mmu(&tlb, mm, 1);
2278901608d9SOleg Nesterov 	/* update_hiwater_rss(mm) here? but nobody should be looking */
2279e0da382cSHugh Dickins 	/* Use -1 here to ensure all VMAs in the mm are unmapped */
22804f74d2c8SLinus Torvalds 	unmap_vmas(&tlb, vma, 0, -1);
22819ba69294SHugh Dickins 
2282d16dfc55SPeter Zijlstra 	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
2283853f5e26SAl Viro 	tlb_finish_mmu(&tlb, 0, -1);
22841da177e4SLinus Torvalds 
22851da177e4SLinus Torvalds 	/*
22868f4f8c16SHugh Dickins 	 * Walk the list again, actually closing and freeing it,
22878f4f8c16SHugh Dickins 	 * with preemption enabled, without holding any MM locks.
22881da177e4SLinus Torvalds 	 */
22894f74d2c8SLinus Torvalds 	while (vma) {
22904f74d2c8SLinus Torvalds 		if (vma->vm_flags & VM_ACCOUNT)
22914f74d2c8SLinus Torvalds 			nr_accounted += vma_pages(vma);
2292a8fb5618SHugh Dickins 		vma = remove_vma(vma);
22934f74d2c8SLinus Torvalds 	}
22944f74d2c8SLinus Torvalds 	vm_unacct_memory(nr_accounted);
2295e0da382cSHugh Dickins 
2296f9aed62aSHugh Dickins 	WARN_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
22971da177e4SLinus Torvalds }
22981da177e4SLinus Torvalds 
22991da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address
23001da177e4SLinus Torvalds  * and into the inode's i_mmap tree.  If vm_file is non-NULL
23013d48ae45SPeter Zijlstra  * then i_mmap_mutex is taken here.
23021da177e4SLinus Torvalds  */
23031da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
23041da177e4SLinus Torvalds {
23051da177e4SLinus Torvalds 	struct vm_area_struct * __vma, * prev;
23061da177e4SLinus Torvalds 	struct rb_node ** rb_link, * rb_parent;
23071da177e4SLinus Torvalds 
23081da177e4SLinus Torvalds 	/*
23091da177e4SLinus Torvalds 	 * The vm_pgoff of a purely anonymous vma should be irrelevant
23101da177e4SLinus Torvalds 	 * until its first write fault, when page's anon_vma and index
23111da177e4SLinus Torvalds 	 * are set.  But now set the vm_pgoff it will almost certainly
23121da177e4SLinus Torvalds 	 * end up with (unless mremap moves it elsewhere before that
23131da177e4SLinus Torvalds 	 * first wfault), so /proc/pid/maps tells a consistent story.
23141da177e4SLinus Torvalds 	 *
23151da177e4SLinus Torvalds 	 * By setting it to reflect the virtual start address of the
23161da177e4SLinus Torvalds 	 * vma, merges and splits can happen in a seamless way, just
23171da177e4SLinus Torvalds 	 * using the existing file pgoff checks and manipulations.
23181da177e4SLinus Torvalds 	 * Similarly in do_mmap_pgoff and in do_brk.
23191da177e4SLinus Torvalds 	 */
23201da177e4SLinus Torvalds 	if (!vma->vm_file) {
23211da177e4SLinus Torvalds 		BUG_ON(vma->anon_vma);
23221da177e4SLinus Torvalds 		vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
23231da177e4SLinus Torvalds 	}
23241da177e4SLinus Torvalds 	__vma = find_vma_prepare(mm,vma->vm_start,&prev,&rb_link,&rb_parent);
23251da177e4SLinus Torvalds 	if (__vma && __vma->vm_start < vma->vm_end)
23261da177e4SLinus Torvalds 		return -ENOMEM;
23272fd4ef85SHugh Dickins 	if ((vma->vm_flags & VM_ACCOUNT) &&
232834b4e4aaSAlan Cox 	     security_vm_enough_memory_mm(mm, vma_pages(vma)))
23292fd4ef85SHugh Dickins 		return -ENOMEM;
23302b144498SSrikar Dronamraju 
23311da177e4SLinus Torvalds 	vma_link(mm, vma, prev, rb_link, rb_parent);
23321da177e4SLinus Torvalds 	return 0;
23331da177e4SLinus Torvalds }
23341da177e4SLinus Torvalds 
23351da177e4SLinus Torvalds /*
23361da177e4SLinus Torvalds  * Copy the vma structure to a new location in the same mm,
23371da177e4SLinus Torvalds  * prior to moving page table entries, to effect an mremap move.
23381da177e4SLinus Torvalds  */
23391da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
23401da177e4SLinus Torvalds 	unsigned long addr, unsigned long len, pgoff_t pgoff)
23411da177e4SLinus Torvalds {
23421da177e4SLinus Torvalds 	struct vm_area_struct *vma = *vmap;
23431da177e4SLinus Torvalds 	unsigned long vma_start = vma->vm_start;
23441da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
23451da177e4SLinus Torvalds 	struct vm_area_struct *new_vma, *prev;
23461da177e4SLinus Torvalds 	struct rb_node **rb_link, *rb_parent;
23471da177e4SLinus Torvalds 	struct mempolicy *pol;
2348948f017bSAndrea Arcangeli 	bool faulted_in_anon_vma = true;
23491da177e4SLinus Torvalds 
23501da177e4SLinus Torvalds 	/*
23511da177e4SLinus Torvalds 	 * If anonymous vma has not yet been faulted, update new pgoff
23521da177e4SLinus Torvalds 	 * to match new location, to increase its chance of merging.
23531da177e4SLinus Torvalds 	 */
2354948f017bSAndrea Arcangeli 	if (unlikely(!vma->vm_file && !vma->anon_vma)) {
23551da177e4SLinus Torvalds 		pgoff = addr >> PAGE_SHIFT;
2356948f017bSAndrea Arcangeli 		faulted_in_anon_vma = false;
2357948f017bSAndrea Arcangeli 	}
23581da177e4SLinus Torvalds 
23591da177e4SLinus Torvalds 	find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
23601da177e4SLinus Torvalds 	new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
23611da177e4SLinus Torvalds 			vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
23621da177e4SLinus Torvalds 	if (new_vma) {
23631da177e4SLinus Torvalds 		/*
23641da177e4SLinus Torvalds 		 * Source vma may have been merged into new_vma
23651da177e4SLinus Torvalds 		 */
2366948f017bSAndrea Arcangeli 		if (unlikely(vma_start >= new_vma->vm_start &&
2367948f017bSAndrea Arcangeli 			     vma_start < new_vma->vm_end)) {
2368948f017bSAndrea Arcangeli 			/*
2369948f017bSAndrea Arcangeli 			 * The only way we can get a vma_merge with
2370948f017bSAndrea Arcangeli 			 * self during an mremap is if the vma hasn't
2371948f017bSAndrea Arcangeli 			 * been faulted in yet and we were allowed to
2372948f017bSAndrea Arcangeli 			 * reset the dst vma->vm_pgoff to the
2373948f017bSAndrea Arcangeli 			 * destination address of the mremap to allow
2374948f017bSAndrea Arcangeli 			 * the merge to happen. mremap must change the
2375948f017bSAndrea Arcangeli 			 * vm_pgoff linearity between src and dst vmas
2376948f017bSAndrea Arcangeli 			 * (in turn preventing a vma_merge) to be
2377948f017bSAndrea Arcangeli 			 * safe. It is only safe to keep the vm_pgoff
2378948f017bSAndrea Arcangeli 			 * linear if there are no pages mapped yet.
2379948f017bSAndrea Arcangeli 			 */
2380948f017bSAndrea Arcangeli 			VM_BUG_ON(faulted_in_anon_vma);
23811da177e4SLinus Torvalds 			*vmap = new_vma;
2382948f017bSAndrea Arcangeli 		} else
2383948f017bSAndrea Arcangeli 			anon_vma_moveto_tail(new_vma);
23841da177e4SLinus Torvalds 	} else {
2385e94b1766SChristoph Lameter 		new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
23861da177e4SLinus Torvalds 		if (new_vma) {
23871da177e4SLinus Torvalds 			*new_vma = *vma;
2388846a16bfSLee Schermerhorn 			pol = mpol_dup(vma_policy(vma));
23895beb4930SRik van Riel 			if (IS_ERR(pol))
23905beb4930SRik van Riel 				goto out_free_vma;
23915beb4930SRik van Riel 			INIT_LIST_HEAD(&new_vma->anon_vma_chain);
23925beb4930SRik van Riel 			if (anon_vma_clone(new_vma, vma))
23935beb4930SRik van Riel 				goto out_free_mempol;
23941da177e4SLinus Torvalds 			vma_set_policy(new_vma, pol);
23951da177e4SLinus Torvalds 			new_vma->vm_start = addr;
23961da177e4SLinus Torvalds 			new_vma->vm_end = addr + len;
23971da177e4SLinus Torvalds 			new_vma->vm_pgoff = pgoff;
2398*e9714acfSKonstantin Khlebnikov 			if (new_vma->vm_file)
23991da177e4SLinus Torvalds 				get_file(new_vma->vm_file);
24001da177e4SLinus Torvalds 			if (new_vma->vm_ops && new_vma->vm_ops->open)
24011da177e4SLinus Torvalds 				new_vma->vm_ops->open(new_vma);
24021da177e4SLinus Torvalds 			vma_link(mm, new_vma, prev, rb_link, rb_parent);
24031da177e4SLinus Torvalds 		}
24041da177e4SLinus Torvalds 	}
24051da177e4SLinus Torvalds 	return new_vma;
24065beb4930SRik van Riel 
24075beb4930SRik van Riel  out_free_mempol:
24085beb4930SRik van Riel 	mpol_put(pol);
24095beb4930SRik van Riel  out_free_vma:
24105beb4930SRik van Riel 	kmem_cache_free(vm_area_cachep, new_vma);
24115beb4930SRik van Riel 	return NULL;
24121da177e4SLinus Torvalds }
2413119f657cSakpm@osdl.org 
2414119f657cSakpm@osdl.org /*
2415119f657cSakpm@osdl.org  * Return true if the calling process may expand its vm space by the passed
2416119f657cSakpm@osdl.org  * number of pages
2417119f657cSakpm@osdl.org  */
2418119f657cSakpm@osdl.org int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2419119f657cSakpm@osdl.org {
2420119f657cSakpm@osdl.org 	unsigned long cur = mm->total_vm;	/* pages */
2421119f657cSakpm@osdl.org 	unsigned long lim;
2422119f657cSakpm@osdl.org 
242359e99e5bSJiri Slaby 	lim = rlimit(RLIMIT_AS) >> PAGE_SHIFT;
2424119f657cSakpm@osdl.org 
2425119f657cSakpm@osdl.org 	if (cur + npages > lim)
2426119f657cSakpm@osdl.org 		return 0;
2427119f657cSakpm@osdl.org 	return 1;
2428119f657cSakpm@osdl.org }
2429fa5dc22fSRoland McGrath 
2430fa5dc22fSRoland McGrath 
2431b1d0e4f5SNick Piggin static int special_mapping_fault(struct vm_area_struct *vma,
2432b1d0e4f5SNick Piggin 				struct vm_fault *vmf)
2433fa5dc22fSRoland McGrath {
2434b1d0e4f5SNick Piggin 	pgoff_t pgoff;
2435fa5dc22fSRoland McGrath 	struct page **pages;
2436fa5dc22fSRoland McGrath 
2437b1d0e4f5SNick Piggin 	/*
2438b1d0e4f5SNick Piggin 	 * special mappings have no vm_file, and in that case, the mm
2439b1d0e4f5SNick Piggin 	 * uses vm_pgoff internally. So we have to subtract it from here.
2440b1d0e4f5SNick Piggin 	 * We are allowed to do this because we are the mm; do not copy
2441b1d0e4f5SNick Piggin 	 * this code into drivers!
2442b1d0e4f5SNick Piggin 	 */
2443b1d0e4f5SNick Piggin 	pgoff = vmf->pgoff - vma->vm_pgoff;
2444fa5dc22fSRoland McGrath 
2445b1d0e4f5SNick Piggin 	for (pages = vma->vm_private_data; pgoff && *pages; ++pages)
2446b1d0e4f5SNick Piggin 		pgoff--;
2447fa5dc22fSRoland McGrath 
2448fa5dc22fSRoland McGrath 	if (*pages) {
2449fa5dc22fSRoland McGrath 		struct page *page = *pages;
2450fa5dc22fSRoland McGrath 		get_page(page);
2451b1d0e4f5SNick Piggin 		vmf->page = page;
2452b1d0e4f5SNick Piggin 		return 0;
2453fa5dc22fSRoland McGrath 	}
2454fa5dc22fSRoland McGrath 
2455b1d0e4f5SNick Piggin 	return VM_FAULT_SIGBUS;
2456fa5dc22fSRoland McGrath }
2457fa5dc22fSRoland McGrath 
2458fa5dc22fSRoland McGrath /*
2459fa5dc22fSRoland McGrath  * Having a close hook prevents vma merging regardless of flags.
2460fa5dc22fSRoland McGrath  */
2461fa5dc22fSRoland McGrath static void special_mapping_close(struct vm_area_struct *vma)
2462fa5dc22fSRoland McGrath {
2463fa5dc22fSRoland McGrath }
2464fa5dc22fSRoland McGrath 
2465f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct special_mapping_vmops = {
2466fa5dc22fSRoland McGrath 	.close = special_mapping_close,
2467b1d0e4f5SNick Piggin 	.fault = special_mapping_fault,
2468fa5dc22fSRoland McGrath };
2469fa5dc22fSRoland McGrath 
2470fa5dc22fSRoland McGrath /*
2471fa5dc22fSRoland McGrath  * Called with mm->mmap_sem held for writing.
2472fa5dc22fSRoland McGrath  * Insert a new vma covering the given region, with the given flags.
2473fa5dc22fSRoland McGrath  * Its pages are supplied by the given array of struct page *.
2474fa5dc22fSRoland McGrath  * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
2475fa5dc22fSRoland McGrath  * The region past the last page supplied will always produce SIGBUS.
2476fa5dc22fSRoland McGrath  * The array pointer and the pages it points to are assumed to stay alive
2477fa5dc22fSRoland McGrath  * for as long as this mapping might exist.
2478fa5dc22fSRoland McGrath  */
2479fa5dc22fSRoland McGrath int install_special_mapping(struct mm_struct *mm,
2480fa5dc22fSRoland McGrath 			    unsigned long addr, unsigned long len,
2481fa5dc22fSRoland McGrath 			    unsigned long vm_flags, struct page **pages)
2482fa5dc22fSRoland McGrath {
2483462e635eSTavis Ormandy 	int ret;
2484fa5dc22fSRoland McGrath 	struct vm_area_struct *vma;
2485fa5dc22fSRoland McGrath 
2486fa5dc22fSRoland McGrath 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
2487fa5dc22fSRoland McGrath 	if (unlikely(vma == NULL))
2488fa5dc22fSRoland McGrath 		return -ENOMEM;
2489fa5dc22fSRoland McGrath 
24905beb4930SRik van Riel 	INIT_LIST_HEAD(&vma->anon_vma_chain);
2491fa5dc22fSRoland McGrath 	vma->vm_mm = mm;
2492fa5dc22fSRoland McGrath 	vma->vm_start = addr;
2493fa5dc22fSRoland McGrath 	vma->vm_end = addr + len;
2494fa5dc22fSRoland McGrath 
24952f98735cSNick Piggin 	vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND;
24963ed75eb8SColy Li 	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
2497fa5dc22fSRoland McGrath 
2498fa5dc22fSRoland McGrath 	vma->vm_ops = &special_mapping_vmops;
2499fa5dc22fSRoland McGrath 	vma->vm_private_data = pages;
2500fa5dc22fSRoland McGrath 
2501462e635eSTavis Ormandy 	ret = insert_vm_struct(mm, vma);
2502462e635eSTavis Ormandy 	if (ret)
2503462e635eSTavis Ormandy 		goto out;
2504fa5dc22fSRoland McGrath 
2505fa5dc22fSRoland McGrath 	mm->total_vm += len >> PAGE_SHIFT;
2506fa5dc22fSRoland McGrath 
2507cdd6c482SIngo Molnar 	perf_event_mmap(vma);
2508089dd79dSPeter Zijlstra 
2509fa5dc22fSRoland McGrath 	return 0;
2510462e635eSTavis Ormandy 
2511462e635eSTavis Ormandy out:
2512462e635eSTavis Ormandy 	kmem_cache_free(vm_area_cachep, vma);
2513462e635eSTavis Ormandy 	return ret;
2514fa5dc22fSRoland McGrath }
25157906d00cSAndrea Arcangeli 
25167906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex);
25177906d00cSAndrea Arcangeli 
2518454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
25197906d00cSAndrea Arcangeli {
2520012f1800SRik van Riel 	if (!test_bit(0, (unsigned long *) &anon_vma->root->head.next)) {
25217906d00cSAndrea Arcangeli 		/*
25227906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change from under us
25237906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
25247906d00cSAndrea Arcangeli 		 */
25252b575eb6SPeter Zijlstra 		mutex_lock_nest_lock(&anon_vma->root->mutex, &mm->mmap_sem);
25267906d00cSAndrea Arcangeli 		/*
25277906d00cSAndrea Arcangeli 		 * We can safely modify head.next after taking the
25282b575eb6SPeter Zijlstra 		 * anon_vma->root->mutex. If some other vma in this mm shares
25297906d00cSAndrea Arcangeli 		 * the same anon_vma we won't take it again.
25307906d00cSAndrea Arcangeli 		 *
25317906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
25327906d00cSAndrea Arcangeli 		 * can't change from under us thanks to the
25332b575eb6SPeter Zijlstra 		 * anon_vma->root->mutex.
25347906d00cSAndrea Arcangeli 		 */
25357906d00cSAndrea Arcangeli 		if (__test_and_set_bit(0, (unsigned long *)
2536012f1800SRik van Riel 				       &anon_vma->root->head.next))
25377906d00cSAndrea Arcangeli 			BUG();
25387906d00cSAndrea Arcangeli 	}
25397906d00cSAndrea Arcangeli }
25407906d00cSAndrea Arcangeli 
2541454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
25427906d00cSAndrea Arcangeli {
25437906d00cSAndrea Arcangeli 	if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
25447906d00cSAndrea Arcangeli 		/*
25457906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change from under us because
25467906d00cSAndrea Arcangeli 		 * we hold the mm_all_locks_mutex.
25477906d00cSAndrea Arcangeli 		 *
25487906d00cSAndrea Arcangeli 		 * Operations on ->flags have to be atomic because
25497906d00cSAndrea Arcangeli 		 * even if AS_MM_ALL_LOCKS is stable thanks to the
25507906d00cSAndrea Arcangeli 		 * mm_all_locks_mutex, there may be other cpus
25517906d00cSAndrea Arcangeli 		 * changing other bitflags in parallel to us.
25527906d00cSAndrea Arcangeli 		 */
25537906d00cSAndrea Arcangeli 		if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
25547906d00cSAndrea Arcangeli 			BUG();
25553d48ae45SPeter Zijlstra 		mutex_lock_nest_lock(&mapping->i_mmap_mutex, &mm->mmap_sem);
25567906d00cSAndrea Arcangeli 	}
25577906d00cSAndrea Arcangeli }
25587906d00cSAndrea Arcangeli 
25597906d00cSAndrea Arcangeli /*
25607906d00cSAndrea Arcangeli  * This operation locks against the VM for all pte/vma/mm related
25617906d00cSAndrea Arcangeli  * operations that could ever happen on a certain mm. This includes
25627906d00cSAndrea Arcangeli  * vmtruncate, try_to_unmap, and all page faults.
25637906d00cSAndrea Arcangeli  *
25647906d00cSAndrea Arcangeli  * The caller must take the mmap_sem in write mode before calling
25657906d00cSAndrea Arcangeli  * mm_take_all_locks(). The caller isn't allowed to release the
25667906d00cSAndrea Arcangeli  * mmap_sem until mm_drop_all_locks() returns.
25677906d00cSAndrea Arcangeli  *
25687906d00cSAndrea Arcangeli  * mmap_sem in write mode is required in order to block all operations
25697906d00cSAndrea Arcangeli  * that could modify pagetables and free pages without need of
25707906d00cSAndrea Arcangeli  * altering the vma layout (for example populate_range() with
25717906d00cSAndrea Arcangeli  * nonlinear vmas). It's also needed in write mode to avoid new
25727906d00cSAndrea Arcangeli  * anon_vmas to be associated with existing vmas.
25737906d00cSAndrea Arcangeli  *
25747906d00cSAndrea Arcangeli  * A single task can't take more than one mm_take_all_locks() in a row
25757906d00cSAndrea Arcangeli  * or it would deadlock.
25767906d00cSAndrea Arcangeli  *
25777906d00cSAndrea Arcangeli  * The LSB in anon_vma->head.next and the AS_MM_ALL_LOCKS bitflag in
25787906d00cSAndrea Arcangeli  * mapping->flags avoid to take the same lock twice, if more than one
25797906d00cSAndrea Arcangeli  * vma in this mm is backed by the same anon_vma or address_space.
25807906d00cSAndrea Arcangeli  *
25817906d00cSAndrea Arcangeli  * We can take all the locks in random order because the VM code
25822b575eb6SPeter Zijlstra  * taking i_mmap_mutex or anon_vma->mutex outside the mmap_sem never
25837906d00cSAndrea Arcangeli  * takes more than one of them in a row. Secondly we're protected
25847906d00cSAndrea Arcangeli  * against a concurrent mm_take_all_locks() by the mm_all_locks_mutex.
25857906d00cSAndrea Arcangeli  *
25867906d00cSAndrea Arcangeli  * mm_take_all_locks() and mm_drop_all_locks are expensive operations
25877906d00cSAndrea Arcangeli  * that may have to take thousand of locks.
25887906d00cSAndrea Arcangeli  *
25897906d00cSAndrea Arcangeli  * mm_take_all_locks() can fail if it's interrupted by signals.
25907906d00cSAndrea Arcangeli  */
25917906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm)
25927906d00cSAndrea Arcangeli {
25937906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
25945beb4930SRik van Riel 	struct anon_vma_chain *avc;
25957906d00cSAndrea Arcangeli 
25967906d00cSAndrea Arcangeli 	BUG_ON(down_read_trylock(&mm->mmap_sem));
25977906d00cSAndrea Arcangeli 
25987906d00cSAndrea Arcangeli 	mutex_lock(&mm_all_locks_mutex);
25997906d00cSAndrea Arcangeli 
26007906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
26017906d00cSAndrea Arcangeli 		if (signal_pending(current))
26027906d00cSAndrea Arcangeli 			goto out_unlock;
26037906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
2604454ed842SPeter Zijlstra 			vm_lock_mapping(mm, vma->vm_file->f_mapping);
26057906d00cSAndrea Arcangeli 	}
26067cd5a02fSPeter Zijlstra 
26077cd5a02fSPeter Zijlstra 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
26087cd5a02fSPeter Zijlstra 		if (signal_pending(current))
26097cd5a02fSPeter Zijlstra 			goto out_unlock;
26107cd5a02fSPeter Zijlstra 		if (vma->anon_vma)
26115beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
26125beb4930SRik van Riel 				vm_lock_anon_vma(mm, avc->anon_vma);
26137cd5a02fSPeter Zijlstra 	}
26147cd5a02fSPeter Zijlstra 
2615584cff54SKautuk Consul 	return 0;
26167906d00cSAndrea Arcangeli 
26177906d00cSAndrea Arcangeli out_unlock:
26187906d00cSAndrea Arcangeli 	mm_drop_all_locks(mm);
2619584cff54SKautuk Consul 	return -EINTR;
26207906d00cSAndrea Arcangeli }
26217906d00cSAndrea Arcangeli 
26227906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
26237906d00cSAndrea Arcangeli {
2624012f1800SRik van Riel 	if (test_bit(0, (unsigned long *) &anon_vma->root->head.next)) {
26257906d00cSAndrea Arcangeli 		/*
26267906d00cSAndrea Arcangeli 		 * The LSB of head.next can't change to 0 from under
26277906d00cSAndrea Arcangeli 		 * us because we hold the mm_all_locks_mutex.
26287906d00cSAndrea Arcangeli 		 *
26297906d00cSAndrea Arcangeli 		 * We must however clear the bitflag before unlocking
26307906d00cSAndrea Arcangeli 		 * the vma so the users using the anon_vma->head will
26317906d00cSAndrea Arcangeli 		 * never see our bitflag.
26327906d00cSAndrea Arcangeli 		 *
26337906d00cSAndrea Arcangeli 		 * No need of atomic instructions here, head.next
26347906d00cSAndrea Arcangeli 		 * can't change from under us until we release the
26352b575eb6SPeter Zijlstra 		 * anon_vma->root->mutex.
26367906d00cSAndrea Arcangeli 		 */
26377906d00cSAndrea Arcangeli 		if (!__test_and_clear_bit(0, (unsigned long *)
2638012f1800SRik van Riel 					  &anon_vma->root->head.next))
26397906d00cSAndrea Arcangeli 			BUG();
2640cba48b98SRik van Riel 		anon_vma_unlock(anon_vma);
26417906d00cSAndrea Arcangeli 	}
26427906d00cSAndrea Arcangeli }
26437906d00cSAndrea Arcangeli 
26447906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping)
26457906d00cSAndrea Arcangeli {
26467906d00cSAndrea Arcangeli 	if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
26477906d00cSAndrea Arcangeli 		/*
26487906d00cSAndrea Arcangeli 		 * AS_MM_ALL_LOCKS can't change to 0 from under us
26497906d00cSAndrea Arcangeli 		 * because we hold the mm_all_locks_mutex.
26507906d00cSAndrea Arcangeli 		 */
26513d48ae45SPeter Zijlstra 		mutex_unlock(&mapping->i_mmap_mutex);
26527906d00cSAndrea Arcangeli 		if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
26537906d00cSAndrea Arcangeli 					&mapping->flags))
26547906d00cSAndrea Arcangeli 			BUG();
26557906d00cSAndrea Arcangeli 	}
26567906d00cSAndrea Arcangeli }
26577906d00cSAndrea Arcangeli 
26587906d00cSAndrea Arcangeli /*
26597906d00cSAndrea Arcangeli  * The mmap_sem cannot be released by the caller until
26607906d00cSAndrea Arcangeli  * mm_drop_all_locks() returns.
26617906d00cSAndrea Arcangeli  */
26627906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm)
26637906d00cSAndrea Arcangeli {
26647906d00cSAndrea Arcangeli 	struct vm_area_struct *vma;
26655beb4930SRik van Riel 	struct anon_vma_chain *avc;
26667906d00cSAndrea Arcangeli 
26677906d00cSAndrea Arcangeli 	BUG_ON(down_read_trylock(&mm->mmap_sem));
26687906d00cSAndrea Arcangeli 	BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
26697906d00cSAndrea Arcangeli 
26707906d00cSAndrea Arcangeli 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
26717906d00cSAndrea Arcangeli 		if (vma->anon_vma)
26725beb4930SRik van Riel 			list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
26735beb4930SRik van Riel 				vm_unlock_anon_vma(avc->anon_vma);
26747906d00cSAndrea Arcangeli 		if (vma->vm_file && vma->vm_file->f_mapping)
26757906d00cSAndrea Arcangeli 			vm_unlock_mapping(vma->vm_file->f_mapping);
26767906d00cSAndrea Arcangeli 	}
26777906d00cSAndrea Arcangeli 
26787906d00cSAndrea Arcangeli 	mutex_unlock(&mm_all_locks_mutex);
26797906d00cSAndrea Arcangeli }
26808feae131SDavid Howells 
26818feae131SDavid Howells /*
26828feae131SDavid Howells  * initialise the VMA slab
26838feae131SDavid Howells  */
26848feae131SDavid Howells void __init mmap_init(void)
26858feae131SDavid Howells {
268600a62ce9SKOSAKI Motohiro 	int ret;
268700a62ce9SKOSAKI Motohiro 
268800a62ce9SKOSAKI Motohiro 	ret = percpu_counter_init(&vm_committed_as, 0);
268900a62ce9SKOSAKI Motohiro 	VM_BUG_ON(ret);
26908feae131SDavid Howells }
2691