xref: /linux/mm/nommu.c (revision 33e5d76979cf01e3834814fe0aea569d1d602c1a)
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>
13eb6434d9SPaul Mundt  *  Copyright (c) 2007-2009 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 
72*33e5d769SDavid Howells atomic_long_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 
397eb6434d9SPaul Mundt void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
398eb6434d9SPaul Mundt {
399eb6434d9SPaul Mundt 	BUG();
400eb6434d9SPaul Mundt 	return NULL;
401eb6434d9SPaul Mundt }
402eb6434d9SPaul Mundt EXPORT_SYMBOL(vm_map_ram);
403eb6434d9SPaul Mundt 
404eb6434d9SPaul Mundt void vm_unmap_ram(const void *mem, unsigned int count)
405eb6434d9SPaul Mundt {
406eb6434d9SPaul Mundt 	BUG();
407eb6434d9SPaul Mundt }
408eb6434d9SPaul Mundt EXPORT_SYMBOL(vm_unmap_ram);
409eb6434d9SPaul Mundt 
410eb6434d9SPaul Mundt void vm_unmap_aliases(void)
411eb6434d9SPaul Mundt {
412eb6434d9SPaul Mundt }
413eb6434d9SPaul Mundt EXPORT_SYMBOL_GPL(vm_unmap_aliases);
414eb6434d9SPaul Mundt 
4151da177e4SLinus Torvalds /*
4161eeb66a1SChristoph Hellwig  * Implement a stub for vmalloc_sync_all() if the architecture chose not to
4171eeb66a1SChristoph Hellwig  * have one.
4181eeb66a1SChristoph Hellwig  */
4191eeb66a1SChristoph Hellwig void  __attribute__((weak)) vmalloc_sync_all(void)
4201eeb66a1SChristoph Hellwig {
4211eeb66a1SChristoph Hellwig }
4221eeb66a1SChristoph Hellwig 
423b5073173SPaul Mundt int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
424b5073173SPaul Mundt 		   struct page *page)
425b5073173SPaul Mundt {
426b5073173SPaul Mundt 	return -EINVAL;
427b5073173SPaul Mundt }
428b5073173SPaul Mundt EXPORT_SYMBOL(vm_insert_page);
429b5073173SPaul Mundt 
4301eeb66a1SChristoph Hellwig /*
4311da177e4SLinus Torvalds  *  sys_brk() for the most part doesn't need the global kernel
4321da177e4SLinus Torvalds  *  lock, except when an application is doing something nasty
4331da177e4SLinus Torvalds  *  like trying to un-brk an area that has already been mapped
4341da177e4SLinus Torvalds  *  to a regular file.  in this case, the unmapping will need
4351da177e4SLinus Torvalds  *  to invoke file system routines that need the global lock.
4361da177e4SLinus Torvalds  */
4376a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk)
4381da177e4SLinus Torvalds {
4391da177e4SLinus Torvalds 	struct mm_struct *mm = current->mm;
4401da177e4SLinus Torvalds 
4411da177e4SLinus Torvalds 	if (brk < mm->start_brk || brk > mm->context.end_brk)
4421da177e4SLinus Torvalds 		return mm->brk;
4431da177e4SLinus Torvalds 
4441da177e4SLinus Torvalds 	if (mm->brk == brk)
4451da177e4SLinus Torvalds 		return mm->brk;
4461da177e4SLinus Torvalds 
4471da177e4SLinus Torvalds 	/*
4481da177e4SLinus Torvalds 	 * Always allow shrinking brk
4491da177e4SLinus Torvalds 	 */
4501da177e4SLinus Torvalds 	if (brk <= mm->brk) {
4511da177e4SLinus Torvalds 		mm->brk = brk;
4521da177e4SLinus Torvalds 		return brk;
4531da177e4SLinus Torvalds 	}
4541da177e4SLinus Torvalds 
4551da177e4SLinus Torvalds 	/*
4561da177e4SLinus Torvalds 	 * Ok, looks good - let it rip.
4571da177e4SLinus Torvalds 	 */
4581da177e4SLinus Torvalds 	return mm->brk = brk;
4591da177e4SLinus Torvalds }
4601da177e4SLinus Torvalds 
4618feae131SDavid Howells /*
4628feae131SDavid Howells  * initialise the VMA and region record slabs
4638feae131SDavid Howells  */
4648feae131SDavid Howells void __init mmap_init(void)
4651da177e4SLinus Torvalds {
466*33e5d769SDavid Howells 	vm_region_jar = KMEM_CACHE(vm_region, SLAB_PANIC);
4678feae131SDavid Howells }
4681da177e4SLinus Torvalds 
4698feae131SDavid Howells /*
4708feae131SDavid Howells  * validate the region tree
4718feae131SDavid Howells  * - the caller must hold the region lock
4728feae131SDavid Howells  */
4738feae131SDavid Howells #ifdef CONFIG_DEBUG_NOMMU_REGIONS
4748feae131SDavid Howells static noinline void validate_nommu_regions(void)
4758feae131SDavid Howells {
4768feae131SDavid Howells 	struct vm_region *region, *last;
4778feae131SDavid Howells 	struct rb_node *p, *lastp;
4781da177e4SLinus Torvalds 
4798feae131SDavid Howells 	lastp = rb_first(&nommu_region_tree);
4808feae131SDavid Howells 	if (!lastp)
4818feae131SDavid Howells 		return;
4828feae131SDavid Howells 
4838feae131SDavid Howells 	last = rb_entry(lastp, struct vm_region, vm_rb);
484*33e5d769SDavid Howells 	BUG_ON(unlikely(last->vm_end <= last->vm_start));
485*33e5d769SDavid Howells 	BUG_ON(unlikely(last->vm_top < last->vm_end));
4868feae131SDavid Howells 
4878feae131SDavid Howells 	while ((p = rb_next(lastp))) {
4888feae131SDavid Howells 		region = rb_entry(p, struct vm_region, vm_rb);
4898feae131SDavid Howells 		last = rb_entry(lastp, struct vm_region, vm_rb);
4908feae131SDavid Howells 
491*33e5d769SDavid Howells 		BUG_ON(unlikely(region->vm_end <= region->vm_start));
492*33e5d769SDavid Howells 		BUG_ON(unlikely(region->vm_top < region->vm_end));
493*33e5d769SDavid Howells 		BUG_ON(unlikely(region->vm_start < last->vm_top));
4948feae131SDavid Howells 
4958feae131SDavid Howells 		lastp = p;
4961da177e4SLinus Torvalds 	}
4971da177e4SLinus Torvalds }
4988feae131SDavid Howells #else
499*33e5d769SDavid Howells static void validate_nommu_regions(void)
500*33e5d769SDavid Howells {
501*33e5d769SDavid Howells }
5028feae131SDavid Howells #endif
5038feae131SDavid Howells 
5048feae131SDavid Howells /*
5058feae131SDavid Howells  * add a region into the global tree
5068feae131SDavid Howells  */
5078feae131SDavid Howells static void add_nommu_region(struct vm_region *region)
5088feae131SDavid Howells {
5098feae131SDavid Howells 	struct vm_region *pregion;
5108feae131SDavid Howells 	struct rb_node **p, *parent;
5118feae131SDavid Howells 
5128feae131SDavid Howells 	validate_nommu_regions();
5138feae131SDavid Howells 
5148feae131SDavid Howells 	BUG_ON(region->vm_start & ~PAGE_MASK);
5158feae131SDavid Howells 
5168feae131SDavid Howells 	parent = NULL;
5178feae131SDavid Howells 	p = &nommu_region_tree.rb_node;
5188feae131SDavid Howells 	while (*p) {
5198feae131SDavid Howells 		parent = *p;
5208feae131SDavid Howells 		pregion = rb_entry(parent, struct vm_region, vm_rb);
5218feae131SDavid Howells 		if (region->vm_start < pregion->vm_start)
5228feae131SDavid Howells 			p = &(*p)->rb_left;
5238feae131SDavid Howells 		else if (region->vm_start > pregion->vm_start)
5248feae131SDavid Howells 			p = &(*p)->rb_right;
5258feae131SDavid Howells 		else if (pregion == region)
5268feae131SDavid Howells 			return;
5278feae131SDavid Howells 		else
5288feae131SDavid Howells 			BUG();
5298feae131SDavid Howells 	}
5308feae131SDavid Howells 
5318feae131SDavid Howells 	rb_link_node(&region->vm_rb, parent, p);
5328feae131SDavid Howells 	rb_insert_color(&region->vm_rb, &nommu_region_tree);
5338feae131SDavid Howells 
5348feae131SDavid Howells 	validate_nommu_regions();
5358feae131SDavid Howells }
5368feae131SDavid Howells 
5378feae131SDavid Howells /*
5388feae131SDavid Howells  * delete a region from the global tree
5398feae131SDavid Howells  */
5408feae131SDavid Howells static void delete_nommu_region(struct vm_region *region)
5418feae131SDavid Howells {
5428feae131SDavid Howells 	BUG_ON(!nommu_region_tree.rb_node);
5438feae131SDavid Howells 
5448feae131SDavid Howells 	validate_nommu_regions();
5458feae131SDavid Howells 	rb_erase(&region->vm_rb, &nommu_region_tree);
5468feae131SDavid Howells 	validate_nommu_regions();
5478feae131SDavid Howells }
5488feae131SDavid Howells 
5498feae131SDavid Howells /*
5508feae131SDavid Howells  * free a contiguous series of pages
5518feae131SDavid Howells  */
5528feae131SDavid Howells static void free_page_series(unsigned long from, unsigned long to)
5538feae131SDavid Howells {
5548feae131SDavid Howells 	for (; from < to; from += PAGE_SIZE) {
5558feae131SDavid Howells 		struct page *page = virt_to_page(from);
5568feae131SDavid Howells 
5578feae131SDavid Howells 		kdebug("- free %lx", from);
558*33e5d769SDavid Howells 		atomic_long_dec(&mmap_pages_allocated);
5598feae131SDavid Howells 		if (page_count(page) != 1)
560*33e5d769SDavid Howells 			kdebug("free page %p: refcount not one: %d",
561*33e5d769SDavid Howells 			       page, page_count(page));
5628feae131SDavid Howells 		put_page(page);
5638feae131SDavid Howells 	}
5648feae131SDavid Howells }
5658feae131SDavid Howells 
5668feae131SDavid Howells /*
5678feae131SDavid Howells  * release a reference to a region
568*33e5d769SDavid Howells  * - the caller must hold the region semaphore for writing, which this releases
569dd8632a1SPaul Mundt  * - the region may not have been added to the tree yet, in which case vm_top
5708feae131SDavid Howells  *   will equal vm_start
5718feae131SDavid Howells  */
5728feae131SDavid Howells static void __put_nommu_region(struct vm_region *region)
5738feae131SDavid Howells 	__releases(nommu_region_sem)
5748feae131SDavid Howells {
5758feae131SDavid Howells 	kenter("%p{%d}", region, atomic_read(&region->vm_usage));
5768feae131SDavid Howells 
5778feae131SDavid Howells 	BUG_ON(!nommu_region_tree.rb_node);
5788feae131SDavid Howells 
5798feae131SDavid Howells 	if (atomic_dec_and_test(&region->vm_usage)) {
580dd8632a1SPaul Mundt 		if (region->vm_top > region->vm_start)
5818feae131SDavid Howells 			delete_nommu_region(region);
5828feae131SDavid Howells 		up_write(&nommu_region_sem);
5838feae131SDavid Howells 
5848feae131SDavid Howells 		if (region->vm_file)
5858feae131SDavid Howells 			fput(region->vm_file);
5868feae131SDavid Howells 
5878feae131SDavid Howells 		/* IO memory and memory shared directly out of the pagecache
5888feae131SDavid Howells 		 * from ramfs/tmpfs mustn't be released here */
5898feae131SDavid Howells 		if (region->vm_flags & VM_MAPPED_COPY) {
5908feae131SDavid Howells 			kdebug("free series");
591dd8632a1SPaul Mundt 			free_page_series(region->vm_start, region->vm_top);
5928feae131SDavid Howells 		}
5938feae131SDavid Howells 		kmem_cache_free(vm_region_jar, region);
5948feae131SDavid Howells 	} else {
5958feae131SDavid Howells 		up_write(&nommu_region_sem);
5968feae131SDavid Howells 	}
5978feae131SDavid Howells }
5988feae131SDavid Howells 
5998feae131SDavid Howells /*
6008feae131SDavid Howells  * release a reference to a region
6018feae131SDavid Howells  */
6028feae131SDavid Howells static void put_nommu_region(struct vm_region *region)
6038feae131SDavid Howells {
6048feae131SDavid Howells 	down_write(&nommu_region_sem);
6058feae131SDavid Howells 	__put_nommu_region(region);
6068feae131SDavid Howells }
6071da177e4SLinus Torvalds 
6083034097aSDavid Howells /*
6093034097aSDavid Howells  * add a VMA into a process's mm_struct in the appropriate place in the list
6108feae131SDavid Howells  * and tree and add to the address space's page tree also if not an anonymous
6118feae131SDavid Howells  * page
6123034097aSDavid Howells  * - should be called with mm->mmap_sem held writelocked
6133034097aSDavid Howells  */
6148feae131SDavid Howells static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
6153034097aSDavid Howells {
6168feae131SDavid Howells 	struct vm_area_struct *pvma, **pp;
6178feae131SDavid Howells 	struct address_space *mapping;
6188feae131SDavid Howells 	struct rb_node **p, *parent;
6193034097aSDavid Howells 
6208feae131SDavid Howells 	kenter(",%p", vma);
6218feae131SDavid Howells 
6228feae131SDavid Howells 	BUG_ON(!vma->vm_region);
6238feae131SDavid Howells 
6248feae131SDavid Howells 	mm->map_count++;
6258feae131SDavid Howells 	vma->vm_mm = mm;
6268feae131SDavid Howells 
6278feae131SDavid Howells 	/* add the VMA to the mapping */
6288feae131SDavid Howells 	if (vma->vm_file) {
6298feae131SDavid Howells 		mapping = vma->vm_file->f_mapping;
6308feae131SDavid Howells 
6318feae131SDavid Howells 		flush_dcache_mmap_lock(mapping);
6328feae131SDavid Howells 		vma_prio_tree_insert(vma, &mapping->i_mmap);
6338feae131SDavid Howells 		flush_dcache_mmap_unlock(mapping);
6348feae131SDavid Howells 	}
6358feae131SDavid Howells 
6368feae131SDavid Howells 	/* add the VMA to the tree */
6378feae131SDavid Howells 	parent = NULL;
6388feae131SDavid Howells 	p = &mm->mm_rb.rb_node;
6398feae131SDavid Howells 	while (*p) {
6408feae131SDavid Howells 		parent = *p;
6418feae131SDavid Howells 		pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
6428feae131SDavid Howells 
6438feae131SDavid Howells 		/* sort by: start addr, end addr, VMA struct addr in that order
6448feae131SDavid Howells 		 * (the latter is necessary as we may get identical VMAs) */
6458feae131SDavid Howells 		if (vma->vm_start < pvma->vm_start)
6468feae131SDavid Howells 			p = &(*p)->rb_left;
6478feae131SDavid Howells 		else if (vma->vm_start > pvma->vm_start)
6488feae131SDavid Howells 			p = &(*p)->rb_right;
6498feae131SDavid Howells 		else if (vma->vm_end < pvma->vm_end)
6508feae131SDavid Howells 			p = &(*p)->rb_left;
6518feae131SDavid Howells 		else if (vma->vm_end > pvma->vm_end)
6528feae131SDavid Howells 			p = &(*p)->rb_right;
6538feae131SDavid Howells 		else if (vma < pvma)
6548feae131SDavid Howells 			p = &(*p)->rb_left;
6558feae131SDavid Howells 		else if (vma > pvma)
6568feae131SDavid Howells 			p = &(*p)->rb_right;
6578feae131SDavid Howells 		else
6588feae131SDavid Howells 			BUG();
6598feae131SDavid Howells 	}
6608feae131SDavid Howells 
6618feae131SDavid Howells 	rb_link_node(&vma->vm_rb, parent, p);
6628feae131SDavid Howells 	rb_insert_color(&vma->vm_rb, &mm->mm_rb);
6638feae131SDavid Howells 
6648feae131SDavid Howells 	/* add VMA to the VMA list also */
6658feae131SDavid Howells 	for (pp = &mm->mmap; (pvma = *pp); pp = &(*pp)->vm_next) {
6668feae131SDavid Howells 		if (pvma->vm_start > vma->vm_start)
6673034097aSDavid Howells 			break;
6688feae131SDavid Howells 		if (pvma->vm_start < vma->vm_start)
6698feae131SDavid Howells 			continue;
6708feae131SDavid Howells 		if (pvma->vm_end < vma->vm_end)
6718feae131SDavid Howells 			break;
6728feae131SDavid Howells 	}
6733034097aSDavid Howells 
6748feae131SDavid Howells 	vma->vm_next = *pp;
6758feae131SDavid Howells 	*pp = vma;
6768feae131SDavid Howells }
6778feae131SDavid Howells 
6788feae131SDavid Howells /*
6798feae131SDavid Howells  * delete a VMA from its owning mm_struct and address space
6808feae131SDavid Howells  */
6818feae131SDavid Howells static void delete_vma_from_mm(struct vm_area_struct *vma)
6828feae131SDavid Howells {
6838feae131SDavid Howells 	struct vm_area_struct **pp;
6848feae131SDavid Howells 	struct address_space *mapping;
6858feae131SDavid Howells 	struct mm_struct *mm = vma->vm_mm;
6868feae131SDavid Howells 
6878feae131SDavid Howells 	kenter("%p", vma);
6888feae131SDavid Howells 
6898feae131SDavid Howells 	mm->map_count--;
6908feae131SDavid Howells 	if (mm->mmap_cache == vma)
6918feae131SDavid Howells 		mm->mmap_cache = NULL;
6928feae131SDavid Howells 
6938feae131SDavid Howells 	/* remove the VMA from the mapping */
6948feae131SDavid Howells 	if (vma->vm_file) {
6958feae131SDavid Howells 		mapping = vma->vm_file->f_mapping;
6968feae131SDavid Howells 
6978feae131SDavid Howells 		flush_dcache_mmap_lock(mapping);
6988feae131SDavid Howells 		vma_prio_tree_remove(vma, &mapping->i_mmap);
6998feae131SDavid Howells 		flush_dcache_mmap_unlock(mapping);
7008feae131SDavid Howells 	}
7018feae131SDavid Howells 
7028feae131SDavid Howells 	/* remove from the MM's tree and list */
7038feae131SDavid Howells 	rb_erase(&vma->vm_rb, &mm->mm_rb);
7048feae131SDavid Howells 	for (pp = &mm->mmap; *pp; pp = &(*pp)->vm_next) {
7058feae131SDavid Howells 		if (*pp == vma) {
7068feae131SDavid Howells 			*pp = vma->vm_next;
7078feae131SDavid Howells 			break;
7088feae131SDavid Howells 		}
7098feae131SDavid Howells 	}
7108feae131SDavid Howells 
7118feae131SDavid Howells 	vma->vm_mm = NULL;
7128feae131SDavid Howells }
7138feae131SDavid Howells 
7148feae131SDavid Howells /*
7158feae131SDavid Howells  * destroy a VMA record
7168feae131SDavid Howells  */
7178feae131SDavid Howells static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
7188feae131SDavid Howells {
7198feae131SDavid Howells 	kenter("%p", vma);
7208feae131SDavid Howells 	if (vma->vm_ops && vma->vm_ops->close)
7218feae131SDavid Howells 		vma->vm_ops->close(vma);
7228feae131SDavid Howells 	if (vma->vm_file) {
7238feae131SDavid Howells 		fput(vma->vm_file);
7248feae131SDavid Howells 		if (vma->vm_flags & VM_EXECUTABLE)
7258feae131SDavid Howells 			removed_exe_file_vma(mm);
7268feae131SDavid Howells 	}
7278feae131SDavid Howells 	put_nommu_region(vma->vm_region);
7288feae131SDavid Howells 	kmem_cache_free(vm_area_cachep, vma);
7293034097aSDavid Howells }
7303034097aSDavid Howells 
7313034097aSDavid Howells /*
7323034097aSDavid Howells  * look up the first VMA in which addr resides, NULL if none
7333034097aSDavid Howells  * - should be called with mm->mmap_sem at least held readlocked
7343034097aSDavid Howells  */
7353034097aSDavid Howells struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
7363034097aSDavid Howells {
7378feae131SDavid Howells 	struct vm_area_struct *vma;
7388feae131SDavid Howells 	struct rb_node *n = mm->mm_rb.rb_node;
7393034097aSDavid Howells 
7408feae131SDavid Howells 	/* check the cache first */
7418feae131SDavid Howells 	vma = mm->mmap_cache;
7428feae131SDavid Howells 	if (vma && vma->vm_start <= addr && vma->vm_end > addr)
7438feae131SDavid Howells 		return vma;
7448feae131SDavid Howells 
7458feae131SDavid Howells 	/* trawl the tree (there may be multiple mappings in which addr
7468feae131SDavid Howells 	 * resides) */
7478feae131SDavid Howells 	for (n = rb_first(&mm->mm_rb); n; n = rb_next(n)) {
7488feae131SDavid Howells 		vma = rb_entry(n, struct vm_area_struct, vm_rb);
7498feae131SDavid Howells 		if (vma->vm_start > addr)
7508feae131SDavid Howells 			return NULL;
7518feae131SDavid Howells 		if (vma->vm_end > addr) {
7528feae131SDavid Howells 			mm->mmap_cache = vma;
7538feae131SDavid Howells 			return vma;
7543034097aSDavid Howells 		}
7558feae131SDavid Howells 	}
7563034097aSDavid Howells 
7573034097aSDavid Howells 	return NULL;
7583034097aSDavid Howells }
7593034097aSDavid Howells EXPORT_SYMBOL(find_vma);
7603034097aSDavid Howells 
7613034097aSDavid Howells /*
762930e652aSDavid Howells  * find a VMA
763930e652aSDavid Howells  * - we don't extend stack VMAs under NOMMU conditions
764930e652aSDavid Howells  */
765930e652aSDavid Howells struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
766930e652aSDavid Howells {
767930e652aSDavid Howells 	return find_vma(mm, addr);
768930e652aSDavid Howells }
769930e652aSDavid Howells 
7708feae131SDavid Howells /*
7718feae131SDavid Howells  * expand a stack to a given address
7728feae131SDavid Howells  * - not supported under NOMMU conditions
7738feae131SDavid Howells  */
77457c8f63eSGreg Ungerer int expand_stack(struct vm_area_struct *vma, unsigned long address)
77557c8f63eSGreg Ungerer {
77657c8f63eSGreg Ungerer 	return -ENOMEM;
77757c8f63eSGreg Ungerer }
77857c8f63eSGreg Ungerer 
779930e652aSDavid Howells /*
7806fa5f80bSDavid Howells  * look up the first VMA exactly that exactly matches addr
7816fa5f80bSDavid Howells  * - should be called with mm->mmap_sem at least held readlocked
7826fa5f80bSDavid Howells  */
7838feae131SDavid Howells static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
7848feae131SDavid Howells 					     unsigned long addr,
7858feae131SDavid Howells 					     unsigned long len)
7861da177e4SLinus Torvalds {
7871da177e4SLinus Torvalds 	struct vm_area_struct *vma;
7888feae131SDavid Howells 	struct rb_node *n = mm->mm_rb.rb_node;
7898feae131SDavid Howells 	unsigned long end = addr + len;
7901da177e4SLinus Torvalds 
7918feae131SDavid Howells 	/* check the cache first */
7928feae131SDavid Howells 	vma = mm->mmap_cache;
7938feae131SDavid Howells 	if (vma && vma->vm_start == addr && vma->vm_end == end)
7941da177e4SLinus Torvalds 		return vma;
7958feae131SDavid Howells 
7968feae131SDavid Howells 	/* trawl the tree (there may be multiple mappings in which addr
7978feae131SDavid Howells 	 * resides) */
7988feae131SDavid Howells 	for (n = rb_first(&mm->mm_rb); n; n = rb_next(n)) {
7998feae131SDavid Howells 		vma = rb_entry(n, struct vm_area_struct, vm_rb);
8008feae131SDavid Howells 		if (vma->vm_start < addr)
8018feae131SDavid Howells 			continue;
8028feae131SDavid Howells 		if (vma->vm_start > addr)
8038feae131SDavid Howells 			return NULL;
8048feae131SDavid Howells 		if (vma->vm_end == end) {
8058feae131SDavid Howells 			mm->mmap_cache = vma;
8068feae131SDavid Howells 			return vma;
8078feae131SDavid Howells 		}
8081da177e4SLinus Torvalds 	}
8091da177e4SLinus Torvalds 
8101da177e4SLinus Torvalds 	return NULL;
8111da177e4SLinus Torvalds }
8121da177e4SLinus Torvalds 
8133034097aSDavid Howells /*
8141da177e4SLinus Torvalds  * determine whether a mapping should be permitted and, if so, what sort of
8151da177e4SLinus Torvalds  * mapping we're capable of supporting
8161da177e4SLinus Torvalds  */
8171da177e4SLinus Torvalds static int validate_mmap_request(struct file *file,
8181da177e4SLinus Torvalds 				 unsigned long addr,
8191da177e4SLinus Torvalds 				 unsigned long len,
8201da177e4SLinus Torvalds 				 unsigned long prot,
8211da177e4SLinus Torvalds 				 unsigned long flags,
8221da177e4SLinus Torvalds 				 unsigned long pgoff,
8231da177e4SLinus Torvalds 				 unsigned long *_capabilities)
8241da177e4SLinus Torvalds {
8258feae131SDavid Howells 	unsigned long capabilities, rlen;
8261da177e4SLinus Torvalds 	unsigned long reqprot = prot;
8271da177e4SLinus Torvalds 	int ret;
8281da177e4SLinus Torvalds 
8291da177e4SLinus Torvalds 	/* do the simple checks first */
8301da177e4SLinus Torvalds 	if (flags & MAP_FIXED || addr) {
8311da177e4SLinus Torvalds 		printk(KERN_DEBUG
8321da177e4SLinus Torvalds 		       "%d: Can't do fixed-address/overlay mmap of RAM\n",
8331da177e4SLinus Torvalds 		       current->pid);
8341da177e4SLinus Torvalds 		return -EINVAL;
8351da177e4SLinus Torvalds 	}
8361da177e4SLinus Torvalds 
8371da177e4SLinus Torvalds 	if ((flags & MAP_TYPE) != MAP_PRIVATE &&
8381da177e4SLinus Torvalds 	    (flags & MAP_TYPE) != MAP_SHARED)
8391da177e4SLinus Torvalds 		return -EINVAL;
8401da177e4SLinus Torvalds 
841f81cff0dSMike Frysinger 	if (!len)
8421da177e4SLinus Torvalds 		return -EINVAL;
8431da177e4SLinus Torvalds 
844f81cff0dSMike Frysinger 	/* Careful about overflows.. */
8458feae131SDavid Howells 	rlen = PAGE_ALIGN(len);
8468feae131SDavid Howells 	if (!rlen || rlen > TASK_SIZE)
847f81cff0dSMike Frysinger 		return -ENOMEM;
848f81cff0dSMike Frysinger 
8491da177e4SLinus Torvalds 	/* offset overflow? */
8508feae131SDavid Howells 	if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
851f81cff0dSMike Frysinger 		return -EOVERFLOW;
8521da177e4SLinus Torvalds 
8531da177e4SLinus Torvalds 	if (file) {
8541da177e4SLinus Torvalds 		/* validate file mapping requests */
8551da177e4SLinus Torvalds 		struct address_space *mapping;
8561da177e4SLinus Torvalds 
8571da177e4SLinus Torvalds 		/* files must support mmap */
8581da177e4SLinus Torvalds 		if (!file->f_op || !file->f_op->mmap)
8591da177e4SLinus Torvalds 			return -ENODEV;
8601da177e4SLinus Torvalds 
8611da177e4SLinus Torvalds 		/* work out if what we've got could possibly be shared
8621da177e4SLinus Torvalds 		 * - we support chardevs that provide their own "memory"
8631da177e4SLinus Torvalds 		 * - we support files/blockdevs that are memory backed
8641da177e4SLinus Torvalds 		 */
8651da177e4SLinus Torvalds 		mapping = file->f_mapping;
8661da177e4SLinus Torvalds 		if (!mapping)
867e9536ae7SJosef Sipek 			mapping = file->f_path.dentry->d_inode->i_mapping;
8681da177e4SLinus Torvalds 
8691da177e4SLinus Torvalds 		capabilities = 0;
8701da177e4SLinus Torvalds 		if (mapping && mapping->backing_dev_info)
8711da177e4SLinus Torvalds 			capabilities = mapping->backing_dev_info->capabilities;
8721da177e4SLinus Torvalds 
8731da177e4SLinus Torvalds 		if (!capabilities) {
8741da177e4SLinus Torvalds 			/* no explicit capabilities set, so assume some
8751da177e4SLinus Torvalds 			 * defaults */
876e9536ae7SJosef Sipek 			switch (file->f_path.dentry->d_inode->i_mode & S_IFMT) {
8771da177e4SLinus Torvalds 			case S_IFREG:
8781da177e4SLinus Torvalds 			case S_IFBLK:
8791da177e4SLinus Torvalds 				capabilities = BDI_CAP_MAP_COPY;
8801da177e4SLinus Torvalds 				break;
8811da177e4SLinus Torvalds 
8821da177e4SLinus Torvalds 			case S_IFCHR:
8831da177e4SLinus Torvalds 				capabilities =
8841da177e4SLinus Torvalds 					BDI_CAP_MAP_DIRECT |
8851da177e4SLinus Torvalds 					BDI_CAP_READ_MAP |
8861da177e4SLinus Torvalds 					BDI_CAP_WRITE_MAP;
8871da177e4SLinus Torvalds 				break;
8881da177e4SLinus Torvalds 
8891da177e4SLinus Torvalds 			default:
8901da177e4SLinus Torvalds 				return -EINVAL;
8911da177e4SLinus Torvalds 			}
8921da177e4SLinus Torvalds 		}
8931da177e4SLinus Torvalds 
8941da177e4SLinus Torvalds 		/* eliminate any capabilities that we can't support on this
8951da177e4SLinus Torvalds 		 * device */
8961da177e4SLinus Torvalds 		if (!file->f_op->get_unmapped_area)
8971da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_DIRECT;
8981da177e4SLinus Torvalds 		if (!file->f_op->read)
8991da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_COPY;
9001da177e4SLinus Torvalds 
9011da177e4SLinus Torvalds 		if (flags & MAP_SHARED) {
9021da177e4SLinus Torvalds 			/* do checks for writing, appending and locking */
9031da177e4SLinus Torvalds 			if ((prot & PROT_WRITE) &&
9041da177e4SLinus Torvalds 			    !(file->f_mode & FMODE_WRITE))
9051da177e4SLinus Torvalds 				return -EACCES;
9061da177e4SLinus Torvalds 
907e9536ae7SJosef Sipek 			if (IS_APPEND(file->f_path.dentry->d_inode) &&
9081da177e4SLinus Torvalds 			    (file->f_mode & FMODE_WRITE))
9091da177e4SLinus Torvalds 				return -EACCES;
9101da177e4SLinus Torvalds 
911e9536ae7SJosef Sipek 			if (locks_verify_locked(file->f_path.dentry->d_inode))
9121da177e4SLinus Torvalds 				return -EAGAIN;
9131da177e4SLinus Torvalds 
9141da177e4SLinus Torvalds 			if (!(capabilities & BDI_CAP_MAP_DIRECT))
9151da177e4SLinus Torvalds 				return -ENODEV;
9161da177e4SLinus Torvalds 
9171da177e4SLinus Torvalds 			if (((prot & PROT_READ)  && !(capabilities & BDI_CAP_READ_MAP))  ||
9181da177e4SLinus Torvalds 			    ((prot & PROT_WRITE) && !(capabilities & BDI_CAP_WRITE_MAP)) ||
9191da177e4SLinus Torvalds 			    ((prot & PROT_EXEC)  && !(capabilities & BDI_CAP_EXEC_MAP))
9201da177e4SLinus Torvalds 			    ) {
9211da177e4SLinus Torvalds 				printk("MAP_SHARED not completely supported on !MMU\n");
9221da177e4SLinus Torvalds 				return -EINVAL;
9231da177e4SLinus Torvalds 			}
9241da177e4SLinus Torvalds 
9251da177e4SLinus Torvalds 			/* we mustn't privatise shared mappings */
9261da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_COPY;
9271da177e4SLinus Torvalds 		}
9281da177e4SLinus Torvalds 		else {
9291da177e4SLinus Torvalds 			/* we're going to read the file into private memory we
9301da177e4SLinus Torvalds 			 * allocate */
9311da177e4SLinus Torvalds 			if (!(capabilities & BDI_CAP_MAP_COPY))
9321da177e4SLinus Torvalds 				return -ENODEV;
9331da177e4SLinus Torvalds 
9341da177e4SLinus Torvalds 			/* we don't permit a private writable mapping to be
9351da177e4SLinus Torvalds 			 * shared with the backing device */
9361da177e4SLinus Torvalds 			if (prot & PROT_WRITE)
9371da177e4SLinus Torvalds 				capabilities &= ~BDI_CAP_MAP_DIRECT;
9381da177e4SLinus Torvalds 		}
9391da177e4SLinus Torvalds 
9401da177e4SLinus Torvalds 		/* handle executable mappings and implied executable
9411da177e4SLinus Torvalds 		 * mappings */
942e9536ae7SJosef Sipek 		if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
9431da177e4SLinus Torvalds 			if (prot & PROT_EXEC)
9441da177e4SLinus Torvalds 				return -EPERM;
9451da177e4SLinus Torvalds 		}
9461da177e4SLinus Torvalds 		else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
9471da177e4SLinus Torvalds 			/* handle implication of PROT_EXEC by PROT_READ */
9481da177e4SLinus Torvalds 			if (current->personality & READ_IMPLIES_EXEC) {
9491da177e4SLinus Torvalds 				if (capabilities & BDI_CAP_EXEC_MAP)
9501da177e4SLinus Torvalds 					prot |= PROT_EXEC;
9511da177e4SLinus Torvalds 			}
9521da177e4SLinus Torvalds 		}
9531da177e4SLinus Torvalds 		else if ((prot & PROT_READ) &&
9541da177e4SLinus Torvalds 			 (prot & PROT_EXEC) &&
9551da177e4SLinus Torvalds 			 !(capabilities & BDI_CAP_EXEC_MAP)
9561da177e4SLinus Torvalds 			 ) {
9571da177e4SLinus Torvalds 			/* backing file is not executable, try to copy */
9581da177e4SLinus Torvalds 			capabilities &= ~BDI_CAP_MAP_DIRECT;
9591da177e4SLinus Torvalds 		}
9601da177e4SLinus Torvalds 	}
9611da177e4SLinus Torvalds 	else {
9621da177e4SLinus Torvalds 		/* anonymous mappings are always memory backed and can be
9631da177e4SLinus Torvalds 		 * privately mapped
9641da177e4SLinus Torvalds 		 */
9651da177e4SLinus Torvalds 		capabilities = BDI_CAP_MAP_COPY;
9661da177e4SLinus Torvalds 
9671da177e4SLinus Torvalds 		/* handle PROT_EXEC implication by PROT_READ */
9681da177e4SLinus Torvalds 		if ((prot & PROT_READ) &&
9691da177e4SLinus Torvalds 		    (current->personality & READ_IMPLIES_EXEC))
9701da177e4SLinus Torvalds 			prot |= PROT_EXEC;
9711da177e4SLinus Torvalds 	}
9721da177e4SLinus Torvalds 
9731da177e4SLinus Torvalds 	/* allow the security API to have its say */
974ed032189SEric Paris 	ret = security_file_mmap(file, reqprot, prot, flags, addr, 0);
9751da177e4SLinus Torvalds 	if (ret < 0)
9761da177e4SLinus Torvalds 		return ret;
9771da177e4SLinus Torvalds 
9781da177e4SLinus Torvalds 	/* looks okay */
9791da177e4SLinus Torvalds 	*_capabilities = capabilities;
9801da177e4SLinus Torvalds 	return 0;
9811da177e4SLinus Torvalds }
9821da177e4SLinus Torvalds 
9831da177e4SLinus Torvalds /*
9841da177e4SLinus Torvalds  * we've determined that we can make the mapping, now translate what we
9851da177e4SLinus Torvalds  * now know into VMA flags
9861da177e4SLinus Torvalds  */
9871da177e4SLinus Torvalds static unsigned long determine_vm_flags(struct file *file,
9881da177e4SLinus Torvalds 					unsigned long prot,
9891da177e4SLinus Torvalds 					unsigned long flags,
9901da177e4SLinus Torvalds 					unsigned long capabilities)
9911da177e4SLinus Torvalds {
9921da177e4SLinus Torvalds 	unsigned long vm_flags;
9931da177e4SLinus Torvalds 
9941da177e4SLinus Torvalds 	vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
9951da177e4SLinus Torvalds 	vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
9961da177e4SLinus Torvalds 	/* vm_flags |= mm->def_flags; */
9971da177e4SLinus Torvalds 
9981da177e4SLinus Torvalds 	if (!(capabilities & BDI_CAP_MAP_DIRECT)) {
9991da177e4SLinus Torvalds 		/* attempt to share read-only copies of mapped file chunks */
10001da177e4SLinus Torvalds 		if (file && !(prot & PROT_WRITE))
10011da177e4SLinus Torvalds 			vm_flags |= VM_MAYSHARE;
10021da177e4SLinus Torvalds 	}
10031da177e4SLinus Torvalds 	else {
10041da177e4SLinus Torvalds 		/* overlay a shareable mapping on the backing device or inode
10051da177e4SLinus Torvalds 		 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
10061da177e4SLinus Torvalds 		 * romfs/cramfs */
10071da177e4SLinus Torvalds 		if (flags & MAP_SHARED)
10081da177e4SLinus Torvalds 			vm_flags |= VM_MAYSHARE | VM_SHARED;
10091da177e4SLinus Torvalds 		else if ((((vm_flags & capabilities) ^ vm_flags) & BDI_CAP_VMFLAGS) == 0)
10101da177e4SLinus Torvalds 			vm_flags |= VM_MAYSHARE;
10111da177e4SLinus Torvalds 	}
10121da177e4SLinus Torvalds 
10131da177e4SLinus Torvalds 	/* refuse to let anyone share private mappings with this process if
10141da177e4SLinus Torvalds 	 * it's being traced - otherwise breakpoints set in it may interfere
10151da177e4SLinus Torvalds 	 * with another untraced process
10161da177e4SLinus Torvalds 	 */
1017fa8e26ccSRoland McGrath 	if ((flags & MAP_PRIVATE) && tracehook_expect_breakpoints(current))
10181da177e4SLinus Torvalds 		vm_flags &= ~VM_MAYSHARE;
10191da177e4SLinus Torvalds 
10201da177e4SLinus Torvalds 	return vm_flags;
10211da177e4SLinus Torvalds }
10221da177e4SLinus Torvalds 
10231da177e4SLinus Torvalds /*
10248feae131SDavid Howells  * set up a shared mapping on a file (the driver or filesystem provides and
10258feae131SDavid Howells  * pins the storage)
10261da177e4SLinus Torvalds  */
10278feae131SDavid Howells static int do_mmap_shared_file(struct vm_area_struct *vma)
10281da177e4SLinus Torvalds {
10291da177e4SLinus Torvalds 	int ret;
10301da177e4SLinus Torvalds 
10311da177e4SLinus Torvalds 	ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
1032dd8632a1SPaul Mundt 	if (ret == 0) {
1033dd8632a1SPaul Mundt 		vma->vm_region->vm_top = vma->vm_region->vm_end;
1034dd8632a1SPaul Mundt 		return ret;
1035dd8632a1SPaul Mundt 	}
10361da177e4SLinus Torvalds 	if (ret != -ENOSYS)
10371da177e4SLinus Torvalds 		return ret;
10381da177e4SLinus Torvalds 
10391da177e4SLinus Torvalds 	/* getting an ENOSYS error indicates that direct mmap isn't
10401da177e4SLinus Torvalds 	 * possible (as opposed to tried but failed) so we'll fall
10411da177e4SLinus Torvalds 	 * through to making a private copy of the data and mapping
10421da177e4SLinus Torvalds 	 * that if we can */
10431da177e4SLinus Torvalds 	return -ENODEV;
10441da177e4SLinus Torvalds }
10451da177e4SLinus Torvalds 
10461da177e4SLinus Torvalds /*
10471da177e4SLinus Torvalds  * set up a private mapping or an anonymous shared mapping
10481da177e4SLinus Torvalds  */
10498feae131SDavid Howells static int do_mmap_private(struct vm_area_struct *vma,
10508feae131SDavid Howells 			   struct vm_region *region,
10518feae131SDavid Howells 			   unsigned long len)
10521da177e4SLinus Torvalds {
10538feae131SDavid Howells 	struct page *pages;
10548feae131SDavid Howells 	unsigned long total, point, n, rlen;
10551da177e4SLinus Torvalds 	void *base;
10568feae131SDavid Howells 	int ret, order;
10571da177e4SLinus Torvalds 
10581da177e4SLinus Torvalds 	/* invoke the file's mapping function so that it can keep track of
10591da177e4SLinus Torvalds 	 * shared mappings on devices or memory
10601da177e4SLinus Torvalds 	 * - VM_MAYSHARE will be set if it may attempt to share
10611da177e4SLinus Torvalds 	 */
10621da177e4SLinus Torvalds 	if (vma->vm_file) {
10631da177e4SLinus Torvalds 		ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
1064dd8632a1SPaul Mundt 		if (ret == 0) {
10651da177e4SLinus Torvalds 			/* shouldn't return success if we're not sharing */
1066dd8632a1SPaul Mundt 			BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1067dd8632a1SPaul Mundt 			vma->vm_region->vm_top = vma->vm_region->vm_end;
1068dd8632a1SPaul Mundt 			return ret;
10691da177e4SLinus Torvalds 		}
1070dd8632a1SPaul Mundt 		if (ret != -ENOSYS)
1071dd8632a1SPaul Mundt 			return ret;
10721da177e4SLinus Torvalds 
10731da177e4SLinus Torvalds 		/* getting an ENOSYS error indicates that direct mmap isn't
10741da177e4SLinus Torvalds 		 * possible (as opposed to tried but failed) so we'll try to
10751da177e4SLinus Torvalds 		 * make a private copy of the data and map that instead */
10761da177e4SLinus Torvalds 	}
10771da177e4SLinus Torvalds 
10788feae131SDavid Howells 	rlen = PAGE_ALIGN(len);
10798feae131SDavid Howells 
10801da177e4SLinus Torvalds 	/* allocate some memory to hold the mapping
10811da177e4SLinus Torvalds 	 * - note that this may not return a page-aligned address if the object
10821da177e4SLinus Torvalds 	 *   we're allocating is smaller than a page
10831da177e4SLinus Torvalds 	 */
10848feae131SDavid Howells 	order = get_order(rlen);
10858feae131SDavid Howells 	kdebug("alloc order %d for %lx", order, len);
10868feae131SDavid Howells 
10878feae131SDavid Howells 	pages = alloc_pages(GFP_KERNEL, order);
10888feae131SDavid Howells 	if (!pages)
10891da177e4SLinus Torvalds 		goto enomem;
10901da177e4SLinus Torvalds 
10918feae131SDavid Howells 	total = 1 << order;
1092*33e5d769SDavid Howells 	atomic_long_add(total, &mmap_pages_allocated);
10931da177e4SLinus Torvalds 
10948feae131SDavid Howells 	point = rlen >> PAGE_SHIFT;
1095dd8632a1SPaul Mundt 
1096dd8632a1SPaul Mundt 	/* we allocated a power-of-2 sized page set, so we may want to trim off
1097dd8632a1SPaul Mundt 	 * the excess */
1098dd8632a1SPaul Mundt 	if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages) {
10998feae131SDavid Howells 		while (total > point) {
11008feae131SDavid Howells 			order = ilog2(total - point);
11018feae131SDavid Howells 			n = 1 << order;
11028feae131SDavid Howells 			kdebug("shave %lu/%lu @%lu", n, total - point, total);
1103*33e5d769SDavid Howells 			atomic_long_sub(n, &mmap_pages_allocated);
11048feae131SDavid Howells 			total -= n;
11058feae131SDavid Howells 			set_page_refcounted(pages + total);
11068feae131SDavid Howells 			__free_pages(pages + total, order);
11078feae131SDavid Howells 		}
1108dd8632a1SPaul Mundt 	}
11098feae131SDavid Howells 
11108feae131SDavid Howells 	for (point = 1; point < total; point++)
11118feae131SDavid Howells 		set_page_refcounted(&pages[point]);
11128feae131SDavid Howells 
11138feae131SDavid Howells 	base = page_address(pages);
11148feae131SDavid Howells 	region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
11158feae131SDavid Howells 	region->vm_start = (unsigned long) base;
11168feae131SDavid Howells 	region->vm_end   = region->vm_start + rlen;
1117dd8632a1SPaul Mundt 	region->vm_top   = region->vm_start + (total << PAGE_SHIFT);
11188feae131SDavid Howells 
11198feae131SDavid Howells 	vma->vm_start = region->vm_start;
11208feae131SDavid Howells 	vma->vm_end   = region->vm_start + len;
11211da177e4SLinus Torvalds 
11221da177e4SLinus Torvalds 	if (vma->vm_file) {
11231da177e4SLinus Torvalds 		/* read the contents of a file into the copy */
11241da177e4SLinus Torvalds 		mm_segment_t old_fs;
11251da177e4SLinus Torvalds 		loff_t fpos;
11261da177e4SLinus Torvalds 
11271da177e4SLinus Torvalds 		fpos = vma->vm_pgoff;
11281da177e4SLinus Torvalds 		fpos <<= PAGE_SHIFT;
11291da177e4SLinus Torvalds 
11301da177e4SLinus Torvalds 		old_fs = get_fs();
11311da177e4SLinus Torvalds 		set_fs(KERNEL_DS);
11328feae131SDavid Howells 		ret = vma->vm_file->f_op->read(vma->vm_file, base, rlen, &fpos);
11331da177e4SLinus Torvalds 		set_fs(old_fs);
11341da177e4SLinus Torvalds 
11351da177e4SLinus Torvalds 		if (ret < 0)
11361da177e4SLinus Torvalds 			goto error_free;
11371da177e4SLinus Torvalds 
11381da177e4SLinus Torvalds 		/* clear the last little bit */
11398feae131SDavid Howells 		if (ret < rlen)
11408feae131SDavid Howells 			memset(base + ret, 0, rlen - ret);
11411da177e4SLinus Torvalds 
11421da177e4SLinus Torvalds 	} else {
11431da177e4SLinus Torvalds 		/* if it's an anonymous mapping, then just clear it */
11448feae131SDavid Howells 		memset(base, 0, rlen);
11451da177e4SLinus Torvalds 	}
11461da177e4SLinus Torvalds 
11471da177e4SLinus Torvalds 	return 0;
11481da177e4SLinus Torvalds 
11491da177e4SLinus Torvalds error_free:
11508feae131SDavid Howells 	free_page_series(region->vm_start, region->vm_end);
11518feae131SDavid Howells 	region->vm_start = vma->vm_start = 0;
11528feae131SDavid Howells 	region->vm_end   = vma->vm_end = 0;
1153dd8632a1SPaul Mundt 	region->vm_top   = 0;
11541da177e4SLinus Torvalds 	return ret;
11551da177e4SLinus Torvalds 
11561da177e4SLinus Torvalds enomem:
115705ae6fa3SGreg Ungerer 	printk("Allocation of length %lu from process %d (%s) failed\n",
115805ae6fa3SGreg Ungerer 	       len, current->pid, current->comm);
11591da177e4SLinus Torvalds 	show_free_areas();
11601da177e4SLinus Torvalds 	return -ENOMEM;
11611da177e4SLinus Torvalds }
11621da177e4SLinus Torvalds 
11631da177e4SLinus Torvalds /*
11641da177e4SLinus Torvalds  * handle mapping creation for uClinux
11651da177e4SLinus Torvalds  */
11661da177e4SLinus Torvalds unsigned long do_mmap_pgoff(struct file *file,
11671da177e4SLinus Torvalds 			    unsigned long addr,
11681da177e4SLinus Torvalds 			    unsigned long len,
11691da177e4SLinus Torvalds 			    unsigned long prot,
11701da177e4SLinus Torvalds 			    unsigned long flags,
11711da177e4SLinus Torvalds 			    unsigned long pgoff)
11721da177e4SLinus Torvalds {
11738feae131SDavid Howells 	struct vm_area_struct *vma;
11748feae131SDavid Howells 	struct vm_region *region;
11751da177e4SLinus Torvalds 	struct rb_node *rb;
11768feae131SDavid Howells 	unsigned long capabilities, vm_flags, result;
11771da177e4SLinus Torvalds 	int ret;
11781da177e4SLinus Torvalds 
11798feae131SDavid Howells 	kenter(",%lx,%lx,%lx,%lx,%lx", addr, len, prot, flags, pgoff);
11808feae131SDavid Howells 
11817cd94146SEric Paris 	if (!(flags & MAP_FIXED))
11827cd94146SEric Paris 		addr = round_hint_to_min(addr);
11837cd94146SEric Paris 
11841da177e4SLinus Torvalds 	/* decide whether we should attempt the mapping, and if so what sort of
11851da177e4SLinus Torvalds 	 * mapping */
11861da177e4SLinus Torvalds 	ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
11871da177e4SLinus Torvalds 				    &capabilities);
11888feae131SDavid Howells 	if (ret < 0) {
11898feae131SDavid Howells 		kleave(" = %d [val]", ret);
11901da177e4SLinus Torvalds 		return ret;
11918feae131SDavid Howells 	}
11921da177e4SLinus Torvalds 
11931da177e4SLinus Torvalds 	/* we've determined that we can make the mapping, now translate what we
11941da177e4SLinus Torvalds 	 * now know into VMA flags */
11951da177e4SLinus Torvalds 	vm_flags = determine_vm_flags(file, prot, flags, capabilities);
11961da177e4SLinus Torvalds 
11978feae131SDavid Howells 	/* we're going to need to record the mapping */
11988feae131SDavid Howells 	region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
11998feae131SDavid Howells 	if (!region)
12008feae131SDavid Howells 		goto error_getting_region;
12011da177e4SLinus Torvalds 
12028feae131SDavid Howells 	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
12038feae131SDavid Howells 	if (!vma)
12048feae131SDavid Howells 		goto error_getting_vma;
12051da177e4SLinus Torvalds 
12068feae131SDavid Howells 	atomic_set(&region->vm_usage, 1);
12078feae131SDavid Howells 	region->vm_flags = vm_flags;
12088feae131SDavid Howells 	region->vm_pgoff = pgoff;
12098feae131SDavid Howells 
12108feae131SDavid Howells 	INIT_LIST_HEAD(&vma->anon_vma_node);
12118feae131SDavid Howells 	vma->vm_flags = vm_flags;
12128feae131SDavid Howells 	vma->vm_pgoff = pgoff;
12138feae131SDavid Howells 
12148feae131SDavid Howells 	if (file) {
12158feae131SDavid Howells 		region->vm_file = file;
12168feae131SDavid Howells 		get_file(file);
12178feae131SDavid Howells 		vma->vm_file = file;
12188feae131SDavid Howells 		get_file(file);
12198feae131SDavid Howells 		if (vm_flags & VM_EXECUTABLE) {
12208feae131SDavid Howells 			added_exe_file_vma(current->mm);
12218feae131SDavid Howells 			vma->vm_mm = current->mm;
12228feae131SDavid Howells 		}
12238feae131SDavid Howells 	}
12248feae131SDavid Howells 
12258feae131SDavid Howells 	down_write(&nommu_region_sem);
12268feae131SDavid Howells 
12278feae131SDavid Howells 	/* if we want to share, we need to check for regions created by other
12281da177e4SLinus Torvalds 	 * mmap() calls that overlap with our proposed mapping
12298feae131SDavid Howells 	 * - we can only share with a superset match on most regular files
12301da177e4SLinus Torvalds 	 * - shared mappings on character devices and memory backed files are
12311da177e4SLinus Torvalds 	 *   permitted to overlap inexactly as far as we are concerned for in
12321da177e4SLinus Torvalds 	 *   these cases, sharing is handled in the driver or filesystem rather
12331da177e4SLinus Torvalds 	 *   than here
12341da177e4SLinus Torvalds 	 */
12351da177e4SLinus Torvalds 	if (vm_flags & VM_MAYSHARE) {
12368feae131SDavid Howells 		struct vm_region *pregion;
12378feae131SDavid Howells 		unsigned long pglen, rpglen, pgend, rpgend, start;
12381da177e4SLinus Torvalds 
12398feae131SDavid Howells 		pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
12408feae131SDavid Howells 		pgend = pgoff + pglen;
1241165b2392SDavid Howells 
12428feae131SDavid Howells 		for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
12438feae131SDavid Howells 			pregion = rb_entry(rb, struct vm_region, vm_rb);
12441da177e4SLinus Torvalds 
12458feae131SDavid Howells 			if (!(pregion->vm_flags & VM_MAYSHARE))
12461da177e4SLinus Torvalds 				continue;
12471da177e4SLinus Torvalds 
12481da177e4SLinus Torvalds 			/* search for overlapping mappings on the same file */
12498feae131SDavid Howells 			if (pregion->vm_file->f_path.dentry->d_inode !=
12508feae131SDavid Howells 			    file->f_path.dentry->d_inode)
12511da177e4SLinus Torvalds 				continue;
12521da177e4SLinus Torvalds 
12538feae131SDavid Howells 			if (pregion->vm_pgoff >= pgend)
12541da177e4SLinus Torvalds 				continue;
12551da177e4SLinus Torvalds 
12568feae131SDavid Howells 			rpglen = pregion->vm_end - pregion->vm_start;
12578feae131SDavid Howells 			rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
12588feae131SDavid Howells 			rpgend = pregion->vm_pgoff + rpglen;
12598feae131SDavid Howells 			if (pgoff >= rpgend)
12601da177e4SLinus Torvalds 				continue;
12611da177e4SLinus Torvalds 
12628feae131SDavid Howells 			/* handle inexactly overlapping matches between
12638feae131SDavid Howells 			 * mappings */
12648feae131SDavid Howells 			if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
12658feae131SDavid Howells 			    !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
12668feae131SDavid Howells 				/* new mapping is not a subset of the region */
12671da177e4SLinus Torvalds 				if (!(capabilities & BDI_CAP_MAP_DIRECT))
12681da177e4SLinus Torvalds 					goto sharing_violation;
12691da177e4SLinus Torvalds 				continue;
12701da177e4SLinus Torvalds 			}
12711da177e4SLinus Torvalds 
12728feae131SDavid Howells 			/* we've found a region we can share */
12738feae131SDavid Howells 			atomic_inc(&pregion->vm_usage);
12748feae131SDavid Howells 			vma->vm_region = pregion;
12758feae131SDavid Howells 			start = pregion->vm_start;
12768feae131SDavid Howells 			start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
12778feae131SDavid Howells 			vma->vm_start = start;
12788feae131SDavid Howells 			vma->vm_end = start + len;
12791da177e4SLinus Torvalds 
12808feae131SDavid Howells 			if (pregion->vm_flags & VM_MAPPED_COPY) {
12818feae131SDavid Howells 				kdebug("share copy");
12828feae131SDavid Howells 				vma->vm_flags |= VM_MAPPED_COPY;
12838feae131SDavid Howells 			} else {
12848feae131SDavid Howells 				kdebug("share mmap");
12858feae131SDavid Howells 				ret = do_mmap_shared_file(vma);
12868feae131SDavid Howells 				if (ret < 0) {
12878feae131SDavid Howells 					vma->vm_region = NULL;
12888feae131SDavid Howells 					vma->vm_start = 0;
12898feae131SDavid Howells 					vma->vm_end = 0;
12908feae131SDavid Howells 					atomic_dec(&pregion->vm_usage);
12918feae131SDavid Howells 					pregion = NULL;
12928feae131SDavid Howells 					goto error_just_free;
12931da177e4SLinus Torvalds 				}
12948feae131SDavid Howells 			}
12958feae131SDavid Howells 			fput(region->vm_file);
12968feae131SDavid Howells 			kmem_cache_free(vm_region_jar, region);
12978feae131SDavid Howells 			region = pregion;
12988feae131SDavid Howells 			result = start;
12998feae131SDavid Howells 			goto share;
13008feae131SDavid Howells 		}
13011da177e4SLinus Torvalds 
13021da177e4SLinus Torvalds 		/* obtain the address at which to make a shared mapping
13031da177e4SLinus Torvalds 		 * - this is the hook for quasi-memory character devices to
13041da177e4SLinus Torvalds 		 *   tell us the location of a shared mapping
13051da177e4SLinus Torvalds 		 */
13061da177e4SLinus Torvalds 		if (file && file->f_op->get_unmapped_area) {
13071da177e4SLinus Torvalds 			addr = file->f_op->get_unmapped_area(file, addr, len,
13081da177e4SLinus Torvalds 							     pgoff, flags);
13091da177e4SLinus Torvalds 			if (IS_ERR((void *) addr)) {
13101da177e4SLinus Torvalds 				ret = addr;
13111da177e4SLinus Torvalds 				if (ret != (unsigned long) -ENOSYS)
13128feae131SDavid Howells 					goto error_just_free;
13131da177e4SLinus Torvalds 
13141da177e4SLinus Torvalds 				/* the driver refused to tell us where to site
13151da177e4SLinus Torvalds 				 * the mapping so we'll have to attempt to copy
13161da177e4SLinus Torvalds 				 * it */
13171da177e4SLinus Torvalds 				ret = (unsigned long) -ENODEV;
13181da177e4SLinus Torvalds 				if (!(capabilities & BDI_CAP_MAP_COPY))
13198feae131SDavid Howells 					goto error_just_free;
13201da177e4SLinus Torvalds 
13211da177e4SLinus Torvalds 				capabilities &= ~BDI_CAP_MAP_DIRECT;
13228feae131SDavid Howells 			} else {
13238feae131SDavid Howells 				vma->vm_start = region->vm_start = addr;
13248feae131SDavid Howells 				vma->vm_end = region->vm_end = addr + len;
13251da177e4SLinus Torvalds 			}
13261da177e4SLinus Torvalds 		}
13271da177e4SLinus Torvalds 	}
13281da177e4SLinus Torvalds 
13298feae131SDavid Howells 	vma->vm_region = region;
13301da177e4SLinus Torvalds 
13311da177e4SLinus Torvalds 	/* set up the mapping */
13321da177e4SLinus Torvalds 	if (file && vma->vm_flags & VM_SHARED)
13338feae131SDavid Howells 		ret = do_mmap_shared_file(vma);
13341da177e4SLinus Torvalds 	else
13358feae131SDavid Howells 		ret = do_mmap_private(vma, region, len);
13361da177e4SLinus Torvalds 	if (ret < 0)
13378feae131SDavid Howells 		goto error_put_region;
13388feae131SDavid Howells 
13398feae131SDavid Howells 	add_nommu_region(region);
13401da177e4SLinus Torvalds 
13411da177e4SLinus Torvalds 	/* okay... we have a mapping; now we have to register it */
13428feae131SDavid Howells 	result = vma->vm_start;
13431da177e4SLinus Torvalds 
13441da177e4SLinus Torvalds 	current->mm->total_vm += len >> PAGE_SHIFT;
13451da177e4SLinus Torvalds 
13468feae131SDavid Howells share:
13478feae131SDavid Howells 	add_vma_to_mm(current->mm, vma);
13481da177e4SLinus Torvalds 
13498feae131SDavid Howells 	up_write(&nommu_region_sem);
13501da177e4SLinus Torvalds 
13511da177e4SLinus Torvalds 	if (prot & PROT_EXEC)
13528feae131SDavid Howells 		flush_icache_range(result, result + len);
13531da177e4SLinus Torvalds 
13548feae131SDavid Howells 	kleave(" = %lx", result);
13558feae131SDavid Howells 	return result;
13561da177e4SLinus Torvalds 
13578feae131SDavid Howells error_put_region:
13588feae131SDavid Howells 	__put_nommu_region(region);
13591da177e4SLinus Torvalds 	if (vma) {
1360925d1c40SMatt Helsley 		if (vma->vm_file) {
13611da177e4SLinus Torvalds 			fput(vma->vm_file);
1362925d1c40SMatt Helsley 			if (vma->vm_flags & VM_EXECUTABLE)
1363925d1c40SMatt Helsley 				removed_exe_file_vma(vma->vm_mm);
1364925d1c40SMatt Helsley 		}
13658feae131SDavid Howells 		kmem_cache_free(vm_area_cachep, vma);
13661da177e4SLinus Torvalds 	}
13678feae131SDavid Howells 	kleave(" = %d [pr]", ret);
13688feae131SDavid Howells 	return ret;
13698feae131SDavid Howells 
13708feae131SDavid Howells error_just_free:
13718feae131SDavid Howells 	up_write(&nommu_region_sem);
13728feae131SDavid Howells error:
13738feae131SDavid Howells 	fput(region->vm_file);
13748feae131SDavid Howells 	kmem_cache_free(vm_region_jar, region);
13758feae131SDavid Howells 	fput(vma->vm_file);
13768feae131SDavid Howells 	if (vma->vm_flags & VM_EXECUTABLE)
13778feae131SDavid Howells 		removed_exe_file_vma(vma->vm_mm);
13788feae131SDavid Howells 	kmem_cache_free(vm_area_cachep, vma);
13798feae131SDavid Howells 	kleave(" = %d", ret);
13801da177e4SLinus Torvalds 	return ret;
13811da177e4SLinus Torvalds 
13821da177e4SLinus Torvalds sharing_violation:
13838feae131SDavid Howells 	up_write(&nommu_region_sem);
13848feae131SDavid Howells 	printk(KERN_WARNING "Attempt to share mismatched mappings\n");
13858feae131SDavid Howells 	ret = -EINVAL;
13868feae131SDavid Howells 	goto error;
13871da177e4SLinus Torvalds 
13881da177e4SLinus Torvalds error_getting_vma:
13898feae131SDavid Howells 	kmem_cache_free(vm_region_jar, region);
13908feae131SDavid Howells 	printk(KERN_WARNING "Allocation of vma for %lu byte allocation"
13918feae131SDavid Howells 	       " from process %d failed\n",
13921da177e4SLinus Torvalds 	       len, current->pid);
13931da177e4SLinus Torvalds 	show_free_areas();
13941da177e4SLinus Torvalds 	return -ENOMEM;
13951da177e4SLinus Torvalds 
13968feae131SDavid Howells error_getting_region:
13978feae131SDavid Howells 	printk(KERN_WARNING "Allocation of vm region for %lu byte allocation"
13988feae131SDavid Howells 	       " from process %d failed\n",
13991da177e4SLinus Torvalds 	       len, current->pid);
14001da177e4SLinus Torvalds 	show_free_areas();
14011da177e4SLinus Torvalds 	return -ENOMEM;
14021da177e4SLinus Torvalds }
1403b5073173SPaul Mundt EXPORT_SYMBOL(do_mmap_pgoff);
14041da177e4SLinus Torvalds 
14051da177e4SLinus Torvalds /*
14068feae131SDavid Howells  * split a vma into two pieces at address 'addr', a new vma is allocated either
14078feae131SDavid Howells  * for the first part or the tail.
14081da177e4SLinus Torvalds  */
14098feae131SDavid Howells int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
14108feae131SDavid Howells 	      unsigned long addr, int new_below)
14111da177e4SLinus Torvalds {
14128feae131SDavid Howells 	struct vm_area_struct *new;
14138feae131SDavid Howells 	struct vm_region *region;
14148feae131SDavid Howells 	unsigned long npages;
14151da177e4SLinus Torvalds 
14168feae131SDavid Howells 	kenter("");
14171da177e4SLinus Torvalds 
14188feae131SDavid Howells 	/* we're only permitted to split anonymous regions that have a single
14198feae131SDavid Howells 	 * owner */
14208feae131SDavid Howells 	if (vma->vm_file ||
14218feae131SDavid Howells 	    atomic_read(&vma->vm_region->vm_usage) != 1)
14228feae131SDavid Howells 		return -ENOMEM;
14231da177e4SLinus Torvalds 
14248feae131SDavid Howells 	if (mm->map_count >= sysctl_max_map_count)
14258feae131SDavid Howells 		return -ENOMEM;
14261da177e4SLinus Torvalds 
14278feae131SDavid Howells 	region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
14288feae131SDavid Howells 	if (!region)
14298feae131SDavid Howells 		return -ENOMEM;
14308feae131SDavid Howells 
14318feae131SDavid Howells 	new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
14328feae131SDavid Howells 	if (!new) {
14338feae131SDavid Howells 		kmem_cache_free(vm_region_jar, region);
14348feae131SDavid Howells 		return -ENOMEM;
14351da177e4SLinus Torvalds 	}
14361da177e4SLinus Torvalds 
14378feae131SDavid Howells 	/* most fields are the same, copy all, and then fixup */
14388feae131SDavid Howells 	*new = *vma;
14398feae131SDavid Howells 	*region = *vma->vm_region;
14408feae131SDavid Howells 	new->vm_region = region;
14418feae131SDavid Howells 
14428feae131SDavid Howells 	npages = (addr - vma->vm_start) >> PAGE_SHIFT;
14438feae131SDavid Howells 
14448feae131SDavid Howells 	if (new_below) {
1445dd8632a1SPaul Mundt 		region->vm_top = region->vm_end = new->vm_end = addr;
14468feae131SDavid Howells 	} else {
14478feae131SDavid Howells 		region->vm_start = new->vm_start = addr;
14488feae131SDavid Howells 		region->vm_pgoff = new->vm_pgoff += npages;
14491da177e4SLinus Torvalds 	}
14508feae131SDavid Howells 
14518feae131SDavid Howells 	if (new->vm_ops && new->vm_ops->open)
14528feae131SDavid Howells 		new->vm_ops->open(new);
14538feae131SDavid Howells 
14548feae131SDavid Howells 	delete_vma_from_mm(vma);
14558feae131SDavid Howells 	down_write(&nommu_region_sem);
14568feae131SDavid Howells 	delete_nommu_region(vma->vm_region);
14578feae131SDavid Howells 	if (new_below) {
14588feae131SDavid Howells 		vma->vm_region->vm_start = vma->vm_start = addr;
14598feae131SDavid Howells 		vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
14608feae131SDavid Howells 	} else {
14618feae131SDavid Howells 		vma->vm_region->vm_end = vma->vm_end = addr;
1462dd8632a1SPaul Mundt 		vma->vm_region->vm_top = addr;
14638feae131SDavid Howells 	}
14648feae131SDavid Howells 	add_nommu_region(vma->vm_region);
14658feae131SDavid Howells 	add_nommu_region(new->vm_region);
14668feae131SDavid Howells 	up_write(&nommu_region_sem);
14678feae131SDavid Howells 	add_vma_to_mm(mm, vma);
14688feae131SDavid Howells 	add_vma_to_mm(mm, new);
14698feae131SDavid Howells 	return 0;
14708feae131SDavid Howells }
14718feae131SDavid Howells 
14728feae131SDavid Howells /*
14738feae131SDavid Howells  * shrink a VMA by removing the specified chunk from either the beginning or
14748feae131SDavid Howells  * the end
14758feae131SDavid Howells  */
14768feae131SDavid Howells static int shrink_vma(struct mm_struct *mm,
14778feae131SDavid Howells 		      struct vm_area_struct *vma,
14788feae131SDavid Howells 		      unsigned long from, unsigned long to)
14798feae131SDavid Howells {
14808feae131SDavid Howells 	struct vm_region *region;
14818feae131SDavid Howells 
14828feae131SDavid Howells 	kenter("");
14838feae131SDavid Howells 
14848feae131SDavid Howells 	/* adjust the VMA's pointers, which may reposition it in the MM's tree
14858feae131SDavid Howells 	 * and list */
14868feae131SDavid Howells 	delete_vma_from_mm(vma);
14878feae131SDavid Howells 	if (from > vma->vm_start)
14888feae131SDavid Howells 		vma->vm_end = from;
14898feae131SDavid Howells 	else
14908feae131SDavid Howells 		vma->vm_start = to;
14918feae131SDavid Howells 	add_vma_to_mm(mm, vma);
14928feae131SDavid Howells 
14938feae131SDavid Howells 	/* cut the backing region down to size */
14948feae131SDavid Howells 	region = vma->vm_region;
14958feae131SDavid Howells 	BUG_ON(atomic_read(&region->vm_usage) != 1);
14968feae131SDavid Howells 
14978feae131SDavid Howells 	down_write(&nommu_region_sem);
14988feae131SDavid Howells 	delete_nommu_region(region);
1499dd8632a1SPaul Mundt 	if (from > region->vm_start) {
1500dd8632a1SPaul Mundt 		to = region->vm_top;
1501dd8632a1SPaul Mundt 		region->vm_top = region->vm_end = from;
1502dd8632a1SPaul Mundt 	} else {
15038feae131SDavid Howells 		region->vm_start = to;
1504dd8632a1SPaul Mundt 	}
15058feae131SDavid Howells 	add_nommu_region(region);
15068feae131SDavid Howells 	up_write(&nommu_region_sem);
15078feae131SDavid Howells 
15088feae131SDavid Howells 	free_page_series(from, to);
15098feae131SDavid Howells 	return 0;
15101da177e4SLinus Torvalds }
15111da177e4SLinus Torvalds 
15123034097aSDavid Howells /*
15133034097aSDavid Howells  * release a mapping
15148feae131SDavid Howells  * - under NOMMU conditions the chunk to be unmapped must be backed by a single
15158feae131SDavid Howells  *   VMA, though it need not cover the whole VMA
15163034097aSDavid Howells  */
15178feae131SDavid Howells int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
15181da177e4SLinus Torvalds {
15198feae131SDavid Howells 	struct vm_area_struct *vma;
15208feae131SDavid Howells 	struct rb_node *rb;
15218feae131SDavid Howells 	unsigned long end = start + len;
15228feae131SDavid Howells 	int ret;
15231da177e4SLinus Torvalds 
15248feae131SDavid Howells 	kenter(",%lx,%zx", start, len);
15251da177e4SLinus Torvalds 
15268feae131SDavid Howells 	if (len == 0)
15271da177e4SLinus Torvalds 		return -EINVAL;
15281da177e4SLinus Torvalds 
15298feae131SDavid Howells 	/* find the first potentially overlapping VMA */
15308feae131SDavid Howells 	vma = find_vma(mm, start);
15318feae131SDavid Howells 	if (!vma) {
1532*33e5d769SDavid Howells 		static int limit = 0;
1533*33e5d769SDavid Howells 		if (limit < 5) {
15348feae131SDavid Howells 			printk(KERN_WARNING
1535*33e5d769SDavid Howells 			       "munmap of memory not mmapped by process %d"
1536*33e5d769SDavid Howells 			       " (%s): 0x%lx-0x%lx\n",
1537*33e5d769SDavid Howells 			       current->pid, current->comm,
1538*33e5d769SDavid Howells 			       start, start + len - 1);
1539*33e5d769SDavid Howells 			limit++;
1540*33e5d769SDavid Howells 		}
15418feae131SDavid Howells 		return -EINVAL;
15428feae131SDavid Howells 	}
15431da177e4SLinus Torvalds 
15448feae131SDavid Howells 	/* we're allowed to split an anonymous VMA but not a file-backed one */
15458feae131SDavid Howells 	if (vma->vm_file) {
15468feae131SDavid Howells 		do {
15478feae131SDavid Howells 			if (start > vma->vm_start) {
15488feae131SDavid Howells 				kleave(" = -EINVAL [miss]");
15498feae131SDavid Howells 				return -EINVAL;
15508feae131SDavid Howells 			}
15518feae131SDavid Howells 			if (end == vma->vm_end)
15528feae131SDavid Howells 				goto erase_whole_vma;
15538feae131SDavid Howells 			rb = rb_next(&vma->vm_rb);
15548feae131SDavid Howells 			vma = rb_entry(rb, struct vm_area_struct, vm_rb);
15558feae131SDavid Howells 		} while (rb);
15568feae131SDavid Howells 		kleave(" = -EINVAL [split file]");
15578feae131SDavid Howells 		return -EINVAL;
15588feae131SDavid Howells 	} else {
15598feae131SDavid Howells 		/* the chunk must be a subset of the VMA found */
15608feae131SDavid Howells 		if (start == vma->vm_start && end == vma->vm_end)
15618feae131SDavid Howells 			goto erase_whole_vma;
15628feae131SDavid Howells 		if (start < vma->vm_start || end > vma->vm_end) {
15638feae131SDavid Howells 			kleave(" = -EINVAL [superset]");
15648feae131SDavid Howells 			return -EINVAL;
15658feae131SDavid Howells 		}
15668feae131SDavid Howells 		if (start & ~PAGE_MASK) {
15678feae131SDavid Howells 			kleave(" = -EINVAL [unaligned start]");
15688feae131SDavid Howells 			return -EINVAL;
15698feae131SDavid Howells 		}
15708feae131SDavid Howells 		if (end != vma->vm_end && end & ~PAGE_MASK) {
15718feae131SDavid Howells 			kleave(" = -EINVAL [unaligned split]");
15728feae131SDavid Howells 			return -EINVAL;
15738feae131SDavid Howells 		}
15748feae131SDavid Howells 		if (start != vma->vm_start && end != vma->vm_end) {
15758feae131SDavid Howells 			ret = split_vma(mm, vma, start, 1);
15768feae131SDavid Howells 			if (ret < 0) {
15778feae131SDavid Howells 				kleave(" = %d [split]", ret);
15788feae131SDavid Howells 				return ret;
15798feae131SDavid Howells 			}
15808feae131SDavid Howells 		}
15818feae131SDavid Howells 		return shrink_vma(mm, vma, start, end);
15828feae131SDavid Howells 	}
15831da177e4SLinus Torvalds 
15848feae131SDavid Howells erase_whole_vma:
15858feae131SDavid Howells 	delete_vma_from_mm(vma);
15868feae131SDavid Howells 	delete_vma(mm, vma);
15878feae131SDavid Howells 	kleave(" = 0");
15881da177e4SLinus Torvalds 	return 0;
15891da177e4SLinus Torvalds }
1590b5073173SPaul Mundt EXPORT_SYMBOL(do_munmap);
15911da177e4SLinus Torvalds 
15926a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
15933034097aSDavid Howells {
15943034097aSDavid Howells 	int ret;
15953034097aSDavid Howells 	struct mm_struct *mm = current->mm;
15963034097aSDavid Howells 
15973034097aSDavid Howells 	down_write(&mm->mmap_sem);
15983034097aSDavid Howells 	ret = do_munmap(mm, addr, len);
15993034097aSDavid Howells 	up_write(&mm->mmap_sem);
16003034097aSDavid Howells 	return ret;
16013034097aSDavid Howells }
16023034097aSDavid Howells 
16033034097aSDavid Howells /*
16048feae131SDavid Howells  * release all the mappings made in a process's VM space
16053034097aSDavid Howells  */
16061da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm)
16071da177e4SLinus Torvalds {
16088feae131SDavid Howells 	struct vm_area_struct *vma;
16091da177e4SLinus Torvalds 
16108feae131SDavid Howells 	if (!mm)
16118feae131SDavid Howells 		return;
16128feae131SDavid Howells 
16138feae131SDavid Howells 	kenter("");
16141da177e4SLinus Torvalds 
16151da177e4SLinus Torvalds 	mm->total_vm = 0;
16161da177e4SLinus Torvalds 
16178feae131SDavid Howells 	while ((vma = mm->mmap)) {
16188feae131SDavid Howells 		mm->mmap = vma->vm_next;
16198feae131SDavid Howells 		delete_vma_from_mm(vma);
16208feae131SDavid Howells 		delete_vma(mm, vma);
16211da177e4SLinus Torvalds 	}
16221da177e4SLinus Torvalds 
16238feae131SDavid Howells 	kleave("");
16241da177e4SLinus Torvalds }
16251da177e4SLinus Torvalds 
16261da177e4SLinus Torvalds unsigned long do_brk(unsigned long addr, unsigned long len)
16271da177e4SLinus Torvalds {
16281da177e4SLinus Torvalds 	return -ENOMEM;
16291da177e4SLinus Torvalds }
16301da177e4SLinus Torvalds 
16311da177e4SLinus Torvalds /*
16326fa5f80bSDavid Howells  * expand (or shrink) an existing mapping, potentially moving it at the same
16336fa5f80bSDavid Howells  * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
16341da177e4SLinus Torvalds  *
16356fa5f80bSDavid Howells  * under NOMMU conditions, we only permit changing a mapping's size, and only
16368feae131SDavid Howells  * as long as it stays within the region allocated by do_mmap_private() and the
16378feae131SDavid Howells  * block is not shareable
16381da177e4SLinus Torvalds  *
16396fa5f80bSDavid Howells  * MREMAP_FIXED is not supported under NOMMU conditions
16401da177e4SLinus Torvalds  */
16411da177e4SLinus Torvalds unsigned long do_mremap(unsigned long addr,
16421da177e4SLinus Torvalds 			unsigned long old_len, unsigned long new_len,
16431da177e4SLinus Torvalds 			unsigned long flags, unsigned long new_addr)
16441da177e4SLinus Torvalds {
16456fa5f80bSDavid Howells 	struct vm_area_struct *vma;
16461da177e4SLinus Torvalds 
16471da177e4SLinus Torvalds 	/* insanity checks first */
16488feae131SDavid Howells 	if (old_len == 0 || new_len == 0)
16491da177e4SLinus Torvalds 		return (unsigned long) -EINVAL;
16501da177e4SLinus Torvalds 
16518feae131SDavid Howells 	if (addr & ~PAGE_MASK)
16528feae131SDavid Howells 		return -EINVAL;
16538feae131SDavid Howells 
16541da177e4SLinus Torvalds 	if (flags & MREMAP_FIXED && new_addr != addr)
16551da177e4SLinus Torvalds 		return (unsigned long) -EINVAL;
16561da177e4SLinus Torvalds 
16578feae131SDavid Howells 	vma = find_vma_exact(current->mm, addr, old_len);
16586fa5f80bSDavid Howells 	if (!vma)
16591da177e4SLinus Torvalds 		return (unsigned long) -EINVAL;
16601da177e4SLinus Torvalds 
16616fa5f80bSDavid Howells 	if (vma->vm_end != vma->vm_start + old_len)
16621da177e4SLinus Torvalds 		return (unsigned long) -EFAULT;
16631da177e4SLinus Torvalds 
16646fa5f80bSDavid Howells 	if (vma->vm_flags & VM_MAYSHARE)
16651da177e4SLinus Torvalds 		return (unsigned long) -EPERM;
16661da177e4SLinus Torvalds 
16678feae131SDavid Howells 	if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
16681da177e4SLinus Torvalds 		return (unsigned long) -ENOMEM;
16691da177e4SLinus Torvalds 
16701da177e4SLinus Torvalds 	/* all checks complete - do it */
16716fa5f80bSDavid Howells 	vma->vm_end = vma->vm_start + new_len;
16726fa5f80bSDavid Howells 	return vma->vm_start;
16736fa5f80bSDavid Howells }
1674b5073173SPaul Mundt EXPORT_SYMBOL(do_mremap);
16756fa5f80bSDavid Howells 
16766a6160a7SHeiko Carstens SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
16776a6160a7SHeiko Carstens 		unsigned long, new_len, unsigned long, flags,
16786a6160a7SHeiko Carstens 		unsigned long, new_addr)
16796fa5f80bSDavid Howells {
16806fa5f80bSDavid Howells 	unsigned long ret;
16816fa5f80bSDavid Howells 
16826fa5f80bSDavid Howells 	down_write(&current->mm->mmap_sem);
16836fa5f80bSDavid Howells 	ret = do_mremap(addr, old_len, new_len, flags, new_addr);
16846fa5f80bSDavid Howells 	up_write(&current->mm->mmap_sem);
16856fa5f80bSDavid Howells 	return ret;
16861da177e4SLinus Torvalds }
16871da177e4SLinus Torvalds 
16886aab341eSLinus Torvalds struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
1689deceb6cdSHugh Dickins 			unsigned int foll_flags)
16901da177e4SLinus Torvalds {
16911da177e4SLinus Torvalds 	return NULL;
16921da177e4SLinus Torvalds }
16931da177e4SLinus Torvalds 
16941da177e4SLinus Torvalds int remap_pfn_range(struct vm_area_struct *vma, unsigned long from,
16951da177e4SLinus Torvalds 		unsigned long to, unsigned long size, pgprot_t prot)
16961da177e4SLinus Torvalds {
169766aa2b4bSGreg Ungerer 	vma->vm_start = vma->vm_pgoff << PAGE_SHIFT;
169866aa2b4bSGreg Ungerer 	return 0;
16991da177e4SLinus Torvalds }
170022c4af40SLuke Yang EXPORT_SYMBOL(remap_pfn_range);
17011da177e4SLinus Torvalds 
1702f905bc44SPaul Mundt int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1703f905bc44SPaul Mundt 			unsigned long pgoff)
1704f905bc44SPaul Mundt {
1705f905bc44SPaul Mundt 	unsigned int size = vma->vm_end - vma->vm_start;
1706f905bc44SPaul Mundt 
1707f905bc44SPaul Mundt 	if (!(vma->vm_flags & VM_USERMAP))
1708f905bc44SPaul Mundt 		return -EINVAL;
1709f905bc44SPaul Mundt 
1710f905bc44SPaul Mundt 	vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1711f905bc44SPaul Mundt 	vma->vm_end = vma->vm_start + size;
1712f905bc44SPaul Mundt 
1713f905bc44SPaul Mundt 	return 0;
1714f905bc44SPaul Mundt }
1715f905bc44SPaul Mundt EXPORT_SYMBOL(remap_vmalloc_range);
1716f905bc44SPaul Mundt 
17171da177e4SLinus Torvalds void swap_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
17181da177e4SLinus Torvalds {
17191da177e4SLinus Torvalds }
17201da177e4SLinus Torvalds 
17211da177e4SLinus Torvalds unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
17221da177e4SLinus Torvalds 	unsigned long len, unsigned long pgoff, unsigned long flags)
17231da177e4SLinus Torvalds {
17241da177e4SLinus Torvalds 	return -ENOMEM;
17251da177e4SLinus Torvalds }
17261da177e4SLinus Torvalds 
17271363c3cdSWolfgang Wander void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
17281da177e4SLinus Torvalds {
17291da177e4SLinus Torvalds }
17301da177e4SLinus Torvalds 
17311da177e4SLinus Torvalds void unmap_mapping_range(struct address_space *mapping,
17321da177e4SLinus Torvalds 			 loff_t const holebegin, loff_t const holelen,
17331da177e4SLinus Torvalds 			 int even_cows)
17341da177e4SLinus Torvalds {
17351da177e4SLinus Torvalds }
173622c4af40SLuke Yang EXPORT_SYMBOL(unmap_mapping_range);
17371da177e4SLinus Torvalds 
17381da177e4SLinus Torvalds /*
1739d56e03cdSDavid Howells  * ask for an unmapped area at which to create a mapping on a file
1740d56e03cdSDavid Howells  */
1741d56e03cdSDavid Howells unsigned long get_unmapped_area(struct file *file, unsigned long addr,
1742d56e03cdSDavid Howells 				unsigned long len, unsigned long pgoff,
1743d56e03cdSDavid Howells 				unsigned long flags)
1744d56e03cdSDavid Howells {
1745d56e03cdSDavid Howells 	unsigned long (*get_area)(struct file *, unsigned long, unsigned long,
1746d56e03cdSDavid Howells 				  unsigned long, unsigned long);
1747d56e03cdSDavid Howells 
1748d56e03cdSDavid Howells 	get_area = current->mm->get_unmapped_area;
1749d56e03cdSDavid Howells 	if (file && file->f_op && file->f_op->get_unmapped_area)
1750d56e03cdSDavid Howells 		get_area = file->f_op->get_unmapped_area;
1751d56e03cdSDavid Howells 
1752d56e03cdSDavid Howells 	if (!get_area)
1753d56e03cdSDavid Howells 		return -ENOSYS;
1754d56e03cdSDavid Howells 
1755d56e03cdSDavid Howells 	return get_area(file, addr, len, pgoff, flags);
1756d56e03cdSDavid Howells }
1757d56e03cdSDavid Howells EXPORT_SYMBOL(get_unmapped_area);
1758d56e03cdSDavid Howells 
1759d56e03cdSDavid Howells /*
17601da177e4SLinus Torvalds  * Check that a process has enough memory to allocate a new virtual
17611da177e4SLinus Torvalds  * mapping. 0 means there is enough memory for the allocation to
17621da177e4SLinus Torvalds  * succeed and -ENOMEM implies there is not.
17631da177e4SLinus Torvalds  *
17641da177e4SLinus Torvalds  * We currently support three overcommit policies, which are set via the
17651da177e4SLinus Torvalds  * vm.overcommit_memory sysctl.  See Documentation/vm/overcommit-accounting
17661da177e4SLinus Torvalds  *
17671da177e4SLinus Torvalds  * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
17681da177e4SLinus Torvalds  * Additional code 2002 Jul 20 by Robert Love.
17691da177e4SLinus Torvalds  *
17701da177e4SLinus Torvalds  * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
17711da177e4SLinus Torvalds  *
17721da177e4SLinus Torvalds  * Note this is a helper function intended to be used by LSMs which
17731da177e4SLinus Torvalds  * wish to use this logic.
17741da177e4SLinus Torvalds  */
177534b4e4aaSAlan Cox int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
17761da177e4SLinus Torvalds {
17771da177e4SLinus Torvalds 	unsigned long free, allowed;
17781da177e4SLinus Torvalds 
17791da177e4SLinus Torvalds 	vm_acct_memory(pages);
17801da177e4SLinus Torvalds 
17811da177e4SLinus Torvalds 	/*
17821da177e4SLinus Torvalds 	 * Sometimes we want to use more memory than we have
17831da177e4SLinus Torvalds 	 */
17841da177e4SLinus Torvalds 	if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
17851da177e4SLinus Torvalds 		return 0;
17861da177e4SLinus Torvalds 
17871da177e4SLinus Torvalds 	if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
17881da177e4SLinus Torvalds 		unsigned long n;
17891da177e4SLinus Torvalds 
1790347ce434SChristoph Lameter 		free = global_page_state(NR_FILE_PAGES);
17911da177e4SLinus Torvalds 		free += nr_swap_pages;
17921da177e4SLinus Torvalds 
17931da177e4SLinus Torvalds 		/*
17941da177e4SLinus Torvalds 		 * Any slabs which are created with the
17951da177e4SLinus Torvalds 		 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
17961da177e4SLinus Torvalds 		 * which are reclaimable, under pressure.  The dentry
17971da177e4SLinus Torvalds 		 * cache and most inode caches should fall into this
17981da177e4SLinus Torvalds 		 */
1799972d1a7bSChristoph Lameter 		free += global_page_state(NR_SLAB_RECLAIMABLE);
18001da177e4SLinus Torvalds 
18011da177e4SLinus Torvalds 		/*
18021da177e4SLinus Torvalds 		 * Leave the last 3% for root
18031da177e4SLinus Torvalds 		 */
18041da177e4SLinus Torvalds 		if (!cap_sys_admin)
18051da177e4SLinus Torvalds 			free -= free / 32;
18061da177e4SLinus Torvalds 
18071da177e4SLinus Torvalds 		if (free > pages)
18081da177e4SLinus Torvalds 			return 0;
18091da177e4SLinus Torvalds 
18101da177e4SLinus Torvalds 		/*
18111da177e4SLinus Torvalds 		 * nr_free_pages() is very expensive on large systems,
18121da177e4SLinus Torvalds 		 * only call if we're about to fail.
18131da177e4SLinus Torvalds 		 */
18141da177e4SLinus Torvalds 		n = nr_free_pages();
1815d5ddc79bSHideo AOKI 
1816d5ddc79bSHideo AOKI 		/*
1817d5ddc79bSHideo AOKI 		 * Leave reserved pages. The pages are not for anonymous pages.
1818d5ddc79bSHideo AOKI 		 */
1819d5ddc79bSHideo AOKI 		if (n <= totalreserve_pages)
1820d5ddc79bSHideo AOKI 			goto error;
1821d5ddc79bSHideo AOKI 		else
1822d5ddc79bSHideo AOKI 			n -= totalreserve_pages;
1823d5ddc79bSHideo AOKI 
1824d5ddc79bSHideo AOKI 		/*
1825d5ddc79bSHideo AOKI 		 * Leave the last 3% for root
1826d5ddc79bSHideo AOKI 		 */
18271da177e4SLinus Torvalds 		if (!cap_sys_admin)
18281da177e4SLinus Torvalds 			n -= n / 32;
18291da177e4SLinus Torvalds 		free += n;
18301da177e4SLinus Torvalds 
18311da177e4SLinus Torvalds 		if (free > pages)
18321da177e4SLinus Torvalds 			return 0;
1833d5ddc79bSHideo AOKI 
1834d5ddc79bSHideo AOKI 		goto error;
18351da177e4SLinus Torvalds 	}
18361da177e4SLinus Torvalds 
18371da177e4SLinus Torvalds 	allowed = totalram_pages * sysctl_overcommit_ratio / 100;
18381da177e4SLinus Torvalds 	/*
18391da177e4SLinus Torvalds 	 * Leave the last 3% for root
18401da177e4SLinus Torvalds 	 */
18411da177e4SLinus Torvalds 	if (!cap_sys_admin)
18421da177e4SLinus Torvalds 		allowed -= allowed / 32;
18431da177e4SLinus Torvalds 	allowed += total_swap_pages;
18441da177e4SLinus Torvalds 
18451da177e4SLinus Torvalds 	/* Don't let a single process grow too big:
18461da177e4SLinus Torvalds 	   leave 3% of the size of this process for other processes */
1847731572d3SAlan Cox 	if (mm)
1848731572d3SAlan Cox 		allowed -= mm->total_vm / 32;
18491da177e4SLinus Torvalds 
18502f60f8d3SSimon Derr 	/*
18512f60f8d3SSimon Derr 	 * cast `allowed' as a signed long because vm_committed_space
18522f60f8d3SSimon Derr 	 * sometimes has a negative value
18532f60f8d3SSimon Derr 	 */
185480119ef5SAlan Cox 	if (atomic_long_read(&vm_committed_space) < (long)allowed)
18551da177e4SLinus Torvalds 		return 0;
1856d5ddc79bSHideo AOKI error:
18571da177e4SLinus Torvalds 	vm_unacct_memory(pages);
18581da177e4SLinus Torvalds 
18591da177e4SLinus Torvalds 	return -ENOMEM;
18601da177e4SLinus Torvalds }
18611da177e4SLinus Torvalds 
18621da177e4SLinus Torvalds int in_gate_area_no_task(unsigned long addr)
18631da177e4SLinus Torvalds {
18641da177e4SLinus Torvalds 	return 0;
18651da177e4SLinus Torvalds }
1866b0e15190SDavid Howells 
1867d0217ac0SNick Piggin int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1868b0e15190SDavid Howells {
1869b0e15190SDavid Howells 	BUG();
1870d0217ac0SNick Piggin 	return 0;
1871b0e15190SDavid Howells }
1872b5073173SPaul Mundt EXPORT_SYMBOL(filemap_fault);
18730ec76a11SDavid Howells 
18740ec76a11SDavid Howells /*
18750ec76a11SDavid Howells  * Access another process' address space.
18760ec76a11SDavid Howells  * - source/target buffer must be kernel space
18770ec76a11SDavid Howells  */
18780ec76a11SDavid Howells int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
18790ec76a11SDavid Howells {
18800ec76a11SDavid Howells 	struct vm_area_struct *vma;
18810ec76a11SDavid Howells 	struct mm_struct *mm;
18820ec76a11SDavid Howells 
18830ec76a11SDavid Howells 	if (addr + len < addr)
18840ec76a11SDavid Howells 		return 0;
18850ec76a11SDavid Howells 
18860ec76a11SDavid Howells 	mm = get_task_mm(tsk);
18870ec76a11SDavid Howells 	if (!mm)
18880ec76a11SDavid Howells 		return 0;
18890ec76a11SDavid Howells 
18900ec76a11SDavid Howells 	down_read(&mm->mmap_sem);
18910ec76a11SDavid Howells 
18920ec76a11SDavid Howells 	/* the access must start within one of the target process's mappings */
18930159b141SDavid Howells 	vma = find_vma(mm, addr);
18940159b141SDavid Howells 	if (vma) {
18950ec76a11SDavid Howells 		/* don't overrun this mapping */
18960ec76a11SDavid Howells 		if (addr + len >= vma->vm_end)
18970ec76a11SDavid Howells 			len = vma->vm_end - addr;
18980ec76a11SDavid Howells 
18990ec76a11SDavid Howells 		/* only read or write mappings where it is permitted */
1900d00c7b99SDavid Howells 		if (write && vma->vm_flags & VM_MAYWRITE)
19010ec76a11SDavid Howells 			len -= copy_to_user((void *) addr, buf, len);
1902d00c7b99SDavid Howells 		else if (!write && vma->vm_flags & VM_MAYREAD)
19030ec76a11SDavid Howells 			len -= copy_from_user(buf, (void *) addr, len);
19040ec76a11SDavid Howells 		else
19050ec76a11SDavid Howells 			len = 0;
19060ec76a11SDavid Howells 	} else {
19070ec76a11SDavid Howells 		len = 0;
19080ec76a11SDavid Howells 	}
19090ec76a11SDavid Howells 
19100ec76a11SDavid Howells 	up_read(&mm->mmap_sem);
19110ec76a11SDavid Howells 	mmput(mm);
19120ec76a11SDavid Howells 	return len;
19130ec76a11SDavid Howells }
1914