blob: 5d3f3524bbdc83b7ed2eceaf6ce064c3917bba51 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/nommu.c
3 *
4 * Replacement code for mm functions to support CPU's that don't
5 * have any form of memory management unit (thus no virtual memory).
6 *
7 * See Documentation/nommu-mmap.txt
8 *
David Howells8feae132009-01-08 12:04:47 +00009 * Copyright (c) 2004-2008 David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Copyright (c) 2000-2003 David McCullough <davidm@snapgear.com>
11 * Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org>
12 * Copyright (c) 2002 Greg Ungerer <gerg@snapgear.com>
Paul Mundt29c185e2010-12-24 12:08:30 +090013 * Copyright (c) 2007-2010 Paul Mundt <lethal@linux-sh.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040016#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mm.h>
Davidlohr Bueso615d6e82014-04-07 15:37:25 -070018#include <linux/vmacache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mman.h>
20#include <linux/swap.h>
21#include <linux/file.h>
22#include <linux/highmem.h>
23#include <linux/pagemap.h>
24#include <linux/slab.h>
25#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/blkdev.h>
27#include <linux/backing-dev.h>
28#include <linux/mount.h>
29#include <linux/personality.h>
30#include <linux/security.h>
31#include <linux/syscalls.h>
Al Viro120a7952010-10-30 02:54:44 -040032#include <linux/audit.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060033#include <linux/sched/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/uaccess.h>
36#include <asm/tlb.h>
37#include <asm/tlbflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070038#include <asm/mmu_context.h>
David Howells8feae132009-01-08 12:04:47 +000039#include "internal.h"
40
David Howells8feae132009-01-08 12:04:47 +000041#if 0
42#define kenter(FMT, ...) \
43 printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
44#define kleave(FMT, ...) \
45 printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
46#define kdebug(FMT, ...) \
47 printk(KERN_DEBUG "xxx" FMT"yyy\n", ##__VA_ARGS__)
48#else
49#define kenter(FMT, ...) \
50 no_printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
51#define kleave(FMT, ...) \
52 no_printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
53#define kdebug(FMT, ...) \
54 no_printk(KERN_DEBUG FMT"\n", ##__VA_ARGS__)
55#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57void *high_memory;
58struct page *mem_map;
59unsigned long max_mapnr;
Hugh Dickins4266c972009-09-23 17:05:53 +010060unsigned long highest_memmap_pfn;
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070061struct percpu_counter vm_committed_as;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
63int sysctl_overcommit_ratio = 50; /* default is 50% */
Jerome Marchand49f0ce52014-01-21 15:49:14 -080064unsigned long sysctl_overcommit_kbytes __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
David Howellsfc4d5c22009-05-06 16:03:05 -070066int sysctl_nr_trim_pages = CONFIG_NOMMU_INITIAL_TRIM_EXCESS;
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -070067unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -070068unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069int heap_stack_gap = 0;
70
David Howells33e5d7692009-04-02 16:56:32 -070071atomic_long_t mmap_pages_allocated;
David Howells8feae132009-01-08 12:04:47 +000072
K. Y. Srinivasan997071b2012-11-15 14:34:42 -080073/*
74 * The global memory commitment made in the system can be a metric
75 * that can be used to drive ballooning decisions when Linux is hosted
76 * as a guest. On Hyper-V, the host implements a policy engine for dynamically
77 * balancing memory across competing virtual machines that are hosted.
78 * Several metrics drive this policy engine including the guest reported
79 * memory commitment.
80 */
81unsigned long vm_memory_committed(void)
82{
83 return percpu_counter_read_positive(&vm_committed_as);
84}
85
86EXPORT_SYMBOL_GPL(vm_memory_committed);
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088EXPORT_SYMBOL(mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
David Howells8feae132009-01-08 12:04:47 +000090/* list of mapped, potentially shareable regions */
91static struct kmem_cache *vm_region_jar;
92struct rb_root nommu_region_tree = RB_ROOT;
93DECLARE_RWSEM(nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040095const struct vm_operations_struct generic_file_vm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
98/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * Return the total memory allocated for this pointer, not
100 * just what the caller asked for.
101 *
102 * Doesn't have to be accurate, i.e. may have races.
103 */
104unsigned int kobjsize(const void *objp)
105{
106 struct page *page;
107
Michael Hennerich4016a132008-04-28 02:13:38 -0700108 /*
109 * If the object we have should not have ksize performed on it,
110 * return size of 0
111 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900112 if (!objp || !virt_addr_valid(objp))
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700113 return 0;
114
115 page = virt_to_head_page(objp);
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700116
117 /*
118 * If the allocator sets PageSlab, we know the pointer came from
119 * kmalloc().
120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (PageSlab(page))
122 return ksize(objp);
123
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700124 /*
Paul Mundtab2e83e2009-01-08 12:04:48 +0000125 * If it's not a compound page, see if we have a matching VMA
126 * region. This test is intentionally done in reverse order,
127 * so if there's no VMA, we still fall through and hand back
128 * PAGE_SIZE for 0-order pages.
129 */
130 if (!PageCompound(page)) {
131 struct vm_area_struct *vma;
132
133 vma = find_vma(current->mm, (unsigned long)objp);
134 if (vma)
135 return vma->vm_end - vma->vm_start;
136 }
137
138 /*
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700139 * The ksize() function is only guaranteed to work for pointers
Paul Mundt5a1603b2008-06-12 16:29:55 +0900140 * returned by kmalloc(). So handle arbitrary pointers here.
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700141 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900142 return PAGE_SIZE << compound_order(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Michel Lespinasse28a35712013-02-22 16:35:55 -0800145long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
146 unsigned long start, unsigned long nr_pages,
147 unsigned int foll_flags, struct page **pages,
148 struct vm_area_struct **vmas, int *nonblocking)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Sonic Zhang910e46d2006-09-27 01:50:17 -0700150 struct vm_area_struct *vma;
David Howells7b4d5b82006-09-27 01:50:18 -0700151 unsigned long vm_flags;
152 int i;
153
154 /* calculate required read or write permissions.
Hugh Dickins58fa8792009-09-21 17:03:31 -0700155 * If FOLL_FORCE is set, we only require the "MAY" flags.
David Howells7b4d5b82006-09-27 01:50:18 -0700156 */
Hugh Dickins58fa8792009-09-21 17:03:31 -0700157 vm_flags = (foll_flags & FOLL_WRITE) ?
158 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
159 vm_flags &= (foll_flags & FOLL_FORCE) ?
160 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Peter Zijlstra9d737772009-06-25 11:58:55 +0200162 for (i = 0; i < nr_pages; i++) {
David Howells7561e8c2010-03-25 16:48:38 +0000163 vma = find_vma(mm, start);
David Howells7b4d5b82006-09-27 01:50:18 -0700164 if (!vma)
165 goto finish_or_fault;
166
167 /* protect what we can, including chardevs */
Hugh Dickins1c3aff12009-09-21 17:03:24 -0700168 if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
169 !(vm_flags & vma->vm_flags))
David Howells7b4d5b82006-09-27 01:50:18 -0700170 goto finish_or_fault;
Sonic Zhang910e46d2006-09-27 01:50:17 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (pages) {
173 pages[i] = virt_to_page(start);
174 if (pages[i])
175 page_cache_get(pages[i]);
176 }
177 if (vmas)
Sonic Zhang910e46d2006-09-27 01:50:17 -0700178 vmas[i] = vma;
David Howellse1ee65d2010-03-25 16:48:44 +0000179 start = (start + PAGE_SIZE) & PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
David Howells7b4d5b82006-09-27 01:50:18 -0700181
182 return i;
183
184finish_or_fault:
185 return i ? : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
Nick Pigginb291f002008-10-18 20:26:44 -0700187
Nick Pigginb291f002008-10-18 20:26:44 -0700188/*
189 * get a list of pages in an address range belonging to the specified process
190 * and indicate the VMA that covers each page
191 * - this is potentially dodgy as we may end incrementing the page count of a
192 * slab page or a secondary page from a compound page
193 * - don't permit access to VMAs that don't support it, such as I/O mappings
194 */
Michel Lespinasse28a35712013-02-22 16:35:55 -0800195long get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
196 unsigned long start, unsigned long nr_pages,
197 int write, int force, struct page **pages,
198 struct vm_area_struct **vmas)
Nick Pigginb291f002008-10-18 20:26:44 -0700199{
200 int flags = 0;
201
202 if (write)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700203 flags |= FOLL_WRITE;
Nick Pigginb291f002008-10-18 20:26:44 -0700204 if (force)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700205 flags |= FOLL_FORCE;
Nick Pigginb291f002008-10-18 20:26:44 -0700206
Michel Lespinasse53a77062011-01-13 15:46:14 -0800207 return __get_user_pages(tsk, mm, start, nr_pages, flags, pages, vmas,
208 NULL);
Nick Pigginb291f002008-10-18 20:26:44 -0700209}
Greg Ungerer66aa2b42005-09-12 11:18:10 +1000210EXPORT_SYMBOL(get_user_pages);
211
Paul Mundtdfc2f912009-06-26 04:31:57 +0900212/**
213 * follow_pfn - look up PFN at a user virtual address
214 * @vma: memory mapping
215 * @address: user virtual address
216 * @pfn: location to store found PFN
217 *
218 * Only IO mappings and raw PFN mappings are allowed.
219 *
220 * Returns zero and the pfn at @pfn on success, -ve otherwise.
221 */
222int follow_pfn(struct vm_area_struct *vma, unsigned long address,
223 unsigned long *pfn)
224{
225 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
226 return -EINVAL;
227
228 *pfn = address >> PAGE_SHIFT;
229 return 0;
230}
231EXPORT_SYMBOL(follow_pfn);
232
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700233LIST_HEAD(vmap_area_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800235void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 kfree(addr);
238}
Paul Mundtb5073172007-07-21 04:37:25 -0700239EXPORT_SYMBOL(vfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Al Virodd0fc662005-10-07 07:46:04 +0100241void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 /*
Robert P. J. Day85186092007-10-19 23:11:38 +0200244 * You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
245 * returns only a logical address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
Nick Piggin84097512006-03-22 00:08:34 -0800247 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
Paul Mundtb5073172007-07-21 04:37:25 -0700249EXPORT_SYMBOL(__vmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Paul Mundtf905bc42008-02-04 22:29:59 -0800251void *vmalloc_user(unsigned long size)
252{
253 void *ret;
254
255 ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
256 PAGE_KERNEL);
257 if (ret) {
258 struct vm_area_struct *vma;
259
260 down_write(&current->mm->mmap_sem);
261 vma = find_vma(current->mm, (unsigned long)ret);
262 if (vma)
263 vma->vm_flags |= VM_USERMAP;
264 up_write(&current->mm->mmap_sem);
265 }
266
267 return ret;
268}
269EXPORT_SYMBOL(vmalloc_user);
270
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800271struct page *vmalloc_to_page(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 return virt_to_page(addr);
274}
Paul Mundtb5073172007-07-21 04:37:25 -0700275EXPORT_SYMBOL(vmalloc_to_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800277unsigned long vmalloc_to_pfn(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 return page_to_pfn(virt_to_page(addr));
280}
Paul Mundtb5073172007-07-21 04:37:25 -0700281EXPORT_SYMBOL(vmalloc_to_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283long vread(char *buf, char *addr, unsigned long count)
284{
Chen Gang9bde9162013-07-03 15:02:36 -0700285 /* Don't allow overflow */
286 if ((unsigned long) buf + count < count)
287 count = -(unsigned long) buf;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 memcpy(buf, addr, count);
290 return count;
291}
292
293long vwrite(char *buf, char *addr, unsigned long count)
294{
295 /* Don't allow overflow */
296 if ((unsigned long) addr + count < count)
297 count = -(unsigned long) addr;
298
299 memcpy(addr, buf, count);
300 return(count);
301}
302
303/*
304 * vmalloc - allocate virtually continguos memory
305 *
306 * @size: allocation size
307 *
308 * Allocate enough pages to cover @size from the page level
309 * allocator and map them into continguos kernel virtual space.
310 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +0200311 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * use __vmalloc() instead.
313 */
314void *vmalloc(unsigned long size)
315{
316 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL);
317}
Andrew Mortonf6138882006-02-28 16:59:18 -0800318EXPORT_SYMBOL(vmalloc);
319
Dave Younge1ca7782010-10-26 14:22:06 -0700320/*
321 * vzalloc - allocate virtually continguos memory with zero fill
322 *
323 * @size: allocation size
324 *
325 * Allocate enough pages to cover @size from the page level
326 * allocator and map them into continguos kernel virtual space.
327 * The memory allocated is set to zero.
328 *
329 * For tight control over page level allocator and protection flags
330 * use __vmalloc() instead.
331 */
332void *vzalloc(unsigned long size)
333{
334 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
335 PAGE_KERNEL);
336}
337EXPORT_SYMBOL(vzalloc);
338
339/**
340 * vmalloc_node - allocate memory on a specific node
341 * @size: allocation size
342 * @node: numa node
343 *
344 * Allocate enough pages to cover @size from the page level
345 * allocator and map them into contiguous kernel virtual space.
346 *
347 * For tight control over page level allocator and protection flags
348 * use __vmalloc() instead.
349 */
Andrew Mortonf6138882006-02-28 16:59:18 -0800350void *vmalloc_node(unsigned long size, int node)
351{
352 return vmalloc(size);
353}
Paul Mundt9a14f652010-12-24 11:50:34 +0900354EXPORT_SYMBOL(vmalloc_node);
Dave Younge1ca7782010-10-26 14:22:06 -0700355
356/**
357 * vzalloc_node - allocate memory on a specific node with zero fill
358 * @size: allocation size
359 * @node: numa node
360 *
361 * Allocate enough pages to cover @size from the page level
362 * allocator and map them into contiguous kernel virtual space.
363 * The memory allocated is set to zero.
364 *
365 * For tight control over page level allocator and protection flags
366 * use __vmalloc() instead.
367 */
368void *vzalloc_node(unsigned long size, int node)
369{
370 return vzalloc(size);
371}
372EXPORT_SYMBOL(vzalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Paul Mundt1af446e2008-08-04 16:01:47 +0900374#ifndef PAGE_KERNEL_EXEC
375# define PAGE_KERNEL_EXEC PAGE_KERNEL
376#endif
377
378/**
379 * vmalloc_exec - allocate virtually contiguous, executable memory
380 * @size: allocation size
381 *
382 * Kernel-internal function to allocate enough pages to cover @size
383 * the page level allocator and map them into contiguous and
384 * executable kernel virtual space.
385 *
386 * For tight control over page level allocator and protection flags
387 * use __vmalloc() instead.
388 */
389
390void *vmalloc_exec(unsigned long size)
391{
392 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC);
393}
394
Paul Mundtb5073172007-07-21 04:37:25 -0700395/**
396 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * @size: allocation size
398 *
399 * Allocate enough 32bit PA addressable pages to cover @size from the
400 * page level allocator and map them into continguos kernel virtual space.
401 */
402void *vmalloc_32(unsigned long size)
403{
404 return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL);
405}
Paul Mundtb5073172007-07-21 04:37:25 -0700406EXPORT_SYMBOL(vmalloc_32);
407
408/**
409 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
410 * @size: allocation size
411 *
412 * The resulting memory area is 32bit addressable and zeroed so it can be
413 * mapped to userspace without leaking data.
Paul Mundtf905bc42008-02-04 22:29:59 -0800414 *
415 * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
416 * remap_vmalloc_range() are permissible.
Paul Mundtb5073172007-07-21 04:37:25 -0700417 */
418void *vmalloc_32_user(unsigned long size)
419{
Paul Mundtf905bc42008-02-04 22:29:59 -0800420 /*
421 * We'll have to sort out the ZONE_DMA bits for 64-bit,
422 * but for now this can simply use vmalloc_user() directly.
423 */
424 return vmalloc_user(size);
Paul Mundtb5073172007-07-21 04:37:25 -0700425}
426EXPORT_SYMBOL(vmalloc_32_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
429{
430 BUG();
431 return NULL;
432}
Paul Mundtb5073172007-07-21 04:37:25 -0700433EXPORT_SYMBOL(vmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800435void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 BUG();
438}
Paul Mundtb5073172007-07-21 04:37:25 -0700439EXPORT_SYMBOL(vunmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Paul Mundteb6434d2009-01-21 17:45:47 +0900441void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
442{
443 BUG();
444 return NULL;
445}
446EXPORT_SYMBOL(vm_map_ram);
447
448void vm_unmap_ram(const void *mem, unsigned int count)
449{
450 BUG();
451}
452EXPORT_SYMBOL(vm_unmap_ram);
453
454void vm_unmap_aliases(void)
455{
456}
457EXPORT_SYMBOL_GPL(vm_unmap_aliases);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700460 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
461 * have one.
462 */
463void __attribute__((weak)) vmalloc_sync_all(void)
464{
465}
466
Paul Mundt29c185e2010-12-24 12:08:30 +0900467/**
468 * alloc_vm_area - allocate a range of kernel address space
469 * @size: size of the area
470 *
471 * Returns: NULL on failure, vm_struct on success
472 *
473 * This function reserves a range of kernel address space, and
474 * allocates pagetables to map that range. No actual mappings
475 * are created. If the kernel address space is not shared
476 * between processes, it syncs the pagetable across all
477 * processes.
478 */
David Vrabelcd129092011-09-29 16:53:32 +0100479struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Paul Mundt29c185e2010-12-24 12:08:30 +0900480{
481 BUG();
482 return NULL;
483}
484EXPORT_SYMBOL_GPL(alloc_vm_area);
485
486void free_vm_area(struct vm_struct *area)
487{
488 BUG();
489}
490EXPORT_SYMBOL_GPL(free_vm_area);
491
Paul Mundtb5073172007-07-21 04:37:25 -0700492int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
493 struct page *page)
494{
495 return -EINVAL;
496}
497EXPORT_SYMBOL(vm_insert_page);
498
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * sys_brk() for the most part doesn't need the global kernel
501 * lock, except when an application is doing something nasty
502 * like trying to un-brk an area that has already been mapped
503 * to a regular file. in this case, the unmapping will need
504 * to invoke file system routines that need the global lock.
505 */
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100506SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 struct mm_struct *mm = current->mm;
509
510 if (brk < mm->start_brk || brk > mm->context.end_brk)
511 return mm->brk;
512
513 if (mm->brk == brk)
514 return mm->brk;
515
516 /*
517 * Always allow shrinking brk
518 */
519 if (brk <= mm->brk) {
520 mm->brk = brk;
521 return brk;
522 }
523
524 /*
525 * Ok, looks good - let it rip.
526 */
Mike Frysingercfe79c02010-01-06 17:23:23 +0000527 flush_icache_range(mm->brk, brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return mm->brk = brk;
529}
530
David Howells8feae132009-01-08 12:04:47 +0000531/*
532 * initialise the VMA and region record slabs
533 */
534void __init mmap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700536 int ret;
537
538 ret = percpu_counter_init(&vm_committed_as, 0);
539 VM_BUG_ON(ret);
David Howells33e5d7692009-04-02 16:56:32 -0700540 vm_region_jar = KMEM_CACHE(vm_region, SLAB_PANIC);
David Howells8feae132009-01-08 12:04:47 +0000541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
David Howells8feae132009-01-08 12:04:47 +0000543/*
544 * validate the region tree
545 * - the caller must hold the region lock
546 */
547#ifdef CONFIG_DEBUG_NOMMU_REGIONS
548static noinline void validate_nommu_regions(void)
549{
550 struct vm_region *region, *last;
551 struct rb_node *p, *lastp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
David Howells8feae132009-01-08 12:04:47 +0000553 lastp = rb_first(&nommu_region_tree);
554 if (!lastp)
555 return;
556
557 last = rb_entry(lastp, struct vm_region, vm_rb);
David Howells33e5d7692009-04-02 16:56:32 -0700558 BUG_ON(unlikely(last->vm_end <= last->vm_start));
559 BUG_ON(unlikely(last->vm_top < last->vm_end));
David Howells8feae132009-01-08 12:04:47 +0000560
561 while ((p = rb_next(lastp))) {
562 region = rb_entry(p, struct vm_region, vm_rb);
563 last = rb_entry(lastp, struct vm_region, vm_rb);
564
David Howells33e5d7692009-04-02 16:56:32 -0700565 BUG_ON(unlikely(region->vm_end <= region->vm_start));
566 BUG_ON(unlikely(region->vm_top < region->vm_end));
567 BUG_ON(unlikely(region->vm_start < last->vm_top));
David Howells8feae132009-01-08 12:04:47 +0000568
569 lastp = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571}
David Howells8feae132009-01-08 12:04:47 +0000572#else
David Howells33e5d7692009-04-02 16:56:32 -0700573static void validate_nommu_regions(void)
574{
575}
David Howells8feae132009-01-08 12:04:47 +0000576#endif
577
578/*
579 * add a region into the global tree
580 */
581static void add_nommu_region(struct vm_region *region)
582{
583 struct vm_region *pregion;
584 struct rb_node **p, *parent;
585
586 validate_nommu_regions();
587
David Howells8feae132009-01-08 12:04:47 +0000588 parent = NULL;
589 p = &nommu_region_tree.rb_node;
590 while (*p) {
591 parent = *p;
592 pregion = rb_entry(parent, struct vm_region, vm_rb);
593 if (region->vm_start < pregion->vm_start)
594 p = &(*p)->rb_left;
595 else if (region->vm_start > pregion->vm_start)
596 p = &(*p)->rb_right;
597 else if (pregion == region)
598 return;
599 else
600 BUG();
601 }
602
603 rb_link_node(&region->vm_rb, parent, p);
604 rb_insert_color(&region->vm_rb, &nommu_region_tree);
605
606 validate_nommu_regions();
607}
608
609/*
610 * delete a region from the global tree
611 */
612static void delete_nommu_region(struct vm_region *region)
613{
614 BUG_ON(!nommu_region_tree.rb_node);
615
616 validate_nommu_regions();
617 rb_erase(&region->vm_rb, &nommu_region_tree);
618 validate_nommu_regions();
619}
620
621/*
622 * free a contiguous series of pages
623 */
624static void free_page_series(unsigned long from, unsigned long to)
625{
626 for (; from < to; from += PAGE_SIZE) {
627 struct page *page = virt_to_page(from);
628
629 kdebug("- free %lx", from);
David Howells33e5d7692009-04-02 16:56:32 -0700630 atomic_long_dec(&mmap_pages_allocated);
David Howells8feae132009-01-08 12:04:47 +0000631 if (page_count(page) != 1)
David Howells33e5d7692009-04-02 16:56:32 -0700632 kdebug("free page %p: refcount not one: %d",
633 page, page_count(page));
David Howells8feae132009-01-08 12:04:47 +0000634 put_page(page);
635 }
636}
637
638/*
639 * release a reference to a region
David Howells33e5d7692009-04-02 16:56:32 -0700640 * - the caller must hold the region semaphore for writing, which this releases
Paul Mundtdd8632a2009-01-08 12:04:47 +0000641 * - the region may not have been added to the tree yet, in which case vm_top
David Howells8feae132009-01-08 12:04:47 +0000642 * will equal vm_start
643 */
644static void __put_nommu_region(struct vm_region *region)
645 __releases(nommu_region_sem)
646{
David Howells1e2ae592010-01-15 17:01:33 -0800647 kenter("%p{%d}", region, region->vm_usage);
David Howells8feae132009-01-08 12:04:47 +0000648
649 BUG_ON(!nommu_region_tree.rb_node);
650
David Howells1e2ae592010-01-15 17:01:33 -0800651 if (--region->vm_usage == 0) {
Paul Mundtdd8632a2009-01-08 12:04:47 +0000652 if (region->vm_top > region->vm_start)
David Howells8feae132009-01-08 12:04:47 +0000653 delete_nommu_region(region);
654 up_write(&nommu_region_sem);
655
656 if (region->vm_file)
657 fput(region->vm_file);
658
659 /* IO memory and memory shared directly out of the pagecache
660 * from ramfs/tmpfs mustn't be released here */
661 if (region->vm_flags & VM_MAPPED_COPY) {
662 kdebug("free series");
Paul Mundtdd8632a2009-01-08 12:04:47 +0000663 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +0000664 }
665 kmem_cache_free(vm_region_jar, region);
666 } else {
667 up_write(&nommu_region_sem);
668 }
669}
670
671/*
672 * release a reference to a region
673 */
674static void put_nommu_region(struct vm_region *region)
675{
676 down_write(&nommu_region_sem);
677 __put_nommu_region(region);
678}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
David Howells30340972006-09-27 01:50:20 -0700680/*
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700681 * update protection on a vma
682 */
683static void protect_vma(struct vm_area_struct *vma, unsigned long flags)
684{
685#ifdef CONFIG_MPU
686 struct mm_struct *mm = vma->vm_mm;
687 long start = vma->vm_start & PAGE_MASK;
688 while (start < vma->vm_end) {
689 protect_page(mm, start, flags);
690 start += PAGE_SIZE;
691 }
692 update_protections(mm);
693#endif
694}
695
696/*
David Howells30340972006-09-27 01:50:20 -0700697 * add a VMA into a process's mm_struct in the appropriate place in the list
David Howells8feae132009-01-08 12:04:47 +0000698 * and tree and add to the address space's page tree also if not an anonymous
699 * page
David Howells30340972006-09-27 01:50:20 -0700700 * - should be called with mm->mmap_sem held writelocked
701 */
David Howells8feae132009-01-08 12:04:47 +0000702static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
David Howells30340972006-09-27 01:50:20 -0700703{
Namhyung Kim6038def2011-05-24 17:11:22 -0700704 struct vm_area_struct *pvma, *prev;
David Howells8feae132009-01-08 12:04:47 +0000705 struct address_space *mapping;
Namhyung Kim6038def2011-05-24 17:11:22 -0700706 struct rb_node **p, *parent, *rb_prev;
David Howells30340972006-09-27 01:50:20 -0700707
David Howells8feae132009-01-08 12:04:47 +0000708 kenter(",%p", vma);
709
710 BUG_ON(!vma->vm_region);
711
712 mm->map_count++;
713 vma->vm_mm = mm;
714
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700715 protect_vma(vma, vma->vm_flags);
716
David Howells8feae132009-01-08 12:04:47 +0000717 /* add the VMA to the mapping */
718 if (vma->vm_file) {
719 mapping = vma->vm_file->f_mapping;
720
David Howells918e5562012-02-23 13:50:35 +0000721 mutex_lock(&mapping->i_mmap_mutex);
David Howells8feae132009-01-08 12:04:47 +0000722 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700723 vma_interval_tree_insert(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000724 flush_dcache_mmap_unlock(mapping);
David Howells918e5562012-02-23 13:50:35 +0000725 mutex_unlock(&mapping->i_mmap_mutex);
David Howells8feae132009-01-08 12:04:47 +0000726 }
727
728 /* add the VMA to the tree */
Namhyung Kim6038def2011-05-24 17:11:22 -0700729 parent = rb_prev = NULL;
David Howells8feae132009-01-08 12:04:47 +0000730 p = &mm->mm_rb.rb_node;
731 while (*p) {
732 parent = *p;
733 pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
734
735 /* sort by: start addr, end addr, VMA struct addr in that order
736 * (the latter is necessary as we may get identical VMAs) */
737 if (vma->vm_start < pvma->vm_start)
738 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700739 else if (vma->vm_start > pvma->vm_start) {
740 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000741 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700742 } else if (vma->vm_end < pvma->vm_end)
David Howells8feae132009-01-08 12:04:47 +0000743 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700744 else if (vma->vm_end > pvma->vm_end) {
745 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000746 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700747 } else if (vma < pvma)
David Howells8feae132009-01-08 12:04:47 +0000748 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700749 else if (vma > pvma) {
750 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000751 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700752 } else
David Howells8feae132009-01-08 12:04:47 +0000753 BUG();
754 }
755
756 rb_link_node(&vma->vm_rb, parent, p);
757 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
758
759 /* add VMA to the VMA list also */
Namhyung Kim6038def2011-05-24 17:11:22 -0700760 prev = NULL;
761 if (rb_prev)
762 prev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
David Howells30340972006-09-27 01:50:20 -0700763
Namhyung Kim6038def2011-05-24 17:11:22 -0700764 __vma_link_list(mm, vma, prev, parent);
David Howells8feae132009-01-08 12:04:47 +0000765}
766
767/*
768 * delete a VMA from its owning mm_struct and address space
769 */
770static void delete_vma_from_mm(struct vm_area_struct *vma)
771{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700772 int i;
David Howells8feae132009-01-08 12:04:47 +0000773 struct address_space *mapping;
774 struct mm_struct *mm = vma->vm_mm;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700775 struct task_struct *curr = current;
David Howells8feae132009-01-08 12:04:47 +0000776
777 kenter("%p", vma);
778
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700779 protect_vma(vma, 0);
780
David Howells8feae132009-01-08 12:04:47 +0000781 mm->map_count--;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700782 for (i = 0; i < VMACACHE_SIZE; i++) {
783 /* if the vma is cached, invalidate the entire cache */
784 if (curr->vmacache[i] == vma) {
785 vmacache_invalidate(curr->mm);
786 break;
787 }
788 }
David Howells8feae132009-01-08 12:04:47 +0000789
790 /* remove the VMA from the mapping */
791 if (vma->vm_file) {
792 mapping = vma->vm_file->f_mapping;
793
David Howells918e5562012-02-23 13:50:35 +0000794 mutex_lock(&mapping->i_mmap_mutex);
David Howells8feae132009-01-08 12:04:47 +0000795 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700796 vma_interval_tree_remove(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000797 flush_dcache_mmap_unlock(mapping);
David Howells918e5562012-02-23 13:50:35 +0000798 mutex_unlock(&mapping->i_mmap_mutex);
David Howells8feae132009-01-08 12:04:47 +0000799 }
800
801 /* remove from the MM's tree and list */
802 rb_erase(&vma->vm_rb, &mm->mm_rb);
Namhyung Kimb951bf22011-05-24 17:11:23 -0700803
804 if (vma->vm_prev)
805 vma->vm_prev->vm_next = vma->vm_next;
806 else
807 mm->mmap = vma->vm_next;
808
809 if (vma->vm_next)
810 vma->vm_next->vm_prev = vma->vm_prev;
David Howells8feae132009-01-08 12:04:47 +0000811}
812
813/*
814 * destroy a VMA record
815 */
816static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
817{
818 kenter("%p", vma);
819 if (vma->vm_ops && vma->vm_ops->close)
820 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700821 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +0000822 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +0000823 put_nommu_region(vma->vm_region);
824 kmem_cache_free(vm_area_cachep, vma);
David Howells30340972006-09-27 01:50:20 -0700825}
826
827/*
828 * look up the first VMA in which addr resides, NULL if none
829 * - should be called with mm->mmap_sem at least held readlocked
830 */
831struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
832{
David Howells8feae132009-01-08 12:04:47 +0000833 struct vm_area_struct *vma;
David Howells30340972006-09-27 01:50:20 -0700834
David Howells8feae132009-01-08 12:04:47 +0000835 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700836 vma = vmacache_find(mm, addr);
837 if (likely(vma))
David Howells8feae132009-01-08 12:04:47 +0000838 return vma;
839
Namhyung Kime922c4c2011-05-24 17:11:24 -0700840 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000841 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700842 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000843 if (vma->vm_start > addr)
844 return NULL;
845 if (vma->vm_end > addr) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700846 vmacache_update(addr, vma);
David Howells8feae132009-01-08 12:04:47 +0000847 return vma;
848 }
David Howells30340972006-09-27 01:50:20 -0700849 }
850
David Howells30340972006-09-27 01:50:20 -0700851 return NULL;
852}
853EXPORT_SYMBOL(find_vma);
854
855/*
David Howells930e6522006-09-27 01:50:22 -0700856 * find a VMA
857 * - we don't extend stack VMAs under NOMMU conditions
858 */
859struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
860{
David Howells7561e8c2010-03-25 16:48:38 +0000861 return find_vma(mm, addr);
David Howells930e6522006-09-27 01:50:22 -0700862}
863
David Howells8feae132009-01-08 12:04:47 +0000864/*
865 * expand a stack to a given address
866 * - not supported under NOMMU conditions
867 */
Greg Ungerer57c8f632007-07-15 23:38:28 -0700868int expand_stack(struct vm_area_struct *vma, unsigned long address)
869{
870 return -ENOMEM;
871}
872
David Howells930e6522006-09-27 01:50:22 -0700873/*
David Howells6fa5f802006-09-27 01:50:21 -0700874 * look up the first VMA exactly that exactly matches addr
875 * - should be called with mm->mmap_sem at least held readlocked
876 */
David Howells8feae132009-01-08 12:04:47 +0000877static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
878 unsigned long addr,
879 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct vm_area_struct *vma;
David Howells8feae132009-01-08 12:04:47 +0000882 unsigned long end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
David Howells8feae132009-01-08 12:04:47 +0000884 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700885 vma = vmacache_find_exact(mm, addr, end);
886 if (vma)
David Howells8feae132009-01-08 12:04:47 +0000887 return vma;
888
Namhyung Kime922c4c2011-05-24 17:11:24 -0700889 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000890 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700891 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000892 if (vma->vm_start < addr)
893 continue;
894 if (vma->vm_start > addr)
895 return NULL;
896 if (vma->vm_end == end) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700897 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return vma;
David Howells8feae132009-01-08 12:04:47 +0000899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
902 return NULL;
903}
904
David Howells30340972006-09-27 01:50:20 -0700905/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 * determine whether a mapping should be permitted and, if so, what sort of
907 * mapping we're capable of supporting
908 */
909static int validate_mmap_request(struct file *file,
910 unsigned long addr,
911 unsigned long len,
912 unsigned long prot,
913 unsigned long flags,
914 unsigned long pgoff,
915 unsigned long *_capabilities)
916{
David Howells8feae132009-01-08 12:04:47 +0000917 unsigned long capabilities, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 int ret;
919
920 /* do the simple checks first */
David Howells06aab5a2009-09-24 12:33:48 +0100921 if (flags & MAP_FIXED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 printk(KERN_DEBUG
923 "%d: Can't do fixed-address/overlay mmap of RAM\n",
924 current->pid);
925 return -EINVAL;
926 }
927
928 if ((flags & MAP_TYPE) != MAP_PRIVATE &&
929 (flags & MAP_TYPE) != MAP_SHARED)
930 return -EINVAL;
931
Mike Frysingerf81cff02006-12-06 12:02:59 +1000932 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return -EINVAL;
934
Mike Frysingerf81cff02006-12-06 12:02:59 +1000935 /* Careful about overflows.. */
David Howells8feae132009-01-08 12:04:47 +0000936 rlen = PAGE_ALIGN(len);
937 if (!rlen || rlen > TASK_SIZE)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000938 return -ENOMEM;
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* offset overflow? */
David Howells8feae132009-01-08 12:04:47 +0000941 if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000942 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 if (file) {
945 /* validate file mapping requests */
946 struct address_space *mapping;
947
948 /* files must support mmap */
Al Viro72c2d532013-09-22 16:27:52 -0400949 if (!file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return -ENODEV;
951
952 /* work out if what we've got could possibly be shared
953 * - we support chardevs that provide their own "memory"
954 * - we support files/blockdevs that are memory backed
955 */
956 mapping = file->f_mapping;
957 if (!mapping)
Al Viro496ad9a2013-01-23 17:07:38 -0500958 mapping = file_inode(file)->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 capabilities = 0;
961 if (mapping && mapping->backing_dev_info)
962 capabilities = mapping->backing_dev_info->capabilities;
963
964 if (!capabilities) {
965 /* no explicit capabilities set, so assume some
966 * defaults */
Al Viro496ad9a2013-01-23 17:07:38 -0500967 switch (file_inode(file)->i_mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 case S_IFREG:
969 case S_IFBLK:
970 capabilities = BDI_CAP_MAP_COPY;
971 break;
972
973 case S_IFCHR:
974 capabilities =
975 BDI_CAP_MAP_DIRECT |
976 BDI_CAP_READ_MAP |
977 BDI_CAP_WRITE_MAP;
978 break;
979
980 default:
981 return -EINVAL;
982 }
983 }
984
985 /* eliminate any capabilities that we can't support on this
986 * device */
987 if (!file->f_op->get_unmapped_area)
988 capabilities &= ~BDI_CAP_MAP_DIRECT;
989 if (!file->f_op->read)
990 capabilities &= ~BDI_CAP_MAP_COPY;
991
Graff Yang28d7a6a2009-08-18 14:11:17 -0700992 /* The file shall have been opened with read permission. */
993 if (!(file->f_mode & FMODE_READ))
994 return -EACCES;
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (flags & MAP_SHARED) {
997 /* do checks for writing, appending and locking */
998 if ((prot & PROT_WRITE) &&
999 !(file->f_mode & FMODE_WRITE))
1000 return -EACCES;
1001
Al Viro496ad9a2013-01-23 17:07:38 -05001002 if (IS_APPEND(file_inode(file)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 (file->f_mode & FMODE_WRITE))
1004 return -EACCES;
1005
Jeff Laytond7a06982014-03-10 09:54:15 -04001006 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return -EAGAIN;
1008
1009 if (!(capabilities & BDI_CAP_MAP_DIRECT))
1010 return -ENODEV;
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* we mustn't privatise shared mappings */
1013 capabilities &= ~BDI_CAP_MAP_COPY;
1014 }
1015 else {
1016 /* we're going to read the file into private memory we
1017 * allocate */
1018 if (!(capabilities & BDI_CAP_MAP_COPY))
1019 return -ENODEV;
1020
1021 /* we don't permit a private writable mapping to be
1022 * shared with the backing device */
1023 if (prot & PROT_WRITE)
1024 capabilities &= ~BDI_CAP_MAP_DIRECT;
1025 }
1026
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001027 if (capabilities & BDI_CAP_MAP_DIRECT) {
1028 if (((prot & PROT_READ) && !(capabilities & BDI_CAP_READ_MAP)) ||
1029 ((prot & PROT_WRITE) && !(capabilities & BDI_CAP_WRITE_MAP)) ||
1030 ((prot & PROT_EXEC) && !(capabilities & BDI_CAP_EXEC_MAP))
1031 ) {
1032 capabilities &= ~BDI_CAP_MAP_DIRECT;
1033 if (flags & MAP_SHARED) {
1034 printk(KERN_WARNING
1035 "MAP_SHARED not completely supported on !MMU\n");
1036 return -EINVAL;
1037 }
1038 }
1039 }
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /* handle executable mappings and implied executable
1042 * mappings */
Josef Sipeke9536ae2006-12-08 02:37:21 -08001043 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (prot & PROT_EXEC)
1045 return -EPERM;
1046 }
1047 else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
1048 /* handle implication of PROT_EXEC by PROT_READ */
1049 if (current->personality & READ_IMPLIES_EXEC) {
1050 if (capabilities & BDI_CAP_EXEC_MAP)
1051 prot |= PROT_EXEC;
1052 }
1053 }
1054 else if ((prot & PROT_READ) &&
1055 (prot & PROT_EXEC) &&
1056 !(capabilities & BDI_CAP_EXEC_MAP)
1057 ) {
1058 /* backing file is not executable, try to copy */
1059 capabilities &= ~BDI_CAP_MAP_DIRECT;
1060 }
1061 }
1062 else {
1063 /* anonymous mappings are always memory backed and can be
1064 * privately mapped
1065 */
1066 capabilities = BDI_CAP_MAP_COPY;
1067
1068 /* handle PROT_EXEC implication by PROT_READ */
1069 if ((prot & PROT_READ) &&
1070 (current->personality & READ_IMPLIES_EXEC))
1071 prot |= PROT_EXEC;
1072 }
1073
1074 /* allow the security API to have its say */
Al Viroe5467852012-05-30 13:30:51 -04001075 ret = security_mmap_addr(addr);
1076 if (ret < 0)
1077 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 /* looks okay */
1080 *_capabilities = capabilities;
1081 return 0;
1082}
1083
1084/*
1085 * we've determined that we can make the mapping, now translate what we
1086 * now know into VMA flags
1087 */
1088static unsigned long determine_vm_flags(struct file *file,
1089 unsigned long prot,
1090 unsigned long flags,
1091 unsigned long capabilities)
1092{
1093 unsigned long vm_flags;
1094
1095 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* vm_flags |= mm->def_flags; */
1097
1098 if (!(capabilities & BDI_CAP_MAP_DIRECT)) {
1099 /* attempt to share read-only copies of mapped file chunks */
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001100 vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (file && !(prot & PROT_WRITE))
1102 vm_flags |= VM_MAYSHARE;
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001103 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /* overlay a shareable mapping on the backing device or inode
1105 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
1106 * romfs/cramfs */
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001107 vm_flags |= VM_MAYSHARE | (capabilities & BDI_CAP_VMFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (flags & MAP_SHARED)
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001109 vm_flags |= VM_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111
1112 /* refuse to let anyone share private mappings with this process if
1113 * it's being traced - otherwise breakpoints set in it may interfere
1114 * with another untraced process
1115 */
Tejun Heoa288eec2011-06-17 16:50:37 +02001116 if ((flags & MAP_PRIVATE) && current->ptrace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 vm_flags &= ~VM_MAYSHARE;
1118
1119 return vm_flags;
1120}
1121
1122/*
David Howells8feae132009-01-08 12:04:47 +00001123 * set up a shared mapping on a file (the driver or filesystem provides and
1124 * pins the storage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 */
David Howells8feae132009-01-08 12:04:47 +00001126static int do_mmap_shared_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
1128 int ret;
1129
1130 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001131 if (ret == 0) {
1132 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +01001133 return 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (ret != -ENOSYS)
1136 return ret;
1137
David Howells3fa30462010-03-23 13:35:21 -07001138 /* getting -ENOSYS indicates that direct mmap isn't possible (as
1139 * opposed to tried but failed) so we can only give a suitable error as
1140 * it's not possible to make a private copy if MAP_SHARED was given */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return -ENODEV;
1142}
1143
1144/*
1145 * set up a private mapping or an anonymous shared mapping
1146 */
David Howells8feae132009-01-08 12:04:47 +00001147static int do_mmap_private(struct vm_area_struct *vma,
1148 struct vm_region *region,
David Howells645d83c2009-09-24 15:13:10 +01001149 unsigned long len,
1150 unsigned long capabilities)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
David Howells8feae132009-01-08 12:04:47 +00001152 struct page *pages;
Bob Liuf67d9b12011-05-24 17:12:56 -07001153 unsigned long total, point, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 void *base;
David Howells8feae132009-01-08 12:04:47 +00001155 int ret, order;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 /* invoke the file's mapping function so that it can keep track of
1158 * shared mappings on devices or memory
1159 * - VM_MAYSHARE will be set if it may attempt to share
1160 */
David Howells645d83c2009-09-24 15:13:10 +01001161 if (capabilities & BDI_CAP_MAP_DIRECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001163 if (ret == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 /* shouldn't return success if we're not sharing */
Paul Mundtdd8632a2009-01-08 12:04:47 +00001165 BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1166 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +01001167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Paul Mundtdd8632a2009-01-08 12:04:47 +00001169 if (ret != -ENOSYS)
1170 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /* getting an ENOSYS error indicates that direct mmap isn't
1173 * possible (as opposed to tried but failed) so we'll try to
1174 * make a private copy of the data and map that instead */
1175 }
1176
David Howells8feae132009-01-08 12:04:47 +00001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /* allocate some memory to hold the mapping
1179 * - note that this may not return a page-aligned address if the object
1180 * we're allocating is smaller than a page
1181 */
Bob Liuf67d9b12011-05-24 17:12:56 -07001182 order = get_order(len);
David Howells8feae132009-01-08 12:04:47 +00001183 kdebug("alloc order %d for %lx", order, len);
1184
1185 pages = alloc_pages(GFP_KERNEL, order);
1186 if (!pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 goto enomem;
1188
David Howells8feae132009-01-08 12:04:47 +00001189 total = 1 << order;
David Howells33e5d7692009-04-02 16:56:32 -07001190 atomic_long_add(total, &mmap_pages_allocated);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Bob Liuf67d9b12011-05-24 17:12:56 -07001192 point = len >> PAGE_SHIFT;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001193
1194 /* we allocated a power-of-2 sized page set, so we may want to trim off
1195 * the excess */
1196 if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages) {
1197 while (total > point) {
1198 order = ilog2(total - point);
1199 n = 1 << order;
1200 kdebug("shave %lu/%lu @%lu", n, total - point, total);
David Howells33e5d7692009-04-02 16:56:32 -07001201 atomic_long_sub(n, &mmap_pages_allocated);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001202 total -= n;
1203 set_page_refcounted(pages + total);
1204 __free_pages(pages + total, order);
1205 }
David Howells8feae132009-01-08 12:04:47 +00001206 }
1207
David Howells8feae132009-01-08 12:04:47 +00001208 for (point = 1; point < total; point++)
1209 set_page_refcounted(&pages[point]);
1210
1211 base = page_address(pages);
1212 region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
1213 region->vm_start = (unsigned long) base;
Bob Liuf67d9b12011-05-24 17:12:56 -07001214 region->vm_end = region->vm_start + len;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001215 region->vm_top = region->vm_start + (total << PAGE_SHIFT);
David Howells8feae132009-01-08 12:04:47 +00001216
1217 vma->vm_start = region->vm_start;
1218 vma->vm_end = region->vm_start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 if (vma->vm_file) {
1221 /* read the contents of a file into the copy */
1222 mm_segment_t old_fs;
1223 loff_t fpos;
1224
1225 fpos = vma->vm_pgoff;
1226 fpos <<= PAGE_SHIFT;
1227
1228 old_fs = get_fs();
1229 set_fs(KERNEL_DS);
Bob Liuf67d9b12011-05-24 17:12:56 -07001230 ret = vma->vm_file->f_op->read(vma->vm_file, base, len, &fpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 set_fs(old_fs);
1232
1233 if (ret < 0)
1234 goto error_free;
1235
1236 /* clear the last little bit */
Bob Liuf67d9b12011-05-24 17:12:56 -07001237 if (ret < len)
1238 memset(base + ret, 0, len - ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241
1242 return 0;
1243
1244error_free:
Namhyung Kim7223bb42011-05-24 17:11:26 -07001245 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +00001246 region->vm_start = vma->vm_start = 0;
1247 region->vm_end = vma->vm_end = 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001248 region->vm_top = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return ret;
1250
1251enomem:
Greg Ungerer05ae6fa2009-01-13 17:30:22 +10001252 printk("Allocation of length %lu from process %d (%s) failed\n",
1253 len, current->pid, current->comm);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001254 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return -ENOMEM;
1256}
1257
1258/*
1259 * handle mapping creation for uClinux
1260 */
Al Viroe3fc6292012-05-30 20:08:42 -04001261unsigned long do_mmap_pgoff(struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unsigned long addr,
1263 unsigned long len,
1264 unsigned long prot,
1265 unsigned long flags,
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001266 unsigned long pgoff,
Michel Lespinasse41badc12013-02-22 16:32:47 -08001267 unsigned long *populate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
David Howells8feae132009-01-08 12:04:47 +00001269 struct vm_area_struct *vma;
1270 struct vm_region *region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct rb_node *rb;
David Howells8feae132009-01-08 12:04:47 +00001272 unsigned long capabilities, vm_flags, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 int ret;
1274
David Howells8feae132009-01-08 12:04:47 +00001275 kenter(",%lx,%lx,%lx,%lx,%lx", addr, len, prot, flags, pgoff);
1276
Michel Lespinasse41badc12013-02-22 16:32:47 -08001277 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 /* decide whether we should attempt the mapping, and if so what sort of
1280 * mapping */
1281 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
1282 &capabilities);
David Howells8feae132009-01-08 12:04:47 +00001283 if (ret < 0) {
1284 kleave(" = %d [val]", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return ret;
David Howells8feae132009-01-08 12:04:47 +00001286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
David Howells06aab5a2009-09-24 12:33:48 +01001288 /* we ignore the address hint */
1289 addr = 0;
Bob Liuf67d9b12011-05-24 17:12:56 -07001290 len = PAGE_ALIGN(len);
David Howells06aab5a2009-09-24 12:33:48 +01001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /* we've determined that we can make the mapping, now translate what we
1293 * now know into VMA flags */
1294 vm_flags = determine_vm_flags(file, prot, flags, capabilities);
1295
David Howells8feae132009-01-08 12:04:47 +00001296 /* we're going to need to record the mapping */
1297 region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
1298 if (!region)
1299 goto error_getting_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
David Howells8feae132009-01-08 12:04:47 +00001301 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
1302 if (!vma)
1303 goto error_getting_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
David Howells1e2ae592010-01-15 17:01:33 -08001305 region->vm_usage = 1;
David Howells8feae132009-01-08 12:04:47 +00001306 region->vm_flags = vm_flags;
1307 region->vm_pgoff = pgoff;
1308
Rik van Riel5beb4932010-03-05 13:42:07 -08001309 INIT_LIST_HEAD(&vma->anon_vma_chain);
David Howells8feae132009-01-08 12:04:47 +00001310 vma->vm_flags = vm_flags;
1311 vma->vm_pgoff = pgoff;
1312
1313 if (file) {
Al Virocb0942b2012-08-27 14:48:26 -04001314 region->vm_file = get_file(file);
1315 vma->vm_file = get_file(file);
David Howells8feae132009-01-08 12:04:47 +00001316 }
1317
1318 down_write(&nommu_region_sem);
1319
1320 /* if we want to share, we need to check for regions created by other
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 * mmap() calls that overlap with our proposed mapping
David Howells8feae132009-01-08 12:04:47 +00001322 * - we can only share with a superset match on most regular files
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 * - shared mappings on character devices and memory backed files are
1324 * permitted to overlap inexactly as far as we are concerned for in
1325 * these cases, sharing is handled in the driver or filesystem rather
1326 * than here
1327 */
1328 if (vm_flags & VM_MAYSHARE) {
David Howells8feae132009-01-08 12:04:47 +00001329 struct vm_region *pregion;
1330 unsigned long pglen, rpglen, pgend, rpgend, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
David Howells8feae132009-01-08 12:04:47 +00001332 pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1333 pgend = pgoff + pglen;
David Howells165b2392007-03-22 00:11:24 -08001334
David Howells8feae132009-01-08 12:04:47 +00001335 for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
1336 pregion = rb_entry(rb, struct vm_region, vm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
David Howells8feae132009-01-08 12:04:47 +00001338 if (!(pregion->vm_flags & VM_MAYSHARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 continue;
1340
1341 /* search for overlapping mappings on the same file */
Al Viro496ad9a2013-01-23 17:07:38 -05001342 if (file_inode(pregion->vm_file) !=
1343 file_inode(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 continue;
1345
David Howells8feae132009-01-08 12:04:47 +00001346 if (pregion->vm_pgoff >= pgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 continue;
1348
David Howells8feae132009-01-08 12:04:47 +00001349 rpglen = pregion->vm_end - pregion->vm_start;
1350 rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1351 rpgend = pregion->vm_pgoff + rpglen;
1352 if (pgoff >= rpgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 continue;
1354
David Howells8feae132009-01-08 12:04:47 +00001355 /* handle inexactly overlapping matches between
1356 * mappings */
1357 if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
1358 !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
1359 /* new mapping is not a subset of the region */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (!(capabilities & BDI_CAP_MAP_DIRECT))
1361 goto sharing_violation;
1362 continue;
1363 }
1364
David Howells8feae132009-01-08 12:04:47 +00001365 /* we've found a region we can share */
David Howells1e2ae592010-01-15 17:01:33 -08001366 pregion->vm_usage++;
David Howells8feae132009-01-08 12:04:47 +00001367 vma->vm_region = pregion;
1368 start = pregion->vm_start;
1369 start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
1370 vma->vm_start = start;
1371 vma->vm_end = start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
David Howells8feae132009-01-08 12:04:47 +00001373 if (pregion->vm_flags & VM_MAPPED_COPY) {
1374 kdebug("share copy");
1375 vma->vm_flags |= VM_MAPPED_COPY;
1376 } else {
1377 kdebug("share mmap");
1378 ret = do_mmap_shared_file(vma);
1379 if (ret < 0) {
1380 vma->vm_region = NULL;
1381 vma->vm_start = 0;
1382 vma->vm_end = 0;
David Howells1e2ae592010-01-15 17:01:33 -08001383 pregion->vm_usage--;
David Howells8feae132009-01-08 12:04:47 +00001384 pregion = NULL;
1385 goto error_just_free;
1386 }
1387 }
1388 fput(region->vm_file);
1389 kmem_cache_free(vm_region_jar, region);
1390 region = pregion;
1391 result = start;
1392 goto share;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /* obtain the address at which to make a shared mapping
1396 * - this is the hook for quasi-memory character devices to
1397 * tell us the location of a shared mapping
1398 */
David Howells645d83c2009-09-24 15:13:10 +01001399 if (capabilities & BDI_CAP_MAP_DIRECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 addr = file->f_op->get_unmapped_area(file, addr, len,
1401 pgoff, flags);
Namhyung Kimbb005a52011-05-24 17:11:27 -07001402 if (IS_ERR_VALUE(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 ret = addr;
Namhyung Kimbb005a52011-05-24 17:11:27 -07001404 if (ret != -ENOSYS)
David Howells8feae132009-01-08 12:04:47 +00001405 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 /* the driver refused to tell us where to site
1408 * the mapping so we'll have to attempt to copy
1409 * it */
Namhyung Kimbb005a52011-05-24 17:11:27 -07001410 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (!(capabilities & BDI_CAP_MAP_COPY))
David Howells8feae132009-01-08 12:04:47 +00001412 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 capabilities &= ~BDI_CAP_MAP_DIRECT;
David Howells8feae132009-01-08 12:04:47 +00001415 } else {
1416 vma->vm_start = region->vm_start = addr;
1417 vma->vm_end = region->vm_end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419 }
1420 }
1421
David Howells8feae132009-01-08 12:04:47 +00001422 vma->vm_region = region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
David Howells645d83c2009-09-24 15:13:10 +01001424 /* set up the mapping
1425 * - the region is filled in if BDI_CAP_MAP_DIRECT is still set
1426 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (file && vma->vm_flags & VM_SHARED)
David Howells8feae132009-01-08 12:04:47 +00001428 ret = do_mmap_shared_file(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 else
David Howells645d83c2009-09-24 15:13:10 +01001430 ret = do_mmap_private(vma, region, len, capabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (ret < 0)
David Howells645d83c2009-09-24 15:13:10 +01001432 goto error_just_free;
1433 add_nommu_region(region);
David Howells8feae132009-01-08 12:04:47 +00001434
Jie Zhangea637632009-12-14 18:00:02 -08001435 /* clear anonymous mappings that don't ask for uninitialized data */
1436 if (!vma->vm_file && !(flags & MAP_UNINITIALIZED))
1437 memset((void *)region->vm_start, 0,
1438 region->vm_end - region->vm_start);
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /* okay... we have a mapping; now we have to register it */
David Howells8feae132009-01-08 12:04:47 +00001441 result = vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 current->mm->total_vm += len >> PAGE_SHIFT;
1444
David Howells8feae132009-01-08 12:04:47 +00001445share:
1446 add_vma_to_mm(current->mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Mike Frysingercfe79c02010-01-06 17:23:23 +00001448 /* we flush the region from the icache only when the first executable
1449 * mapping of it is made */
1450 if (vma->vm_flags & VM_EXEC && !region->vm_icache_flushed) {
1451 flush_icache_range(region->vm_start, region->vm_end);
1452 region->vm_icache_flushed = true;
1453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Mike Frysingercfe79c02010-01-06 17:23:23 +00001455 up_write(&nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
David Howells8feae132009-01-08 12:04:47 +00001457 kleave(" = %lx", result);
1458 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
David Howells8feae132009-01-08 12:04:47 +00001460error_just_free:
1461 up_write(&nommu_region_sem);
1462error:
David Howells89a86402009-10-30 13:13:26 +00001463 if (region->vm_file)
1464 fput(region->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001465 kmem_cache_free(vm_region_jar, region);
David Howells89a86402009-10-30 13:13:26 +00001466 if (vma->vm_file)
1467 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001468 kmem_cache_free(vm_area_cachep, vma);
1469 kleave(" = %d", ret);
1470 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
David Howells8feae132009-01-08 12:04:47 +00001472sharing_violation:
1473 up_write(&nommu_region_sem);
1474 printk(KERN_WARNING "Attempt to share mismatched mappings\n");
1475 ret = -EINVAL;
1476 goto error;
1477
1478error_getting_vma:
1479 kmem_cache_free(vm_region_jar, region);
1480 printk(KERN_WARNING "Allocation of vma for %lu byte allocation"
1481 " from process %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 len, current->pid);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001483 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return -ENOMEM;
1485
David Howells8feae132009-01-08 12:04:47 +00001486error_getting_region:
1487 printk(KERN_WARNING "Allocation of vm region for %lu byte allocation"
1488 " from process %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 len, current->pid);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001490 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return -ENOMEM;
1492}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001493
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001494SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1495 unsigned long, prot, unsigned long, flags,
1496 unsigned long, fd, unsigned long, pgoff)
1497{
1498 struct file *file = NULL;
1499 unsigned long retval = -EBADF;
1500
Al Viro120a7952010-10-30 02:54:44 -04001501 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001502 if (!(flags & MAP_ANONYMOUS)) {
1503 file = fget(fd);
1504 if (!file)
1505 goto out;
1506 }
1507
1508 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1509
Greg Ungererad1ed292012-06-04 14:29:59 +10001510 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001511
1512 if (file)
1513 fput(file);
1514out:
1515 return retval;
1516}
1517
Christoph Hellwiga4679372010-03-10 15:21:15 -08001518#ifdef __ARCH_WANT_SYS_OLD_MMAP
1519struct mmap_arg_struct {
1520 unsigned long addr;
1521 unsigned long len;
1522 unsigned long prot;
1523 unsigned long flags;
1524 unsigned long fd;
1525 unsigned long offset;
1526};
1527
1528SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1529{
1530 struct mmap_arg_struct a;
1531
1532 if (copy_from_user(&a, arg, sizeof(a)))
1533 return -EFAULT;
1534 if (a.offset & ~PAGE_MASK)
1535 return -EINVAL;
1536
1537 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1538 a.offset >> PAGE_SHIFT);
1539}
1540#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542/*
David Howells8feae132009-01-08 12:04:47 +00001543 * split a vma into two pieces at address 'addr', a new vma is allocated either
1544 * for the first part or the tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
David Howells8feae132009-01-08 12:04:47 +00001546int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
1547 unsigned long addr, int new_below)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
David Howells8feae132009-01-08 12:04:47 +00001549 struct vm_area_struct *new;
1550 struct vm_region *region;
1551 unsigned long npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
David Howells8feae132009-01-08 12:04:47 +00001553 kenter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
David Howells779c1022010-01-15 17:01:34 -08001555 /* we're only permitted to split anonymous regions (these should have
1556 * only a single usage on the region) */
1557 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +00001558 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
David Howells8feae132009-01-08 12:04:47 +00001560 if (mm->map_count >= sysctl_max_map_count)
1561 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
David Howells8feae132009-01-08 12:04:47 +00001563 region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
1564 if (!region)
1565 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
David Howells8feae132009-01-08 12:04:47 +00001567 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1568 if (!new) {
1569 kmem_cache_free(vm_region_jar, region);
1570 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
David Howells8feae132009-01-08 12:04:47 +00001572
1573 /* most fields are the same, copy all, and then fixup */
1574 *new = *vma;
1575 *region = *vma->vm_region;
1576 new->vm_region = region;
1577
1578 npages = (addr - vma->vm_start) >> PAGE_SHIFT;
1579
1580 if (new_below) {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001581 region->vm_top = region->vm_end = new->vm_end = addr;
David Howells8feae132009-01-08 12:04:47 +00001582 } else {
1583 region->vm_start = new->vm_start = addr;
1584 region->vm_pgoff = new->vm_pgoff += npages;
1585 }
1586
1587 if (new->vm_ops && new->vm_ops->open)
1588 new->vm_ops->open(new);
1589
1590 delete_vma_from_mm(vma);
1591 down_write(&nommu_region_sem);
1592 delete_nommu_region(vma->vm_region);
1593 if (new_below) {
1594 vma->vm_region->vm_start = vma->vm_start = addr;
1595 vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
1596 } else {
1597 vma->vm_region->vm_end = vma->vm_end = addr;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001598 vma->vm_region->vm_top = addr;
David Howells8feae132009-01-08 12:04:47 +00001599 }
1600 add_nommu_region(vma->vm_region);
1601 add_nommu_region(new->vm_region);
1602 up_write(&nommu_region_sem);
1603 add_vma_to_mm(mm, vma);
1604 add_vma_to_mm(mm, new);
1605 return 0;
1606}
1607
1608/*
1609 * shrink a VMA by removing the specified chunk from either the beginning or
1610 * the end
1611 */
1612static int shrink_vma(struct mm_struct *mm,
1613 struct vm_area_struct *vma,
1614 unsigned long from, unsigned long to)
1615{
1616 struct vm_region *region;
1617
1618 kenter("");
1619
1620 /* adjust the VMA's pointers, which may reposition it in the MM's tree
1621 * and list */
1622 delete_vma_from_mm(vma);
1623 if (from > vma->vm_start)
1624 vma->vm_end = from;
1625 else
1626 vma->vm_start = to;
1627 add_vma_to_mm(mm, vma);
1628
1629 /* cut the backing region down to size */
1630 region = vma->vm_region;
David Howells1e2ae592010-01-15 17:01:33 -08001631 BUG_ON(region->vm_usage != 1);
David Howells8feae132009-01-08 12:04:47 +00001632
1633 down_write(&nommu_region_sem);
1634 delete_nommu_region(region);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001635 if (from > region->vm_start) {
1636 to = region->vm_top;
1637 region->vm_top = region->vm_end = from;
1638 } else {
David Howells8feae132009-01-08 12:04:47 +00001639 region->vm_start = to;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001640 }
David Howells8feae132009-01-08 12:04:47 +00001641 add_nommu_region(region);
1642 up_write(&nommu_region_sem);
1643
1644 free_page_series(from, to);
1645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
David Howells30340972006-09-27 01:50:20 -07001648/*
1649 * release a mapping
David Howells8feae132009-01-08 12:04:47 +00001650 * - under NOMMU conditions the chunk to be unmapped must be backed by a single
1651 * VMA, though it need not cover the whole VMA
David Howells30340972006-09-27 01:50:20 -07001652 */
David Howells8feae132009-01-08 12:04:47 +00001653int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
David Howells8feae132009-01-08 12:04:47 +00001655 struct vm_area_struct *vma;
Bob Liuf67d9b12011-05-24 17:12:56 -07001656 unsigned long end;
David Howells8feae132009-01-08 12:04:47 +00001657 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
David Howells8feae132009-01-08 12:04:47 +00001659 kenter(",%lx,%zx", start, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Bob Liuf67d9b12011-05-24 17:12:56 -07001661 len = PAGE_ALIGN(len);
David Howells8feae132009-01-08 12:04:47 +00001662 if (len == 0)
1663 return -EINVAL;
1664
Bob Liuf67d9b12011-05-24 17:12:56 -07001665 end = start + len;
1666
David Howells8feae132009-01-08 12:04:47 +00001667 /* find the first potentially overlapping VMA */
1668 vma = find_vma(mm, start);
1669 if (!vma) {
David Howells33e5d7692009-04-02 16:56:32 -07001670 static int limit = 0;
1671 if (limit < 5) {
1672 printk(KERN_WARNING
1673 "munmap of memory not mmapped by process %d"
1674 " (%s): 0x%lx-0x%lx\n",
1675 current->pid, current->comm,
1676 start, start + len - 1);
1677 limit++;
1678 }
David Howells8feae132009-01-08 12:04:47 +00001679 return -EINVAL;
David Howells30340972006-09-27 01:50:20 -07001680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
David Howells8feae132009-01-08 12:04:47 +00001682 /* we're allowed to split an anonymous VMA but not a file-backed one */
1683 if (vma->vm_file) {
1684 do {
1685 if (start > vma->vm_start) {
1686 kleave(" = -EINVAL [miss]");
1687 return -EINVAL;
1688 }
1689 if (end == vma->vm_end)
1690 goto erase_whole_vma;
Namhyung Kimd75a3102011-05-24 17:11:25 -07001691 vma = vma->vm_next;
1692 } while (vma);
David Howells8feae132009-01-08 12:04:47 +00001693 kleave(" = -EINVAL [split file]");
1694 return -EINVAL;
1695 } else {
1696 /* the chunk must be a subset of the VMA found */
1697 if (start == vma->vm_start && end == vma->vm_end)
1698 goto erase_whole_vma;
1699 if (start < vma->vm_start || end > vma->vm_end) {
1700 kleave(" = -EINVAL [superset]");
1701 return -EINVAL;
1702 }
1703 if (start & ~PAGE_MASK) {
1704 kleave(" = -EINVAL [unaligned start]");
1705 return -EINVAL;
1706 }
1707 if (end != vma->vm_end && end & ~PAGE_MASK) {
1708 kleave(" = -EINVAL [unaligned split]");
1709 return -EINVAL;
1710 }
1711 if (start != vma->vm_start && end != vma->vm_end) {
1712 ret = split_vma(mm, vma, start, 1);
1713 if (ret < 0) {
1714 kleave(" = %d [split]", ret);
1715 return ret;
1716 }
1717 }
1718 return shrink_vma(mm, vma, start, end);
1719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
David Howells8feae132009-01-08 12:04:47 +00001721erase_whole_vma:
1722 delete_vma_from_mm(vma);
1723 delete_vma(mm, vma);
1724 kleave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return 0;
1726}
Paul Mundtb5073172007-07-21 04:37:25 -07001727EXPORT_SYMBOL(do_munmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Al Virobfce2812012-04-20 21:57:04 -04001729int vm_munmap(unsigned long addr, size_t len)
David Howells30340972006-09-27 01:50:20 -07001730{
Al Virobfce2812012-04-20 21:57:04 -04001731 struct mm_struct *mm = current->mm;
David Howells30340972006-09-27 01:50:20 -07001732 int ret;
David Howells30340972006-09-27 01:50:20 -07001733
1734 down_write(&mm->mmap_sem);
1735 ret = do_munmap(mm, addr, len);
1736 up_write(&mm->mmap_sem);
1737 return ret;
1738}
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001739EXPORT_SYMBOL(vm_munmap);
1740
1741SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
1742{
Al Virobfce2812012-04-20 21:57:04 -04001743 return vm_munmap(addr, len);
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001744}
David Howells30340972006-09-27 01:50:20 -07001745
1746/*
David Howells8feae132009-01-08 12:04:47 +00001747 * release all the mappings made in a process's VM space
David Howells30340972006-09-27 01:50:20 -07001748 */
David Howells8feae132009-01-08 12:04:47 +00001749void exit_mmap(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
David Howells8feae132009-01-08 12:04:47 +00001751 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
David Howells8feae132009-01-08 12:04:47 +00001753 if (!mm)
1754 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
David Howells8feae132009-01-08 12:04:47 +00001756 kenter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
David Howells8feae132009-01-08 12:04:47 +00001758 mm->total_vm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
David Howells8feae132009-01-08 12:04:47 +00001760 while ((vma = mm->mmap)) {
1761 mm->mmap = vma->vm_next;
1762 delete_vma_from_mm(vma);
1763 delete_vma(mm, vma);
Steven J. Magnani04c34962010-11-24 12:56:54 -08001764 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
David Howells8feae132009-01-08 12:04:47 +00001766
1767 kleave("");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07001770unsigned long vm_brk(unsigned long addr, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
1772 return -ENOMEM;
1773}
1774
1775/*
David Howells6fa5f802006-09-27 01:50:21 -07001776 * expand (or shrink) an existing mapping, potentially moving it at the same
1777 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 *
David Howells6fa5f802006-09-27 01:50:21 -07001779 * under NOMMU conditions, we only permit changing a mapping's size, and only
David Howells8feae132009-01-08 12:04:47 +00001780 * as long as it stays within the region allocated by do_mmap_private() and the
1781 * block is not shareable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 *
David Howells6fa5f802006-09-27 01:50:21 -07001783 * MREMAP_FIXED is not supported under NOMMU conditions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 */
Al Viro4b377ba2013-03-04 10:47:59 -05001785static unsigned long do_mremap(unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 unsigned long old_len, unsigned long new_len,
1787 unsigned long flags, unsigned long new_addr)
1788{
David Howells6fa5f802006-09-27 01:50:21 -07001789 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 /* insanity checks first */
Bob Liuf67d9b12011-05-24 17:12:56 -07001792 old_len = PAGE_ALIGN(old_len);
1793 new_len = PAGE_ALIGN(new_len);
David Howells8feae132009-01-08 12:04:47 +00001794 if (old_len == 0 || new_len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return (unsigned long) -EINVAL;
1796
David Howells8feae132009-01-08 12:04:47 +00001797 if (addr & ~PAGE_MASK)
1798 return -EINVAL;
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if (flags & MREMAP_FIXED && new_addr != addr)
1801 return (unsigned long) -EINVAL;
1802
David Howells8feae132009-01-08 12:04:47 +00001803 vma = find_vma_exact(current->mm, addr, old_len);
David Howells6fa5f802006-09-27 01:50:21 -07001804 if (!vma)
1805 return (unsigned long) -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
David Howells6fa5f802006-09-27 01:50:21 -07001807 if (vma->vm_end != vma->vm_start + old_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return (unsigned long) -EFAULT;
1809
David Howells6fa5f802006-09-27 01:50:21 -07001810 if (vma->vm_flags & VM_MAYSHARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 return (unsigned long) -EPERM;
1812
David Howells8feae132009-01-08 12:04:47 +00001813 if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return (unsigned long) -ENOMEM;
1815
1816 /* all checks complete - do it */
David Howells6fa5f802006-09-27 01:50:21 -07001817 vma->vm_end = vma->vm_start + new_len;
David Howells6fa5f802006-09-27 01:50:21 -07001818 return vma->vm_start;
1819}
1820
Heiko Carstens6a6160a2009-01-14 14:14:15 +01001821SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
1822 unsigned long, new_len, unsigned long, flags,
1823 unsigned long, new_addr)
David Howells6fa5f802006-09-27 01:50:21 -07001824{
1825 unsigned long ret;
1826
1827 down_write(&current->mm->mmap_sem);
1828 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
1829 up_write(&current->mm->mmap_sem);
1830 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
Michel Lespinasse240aade2013-02-22 16:35:56 -08001833struct page *follow_page_mask(struct vm_area_struct *vma,
1834 unsigned long address, unsigned int flags,
1835 unsigned int *page_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Michel Lespinasse240aade2013-02-22 16:35:56 -08001837 *page_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return NULL;
1839}
1840
Bob Liu8f3b1322011-07-08 15:39:46 -07001841int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1842 unsigned long pfn, unsigned long size, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Bob Liu8f3b1322011-07-08 15:39:46 -07001844 if (addr != (pfn << PAGE_SHIFT))
1845 return -EINVAL;
1846
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001847 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
Luke Yang22c4af42006-07-14 00:24:09 -07001850EXPORT_SYMBOL(remap_pfn_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Linus Torvalds3c0b9de2013-04-27 13:25:38 -07001852int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1853{
1854 unsigned long pfn = start >> PAGE_SHIFT;
1855 unsigned long vm_len = vma->vm_end - vma->vm_start;
1856
1857 pfn += vma->vm_pgoff;
1858 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1859}
1860EXPORT_SYMBOL(vm_iomap_memory);
1861
Paul Mundtf905bc42008-02-04 22:29:59 -08001862int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1863 unsigned long pgoff)
1864{
1865 unsigned int size = vma->vm_end - vma->vm_start;
1866
1867 if (!(vma->vm_flags & VM_USERMAP))
1868 return -EINVAL;
1869
1870 vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1871 vma->vm_end = vma->vm_start + size;
1872
1873 return 0;
1874}
1875EXPORT_SYMBOL(remap_vmalloc_range);
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
1878 unsigned long len, unsigned long pgoff, unsigned long flags)
1879{
1880 return -ENOMEM;
1881}
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883void unmap_mapping_range(struct address_space *mapping,
1884 loff_t const holebegin, loff_t const holelen,
1885 int even_cows)
1886{
1887}
Luke Yang22c4af42006-07-14 00:24:09 -07001888EXPORT_SYMBOL(unmap_mapping_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890/*
1891 * Check that a process has enough memory to allocate a new virtual
1892 * mapping. 0 means there is enough memory for the allocation to
1893 * succeed and -ENOMEM implies there is not.
1894 *
1895 * We currently support three overcommit policies, which are set via the
1896 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1897 *
1898 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1899 * Additional code 2002 Jul 20 by Robert Love.
1900 *
1901 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1902 *
1903 * Note this is a helper function intended to be used by LSMs which
1904 * wish to use this logic.
1905 */
Alan Cox34b4e4a2007-08-22 14:01:28 -07001906int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001908 unsigned long free, allowed, reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910 vm_acct_memory(pages);
1911
1912 /*
1913 * Sometimes we want to use more memory than we have
1914 */
1915 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
1916 return 0;
1917
1918 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
Dmitry Finkc15bef32011-07-25 17:12:19 -07001919 free = global_page_state(NR_FREE_PAGES);
1920 free += global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Dmitry Finkc15bef32011-07-25 17:12:19 -07001922 /*
1923 * shmem pages shouldn't be counted as free in this
1924 * case, they can't be purged, only swapped out, and
1925 * that won't affect the overall amount of available
1926 * memory in the system.
1927 */
1928 free -= global_page_state(NR_SHMEM);
1929
Shaohua Liec8acf22013-02-22 16:34:38 -08001930 free += get_nr_swap_pages();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /*
1933 * Any slabs which are created with the
1934 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1935 * which are reclaimable, under pressure. The dentry
1936 * cache and most inode caches should fall into this
1937 */
Christoph Lameter972d1a72006-09-25 23:31:51 -07001938 free += global_page_state(NR_SLAB_RECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /*
Dmitry Finkc15bef32011-07-25 17:12:19 -07001941 * Leave reserved pages. The pages are not for anonymous pages.
1942 */
1943 if (free <= totalreserve_pages)
1944 goto error;
1945 else
1946 free -= totalreserve_pages;
1947
1948 /*
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001949 * Reserve some for root
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 */
1951 if (!cap_sys_admin)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001952 free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 if (free > pages)
1955 return 0;
1956
Hideo AOKId5ddc792006-04-10 22:53:01 -07001957 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959
Jerome Marchand00619bc2013-11-12 15:08:31 -08001960 allowed = vm_commit_limit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 /*
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001962 * Reserve some 3% for root
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 */
1964 if (!cap_sys_admin)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001965 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001967 /*
1968 * Don't let a single process grow so big a user can't recover
1969 */
1970 if (mm) {
1971 reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10);
1972 allowed -= min(mm->total_vm / 32, reserve);
1973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07001975 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return 0;
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07001977
Hideo AOKId5ddc792006-04-10 22:53:01 -07001978error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 vm_unacct_memory(pages);
1980
1981 return -ENOMEM;
1982}
1983
Stephen Wilsoncae5d392011-03-13 15:49:17 -04001984int in_gate_area_no_mm(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 return 0;
1987}
David Howellsb0e15192006-01-06 00:11:42 -08001988
Nick Piggind0217ac2007-07-19 01:47:03 -07001989int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
David Howellsb0e15192006-01-06 00:11:42 -08001990{
1991 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001992 return 0;
David Howellsb0e15192006-01-06 00:11:42 -08001993}
Paul Mundtb5073172007-07-21 04:37:25 -07001994EXPORT_SYMBOL(filemap_fault);
David Howells0ec76a12006-09-27 01:50:15 -07001995
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07001996void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
1997{
1998 BUG();
1999}
2000EXPORT_SYMBOL(filemap_map_pages);
2001
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -07002002int generic_file_remap_pages(struct vm_area_struct *vma, unsigned long addr,
2003 unsigned long size, pgoff_t pgoff)
2004{
2005 BUG();
2006 return 0;
2007}
2008EXPORT_SYMBOL(generic_file_remap_pages);
2009
Mike Frysingerf55f1992011-03-29 14:05:12 +01002010static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
2011 unsigned long addr, void *buf, int len, int write)
David Howells0ec76a12006-09-27 01:50:15 -07002012{
David Howells0ec76a12006-09-27 01:50:15 -07002013 struct vm_area_struct *vma;
David Howells0ec76a12006-09-27 01:50:15 -07002014
2015 down_read(&mm->mmap_sem);
2016
2017 /* the access must start within one of the target process's mappings */
David Howells0159b142006-09-27 01:50:16 -07002018 vma = find_vma(mm, addr);
2019 if (vma) {
David Howells0ec76a12006-09-27 01:50:15 -07002020 /* don't overrun this mapping */
2021 if (addr + len >= vma->vm_end)
2022 len = vma->vm_end - addr;
2023
2024 /* only read or write mappings where it is permitted */
David Howellsd00c7b992006-09-27 01:50:19 -07002025 if (write && vma->vm_flags & VM_MAYWRITE)
Jie Zhang79597222010-01-06 17:23:28 +00002026 copy_to_user_page(vma, NULL, addr,
2027 (void *) addr, buf, len);
David Howellsd00c7b992006-09-27 01:50:19 -07002028 else if (!write && vma->vm_flags & VM_MAYREAD)
Jie Zhang79597222010-01-06 17:23:28 +00002029 copy_from_user_page(vma, NULL, addr,
2030 buf, (void *) addr, len);
David Howells0ec76a12006-09-27 01:50:15 -07002031 else
2032 len = 0;
2033 } else {
2034 len = 0;
2035 }
2036
2037 up_read(&mm->mmap_sem);
Mike Frysingerf55f1992011-03-29 14:05:12 +01002038
2039 return len;
2040}
2041
2042/**
2043 * @access_remote_vm - access another process' address space
2044 * @mm: the mm_struct of the target address space
2045 * @addr: start address to access
2046 * @buf: source or destination buffer
2047 * @len: number of bytes to transfer
2048 * @write: whether the access is a write
2049 *
2050 * The caller must hold a reference on @mm.
2051 */
2052int access_remote_vm(struct mm_struct *mm, unsigned long addr,
2053 void *buf, int len, int write)
2054{
2055 return __access_remote_vm(NULL, mm, addr, buf, len, write);
2056}
2057
2058/*
2059 * Access another process' address space.
2060 * - source/target buffer must be kernel space
2061 */
2062int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
2063{
2064 struct mm_struct *mm;
2065
2066 if (addr + len < addr)
2067 return 0;
2068
2069 mm = get_task_mm(tsk);
2070 if (!mm)
2071 return 0;
2072
2073 len = __access_remote_vm(tsk, mm, addr, buf, len, write);
2074
David Howells0ec76a12006-09-27 01:50:15 -07002075 mmput(mm);
2076 return len;
2077}
David Howells7e660872010-01-15 17:01:39 -08002078
2079/**
2080 * nommu_shrink_inode_mappings - Shrink the shared mappings on an inode
2081 * @inode: The inode to check
2082 * @size: The current filesize of the inode
2083 * @newsize: The proposed filesize of the inode
2084 *
2085 * Check the shared mappings on an inode on behalf of a shrinking truncate to
2086 * make sure that that any outstanding VMAs aren't broken and then shrink the
2087 * vm_regions that extend that beyond so that do_mmap_pgoff() doesn't
2088 * automatically grant mappings that are too large.
2089 */
2090int nommu_shrink_inode_mappings(struct inode *inode, size_t size,
2091 size_t newsize)
2092{
2093 struct vm_area_struct *vma;
David Howells7e660872010-01-15 17:01:39 -08002094 struct vm_region *region;
2095 pgoff_t low, high;
2096 size_t r_size, r_top;
2097
2098 low = newsize >> PAGE_SHIFT;
2099 high = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
2100
2101 down_write(&nommu_region_sem);
David Howells918e5562012-02-23 13:50:35 +00002102 mutex_lock(&inode->i_mapping->i_mmap_mutex);
David Howells7e660872010-01-15 17:01:39 -08002103
2104 /* search for VMAs that fall within the dead zone */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002105 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, low, high) {
David Howells7e660872010-01-15 17:01:39 -08002106 /* found one - only interested if it's shared out of the page
2107 * cache */
2108 if (vma->vm_flags & VM_SHARED) {
David Howells918e5562012-02-23 13:50:35 +00002109 mutex_unlock(&inode->i_mapping->i_mmap_mutex);
David Howells7e660872010-01-15 17:01:39 -08002110 up_write(&nommu_region_sem);
2111 return -ETXTBSY; /* not quite true, but near enough */
2112 }
2113 }
2114
2115 /* reduce any regions that overlap the dead zone - if in existence,
2116 * these will be pointed to by VMAs that don't overlap the dead zone
2117 *
2118 * we don't check for any regions that start beyond the EOF as there
2119 * shouldn't be any
2120 */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002121 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap,
2122 0, ULONG_MAX) {
David Howells7e660872010-01-15 17:01:39 -08002123 if (!(vma->vm_flags & VM_SHARED))
2124 continue;
2125
2126 region = vma->vm_region;
2127 r_size = region->vm_top - region->vm_start;
2128 r_top = (region->vm_pgoff << PAGE_SHIFT) + r_size;
2129
2130 if (r_top > newsize) {
2131 region->vm_top -= r_top - newsize;
2132 if (region->vm_end > region->vm_top)
2133 region->vm_end = region->vm_top;
2134 }
2135 }
2136
David Howells918e5562012-02-23 13:50:35 +00002137 mutex_unlock(&inode->i_mapping->i_mmap_mutex);
David Howells7e660872010-01-15 17:01:39 -08002138 up_write(&nommu_region_sem);
2139 return 0;
2140}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07002141
2142/*
2143 * Initialise sysctl_user_reserve_kbytes.
2144 *
2145 * This is intended to prevent a user from starting a single memory hogging
2146 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
2147 * mode.
2148 *
2149 * The default value is min(3% of free memory, 128MB)
2150 * 128MB is enough to recover with sshd/login, bash, and top/kill.
2151 */
2152static int __meminit init_user_reserve(void)
2153{
2154 unsigned long free_kbytes;
2155
2156 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
2157
2158 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
2159 return 0;
2160}
2161module_init(init_user_reserve)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07002162
2163/*
2164 * Initialise sysctl_admin_reserve_kbytes.
2165 *
2166 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
2167 * to log in and kill a memory hogging process.
2168 *
2169 * Systems with more than 256MB will reserve 8MB, enough to recover
2170 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
2171 * only reserve 3% of free pages by default.
2172 */
2173static int __meminit init_admin_reserve(void)
2174{
2175 unsigned long free_kbytes;
2176
2177 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
2178
2179 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
2180 return 0;
2181}
2182module_init(init_admin_reserve)