blob: 28bd8c4dff6feb3b0194118781a4d1267d42bded [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
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040018#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mm.h>
Davidlohr Bueso615d6e82014-04-07 15:37:25 -070020#include <linux/vmacache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/mman.h>
22#include <linux/swap.h>
23#include <linux/file.h>
24#include <linux/highmem.h>
25#include <linux/pagemap.h>
26#include <linux/slab.h>
27#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/blkdev.h>
29#include <linux/backing-dev.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070030#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/mount.h>
32#include <linux/personality.h>
33#include <linux/security.h>
34#include <linux/syscalls.h>
Al Viro120a7952010-10-30 02:54:44 -040035#include <linux/audit.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060036#include <linux/sched/sysctl.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070037#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/uaccess.h>
40#include <asm/tlb.h>
41#include <asm/tlbflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070042#include <asm/mmu_context.h>
David Howells8feae132009-01-08 12:04:47 +000043#include "internal.h"
44
David Howells8feae132009-01-08 12:04:47 +000045#if 0
46#define kenter(FMT, ...) \
47 printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
48#define kleave(FMT, ...) \
49 printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
50#define kdebug(FMT, ...) \
51 printk(KERN_DEBUG "xxx" FMT"yyy\n", ##__VA_ARGS__)
52#else
53#define kenter(FMT, ...) \
54 no_printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
55#define kleave(FMT, ...) \
56 no_printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
57#define kdebug(FMT, ...) \
58 no_printk(KERN_DEBUG FMT"\n", ##__VA_ARGS__)
59#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61void *high_memory;
Arnd Bergmann944b6872015-02-05 12:25:12 -080062EXPORT_SYMBOL(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063struct page *mem_map;
64unsigned long max_mapnr;
Hugh Dickins4266c972009-09-23 17:05:53 +010065unsigned long highest_memmap_pfn;
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070066struct percpu_counter vm_committed_as;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
68int sysctl_overcommit_ratio = 50; /* default is 50% */
Jerome Marchand49f0ce52014-01-21 15:49:14 -080069unsigned long sysctl_overcommit_kbytes __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
David Howellsfc4d5c22009-05-06 16:03:05 -070071int sysctl_nr_trim_pages = CONFIG_NOMMU_INITIAL_TRIM_EXCESS;
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -070072unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -070073unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074int heap_stack_gap = 0;
75
David Howells33e5d7692009-04-02 16:56:32 -070076atomic_long_t mmap_pages_allocated;
David Howells8feae132009-01-08 12:04:47 +000077
K. Y. Srinivasan997071b2012-11-15 14:34:42 -080078/*
79 * The global memory commitment made in the system can be a metric
80 * that can be used to drive ballooning decisions when Linux is hosted
81 * as a guest. On Hyper-V, the host implements a policy engine for dynamically
82 * balancing memory across competing virtual machines that are hosted.
83 * Several metrics drive this policy engine including the guest reported
84 * memory commitment.
85 */
86unsigned long vm_memory_committed(void)
87{
88 return percpu_counter_read_positive(&vm_committed_as);
89}
90
91EXPORT_SYMBOL_GPL(vm_memory_committed);
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093EXPORT_SYMBOL(mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
David Howells8feae132009-01-08 12:04:47 +000095/* list of mapped, potentially shareable regions */
96static struct kmem_cache *vm_region_jar;
97struct rb_root nommu_region_tree = RB_ROOT;
98DECLARE_RWSEM(nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400100const struct vm_operations_struct generic_file_vm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101};
102
103/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * Return the total memory allocated for this pointer, not
105 * just what the caller asked for.
106 *
107 * Doesn't have to be accurate, i.e. may have races.
108 */
109unsigned int kobjsize(const void *objp)
110{
111 struct page *page;
112
Michael Hennerich4016a132008-04-28 02:13:38 -0700113 /*
114 * If the object we have should not have ksize performed on it,
115 * return size of 0
116 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900117 if (!objp || !virt_addr_valid(objp))
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700118 return 0;
119
120 page = virt_to_head_page(objp);
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700121
122 /*
123 * If the allocator sets PageSlab, we know the pointer came from
124 * kmalloc().
125 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (PageSlab(page))
127 return ksize(objp);
128
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700129 /*
Paul Mundtab2e83e2009-01-08 12:04:48 +0000130 * If it's not a compound page, see if we have a matching VMA
131 * region. This test is intentionally done in reverse order,
132 * so if there's no VMA, we still fall through and hand back
133 * PAGE_SIZE for 0-order pages.
134 */
135 if (!PageCompound(page)) {
136 struct vm_area_struct *vma;
137
138 vma = find_vma(current->mm, (unsigned long)objp);
139 if (vma)
140 return vma->vm_end - vma->vm_start;
141 }
142
143 /*
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700144 * The ksize() function is only guaranteed to work for pointers
Paul Mundt5a1603b2008-06-12 16:29:55 +0900145 * returned by kmalloc(). So handle arbitrary pointers here.
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700146 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900147 return PAGE_SIZE << compound_order(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Michel Lespinasse28a35712013-02-22 16:35:55 -0800150long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
151 unsigned long start, unsigned long nr_pages,
152 unsigned int foll_flags, struct page **pages,
153 struct vm_area_struct **vmas, int *nonblocking)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Sonic Zhang910e46d2006-09-27 01:50:17 -0700155 struct vm_area_struct *vma;
David Howells7b4d5b82006-09-27 01:50:18 -0700156 unsigned long vm_flags;
157 int i;
158
159 /* calculate required read or write permissions.
Hugh Dickins58fa8792009-09-21 17:03:31 -0700160 * If FOLL_FORCE is set, we only require the "MAY" flags.
David Howells7b4d5b82006-09-27 01:50:18 -0700161 */
Hugh Dickins58fa8792009-09-21 17:03:31 -0700162 vm_flags = (foll_flags & FOLL_WRITE) ?
163 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
164 vm_flags &= (foll_flags & FOLL_FORCE) ?
165 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Peter Zijlstra9d737772009-06-25 11:58:55 +0200167 for (i = 0; i < nr_pages; i++) {
David Howells7561e8c2010-03-25 16:48:38 +0000168 vma = find_vma(mm, start);
David Howells7b4d5b82006-09-27 01:50:18 -0700169 if (!vma)
170 goto finish_or_fault;
171
172 /* protect what we can, including chardevs */
Hugh Dickins1c3aff12009-09-21 17:03:24 -0700173 if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
174 !(vm_flags & vma->vm_flags))
David Howells7b4d5b82006-09-27 01:50:18 -0700175 goto finish_or_fault;
Sonic Zhang910e46d2006-09-27 01:50:17 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (pages) {
178 pages[i] = virt_to_page(start);
179 if (pages[i])
180 page_cache_get(pages[i]);
181 }
182 if (vmas)
Sonic Zhang910e46d2006-09-27 01:50:17 -0700183 vmas[i] = vma;
David Howellse1ee65d2010-03-25 16:48:44 +0000184 start = (start + PAGE_SIZE) & PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
David Howells7b4d5b82006-09-27 01:50:18 -0700186
187 return i;
188
189finish_or_fault:
190 return i ? : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Nick Pigginb291f002008-10-18 20:26:44 -0700192
Nick Pigginb291f002008-10-18 20:26:44 -0700193/*
194 * get a list of pages in an address range belonging to the specified process
195 * and indicate the VMA that covers each page
196 * - this is potentially dodgy as we may end incrementing the page count of a
197 * slab page or a secondary page from a compound page
198 * - don't permit access to VMAs that don't support it, such as I/O mappings
199 */
Michel Lespinasse28a35712013-02-22 16:35:55 -0800200long get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
201 unsigned long start, unsigned long nr_pages,
202 int write, int force, struct page **pages,
203 struct vm_area_struct **vmas)
Nick Pigginb291f002008-10-18 20:26:44 -0700204{
205 int flags = 0;
206
207 if (write)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700208 flags |= FOLL_WRITE;
Nick Pigginb291f002008-10-18 20:26:44 -0700209 if (force)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700210 flags |= FOLL_FORCE;
Nick Pigginb291f002008-10-18 20:26:44 -0700211
Michel Lespinasse53a77062011-01-13 15:46:14 -0800212 return __get_user_pages(tsk, mm, start, nr_pages, flags, pages, vmas,
213 NULL);
Nick Pigginb291f002008-10-18 20:26:44 -0700214}
Greg Ungerer66aa2b42005-09-12 11:18:10 +1000215EXPORT_SYMBOL(get_user_pages);
216
Paul Mundtdfc2f912009-06-26 04:31:57 +0900217/**
218 * follow_pfn - look up PFN at a user virtual address
219 * @vma: memory mapping
220 * @address: user virtual address
221 * @pfn: location to store found PFN
222 *
223 * Only IO mappings and raw PFN mappings are allowed.
224 *
225 * Returns zero and the pfn at @pfn on success, -ve otherwise.
226 */
227int follow_pfn(struct vm_area_struct *vma, unsigned long address,
228 unsigned long *pfn)
229{
230 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
231 return -EINVAL;
232
233 *pfn = address >> PAGE_SHIFT;
234 return 0;
235}
236EXPORT_SYMBOL(follow_pfn);
237
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700238LIST_HEAD(vmap_area_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800240void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 kfree(addr);
243}
Paul Mundtb5073172007-07-21 04:37:25 -0700244EXPORT_SYMBOL(vfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Al Virodd0fc662005-10-07 07:46:04 +0100246void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 /*
Robert P. J. Day85186092007-10-19 23:11:38 +0200249 * You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
250 * returns only a logical address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
Nick Piggin84097512006-03-22 00:08:34 -0800252 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
Paul Mundtb5073172007-07-21 04:37:25 -0700254EXPORT_SYMBOL(__vmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Paul Mundtf905bc42008-02-04 22:29:59 -0800256void *vmalloc_user(unsigned long size)
257{
258 void *ret;
259
260 ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
261 PAGE_KERNEL);
262 if (ret) {
263 struct vm_area_struct *vma;
264
265 down_write(&current->mm->mmap_sem);
266 vma = find_vma(current->mm, (unsigned long)ret);
267 if (vma)
268 vma->vm_flags |= VM_USERMAP;
269 up_write(&current->mm->mmap_sem);
270 }
271
272 return ret;
273}
274EXPORT_SYMBOL(vmalloc_user);
275
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800276struct page *vmalloc_to_page(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 return virt_to_page(addr);
279}
Paul Mundtb5073172007-07-21 04:37:25 -0700280EXPORT_SYMBOL(vmalloc_to_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800282unsigned long vmalloc_to_pfn(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 return page_to_pfn(virt_to_page(addr));
285}
Paul Mundtb5073172007-07-21 04:37:25 -0700286EXPORT_SYMBOL(vmalloc_to_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288long vread(char *buf, char *addr, unsigned long count)
289{
Chen Gang9bde9162013-07-03 15:02:36 -0700290 /* Don't allow overflow */
291 if ((unsigned long) buf + count < count)
292 count = -(unsigned long) buf;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 memcpy(buf, addr, count);
295 return count;
296}
297
298long vwrite(char *buf, char *addr, unsigned long count)
299{
300 /* Don't allow overflow */
301 if ((unsigned long) addr + count < count)
302 count = -(unsigned long) addr;
303
304 memcpy(addr, buf, count);
Choi Gi-yongac714902014-04-07 15:37:36 -0700305 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308/*
309 * vmalloc - allocate virtually continguos memory
310 *
311 * @size: allocation size
312 *
313 * Allocate enough pages to cover @size from the page level
314 * allocator and map them into continguos kernel virtual space.
315 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +0200316 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * use __vmalloc() instead.
318 */
319void *vmalloc(unsigned long size)
320{
321 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL);
322}
Andrew Mortonf6138882006-02-28 16:59:18 -0800323EXPORT_SYMBOL(vmalloc);
324
Dave Younge1ca7782010-10-26 14:22:06 -0700325/*
326 * vzalloc - allocate virtually continguos memory with zero fill
327 *
328 * @size: allocation size
329 *
330 * Allocate enough pages to cover @size from the page level
331 * allocator and map them into continguos kernel virtual space.
332 * The memory allocated is set to zero.
333 *
334 * For tight control over page level allocator and protection flags
335 * use __vmalloc() instead.
336 */
337void *vzalloc(unsigned long size)
338{
339 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
340 PAGE_KERNEL);
341}
342EXPORT_SYMBOL(vzalloc);
343
344/**
345 * vmalloc_node - allocate memory on a specific node
346 * @size: allocation size
347 * @node: numa node
348 *
349 * Allocate enough pages to cover @size from the page level
350 * allocator and map them into contiguous kernel virtual space.
351 *
352 * For tight control over page level allocator and protection flags
353 * use __vmalloc() instead.
354 */
Andrew Mortonf6138882006-02-28 16:59:18 -0800355void *vmalloc_node(unsigned long size, int node)
356{
357 return vmalloc(size);
358}
Paul Mundt9a14f652010-12-24 11:50:34 +0900359EXPORT_SYMBOL(vmalloc_node);
Dave Younge1ca7782010-10-26 14:22:06 -0700360
361/**
362 * vzalloc_node - allocate memory on a specific node with zero fill
363 * @size: allocation size
364 * @node: numa node
365 *
366 * Allocate enough pages to cover @size from the page level
367 * allocator and map them into contiguous kernel virtual space.
368 * The memory allocated is set to zero.
369 *
370 * For tight control over page level allocator and protection flags
371 * use __vmalloc() instead.
372 */
373void *vzalloc_node(unsigned long size, int node)
374{
375 return vzalloc(size);
376}
377EXPORT_SYMBOL(vzalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Paul Mundt1af446e2008-08-04 16:01:47 +0900379#ifndef PAGE_KERNEL_EXEC
380# define PAGE_KERNEL_EXEC PAGE_KERNEL
381#endif
382
383/**
384 * vmalloc_exec - allocate virtually contiguous, executable memory
385 * @size: allocation size
386 *
387 * Kernel-internal function to allocate enough pages to cover @size
388 * the page level allocator and map them into contiguous and
389 * executable kernel virtual space.
390 *
391 * For tight control over page level allocator and protection flags
392 * use __vmalloc() instead.
393 */
394
395void *vmalloc_exec(unsigned long size)
396{
397 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC);
398}
399
Paul Mundtb5073172007-07-21 04:37:25 -0700400/**
401 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * @size: allocation size
403 *
404 * Allocate enough 32bit PA addressable pages to cover @size from the
405 * page level allocator and map them into continguos kernel virtual space.
406 */
407void *vmalloc_32(unsigned long size)
408{
409 return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL);
410}
Paul Mundtb5073172007-07-21 04:37:25 -0700411EXPORT_SYMBOL(vmalloc_32);
412
413/**
414 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
415 * @size: allocation size
416 *
417 * The resulting memory area is 32bit addressable and zeroed so it can be
418 * mapped to userspace without leaking data.
Paul Mundtf905bc42008-02-04 22:29:59 -0800419 *
420 * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
421 * remap_vmalloc_range() are permissible.
Paul Mundtb5073172007-07-21 04:37:25 -0700422 */
423void *vmalloc_32_user(unsigned long size)
424{
Paul Mundtf905bc42008-02-04 22:29:59 -0800425 /*
426 * We'll have to sort out the ZONE_DMA bits for 64-bit,
427 * but for now this can simply use vmalloc_user() directly.
428 */
429 return vmalloc_user(size);
Paul Mundtb5073172007-07-21 04:37:25 -0700430}
431EXPORT_SYMBOL(vmalloc_32_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
434{
435 BUG();
436 return NULL;
437}
Paul Mundtb5073172007-07-21 04:37:25 -0700438EXPORT_SYMBOL(vmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800440void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 BUG();
443}
Paul Mundtb5073172007-07-21 04:37:25 -0700444EXPORT_SYMBOL(vunmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Paul Mundteb6434d2009-01-21 17:45:47 +0900446void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
447{
448 BUG();
449 return NULL;
450}
451EXPORT_SYMBOL(vm_map_ram);
452
453void vm_unmap_ram(const void *mem, unsigned int count)
454{
455 BUG();
456}
457EXPORT_SYMBOL(vm_unmap_ram);
458
459void vm_unmap_aliases(void)
460{
461}
462EXPORT_SYMBOL_GPL(vm_unmap_aliases);
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/*
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700465 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
466 * have one.
467 */
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700468void __weak vmalloc_sync_all(void)
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700469{
470}
471
Paul Mundt29c185e2010-12-24 12:08:30 +0900472/**
473 * alloc_vm_area - allocate a range of kernel address space
474 * @size: size of the area
475 *
476 * Returns: NULL on failure, vm_struct on success
477 *
478 * This function reserves a range of kernel address space, and
479 * allocates pagetables to map that range. No actual mappings
480 * are created. If the kernel address space is not shared
481 * between processes, it syncs the pagetable across all
482 * processes.
483 */
David Vrabelcd129092011-09-29 16:53:32 +0100484struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Paul Mundt29c185e2010-12-24 12:08:30 +0900485{
486 BUG();
487 return NULL;
488}
489EXPORT_SYMBOL_GPL(alloc_vm_area);
490
491void free_vm_area(struct vm_struct *area)
492{
493 BUG();
494}
495EXPORT_SYMBOL_GPL(free_vm_area);
496
Paul Mundtb5073172007-07-21 04:37:25 -0700497int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
498 struct page *page)
499{
500 return -EINVAL;
501}
502EXPORT_SYMBOL(vm_insert_page);
503
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700504/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * sys_brk() for the most part doesn't need the global kernel
506 * lock, except when an application is doing something nasty
507 * like trying to un-brk an area that has already been mapped
508 * to a regular file. in this case, the unmapping will need
509 * to invoke file system routines that need the global lock.
510 */
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100511SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 struct mm_struct *mm = current->mm;
514
515 if (brk < mm->start_brk || brk > mm->context.end_brk)
516 return mm->brk;
517
518 if (mm->brk == brk)
519 return mm->brk;
520
521 /*
522 * Always allow shrinking brk
523 */
524 if (brk <= mm->brk) {
525 mm->brk = brk;
526 return brk;
527 }
528
529 /*
530 * Ok, looks good - let it rip.
531 */
Mike Frysingercfe79c02010-01-06 17:23:23 +0000532 flush_icache_range(mm->brk, brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return mm->brk = brk;
534}
535
David Howells8feae132009-01-08 12:04:47 +0000536/*
537 * initialise the VMA and region record slabs
538 */
539void __init mmap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700541 int ret;
542
Tejun Heo908c7f12014-09-08 09:51:29 +0900543 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700544 VM_BUG_ON(ret);
David Howells33e5d7692009-04-02 16:56:32 -0700545 vm_region_jar = KMEM_CACHE(vm_region, SLAB_PANIC);
David Howells8feae132009-01-08 12:04:47 +0000546}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
David Howells8feae132009-01-08 12:04:47 +0000548/*
549 * validate the region tree
550 * - the caller must hold the region lock
551 */
552#ifdef CONFIG_DEBUG_NOMMU_REGIONS
553static noinline void validate_nommu_regions(void)
554{
555 struct vm_region *region, *last;
556 struct rb_node *p, *lastp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
David Howells8feae132009-01-08 12:04:47 +0000558 lastp = rb_first(&nommu_region_tree);
559 if (!lastp)
560 return;
561
562 last = rb_entry(lastp, struct vm_region, vm_rb);
David Howells33e5d7692009-04-02 16:56:32 -0700563 BUG_ON(unlikely(last->vm_end <= last->vm_start));
564 BUG_ON(unlikely(last->vm_top < last->vm_end));
David Howells8feae132009-01-08 12:04:47 +0000565
566 while ((p = rb_next(lastp))) {
567 region = rb_entry(p, struct vm_region, vm_rb);
568 last = rb_entry(lastp, struct vm_region, vm_rb);
569
David Howells33e5d7692009-04-02 16:56:32 -0700570 BUG_ON(unlikely(region->vm_end <= region->vm_start));
571 BUG_ON(unlikely(region->vm_top < region->vm_end));
572 BUG_ON(unlikely(region->vm_start < last->vm_top));
David Howells8feae132009-01-08 12:04:47 +0000573
574 lastp = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576}
David Howells8feae132009-01-08 12:04:47 +0000577#else
David Howells33e5d7692009-04-02 16:56:32 -0700578static void validate_nommu_regions(void)
579{
580}
David Howells8feae132009-01-08 12:04:47 +0000581#endif
582
583/*
584 * add a region into the global tree
585 */
586static void add_nommu_region(struct vm_region *region)
587{
588 struct vm_region *pregion;
589 struct rb_node **p, *parent;
590
591 validate_nommu_regions();
592
David Howells8feae132009-01-08 12:04:47 +0000593 parent = NULL;
594 p = &nommu_region_tree.rb_node;
595 while (*p) {
596 parent = *p;
597 pregion = rb_entry(parent, struct vm_region, vm_rb);
598 if (region->vm_start < pregion->vm_start)
599 p = &(*p)->rb_left;
600 else if (region->vm_start > pregion->vm_start)
601 p = &(*p)->rb_right;
602 else if (pregion == region)
603 return;
604 else
605 BUG();
606 }
607
608 rb_link_node(&region->vm_rb, parent, p);
609 rb_insert_color(&region->vm_rb, &nommu_region_tree);
610
611 validate_nommu_regions();
612}
613
614/*
615 * delete a region from the global tree
616 */
617static void delete_nommu_region(struct vm_region *region)
618{
619 BUG_ON(!nommu_region_tree.rb_node);
620
621 validate_nommu_regions();
622 rb_erase(&region->vm_rb, &nommu_region_tree);
623 validate_nommu_regions();
624}
625
626/*
627 * free a contiguous series of pages
628 */
629static void free_page_series(unsigned long from, unsigned long to)
630{
631 for (; from < to; from += PAGE_SIZE) {
632 struct page *page = virt_to_page(from);
633
634 kdebug("- free %lx", from);
David Howells33e5d7692009-04-02 16:56:32 -0700635 atomic_long_dec(&mmap_pages_allocated);
David Howells8feae132009-01-08 12:04:47 +0000636 if (page_count(page) != 1)
David Howells33e5d7692009-04-02 16:56:32 -0700637 kdebug("free page %p: refcount not one: %d",
638 page, page_count(page));
David Howells8feae132009-01-08 12:04:47 +0000639 put_page(page);
640 }
641}
642
643/*
644 * release a reference to a region
David Howells33e5d7692009-04-02 16:56:32 -0700645 * - the caller must hold the region semaphore for writing, which this releases
Paul Mundtdd8632a2009-01-08 12:04:47 +0000646 * - the region may not have been added to the tree yet, in which case vm_top
David Howells8feae132009-01-08 12:04:47 +0000647 * will equal vm_start
648 */
649static void __put_nommu_region(struct vm_region *region)
650 __releases(nommu_region_sem)
651{
David Howells1e2ae592010-01-15 17:01:33 -0800652 kenter("%p{%d}", region, region->vm_usage);
David Howells8feae132009-01-08 12:04:47 +0000653
654 BUG_ON(!nommu_region_tree.rb_node);
655
David Howells1e2ae592010-01-15 17:01:33 -0800656 if (--region->vm_usage == 0) {
Paul Mundtdd8632a2009-01-08 12:04:47 +0000657 if (region->vm_top > region->vm_start)
David Howells8feae132009-01-08 12:04:47 +0000658 delete_nommu_region(region);
659 up_write(&nommu_region_sem);
660
661 if (region->vm_file)
662 fput(region->vm_file);
663
664 /* IO memory and memory shared directly out of the pagecache
665 * from ramfs/tmpfs mustn't be released here */
666 if (region->vm_flags & VM_MAPPED_COPY) {
667 kdebug("free series");
Paul Mundtdd8632a2009-01-08 12:04:47 +0000668 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +0000669 }
670 kmem_cache_free(vm_region_jar, region);
671 } else {
672 up_write(&nommu_region_sem);
673 }
674}
675
676/*
677 * release a reference to a region
678 */
679static void put_nommu_region(struct vm_region *region)
680{
681 down_write(&nommu_region_sem);
682 __put_nommu_region(region);
683}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
David Howells30340972006-09-27 01:50:20 -0700685/*
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700686 * update protection on a vma
687 */
688static void protect_vma(struct vm_area_struct *vma, unsigned long flags)
689{
690#ifdef CONFIG_MPU
691 struct mm_struct *mm = vma->vm_mm;
692 long start = vma->vm_start & PAGE_MASK;
693 while (start < vma->vm_end) {
694 protect_page(mm, start, flags);
695 start += PAGE_SIZE;
696 }
697 update_protections(mm);
698#endif
699}
700
701/*
David Howells30340972006-09-27 01:50:20 -0700702 * add a VMA into a process's mm_struct in the appropriate place in the list
David Howells8feae132009-01-08 12:04:47 +0000703 * and tree and add to the address space's page tree also if not an anonymous
704 * page
David Howells30340972006-09-27 01:50:20 -0700705 * - should be called with mm->mmap_sem held writelocked
706 */
David Howells8feae132009-01-08 12:04:47 +0000707static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
David Howells30340972006-09-27 01:50:20 -0700708{
Namhyung Kim6038def2011-05-24 17:11:22 -0700709 struct vm_area_struct *pvma, *prev;
David Howells8feae132009-01-08 12:04:47 +0000710 struct address_space *mapping;
Namhyung Kim6038def2011-05-24 17:11:22 -0700711 struct rb_node **p, *parent, *rb_prev;
David Howells30340972006-09-27 01:50:20 -0700712
David Howells8feae132009-01-08 12:04:47 +0000713 kenter(",%p", vma);
714
715 BUG_ON(!vma->vm_region);
716
717 mm->map_count++;
718 vma->vm_mm = mm;
719
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700720 protect_vma(vma, vma->vm_flags);
721
David Howells8feae132009-01-08 12:04:47 +0000722 /* add the VMA to the mapping */
723 if (vma->vm_file) {
724 mapping = vma->vm_file->f_mapping;
725
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800726 i_mmap_lock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000727 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700728 vma_interval_tree_insert(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000729 flush_dcache_mmap_unlock(mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800730 i_mmap_unlock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000731 }
732
733 /* add the VMA to the tree */
Namhyung Kim6038def2011-05-24 17:11:22 -0700734 parent = rb_prev = NULL;
David Howells8feae132009-01-08 12:04:47 +0000735 p = &mm->mm_rb.rb_node;
736 while (*p) {
737 parent = *p;
738 pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
739
740 /* sort by: start addr, end addr, VMA struct addr in that order
741 * (the latter is necessary as we may get identical VMAs) */
742 if (vma->vm_start < pvma->vm_start)
743 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700744 else if (vma->vm_start > pvma->vm_start) {
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->vm_end < pvma->vm_end)
David Howells8feae132009-01-08 12:04:47 +0000748 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700749 else if (vma->vm_end > pvma->vm_end) {
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 if (vma < pvma)
David Howells8feae132009-01-08 12:04:47 +0000753 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700754 else if (vma > pvma) {
755 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000756 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700757 } else
David Howells8feae132009-01-08 12:04:47 +0000758 BUG();
759 }
760
761 rb_link_node(&vma->vm_rb, parent, p);
762 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
763
764 /* add VMA to the VMA list also */
Namhyung Kim6038def2011-05-24 17:11:22 -0700765 prev = NULL;
766 if (rb_prev)
767 prev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
David Howells30340972006-09-27 01:50:20 -0700768
Namhyung Kim6038def2011-05-24 17:11:22 -0700769 __vma_link_list(mm, vma, prev, parent);
David Howells8feae132009-01-08 12:04:47 +0000770}
771
772/*
773 * delete a VMA from its owning mm_struct and address space
774 */
775static void delete_vma_from_mm(struct vm_area_struct *vma)
776{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700777 int i;
David Howells8feae132009-01-08 12:04:47 +0000778 struct address_space *mapping;
779 struct mm_struct *mm = vma->vm_mm;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700780 struct task_struct *curr = current;
David Howells8feae132009-01-08 12:04:47 +0000781
782 kenter("%p", vma);
783
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700784 protect_vma(vma, 0);
785
David Howells8feae132009-01-08 12:04:47 +0000786 mm->map_count--;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700787 for (i = 0; i < VMACACHE_SIZE; i++) {
788 /* if the vma is cached, invalidate the entire cache */
789 if (curr->vmacache[i] == vma) {
Steven Miaoe020d5b2014-06-23 13:22:02 -0700790 vmacache_invalidate(mm);
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700791 break;
792 }
793 }
David Howells8feae132009-01-08 12:04:47 +0000794
795 /* remove the VMA from the mapping */
796 if (vma->vm_file) {
797 mapping = vma->vm_file->f_mapping;
798
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800799 i_mmap_lock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000800 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700801 vma_interval_tree_remove(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000802 flush_dcache_mmap_unlock(mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800803 i_mmap_unlock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000804 }
805
806 /* remove from the MM's tree and list */
807 rb_erase(&vma->vm_rb, &mm->mm_rb);
Namhyung Kimb951bf22011-05-24 17:11:23 -0700808
809 if (vma->vm_prev)
810 vma->vm_prev->vm_next = vma->vm_next;
811 else
812 mm->mmap = vma->vm_next;
813
814 if (vma->vm_next)
815 vma->vm_next->vm_prev = vma->vm_prev;
David Howells8feae132009-01-08 12:04:47 +0000816}
817
818/*
819 * destroy a VMA record
820 */
821static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
822{
823 kenter("%p", vma);
824 if (vma->vm_ops && vma->vm_ops->close)
825 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700826 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +0000827 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +0000828 put_nommu_region(vma->vm_region);
829 kmem_cache_free(vm_area_cachep, vma);
David Howells30340972006-09-27 01:50:20 -0700830}
831
832/*
833 * look up the first VMA in which addr resides, NULL if none
834 * - should be called with mm->mmap_sem at least held readlocked
835 */
836struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
837{
David Howells8feae132009-01-08 12:04:47 +0000838 struct vm_area_struct *vma;
David Howells30340972006-09-27 01:50:20 -0700839
David Howells8feae132009-01-08 12:04:47 +0000840 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700841 vma = vmacache_find(mm, addr);
842 if (likely(vma))
David Howells8feae132009-01-08 12:04:47 +0000843 return vma;
844
Namhyung Kime922c4c2011-05-24 17:11:24 -0700845 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000846 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700847 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000848 if (vma->vm_start > addr)
849 return NULL;
850 if (vma->vm_end > addr) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700851 vmacache_update(addr, vma);
David Howells8feae132009-01-08 12:04:47 +0000852 return vma;
853 }
David Howells30340972006-09-27 01:50:20 -0700854 }
855
David Howells30340972006-09-27 01:50:20 -0700856 return NULL;
857}
858EXPORT_SYMBOL(find_vma);
859
860/*
David Howells930e6522006-09-27 01:50:22 -0700861 * find a VMA
862 * - we don't extend stack VMAs under NOMMU conditions
863 */
864struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
865{
David Howells7561e8c2010-03-25 16:48:38 +0000866 return find_vma(mm, addr);
David Howells930e6522006-09-27 01:50:22 -0700867}
868
David Howells8feae132009-01-08 12:04:47 +0000869/*
870 * expand a stack to a given address
871 * - not supported under NOMMU conditions
872 */
Greg Ungerer57c8f632007-07-15 23:38:28 -0700873int expand_stack(struct vm_area_struct *vma, unsigned long address)
874{
875 return -ENOMEM;
876}
877
David Howells930e6522006-09-27 01:50:22 -0700878/*
David Howells6fa5f802006-09-27 01:50:21 -0700879 * look up the first VMA exactly that exactly matches addr
880 * - should be called with mm->mmap_sem at least held readlocked
881 */
David Howells8feae132009-01-08 12:04:47 +0000882static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
883 unsigned long addr,
884 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 struct vm_area_struct *vma;
David Howells8feae132009-01-08 12:04:47 +0000887 unsigned long end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
David Howells8feae132009-01-08 12:04:47 +0000889 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700890 vma = vmacache_find_exact(mm, addr, end);
891 if (vma)
David Howells8feae132009-01-08 12:04:47 +0000892 return vma;
893
Namhyung Kime922c4c2011-05-24 17:11:24 -0700894 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000895 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700896 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000897 if (vma->vm_start < addr)
898 continue;
899 if (vma->vm_start > addr)
900 return NULL;
901 if (vma->vm_end == end) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700902 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return vma;
David Howells8feae132009-01-08 12:04:47 +0000904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
907 return NULL;
908}
909
David Howells30340972006-09-27 01:50:20 -0700910/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 * determine whether a mapping should be permitted and, if so, what sort of
912 * mapping we're capable of supporting
913 */
914static int validate_mmap_request(struct file *file,
915 unsigned long addr,
916 unsigned long len,
917 unsigned long prot,
918 unsigned long flags,
919 unsigned long pgoff,
920 unsigned long *_capabilities)
921{
David Howells8feae132009-01-08 12:04:47 +0000922 unsigned long capabilities, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 int ret;
924
925 /* do the simple checks first */
David Howells06aab5a2009-09-24 12:33:48 +0100926 if (flags & MAP_FIXED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 printk(KERN_DEBUG
928 "%d: Can't do fixed-address/overlay mmap of RAM\n",
929 current->pid);
930 return -EINVAL;
931 }
932
933 if ((flags & MAP_TYPE) != MAP_PRIVATE &&
934 (flags & MAP_TYPE) != MAP_SHARED)
935 return -EINVAL;
936
Mike Frysingerf81cff02006-12-06 12:02:59 +1000937 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return -EINVAL;
939
Mike Frysingerf81cff02006-12-06 12:02:59 +1000940 /* Careful about overflows.. */
David Howells8feae132009-01-08 12:04:47 +0000941 rlen = PAGE_ALIGN(len);
942 if (!rlen || rlen > TASK_SIZE)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000943 return -ENOMEM;
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* offset overflow? */
David Howells8feae132009-01-08 12:04:47 +0000946 if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000947 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 if (file) {
950 /* validate file mapping requests */
951 struct address_space *mapping;
952
953 /* files must support mmap */
Al Viro72c2d532013-09-22 16:27:52 -0400954 if (!file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return -ENODEV;
956
957 /* work out if what we've got could possibly be shared
958 * - we support chardevs that provide their own "memory"
959 * - we support files/blockdevs that are memory backed
960 */
961 mapping = file->f_mapping;
962 if (!mapping)
Al Viro496ad9a2013-01-23 17:07:38 -0500963 mapping = file_inode(file)->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 capabilities = 0;
966 if (mapping && mapping->backing_dev_info)
967 capabilities = mapping->backing_dev_info->capabilities;
968
969 if (!capabilities) {
970 /* no explicit capabilities set, so assume some
971 * defaults */
Al Viro496ad9a2013-01-23 17:07:38 -0500972 switch (file_inode(file)->i_mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 case S_IFREG:
974 case S_IFBLK:
975 capabilities = BDI_CAP_MAP_COPY;
976 break;
977
978 case S_IFCHR:
979 capabilities =
980 BDI_CAP_MAP_DIRECT |
981 BDI_CAP_READ_MAP |
982 BDI_CAP_WRITE_MAP;
983 break;
984
985 default:
986 return -EINVAL;
987 }
988 }
989
990 /* eliminate any capabilities that we can't support on this
991 * device */
992 if (!file->f_op->get_unmapped_area)
993 capabilities &= ~BDI_CAP_MAP_DIRECT;
994 if (!file->f_op->read)
995 capabilities &= ~BDI_CAP_MAP_COPY;
996
Graff Yang28d7a6a2009-08-18 14:11:17 -0700997 /* The file shall have been opened with read permission. */
998 if (!(file->f_mode & FMODE_READ))
999 return -EACCES;
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (flags & MAP_SHARED) {
1002 /* do checks for writing, appending and locking */
1003 if ((prot & PROT_WRITE) &&
1004 !(file->f_mode & FMODE_WRITE))
1005 return -EACCES;
1006
Al Viro496ad9a2013-01-23 17:07:38 -05001007 if (IS_APPEND(file_inode(file)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 (file->f_mode & FMODE_WRITE))
1009 return -EACCES;
1010
Jeff Laytond7a06982014-03-10 09:54:15 -04001011 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return -EAGAIN;
1013
1014 if (!(capabilities & BDI_CAP_MAP_DIRECT))
1015 return -ENODEV;
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 /* we mustn't privatise shared mappings */
1018 capabilities &= ~BDI_CAP_MAP_COPY;
Choi Gi-yongac714902014-04-07 15:37:36 -07001019 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* we're going to read the file into private memory we
1021 * allocate */
1022 if (!(capabilities & BDI_CAP_MAP_COPY))
1023 return -ENODEV;
1024
1025 /* we don't permit a private writable mapping to be
1026 * shared with the backing device */
1027 if (prot & PROT_WRITE)
1028 capabilities &= ~BDI_CAP_MAP_DIRECT;
1029 }
1030
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001031 if (capabilities & BDI_CAP_MAP_DIRECT) {
1032 if (((prot & PROT_READ) && !(capabilities & BDI_CAP_READ_MAP)) ||
1033 ((prot & PROT_WRITE) && !(capabilities & BDI_CAP_WRITE_MAP)) ||
1034 ((prot & PROT_EXEC) && !(capabilities & BDI_CAP_EXEC_MAP))
1035 ) {
1036 capabilities &= ~BDI_CAP_MAP_DIRECT;
1037 if (flags & MAP_SHARED) {
1038 printk(KERN_WARNING
1039 "MAP_SHARED not completely supported on !MMU\n");
1040 return -EINVAL;
1041 }
1042 }
1043 }
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* handle executable mappings and implied executable
1046 * mappings */
Josef Sipeke9536ae2006-12-08 02:37:21 -08001047 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (prot & PROT_EXEC)
1049 return -EPERM;
Choi Gi-yongac714902014-04-07 15:37:36 -07001050 } else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /* handle implication of PROT_EXEC by PROT_READ */
1052 if (current->personality & READ_IMPLIES_EXEC) {
1053 if (capabilities & BDI_CAP_EXEC_MAP)
1054 prot |= PROT_EXEC;
1055 }
Choi Gi-yongac714902014-04-07 15:37:36 -07001056 } else if ((prot & PROT_READ) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 (prot & PROT_EXEC) &&
1058 !(capabilities & BDI_CAP_EXEC_MAP)
1059 ) {
1060 /* backing file is not executable, try to copy */
1061 capabilities &= ~BDI_CAP_MAP_DIRECT;
1062 }
Choi Gi-yongac714902014-04-07 15:37:36 -07001063 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 /* anonymous mappings are always memory backed and can be
1065 * privately mapped
1066 */
1067 capabilities = BDI_CAP_MAP_COPY;
1068
1069 /* handle PROT_EXEC implication by PROT_READ */
1070 if ((prot & PROT_READ) &&
1071 (current->personality & READ_IMPLIES_EXEC))
1072 prot |= PROT_EXEC;
1073 }
1074
1075 /* allow the security API to have its say */
Al Viroe5467852012-05-30 13:30:51 -04001076 ret = security_mmap_addr(addr);
1077 if (ret < 0)
1078 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 /* looks okay */
1081 *_capabilities = capabilities;
1082 return 0;
1083}
1084
1085/*
1086 * we've determined that we can make the mapping, now translate what we
1087 * now know into VMA flags
1088 */
1089static unsigned long determine_vm_flags(struct file *file,
1090 unsigned long prot,
1091 unsigned long flags,
1092 unsigned long capabilities)
1093{
1094 unsigned long vm_flags;
1095
1096 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 /* vm_flags |= mm->def_flags; */
1098
1099 if (!(capabilities & BDI_CAP_MAP_DIRECT)) {
1100 /* attempt to share read-only copies of mapped file chunks */
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001101 vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (file && !(prot & PROT_WRITE))
1103 vm_flags |= VM_MAYSHARE;
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001104 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 /* overlay a shareable mapping on the backing device or inode
1106 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
1107 * romfs/cramfs */
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001108 vm_flags |= VM_MAYSHARE | (capabilities & BDI_CAP_VMFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (flags & MAP_SHARED)
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001110 vm_flags |= VM_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112
1113 /* refuse to let anyone share private mappings with this process if
1114 * it's being traced - otherwise breakpoints set in it may interfere
1115 * with another untraced process
1116 */
Tejun Heoa288eec2011-06-17 16:50:37 +02001117 if ((flags & MAP_PRIVATE) && current->ptrace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 vm_flags &= ~VM_MAYSHARE;
1119
1120 return vm_flags;
1121}
1122
1123/*
David Howells8feae132009-01-08 12:04:47 +00001124 * set up a shared mapping on a file (the driver or filesystem provides and
1125 * pins the storage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
David Howells8feae132009-01-08 12:04:47 +00001127static int do_mmap_shared_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 int ret;
1130
1131 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001132 if (ret == 0) {
1133 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +01001134 return 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (ret != -ENOSYS)
1137 return ret;
1138
David Howells3fa30462010-03-23 13:35:21 -07001139 /* getting -ENOSYS indicates that direct mmap isn't possible (as
1140 * opposed to tried but failed) so we can only give a suitable error as
1141 * it's not possible to make a private copy if MAP_SHARED was given */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return -ENODEV;
1143}
1144
1145/*
1146 * set up a private mapping or an anonymous shared mapping
1147 */
David Howells8feae132009-01-08 12:04:47 +00001148static int do_mmap_private(struct vm_area_struct *vma,
1149 struct vm_region *region,
David Howells645d83c2009-09-24 15:13:10 +01001150 unsigned long len,
1151 unsigned long capabilities)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001153 unsigned long total, point;
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
David Howells8feae132009-01-08 12:04:47 +00001185 total = 1 << order;
Bob Liuf67d9b12011-05-24 17:12:56 -07001186 point = len >> PAGE_SHIFT;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001187
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001188 /* we don't want to allocate a power-of-2 sized page set */
Paul Mundtdd8632a2009-01-08 12:04:47 +00001189 if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages) {
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001190 total = point;
1191 kdebug("try to alloc exact %lu pages", total);
1192 base = alloc_pages_exact(len, GFP_KERNEL);
1193 } else {
1194 base = (void *)__get_free_pages(GFP_KERNEL, order);
David Howells8feae132009-01-08 12:04:47 +00001195 }
1196
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001197 if (!base)
1198 goto enomem;
David Howells8feae132009-01-08 12:04:47 +00001199
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001200 atomic_long_add(total, &mmap_pages_allocated);
1201
David Howells8feae132009-01-08 12:04:47 +00001202 region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
1203 region->vm_start = (unsigned long) base;
Bob Liuf67d9b12011-05-24 17:12:56 -07001204 region->vm_end = region->vm_start + len;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001205 region->vm_top = region->vm_start + (total << PAGE_SHIFT);
David Howells8feae132009-01-08 12:04:47 +00001206
1207 vma->vm_start = region->vm_start;
1208 vma->vm_end = region->vm_start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 if (vma->vm_file) {
1211 /* read the contents of a file into the copy */
1212 mm_segment_t old_fs;
1213 loff_t fpos;
1214
1215 fpos = vma->vm_pgoff;
1216 fpos <<= PAGE_SHIFT;
1217
1218 old_fs = get_fs();
1219 set_fs(KERNEL_DS);
Bob Liuf67d9b12011-05-24 17:12:56 -07001220 ret = vma->vm_file->f_op->read(vma->vm_file, base, len, &fpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 set_fs(old_fs);
1222
1223 if (ret < 0)
1224 goto error_free;
1225
1226 /* clear the last little bit */
Bob Liuf67d9b12011-05-24 17:12:56 -07001227 if (ret < len)
1228 memset(base + ret, 0, len - ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
1232 return 0;
1233
1234error_free:
Namhyung Kim7223bb42011-05-24 17:11:26 -07001235 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +00001236 region->vm_start = vma->vm_start = 0;
1237 region->vm_end = vma->vm_end = 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001238 region->vm_top = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return ret;
1240
1241enomem:
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07001242 pr_err("Allocation of length %lu from process %d (%s) failed\n",
Greg Ungerer05ae6fa2009-01-13 17:30:22 +10001243 len, current->pid, current->comm);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001244 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return -ENOMEM;
1246}
1247
1248/*
1249 * handle mapping creation for uClinux
1250 */
Al Viroe3fc6292012-05-30 20:08:42 -04001251unsigned long do_mmap_pgoff(struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 unsigned long addr,
1253 unsigned long len,
1254 unsigned long prot,
1255 unsigned long flags,
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001256 unsigned long pgoff,
Michel Lespinasse41badc12013-02-22 16:32:47 -08001257 unsigned long *populate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
David Howells8feae132009-01-08 12:04:47 +00001259 struct vm_area_struct *vma;
1260 struct vm_region *region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct rb_node *rb;
David Howells8feae132009-01-08 12:04:47 +00001262 unsigned long capabilities, vm_flags, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 int ret;
1264
David Howells8feae132009-01-08 12:04:47 +00001265 kenter(",%lx,%lx,%lx,%lx,%lx", addr, len, prot, flags, pgoff);
1266
Michel Lespinasse41badc12013-02-22 16:32:47 -08001267 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /* decide whether we should attempt the mapping, and if so what sort of
1270 * mapping */
1271 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
1272 &capabilities);
David Howells8feae132009-01-08 12:04:47 +00001273 if (ret < 0) {
1274 kleave(" = %d [val]", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return ret;
David Howells8feae132009-01-08 12:04:47 +00001276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
David Howells06aab5a2009-09-24 12:33:48 +01001278 /* we ignore the address hint */
1279 addr = 0;
Bob Liuf67d9b12011-05-24 17:12:56 -07001280 len = PAGE_ALIGN(len);
David Howells06aab5a2009-09-24 12:33:48 +01001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /* we've determined that we can make the mapping, now translate what we
1283 * now know into VMA flags */
1284 vm_flags = determine_vm_flags(file, prot, flags, capabilities);
1285
David Howells8feae132009-01-08 12:04:47 +00001286 /* we're going to need to record the mapping */
1287 region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
1288 if (!region)
1289 goto error_getting_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
David Howells8feae132009-01-08 12:04:47 +00001291 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
1292 if (!vma)
1293 goto error_getting_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
David Howells1e2ae592010-01-15 17:01:33 -08001295 region->vm_usage = 1;
David Howells8feae132009-01-08 12:04:47 +00001296 region->vm_flags = vm_flags;
1297 region->vm_pgoff = pgoff;
1298
Rik van Riel5beb4932010-03-05 13:42:07 -08001299 INIT_LIST_HEAD(&vma->anon_vma_chain);
David Howells8feae132009-01-08 12:04:47 +00001300 vma->vm_flags = vm_flags;
1301 vma->vm_pgoff = pgoff;
1302
1303 if (file) {
Al Virocb0942b2012-08-27 14:48:26 -04001304 region->vm_file = get_file(file);
1305 vma->vm_file = get_file(file);
David Howells8feae132009-01-08 12:04:47 +00001306 }
1307
1308 down_write(&nommu_region_sem);
1309
1310 /* if we want to share, we need to check for regions created by other
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 * mmap() calls that overlap with our proposed mapping
David Howells8feae132009-01-08 12:04:47 +00001312 * - we can only share with a superset match on most regular files
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 * - shared mappings on character devices and memory backed files are
1314 * permitted to overlap inexactly as far as we are concerned for in
1315 * these cases, sharing is handled in the driver or filesystem rather
1316 * than here
1317 */
1318 if (vm_flags & VM_MAYSHARE) {
David Howells8feae132009-01-08 12:04:47 +00001319 struct vm_region *pregion;
1320 unsigned long pglen, rpglen, pgend, rpgend, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
David Howells8feae132009-01-08 12:04:47 +00001322 pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1323 pgend = pgoff + pglen;
David Howells165b2392007-03-22 00:11:24 -08001324
David Howells8feae132009-01-08 12:04:47 +00001325 for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
1326 pregion = rb_entry(rb, struct vm_region, vm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
David Howells8feae132009-01-08 12:04:47 +00001328 if (!(pregion->vm_flags & VM_MAYSHARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 continue;
1330
1331 /* search for overlapping mappings on the same file */
Al Viro496ad9a2013-01-23 17:07:38 -05001332 if (file_inode(pregion->vm_file) !=
1333 file_inode(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 continue;
1335
David Howells8feae132009-01-08 12:04:47 +00001336 if (pregion->vm_pgoff >= pgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 continue;
1338
David Howells8feae132009-01-08 12:04:47 +00001339 rpglen = pregion->vm_end - pregion->vm_start;
1340 rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1341 rpgend = pregion->vm_pgoff + rpglen;
1342 if (pgoff >= rpgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 continue;
1344
David Howells8feae132009-01-08 12:04:47 +00001345 /* handle inexactly overlapping matches between
1346 * mappings */
1347 if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
1348 !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
1349 /* new mapping is not a subset of the region */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (!(capabilities & BDI_CAP_MAP_DIRECT))
1351 goto sharing_violation;
1352 continue;
1353 }
1354
David Howells8feae132009-01-08 12:04:47 +00001355 /* we've found a region we can share */
David Howells1e2ae592010-01-15 17:01:33 -08001356 pregion->vm_usage++;
David Howells8feae132009-01-08 12:04:47 +00001357 vma->vm_region = pregion;
1358 start = pregion->vm_start;
1359 start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
1360 vma->vm_start = start;
1361 vma->vm_end = start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
David Howells8feae132009-01-08 12:04:47 +00001363 if (pregion->vm_flags & VM_MAPPED_COPY) {
1364 kdebug("share copy");
1365 vma->vm_flags |= VM_MAPPED_COPY;
1366 } else {
1367 kdebug("share mmap");
1368 ret = do_mmap_shared_file(vma);
1369 if (ret < 0) {
1370 vma->vm_region = NULL;
1371 vma->vm_start = 0;
1372 vma->vm_end = 0;
David Howells1e2ae592010-01-15 17:01:33 -08001373 pregion->vm_usage--;
David Howells8feae132009-01-08 12:04:47 +00001374 pregion = NULL;
1375 goto error_just_free;
1376 }
1377 }
1378 fput(region->vm_file);
1379 kmem_cache_free(vm_region_jar, region);
1380 region = pregion;
1381 result = start;
1382 goto share;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* obtain the address at which to make a shared mapping
1386 * - this is the hook for quasi-memory character devices to
1387 * tell us the location of a shared mapping
1388 */
David Howells645d83c2009-09-24 15:13:10 +01001389 if (capabilities & BDI_CAP_MAP_DIRECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 addr = file->f_op->get_unmapped_area(file, addr, len,
1391 pgoff, flags);
Namhyung Kimbb005a52011-05-24 17:11:27 -07001392 if (IS_ERR_VALUE(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 ret = addr;
Namhyung Kimbb005a52011-05-24 17:11:27 -07001394 if (ret != -ENOSYS)
David Howells8feae132009-01-08 12:04:47 +00001395 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /* the driver refused to tell us where to site
1398 * the mapping so we'll have to attempt to copy
1399 * it */
Namhyung Kimbb005a52011-05-24 17:11:27 -07001400 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (!(capabilities & BDI_CAP_MAP_COPY))
David Howells8feae132009-01-08 12:04:47 +00001402 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 capabilities &= ~BDI_CAP_MAP_DIRECT;
David Howells8feae132009-01-08 12:04:47 +00001405 } else {
1406 vma->vm_start = region->vm_start = addr;
1407 vma->vm_end = region->vm_end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 }
1410 }
1411
David Howells8feae132009-01-08 12:04:47 +00001412 vma->vm_region = region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
David Howells645d83c2009-09-24 15:13:10 +01001414 /* set up the mapping
1415 * - the region is filled in if BDI_CAP_MAP_DIRECT is still set
1416 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (file && vma->vm_flags & VM_SHARED)
David Howells8feae132009-01-08 12:04:47 +00001418 ret = do_mmap_shared_file(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 else
David Howells645d83c2009-09-24 15:13:10 +01001420 ret = do_mmap_private(vma, region, len, capabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (ret < 0)
David Howells645d83c2009-09-24 15:13:10 +01001422 goto error_just_free;
1423 add_nommu_region(region);
David Howells8feae132009-01-08 12:04:47 +00001424
Jie Zhangea637632009-12-14 18:00:02 -08001425 /* clear anonymous mappings that don't ask for uninitialized data */
1426 if (!vma->vm_file && !(flags & MAP_UNINITIALIZED))
1427 memset((void *)region->vm_start, 0,
1428 region->vm_end - region->vm_start);
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* okay... we have a mapping; now we have to register it */
David Howells8feae132009-01-08 12:04:47 +00001431 result = vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 current->mm->total_vm += len >> PAGE_SHIFT;
1434
David Howells8feae132009-01-08 12:04:47 +00001435share:
1436 add_vma_to_mm(current->mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Mike Frysingercfe79c02010-01-06 17:23:23 +00001438 /* we flush the region from the icache only when the first executable
1439 * mapping of it is made */
1440 if (vma->vm_flags & VM_EXEC && !region->vm_icache_flushed) {
1441 flush_icache_range(region->vm_start, region->vm_end);
1442 region->vm_icache_flushed = true;
1443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Mike Frysingercfe79c02010-01-06 17:23:23 +00001445 up_write(&nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
David Howells8feae132009-01-08 12:04:47 +00001447 kleave(" = %lx", result);
1448 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
David Howells8feae132009-01-08 12:04:47 +00001450error_just_free:
1451 up_write(&nommu_region_sem);
1452error:
David Howells89a86402009-10-30 13:13:26 +00001453 if (region->vm_file)
1454 fput(region->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001455 kmem_cache_free(vm_region_jar, region);
David Howells89a86402009-10-30 13:13:26 +00001456 if (vma->vm_file)
1457 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001458 kmem_cache_free(vm_area_cachep, vma);
1459 kleave(" = %d", ret);
1460 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
David Howells8feae132009-01-08 12:04:47 +00001462sharing_violation:
1463 up_write(&nommu_region_sem);
1464 printk(KERN_WARNING "Attempt to share mismatched mappings\n");
1465 ret = -EINVAL;
1466 goto error;
1467
1468error_getting_vma:
1469 kmem_cache_free(vm_region_jar, region);
1470 printk(KERN_WARNING "Allocation of vma for %lu byte allocation"
1471 " from process %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 len, current->pid);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001473 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return -ENOMEM;
1475
David Howells8feae132009-01-08 12:04:47 +00001476error_getting_region:
1477 printk(KERN_WARNING "Allocation of vm region for %lu byte allocation"
1478 " from process %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 len, current->pid);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001480 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return -ENOMEM;
1482}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001483
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001484SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1485 unsigned long, prot, unsigned long, flags,
1486 unsigned long, fd, unsigned long, pgoff)
1487{
1488 struct file *file = NULL;
1489 unsigned long retval = -EBADF;
1490
Al Viro120a7952010-10-30 02:54:44 -04001491 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001492 if (!(flags & MAP_ANONYMOUS)) {
1493 file = fget(fd);
1494 if (!file)
1495 goto out;
1496 }
1497
1498 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1499
Greg Ungererad1ed292012-06-04 14:29:59 +10001500 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001501
1502 if (file)
1503 fput(file);
1504out:
1505 return retval;
1506}
1507
Christoph Hellwiga4679372010-03-10 15:21:15 -08001508#ifdef __ARCH_WANT_SYS_OLD_MMAP
1509struct mmap_arg_struct {
1510 unsigned long addr;
1511 unsigned long len;
1512 unsigned long prot;
1513 unsigned long flags;
1514 unsigned long fd;
1515 unsigned long offset;
1516};
1517
1518SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1519{
1520 struct mmap_arg_struct a;
1521
1522 if (copy_from_user(&a, arg, sizeof(a)))
1523 return -EFAULT;
1524 if (a.offset & ~PAGE_MASK)
1525 return -EINVAL;
1526
1527 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1528 a.offset >> PAGE_SHIFT);
1529}
1530#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532/*
David Howells8feae132009-01-08 12:04:47 +00001533 * split a vma into two pieces at address 'addr', a new vma is allocated either
1534 * for the first part or the tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
David Howells8feae132009-01-08 12:04:47 +00001536int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
1537 unsigned long addr, int new_below)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
David Howells8feae132009-01-08 12:04:47 +00001539 struct vm_area_struct *new;
1540 struct vm_region *region;
1541 unsigned long npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
David Howells8feae132009-01-08 12:04:47 +00001543 kenter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
David Howells779c1022010-01-15 17:01:34 -08001545 /* we're only permitted to split anonymous regions (these should have
1546 * only a single usage on the region) */
1547 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +00001548 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
David Howells8feae132009-01-08 12:04:47 +00001550 if (mm->map_count >= sysctl_max_map_count)
1551 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
David Howells8feae132009-01-08 12:04:47 +00001553 region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
1554 if (!region)
1555 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
David Howells8feae132009-01-08 12:04:47 +00001557 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1558 if (!new) {
1559 kmem_cache_free(vm_region_jar, region);
1560 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
David Howells8feae132009-01-08 12:04:47 +00001562
1563 /* most fields are the same, copy all, and then fixup */
1564 *new = *vma;
1565 *region = *vma->vm_region;
1566 new->vm_region = region;
1567
1568 npages = (addr - vma->vm_start) >> PAGE_SHIFT;
1569
1570 if (new_below) {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001571 region->vm_top = region->vm_end = new->vm_end = addr;
David Howells8feae132009-01-08 12:04:47 +00001572 } else {
1573 region->vm_start = new->vm_start = addr;
1574 region->vm_pgoff = new->vm_pgoff += npages;
1575 }
1576
1577 if (new->vm_ops && new->vm_ops->open)
1578 new->vm_ops->open(new);
1579
1580 delete_vma_from_mm(vma);
1581 down_write(&nommu_region_sem);
1582 delete_nommu_region(vma->vm_region);
1583 if (new_below) {
1584 vma->vm_region->vm_start = vma->vm_start = addr;
1585 vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
1586 } else {
1587 vma->vm_region->vm_end = vma->vm_end = addr;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001588 vma->vm_region->vm_top = addr;
David Howells8feae132009-01-08 12:04:47 +00001589 }
1590 add_nommu_region(vma->vm_region);
1591 add_nommu_region(new->vm_region);
1592 up_write(&nommu_region_sem);
1593 add_vma_to_mm(mm, vma);
1594 add_vma_to_mm(mm, new);
1595 return 0;
1596}
1597
1598/*
1599 * shrink a VMA by removing the specified chunk from either the beginning or
1600 * the end
1601 */
1602static int shrink_vma(struct mm_struct *mm,
1603 struct vm_area_struct *vma,
1604 unsigned long from, unsigned long to)
1605{
1606 struct vm_region *region;
1607
1608 kenter("");
1609
1610 /* adjust the VMA's pointers, which may reposition it in the MM's tree
1611 * and list */
1612 delete_vma_from_mm(vma);
1613 if (from > vma->vm_start)
1614 vma->vm_end = from;
1615 else
1616 vma->vm_start = to;
1617 add_vma_to_mm(mm, vma);
1618
1619 /* cut the backing region down to size */
1620 region = vma->vm_region;
David Howells1e2ae592010-01-15 17:01:33 -08001621 BUG_ON(region->vm_usage != 1);
David Howells8feae132009-01-08 12:04:47 +00001622
1623 down_write(&nommu_region_sem);
1624 delete_nommu_region(region);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001625 if (from > region->vm_start) {
1626 to = region->vm_top;
1627 region->vm_top = region->vm_end = from;
1628 } else {
David Howells8feae132009-01-08 12:04:47 +00001629 region->vm_start = to;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001630 }
David Howells8feae132009-01-08 12:04:47 +00001631 add_nommu_region(region);
1632 up_write(&nommu_region_sem);
1633
1634 free_page_series(from, to);
1635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
David Howells30340972006-09-27 01:50:20 -07001638/*
1639 * release a mapping
David Howells8feae132009-01-08 12:04:47 +00001640 * - under NOMMU conditions the chunk to be unmapped must be backed by a single
1641 * VMA, though it need not cover the whole VMA
David Howells30340972006-09-27 01:50:20 -07001642 */
David Howells8feae132009-01-08 12:04:47 +00001643int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
David Howells8feae132009-01-08 12:04:47 +00001645 struct vm_area_struct *vma;
Bob Liuf67d9b12011-05-24 17:12:56 -07001646 unsigned long end;
David Howells8feae132009-01-08 12:04:47 +00001647 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
David Howells8feae132009-01-08 12:04:47 +00001649 kenter(",%lx,%zx", start, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Bob Liuf67d9b12011-05-24 17:12:56 -07001651 len = PAGE_ALIGN(len);
David Howells8feae132009-01-08 12:04:47 +00001652 if (len == 0)
1653 return -EINVAL;
1654
Bob Liuf67d9b12011-05-24 17:12:56 -07001655 end = start + len;
1656
David Howells8feae132009-01-08 12:04:47 +00001657 /* find the first potentially overlapping VMA */
1658 vma = find_vma(mm, start);
1659 if (!vma) {
Choi Gi-yongac714902014-04-07 15:37:36 -07001660 static int limit;
David Howells33e5d7692009-04-02 16:56:32 -07001661 if (limit < 5) {
1662 printk(KERN_WARNING
1663 "munmap of memory not mmapped by process %d"
1664 " (%s): 0x%lx-0x%lx\n",
1665 current->pid, current->comm,
1666 start, start + len - 1);
1667 limit++;
1668 }
David Howells8feae132009-01-08 12:04:47 +00001669 return -EINVAL;
David Howells30340972006-09-27 01:50:20 -07001670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
David Howells8feae132009-01-08 12:04:47 +00001672 /* we're allowed to split an anonymous VMA but not a file-backed one */
1673 if (vma->vm_file) {
1674 do {
1675 if (start > vma->vm_start) {
1676 kleave(" = -EINVAL [miss]");
1677 return -EINVAL;
1678 }
1679 if (end == vma->vm_end)
1680 goto erase_whole_vma;
Namhyung Kimd75a3102011-05-24 17:11:25 -07001681 vma = vma->vm_next;
1682 } while (vma);
David Howells8feae132009-01-08 12:04:47 +00001683 kleave(" = -EINVAL [split file]");
1684 return -EINVAL;
1685 } else {
1686 /* the chunk must be a subset of the VMA found */
1687 if (start == vma->vm_start && end == vma->vm_end)
1688 goto erase_whole_vma;
1689 if (start < vma->vm_start || end > vma->vm_end) {
1690 kleave(" = -EINVAL [superset]");
1691 return -EINVAL;
1692 }
1693 if (start & ~PAGE_MASK) {
1694 kleave(" = -EINVAL [unaligned start]");
1695 return -EINVAL;
1696 }
1697 if (end != vma->vm_end && end & ~PAGE_MASK) {
1698 kleave(" = -EINVAL [unaligned split]");
1699 return -EINVAL;
1700 }
1701 if (start != vma->vm_start && end != vma->vm_end) {
1702 ret = split_vma(mm, vma, start, 1);
1703 if (ret < 0) {
1704 kleave(" = %d [split]", ret);
1705 return ret;
1706 }
1707 }
1708 return shrink_vma(mm, vma, start, end);
1709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
David Howells8feae132009-01-08 12:04:47 +00001711erase_whole_vma:
1712 delete_vma_from_mm(vma);
1713 delete_vma(mm, vma);
1714 kleave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return 0;
1716}
Paul Mundtb5073172007-07-21 04:37:25 -07001717EXPORT_SYMBOL(do_munmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Al Virobfce2812012-04-20 21:57:04 -04001719int vm_munmap(unsigned long addr, size_t len)
David Howells30340972006-09-27 01:50:20 -07001720{
Al Virobfce2812012-04-20 21:57:04 -04001721 struct mm_struct *mm = current->mm;
David Howells30340972006-09-27 01:50:20 -07001722 int ret;
David Howells30340972006-09-27 01:50:20 -07001723
1724 down_write(&mm->mmap_sem);
1725 ret = do_munmap(mm, addr, len);
1726 up_write(&mm->mmap_sem);
1727 return ret;
1728}
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001729EXPORT_SYMBOL(vm_munmap);
1730
1731SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
1732{
Al Virobfce2812012-04-20 21:57:04 -04001733 return vm_munmap(addr, len);
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001734}
David Howells30340972006-09-27 01:50:20 -07001735
1736/*
David Howells8feae132009-01-08 12:04:47 +00001737 * release all the mappings made in a process's VM space
David Howells30340972006-09-27 01:50:20 -07001738 */
David Howells8feae132009-01-08 12:04:47 +00001739void exit_mmap(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
David Howells8feae132009-01-08 12:04:47 +00001741 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
David Howells8feae132009-01-08 12:04:47 +00001743 if (!mm)
1744 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
David Howells8feae132009-01-08 12:04:47 +00001746 kenter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
David Howells8feae132009-01-08 12:04:47 +00001748 mm->total_vm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
David Howells8feae132009-01-08 12:04:47 +00001750 while ((vma = mm->mmap)) {
1751 mm->mmap = vma->vm_next;
1752 delete_vma_from_mm(vma);
1753 delete_vma(mm, vma);
Steven J. Magnani04c34962010-11-24 12:56:54 -08001754 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
David Howells8feae132009-01-08 12:04:47 +00001756
1757 kleave("");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07001760unsigned long vm_brk(unsigned long addr, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 return -ENOMEM;
1763}
1764
1765/*
David Howells6fa5f802006-09-27 01:50:21 -07001766 * expand (or shrink) an existing mapping, potentially moving it at the same
1767 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 *
David Howells6fa5f802006-09-27 01:50:21 -07001769 * under NOMMU conditions, we only permit changing a mapping's size, and only
David Howells8feae132009-01-08 12:04:47 +00001770 * as long as it stays within the region allocated by do_mmap_private() and the
1771 * block is not shareable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 *
David Howells6fa5f802006-09-27 01:50:21 -07001773 * MREMAP_FIXED is not supported under NOMMU conditions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 */
Al Viro4b377ba2013-03-04 10:47:59 -05001775static unsigned long do_mremap(unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 unsigned long old_len, unsigned long new_len,
1777 unsigned long flags, unsigned long new_addr)
1778{
David Howells6fa5f802006-09-27 01:50:21 -07001779 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 /* insanity checks first */
Bob Liuf67d9b12011-05-24 17:12:56 -07001782 old_len = PAGE_ALIGN(old_len);
1783 new_len = PAGE_ALIGN(new_len);
David Howells8feae132009-01-08 12:04:47 +00001784 if (old_len == 0 || new_len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return (unsigned long) -EINVAL;
1786
David Howells8feae132009-01-08 12:04:47 +00001787 if (addr & ~PAGE_MASK)
1788 return -EINVAL;
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (flags & MREMAP_FIXED && new_addr != addr)
1791 return (unsigned long) -EINVAL;
1792
David Howells8feae132009-01-08 12:04:47 +00001793 vma = find_vma_exact(current->mm, addr, old_len);
David Howells6fa5f802006-09-27 01:50:21 -07001794 if (!vma)
1795 return (unsigned long) -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
David Howells6fa5f802006-09-27 01:50:21 -07001797 if (vma->vm_end != vma->vm_start + old_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return (unsigned long) -EFAULT;
1799
David Howells6fa5f802006-09-27 01:50:21 -07001800 if (vma->vm_flags & VM_MAYSHARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return (unsigned long) -EPERM;
1802
David Howells8feae132009-01-08 12:04:47 +00001803 if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return (unsigned long) -ENOMEM;
1805
1806 /* all checks complete - do it */
David Howells6fa5f802006-09-27 01:50:21 -07001807 vma->vm_end = vma->vm_start + new_len;
David Howells6fa5f802006-09-27 01:50:21 -07001808 return vma->vm_start;
1809}
1810
Heiko Carstens6a6160a2009-01-14 14:14:15 +01001811SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
1812 unsigned long, new_len, unsigned long, flags,
1813 unsigned long, new_addr)
David Howells6fa5f802006-09-27 01:50:21 -07001814{
1815 unsigned long ret;
1816
1817 down_write(&current->mm->mmap_sem);
1818 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
1819 up_write(&current->mm->mmap_sem);
1820 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Michel Lespinasse240aade2013-02-22 16:35:56 -08001823struct page *follow_page_mask(struct vm_area_struct *vma,
1824 unsigned long address, unsigned int flags,
1825 unsigned int *page_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Michel Lespinasse240aade2013-02-22 16:35:56 -08001827 *page_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return NULL;
1829}
1830
Bob Liu8f3b1322011-07-08 15:39:46 -07001831int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1832 unsigned long pfn, unsigned long size, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Bob Liu8f3b1322011-07-08 15:39:46 -07001834 if (addr != (pfn << PAGE_SHIFT))
1835 return -EINVAL;
1836
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001837 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
Luke Yang22c4af42006-07-14 00:24:09 -07001840EXPORT_SYMBOL(remap_pfn_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Linus Torvalds3c0b9de2013-04-27 13:25:38 -07001842int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1843{
1844 unsigned long pfn = start >> PAGE_SHIFT;
1845 unsigned long vm_len = vma->vm_end - vma->vm_start;
1846
1847 pfn += vma->vm_pgoff;
1848 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1849}
1850EXPORT_SYMBOL(vm_iomap_memory);
1851
Paul Mundtf905bc42008-02-04 22:29:59 -08001852int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1853 unsigned long pgoff)
1854{
1855 unsigned int size = vma->vm_end - vma->vm_start;
1856
1857 if (!(vma->vm_flags & VM_USERMAP))
1858 return -EINVAL;
1859
1860 vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1861 vma->vm_end = vma->vm_start + size;
1862
1863 return 0;
1864}
1865EXPORT_SYMBOL(remap_vmalloc_range);
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
1868 unsigned long len, unsigned long pgoff, unsigned long flags)
1869{
1870 return -ENOMEM;
1871}
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873void unmap_mapping_range(struct address_space *mapping,
1874 loff_t const holebegin, loff_t const holelen,
1875 int even_cows)
1876{
1877}
Luke Yang22c4af42006-07-14 00:24:09 -07001878EXPORT_SYMBOL(unmap_mapping_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880/*
1881 * Check that a process has enough memory to allocate a new virtual
1882 * mapping. 0 means there is enough memory for the allocation to
1883 * succeed and -ENOMEM implies there is not.
1884 *
1885 * We currently support three overcommit policies, which are set via the
1886 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1887 *
1888 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1889 * Additional code 2002 Jul 20 by Robert Love.
1890 *
1891 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1892 *
1893 * Note this is a helper function intended to be used by LSMs which
1894 * wish to use this logic.
1895 */
Alan Cox34b4e4a2007-08-22 14:01:28 -07001896int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001898 unsigned long free, allowed, reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 vm_acct_memory(pages);
1901
1902 /*
1903 * Sometimes we want to use more memory than we have
1904 */
1905 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
1906 return 0;
1907
1908 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
Dmitry Finkc15bef32011-07-25 17:12:19 -07001909 free = global_page_state(NR_FREE_PAGES);
1910 free += global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Dmitry Finkc15bef32011-07-25 17:12:19 -07001912 /*
1913 * shmem pages shouldn't be counted as free in this
1914 * case, they can't be purged, only swapped out, and
1915 * that won't affect the overall amount of available
1916 * memory in the system.
1917 */
1918 free -= global_page_state(NR_SHMEM);
1919
Shaohua Liec8acf22013-02-22 16:34:38 -08001920 free += get_nr_swap_pages();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 /*
1923 * Any slabs which are created with the
1924 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1925 * which are reclaimable, under pressure. The dentry
1926 * cache and most inode caches should fall into this
1927 */
Christoph Lameter972d1a72006-09-25 23:31:51 -07001928 free += global_page_state(NR_SLAB_RECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 /*
Dmitry Finkc15bef32011-07-25 17:12:19 -07001931 * Leave reserved pages. The pages are not for anonymous pages.
1932 */
1933 if (free <= totalreserve_pages)
1934 goto error;
1935 else
1936 free -= totalreserve_pages;
1937
1938 /*
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001939 * Reserve some for root
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 */
1941 if (!cap_sys_admin)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001942 free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 if (free > pages)
1945 return 0;
1946
Hideo AOKId5ddc792006-04-10 22:53:01 -07001947 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949
Jerome Marchand00619bc2013-11-12 15:08:31 -08001950 allowed = vm_commit_limit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /*
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001952 * Reserve some 3% for root
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 */
1954 if (!cap_sys_admin)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001955 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001957 /*
1958 * Don't let a single process grow so big a user can't recover
1959 */
1960 if (mm) {
1961 reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10);
1962 allowed -= min(mm->total_vm / 32, reserve);
1963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07001965 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return 0;
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07001967
Hideo AOKId5ddc792006-04-10 22:53:01 -07001968error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 vm_unacct_memory(pages);
1970
1971 return -ENOMEM;
1972}
1973
Nick Piggind0217ac2007-07-19 01:47:03 -07001974int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
David Howellsb0e15192006-01-06 00:11:42 -08001975{
1976 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001977 return 0;
David Howellsb0e15192006-01-06 00:11:42 -08001978}
Paul Mundtb5073172007-07-21 04:37:25 -07001979EXPORT_SYMBOL(filemap_fault);
David Howells0ec76a12006-09-27 01:50:15 -07001980
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07001981void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
1982{
1983 BUG();
1984}
1985EXPORT_SYMBOL(filemap_map_pages);
1986
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -07001987int generic_file_remap_pages(struct vm_area_struct *vma, unsigned long addr,
1988 unsigned long size, pgoff_t pgoff)
1989{
1990 BUG();
1991 return 0;
1992}
1993EXPORT_SYMBOL(generic_file_remap_pages);
1994
Mike Frysingerf55f1992011-03-29 14:05:12 +01001995static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
1996 unsigned long addr, void *buf, int len, int write)
David Howells0ec76a12006-09-27 01:50:15 -07001997{
David Howells0ec76a12006-09-27 01:50:15 -07001998 struct vm_area_struct *vma;
David Howells0ec76a12006-09-27 01:50:15 -07001999
2000 down_read(&mm->mmap_sem);
2001
2002 /* the access must start within one of the target process's mappings */
David Howells0159b142006-09-27 01:50:16 -07002003 vma = find_vma(mm, addr);
2004 if (vma) {
David Howells0ec76a12006-09-27 01:50:15 -07002005 /* don't overrun this mapping */
2006 if (addr + len >= vma->vm_end)
2007 len = vma->vm_end - addr;
2008
2009 /* only read or write mappings where it is permitted */
David Howellsd00c7b992006-09-27 01:50:19 -07002010 if (write && vma->vm_flags & VM_MAYWRITE)
Jie Zhang79597222010-01-06 17:23:28 +00002011 copy_to_user_page(vma, NULL, addr,
2012 (void *) addr, buf, len);
David Howellsd00c7b992006-09-27 01:50:19 -07002013 else if (!write && vma->vm_flags & VM_MAYREAD)
Jie Zhang79597222010-01-06 17:23:28 +00002014 copy_from_user_page(vma, NULL, addr,
2015 buf, (void *) addr, len);
David Howells0ec76a12006-09-27 01:50:15 -07002016 else
2017 len = 0;
2018 } else {
2019 len = 0;
2020 }
2021
2022 up_read(&mm->mmap_sem);
Mike Frysingerf55f1992011-03-29 14:05:12 +01002023
2024 return len;
2025}
2026
2027/**
2028 * @access_remote_vm - access another process' address space
2029 * @mm: the mm_struct of the target address space
2030 * @addr: start address to access
2031 * @buf: source or destination buffer
2032 * @len: number of bytes to transfer
2033 * @write: whether the access is a write
2034 *
2035 * The caller must hold a reference on @mm.
2036 */
2037int access_remote_vm(struct mm_struct *mm, unsigned long addr,
2038 void *buf, int len, int write)
2039{
2040 return __access_remote_vm(NULL, mm, addr, buf, len, write);
2041}
2042
2043/*
2044 * Access another process' address space.
2045 * - source/target buffer must be kernel space
2046 */
2047int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
2048{
2049 struct mm_struct *mm;
2050
2051 if (addr + len < addr)
2052 return 0;
2053
2054 mm = get_task_mm(tsk);
2055 if (!mm)
2056 return 0;
2057
2058 len = __access_remote_vm(tsk, mm, addr, buf, len, write);
2059
David Howells0ec76a12006-09-27 01:50:15 -07002060 mmput(mm);
2061 return len;
2062}
David Howells7e660872010-01-15 17:01:39 -08002063
2064/**
2065 * nommu_shrink_inode_mappings - Shrink the shared mappings on an inode
2066 * @inode: The inode to check
2067 * @size: The current filesize of the inode
2068 * @newsize: The proposed filesize of the inode
2069 *
2070 * Check the shared mappings on an inode on behalf of a shrinking truncate to
2071 * make sure that that any outstanding VMAs aren't broken and then shrink the
2072 * vm_regions that extend that beyond so that do_mmap_pgoff() doesn't
2073 * automatically grant mappings that are too large.
2074 */
2075int nommu_shrink_inode_mappings(struct inode *inode, size_t size,
2076 size_t newsize)
2077{
2078 struct vm_area_struct *vma;
David Howells7e660872010-01-15 17:01:39 -08002079 struct vm_region *region;
2080 pgoff_t low, high;
2081 size_t r_size, r_top;
2082
2083 low = newsize >> PAGE_SHIFT;
2084 high = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
2085
2086 down_write(&nommu_region_sem);
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08002087 i_mmap_lock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08002088
2089 /* search for VMAs that fall within the dead zone */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002090 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, low, high) {
David Howells7e660872010-01-15 17:01:39 -08002091 /* found one - only interested if it's shared out of the page
2092 * cache */
2093 if (vma->vm_flags & VM_SHARED) {
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08002094 i_mmap_unlock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08002095 up_write(&nommu_region_sem);
2096 return -ETXTBSY; /* not quite true, but near enough */
2097 }
2098 }
2099
2100 /* reduce any regions that overlap the dead zone - if in existence,
2101 * these will be pointed to by VMAs that don't overlap the dead zone
2102 *
2103 * we don't check for any regions that start beyond the EOF as there
2104 * shouldn't be any
2105 */
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08002106 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, 0, ULONG_MAX) {
David Howells7e660872010-01-15 17:01:39 -08002107 if (!(vma->vm_flags & VM_SHARED))
2108 continue;
2109
2110 region = vma->vm_region;
2111 r_size = region->vm_top - region->vm_start;
2112 r_top = (region->vm_pgoff << PAGE_SHIFT) + r_size;
2113
2114 if (r_top > newsize) {
2115 region->vm_top -= r_top - newsize;
2116 if (region->vm_end > region->vm_top)
2117 region->vm_end = region->vm_top;
2118 }
2119 }
2120
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08002121 i_mmap_unlock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08002122 up_write(&nommu_region_sem);
2123 return 0;
2124}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07002125
2126/*
2127 * Initialise sysctl_user_reserve_kbytes.
2128 *
2129 * This is intended to prevent a user from starting a single memory hogging
2130 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
2131 * mode.
2132 *
2133 * The default value is min(3% of free memory, 128MB)
2134 * 128MB is enough to recover with sshd/login, bash, and top/kill.
2135 */
2136static int __meminit init_user_reserve(void)
2137{
2138 unsigned long free_kbytes;
2139
2140 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
2141
2142 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
2143 return 0;
2144}
2145module_init(init_user_reserve)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07002146
2147/*
2148 * Initialise sysctl_admin_reserve_kbytes.
2149 *
2150 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
2151 * to log in and kill a memory hogging process.
2152 *
2153 * Systems with more than 256MB will reserve 8MB, enough to recover
2154 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
2155 * only reserve 3% of free pages by default.
2156 */
2157static int __meminit init_admin_reserve(void)
2158{
2159 unsigned long free_kbytes;
2160
2161 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
2162
2163 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
2164 return 0;
2165}
2166module_init(init_admin_reserve)