xref: /linux/mm/nommu.c (revision 6a6160a7b5c27b3c38651baef92a14fa7072b3c1)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/mm/nommu.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Replacement code for mm functions to support CPU's that don't
51da177e4SLinus Torvalds  *  have any form of memory management unit (thus no virtual memory).
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  *  See Documentation/nommu-mmap.txt
81da177e4SLinus Torvalds  *
98feae131SDavid Howells  *  Copyright (c) 2004-2008 David Howells <dhowells@redhat.com>
101da177e4SLinus Torvalds  *  Copyright (c) 2000-2003 David McCullough <davidm@snapgear.com>
111da177e4SLinus Torvalds  *  Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org>
121da177e4SLinus Torvalds  *  Copyright (c) 2002      Greg Ungerer <gerg@snapgear.com>
13dd8632a1SPaul Mundt  *  Copyright (c) 2007-2008 Paul Mundt <lethal@linux-sh.org>
141da177e4SLinus Torvalds  */
151da177e4SLinus Torvalds 
16f2b8544fSDavid Howells #include <linux/module.h>
171da177e4SLinus Torvalds #include <linux/mm.h>
181da177e4SLinus Torvalds #include <linux/mman.h>
191da177e4SLinus Torvalds #include <linux/swap.h>
201da177e4SLinus Torvalds #include <linux/file.h>
211da177e4SLinus Torvalds #include <linux/highmem.h>
221da177e4SLinus Torvalds #include <linux/pagemap.h>
231da177e4SLinus Torvalds #include <linux/slab.h>
241da177e4SLinus Torvalds #include <linux/vmalloc.h>
25fa8e26ccSRoland McGrath #include <linux/tracehook.h>
261da177e4SLinus Torvalds #include <linux/blkdev.h>
271da177e4SLinus Torvalds #include <linux/backing-dev.h>
281da177e4SLinus Torvalds #include <linux/mount.h>
291da177e4SLinus Torvalds #include <linux/personality.h>
301da177e4SLinus Torvalds #include <linux/security.h>
311da177e4SLinus Torvalds #include <linux/syscalls.h>
321da177e4SLinus Torvalds 
331da177e4SLinus Torvalds #include <asm/uaccess.h>
341da177e4SLinus Torvalds #include <asm/tlb.h>
351da177e4SLinus Torvalds #include <asm/tlbflush.h>
368feae131SDavid Howells #include "internal.h"
378feae131SDavid Howells 
388feae131SDavid Howells static inline __attribute__((format(printf, 1, 2)))
398feae131SDavid Howells void no_printk(const char *fmt, ...)
408feae131SDavid Howells {
418feae131SDavid Howells }
428feae131SDavid Howells 
438feae131SDavid Howells #if 0
448feae131SDavid Howells #define kenter(FMT, ...) \
458feae131SDavid Howells 	printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
468feae131SDavid Howells #define kleave(FMT, ...) \
478feae131SDavid Howells 	printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
488feae131SDavid Howells #define kdebug(FMT, ...) \
498feae131SDavid Howells 	printk(KERN_DEBUG "xxx" FMT"yyy\n", ##__VA_ARGS__)
508feae131SDavid Howells #else
518feae131SDavid Howells #define kenter(FMT, ...) \
528feae131SDavid Howells 	no_printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
538feae131SDavid Howells #define kleave(FMT, ...) \
548feae131SDavid Howells 	no_printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
558feae131SDavid Howells #define kdebug(FMT, ...) \
568feae131SDavid Howells 	no_printk(KERN_DEBUG FMT"\n", ##__VA_ARGS__)
578feae131SDavid Howells #endif
581da177e4SLinus Torvalds 
59b291f000SNick Piggin #include "internal.h"
60b291f000SNick Piggin 
611da177e4SLinus Torvalds void *high_memory;
621da177e4SLinus Torvalds struct page *mem_map;
631da177e4SLinus Torvalds unsigned long max_mapnr;
641da177e4SLinus Torvalds unsigned long num_physpages;
6580119ef5SAlan Cox atomic_long_t vm_committed_space = ATOMIC_LONG_INIT(0);
661da177e4SLinus Torvalds int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
671da177e4SLinus Torvalds int sysctl_overcommit_ratio = 50; /* default is 50% */
681da177e4SLinus Torvalds int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
69dd8632a1SPaul Mundt int sysctl_nr_trim_pages = 1; /* page trimming behaviour */
701da177e4SLinus Torvalds int heap_stack_gap = 0;
711da177e4SLinus Torvalds 
728feae131SDavid Howells atomic_t mmap_pages_allocated;
738feae131SDavid Howells 
741da177e4SLinus Torvalds EXPORT_SYMBOL(mem_map);
756a04de6dSWu, Bryan EXPORT_SYMBOL(num_physpages);
761da177e4SLinus Torvalds 
778feae131SDavid Howells /* list of mapped, potentially shareable regions */
788feae131SDavid Howells static struct kmem_cache *vm_region_jar;
798feae131SDavid Howells struct rb_root nommu_region_tree = RB_ROOT;
808feae131SDavid Howells DECLARE_RWSEM(nommu_region_sem);
811da177e4SLinus Torvalds 
821da177e4SLinus Torvalds struct vm_operations_struct generic_file_vm_ops = {
831da177e4SLinus Torvalds };
841da177e4SLinus Torvalds 
851da177e4SLinus Torvalds /*
861da177e4SLinus Torvalds  * Handle all mappings that got truncated by a "truncate()"
871da177e4SLinus Torvalds  * system call.
881da177e4SLinus Torvalds  *
891da177e4SLinus Torvalds  * NOTE! We have to be ready to update the memory sharing
901da177e4SLinus Torvalds  * between the file and the memory map for a potential last
911da177e4SLinus Torvalds  * incomplete page.  Ugly, but necessary.
921da177e4SLinus Torvalds  */
931da177e4SLinus Torvalds int vmtruncate(struct inode *inode, loff_t offset)
941da177e4SLinus Torvalds {
951da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
961da177e4SLinus Torvalds 	unsigned long limit;
971da177e4SLinus Torvalds 
981da177e4SLinus Torvalds 	if (inode->i_size < offset)
991da177e4SLinus Torvalds 		goto do_expand;
1001da177e4SLinus Torvalds 	i_size_write(inode, offset);
1011da177e4SLinus Torvalds 
1021da177e4SLinus Torvalds 	truncate_inode_pages(mapping, offset);
1031da177e4SLinus Torvalds 	goto out_truncate;
1041da177e4SLinus Torvalds 
1051da177e4SLinus Torvalds do_expand:
1061da177e4SLinus Torvalds 	limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1071da177e4SLinus Torvalds 	if (limit != RLIM_INFINITY && offset > limit)
1081da177e4SLinus Torvalds 		goto out_sig;
1091da177e4SLinus Torvalds 	if (offset > inode->i_sb->s_maxbytes)
1101da177e4SLinus Torvalds 		goto out;
1111da177e4SLinus Torvalds 	i_size_write(inode, offset);
1121da177e4SLinus Torvalds 
1131da177e4SLinus Torvalds out_truncate:
114acfa4380SAl Viro 	if (inode->i_op->truncate)
1151da177e4SLinus Torvalds 		inode->i_op->truncate(inode);
1161da177e4SLinus Torvalds 	return 0;
1171da177e4SLinus Torvalds out_sig:
1181da177e4SLinus Torvalds 	send_sig(SIGXFSZ, current, 0);
1191da177e4SLinus Torvalds out:
1201da177e4SLinus Torvalds 	return -EFBIG;
1211da177e4SLinus Torvalds }
1221da177e4SLinus Torvalds 
1231da177e4SLinus Torvalds EXPORT_SYMBOL(vmtruncate);
1241da177e4SLinus Torvalds 
1251da177e4SLinus Torvalds /*
1261da177e4SLinus Torvalds  * Return the total memory allocated for this pointer, not
1271da177e4SLinus Torvalds  * just what the caller asked for.
1281da177e4SLinus Torvalds  *
1291da177e4SLinus Torvalds  * Doesn't have to be accurate, i.e. may have races.
1301da177e4SLinus Torvalds  */
1311da177e4SLinus Torvalds unsigned int kobjsize(const void *objp)
1321da177e4SLinus Torvalds {
1331da177e4SLinus Torvalds 	struct page *page;
1341da177e4SLinus Torvalds 
1354016a139SMichael Hennerich 	/*
1364016a139SMichael Hennerich 	 * If the object we have should not have ksize performed on it,
1374016a139SMichael Hennerich 	 * return size of 0
1384016a139SMichael Hennerich 	 */
1395a1603beSPaul Mundt 	if (!objp || !virt_addr_valid(objp))
1406cfd53fcSPaul Mundt 		return 0;
1416cfd53fcSPaul Mundt 
1426cfd53fcSPaul Mundt 	page = virt_to_head_page(objp);
1436cfd53fcSPaul Mundt 
1446cfd53fcSPaul Mundt 	/*
1456cfd53fcSPaul Mundt 	 * If the allocator sets PageSlab, we know the pointer came from
1466cfd53fcSPaul Mundt 	 * kmalloc().
1476cfd53fcSPaul Mundt 	 */
1481da177e4SLinus Torvalds 	if (PageSlab(page))
1491da177e4SLinus Torvalds 		return ksize(objp);
1501da177e4SLinus Torvalds 
1516cfd53fcSPaul Mundt 	/*
152ab2e83eaSPaul Mundt 	 * If it's not a compound page, see if we have a matching VMA
153ab2e83eaSPaul Mundt 	 * region. This test is intentionally done in reverse order,
154ab2e83eaSPaul Mundt 	 * so if there's no VMA, we still fall through and hand back
155ab2e83eaSPaul Mundt 	 * PAGE_SIZE for 0-order pages.
156ab2e83eaSPaul Mundt 	 */
157ab2e83eaSPaul Mundt 	if (!PageCompound(page)) {
158ab2e83eaSPaul Mundt 		struct vm_area_struct *vma;
159ab2e83eaSPaul Mundt 
160ab2e83eaSPaul Mundt 		vma = find_vma(current->mm, (unsigned long)objp);
161ab2e83eaSPaul Mundt 		if (vma)
162ab2e83eaSPaul Mundt 			return vma->vm_end - vma->vm_start;
163ab2e83eaSPaul Mundt 	}
164ab2e83eaSPaul Mundt 
165ab2e83eaSPaul Mundt 	/*
1666cfd53fcSPaul Mundt 	 * The ksize() function is only guaranteed to work for pointers
1675a1603beSPaul Mundt 	 * returned by kmalloc(). So handle arbitrary pointers here.
1686cfd53fcSPaul Mundt 	 */
1695a1603beSPaul Mundt 	return PAGE_SIZE << compound_order(page);
1701da177e4SLinus Torvalds }
1711da177e4SLinus Torvalds 
172b291f000SNick Piggin int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
173b291f000SNick Piggin 		     unsigned long start, int len, int flags,
1741da177e4SLinus Torvalds 		struct page **pages, struct vm_area_struct **vmas)
1751da177e4SLinus Torvalds {
176910e46daSSonic Zhang 	struct vm_area_struct *vma;
1777b4d5b8bSDavid Howells 	unsigned long vm_flags;
1787b4d5b8bSDavid Howells 	int i;
179b291f000SNick Piggin 	int write = !!(flags & GUP_FLAGS_WRITE);
180b291f000SNick Piggin 	int force = !!(flags & GUP_FLAGS_FORCE);
181b291f000SNick Piggin 	int ignore = !!(flags & GUP_FLAGS_IGNORE_VMA_PERMISSIONS);
1827b4d5b8bSDavid Howells 
1837b4d5b8bSDavid Howells 	/* calculate required read or write permissions.
1847b4d5b8bSDavid Howells 	 * - if 'force' is set, we only require the "MAY" flags.
1857b4d5b8bSDavid Howells 	 */
1867b4d5b8bSDavid Howells 	vm_flags  = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
1877b4d5b8bSDavid Howells 	vm_flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
1881da177e4SLinus Torvalds 
1891da177e4SLinus Torvalds 	for (i = 0; i < len; i++) {
190910e46daSSonic Zhang 		vma = find_vma(mm, start);
191910e46daSSonic Zhang 		if (!vma)
1927b4d5b8bSDavid Howells 			goto finish_or_fault;
1937b4d5b8bSDavid Howells 
1947b4d5b8bSDavid Howells 		/* protect what we can, including chardevs */
1957b4d5b8bSDavid Howells 		if (vma->vm_flags & (VM_IO | VM_PFNMAP) ||
196b291f000SNick Piggin 		    (!ignore && !(vm_flags & vma->vm_flags)))
1977b4d5b8bSDavid Howells 			goto finish_or_fault;
198910e46daSSonic Zhang 
1991da177e4SLinus Torvalds 		if (pages) {
2001da177e4SLinus Torvalds 			pages[i] = virt_to_page(start);
2011da177e4SLinus Torvalds 			if (pages[i])
2021da177e4SLinus Torvalds 				page_cache_get(pages[i]);
2031da177e4SLinus Torvalds 		}
2041da177e4SLinus Torvalds 		if (vmas)
205910e46daSSonic Zhang 			vmas[i] = vma;
2061da177e4SLinus Torvalds 		start += PAGE_SIZE;
2071da177e4SLinus Torvalds 	}
2087b4d5b8bSDavid Howells 
2097b4d5b8bSDavid Howells 	return i;
2107b4d5b8bSDavid Howells 
2117b4d5b8bSDavid Howells finish_or_fault:
2127b4d5b8bSDavid Howells 	return i ? : -EFAULT;
2131da177e4SLinus Torvalds }
214b291f000SNick Piggin 
215b291f000SNick Piggin 
216b291f000SNick Piggin /*
217b291f000SNick Piggin  * get a list of pages in an address range belonging to the specified process
218b291f000SNick Piggin  * and indicate the VMA that covers each page
219b291f000SNick Piggin  * - this is potentially dodgy as we may end incrementing the page count of a
220b291f000SNick Piggin  *   slab page or a secondary page from a compound page
221b291f000SNick Piggin  * - don't permit access to VMAs that don't support it, such as I/O mappings
222b291f000SNick Piggin  */
223b291f000SNick Piggin int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
224b291f000SNick Piggin 	unsigned long start, int len, int write, int force,
225b291f000SNick Piggin 	struct page **pages, struct vm_area_struct **vmas)
226b291f000SNick Piggin {
227b291f000SNick Piggin 	int flags = 0;
228b291f000SNick Piggin 
229b291f000SNick Piggin 	if (write)
230b291f000SNick Piggin 		flags |= GUP_FLAGS_WRITE;
231b291f000SNick Piggin 	if (force)
232b291f000SNick Piggin 		flags |= GUP_FLAGS_FORCE;
233b291f000SNick Piggin 
234b291f000SNick Piggin 	return __get_user_pages(tsk, mm,
235b291f000SNick Piggin 				start, len, flags,
236b291f000SNick Piggin 				pages, vmas);
237b291f000SNick Piggin }
23866aa2b4bSGreg Ungerer EXPORT_SYMBOL(get_user_pages);
23966aa2b4bSGreg Ungerer 
2401da177e4SLinus Torvalds DEFINE_RWLOCK(vmlist_lock);
2411da177e4SLinus Torvalds struct vm_struct *vmlist;
2421da177e4SLinus Torvalds 
243b3bdda02SChristoph Lameter void vfree(const void *addr)
2441da177e4SLinus Torvalds {
2451da177e4SLinus Torvalds 	kfree(addr);
2461da177e4SLinus Torvalds }
247b5073173SPaul Mundt EXPORT_SYMBOL(vfree);
2481da177e4SLinus Torvalds 
249dd0fc66fSAl Viro void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
2501da177e4SLinus Torvalds {
2511da177e4SLinus Torvalds 	/*
2528518609dSRobert P. J. Day 	 *  You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
2538518609dSRobert P. J. Day 	 * returns only a logical address.
2541da177e4SLinus Torvalds 	 */
25584097518SNick Piggin 	return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
2561da177e4SLinus Torvalds }
257b5073173SPaul Mundt EXPORT_SYMBOL(__vmalloc);
2581da177e4SLinus Torvalds 
259f905bc44SPaul Mundt void *vmalloc_user(unsigned long size)
260f905bc44SPaul Mundt {
261f905bc44SPaul Mundt 	void *ret;
262f905bc44SPaul Mundt 
263f905bc44SPaul Mundt 	ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
264f905bc44SPaul Mundt 			PAGE_KERNEL);
265f905bc44SPaul Mundt 	if (ret) {
266f905bc44SPaul Mundt 		struct vm_area_struct *vma;
267f905bc44SPaul Mundt 
268f905bc44SPaul Mundt 		down_write(&current->mm->mmap_sem);
269f905bc44SPaul Mundt 		vma = find_vma(current->mm, (unsigned long)ret);
270f905bc44SPaul Mundt 		if (vma)
271f905bc44SPaul Mundt 			vma->vm_flags |= VM_USERMAP;
272f905bc44SPaul Mundt 		up_write(&current->mm->mmap_sem);
273f905bc44SPaul Mundt 	}
274f905bc44SPaul Mundt 
275f905bc44SPaul Mundt 	return ret;
276f905bc44SPaul Mundt }
277f905bc44SPaul Mundt EXPORT_SYMBOL(vmalloc_user);
278f905bc44SPaul Mundt 
279b3bdda02SChristoph Lameter struct page *vmalloc_to_page(const void *addr)
2801da177e4SLinus Torvalds {
2811da177e4SLinus Torvalds 	return virt_to_page(addr);
2821da177e4SLinus Torvalds }
283b5073173SPaul Mundt EXPORT_SYMBOL(vmalloc_to_page);
2841da177e4SLinus Torvalds 
285b3bdda02SChristoph Lameter unsigned long vmalloc_to_pfn(const void *addr)
2861da177e4SLinus Torvalds {
2871da177e4SLinus Torvalds 	return page_to_pfn(virt_to_page(addr));
2881da177e4SLinus Torvalds }
289b5073173SPaul Mundt EXPORT_SYMBOL(vmalloc_to_pfn);
2901da177e4SLinus Torvalds 
2911da177e4SLinus Torvalds long vread(char *buf, char *addr, unsigned long count)
2921da177e4SLinus Torvalds {
2931da177e4SLinus Torvalds 	memcpy(buf, addr, count);
2941da177e4SLinus Torvalds 	return count;
2951da177e4SLinus Torvalds }
2961da177e4SLinus Torvalds 
2971da177e4SLinus Torvalds long vwrite(char *buf, char *addr, unsigned long count)
2981da177e4SLinus Torvalds {
2991da177e4SLinus Torvalds 	/* Don't allow overflow */
3001da177e4SLinus Torvalds 	if ((unsigned long) addr + count < count)
3011da177e4SLinus Torvalds 		count = -(unsigned long) addr;
3021da177e4SLinus Torvalds 
3031da177e4SLinus Torvalds 	memcpy(addr, buf, count);
3041da177e4SLinus Torvalds 	return(count);
3051da177e4SLinus Torvalds }
3061da177e4SLinus Torvalds 
3071da177e4SLinus Torvalds /*
3081da177e4SLinus Torvalds  *	vmalloc  -  allocate virtually continguos memory
3091da177e4SLinus Torvalds  *
3101da177e4SLinus Torvalds  *	@size:		allocation size
3111da177e4SLinus Torvalds  *
3121da177e4SLinus Torvalds  *	Allocate enough pages to cover @size from the page level
3131da177e4SLinus Torvalds  *	allocator and map them into continguos kernel virtual space.
3141da177e4SLinus Torvalds  *
315c1c8897fSMichael Opdenacker  *	For tight control over page level allocator and protection flags
3161da177e4SLinus Torvalds  *	use __vmalloc() instead.
3171da177e4SLinus Torvalds  */
3181da177e4SLinus Torvalds void *vmalloc(unsigned long size)
3191da177e4SLinus Torvalds {
3201da177e4SLinus Torvalds        return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL);
3211da177e4SLinus Torvalds }
322f6138882SAndrew Morton EXPORT_SYMBOL(vmalloc);
323f6138882SAndrew Morton 
324f6138882SAndrew Morton void *vmalloc_node(unsigned long size, int node)
325f6138882SAndrew Morton {
326f6138882SAndrew Morton 	return vmalloc(size);
327f6138882SAndrew Morton }
328f6138882SAndrew Morton EXPORT_SYMBOL(vmalloc_node);
3291da177e4SLinus Torvalds 
3301af446edSPaul Mundt #ifndef PAGE_KERNEL_EXEC
3311af446edSPaul Mundt # define PAGE_KERNEL_EXEC PAGE_KERNEL
3321af446edSPaul Mundt #endif
3331af446edSPaul Mundt 
3341af446edSPaul Mundt /**
3351af446edSPaul Mundt  *	vmalloc_exec  -  allocate virtually contiguous, executable memory
3361af446edSPaul Mundt  *	@size:		allocation size
3371af446edSPaul Mundt  *
3381af446edSPaul Mundt  *	Kernel-internal function to allocate enough pages to cover @size
3391af446edSPaul Mundt  *	the page level allocator and map them into contiguous and
3401af446edSPaul Mundt  *	executable kernel virtual space.
3411af446edSPaul Mundt  *
3421af446edSPaul Mundt  *	For tight control over page level allocator and protection flags
3431af446edSPaul Mundt  *	use __vmalloc() instead.
3441af446edSPaul Mundt  */
3451af446edSPaul Mundt 
3461af446edSPaul Mundt void *vmalloc_exec(unsigned long size)
3471af446edSPaul Mundt {
3481af446edSPaul Mundt 	return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC);
3491af446edSPaul Mundt }
3501af446edSPaul Mundt 
351b5073173SPaul Mundt /**
352b5073173SPaul Mundt  * vmalloc_32  -  allocate virtually contiguous memory (32bit addressable)
3531da177e4SLinus Torvalds  *	@size:		allocation size
3541da177e4SLinus Torvalds  *
3551da177e4SLinus Torvalds  *	Allocate enough 32bit PA addressable pages to cover @size from the
3561da177e4SLinus Torvalds  *	page level allocator and map them into continguos kernel virtual space.
3571da177e4SLinus Torvalds  */
3581da177e4SLinus Torvalds void *vmalloc_32(unsigned long size)
3591da177e4SLinus Torvalds {
3601da177e4SLinus Torvalds 	return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL);
3611da177e4SLinus Torvalds }
362b5073173SPaul Mundt EXPORT_SYMBOL(vmalloc_32);
363b5073173SPaul Mundt 
364b5073173SPaul Mundt /**
365b5073173SPaul Mundt  * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
366b5073173SPaul Mundt  *	@size:		allocation size
367b5073173SPaul Mundt  *
368b5073173SPaul Mundt  * The resulting memory area is 32bit addressable and zeroed so it can be
369b5073173SPaul Mundt  * mapped to userspace without leaking data.
370f905bc44SPaul Mundt  *
371f905bc44SPaul Mundt  * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
372f905bc44SPaul Mundt  * remap_vmalloc_range() are permissible.
373b5073173SPaul Mundt  */
374b5073173SPaul Mundt void *vmalloc_32_user(unsigned long size)
375b5073173SPaul Mundt {
376f905bc44SPaul Mundt 	/*
377f905bc44SPaul Mundt 	 * We'll have to sort out the ZONE_DMA bits for 64-bit,
378f905bc44SPaul Mundt 	 * but for now this can simply use vmalloc_user() directly.
379f905bc44SPaul Mundt 	 */
380f905bc44SPaul Mundt 	return vmalloc_user(size);
381b5073173SPaul Mundt }
382b5073173SPaul Mundt EXPORT_SYMBOL(vmalloc_32_user);
3831da177e4SLinus Torvalds 
3841da177e4SLinus Torvalds void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
3851da177e4SLinus Torvalds {
3861da177e4SLinus Torvalds 	BUG();
3871da177e4SLinus Torvalds 	return NULL;
3881da177e4SLinus Torvalds }
389b5073173SPaul Mundt EXPORT_SYMBOL(vmap);
3901da177e4SLinus Torvalds 
391b3bdda02SChristoph Lameter void vunmap(const void *addr)
3921da177e4SLinus Torvalds {
3931da177e4SLinus Torvalds 	BUG();
3941da177e4SLinus Torvalds }
395b5073173SPaul Mundt EXPORT_SYMBOL(vunmap);
3961da177e4SLinus Torvalds 
3971da177e4SLinus Torvalds /*
3981eeb66a1SChristoph Hellwig  * Implement a stub for vmalloc_sync_all() if the architecture chose not to
3991eeb66a1SChristoph Hellwig  * have one.
4001eeb66a1SChristoph Hellwig  */
4011eeb66a1SChristoph Hellwig void  __attribute__((weak)) vmalloc_sync_all(void)
4021eeb66a1SChristoph Hellwig {
4031eeb66a1SChristoph Hellwig }
4041eeb66a1SChristoph Hellwig 
405b5073173SPaul Mundt int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
406b5073173SPaul Mundt 		   struct page *page)
407b5073173SPaul Mundt {
408b5073173SPaul Mundt 	return -EINVAL;
409b5073173SPaul Mundt }
410b5073173SPaul Mundt EXPORT_SYMBOL(vm_insert_page);
411b5073173SPaul Mundt 
4121eeb66a1SChristoph Hellwig /*
4131da177e4SLinus Torvalds  *  sys_brk() for the most part doesn't need the global kernel
4141da177e4SLinus Torvalds  *  lock, except when an application is doing something nasty
4151da177e4SLinus Torvalds  *  like trying to un-brk an area that has already been mapped
4161da177e4SLinus Torvalds  *  to a regular file.  in this case, the unmapping will need
4171da177e4SLinus Torvalds  *  to invoke file system routines that need the global lock.
4181da177e4SLinus Torvalds  */
419*6a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
4201da177e4SLinus Torvalds {
4211da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
4221da177e4SLinus Torvalds 
4231da177e4SLinus Torvalds 	if (brk < mm->start_brk || brk > mm->context.end_brk)
4241da177e4SLinus Torvalds 		return mm->brk;
4251da177e4SLinus Torvalds 
4261da177e4SLinus Torvalds 	if (mm->brk == brk)
4271da177e4SLinus Torvalds 		return mm->brk;
4281da177e4SLinus Torvalds 
4291da177e4SLinus Torvalds 	/*
4301da177e4SLinus Torvalds 	 * Always allow shrinking brk
4311da177e4SLinus Torvalds 	 */
4321da177e4SLinus Torvalds 	if (brk <= mm->brk) {
4331da177e4SLinus Torvalds 		mm->brk = brk;
4341da177e4SLinus Torvalds 		return brk;
4351da177e4SLinus Torvalds 	}
4361da177e4SLinus Torvalds 
4371da177e4SLinus Torvalds 	/*
4381da177e4SLinus Torvalds 	 * Ok, looks good - let it rip.
4391da177e4SLinus Torvalds 	 */
4401da177e4SLinus Torvalds 	return mm->brk = brk;
4411da177e4SLinus Torvalds }
4421da177e4SLinus Torvalds 
4438feae131SDavid Howells /*
4448feae131SDavid Howells  * initialise the VMA and region record slabs
4458feae131SDavid Howells  */
4468feae131SDavid Howells void __init mmap_init(void)
4471da177e4SLinus Torvalds {
4488feae131SDavid Howells 	vm_region_jar = kmem_cache_create("vm_region_jar",
4498feae131SDavid Howells 					  sizeof(struct vm_region), 0,
4508feae131SDavid Howells 					  SLAB_PANIC, NULL);
4518feae131SDavid Howells 	vm_area_cachep = kmem_cache_create("vm_area_struct",
4528feae131SDavid Howells 					   sizeof(struct vm_area_struct), 0,
4538feae131SDavid Howells 					   SLAB_PANIC, NULL);
4548feae131SDavid Howells }
4551da177e4SLinus Torvalds 
4568feae131SDavid Howells /*
4578feae131SDavid Howells  * validate the region tree
4588feae131SDavid Howells  * - the caller must hold the region lock
4598feae131SDavid Howells  */
4608feae131SDavid Howells #ifdef CONFIG_DEBUG_NOMMU_REGIONS
4618feae131SDavid Howells static noinline void validate_nommu_regions(void)
4628feae131SDavid Howells {
4638feae131SDavid Howells 	struct vm_region *region, *last;
4648feae131SDavid Howells 	struct rb_node *p, *lastp;
4651da177e4SLinus Torvalds 
4668feae131SDavid Howells 	lastp = rb_first(&nommu_region_tree);
4678feae131SDavid Howells 	if (!lastp)
4688feae131SDavid Howells 		return;
4698feae131SDavid Howells 
4708feae131SDavid Howells 	last = rb_entry(lastp, struct vm_region, vm_rb);
4718feae131SDavid Howells 	if (unlikely(last->vm_end <= last->vm_start))
4728feae131SDavid Howells 		BUG();
473dd8632a1SPaul Mundt 	if (unlikely(last->vm_top < last->vm_end))
474dd8632a1SPaul Mundt 		BUG();
4758feae131SDavid Howells 
4768feae131SDavid Howells 	while ((p = rb_next(lastp))) {
4778feae131SDavid Howells 		region = rb_entry(p, struct vm_region, vm_rb);
4788feae131SDavid Howells 		last = rb_entry(lastp, struct vm_region, vm_rb);
4798feae131SDavid Howells 
4808feae131SDavid Howells 		if (unlikely(region->vm_end <= region->vm_start))
4818feae131SDavid Howells 			BUG();
482dd8632a1SPaul Mundt 		if (unlikely(region->vm_top < region->vm_end))
483dd8632a1SPaul Mundt 			BUG();
484dd8632a1SPaul Mundt 		if (unlikely(region->vm_start < last->vm_top))
4858feae131SDavid Howells 			BUG();
4868feae131SDavid Howells 
4878feae131SDavid Howells 		lastp = p;
4881da177e4SLinus Torvalds 	}
4891da177e4SLinus Torvalds }
4908feae131SDavid Howells #else
4918feae131SDavid Howells #define validate_nommu_regions() do {} while(0)
4928feae131SDavid Howells #endif
4938feae131SDavid Howells 
4948feae131SDavid Howells /*
4958feae131SDavid Howells  * add a region into the global tree
4968feae131SDavid Howells  */
4978feae131SDavid Howells static void add_nommu_region(struct vm_region *region)
4988feae131SDavid Howells {
4998feae131SDavid Howells 	struct vm_region *pregion;
5008feae131SDavid Howells 	struct rb_node **p, *parent;
5018feae131SDavid Howells 
5028feae131SDavid Howells 	validate_nommu_regions();
5038feae131SDavid Howells 
5048feae131SDavid Howells 	BUG_ON(region->vm_start & ~PAGE_MASK);
5058feae131SDavid Howells 
5068feae131SDavid Howells 	parent = NULL;
5078feae131SDavid Howells 	p = &nommu_region_tree.rb_node;
5088feae131SDavid Howells 	while (*p) {
5098feae131SDavid Howells 		parent = *p;
5108feae131SDavid Howells 		pregion = rb_entry(parent, struct vm_region, vm_rb);
5118feae131SDavid Howells 		if (region->vm_start < pregion->vm_start)
5128feae131SDavid Howells 			p = &(*p)->rb_left;
5138feae131SDavid Howells 		else if (region->vm_start > pregion->vm_start)
5148feae131SDavid Howells 			p = &(*p)->rb_right;
5158feae131SDavid Howells 		else if (pregion == region)
5168feae131SDavid Howells 			return;
5178feae131SDavid Howells 		else
5188feae131SDavid Howells 			BUG();
5198feae131SDavid Howells 	}
5208feae131SDavid Howells 
5218feae131SDavid Howells 	rb_link_node(&region->vm_rb, parent, p);
5228feae131SDavid Howells 	rb_insert_color(&region->vm_rb, &nommu_region_tree);
5238feae131SDavid Howells 
5248feae131SDavid Howells 	validate_nommu_regions();
5258feae131SDavid Howells }
5268feae131SDavid Howells 
5278feae131SDavid Howells /*
5288feae131SDavid Howells  * delete a region from the global tree
5298feae131SDavid Howells  */
5308feae131SDavid Howells static void delete_nommu_region(struct vm_region *region)
5318feae131SDavid Howells {
5328feae131SDavid Howells 	BUG_ON(!nommu_region_tree.rb_node);
5338feae131SDavid Howells 
5348feae131SDavid Howells 	validate_nommu_regions();
5358feae131SDavid Howells 	rb_erase(&region->vm_rb, &nommu_region_tree);
5368feae131SDavid Howells 	validate_nommu_regions();
5378feae131SDavid Howells }
5388feae131SDavid Howells 
5398feae131SDavid Howells /*
5408feae131SDavid Howells  * free a contiguous series of pages
5418feae131SDavid Howells  */
5428feae131SDavid Howells static void free_page_series(unsigned long from, unsigned long to)
5438feae131SDavid Howells {
5448feae131SDavid Howells 	for (; from < to; from += PAGE_SIZE) {
5458feae131SDavid Howells 		struct page *page = virt_to_page(from);
5468feae131SDavid Howells 
5478feae131SDavid Howells 		kdebug("- free %lx", from);
5488feae131SDavid Howells 		atomic_dec(&mmap_pages_allocated);
5498feae131SDavid Howells 		if (page_count(page) != 1)
5508feae131SDavid Howells 			kdebug("free page %p [%d]", page, page_count(page));
5518feae131SDavid Howells 		put_page(page);
5528feae131SDavid Howells 	}
5538feae131SDavid Howells }
5548feae131SDavid Howells 
5558feae131SDavid Howells /*
5568feae131SDavid Howells  * release a reference to a region
5578feae131SDavid Howells  * - the caller must hold the region semaphore, which this releases
558dd8632a1SPaul Mundt  * - the region may not have been added to the tree yet, in which case vm_top
5598feae131SDavid Howells  *   will equal vm_start
5608feae131SDavid Howells  */
5618feae131SDavid Howells static void __put_nommu_region(struct vm_region *region)
5628feae131SDavid Howells 	__releases(nommu_region_sem)
5638feae131SDavid Howells {
5648feae131SDavid Howells 	kenter("%p{%d}", region, atomic_read(&region->vm_usage));
5658feae131SDavid Howells 
5668feae131SDavid Howells 	BUG_ON(!nommu_region_tree.rb_node);
5678feae131SDavid Howells 
5688feae131SDavid Howells 	if (atomic_dec_and_test(&region->vm_usage)) {
569dd8632a1SPaul Mundt 		if (region->vm_top > region->vm_start)
5708feae131SDavid Howells 			delete_nommu_region(region);
5718feae131SDavid Howells 		up_write(&nommu_region_sem);
5728feae131SDavid Howells 
5738feae131SDavid Howells 		if (region->vm_file)
5748feae131SDavid Howells 			fput(region->vm_file);
5758feae131SDavid Howells 
5768feae131SDavid Howells 		/* IO memory and memory shared directly out of the pagecache
5778feae131SDavid Howells 		 * from ramfs/tmpfs mustn't be released here */
5788feae131SDavid Howells 		if (region->vm_flags & VM_MAPPED_COPY) {
5798feae131SDavid Howells 			kdebug("free series");
580dd8632a1SPaul Mundt 			free_page_series(region->vm_start, region->vm_top);
5818feae131SDavid Howells 		}
5828feae131SDavid Howells 		kmem_cache_free(vm_region_jar, region);
5838feae131SDavid Howells 	} else {
5848feae131SDavid Howells 		up_write(&nommu_region_sem);
5858feae131SDavid Howells 	}
5868feae131SDavid Howells }
5878feae131SDavid Howells 
5888feae131SDavid Howells /*
5898feae131SDavid Howells  * release a reference to a region
5908feae131SDavid Howells  */
5918feae131SDavid Howells static void put_nommu_region(struct vm_region *region)
5928feae131SDavid Howells {
5938feae131SDavid Howells 	down_write(&nommu_region_sem);
5948feae131SDavid Howells 	__put_nommu_region(region);
5958feae131SDavid Howells }
5961da177e4SLinus Torvalds 
5973034097aSDavid Howells /*
5983034097aSDavid Howells  * add a VMA into a process's mm_struct in the appropriate place in the list
5998feae131SDavid Howells  * and tree and add to the address space's page tree also if not an anonymous
6008feae131SDavid Howells  * page
6013034097aSDavid Howells  * - should be called with mm->mmap_sem held writelocked
6023034097aSDavid Howells  */
6038feae131SDavid Howells static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
6043034097aSDavid Howells {
6058feae131SDavid Howells 	struct vm_area_struct *pvma, **pp;
6068feae131SDavid Howells 	struct address_space *mapping;
6078feae131SDavid Howells 	struct rb_node **p, *parent;
6083034097aSDavid Howells 
6098feae131SDavid Howells 	kenter(",%p", vma);
6108feae131SDavid Howells 
6118feae131SDavid Howells 	BUG_ON(!vma->vm_region);
6128feae131SDavid Howells 
6138feae131SDavid Howells 	mm->map_count++;
6148feae131SDavid Howells 	vma->vm_mm = mm;
6158feae131SDavid Howells 
6168feae131SDavid Howells 	/* add the VMA to the mapping */
6178feae131SDavid Howells 	if (vma->vm_file) {
6188feae131SDavid Howells 		mapping = vma->vm_file->f_mapping;
6198feae131SDavid Howells 
6208feae131SDavid Howells 		flush_dcache_mmap_lock(mapping);
6218feae131SDavid Howells 		vma_prio_tree_insert(vma, &mapping->i_mmap);
6228feae131SDavid Howells 		flush_dcache_mmap_unlock(mapping);
6238feae131SDavid Howells 	}
6248feae131SDavid Howells 
6258feae131SDavid Howells 	/* add the VMA to the tree */
6268feae131SDavid Howells 	parent = NULL;
6278feae131SDavid Howells 	p = &mm->mm_rb.rb_node;
6288feae131SDavid Howells 	while (*p) {
6298feae131SDavid Howells 		parent = *p;
6308feae131SDavid Howells 		pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
6318feae131SDavid Howells 
6328feae131SDavid Howells 		/* sort by: start addr, end addr, VMA struct addr in that order
6338feae131SDavid Howells 		 * (the latter is necessary as we may get identical VMAs) */
6348feae131SDavid Howells 		if (vma->vm_start < pvma->vm_start)
6358feae131SDavid Howells 			p = &(*p)->rb_left;
6368feae131SDavid Howells 		else if (vma->vm_start > pvma->vm_start)
6378feae131SDavid Howells 			p = &(*p)->rb_right;
6388feae131SDavid Howells 		else if (vma->vm_end < pvma->vm_end)
6398feae131SDavid Howells 			p = &(*p)->rb_left;
6408feae131SDavid Howells 		else if (vma->vm_end > pvma->vm_end)
6418feae131SDavid Howells 			p = &(*p)->rb_right;
6428feae131SDavid Howells 		else if (vma < pvma)
6438feae131SDavid Howells 			p = &(*p)->rb_left;
6448feae131SDavid Howells 		else if (vma > pvma)
6458feae131SDavid Howells 			p = &(*p)->rb_right;
6468feae131SDavid Howells 		else
6478feae131SDavid Howells 			BUG();
6488feae131SDavid Howells 	}
6498feae131SDavid Howells 
6508feae131SDavid Howells 	rb_link_node(&vma->vm_rb, parent, p);
6518feae131SDavid Howells 	rb_insert_color(&vma->vm_rb, &mm->mm_rb);
6528feae131SDavid Howells 
6538feae131SDavid Howells 	/* add VMA to the VMA list also */
6548feae131SDavid Howells 	for (pp = &mm->mmap; (pvma = *pp); pp = &(*pp)->vm_next) {
6558feae131SDavid Howells 		if (pvma->vm_start > vma->vm_start)
6563034097aSDavid Howells 			break;
6578feae131SDavid Howells 		if (pvma->vm_start < vma->vm_start)
6588feae131SDavid Howells 			continue;
6598feae131SDavid Howells 		if (pvma->vm_end < vma->vm_end)
6608feae131SDavid Howells 			break;
6618feae131SDavid Howells 	}
6623034097aSDavid Howells 
6638feae131SDavid Howells 	vma->vm_next = *pp;
6648feae131SDavid Howells 	*pp = vma;
6658feae131SDavid Howells }
6668feae131SDavid Howells 
6678feae131SDavid Howells /*
6688feae131SDavid Howells  * delete a VMA from its owning mm_struct and address space
6698feae131SDavid Howells  */
6708feae131SDavid Howells static void delete_vma_from_mm(struct vm_area_struct *vma)
6718feae131SDavid Howells {
6728feae131SDavid Howells 	struct vm_area_struct **pp;
6738feae131SDavid Howells 	struct address_space *mapping;
6748feae131SDavid Howells 	struct mm_struct *mm = vma->vm_mm;
6758feae131SDavid Howells 
6768feae131SDavid Howells 	kenter("%p", vma);
6778feae131SDavid Howells 
6788feae131SDavid Howells 	mm->map_count--;
6798feae131SDavid Howells 	if (mm->mmap_cache == vma)
6808feae131SDavid Howells 		mm->mmap_cache = NULL;
6818feae131SDavid Howells 
6828feae131SDavid Howells 	/* remove the VMA from the mapping */
6838feae131SDavid Howells 	if (vma->vm_file) {
6848feae131SDavid Howells 		mapping = vma->vm_file->f_mapping;
6858feae131SDavid Howells 
6868feae131SDavid Howells 		flush_dcache_mmap_lock(mapping);
6878feae131SDavid Howells 		vma_prio_tree_remove(vma, &mapping->i_mmap);
6888feae131SDavid Howells 		flush_dcache_mmap_unlock(mapping);
6898feae131SDavid Howells 	}
6908feae131SDavid Howells 
6918feae131SDavid Howells 	/* remove from the MM's tree and list */
6928feae131SDavid Howells 	rb_erase(&vma->vm_rb, &mm->mm_rb);
6938feae131SDavid Howells 	for (pp = &mm->mmap; *pp; pp = &(*pp)->vm_next) {
6948feae131SDavid Howells 		if (*pp == vma) {
6958feae131SDavid Howells 			*pp = vma->vm_next;
6968feae131SDavid Howells 			break;
6978feae131SDavid Howells 		}
6988feae131SDavid Howells 	}
6998feae131SDavid Howells 
7008feae131SDavid Howells 	vma->vm_mm = NULL;
7018feae131SDavid Howells }
7028feae131SDavid Howells 
7038feae131SDavid Howells /*
7048feae131SDavid Howells  * destroy a VMA record
7058feae131SDavid Howells  */
7068feae131SDavid Howells static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
7078feae131SDavid Howells {
7088feae131SDavid Howells 	kenter("%p", vma);
7098feae131SDavid Howells 	if (vma->vm_ops && vma->vm_ops->close)
7108feae131SDavid Howells 		vma->vm_ops->close(vma);
7118feae131SDavid Howells 	if (vma->vm_file) {
7128feae131SDavid Howells 		fput(vma->vm_file);
7138feae131SDavid Howells 		if (vma->vm_flags & VM_EXECUTABLE)
7148feae131SDavid Howells 			removed_exe_file_vma(mm);
7158feae131SDavid Howells 	}
7168feae131SDavid Howells 	put_nommu_region(vma->vm_region);
7178feae131SDavid Howells 	kmem_cache_free(vm_area_cachep, vma);
7183034097aSDavid Howells }
7193034097aSDavid Howells 
7203034097aSDavid Howells /*
7213034097aSDavid Howells  * look up the first VMA in which addr resides, NULL if none
7223034097aSDavid Howells  * - should be called with mm->mmap_sem at least held readlocked
7233034097aSDavid Howells  */
7243034097aSDavid Howells struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
7253034097aSDavid Howells {
7268feae131SDavid Howells 	struct vm_area_struct *vma;
7278feae131SDavid Howells 	struct rb_node *n = mm->mm_rb.rb_node;
7283034097aSDavid Howells 
7298feae131SDavid Howells 	/* check the cache first */
7308feae131SDavid Howells 	vma = mm->mmap_cache;
7318feae131SDavid Howells 	if (vma && vma->vm_start <= addr && vma->vm_end > addr)
7328feae131SDavid Howells 		return vma;
7338feae131SDavid Howells 
7348feae131SDavid Howells 	/* trawl the tree (there may be multiple mappings in which addr
7358feae131SDavid Howells 	 * resides) */
7368feae131SDavid Howells 	for (n = rb_first(&mm->mm_rb); n; n = rb_next(n)) {
7378feae131SDavid Howells 		vma = rb_entry(n, struct vm_area_struct, vm_rb);
7388feae131SDavid Howells 		if (vma->vm_start > addr)
7398feae131SDavid Howells 			return NULL;
7408feae131SDavid Howells 		if (vma->vm_end > addr) {
7418feae131SDavid Howells 			mm->mmap_cache = vma;
7428feae131SDavid Howells 			return vma;
7433034097aSDavid Howells 		}
7448feae131SDavid Howells 	}
7453034097aSDavid Howells 
7463034097aSDavid Howells 	return NULL;
7473034097aSDavid Howells }
7483034097aSDavid Howells EXPORT_SYMBOL(find_vma);
7493034097aSDavid Howells 
7503034097aSDavid Howells /*
751930e652aSDavid Howells  * find a VMA
752930e652aSDavid Howells  * - we don't extend stack VMAs under NOMMU conditions
753930e652aSDavid Howells  */
754930e652aSDavid Howells struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
755930e652aSDavid Howells {
756930e652aSDavid Howells 	return find_vma(mm, addr);
757930e652aSDavid Howells }
758930e652aSDavid Howells 
7598feae131SDavid Howells /*
7608feae131SDavid Howells  * expand a stack to a given address
7618feae131SDavid Howells  * - not supported under NOMMU conditions
7628feae131SDavid Howells  */
76357c8f63eSGreg Ungerer int expand_stack(struct vm_area_struct *vma, unsigned long address)
76457c8f63eSGreg Ungerer {
76557c8f63eSGreg Ungerer 	return -ENOMEM;
76657c8f63eSGreg Ungerer }
76757c8f63eSGreg Ungerer 
768930e652aSDavid Howells /*
7696fa5f80bSDavid Howells  * look up the first VMA exactly that exactly matches addr
7706fa5f80bSDavid Howells  * - should be called with mm->mmap_sem at least held readlocked
7716fa5f80bSDavid Howells  */
7728feae131SDavid Howells static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
7738feae131SDavid Howells 					     unsigned long addr,
7748feae131SDavid Howells 					     unsigned long len)
7751da177e4SLinus Torvalds {
7761da177e4SLinus Torvalds 	struct vm_area_struct *vma;
7778feae131SDavid Howells 	struct rb_node *n = mm->mm_rb.rb_node;
7788feae131SDavid Howells 	unsigned long end = addr + len;
7791da177e4SLinus Torvalds 
7808feae131SDavid Howells 	/* check the cache first */
7818feae131SDavid Howells 	vma = mm->mmap_cache;
7828feae131SDavid Howells 	if (vma && vma->vm_start == addr && vma->vm_end == end)
7831da177e4SLinus Torvalds 		return vma;
7848feae131SDavid Howells 
7858feae131SDavid Howells 	/* trawl the tree (there may be multiple mappings in which addr
7868feae131SDavid Howells 	 * resides) */
7878feae131SDavid Howells 	for (n = rb_first(&mm->mm_rb); n; n = rb_next(n)) {
7888feae131SDavid Howells 		vma = rb_entry(n, struct vm_area_struct, vm_rb);
7898feae131SDavid Howells 		if (vma->vm_start < addr)
7908feae131SDavid Howells 			continue;
7918feae131SDavid Howells 		if (vma->vm_start > addr)
7928feae131SDavid Howells 			return NULL;
7938feae131SDavid Howells 		if (vma->vm_end == end) {
7948feae131SDavid Howells 			mm->mmap_cache = vma;
7958feae131SDavid Howells 			return vma;
7968feae131SDavid Howells 		}
7971da177e4SLinus Torvalds 	}
7981da177e4SLinus Torvalds 
7991da177e4SLinus Torvalds 	return NULL;
8001da177e4SLinus Torvalds }
8011da177e4SLinus Torvalds 
8023034097aSDavid Howells /*
8031da177e4SLinus Torvalds  * determine whether a mapping should be permitted and, if so, what sort of
8041da177e4SLinus Torvalds  * mapping we're capable of supporting
8051da177e4SLinus Torvalds  */
8061da177e4SLinus Torvalds static int validate_mmap_request(struct file *file,
8071da177e4SLinus Torvalds 				 unsigned long addr,
8081da177e4SLinus Torvalds 				 unsigned long len,
8091da177e4SLinus Torvalds 				 unsigned long prot,
8101da177e4SLinus Torvalds 				 unsigned long flags,
8111da177e4SLinus Torvalds 				 unsigned long pgoff,
8121da177e4SLinus Torvalds 				 unsigned long *_capabilities)
8131da177e4SLinus Torvalds {
8148feae131SDavid Howells 	unsigned long capabilities, rlen;
8151da177e4SLinus Torvalds 	unsigned long reqprot = prot;
8161da177e4SLinus Torvalds 	int ret;
8171da177e4SLinus Torvalds 
8181da177e4SLinus Torvalds 	/* do the simple checks first */
8191da177e4SLinus Torvalds 	if (flags & MAP_FIXED || addr) {
8201da177e4SLinus Torvalds 		printk(KERN_DEBUG
8211da177e4SLinus Torvalds 		       "%d: Can't do fixed-address/overlay mmap of RAM\n",
8221da177e4SLinus Torvalds 		       current->pid);
8231da177e4SLinus Torvalds 		return -EINVAL;
8241da177e4SLinus Torvalds 	}
8251da177e4SLinus Torvalds 
8261da177e4SLinus Torvalds 	if ((flags & MAP_TYPE) != MAP_PRIVATE &&
8271da177e4SLinus Torvalds 	    (flags & MAP_TYPE) != MAP_SHARED)
8281da177e4SLinus Torvalds 		return -EINVAL;
8291da177e4SLinus Torvalds 
830f81cff0dSMike Frysinger 	if (!len)
8311da177e4SLinus Torvalds 		return -EINVAL;
8321da177e4SLinus Torvalds 
833f81cff0dSMike Frysinger 	/* Careful about overflows.. */
8348feae131SDavid Howells 	rlen = PAGE_ALIGN(len);
8358feae131SDavid Howells 	if (!rlen || rlen > TASK_SIZE)
836f81cff0dSMike Frysinger 		return -ENOMEM;
837f81cff0dSMike Frysinger 
8381da177e4SLinus Torvalds 	/* offset overflow? */
8398feae131SDavid Howells 	if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
840f81cff0dSMike Frysinger 		return -EOVERFLOW;
8411da177e4SLinus Torvalds 
8421da177e4SLinus Torvalds 	if (file) {
8431da177e4SLinus Torvalds 		/* validate file mapping requests */
8441da177e4SLinus Torvalds 		struct address_space *mapping;
8451da177e4SLinus Torvalds 
8461da177e4SLinus Torvalds 		/* files must support mmap */
8471da177e4SLinus Torvalds 		if (!file->f_op || !file->f_op->mmap)
8481da177e4SLinus Torvalds 			return -ENODEV;
8491da177e4SLinus Torvalds 
8501da177e4SLinus Torvalds 		/* work out if what we've got could possibly be shared
8511da177e4SLinus Torvalds 		 * - we support chardevs that provide their own "memory"
8521da177e4SLinus Torvalds 		 * - we support files/blockdevs that are memory backed
8531da177e4SLinus Torvalds 		 */
8541da177e4SLinus Torvalds 		mapping = file->f_mapping;
8551da177e4SLinus Torvalds 		if (!mapping)
856e9536ae7SJosef Sipek 			mapping = file->f_path.dentry->d_inode->i_mapping;
8571da177e4SLinus Torvalds 
8581da177e4SLinus Torvalds 		capabilities = 0;
8591da177e4SLinus Torvalds 		if (mapping && mapping->backing_dev_info)
8601da177e4SLinus Torvalds 			capabilities = mapping->backing_dev_info->capabilities;
8611da177e4SLinus Torvalds 
8621da177e4SLinus Torvalds 		if (!capabilities) {
8631da177e4SLinus Torvalds 			/* no explicit capabilities set, so assume some
8641da177e4SLinus Torvalds 			 * defaults */
865e9536ae7SJosef Sipek 			switch (file->f_path.dentry->d_inode->i_mode & S_IFMT) {
8661da177e4SLinus Torvalds 			case S_IFREG:
8671da177e4SLinus Torvalds 			case S_IFBLK:
8681da177e4SLinus Torvalds 				capabilities = BDI_CAP_MAP_COPY;
8691da177e4SLinus Torvalds 				break;
8701da177e4SLinus Torvalds 
8711da177e4SLinus Torvalds 			case S_IFCHR:
8721da177e4SLinus Torvalds 				capabilities =
8731da177e4SLinus Torvalds 					BDI_CAP_MAP_DIRECT |
8741da177e4SLinus Torvalds 					BDI_CAP_READ_MAP |
8751da177e4SLinus Torvalds 					BDI_CAP_WRITE_MAP;
8761da177e4SLinus Torvalds 				break;
8771da177e4SLinus Torvalds 
8781da177e4SLinus Torvalds 			default:
8791da177e4SLinus Torvalds 				return -EINVAL;
8801da177e4SLinus Torvalds 			}
8811da177e4SLinus Torvalds 		}
8821da177e4SLinus Torvalds 
8831da177e4SLinus Torvalds 		/* eliminate any capabilities that we can't support on this
8841da177e4SLinus Torvalds 		 * device */
8851da177e4SLinus Torvalds 		if (!file->f_op->get_unmapped_area)
8861da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_DIRECT;
8871da177e4SLinus Torvalds 		if (!file->f_op->read)
8881da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_COPY;
8891da177e4SLinus Torvalds 
8901da177e4SLinus Torvalds 		if (flags & MAP_SHARED) {
8911da177e4SLinus Torvalds 			/* do checks for writing, appending and locking */
8921da177e4SLinus Torvalds 			if ((prot & PROT_WRITE) &&
8931da177e4SLinus Torvalds 			    !(file->f_mode & FMODE_WRITE))
8941da177e4SLinus Torvalds 				return -EACCES;
8951da177e4SLinus Torvalds 
896e9536ae7SJosef Sipek 			if (IS_APPEND(file->f_path.dentry->d_inode) &&
8971da177e4SLinus Torvalds 			    (file->f_mode & FMODE_WRITE))
8981da177e4SLinus Torvalds 				return -EACCES;
8991da177e4SLinus Torvalds 
900e9536ae7SJosef Sipek 			if (locks_verify_locked(file->f_path.dentry->d_inode))
9011da177e4SLinus Torvalds 				return -EAGAIN;
9021da177e4SLinus Torvalds 
9031da177e4SLinus Torvalds 			if (!(capabilities & BDI_CAP_MAP_DIRECT))
9041da177e4SLinus Torvalds 				return -ENODEV;
9051da177e4SLinus Torvalds 
9061da177e4SLinus Torvalds 			if (((prot & PROT_READ)  && !(capabilities & BDI_CAP_READ_MAP))  ||
9071da177e4SLinus Torvalds 			    ((prot & PROT_WRITE) && !(capabilities & BDI_CAP_WRITE_MAP)) ||
9081da177e4SLinus Torvalds 			    ((prot & PROT_EXEC)  && !(capabilities & BDI_CAP_EXEC_MAP))
9091da177e4SLinus Torvalds 			    ) {
9101da177e4SLinus Torvalds 				printk("MAP_SHARED not completely supported on !MMU\n");
9111da177e4SLinus Torvalds 				return -EINVAL;
9121da177e4SLinus Torvalds 			}
9131da177e4SLinus Torvalds 
9141da177e4SLinus Torvalds 			/* we mustn't privatise shared mappings */
9151da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_COPY;
9161da177e4SLinus Torvalds 		}
9171da177e4SLinus Torvalds 		else {
9181da177e4SLinus Torvalds 			/* we're going to read the file into private memory we
9191da177e4SLinus Torvalds 			 * allocate */
9201da177e4SLinus Torvalds 			if (!(capabilities & BDI_CAP_MAP_COPY))
9211da177e4SLinus Torvalds 				return -ENODEV;
9221da177e4SLinus Torvalds 
9231da177e4SLinus Torvalds 			/* we don't permit a private writable mapping to be
9241da177e4SLinus Torvalds 			 * shared with the backing device */
9251da177e4SLinus Torvalds 			if (prot & PROT_WRITE)
9261da177e4SLinus Torvalds 				capabilities &= ~BDI_CAP_MAP_DIRECT;
9271da177e4SLinus Torvalds 		}
9281da177e4SLinus Torvalds 
9291da177e4SLinus Torvalds 		/* handle executable mappings and implied executable
9301da177e4SLinus Torvalds 		 * mappings */
931e9536ae7SJosef Sipek 		if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
9321da177e4SLinus Torvalds 			if (prot & PROT_EXEC)
9331da177e4SLinus Torvalds 				return -EPERM;
9341da177e4SLinus Torvalds 		}
9351da177e4SLinus Torvalds 		else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
9361da177e4SLinus Torvalds 			/* handle implication of PROT_EXEC by PROT_READ */
9371da177e4SLinus Torvalds 			if (current->personality & READ_IMPLIES_EXEC) {
9381da177e4SLinus Torvalds 				if (capabilities & BDI_CAP_EXEC_MAP)
9391da177e4SLinus Torvalds 					prot |= PROT_EXEC;
9401da177e4SLinus Torvalds 			}
9411da177e4SLinus Torvalds 		}
9421da177e4SLinus Torvalds 		else if ((prot & PROT_READ) &&
9431da177e4SLinus Torvalds 			 (prot & PROT_EXEC) &&
9441da177e4SLinus Torvalds 			 !(capabilities & BDI_CAP_EXEC_MAP)
9451da177e4SLinus Torvalds 			 ) {
9461da177e4SLinus Torvalds 			/* backing file is not executable, try to copy */
9471da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_DIRECT;
9481da177e4SLinus Torvalds 		}
9491da177e4SLinus Torvalds 	}
9501da177e4SLinus Torvalds 	else {
9511da177e4SLinus Torvalds 		/* anonymous mappings are always memory backed and can be
9521da177e4SLinus Torvalds 		 * privately mapped
9531da177e4SLinus Torvalds 		 */
9541da177e4SLinus Torvalds 		capabilities = BDI_CAP_MAP_COPY;
9551da177e4SLinus Torvalds 
9561da177e4SLinus Torvalds 		/* handle PROT_EXEC implication by PROT_READ */
9571da177e4SLinus Torvalds 		if ((prot & PROT_READ) &&
9581da177e4SLinus Torvalds 		    (current->personality & READ_IMPLIES_EXEC))
9591da177e4SLinus Torvalds 			prot |= PROT_EXEC;
9601da177e4SLinus Torvalds 	}
9611da177e4SLinus Torvalds 
9621da177e4SLinus Torvalds 	/* allow the security API to have its say */
963ed032189SEric Paris 	ret = security_file_mmap(file, reqprot, prot, flags, addr, 0);
9641da177e4SLinus Torvalds 	if (ret < 0)
9651da177e4SLinus Torvalds 		return ret;
9661da177e4SLinus Torvalds 
9671da177e4SLinus Torvalds 	/* looks okay */
9681da177e4SLinus Torvalds 	*_capabilities = capabilities;
9691da177e4SLinus Torvalds 	return 0;
9701da177e4SLinus Torvalds }
9711da177e4SLinus Torvalds 
9721da177e4SLinus Torvalds /*
9731da177e4SLinus Torvalds  * we've determined that we can make the mapping, now translate what we
9741da177e4SLinus Torvalds  * now know into VMA flags
9751da177e4SLinus Torvalds  */
9761da177e4SLinus Torvalds static unsigned long determine_vm_flags(struct file *file,
9771da177e4SLinus Torvalds 					unsigned long prot,
9781da177e4SLinus Torvalds 					unsigned long flags,
9791da177e4SLinus Torvalds 					unsigned long capabilities)
9801da177e4SLinus Torvalds {
9811da177e4SLinus Torvalds 	unsigned long vm_flags;
9821da177e4SLinus Torvalds 
9831da177e4SLinus Torvalds 	vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
9841da177e4SLinus Torvalds 	vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
9851da177e4SLinus Torvalds 	/* vm_flags |= mm->def_flags; */
9861da177e4SLinus Torvalds 
9871da177e4SLinus Torvalds 	if (!(capabilities & BDI_CAP_MAP_DIRECT)) {
9881da177e4SLinus Torvalds 		/* attempt to share read-only copies of mapped file chunks */
9891da177e4SLinus Torvalds 		if (file && !(prot & PROT_WRITE))
9901da177e4SLinus Torvalds 			vm_flags |= VM_MAYSHARE;
9911da177e4SLinus Torvalds 	}
9921da177e4SLinus Torvalds 	else {
9931da177e4SLinus Torvalds 		/* overlay a shareable mapping on the backing device or inode
9941da177e4SLinus Torvalds 		 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
9951da177e4SLinus Torvalds 		 * romfs/cramfs */
9961da177e4SLinus Torvalds 		if (flags & MAP_SHARED)
9971da177e4SLinus Torvalds 			vm_flags |= VM_MAYSHARE | VM_SHARED;
9981da177e4SLinus Torvalds 		else if ((((vm_flags & capabilities) ^ vm_flags) & BDI_CAP_VMFLAGS) == 0)
9991da177e4SLinus Torvalds 			vm_flags |= VM_MAYSHARE;
10001da177e4SLinus Torvalds 	}
10011da177e4SLinus Torvalds 
10021da177e4SLinus Torvalds 	/* refuse to let anyone share private mappings with this process if
10031da177e4SLinus Torvalds 	 * it's being traced - otherwise breakpoints set in it may interfere
10041da177e4SLinus Torvalds 	 * with another untraced process
10051da177e4SLinus Torvalds 	 */
1006fa8e26ccSRoland McGrath 	if ((flags & MAP_PRIVATE) && tracehook_expect_breakpoints(current))
10071da177e4SLinus Torvalds 		vm_flags &= ~VM_MAYSHARE;
10081da177e4SLinus Torvalds 
10091da177e4SLinus Torvalds 	return vm_flags;
10101da177e4SLinus Torvalds }
10111da177e4SLinus Torvalds 
10121da177e4SLinus Torvalds /*
10138feae131SDavid Howells  * set up a shared mapping on a file (the driver or filesystem provides and
10148feae131SDavid Howells  * pins the storage)
10151da177e4SLinus Torvalds  */
10168feae131SDavid Howells static int do_mmap_shared_file(struct vm_area_struct *vma)
10171da177e4SLinus Torvalds {
10181da177e4SLinus Torvalds 	int ret;
10191da177e4SLinus Torvalds 
10201da177e4SLinus Torvalds 	ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
1021dd8632a1SPaul Mundt 	if (ret == 0) {
1022dd8632a1SPaul Mundt 		vma->vm_region->vm_top = vma->vm_region->vm_end;
1023dd8632a1SPaul Mundt 		return ret;
1024dd8632a1SPaul Mundt 	}
10251da177e4SLinus Torvalds 	if (ret != -ENOSYS)
10261da177e4SLinus Torvalds 		return ret;
10271da177e4SLinus Torvalds 
10281da177e4SLinus Torvalds 	/* getting an ENOSYS error indicates that direct mmap isn't
10291da177e4SLinus Torvalds 	 * possible (as opposed to tried but failed) so we'll fall
10301da177e4SLinus Torvalds 	 * through to making a private copy of the data and mapping
10311da177e4SLinus Torvalds 	 * that if we can */
10321da177e4SLinus Torvalds 	return -ENODEV;
10331da177e4SLinus Torvalds }
10341da177e4SLinus Torvalds 
10351da177e4SLinus Torvalds /*
10361da177e4SLinus Torvalds  * set up a private mapping or an anonymous shared mapping
10371da177e4SLinus Torvalds  */
10388feae131SDavid Howells static int do_mmap_private(struct vm_area_struct *vma,
10398feae131SDavid Howells 			   struct vm_region *region,
10408feae131SDavid Howells 			   unsigned long len)
10411da177e4SLinus Torvalds {
10428feae131SDavid Howells 	struct page *pages;
10438feae131SDavid Howells 	unsigned long total, point, n, rlen;
10441da177e4SLinus Torvalds 	void *base;
10458feae131SDavid Howells 	int ret, order;
10461da177e4SLinus Torvalds 
10471da177e4SLinus Torvalds 	/* invoke the file's mapping function so that it can keep track of
10481da177e4SLinus Torvalds 	 * shared mappings on devices or memory
10491da177e4SLinus Torvalds 	 * - VM_MAYSHARE will be set if it may attempt to share
10501da177e4SLinus Torvalds 	 */
10511da177e4SLinus Torvalds 	if (vma->vm_file) {
10521da177e4SLinus Torvalds 		ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
1053dd8632a1SPaul Mundt 		if (ret == 0) {
10541da177e4SLinus Torvalds 			/* shouldn't return success if we're not sharing */
1055dd8632a1SPaul Mundt 			BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1056dd8632a1SPaul Mundt 			vma->vm_region->vm_top = vma->vm_region->vm_end;
1057dd8632a1SPaul Mundt 			return ret;
10581da177e4SLinus Torvalds 		}
1059dd8632a1SPaul Mundt 		if (ret != -ENOSYS)
1060dd8632a1SPaul Mundt 			return ret;
10611da177e4SLinus Torvalds 
10621da177e4SLinus Torvalds 		/* getting an ENOSYS error indicates that direct mmap isn't
10631da177e4SLinus Torvalds 		 * possible (as opposed to tried but failed) so we'll try to
10641da177e4SLinus Torvalds 		 * make a private copy of the data and map that instead */
10651da177e4SLinus Torvalds 	}
10661da177e4SLinus Torvalds 
10678feae131SDavid Howells 	rlen = PAGE_ALIGN(len);
10688feae131SDavid Howells 
10691da177e4SLinus Torvalds 	/* allocate some memory to hold the mapping
10701da177e4SLinus Torvalds 	 * - note that this may not return a page-aligned address if the object
10711da177e4SLinus Torvalds 	 *   we're allocating is smaller than a page
10721da177e4SLinus Torvalds 	 */
10738feae131SDavid Howells 	order = get_order(rlen);
10748feae131SDavid Howells 	kdebug("alloc order %d for %lx", order, len);
10758feae131SDavid Howells 
10768feae131SDavid Howells 	pages = alloc_pages(GFP_KERNEL, order);
10778feae131SDavid Howells 	if (!pages)
10781da177e4SLinus Torvalds 		goto enomem;
10791da177e4SLinus Torvalds 
10808feae131SDavid Howells 	total = 1 << order;
10818feae131SDavid Howells 	atomic_add(total, &mmap_pages_allocated);
10821da177e4SLinus Torvalds 
10838feae131SDavid Howells 	point = rlen >> PAGE_SHIFT;
1084dd8632a1SPaul Mundt 
1085dd8632a1SPaul Mundt 	/* we allocated a power-of-2 sized page set, so we may want to trim off
1086dd8632a1SPaul Mundt 	 * the excess */
1087dd8632a1SPaul Mundt 	if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages) {
10888feae131SDavid Howells 		while (total > point) {
10898feae131SDavid Howells 			order = ilog2(total - point);
10908feae131SDavid Howells 			n = 1 << order;
10918feae131SDavid Howells 			kdebug("shave %lu/%lu @%lu", n, total - point, total);
10928feae131SDavid Howells 			atomic_sub(n, &mmap_pages_allocated);
10938feae131SDavid Howells 			total -= n;
10948feae131SDavid Howells 			set_page_refcounted(pages + total);
10958feae131SDavid Howells 			__free_pages(pages + total, order);
10968feae131SDavid Howells 		}
1097dd8632a1SPaul Mundt 	}
10988feae131SDavid Howells 
10998feae131SDavid Howells 	for (point = 1; point < total; point++)
11008feae131SDavid Howells 		set_page_refcounted(&pages[point]);
11018feae131SDavid Howells 
11028feae131SDavid Howells 	base = page_address(pages);
11038feae131SDavid Howells 	region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
11048feae131SDavid Howells 	region->vm_start = (unsigned long) base;
11058feae131SDavid Howells 	region->vm_end   = region->vm_start + rlen;
1106dd8632a1SPaul Mundt 	region->vm_top   = region->vm_start + (total << PAGE_SHIFT);
11078feae131SDavid Howells 
11088feae131SDavid Howells 	vma->vm_start = region->vm_start;
11098feae131SDavid Howells 	vma->vm_end   = region->vm_start + len;
11101da177e4SLinus Torvalds 
11111da177e4SLinus Torvalds 	if (vma->vm_file) {
11121da177e4SLinus Torvalds 		/* read the contents of a file into the copy */
11131da177e4SLinus Torvalds 		mm_segment_t old_fs;
11141da177e4SLinus Torvalds 		loff_t fpos;
11151da177e4SLinus Torvalds 
11161da177e4SLinus Torvalds 		fpos = vma->vm_pgoff;
11171da177e4SLinus Torvalds 		fpos <<= PAGE_SHIFT;
11181da177e4SLinus Torvalds 
11191da177e4SLinus Torvalds 		old_fs = get_fs();
11201da177e4SLinus Torvalds 		set_fs(KERNEL_DS);
11218feae131SDavid Howells 		ret = vma->vm_file->f_op->read(vma->vm_file, base, rlen, &fpos);
11221da177e4SLinus Torvalds 		set_fs(old_fs);
11231da177e4SLinus Torvalds 
11241da177e4SLinus Torvalds 		if (ret < 0)
11251da177e4SLinus Torvalds 			goto error_free;
11261da177e4SLinus Torvalds 
11271da177e4SLinus Torvalds 		/* clear the last little bit */
11288feae131SDavid Howells 		if (ret < rlen)
11298feae131SDavid Howells 			memset(base + ret, 0, rlen - ret);
11301da177e4SLinus Torvalds 
11311da177e4SLinus Torvalds 	} else {
11321da177e4SLinus Torvalds 		/* if it's an anonymous mapping, then just clear it */
11338feae131SDavid Howells 		memset(base, 0, rlen);
11341da177e4SLinus Torvalds 	}
11351da177e4SLinus Torvalds 
11361da177e4SLinus Torvalds 	return 0;
11371da177e4SLinus Torvalds 
11381da177e4SLinus Torvalds error_free:
11398feae131SDavid Howells 	free_page_series(region->vm_start, region->vm_end);
11408feae131SDavid Howells 	region->vm_start = vma->vm_start = 0;
11418feae131SDavid Howells 	region->vm_end   = vma->vm_end = 0;
1142dd8632a1SPaul Mundt 	region->vm_top   = 0;
11431da177e4SLinus Torvalds 	return ret;
11441da177e4SLinus Torvalds 
11451da177e4SLinus Torvalds enomem:
11461da177e4SLinus Torvalds 	printk("Allocation of length %lu from process %d failed\n",
11471da177e4SLinus Torvalds 	       len, current->pid);
11481da177e4SLinus Torvalds 	show_free_areas();
11491da177e4SLinus Torvalds 	return -ENOMEM;
11501da177e4SLinus Torvalds }
11511da177e4SLinus Torvalds 
11521da177e4SLinus Torvalds /*
11531da177e4SLinus Torvalds  * handle mapping creation for uClinux
11541da177e4SLinus Torvalds  */
11551da177e4SLinus Torvalds unsigned long do_mmap_pgoff(struct file *file,
11561da177e4SLinus Torvalds 			    unsigned long addr,
11571da177e4SLinus Torvalds 			    unsigned long len,
11581da177e4SLinus Torvalds 			    unsigned long prot,
11591da177e4SLinus Torvalds 			    unsigned long flags,
11601da177e4SLinus Torvalds 			    unsigned long pgoff)
11611da177e4SLinus Torvalds {
11628feae131SDavid Howells 	struct vm_area_struct *vma;
11638feae131SDavid Howells 	struct vm_region *region;
11641da177e4SLinus Torvalds 	struct rb_node *rb;
11658feae131SDavid Howells 	unsigned long capabilities, vm_flags, result;
11661da177e4SLinus Torvalds 	int ret;
11671da177e4SLinus Torvalds 
11688feae131SDavid Howells 	kenter(",%lx,%lx,%lx,%lx,%lx", addr, len, prot, flags, pgoff);
11698feae131SDavid Howells 
11707cd94146SEric Paris 	if (!(flags & MAP_FIXED))
11717cd94146SEric Paris 		addr = round_hint_to_min(addr);
11727cd94146SEric Paris 
11731da177e4SLinus Torvalds 	/* decide whether we should attempt the mapping, and if so what sort of
11741da177e4SLinus Torvalds 	 * mapping */
11751da177e4SLinus Torvalds 	ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
11761da177e4SLinus Torvalds 				    &capabilities);
11778feae131SDavid Howells 	if (ret < 0) {
11788feae131SDavid Howells 		kleave(" = %d [val]", ret);
11791da177e4SLinus Torvalds 		return ret;
11808feae131SDavid Howells 	}
11811da177e4SLinus Torvalds 
11821da177e4SLinus Torvalds 	/* we've determined that we can make the mapping, now translate what we
11831da177e4SLinus Torvalds 	 * now know into VMA flags */
11841da177e4SLinus Torvalds 	vm_flags = determine_vm_flags(file, prot, flags, capabilities);
11851da177e4SLinus Torvalds 
11868feae131SDavid Howells 	/* we're going to need to record the mapping */
11878feae131SDavid Howells 	region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
11888feae131SDavid Howells 	if (!region)
11898feae131SDavid Howells 		goto error_getting_region;
11901da177e4SLinus Torvalds 
11918feae131SDavid Howells 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
11928feae131SDavid Howells 	if (!vma)
11938feae131SDavid Howells 		goto error_getting_vma;
11941da177e4SLinus Torvalds 
11958feae131SDavid Howells 	atomic_set(&region->vm_usage, 1);
11968feae131SDavid Howells 	region->vm_flags = vm_flags;
11978feae131SDavid Howells 	region->vm_pgoff = pgoff;
11988feae131SDavid Howells 
11998feae131SDavid Howells 	INIT_LIST_HEAD(&vma->anon_vma_node);
12008feae131SDavid Howells 	vma->vm_flags = vm_flags;
12018feae131SDavid Howells 	vma->vm_pgoff = pgoff;
12028feae131SDavid Howells 
12038feae131SDavid Howells 	if (file) {
12048feae131SDavid Howells 		region->vm_file = file;
12058feae131SDavid Howells 		get_file(file);
12068feae131SDavid Howells 		vma->vm_file = file;
12078feae131SDavid Howells 		get_file(file);
12088feae131SDavid Howells 		if (vm_flags & VM_EXECUTABLE) {
12098feae131SDavid Howells 			added_exe_file_vma(current->mm);
12108feae131SDavid Howells 			vma->vm_mm = current->mm;
12118feae131SDavid Howells 		}
12128feae131SDavid Howells 	}
12138feae131SDavid Howells 
12148feae131SDavid Howells 	down_write(&nommu_region_sem);
12158feae131SDavid Howells 
12168feae131SDavid Howells 	/* if we want to share, we need to check for regions created by other
12171da177e4SLinus Torvalds 	 * mmap() calls that overlap with our proposed mapping
12188feae131SDavid Howells 	 * - we can only share with a superset match on most regular files
12191da177e4SLinus Torvalds 	 * - shared mappings on character devices and memory backed files are
12201da177e4SLinus Torvalds 	 *   permitted to overlap inexactly as far as we are concerned for in
12211da177e4SLinus Torvalds 	 *   these cases, sharing is handled in the driver or filesystem rather
12221da177e4SLinus Torvalds 	 *   than here
12231da177e4SLinus Torvalds 	 */
12241da177e4SLinus Torvalds 	if (vm_flags & VM_MAYSHARE) {
12258feae131SDavid Howells 		struct vm_region *pregion;
12268feae131SDavid Howells 		unsigned long pglen, rpglen, pgend, rpgend, start;
12271da177e4SLinus Torvalds 
12288feae131SDavid Howells 		pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
12298feae131SDavid Howells 		pgend = pgoff + pglen;
1230165b2392SDavid Howells 
12318feae131SDavid Howells 		for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
12328feae131SDavid Howells 			pregion = rb_entry(rb, struct vm_region, vm_rb);
12331da177e4SLinus Torvalds 
12348feae131SDavid Howells 			if (!(pregion->vm_flags & VM_MAYSHARE))
12351da177e4SLinus Torvalds 				continue;
12361da177e4SLinus Torvalds 
12371da177e4SLinus Torvalds 			/* search for overlapping mappings on the same file */
12388feae131SDavid Howells 			if (pregion->vm_file->f_path.dentry->d_inode !=
12398feae131SDavid Howells 			    file->f_path.dentry->d_inode)
12401da177e4SLinus Torvalds 				continue;
12411da177e4SLinus Torvalds 
12428feae131SDavid Howells 			if (pregion->vm_pgoff >= pgend)
12431da177e4SLinus Torvalds 				continue;
12441da177e4SLinus Torvalds 
12458feae131SDavid Howells 			rpglen = pregion->vm_end - pregion->vm_start;
12468feae131SDavid Howells 			rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
12478feae131SDavid Howells 			rpgend = pregion->vm_pgoff + rpglen;
12488feae131SDavid Howells 			if (pgoff >= rpgend)
12491da177e4SLinus Torvalds 				continue;
12501da177e4SLinus Torvalds 
12518feae131SDavid Howells 			/* handle inexactly overlapping matches between
12528feae131SDavid Howells 			 * mappings */
12538feae131SDavid Howells 			if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
12548feae131SDavid Howells 			    !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
12558feae131SDavid Howells 				/* new mapping is not a subset of the region */
12561da177e4SLinus Torvalds 				if (!(capabilities & BDI_CAP_MAP_DIRECT))
12571da177e4SLinus Torvalds 					goto sharing_violation;
12581da177e4SLinus Torvalds 				continue;
12591da177e4SLinus Torvalds 			}
12601da177e4SLinus Torvalds 
12618feae131SDavid Howells 			/* we've found a region we can share */
12628feae131SDavid Howells 			atomic_inc(&pregion->vm_usage);
12638feae131SDavid Howells 			vma->vm_region = pregion;
12648feae131SDavid Howells 			start = pregion->vm_start;
12658feae131SDavid Howells 			start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
12668feae131SDavid Howells 			vma->vm_start = start;
12678feae131SDavid Howells 			vma->vm_end = start + len;
12681da177e4SLinus Torvalds 
12698feae131SDavid Howells 			if (pregion->vm_flags & VM_MAPPED_COPY) {
12708feae131SDavid Howells 				kdebug("share copy");
12718feae131SDavid Howells 				vma->vm_flags |= VM_MAPPED_COPY;
12728feae131SDavid Howells 			} else {
12738feae131SDavid Howells 				kdebug("share mmap");
12748feae131SDavid Howells 				ret = do_mmap_shared_file(vma);
12758feae131SDavid Howells 				if (ret < 0) {
12768feae131SDavid Howells 					vma->vm_region = NULL;
12778feae131SDavid Howells 					vma->vm_start = 0;
12788feae131SDavid Howells 					vma->vm_end = 0;
12798feae131SDavid Howells 					atomic_dec(&pregion->vm_usage);
12808feae131SDavid Howells 					pregion = NULL;
12818feae131SDavid Howells 					goto error_just_free;
12821da177e4SLinus Torvalds 				}
12838feae131SDavid Howells 			}
12848feae131SDavid Howells 			fput(region->vm_file);
12858feae131SDavid Howells 			kmem_cache_free(vm_region_jar, region);
12868feae131SDavid Howells 			region = pregion;
12878feae131SDavid Howells 			result = start;
12888feae131SDavid Howells 			goto share;
12898feae131SDavid Howells 		}
12901da177e4SLinus Torvalds 
12911da177e4SLinus Torvalds 		/* obtain the address at which to make a shared mapping
12921da177e4SLinus Torvalds 		 * - this is the hook for quasi-memory character devices to
12931da177e4SLinus Torvalds 		 *   tell us the location of a shared mapping
12941da177e4SLinus Torvalds 		 */
12951da177e4SLinus Torvalds 		if (file && file->f_op->get_unmapped_area) {
12961da177e4SLinus Torvalds 			addr = file->f_op->get_unmapped_area(file, addr, len,
12971da177e4SLinus Torvalds 							     pgoff, flags);
12981da177e4SLinus Torvalds 			if (IS_ERR((void *) addr)) {
12991da177e4SLinus Torvalds 				ret = addr;
13001da177e4SLinus Torvalds 				if (ret != (unsigned long) -ENOSYS)
13018feae131SDavid Howells 					goto error_just_free;
13021da177e4SLinus Torvalds 
13031da177e4SLinus Torvalds 				/* the driver refused to tell us where to site
13041da177e4SLinus Torvalds 				 * the mapping so we'll have to attempt to copy
13051da177e4SLinus Torvalds 				 * it */
13061da177e4SLinus Torvalds 				ret = (unsigned long) -ENODEV;
13071da177e4SLinus Torvalds 				if (!(capabilities & BDI_CAP_MAP_COPY))
13088feae131SDavid Howells 					goto error_just_free;
13091da177e4SLinus Torvalds 
13101da177e4SLinus Torvalds 				capabilities &= ~BDI_CAP_MAP_DIRECT;
13118feae131SDavid Howells 			} else {
13128feae131SDavid Howells 				vma->vm_start = region->vm_start = addr;
13138feae131SDavid Howells 				vma->vm_end = region->vm_end = addr + len;
13141da177e4SLinus Torvalds 			}
13151da177e4SLinus Torvalds 		}
13161da177e4SLinus Torvalds 	}
13171da177e4SLinus Torvalds 
13188feae131SDavid Howells 	vma->vm_region = region;
13191da177e4SLinus Torvalds 
13201da177e4SLinus Torvalds 	/* set up the mapping */
13211da177e4SLinus Torvalds 	if (file && vma->vm_flags & VM_SHARED)
13228feae131SDavid Howells 		ret = do_mmap_shared_file(vma);
13231da177e4SLinus Torvalds 	else
13248feae131SDavid Howells 		ret = do_mmap_private(vma, region, len);
13251da177e4SLinus Torvalds 	if (ret < 0)
13268feae131SDavid Howells 		goto error_put_region;
13278feae131SDavid Howells 
13288feae131SDavid Howells 	add_nommu_region(region);
13291da177e4SLinus Torvalds 
13301da177e4SLinus Torvalds 	/* okay... we have a mapping; now we have to register it */
13318feae131SDavid Howells 	result = vma->vm_start;
13321da177e4SLinus Torvalds 
13331da177e4SLinus Torvalds 	current->mm->total_vm += len >> PAGE_SHIFT;
13341da177e4SLinus Torvalds 
13358feae131SDavid Howells share:
13368feae131SDavid Howells 	add_vma_to_mm(current->mm, vma);
13371da177e4SLinus Torvalds 
13388feae131SDavid Howells 	up_write(&nommu_region_sem);
13391da177e4SLinus Torvalds 
13401da177e4SLinus Torvalds 	if (prot & PROT_EXEC)
13418feae131SDavid Howells 		flush_icache_range(result, result + len);
13421da177e4SLinus Torvalds 
13438feae131SDavid Howells 	kleave(" = %lx", result);
13448feae131SDavid Howells 	return result;
13451da177e4SLinus Torvalds 
13468feae131SDavid Howells error_put_region:
13478feae131SDavid Howells 	__put_nommu_region(region);
13481da177e4SLinus Torvalds 	if (vma) {
1349925d1c40SMatt Helsley 		if (vma->vm_file) {
13501da177e4SLinus Torvalds 			fput(vma->vm_file);
1351925d1c40SMatt Helsley 			if (vma->vm_flags & VM_EXECUTABLE)
1352925d1c40SMatt Helsley 				removed_exe_file_vma(vma->vm_mm);
1353925d1c40SMatt Helsley 		}
13548feae131SDavid Howells 		kmem_cache_free(vm_area_cachep, vma);
13551da177e4SLinus Torvalds 	}
13568feae131SDavid Howells 	kleave(" = %d [pr]", ret);
13578feae131SDavid Howells 	return ret;
13588feae131SDavid Howells 
13598feae131SDavid Howells error_just_free:
13608feae131SDavid Howells 	up_write(&nommu_region_sem);
13618feae131SDavid Howells error:
13628feae131SDavid Howells 	fput(region->vm_file);
13638feae131SDavid Howells 	kmem_cache_free(vm_region_jar, region);
13648feae131SDavid Howells 	fput(vma->vm_file);
13658feae131SDavid Howells 	if (vma->vm_flags & VM_EXECUTABLE)
13668feae131SDavid Howells 		removed_exe_file_vma(vma->vm_mm);
13678feae131SDavid Howells 	kmem_cache_free(vm_area_cachep, vma);
13688feae131SDavid Howells 	kleave(" = %d", ret);
13691da177e4SLinus Torvalds 	return ret;
13701da177e4SLinus Torvalds 
13711da177e4SLinus Torvalds sharing_violation:
13728feae131SDavid Howells 	up_write(&nommu_region_sem);
13738feae131SDavid Howells 	printk(KERN_WARNING "Attempt to share mismatched mappings\n");
13748feae131SDavid Howells 	ret = -EINVAL;
13758feae131SDavid Howells 	goto error;
13761da177e4SLinus Torvalds 
13771da177e4SLinus Torvalds error_getting_vma:
13788feae131SDavid Howells 	kmem_cache_free(vm_region_jar, region);
13798feae131SDavid Howells 	printk(KERN_WARNING "Allocation of vma for %lu byte allocation"
13808feae131SDavid Howells 	       " from process %d failed\n",
13811da177e4SLinus Torvalds 	       len, current->pid);
13821da177e4SLinus Torvalds 	show_free_areas();
13831da177e4SLinus Torvalds 	return -ENOMEM;
13841da177e4SLinus Torvalds 
13858feae131SDavid Howells error_getting_region:
13868feae131SDavid Howells 	printk(KERN_WARNING "Allocation of vm region for %lu byte allocation"
13878feae131SDavid Howells 	       " from process %d failed\n",
13881da177e4SLinus Torvalds 	       len, current->pid);
13891da177e4SLinus Torvalds 	show_free_areas();
13901da177e4SLinus Torvalds 	return -ENOMEM;
13911da177e4SLinus Torvalds }
1392b5073173SPaul Mundt EXPORT_SYMBOL(do_mmap_pgoff);
13931da177e4SLinus Torvalds 
13941da177e4SLinus Torvalds /*
13958feae131SDavid Howells  * split a vma into two pieces at address 'addr', a new vma is allocated either
13968feae131SDavid Howells  * for the first part or the tail.
13971da177e4SLinus Torvalds  */
13988feae131SDavid Howells int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
13998feae131SDavid Howells 	      unsigned long addr, int new_below)
14001da177e4SLinus Torvalds {
14018feae131SDavid Howells 	struct vm_area_struct *new;
14028feae131SDavid Howells 	struct vm_region *region;
14038feae131SDavid Howells 	unsigned long npages;
14041da177e4SLinus Torvalds 
14058feae131SDavid Howells 	kenter("");
14061da177e4SLinus Torvalds 
14078feae131SDavid Howells 	/* we're only permitted to split anonymous regions that have a single
14088feae131SDavid Howells 	 * owner */
14098feae131SDavid Howells 	if (vma->vm_file ||
14108feae131SDavid Howells 	    atomic_read(&vma->vm_region->vm_usage) != 1)
14118feae131SDavid Howells 		return -ENOMEM;
14121da177e4SLinus Torvalds 
14138feae131SDavid Howells 	if (mm->map_count >= sysctl_max_map_count)
14148feae131SDavid Howells 		return -ENOMEM;
14151da177e4SLinus Torvalds 
14168feae131SDavid Howells 	region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
14178feae131SDavid Howells 	if (!region)
14188feae131SDavid Howells 		return -ENOMEM;
14198feae131SDavid Howells 
14208feae131SDavid Howells 	new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
14218feae131SDavid Howells 	if (!new) {
14228feae131SDavid Howells 		kmem_cache_free(vm_region_jar, region);
14238feae131SDavid Howells 		return -ENOMEM;
14241da177e4SLinus Torvalds 	}
14251da177e4SLinus Torvalds 
14268feae131SDavid Howells 	/* most fields are the same, copy all, and then fixup */
14278feae131SDavid Howells 	*new = *vma;
14288feae131SDavid Howells 	*region = *vma->vm_region;
14298feae131SDavid Howells 	new->vm_region = region;
14308feae131SDavid Howells 
14318feae131SDavid Howells 	npages = (addr - vma->vm_start) >> PAGE_SHIFT;
14328feae131SDavid Howells 
14338feae131SDavid Howells 	if (new_below) {
1434dd8632a1SPaul Mundt 		region->vm_top = region->vm_end = new->vm_end = addr;
14358feae131SDavid Howells 	} else {
14368feae131SDavid Howells 		region->vm_start = new->vm_start = addr;
14378feae131SDavid Howells 		region->vm_pgoff = new->vm_pgoff += npages;
14381da177e4SLinus Torvalds 	}
14398feae131SDavid Howells 
14408feae131SDavid Howells 	if (new->vm_ops && new->vm_ops->open)
14418feae131SDavid Howells 		new->vm_ops->open(new);
14428feae131SDavid Howells 
14438feae131SDavid Howells 	delete_vma_from_mm(vma);
14448feae131SDavid Howells 	down_write(&nommu_region_sem);
14458feae131SDavid Howells 	delete_nommu_region(vma->vm_region);
14468feae131SDavid Howells 	if (new_below) {
14478feae131SDavid Howells 		vma->vm_region->vm_start = vma->vm_start = addr;
14488feae131SDavid Howells 		vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
14498feae131SDavid Howells 	} else {
14508feae131SDavid Howells 		vma->vm_region->vm_end = vma->vm_end = addr;
1451dd8632a1SPaul Mundt 		vma->vm_region->vm_top = addr;
14528feae131SDavid Howells 	}
14538feae131SDavid Howells 	add_nommu_region(vma->vm_region);
14548feae131SDavid Howells 	add_nommu_region(new->vm_region);
14558feae131SDavid Howells 	up_write(&nommu_region_sem);
14568feae131SDavid Howells 	add_vma_to_mm(mm, vma);
14578feae131SDavid Howells 	add_vma_to_mm(mm, new);
14588feae131SDavid Howells 	return 0;
14598feae131SDavid Howells }
14608feae131SDavid Howells 
14618feae131SDavid Howells /*
14628feae131SDavid Howells  * shrink a VMA by removing the specified chunk from either the beginning or
14638feae131SDavid Howells  * the end
14648feae131SDavid Howells  */
14658feae131SDavid Howells static int shrink_vma(struct mm_struct *mm,
14668feae131SDavid Howells 		      struct vm_area_struct *vma,
14678feae131SDavid Howells 		      unsigned long from, unsigned long to)
14688feae131SDavid Howells {
14698feae131SDavid Howells 	struct vm_region *region;
14708feae131SDavid Howells 
14718feae131SDavid Howells 	kenter("");
14728feae131SDavid Howells 
14738feae131SDavid Howells 	/* adjust the VMA's pointers, which may reposition it in the MM's tree
14748feae131SDavid Howells 	 * and list */
14758feae131SDavid Howells 	delete_vma_from_mm(vma);
14768feae131SDavid Howells 	if (from > vma->vm_start)
14778feae131SDavid Howells 		vma->vm_end = from;
14788feae131SDavid Howells 	else
14798feae131SDavid Howells 		vma->vm_start = to;
14808feae131SDavid Howells 	add_vma_to_mm(mm, vma);
14818feae131SDavid Howells 
14828feae131SDavid Howells 	/* cut the backing region down to size */
14838feae131SDavid Howells 	region = vma->vm_region;
14848feae131SDavid Howells 	BUG_ON(atomic_read(&region->vm_usage) != 1);
14858feae131SDavid Howells 
14868feae131SDavid Howells 	down_write(&nommu_region_sem);
14878feae131SDavid Howells 	delete_nommu_region(region);
1488dd8632a1SPaul Mundt 	if (from > region->vm_start) {
1489dd8632a1SPaul Mundt 		to = region->vm_top;
1490dd8632a1SPaul Mundt 		region->vm_top = region->vm_end = from;
1491dd8632a1SPaul Mundt 	} else {
14928feae131SDavid Howells 		region->vm_start = to;
1493dd8632a1SPaul Mundt 	}
14948feae131SDavid Howells 	add_nommu_region(region);
14958feae131SDavid Howells 	up_write(&nommu_region_sem);
14968feae131SDavid Howells 
14978feae131SDavid Howells 	free_page_series(from, to);
14988feae131SDavid Howells 	return 0;
14991da177e4SLinus Torvalds }
15001da177e4SLinus Torvalds 
15013034097aSDavid Howells /*
15023034097aSDavid Howells  * release a mapping
15038feae131SDavid Howells  * - under NOMMU conditions the chunk to be unmapped must be backed by a single
15048feae131SDavid Howells  *   VMA, though it need not cover the whole VMA
15053034097aSDavid Howells  */
15068feae131SDavid Howells int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
15071da177e4SLinus Torvalds {
15088feae131SDavid Howells 	struct vm_area_struct *vma;
15098feae131SDavid Howells 	struct rb_node *rb;
15108feae131SDavid Howells 	unsigned long end = start + len;
15118feae131SDavid Howells 	int ret;
15121da177e4SLinus Torvalds 
15138feae131SDavid Howells 	kenter(",%lx,%zx", start, len);
15141da177e4SLinus Torvalds 
15158feae131SDavid Howells 	if (len == 0)
15161da177e4SLinus Torvalds 		return -EINVAL;
15171da177e4SLinus Torvalds 
15188feae131SDavid Howells 	/* find the first potentially overlapping VMA */
15198feae131SDavid Howells 	vma = find_vma(mm, start);
15208feae131SDavid Howells 	if (!vma) {
15218feae131SDavid Howells 		printk(KERN_WARNING
15228feae131SDavid Howells 		       "munmap of memory not mmapped by process %d (%s):"
15238feae131SDavid Howells 		       " 0x%lx-0x%lx\n",
15248feae131SDavid Howells 		       current->pid, current->comm, start, start + len - 1);
15258feae131SDavid Howells 		return -EINVAL;
15268feae131SDavid Howells 	}
15271da177e4SLinus Torvalds 
15288feae131SDavid Howells 	/* we're allowed to split an anonymous VMA but not a file-backed one */
15298feae131SDavid Howells 	if (vma->vm_file) {
15308feae131SDavid Howells 		do {
15318feae131SDavid Howells 			if (start > vma->vm_start) {
15328feae131SDavid Howells 				kleave(" = -EINVAL [miss]");
15338feae131SDavid Howells 				return -EINVAL;
15348feae131SDavid Howells 			}
15358feae131SDavid Howells 			if (end == vma->vm_end)
15368feae131SDavid Howells 				goto erase_whole_vma;
15378feae131SDavid Howells 			rb = rb_next(&vma->vm_rb);
15388feae131SDavid Howells 			vma = rb_entry(rb, struct vm_area_struct, vm_rb);
15398feae131SDavid Howells 		} while (rb);
15408feae131SDavid Howells 		kleave(" = -EINVAL [split file]");
15418feae131SDavid Howells 		return -EINVAL;
15428feae131SDavid Howells 	} else {
15438feae131SDavid Howells 		/* the chunk must be a subset of the VMA found */
15448feae131SDavid Howells 		if (start == vma->vm_start && end == vma->vm_end)
15458feae131SDavid Howells 			goto erase_whole_vma;
15468feae131SDavid Howells 		if (start < vma->vm_start || end > vma->vm_end) {
15478feae131SDavid Howells 			kleave(" = -EINVAL [superset]");
15488feae131SDavid Howells 			return -EINVAL;
15498feae131SDavid Howells 		}
15508feae131SDavid Howells 		if (start & ~PAGE_MASK) {
15518feae131SDavid Howells 			kleave(" = -EINVAL [unaligned start]");
15528feae131SDavid Howells 			return -EINVAL;
15538feae131SDavid Howells 		}
15548feae131SDavid Howells 		if (end != vma->vm_end && end & ~PAGE_MASK) {
15558feae131SDavid Howells 			kleave(" = -EINVAL [unaligned split]");
15568feae131SDavid Howells 			return -EINVAL;
15578feae131SDavid Howells 		}
15588feae131SDavid Howells 		if (start != vma->vm_start && end != vma->vm_end) {
15598feae131SDavid Howells 			ret = split_vma(mm, vma, start, 1);
15608feae131SDavid Howells 			if (ret < 0) {
15618feae131SDavid Howells 				kleave(" = %d [split]", ret);
15628feae131SDavid Howells 				return ret;
15638feae131SDavid Howells 			}
15648feae131SDavid Howells 		}
15658feae131SDavid Howells 		return shrink_vma(mm, vma, start, end);
15668feae131SDavid Howells 	}
15671da177e4SLinus Torvalds 
15688feae131SDavid Howells erase_whole_vma:
15698feae131SDavid Howells 	delete_vma_from_mm(vma);
15708feae131SDavid Howells 	delete_vma(mm, vma);
15718feae131SDavid Howells 	kleave(" = 0");
15721da177e4SLinus Torvalds 	return 0;
15731da177e4SLinus Torvalds }
1574b5073173SPaul Mundt EXPORT_SYMBOL(do_munmap);
15751da177e4SLinus Torvalds 
1576*6a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
15773034097aSDavid Howells {
15783034097aSDavid Howells 	int ret;
15793034097aSDavid Howells 	struct mm_struct *mm = current->mm;
15803034097aSDavid Howells 
15813034097aSDavid Howells 	down_write(&mm->mmap_sem);
15823034097aSDavid Howells 	ret = do_munmap(mm, addr, len);
15833034097aSDavid Howells 	up_write(&mm->mmap_sem);
15843034097aSDavid Howells 	return ret;
15853034097aSDavid Howells }
15863034097aSDavid Howells 
15873034097aSDavid Howells /*
15888feae131SDavid Howells  * release all the mappings made in a process's VM space
15893034097aSDavid Howells  */
15901da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
15911da177e4SLinus Torvalds {
15928feae131SDavid Howells 	struct vm_area_struct *vma;
15931da177e4SLinus Torvalds 
15948feae131SDavid Howells 	if (!mm)
15958feae131SDavid Howells 		return;
15968feae131SDavid Howells 
15978feae131SDavid Howells 	kenter("");
15981da177e4SLinus Torvalds 
15991da177e4SLinus Torvalds 	mm->total_vm = 0;
16001da177e4SLinus Torvalds 
16018feae131SDavid Howells 	while ((vma = mm->mmap)) {
16028feae131SDavid Howells 		mm->mmap = vma->vm_next;
16038feae131SDavid Howells 		delete_vma_from_mm(vma);
16048feae131SDavid Howells 		delete_vma(mm, vma);
16051da177e4SLinus Torvalds 	}
16061da177e4SLinus Torvalds 
16078feae131SDavid Howells 	kleave("");
16081da177e4SLinus Torvalds }
16091da177e4SLinus Torvalds 
16101da177e4SLinus Torvalds unsigned long do_brk(unsigned long addr, unsigned long len)
16111da177e4SLinus Torvalds {
16121da177e4SLinus Torvalds 	return -ENOMEM;
16131da177e4SLinus Torvalds }
16141da177e4SLinus Torvalds 
16151da177e4SLinus Torvalds /*
16166fa5f80bSDavid Howells  * expand (or shrink) an existing mapping, potentially moving it at the same
16176fa5f80bSDavid Howells  * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
16181da177e4SLinus Torvalds  *
16196fa5f80bSDavid Howells  * under NOMMU conditions, we only permit changing a mapping's size, and only
16208feae131SDavid Howells  * as long as it stays within the region allocated by do_mmap_private() and the
16218feae131SDavid Howells  * block is not shareable
16221da177e4SLinus Torvalds  *
16236fa5f80bSDavid Howells  * MREMAP_FIXED is not supported under NOMMU conditions
16241da177e4SLinus Torvalds  */
16251da177e4SLinus Torvalds unsigned long do_mremap(unsigned long addr,
16261da177e4SLinus Torvalds 			unsigned long old_len, unsigned long new_len,
16271da177e4SLinus Torvalds 			unsigned long flags, unsigned long new_addr)
16281da177e4SLinus Torvalds {
16296fa5f80bSDavid Howells 	struct vm_area_struct *vma;
16301da177e4SLinus Torvalds 
16311da177e4SLinus Torvalds 	/* insanity checks first */
16328feae131SDavid Howells 	if (old_len == 0 || new_len == 0)
16331da177e4SLinus Torvalds 		return (unsigned long) -EINVAL;
16341da177e4SLinus Torvalds 
16358feae131SDavid Howells 	if (addr & ~PAGE_MASK)
16368feae131SDavid Howells 		return -EINVAL;
16378feae131SDavid Howells 
16381da177e4SLinus Torvalds 	if (flags & MREMAP_FIXED && new_addr != addr)
16391da177e4SLinus Torvalds 		return (unsigned long) -EINVAL;
16401da177e4SLinus Torvalds 
16418feae131SDavid Howells 	vma = find_vma_exact(current->mm, addr, old_len);
16426fa5f80bSDavid Howells 	if (!vma)
16431da177e4SLinus Torvalds 		return (unsigned long) -EINVAL;
16441da177e4SLinus Torvalds 
16456fa5f80bSDavid Howells 	if (vma->vm_end != vma->vm_start + old_len)
16461da177e4SLinus Torvalds 		return (unsigned long) -EFAULT;
16471da177e4SLinus Torvalds 
16486fa5f80bSDavid Howells 	if (vma->vm_flags & VM_MAYSHARE)
16491da177e4SLinus Torvalds 		return (unsigned long) -EPERM;
16501da177e4SLinus Torvalds 
16518feae131SDavid Howells 	if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
16521da177e4SLinus Torvalds 		return (unsigned long) -ENOMEM;
16531da177e4SLinus Torvalds 
16541da177e4SLinus Torvalds 	/* all checks complete - do it */
16556fa5f80bSDavid Howells 	vma->vm_end = vma->vm_start + new_len;
16566fa5f80bSDavid Howells 	return vma->vm_start;
16576fa5f80bSDavid Howells }
1658b5073173SPaul Mundt EXPORT_SYMBOL(do_mremap);
16596fa5f80bSDavid Howells 
1660*6a6160a7SHeiko Carstens SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
1661*6a6160a7SHeiko Carstens 		unsigned long, new_len, unsigned long, flags,
1662*6a6160a7SHeiko Carstens 		unsigned long, new_addr)
16636fa5f80bSDavid Howells {
16646fa5f80bSDavid Howells 	unsigned long ret;
16656fa5f80bSDavid Howells 
16666fa5f80bSDavid Howells 	down_write(&current->mm->mmap_sem);
16676fa5f80bSDavid Howells 	ret = do_mremap(addr, old_len, new_len, flags, new_addr);
16686fa5f80bSDavid Howells 	up_write(&current->mm->mmap_sem);
16696fa5f80bSDavid Howells 	return ret;
16701da177e4SLinus Torvalds }
16711da177e4SLinus Torvalds 
16726aab341eSLinus Torvalds struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
1673deceb6cdSHugh Dickins 			unsigned int foll_flags)
16741da177e4SLinus Torvalds {
16751da177e4SLinus Torvalds 	return NULL;
16761da177e4SLinus Torvalds }
16771da177e4SLinus Torvalds 
16781da177e4SLinus Torvalds int remap_pfn_range(struct vm_area_struct *vma, unsigned long from,
16791da177e4SLinus Torvalds 		unsigned long to, unsigned long size, pgprot_t prot)
16801da177e4SLinus Torvalds {
168166aa2b4bSGreg Ungerer 	vma->vm_start = vma->vm_pgoff << PAGE_SHIFT;
168266aa2b4bSGreg Ungerer 	return 0;
16831da177e4SLinus Torvalds }
168422c4af40SLuke Yang EXPORT_SYMBOL(remap_pfn_range);
16851da177e4SLinus Torvalds 
1686f905bc44SPaul Mundt int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1687f905bc44SPaul Mundt 			unsigned long pgoff)
1688f905bc44SPaul Mundt {
1689f905bc44SPaul Mundt 	unsigned int size = vma->vm_end - vma->vm_start;
1690f905bc44SPaul Mundt 
1691f905bc44SPaul Mundt 	if (!(vma->vm_flags & VM_USERMAP))
1692f905bc44SPaul Mundt 		return -EINVAL;
1693f905bc44SPaul Mundt 
1694f905bc44SPaul Mundt 	vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1695f905bc44SPaul Mundt 	vma->vm_end = vma->vm_start + size;
1696f905bc44SPaul Mundt 
1697f905bc44SPaul Mundt 	return 0;
1698f905bc44SPaul Mundt }
1699f905bc44SPaul Mundt EXPORT_SYMBOL(remap_vmalloc_range);
1700f905bc44SPaul Mundt 
17011da177e4SLinus Torvalds void swap_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
17021da177e4SLinus Torvalds {
17031da177e4SLinus Torvalds }
17041da177e4SLinus Torvalds 
17051da177e4SLinus Torvalds unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
17061da177e4SLinus Torvalds 	unsigned long len, unsigned long pgoff, unsigned long flags)
17071da177e4SLinus Torvalds {
17081da177e4SLinus Torvalds 	return -ENOMEM;
17091da177e4SLinus Torvalds }
17101da177e4SLinus Torvalds 
17111363c3cdSWolfgang Wander void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
17121da177e4SLinus Torvalds {
17131da177e4SLinus Torvalds }
17141da177e4SLinus Torvalds 
17151da177e4SLinus Torvalds void unmap_mapping_range(struct address_space *mapping,
17161da177e4SLinus Torvalds 			 loff_t const holebegin, loff_t const holelen,
17171da177e4SLinus Torvalds 			 int even_cows)
17181da177e4SLinus Torvalds {
17191da177e4SLinus Torvalds }
172022c4af40SLuke Yang EXPORT_SYMBOL(unmap_mapping_range);
17211da177e4SLinus Torvalds 
17221da177e4SLinus Torvalds /*
1723d56e03cdSDavid Howells  * ask for an unmapped area at which to create a mapping on a file
1724d56e03cdSDavid Howells  */
1725d56e03cdSDavid Howells unsigned long get_unmapped_area(struct file *file, unsigned long addr,
1726d56e03cdSDavid Howells 				unsigned long len, unsigned long pgoff,
1727d56e03cdSDavid Howells 				unsigned long flags)
1728d56e03cdSDavid Howells {
1729d56e03cdSDavid Howells 	unsigned long (*get_area)(struct file *, unsigned long, unsigned long,
1730d56e03cdSDavid Howells 				  unsigned long, unsigned long);
1731d56e03cdSDavid Howells 
1732d56e03cdSDavid Howells 	get_area = current->mm->get_unmapped_area;
1733d56e03cdSDavid Howells 	if (file && file->f_op && file->f_op->get_unmapped_area)
1734d56e03cdSDavid Howells 		get_area = file->f_op->get_unmapped_area;
1735d56e03cdSDavid Howells 
1736d56e03cdSDavid Howells 	if (!get_area)
1737d56e03cdSDavid Howells 		return -ENOSYS;
1738d56e03cdSDavid Howells 
1739d56e03cdSDavid Howells 	return get_area(file, addr, len, pgoff, flags);
1740d56e03cdSDavid Howells }
1741d56e03cdSDavid Howells EXPORT_SYMBOL(get_unmapped_area);
1742d56e03cdSDavid Howells 
1743d56e03cdSDavid Howells /*
17441da177e4SLinus Torvalds  * Check that a process has enough memory to allocate a new virtual
17451da177e4SLinus Torvalds  * mapping. 0 means there is enough memory for the allocation to
17461da177e4SLinus Torvalds  * succeed and -ENOMEM implies there is not.
17471da177e4SLinus Torvalds  *
17481da177e4SLinus Torvalds  * We currently support three overcommit policies, which are set via the
17491da177e4SLinus Torvalds  * vm.overcommit_memory sysctl.  See Documentation/vm/overcommit-accounting
17501da177e4SLinus Torvalds  *
17511da177e4SLinus Torvalds  * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
17521da177e4SLinus Torvalds  * Additional code 2002 Jul 20 by Robert Love.
17531da177e4SLinus Torvalds  *
17541da177e4SLinus Torvalds  * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
17551da177e4SLinus Torvalds  *
17561da177e4SLinus Torvalds  * Note this is a helper function intended to be used by LSMs which
17571da177e4SLinus Torvalds  * wish to use this logic.
17581da177e4SLinus Torvalds  */
175934b4e4aaSAlan Cox int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
17601da177e4SLinus Torvalds {
17611da177e4SLinus Torvalds 	unsigned long free, allowed;
17621da177e4SLinus Torvalds 
17631da177e4SLinus Torvalds 	vm_acct_memory(pages);
17641da177e4SLinus Torvalds 
17651da177e4SLinus Torvalds 	/*
17661da177e4SLinus Torvalds 	 * Sometimes we want to use more memory than we have
17671da177e4SLinus Torvalds 	 */
17681da177e4SLinus Torvalds 	if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
17691da177e4SLinus Torvalds 		return 0;
17701da177e4SLinus Torvalds 
17711da177e4SLinus Torvalds 	if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
17721da177e4SLinus Torvalds 		unsigned long n;
17731da177e4SLinus Torvalds 
1774347ce434SChristoph Lameter 		free = global_page_state(NR_FILE_PAGES);
17751da177e4SLinus Torvalds 		free += nr_swap_pages;
17761da177e4SLinus Torvalds 
17771da177e4SLinus Torvalds 		/*
17781da177e4SLinus Torvalds 		 * Any slabs which are created with the
17791da177e4SLinus Torvalds 		 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
17801da177e4SLinus Torvalds 		 * which are reclaimable, under pressure.  The dentry
17811da177e4SLinus Torvalds 		 * cache and most inode caches should fall into this
17821da177e4SLinus Torvalds 		 */
1783972d1a7bSChristoph Lameter 		free += global_page_state(NR_SLAB_RECLAIMABLE);
17841da177e4SLinus Torvalds 
17851da177e4SLinus Torvalds 		/*
17861da177e4SLinus Torvalds 		 * Leave the last 3% for root
17871da177e4SLinus Torvalds 		 */
17881da177e4SLinus Torvalds 		if (!cap_sys_admin)
17891da177e4SLinus Torvalds 			free -= free / 32;
17901da177e4SLinus Torvalds 
17911da177e4SLinus Torvalds 		if (free > pages)
17921da177e4SLinus Torvalds 			return 0;
17931da177e4SLinus Torvalds 
17941da177e4SLinus Torvalds 		/*
17951da177e4SLinus Torvalds 		 * nr_free_pages() is very expensive on large systems,
17961da177e4SLinus Torvalds 		 * only call if we're about to fail.
17971da177e4SLinus Torvalds 		 */
17981da177e4SLinus Torvalds 		n = nr_free_pages();
1799d5ddc79bSHideo AOKI 
1800d5ddc79bSHideo AOKI 		/*
1801d5ddc79bSHideo AOKI 		 * Leave reserved pages. The pages are not for anonymous pages.
1802d5ddc79bSHideo AOKI 		 */
1803d5ddc79bSHideo AOKI 		if (n <= totalreserve_pages)
1804d5ddc79bSHideo AOKI 			goto error;
1805d5ddc79bSHideo AOKI 		else
1806d5ddc79bSHideo AOKI 			n -= totalreserve_pages;
1807d5ddc79bSHideo AOKI 
1808d5ddc79bSHideo AOKI 		/*
1809d5ddc79bSHideo AOKI 		 * Leave the last 3% for root
1810d5ddc79bSHideo AOKI 		 */
18111da177e4SLinus Torvalds 		if (!cap_sys_admin)
18121da177e4SLinus Torvalds 			n -= n / 32;
18131da177e4SLinus Torvalds 		free += n;
18141da177e4SLinus Torvalds 
18151da177e4SLinus Torvalds 		if (free > pages)
18161da177e4SLinus Torvalds 			return 0;
1817d5ddc79bSHideo AOKI 
1818d5ddc79bSHideo AOKI 		goto error;
18191da177e4SLinus Torvalds 	}
18201da177e4SLinus Torvalds 
18211da177e4SLinus Torvalds 	allowed = totalram_pages * sysctl_overcommit_ratio / 100;
18221da177e4SLinus Torvalds 	/*
18231da177e4SLinus Torvalds 	 * Leave the last 3% for root
18241da177e4SLinus Torvalds 	 */
18251da177e4SLinus Torvalds 	if (!cap_sys_admin)
18261da177e4SLinus Torvalds 		allowed -= allowed / 32;
18271da177e4SLinus Torvalds 	allowed += total_swap_pages;
18281da177e4SLinus Torvalds 
18291da177e4SLinus Torvalds 	/* Don't let a single process grow too big:
18301da177e4SLinus Torvalds 	   leave 3% of the size of this process for other processes */
1831731572d3SAlan Cox 	if (mm)
1832731572d3SAlan Cox 		allowed -= mm->total_vm / 32;
18331da177e4SLinus Torvalds 
18342f60f8d3SSimon Derr 	/*
18352f60f8d3SSimon Derr 	 * cast `allowed' as a signed long because vm_committed_space
18362f60f8d3SSimon Derr 	 * sometimes has a negative value
18372f60f8d3SSimon Derr 	 */
183880119ef5SAlan Cox 	if (atomic_long_read(&vm_committed_space) < (long)allowed)
18391da177e4SLinus Torvalds 		return 0;
1840d5ddc79bSHideo AOKI error:
18411da177e4SLinus Torvalds 	vm_unacct_memory(pages);
18421da177e4SLinus Torvalds 
18431da177e4SLinus Torvalds 	return -ENOMEM;
18441da177e4SLinus Torvalds }
18451da177e4SLinus Torvalds 
18461da177e4SLinus Torvalds int in_gate_area_no_task(unsigned long addr)
18471da177e4SLinus Torvalds {
18481da177e4SLinus Torvalds 	return 0;
18491da177e4SLinus Torvalds }
1850b0e15190SDavid Howells 
1851d0217ac0SNick Piggin int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1852b0e15190SDavid Howells {
1853b0e15190SDavid Howells 	BUG();
1854d0217ac0SNick Piggin 	return 0;
1855b0e15190SDavid Howells }
1856b5073173SPaul Mundt EXPORT_SYMBOL(filemap_fault);
18570ec76a11SDavid Howells 
18580ec76a11SDavid Howells /*
18590ec76a11SDavid Howells  * Access another process' address space.
18600ec76a11SDavid Howells  * - source/target buffer must be kernel space
18610ec76a11SDavid Howells  */
18620ec76a11SDavid Howells int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
18630ec76a11SDavid Howells {
18640ec76a11SDavid Howells 	struct vm_area_struct *vma;
18650ec76a11SDavid Howells 	struct mm_struct *mm;
18660ec76a11SDavid Howells 
18670ec76a11SDavid Howells 	if (addr + len < addr)
18680ec76a11SDavid Howells 		return 0;
18690ec76a11SDavid Howells 
18700ec76a11SDavid Howells 	mm = get_task_mm(tsk);
18710ec76a11SDavid Howells 	if (!mm)
18720ec76a11SDavid Howells 		return 0;
18730ec76a11SDavid Howells 
18740ec76a11SDavid Howells 	down_read(&mm->mmap_sem);
18750ec76a11SDavid Howells 
18760ec76a11SDavid Howells 	/* the access must start within one of the target process's mappings */
18770159b141SDavid Howells 	vma = find_vma(mm, addr);
18780159b141SDavid Howells 	if (vma) {
18790ec76a11SDavid Howells 		/* don't overrun this mapping */
18800ec76a11SDavid Howells 		if (addr + len >= vma->vm_end)
18810ec76a11SDavid Howells 			len = vma->vm_end - addr;
18820ec76a11SDavid Howells 
18830ec76a11SDavid Howells 		/* only read or write mappings where it is permitted */
1884d00c7b99SDavid Howells 		if (write && vma->vm_flags & VM_MAYWRITE)
18850ec76a11SDavid Howells 			len -= copy_to_user((void *) addr, buf, len);
1886d00c7b99SDavid Howells 		else if (!write && vma->vm_flags & VM_MAYREAD)
18870ec76a11SDavid Howells 			len -= copy_from_user(buf, (void *) addr, len);
18880ec76a11SDavid Howells 		else
18890ec76a11SDavid Howells 			len = 0;
18900ec76a11SDavid Howells 	} else {
18910ec76a11SDavid Howells 		len = 0;
18920ec76a11SDavid Howells 	}
18930ec76a11SDavid Howells 
18940ec76a11SDavid Howells 	up_read(&mm->mmap_sem);
18950ec76a11SDavid Howells 	mmput(mm);
18960ec76a11SDavid Howells 	return len;
18970ec76a11SDavid Howells }
1898