blob: 6402f2715d4842096dea6035e719b58ed487fcea [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>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070036#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/uaccess.h>
39#include <asm/tlb.h>
40#include <asm/tlbflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070041#include <asm/mmu_context.h>
David Howells8feae132009-01-08 12:04:47 +000042#include "internal.h"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044void *high_memory;
Arnd Bergmann944b6872015-02-05 12:25:12 -080045EXPORT_SYMBOL(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046struct page *mem_map;
47unsigned long max_mapnr;
gchen gchen5b8bf302015-03-12 16:26:05 -070048EXPORT_SYMBOL(max_mapnr);
Hugh Dickins4266c972009-09-23 17:05:53 +010049unsigned long highest_memmap_pfn;
David Howellsfc4d5c22009-05-06 16:03:05 -070050int sysctl_nr_trim_pages = CONFIG_NOMMU_INITIAL_TRIM_EXCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051int heap_stack_gap = 0;
52
David Howells33e5d7692009-04-02 16:56:32 -070053atomic_long_t mmap_pages_allocated;
David Howells8feae132009-01-08 12:04:47 +000054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055EXPORT_SYMBOL(mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David Howells8feae132009-01-08 12:04:47 +000057/* list of mapped, potentially shareable regions */
58static struct kmem_cache *vm_region_jar;
59struct rb_root nommu_region_tree = RB_ROOT;
60DECLARE_RWSEM(nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040062const struct vm_operations_struct generic_file_vm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * Return the total memory allocated for this pointer, not
67 * just what the caller asked for.
68 *
69 * Doesn't have to be accurate, i.e. may have races.
70 */
71unsigned int kobjsize(const void *objp)
72{
73 struct page *page;
74
Michael Hennerich4016a132008-04-28 02:13:38 -070075 /*
76 * If the object we have should not have ksize performed on it,
77 * return size of 0
78 */
Paul Mundt5a1603b2008-06-12 16:29:55 +090079 if (!objp || !virt_addr_valid(objp))
Paul Mundt6cfd53fc2008-06-05 22:46:08 -070080 return 0;
81
82 page = virt_to_head_page(objp);
Paul Mundt6cfd53fc2008-06-05 22:46:08 -070083
84 /*
85 * If the allocator sets PageSlab, we know the pointer came from
86 * kmalloc().
87 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (PageSlab(page))
89 return ksize(objp);
90
Paul Mundt6cfd53fc2008-06-05 22:46:08 -070091 /*
Paul Mundtab2e83e2009-01-08 12:04:48 +000092 * If it's not a compound page, see if we have a matching VMA
93 * region. This test is intentionally done in reverse order,
94 * so if there's no VMA, we still fall through and hand back
95 * PAGE_SIZE for 0-order pages.
96 */
97 if (!PageCompound(page)) {
98 struct vm_area_struct *vma;
99
100 vma = find_vma(current->mm, (unsigned long)objp);
101 if (vma)
102 return vma->vm_end - vma->vm_start;
103 }
104
105 /*
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700106 * The ksize() function is only guaranteed to work for pointers
Paul Mundt5a1603b2008-06-12 16:29:55 +0900107 * returned by kmalloc(). So handle arbitrary pointers here.
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700108 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900109 return PAGE_SIZE << compound_order(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Michel Lespinasse28a35712013-02-22 16:35:55 -0800112long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
113 unsigned long start, unsigned long nr_pages,
114 unsigned int foll_flags, struct page **pages,
115 struct vm_area_struct **vmas, int *nonblocking)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Sonic Zhang910e46d2006-09-27 01:50:17 -0700117 struct vm_area_struct *vma;
David Howells7b4d5b82006-09-27 01:50:18 -0700118 unsigned long vm_flags;
119 int i;
120
121 /* calculate required read or write permissions.
Hugh Dickins58fa8792009-09-21 17:03:31 -0700122 * If FOLL_FORCE is set, we only require the "MAY" flags.
David Howells7b4d5b82006-09-27 01:50:18 -0700123 */
Hugh Dickins58fa8792009-09-21 17:03:31 -0700124 vm_flags = (foll_flags & FOLL_WRITE) ?
125 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
126 vm_flags &= (foll_flags & FOLL_FORCE) ?
127 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Peter Zijlstra9d737772009-06-25 11:58:55 +0200129 for (i = 0; i < nr_pages; i++) {
David Howells7561e8c2010-03-25 16:48:38 +0000130 vma = find_vma(mm, start);
David Howells7b4d5b82006-09-27 01:50:18 -0700131 if (!vma)
132 goto finish_or_fault;
133
134 /* protect what we can, including chardevs */
Hugh Dickins1c3aff12009-09-21 17:03:24 -0700135 if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
136 !(vm_flags & vma->vm_flags))
David Howells7b4d5b82006-09-27 01:50:18 -0700137 goto finish_or_fault;
Sonic Zhang910e46d2006-09-27 01:50:17 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (pages) {
140 pages[i] = virt_to_page(start);
141 if (pages[i])
142 page_cache_get(pages[i]);
143 }
144 if (vmas)
Sonic Zhang910e46d2006-09-27 01:50:17 -0700145 vmas[i] = vma;
David Howellse1ee65d2010-03-25 16:48:44 +0000146 start = (start + PAGE_SIZE) & PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
David Howells7b4d5b82006-09-27 01:50:18 -0700148
149 return i;
150
151finish_or_fault:
152 return i ? : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
Nick Pigginb291f002008-10-18 20:26:44 -0700154
Nick Pigginb291f002008-10-18 20:26:44 -0700155/*
156 * get a list of pages in an address range belonging to the specified process
157 * and indicate the VMA that covers each page
158 * - this is potentially dodgy as we may end incrementing the page count of a
159 * slab page or a secondary page from a compound page
160 * - don't permit access to VMAs that don't support it, such as I/O mappings
161 */
Michel Lespinasse28a35712013-02-22 16:35:55 -0800162long get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
163 unsigned long start, unsigned long nr_pages,
164 int write, int force, struct page **pages,
165 struct vm_area_struct **vmas)
Nick Pigginb291f002008-10-18 20:26:44 -0700166{
167 int flags = 0;
168
169 if (write)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700170 flags |= FOLL_WRITE;
Nick Pigginb291f002008-10-18 20:26:44 -0700171 if (force)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700172 flags |= FOLL_FORCE;
Nick Pigginb291f002008-10-18 20:26:44 -0700173
Michel Lespinasse53a77062011-01-13 15:46:14 -0800174 return __get_user_pages(tsk, mm, start, nr_pages, flags, pages, vmas,
175 NULL);
Nick Pigginb291f002008-10-18 20:26:44 -0700176}
Greg Ungerer66aa2b42005-09-12 11:18:10 +1000177EXPORT_SYMBOL(get_user_pages);
178
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800179long get_user_pages_locked(struct task_struct *tsk, struct mm_struct *mm,
180 unsigned long start, unsigned long nr_pages,
181 int write, int force, struct page **pages,
182 int *locked)
183{
184 return get_user_pages(tsk, mm, start, nr_pages, write, force,
185 pages, NULL);
186}
187EXPORT_SYMBOL(get_user_pages_locked);
188
Andrea Arcangeli0fd71a52015-02-11 15:27:20 -0800189long __get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm,
190 unsigned long start, unsigned long nr_pages,
191 int write, int force, struct page **pages,
192 unsigned int gup_flags)
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800193{
194 long ret;
195 down_read(&mm->mmap_sem);
196 ret = get_user_pages(tsk, mm, start, nr_pages, write, force,
197 pages, NULL);
198 up_read(&mm->mmap_sem);
199 return ret;
200}
Andrea Arcangeli0fd71a52015-02-11 15:27:20 -0800201EXPORT_SYMBOL(__get_user_pages_unlocked);
202
203long get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm,
204 unsigned long start, unsigned long nr_pages,
205 int write, int force, struct page **pages)
206{
207 return __get_user_pages_unlocked(tsk, mm, start, nr_pages, write,
208 force, pages, 0);
209}
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800210EXPORT_SYMBOL(get_user_pages_unlocked);
211
Paul Mundtdfc2f912009-06-26 04:31:57 +0900212/**
213 * follow_pfn - look up PFN at a user virtual address
214 * @vma: memory mapping
215 * @address: user virtual address
216 * @pfn: location to store found PFN
217 *
218 * Only IO mappings and raw PFN mappings are allowed.
219 *
220 * Returns zero and the pfn at @pfn on success, -ve otherwise.
221 */
222int follow_pfn(struct vm_area_struct *vma, unsigned long address,
223 unsigned long *pfn)
224{
225 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
226 return -EINVAL;
227
228 *pfn = address >> PAGE_SHIFT;
229 return 0;
230}
231EXPORT_SYMBOL(follow_pfn);
232
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700233LIST_HEAD(vmap_area_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800235void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 kfree(addr);
238}
Paul Mundtb5073172007-07-21 04:37:25 -0700239EXPORT_SYMBOL(vfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Al Virodd0fc662005-10-07 07:46:04 +0100241void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 /*
Robert P. J. Day85186092007-10-19 23:11:38 +0200244 * You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
245 * returns only a logical address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
Nick Piggin84097512006-03-22 00:08:34 -0800247 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
Paul Mundtb5073172007-07-21 04:37:25 -0700249EXPORT_SYMBOL(__vmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Paul Mundtf905bc42008-02-04 22:29:59 -0800251void *vmalloc_user(unsigned long size)
252{
253 void *ret;
254
255 ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
256 PAGE_KERNEL);
257 if (ret) {
258 struct vm_area_struct *vma;
259
260 down_write(&current->mm->mmap_sem);
261 vma = find_vma(current->mm, (unsigned long)ret);
262 if (vma)
263 vma->vm_flags |= VM_USERMAP;
264 up_write(&current->mm->mmap_sem);
265 }
266
267 return ret;
268}
269EXPORT_SYMBOL(vmalloc_user);
270
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800271struct page *vmalloc_to_page(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 return virt_to_page(addr);
274}
Paul Mundtb5073172007-07-21 04:37:25 -0700275EXPORT_SYMBOL(vmalloc_to_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800277unsigned long vmalloc_to_pfn(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 return page_to_pfn(virt_to_page(addr));
280}
Paul Mundtb5073172007-07-21 04:37:25 -0700281EXPORT_SYMBOL(vmalloc_to_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283long vread(char *buf, char *addr, unsigned long count)
284{
Chen Gang9bde9162013-07-03 15:02:36 -0700285 /* Don't allow overflow */
286 if ((unsigned long) buf + count < count)
287 count = -(unsigned long) buf;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 memcpy(buf, addr, count);
290 return count;
291}
292
293long vwrite(char *buf, char *addr, unsigned long count)
294{
295 /* Don't allow overflow */
296 if ((unsigned long) addr + count < count)
297 count = -(unsigned long) addr;
298
299 memcpy(addr, buf, count);
Choi Gi-yongac714902014-04-07 15:37:36 -0700300 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/*
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900304 * vmalloc - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 *
306 * @size: allocation size
307 *
308 * Allocate enough pages to cover @size from the page level
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900309 * allocator and map them into contiguous kernel virtual space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +0200311 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * use __vmalloc() instead.
313 */
314void *vmalloc(unsigned long size)
315{
316 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL);
317}
Andrew Mortonf6138882006-02-28 16:59:18 -0800318EXPORT_SYMBOL(vmalloc);
319
Dave Younge1ca7782010-10-26 14:22:06 -0700320/*
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900321 * vzalloc - allocate virtually contiguous memory with zero fill
Dave Younge1ca7782010-10-26 14:22:06 -0700322 *
323 * @size: allocation size
324 *
325 * Allocate enough pages to cover @size from the page level
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900326 * allocator and map them into contiguous kernel virtual space.
Dave Younge1ca7782010-10-26 14:22:06 -0700327 * The memory allocated is set to zero.
328 *
329 * For tight control over page level allocator and protection flags
330 * use __vmalloc() instead.
331 */
332void *vzalloc(unsigned long size)
333{
334 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
335 PAGE_KERNEL);
336}
337EXPORT_SYMBOL(vzalloc);
338
339/**
340 * vmalloc_node - allocate memory on a specific node
341 * @size: allocation size
342 * @node: numa node
343 *
344 * Allocate enough pages to cover @size from the page level
345 * allocator and map them into contiguous kernel virtual space.
346 *
347 * For tight control over page level allocator and protection flags
348 * use __vmalloc() instead.
349 */
Andrew Mortonf6138882006-02-28 16:59:18 -0800350void *vmalloc_node(unsigned long size, int node)
351{
352 return vmalloc(size);
353}
Paul Mundt9a14f652010-12-24 11:50:34 +0900354EXPORT_SYMBOL(vmalloc_node);
Dave Younge1ca7782010-10-26 14:22:06 -0700355
356/**
357 * vzalloc_node - allocate memory on a specific node with zero fill
358 * @size: allocation size
359 * @node: numa node
360 *
361 * Allocate enough pages to cover @size from the page level
362 * allocator and map them into contiguous kernel virtual space.
363 * The memory allocated is set to zero.
364 *
365 * For tight control over page level allocator and protection flags
366 * use __vmalloc() instead.
367 */
368void *vzalloc_node(unsigned long size, int node)
369{
370 return vzalloc(size);
371}
372EXPORT_SYMBOL(vzalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Paul Mundt1af446e2008-08-04 16:01:47 +0900374#ifndef PAGE_KERNEL_EXEC
375# define PAGE_KERNEL_EXEC PAGE_KERNEL
376#endif
377
378/**
379 * vmalloc_exec - allocate virtually contiguous, executable memory
380 * @size: allocation size
381 *
382 * Kernel-internal function to allocate enough pages to cover @size
383 * the page level allocator and map them into contiguous and
384 * executable kernel virtual space.
385 *
386 * For tight control over page level allocator and protection flags
387 * use __vmalloc() instead.
388 */
389
390void *vmalloc_exec(unsigned long size)
391{
392 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC);
393}
394
Paul Mundtb5073172007-07-21 04:37:25 -0700395/**
396 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * @size: allocation size
398 *
399 * Allocate enough 32bit PA addressable pages to cover @size from the
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900400 * page level allocator and map them into contiguous kernel virtual space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 */
402void *vmalloc_32(unsigned long size)
403{
404 return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL);
405}
Paul Mundtb5073172007-07-21 04:37:25 -0700406EXPORT_SYMBOL(vmalloc_32);
407
408/**
409 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
410 * @size: allocation size
411 *
412 * The resulting memory area is 32bit addressable and zeroed so it can be
413 * mapped to userspace without leaking data.
Paul Mundtf905bc42008-02-04 22:29:59 -0800414 *
415 * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
416 * remap_vmalloc_range() are permissible.
Paul Mundtb5073172007-07-21 04:37:25 -0700417 */
418void *vmalloc_32_user(unsigned long size)
419{
Paul Mundtf905bc42008-02-04 22:29:59 -0800420 /*
421 * We'll have to sort out the ZONE_DMA bits for 64-bit,
422 * but for now this can simply use vmalloc_user() directly.
423 */
424 return vmalloc_user(size);
Paul Mundtb5073172007-07-21 04:37:25 -0700425}
426EXPORT_SYMBOL(vmalloc_32_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
429{
430 BUG();
431 return NULL;
432}
Paul Mundtb5073172007-07-21 04:37:25 -0700433EXPORT_SYMBOL(vmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800435void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 BUG();
438}
Paul Mundtb5073172007-07-21 04:37:25 -0700439EXPORT_SYMBOL(vunmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Paul Mundteb6434d2009-01-21 17:45:47 +0900441void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
442{
443 BUG();
444 return NULL;
445}
446EXPORT_SYMBOL(vm_map_ram);
447
448void vm_unmap_ram(const void *mem, unsigned int count)
449{
450 BUG();
451}
452EXPORT_SYMBOL(vm_unmap_ram);
453
454void vm_unmap_aliases(void)
455{
456}
457EXPORT_SYMBOL_GPL(vm_unmap_aliases);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700460 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
461 * have one.
462 */
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700463void __weak vmalloc_sync_all(void)
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700464{
465}
466
Paul Mundt29c185e2010-12-24 12:08:30 +0900467/**
468 * alloc_vm_area - allocate a range of kernel address space
469 * @size: size of the area
470 *
471 * Returns: NULL on failure, vm_struct on success
472 *
473 * This function reserves a range of kernel address space, and
474 * allocates pagetables to map that range. No actual mappings
475 * are created. If the kernel address space is not shared
476 * between processes, it syncs the pagetable across all
477 * processes.
478 */
David Vrabelcd129092011-09-29 16:53:32 +0100479struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Paul Mundt29c185e2010-12-24 12:08:30 +0900480{
481 BUG();
482 return NULL;
483}
484EXPORT_SYMBOL_GPL(alloc_vm_area);
485
486void free_vm_area(struct vm_struct *area)
487{
488 BUG();
489}
490EXPORT_SYMBOL_GPL(free_vm_area);
491
Paul Mundtb5073172007-07-21 04:37:25 -0700492int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
493 struct page *page)
494{
495 return -EINVAL;
496}
497EXPORT_SYMBOL(vm_insert_page);
498
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * sys_brk() for the most part doesn't need the global kernel
501 * lock, except when an application is doing something nasty
502 * like trying to un-brk an area that has already been mapped
503 * to a regular file. in this case, the unmapping will need
504 * to invoke file system routines that need the global lock.
505 */
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100506SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 struct mm_struct *mm = current->mm;
509
510 if (brk < mm->start_brk || brk > mm->context.end_brk)
511 return mm->brk;
512
513 if (mm->brk == brk)
514 return mm->brk;
515
516 /*
517 * Always allow shrinking brk
518 */
519 if (brk <= mm->brk) {
520 mm->brk = brk;
521 return brk;
522 }
523
524 /*
525 * Ok, looks good - let it rip.
526 */
Mike Frysingercfe79c02010-01-06 17:23:23 +0000527 flush_icache_range(mm->brk, brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return mm->brk = brk;
529}
530
David Howells8feae132009-01-08 12:04:47 +0000531/*
532 * initialise the VMA and region record slabs
533 */
534void __init mmap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700536 int ret;
537
Tejun Heo908c7f12014-09-08 09:51:29 +0900538 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700539 VM_BUG_ON(ret);
Vladimir Davydov5d097052016-01-14 15:18:21 -0800540 vm_region_jar = KMEM_CACHE(vm_region, SLAB_PANIC|SLAB_ACCOUNT);
David Howells8feae132009-01-08 12:04:47 +0000541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
David Howells8feae132009-01-08 12:04:47 +0000543/*
544 * validate the region tree
545 * - the caller must hold the region lock
546 */
547#ifdef CONFIG_DEBUG_NOMMU_REGIONS
548static noinline void validate_nommu_regions(void)
549{
550 struct vm_region *region, *last;
551 struct rb_node *p, *lastp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
David Howells8feae132009-01-08 12:04:47 +0000553 lastp = rb_first(&nommu_region_tree);
554 if (!lastp)
555 return;
556
557 last = rb_entry(lastp, struct vm_region, vm_rb);
Geliang Tangc9427bc2015-11-05 18:48:38 -0800558 BUG_ON(last->vm_end <= last->vm_start);
559 BUG_ON(last->vm_top < last->vm_end);
David Howells8feae132009-01-08 12:04:47 +0000560
561 while ((p = rb_next(lastp))) {
562 region = rb_entry(p, struct vm_region, vm_rb);
563 last = rb_entry(lastp, struct vm_region, vm_rb);
564
Geliang Tangc9427bc2015-11-05 18:48:38 -0800565 BUG_ON(region->vm_end <= region->vm_start);
566 BUG_ON(region->vm_top < region->vm_end);
567 BUG_ON(region->vm_start < last->vm_top);
David Howells8feae132009-01-08 12:04:47 +0000568
569 lastp = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571}
David Howells8feae132009-01-08 12:04:47 +0000572#else
David Howells33e5d7692009-04-02 16:56:32 -0700573static void validate_nommu_regions(void)
574{
575}
David Howells8feae132009-01-08 12:04:47 +0000576#endif
577
578/*
579 * add a region into the global tree
580 */
581static void add_nommu_region(struct vm_region *region)
582{
583 struct vm_region *pregion;
584 struct rb_node **p, *parent;
585
586 validate_nommu_regions();
587
David Howells8feae132009-01-08 12:04:47 +0000588 parent = NULL;
589 p = &nommu_region_tree.rb_node;
590 while (*p) {
591 parent = *p;
592 pregion = rb_entry(parent, struct vm_region, vm_rb);
593 if (region->vm_start < pregion->vm_start)
594 p = &(*p)->rb_left;
595 else if (region->vm_start > pregion->vm_start)
596 p = &(*p)->rb_right;
597 else if (pregion == region)
598 return;
599 else
600 BUG();
601 }
602
603 rb_link_node(&region->vm_rb, parent, p);
604 rb_insert_color(&region->vm_rb, &nommu_region_tree);
605
606 validate_nommu_regions();
607}
608
609/*
610 * delete a region from the global tree
611 */
612static void delete_nommu_region(struct vm_region *region)
613{
614 BUG_ON(!nommu_region_tree.rb_node);
615
616 validate_nommu_regions();
617 rb_erase(&region->vm_rb, &nommu_region_tree);
618 validate_nommu_regions();
619}
620
621/*
622 * free a contiguous series of pages
623 */
624static void free_page_series(unsigned long from, unsigned long to)
625{
626 for (; from < to; from += PAGE_SIZE) {
627 struct page *page = virt_to_page(from);
628
David Howells33e5d7692009-04-02 16:56:32 -0700629 atomic_long_dec(&mmap_pages_allocated);
David Howells8feae132009-01-08 12:04:47 +0000630 put_page(page);
631 }
632}
633
634/*
635 * release a reference to a region
David Howells33e5d7692009-04-02 16:56:32 -0700636 * - the caller must hold the region semaphore for writing, which this releases
Paul Mundtdd8632a2009-01-08 12:04:47 +0000637 * - the region may not have been added to the tree yet, in which case vm_top
David Howells8feae132009-01-08 12:04:47 +0000638 * will equal vm_start
639 */
640static void __put_nommu_region(struct vm_region *region)
641 __releases(nommu_region_sem)
642{
David Howells8feae132009-01-08 12:04:47 +0000643 BUG_ON(!nommu_region_tree.rb_node);
644
David Howells1e2ae592010-01-15 17:01:33 -0800645 if (--region->vm_usage == 0) {
Paul Mundtdd8632a2009-01-08 12:04:47 +0000646 if (region->vm_top > region->vm_start)
David Howells8feae132009-01-08 12:04:47 +0000647 delete_nommu_region(region);
648 up_write(&nommu_region_sem);
649
650 if (region->vm_file)
651 fput(region->vm_file);
652
653 /* IO memory and memory shared directly out of the pagecache
654 * from ramfs/tmpfs mustn't be released here */
Leon Romanovsky22cc8772015-06-24 16:57:47 -0700655 if (region->vm_flags & VM_MAPPED_COPY)
Paul Mundtdd8632a2009-01-08 12:04:47 +0000656 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +0000657 kmem_cache_free(vm_region_jar, region);
658 } else {
659 up_write(&nommu_region_sem);
660 }
661}
662
663/*
664 * release a reference to a region
665 */
666static void put_nommu_region(struct vm_region *region)
667{
668 down_write(&nommu_region_sem);
669 __put_nommu_region(region);
670}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
David Howells30340972006-09-27 01:50:20 -0700672/*
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700673 * update protection on a vma
674 */
675static void protect_vma(struct vm_area_struct *vma, unsigned long flags)
676{
677#ifdef CONFIG_MPU
678 struct mm_struct *mm = vma->vm_mm;
679 long start = vma->vm_start & PAGE_MASK;
680 while (start < vma->vm_end) {
681 protect_page(mm, start, flags);
682 start += PAGE_SIZE;
683 }
684 update_protections(mm);
685#endif
686}
687
688/*
David Howells30340972006-09-27 01:50:20 -0700689 * add a VMA into a process's mm_struct in the appropriate place in the list
David Howells8feae132009-01-08 12:04:47 +0000690 * and tree and add to the address space's page tree also if not an anonymous
691 * page
David Howells30340972006-09-27 01:50:20 -0700692 * - should be called with mm->mmap_sem held writelocked
693 */
David Howells8feae132009-01-08 12:04:47 +0000694static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
David Howells30340972006-09-27 01:50:20 -0700695{
Namhyung Kim6038def2011-05-24 17:11:22 -0700696 struct vm_area_struct *pvma, *prev;
David Howells8feae132009-01-08 12:04:47 +0000697 struct address_space *mapping;
Namhyung Kim6038def2011-05-24 17:11:22 -0700698 struct rb_node **p, *parent, *rb_prev;
David Howells30340972006-09-27 01:50:20 -0700699
David Howells8feae132009-01-08 12:04:47 +0000700 BUG_ON(!vma->vm_region);
701
702 mm->map_count++;
703 vma->vm_mm = mm;
704
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700705 protect_vma(vma, vma->vm_flags);
706
David Howells8feae132009-01-08 12:04:47 +0000707 /* add the VMA to the mapping */
708 if (vma->vm_file) {
709 mapping = vma->vm_file->f_mapping;
710
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800711 i_mmap_lock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000712 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700713 vma_interval_tree_insert(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000714 flush_dcache_mmap_unlock(mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800715 i_mmap_unlock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000716 }
717
718 /* add the VMA to the tree */
Namhyung Kim6038def2011-05-24 17:11:22 -0700719 parent = rb_prev = NULL;
David Howells8feae132009-01-08 12:04:47 +0000720 p = &mm->mm_rb.rb_node;
721 while (*p) {
722 parent = *p;
723 pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
724
725 /* sort by: start addr, end addr, VMA struct addr in that order
726 * (the latter is necessary as we may get identical VMAs) */
727 if (vma->vm_start < pvma->vm_start)
728 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700729 else if (vma->vm_start > pvma->vm_start) {
730 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000731 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700732 } else if (vma->vm_end < pvma->vm_end)
David Howells8feae132009-01-08 12:04:47 +0000733 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700734 else if (vma->vm_end > pvma->vm_end) {
735 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000736 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700737 } else if (vma < pvma)
David Howells8feae132009-01-08 12:04:47 +0000738 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700739 else if (vma > pvma) {
740 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000741 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700742 } else
David Howells8feae132009-01-08 12:04:47 +0000743 BUG();
744 }
745
746 rb_link_node(&vma->vm_rb, parent, p);
747 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
748
749 /* add VMA to the VMA list also */
Namhyung Kim6038def2011-05-24 17:11:22 -0700750 prev = NULL;
751 if (rb_prev)
752 prev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
David Howells30340972006-09-27 01:50:20 -0700753
Namhyung Kim6038def2011-05-24 17:11:22 -0700754 __vma_link_list(mm, vma, prev, parent);
David Howells8feae132009-01-08 12:04:47 +0000755}
756
757/*
758 * delete a VMA from its owning mm_struct and address space
759 */
760static void delete_vma_from_mm(struct vm_area_struct *vma)
761{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700762 int i;
David Howells8feae132009-01-08 12:04:47 +0000763 struct address_space *mapping;
764 struct mm_struct *mm = vma->vm_mm;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700765 struct task_struct *curr = current;
David Howells8feae132009-01-08 12:04:47 +0000766
Bernd Schmidteb8cdec2009-09-21 17:03:57 -0700767 protect_vma(vma, 0);
768
David Howells8feae132009-01-08 12:04:47 +0000769 mm->map_count--;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700770 for (i = 0; i < VMACACHE_SIZE; i++) {
771 /* if the vma is cached, invalidate the entire cache */
772 if (curr->vmacache[i] == vma) {
Steven Miaoe020d5b2014-06-23 13:22:02 -0700773 vmacache_invalidate(mm);
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700774 break;
775 }
776 }
David Howells8feae132009-01-08 12:04:47 +0000777
778 /* remove the VMA from the mapping */
779 if (vma->vm_file) {
780 mapping = vma->vm_file->f_mapping;
781
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800782 i_mmap_lock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000783 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700784 vma_interval_tree_remove(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000785 flush_dcache_mmap_unlock(mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800786 i_mmap_unlock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000787 }
788
789 /* remove from the MM's tree and list */
790 rb_erase(&vma->vm_rb, &mm->mm_rb);
Namhyung Kimb951bf22011-05-24 17:11:23 -0700791
792 if (vma->vm_prev)
793 vma->vm_prev->vm_next = vma->vm_next;
794 else
795 mm->mmap = vma->vm_next;
796
797 if (vma->vm_next)
798 vma->vm_next->vm_prev = vma->vm_prev;
David Howells8feae132009-01-08 12:04:47 +0000799}
800
801/*
802 * destroy a VMA record
803 */
804static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
805{
David Howells8feae132009-01-08 12:04:47 +0000806 if (vma->vm_ops && vma->vm_ops->close)
807 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700808 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +0000809 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +0000810 put_nommu_region(vma->vm_region);
811 kmem_cache_free(vm_area_cachep, vma);
David Howells30340972006-09-27 01:50:20 -0700812}
813
814/*
815 * look up the first VMA in which addr resides, NULL if none
816 * - should be called with mm->mmap_sem at least held readlocked
817 */
818struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
819{
David Howells8feae132009-01-08 12:04:47 +0000820 struct vm_area_struct *vma;
David Howells30340972006-09-27 01:50:20 -0700821
David Howells8feae132009-01-08 12:04:47 +0000822 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700823 vma = vmacache_find(mm, addr);
824 if (likely(vma))
David Howells8feae132009-01-08 12:04:47 +0000825 return vma;
826
Namhyung Kime922c4c2011-05-24 17:11:24 -0700827 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000828 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700829 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000830 if (vma->vm_start > addr)
831 return NULL;
832 if (vma->vm_end > addr) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700833 vmacache_update(addr, vma);
David Howells8feae132009-01-08 12:04:47 +0000834 return vma;
835 }
David Howells30340972006-09-27 01:50:20 -0700836 }
837
David Howells30340972006-09-27 01:50:20 -0700838 return NULL;
839}
840EXPORT_SYMBOL(find_vma);
841
842/*
David Howells930e6522006-09-27 01:50:22 -0700843 * find a VMA
844 * - we don't extend stack VMAs under NOMMU conditions
845 */
846struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
847{
David Howells7561e8c2010-03-25 16:48:38 +0000848 return find_vma(mm, addr);
David Howells930e6522006-09-27 01:50:22 -0700849}
850
David Howells8feae132009-01-08 12:04:47 +0000851/*
852 * expand a stack to a given address
853 * - not supported under NOMMU conditions
854 */
Greg Ungerer57c8f632007-07-15 23:38:28 -0700855int expand_stack(struct vm_area_struct *vma, unsigned long address)
856{
857 return -ENOMEM;
858}
859
David Howells930e6522006-09-27 01:50:22 -0700860/*
David Howells6fa5f802006-09-27 01:50:21 -0700861 * look up the first VMA exactly that exactly matches addr
862 * - should be called with mm->mmap_sem at least held readlocked
863 */
David Howells8feae132009-01-08 12:04:47 +0000864static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
865 unsigned long addr,
866 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct vm_area_struct *vma;
David Howells8feae132009-01-08 12:04:47 +0000869 unsigned long end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
David Howells8feae132009-01-08 12:04:47 +0000871 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700872 vma = vmacache_find_exact(mm, addr, end);
873 if (vma)
David Howells8feae132009-01-08 12:04:47 +0000874 return vma;
875
Namhyung Kime922c4c2011-05-24 17:11:24 -0700876 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000877 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700878 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000879 if (vma->vm_start < addr)
880 continue;
881 if (vma->vm_start > addr)
882 return NULL;
883 if (vma->vm_end == end) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700884 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return vma;
David Howells8feae132009-01-08 12:04:47 +0000886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888
889 return NULL;
890}
891
David Howells30340972006-09-27 01:50:20 -0700892/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 * determine whether a mapping should be permitted and, if so, what sort of
894 * mapping we're capable of supporting
895 */
896static int validate_mmap_request(struct file *file,
897 unsigned long addr,
898 unsigned long len,
899 unsigned long prot,
900 unsigned long flags,
901 unsigned long pgoff,
902 unsigned long *_capabilities)
903{
David Howells8feae132009-01-08 12:04:47 +0000904 unsigned long capabilities, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int ret;
906
907 /* do the simple checks first */
Leon Romanovsky22cc8772015-06-24 16:57:47 -0700908 if (flags & MAP_FIXED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if ((flags & MAP_TYPE) != MAP_PRIVATE &&
912 (flags & MAP_TYPE) != MAP_SHARED)
913 return -EINVAL;
914
Mike Frysingerf81cff02006-12-06 12:02:59 +1000915 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return -EINVAL;
917
Mike Frysingerf81cff02006-12-06 12:02:59 +1000918 /* Careful about overflows.. */
David Howells8feae132009-01-08 12:04:47 +0000919 rlen = PAGE_ALIGN(len);
920 if (!rlen || rlen > TASK_SIZE)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000921 return -ENOMEM;
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /* offset overflow? */
David Howells8feae132009-01-08 12:04:47 +0000924 if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000925 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 /* files must support mmap */
Al Viro72c2d532013-09-22 16:27:52 -0400929 if (!file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return -ENODEV;
931
932 /* work out if what we've got could possibly be shared
933 * - we support chardevs that provide their own "memory"
934 * - we support files/blockdevs that are memory backed
935 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100936 if (file->f_op->mmap_capabilities) {
937 capabilities = file->f_op->mmap_capabilities(file);
938 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /* no explicit capabilities set, so assume some
940 * defaults */
Al Viro496ad9a2013-01-23 17:07:38 -0500941 switch (file_inode(file)->i_mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 case S_IFREG:
943 case S_IFBLK:
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100944 capabilities = NOMMU_MAP_COPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 break;
946
947 case S_IFCHR:
948 capabilities =
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100949 NOMMU_MAP_DIRECT |
950 NOMMU_MAP_READ |
951 NOMMU_MAP_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 break;
953
954 default:
955 return -EINVAL;
956 }
957 }
958
959 /* eliminate any capabilities that we can't support on this
960 * device */
961 if (!file->f_op->get_unmapped_area)
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100962 capabilities &= ~NOMMU_MAP_DIRECT;
Al Viro6e242a12015-03-31 12:35:13 -0400963 if (!(file->f_mode & FMODE_CAN_READ))
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100964 capabilities &= ~NOMMU_MAP_COPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Graff Yang28d7a6a2009-08-18 14:11:17 -0700966 /* The file shall have been opened with read permission. */
967 if (!(file->f_mode & FMODE_READ))
968 return -EACCES;
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (flags & MAP_SHARED) {
971 /* do checks for writing, appending and locking */
972 if ((prot & PROT_WRITE) &&
973 !(file->f_mode & FMODE_WRITE))
974 return -EACCES;
975
Al Viro496ad9a2013-01-23 17:07:38 -0500976 if (IS_APPEND(file_inode(file)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 (file->f_mode & FMODE_WRITE))
978 return -EACCES;
979
Jeff Laytond7a06982014-03-10 09:54:15 -0400980 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return -EAGAIN;
982
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100983 if (!(capabilities & NOMMU_MAP_DIRECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return -ENODEV;
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 /* we mustn't privatise shared mappings */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100987 capabilities &= ~NOMMU_MAP_COPY;
Choi Gi-yongac714902014-04-07 15:37:36 -0700988 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* we're going to read the file into private memory we
990 * allocate */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100991 if (!(capabilities & NOMMU_MAP_COPY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return -ENODEV;
993
994 /* we don't permit a private writable mapping to be
995 * shared with the backing device */
996 if (prot & PROT_WRITE)
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100997 capabilities &= ~NOMMU_MAP_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001000 if (capabilities & NOMMU_MAP_DIRECT) {
1001 if (((prot & PROT_READ) && !(capabilities & NOMMU_MAP_READ)) ||
1002 ((prot & PROT_WRITE) && !(capabilities & NOMMU_MAP_WRITE)) ||
1003 ((prot & PROT_EXEC) && !(capabilities & NOMMU_MAP_EXEC))
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001004 ) {
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001005 capabilities &= ~NOMMU_MAP_DIRECT;
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001006 if (flags & MAP_SHARED) {
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001007 pr_warn("MAP_SHARED not completely supported on !MMU\n");
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001008 return -EINVAL;
1009 }
1010 }
1011 }
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* handle executable mappings and implied executable
1014 * mappings */
Eric W. Biederman90f85722015-06-29 14:42:03 -05001015 if (path_noexec(&file->f_path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (prot & PROT_EXEC)
1017 return -EPERM;
Choi Gi-yongac714902014-04-07 15:37:36 -07001018 } else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 /* handle implication of PROT_EXEC by PROT_READ */
1020 if (current->personality & READ_IMPLIES_EXEC) {
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001021 if (capabilities & NOMMU_MAP_EXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 prot |= PROT_EXEC;
1023 }
Choi Gi-yongac714902014-04-07 15:37:36 -07001024 } else if ((prot & PROT_READ) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 (prot & PROT_EXEC) &&
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001026 !(capabilities & NOMMU_MAP_EXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 ) {
1028 /* backing file is not executable, try to copy */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001029 capabilities &= ~NOMMU_MAP_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Choi Gi-yongac714902014-04-07 15:37:36 -07001031 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /* anonymous mappings are always memory backed and can be
1033 * privately mapped
1034 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001035 capabilities = NOMMU_MAP_COPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 /* handle PROT_EXEC implication by PROT_READ */
1038 if ((prot & PROT_READ) &&
1039 (current->personality & READ_IMPLIES_EXEC))
1040 prot |= PROT_EXEC;
1041 }
1042
1043 /* allow the security API to have its say */
Al Viroe5467852012-05-30 13:30:51 -04001044 ret = security_mmap_addr(addr);
1045 if (ret < 0)
1046 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /* looks okay */
1049 *_capabilities = capabilities;
1050 return 0;
1051}
1052
1053/*
1054 * we've determined that we can make the mapping, now translate what we
1055 * now know into VMA flags
1056 */
1057static unsigned long determine_vm_flags(struct file *file,
1058 unsigned long prot,
1059 unsigned long flags,
1060 unsigned long capabilities)
1061{
1062 unsigned long vm_flags;
1063
1064 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 /* vm_flags |= mm->def_flags; */
1066
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001067 if (!(capabilities & NOMMU_MAP_DIRECT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /* attempt to share read-only copies of mapped file chunks */
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001069 vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (file && !(prot & PROT_WRITE))
1071 vm_flags |= VM_MAYSHARE;
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001072 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /* overlay a shareable mapping on the backing device or inode
1074 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
1075 * romfs/cramfs */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001076 vm_flags |= VM_MAYSHARE | (capabilities & NOMMU_VMFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (flags & MAP_SHARED)
Bernd Schmidt3c7b2042010-05-25 23:43:00 -07001078 vm_flags |= VM_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
1081 /* refuse to let anyone share private mappings with this process if
1082 * it's being traced - otherwise breakpoints set in it may interfere
1083 * with another untraced process
1084 */
Tejun Heoa288eec2011-06-17 16:50:37 +02001085 if ((flags & MAP_PRIVATE) && current->ptrace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 vm_flags &= ~VM_MAYSHARE;
1087
1088 return vm_flags;
1089}
1090
1091/*
David Howells8feae132009-01-08 12:04:47 +00001092 * set up a shared mapping on a file (the driver or filesystem provides and
1093 * pins the storage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 */
David Howells8feae132009-01-08 12:04:47 +00001095static int do_mmap_shared_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 int ret;
1098
1099 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001100 if (ret == 0) {
1101 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +01001102 return 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (ret != -ENOSYS)
1105 return ret;
1106
David Howells3fa30462010-03-23 13:35:21 -07001107 /* getting -ENOSYS indicates that direct mmap isn't possible (as
1108 * opposed to tried but failed) so we can only give a suitable error as
1109 * it's not possible to make a private copy if MAP_SHARED was given */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return -ENODEV;
1111}
1112
1113/*
1114 * set up a private mapping or an anonymous shared mapping
1115 */
David Howells8feae132009-01-08 12:04:47 +00001116static int do_mmap_private(struct vm_area_struct *vma,
1117 struct vm_region *region,
David Howells645d83c2009-09-24 15:13:10 +01001118 unsigned long len,
1119 unsigned long capabilities)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001121 unsigned long total, point;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 void *base;
David Howells8feae132009-01-08 12:04:47 +00001123 int ret, order;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 /* invoke the file's mapping function so that it can keep track of
1126 * shared mappings on devices or memory
1127 * - VM_MAYSHARE will be set if it may attempt to share
1128 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001129 if (capabilities & NOMMU_MAP_DIRECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001131 if (ret == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* shouldn't return success if we're not sharing */
Paul Mundtdd8632a2009-01-08 12:04:47 +00001133 BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1134 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +01001135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
Paul Mundtdd8632a2009-01-08 12:04:47 +00001137 if (ret != -ENOSYS)
1138 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /* getting an ENOSYS error indicates that direct mmap isn't
1141 * possible (as opposed to tried but failed) so we'll try to
1142 * make a private copy of the data and map that instead */
1143 }
1144
David Howells8feae132009-01-08 12:04:47 +00001145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 /* allocate some memory to hold the mapping
1147 * - note that this may not return a page-aligned address if the object
1148 * we're allocating is smaller than a page
1149 */
Bob Liuf67d9b12011-05-24 17:12:56 -07001150 order = get_order(len);
David Howells8feae132009-01-08 12:04:47 +00001151 total = 1 << order;
Bob Liuf67d9b12011-05-24 17:12:56 -07001152 point = len >> PAGE_SHIFT;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001153
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001154 /* we don't want to allocate a power-of-2 sized page set */
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001155 if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages)
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001156 total = point;
David Howells8feae132009-01-08 12:04:47 +00001157
Joonsoo Kimda616532015-02-27 15:51:43 -08001158 base = alloc_pages_exact(total << PAGE_SHIFT, GFP_KERNEL);
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001159 if (!base)
1160 goto enomem;
David Howells8feae132009-01-08 12:04:47 +00001161
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001162 atomic_long_add(total, &mmap_pages_allocated);
1163
David Howells8feae132009-01-08 12:04:47 +00001164 region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
1165 region->vm_start = (unsigned long) base;
Bob Liuf67d9b12011-05-24 17:12:56 -07001166 region->vm_end = region->vm_start + len;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001167 region->vm_top = region->vm_start + (total << PAGE_SHIFT);
David Howells8feae132009-01-08 12:04:47 +00001168
1169 vma->vm_start = region->vm_start;
1170 vma->vm_end = region->vm_start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 if (vma->vm_file) {
1173 /* read the contents of a file into the copy */
1174 mm_segment_t old_fs;
1175 loff_t fpos;
1176
1177 fpos = vma->vm_pgoff;
1178 fpos <<= PAGE_SHIFT;
1179
1180 old_fs = get_fs();
1181 set_fs(KERNEL_DS);
Al Viro6e242a12015-03-31 12:35:13 -04001182 ret = __vfs_read(vma->vm_file, base, len, &fpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 set_fs(old_fs);
1184
1185 if (ret < 0)
1186 goto error_free;
1187
1188 /* clear the last little bit */
Bob Liuf67d9b12011-05-24 17:12:56 -07001189 if (ret < len)
1190 memset(base + ret, 0, len - ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193
1194 return 0;
1195
1196error_free:
Namhyung Kim7223bb42011-05-24 17:11:26 -07001197 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +00001198 region->vm_start = vma->vm_start = 0;
1199 region->vm_end = vma->vm_end = 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001200 region->vm_top = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return ret;
1202
1203enomem:
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07001204 pr_err("Allocation of length %lu from process %d (%s) failed\n",
Greg Ungerer05ae6fa2009-01-13 17:30:22 +10001205 len, current->pid, current->comm);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001206 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return -ENOMEM;
1208}
1209
1210/*
1211 * handle mapping creation for uClinux
1212 */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001213unsigned long do_mmap(struct file *file,
1214 unsigned long addr,
1215 unsigned long len,
1216 unsigned long prot,
1217 unsigned long flags,
1218 vm_flags_t vm_flags,
1219 unsigned long pgoff,
1220 unsigned long *populate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
David Howells8feae132009-01-08 12:04:47 +00001222 struct vm_area_struct *vma;
1223 struct vm_region *region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 struct rb_node *rb;
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001225 unsigned long capabilities, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 int ret;
1227
Michel Lespinasse41badc12013-02-22 16:32:47 -08001228 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 /* decide whether we should attempt the mapping, and if so what sort of
1231 * mapping */
1232 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
1233 &capabilities);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001234 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return ret;
1236
David Howells06aab5a2009-09-24 12:33:48 +01001237 /* we ignore the address hint */
1238 addr = 0;
Bob Liuf67d9b12011-05-24 17:12:56 -07001239 len = PAGE_ALIGN(len);
David Howells06aab5a2009-09-24 12:33:48 +01001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /* we've determined that we can make the mapping, now translate what we
1242 * now know into VMA flags */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001243 vm_flags |= determine_vm_flags(file, prot, flags, capabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
David Howells8feae132009-01-08 12:04:47 +00001245 /* we're going to need to record the mapping */
1246 region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
1247 if (!region)
1248 goto error_getting_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
David Howells8feae132009-01-08 12:04:47 +00001250 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
1251 if (!vma)
1252 goto error_getting_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
David Howells1e2ae592010-01-15 17:01:33 -08001254 region->vm_usage = 1;
David Howells8feae132009-01-08 12:04:47 +00001255 region->vm_flags = vm_flags;
1256 region->vm_pgoff = pgoff;
1257
Rik van Riel5beb4932010-03-05 13:42:07 -08001258 INIT_LIST_HEAD(&vma->anon_vma_chain);
David Howells8feae132009-01-08 12:04:47 +00001259 vma->vm_flags = vm_flags;
1260 vma->vm_pgoff = pgoff;
1261
1262 if (file) {
Al Virocb0942b2012-08-27 14:48:26 -04001263 region->vm_file = get_file(file);
1264 vma->vm_file = get_file(file);
David Howells8feae132009-01-08 12:04:47 +00001265 }
1266
1267 down_write(&nommu_region_sem);
1268
1269 /* if we want to share, we need to check for regions created by other
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 * mmap() calls that overlap with our proposed mapping
David Howells8feae132009-01-08 12:04:47 +00001271 * - we can only share with a superset match on most regular files
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * - shared mappings on character devices and memory backed files are
1273 * permitted to overlap inexactly as far as we are concerned for in
1274 * these cases, sharing is handled in the driver or filesystem rather
1275 * than here
1276 */
1277 if (vm_flags & VM_MAYSHARE) {
David Howells8feae132009-01-08 12:04:47 +00001278 struct vm_region *pregion;
1279 unsigned long pglen, rpglen, pgend, rpgend, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
David Howells8feae132009-01-08 12:04:47 +00001281 pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1282 pgend = pgoff + pglen;
David Howells165b2392007-03-22 00:11:24 -08001283
David Howells8feae132009-01-08 12:04:47 +00001284 for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
1285 pregion = rb_entry(rb, struct vm_region, vm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
David Howells8feae132009-01-08 12:04:47 +00001287 if (!(pregion->vm_flags & VM_MAYSHARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 continue;
1289
1290 /* search for overlapping mappings on the same file */
Al Viro496ad9a2013-01-23 17:07:38 -05001291 if (file_inode(pregion->vm_file) !=
1292 file_inode(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 continue;
1294
David Howells8feae132009-01-08 12:04:47 +00001295 if (pregion->vm_pgoff >= pgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 continue;
1297
David Howells8feae132009-01-08 12:04:47 +00001298 rpglen = pregion->vm_end - pregion->vm_start;
1299 rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1300 rpgend = pregion->vm_pgoff + rpglen;
1301 if (pgoff >= rpgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 continue;
1303
David Howells8feae132009-01-08 12:04:47 +00001304 /* handle inexactly overlapping matches between
1305 * mappings */
1306 if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
1307 !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
1308 /* new mapping is not a subset of the region */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001309 if (!(capabilities & NOMMU_MAP_DIRECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 goto sharing_violation;
1311 continue;
1312 }
1313
David Howells8feae132009-01-08 12:04:47 +00001314 /* we've found a region we can share */
David Howells1e2ae592010-01-15 17:01:33 -08001315 pregion->vm_usage++;
David Howells8feae132009-01-08 12:04:47 +00001316 vma->vm_region = pregion;
1317 start = pregion->vm_start;
1318 start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
1319 vma->vm_start = start;
1320 vma->vm_end = start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001322 if (pregion->vm_flags & VM_MAPPED_COPY)
David Howells8feae132009-01-08 12:04:47 +00001323 vma->vm_flags |= VM_MAPPED_COPY;
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001324 else {
David Howells8feae132009-01-08 12:04:47 +00001325 ret = do_mmap_shared_file(vma);
1326 if (ret < 0) {
1327 vma->vm_region = NULL;
1328 vma->vm_start = 0;
1329 vma->vm_end = 0;
David Howells1e2ae592010-01-15 17:01:33 -08001330 pregion->vm_usage--;
David Howells8feae132009-01-08 12:04:47 +00001331 pregion = NULL;
1332 goto error_just_free;
1333 }
1334 }
1335 fput(region->vm_file);
1336 kmem_cache_free(vm_region_jar, region);
1337 region = pregion;
1338 result = start;
1339 goto share;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /* obtain the address at which to make a shared mapping
1343 * - this is the hook for quasi-memory character devices to
1344 * tell us the location of a shared mapping
1345 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001346 if (capabilities & NOMMU_MAP_DIRECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 addr = file->f_op->get_unmapped_area(file, addr, len,
1348 pgoff, flags);
Namhyung Kimbb005a52011-05-24 17:11:27 -07001349 if (IS_ERR_VALUE(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 ret = addr;
Namhyung Kimbb005a52011-05-24 17:11:27 -07001351 if (ret != -ENOSYS)
David Howells8feae132009-01-08 12:04:47 +00001352 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 /* the driver refused to tell us where to site
1355 * the mapping so we'll have to attempt to copy
1356 * it */
Namhyung Kimbb005a52011-05-24 17:11:27 -07001357 ret = -ENODEV;
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001358 if (!(capabilities & NOMMU_MAP_COPY))
David Howells8feae132009-01-08 12:04:47 +00001359 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001361 capabilities &= ~NOMMU_MAP_DIRECT;
David Howells8feae132009-01-08 12:04:47 +00001362 } else {
1363 vma->vm_start = region->vm_start = addr;
1364 vma->vm_end = region->vm_end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 }
1367 }
1368
David Howells8feae132009-01-08 12:04:47 +00001369 vma->vm_region = region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
David Howells645d83c2009-09-24 15:13:10 +01001371 /* set up the mapping
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001372 * - the region is filled in if NOMMU_MAP_DIRECT is still set
David Howells645d83c2009-09-24 15:13:10 +01001373 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (file && vma->vm_flags & VM_SHARED)
David Howells8feae132009-01-08 12:04:47 +00001375 ret = do_mmap_shared_file(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 else
David Howells645d83c2009-09-24 15:13:10 +01001377 ret = do_mmap_private(vma, region, len, capabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (ret < 0)
David Howells645d83c2009-09-24 15:13:10 +01001379 goto error_just_free;
1380 add_nommu_region(region);
David Howells8feae132009-01-08 12:04:47 +00001381
Jie Zhangea637632009-12-14 18:00:02 -08001382 /* clear anonymous mappings that don't ask for uninitialized data */
1383 if (!vma->vm_file && !(flags & MAP_UNINITIALIZED))
1384 memset((void *)region->vm_start, 0,
1385 region->vm_end - region->vm_start);
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 /* okay... we have a mapping; now we have to register it */
David Howells8feae132009-01-08 12:04:47 +00001388 result = vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 current->mm->total_vm += len >> PAGE_SHIFT;
1391
David Howells8feae132009-01-08 12:04:47 +00001392share:
1393 add_vma_to_mm(current->mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Mike Frysingercfe79c02010-01-06 17:23:23 +00001395 /* we flush the region from the icache only when the first executable
1396 * mapping of it is made */
1397 if (vma->vm_flags & VM_EXEC && !region->vm_icache_flushed) {
1398 flush_icache_range(region->vm_start, region->vm_end);
1399 region->vm_icache_flushed = true;
1400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Mike Frysingercfe79c02010-01-06 17:23:23 +00001402 up_write(&nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
David Howells8feae132009-01-08 12:04:47 +00001404 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
David Howells8feae132009-01-08 12:04:47 +00001406error_just_free:
1407 up_write(&nommu_region_sem);
1408error:
David Howells89a86402009-10-30 13:13:26 +00001409 if (region->vm_file)
1410 fput(region->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001411 kmem_cache_free(vm_region_jar, region);
David Howells89a86402009-10-30 13:13:26 +00001412 if (vma->vm_file)
1413 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001414 kmem_cache_free(vm_area_cachep, vma);
David Howells8feae132009-01-08 12:04:47 +00001415 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
David Howells8feae132009-01-08 12:04:47 +00001417sharing_violation:
1418 up_write(&nommu_region_sem);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001419 pr_warn("Attempt to share mismatched mappings\n");
David Howells8feae132009-01-08 12:04:47 +00001420 ret = -EINVAL;
1421 goto error;
1422
1423error_getting_vma:
1424 kmem_cache_free(vm_region_jar, region);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001425 pr_warn("Allocation of vma for %lu byte allocation from process %d failed\n",
1426 len, current->pid);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001427 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return -ENOMEM;
1429
David Howells8feae132009-01-08 12:04:47 +00001430error_getting_region:
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001431 pr_warn("Allocation of vm region for %lu byte allocation from process %d failed\n",
1432 len, current->pid);
David Rientjes7bf02ea2011-05-24 17:11:16 -07001433 show_free_areas(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return -ENOMEM;
1435}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001436
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001437SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1438 unsigned long, prot, unsigned long, flags,
1439 unsigned long, fd, unsigned long, pgoff)
1440{
1441 struct file *file = NULL;
1442 unsigned long retval = -EBADF;
1443
Al Viro120a7952010-10-30 02:54:44 -04001444 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001445 if (!(flags & MAP_ANONYMOUS)) {
1446 file = fget(fd);
1447 if (!file)
1448 goto out;
1449 }
1450
1451 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1452
Greg Ungererad1ed292012-06-04 14:29:59 +10001453 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001454
1455 if (file)
1456 fput(file);
1457out:
1458 return retval;
1459}
1460
Christoph Hellwiga4679372010-03-10 15:21:15 -08001461#ifdef __ARCH_WANT_SYS_OLD_MMAP
1462struct mmap_arg_struct {
1463 unsigned long addr;
1464 unsigned long len;
1465 unsigned long prot;
1466 unsigned long flags;
1467 unsigned long fd;
1468 unsigned long offset;
1469};
1470
1471SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1472{
1473 struct mmap_arg_struct a;
1474
1475 if (copy_from_user(&a, arg, sizeof(a)))
1476 return -EFAULT;
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001477 if (offset_in_page(a.offset))
Christoph Hellwiga4679372010-03-10 15:21:15 -08001478 return -EINVAL;
1479
1480 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1481 a.offset >> PAGE_SHIFT);
1482}
1483#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485/*
David Howells8feae132009-01-08 12:04:47 +00001486 * split a vma into two pieces at address 'addr', a new vma is allocated either
1487 * for the first part or the tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 */
David Howells8feae132009-01-08 12:04:47 +00001489int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
1490 unsigned long addr, int new_below)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
David Howells8feae132009-01-08 12:04:47 +00001492 struct vm_area_struct *new;
1493 struct vm_region *region;
1494 unsigned long npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
David Howells779c1022010-01-15 17:01:34 -08001496 /* we're only permitted to split anonymous regions (these should have
1497 * only a single usage on the region) */
1498 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +00001499 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
David Howells8feae132009-01-08 12:04:47 +00001501 if (mm->map_count >= sysctl_max_map_count)
1502 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
David Howells8feae132009-01-08 12:04:47 +00001504 region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
1505 if (!region)
1506 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
David Howells8feae132009-01-08 12:04:47 +00001508 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1509 if (!new) {
1510 kmem_cache_free(vm_region_jar, region);
1511 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
David Howells8feae132009-01-08 12:04:47 +00001513
1514 /* most fields are the same, copy all, and then fixup */
1515 *new = *vma;
1516 *region = *vma->vm_region;
1517 new->vm_region = region;
1518
1519 npages = (addr - vma->vm_start) >> PAGE_SHIFT;
1520
1521 if (new_below) {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001522 region->vm_top = region->vm_end = new->vm_end = addr;
David Howells8feae132009-01-08 12:04:47 +00001523 } else {
1524 region->vm_start = new->vm_start = addr;
1525 region->vm_pgoff = new->vm_pgoff += npages;
1526 }
1527
1528 if (new->vm_ops && new->vm_ops->open)
1529 new->vm_ops->open(new);
1530
1531 delete_vma_from_mm(vma);
1532 down_write(&nommu_region_sem);
1533 delete_nommu_region(vma->vm_region);
1534 if (new_below) {
1535 vma->vm_region->vm_start = vma->vm_start = addr;
1536 vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
1537 } else {
1538 vma->vm_region->vm_end = vma->vm_end = addr;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001539 vma->vm_region->vm_top = addr;
David Howells8feae132009-01-08 12:04:47 +00001540 }
1541 add_nommu_region(vma->vm_region);
1542 add_nommu_region(new->vm_region);
1543 up_write(&nommu_region_sem);
1544 add_vma_to_mm(mm, vma);
1545 add_vma_to_mm(mm, new);
1546 return 0;
1547}
1548
1549/*
1550 * shrink a VMA by removing the specified chunk from either the beginning or
1551 * the end
1552 */
1553static int shrink_vma(struct mm_struct *mm,
1554 struct vm_area_struct *vma,
1555 unsigned long from, unsigned long to)
1556{
1557 struct vm_region *region;
1558
David Howells8feae132009-01-08 12:04:47 +00001559 /* adjust the VMA's pointers, which may reposition it in the MM's tree
1560 * and list */
1561 delete_vma_from_mm(vma);
1562 if (from > vma->vm_start)
1563 vma->vm_end = from;
1564 else
1565 vma->vm_start = to;
1566 add_vma_to_mm(mm, vma);
1567
1568 /* cut the backing region down to size */
1569 region = vma->vm_region;
David Howells1e2ae592010-01-15 17:01:33 -08001570 BUG_ON(region->vm_usage != 1);
David Howells8feae132009-01-08 12:04:47 +00001571
1572 down_write(&nommu_region_sem);
1573 delete_nommu_region(region);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001574 if (from > region->vm_start) {
1575 to = region->vm_top;
1576 region->vm_top = region->vm_end = from;
1577 } else {
David Howells8feae132009-01-08 12:04:47 +00001578 region->vm_start = to;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001579 }
David Howells8feae132009-01-08 12:04:47 +00001580 add_nommu_region(region);
1581 up_write(&nommu_region_sem);
1582
1583 free_page_series(from, to);
1584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
David Howells30340972006-09-27 01:50:20 -07001587/*
1588 * release a mapping
David Howells8feae132009-01-08 12:04:47 +00001589 * - under NOMMU conditions the chunk to be unmapped must be backed by a single
1590 * VMA, though it need not cover the whole VMA
David Howells30340972006-09-27 01:50:20 -07001591 */
David Howells8feae132009-01-08 12:04:47 +00001592int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
David Howells8feae132009-01-08 12:04:47 +00001594 struct vm_area_struct *vma;
Bob Liuf67d9b12011-05-24 17:12:56 -07001595 unsigned long end;
David Howells8feae132009-01-08 12:04:47 +00001596 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Bob Liuf67d9b12011-05-24 17:12:56 -07001598 len = PAGE_ALIGN(len);
David Howells8feae132009-01-08 12:04:47 +00001599 if (len == 0)
1600 return -EINVAL;
1601
Bob Liuf67d9b12011-05-24 17:12:56 -07001602 end = start + len;
1603
David Howells8feae132009-01-08 12:04:47 +00001604 /* find the first potentially overlapping VMA */
1605 vma = find_vma(mm, start);
1606 if (!vma) {
Choi Gi-yongac714902014-04-07 15:37:36 -07001607 static int limit;
David Howells33e5d7692009-04-02 16:56:32 -07001608 if (limit < 5) {
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001609 pr_warn("munmap of memory not mmapped by process %d (%s): 0x%lx-0x%lx\n",
1610 current->pid, current->comm,
1611 start, start + len - 1);
David Howells33e5d7692009-04-02 16:56:32 -07001612 limit++;
1613 }
David Howells8feae132009-01-08 12:04:47 +00001614 return -EINVAL;
David Howells30340972006-09-27 01:50:20 -07001615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
David Howells8feae132009-01-08 12:04:47 +00001617 /* we're allowed to split an anonymous VMA but not a file-backed one */
1618 if (vma->vm_file) {
1619 do {
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001620 if (start > vma->vm_start)
David Howells8feae132009-01-08 12:04:47 +00001621 return -EINVAL;
David Howells8feae132009-01-08 12:04:47 +00001622 if (end == vma->vm_end)
1623 goto erase_whole_vma;
Namhyung Kimd75a3102011-05-24 17:11:25 -07001624 vma = vma->vm_next;
1625 } while (vma);
David Howells8feae132009-01-08 12:04:47 +00001626 return -EINVAL;
1627 } else {
1628 /* the chunk must be a subset of the VMA found */
1629 if (start == vma->vm_start && end == vma->vm_end)
1630 goto erase_whole_vma;
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001631 if (start < vma->vm_start || end > vma->vm_end)
David Howells8feae132009-01-08 12:04:47 +00001632 return -EINVAL;
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001633 if (offset_in_page(start))
David Howells8feae132009-01-08 12:04:47 +00001634 return -EINVAL;
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001635 if (end != vma->vm_end && offset_in_page(end))
David Howells8feae132009-01-08 12:04:47 +00001636 return -EINVAL;
David Howells8feae132009-01-08 12:04:47 +00001637 if (start != vma->vm_start && end != vma->vm_end) {
1638 ret = split_vma(mm, vma, start, 1);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001639 if (ret < 0)
David Howells8feae132009-01-08 12:04:47 +00001640 return ret;
David Howells8feae132009-01-08 12:04:47 +00001641 }
1642 return shrink_vma(mm, vma, start, end);
1643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
David Howells8feae132009-01-08 12:04:47 +00001645erase_whole_vma:
1646 delete_vma_from_mm(vma);
1647 delete_vma(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return 0;
1649}
Paul Mundtb5073172007-07-21 04:37:25 -07001650EXPORT_SYMBOL(do_munmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Al Virobfce2812012-04-20 21:57:04 -04001652int vm_munmap(unsigned long addr, size_t len)
David Howells30340972006-09-27 01:50:20 -07001653{
Al Virobfce2812012-04-20 21:57:04 -04001654 struct mm_struct *mm = current->mm;
David Howells30340972006-09-27 01:50:20 -07001655 int ret;
David Howells30340972006-09-27 01:50:20 -07001656
1657 down_write(&mm->mmap_sem);
1658 ret = do_munmap(mm, addr, len);
1659 up_write(&mm->mmap_sem);
1660 return ret;
1661}
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001662EXPORT_SYMBOL(vm_munmap);
1663
1664SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
1665{
Al Virobfce2812012-04-20 21:57:04 -04001666 return vm_munmap(addr, len);
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001667}
David Howells30340972006-09-27 01:50:20 -07001668
1669/*
David Howells8feae132009-01-08 12:04:47 +00001670 * release all the mappings made in a process's VM space
David Howells30340972006-09-27 01:50:20 -07001671 */
David Howells8feae132009-01-08 12:04:47 +00001672void exit_mmap(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
David Howells8feae132009-01-08 12:04:47 +00001674 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
David Howells8feae132009-01-08 12:04:47 +00001676 if (!mm)
1677 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
David Howells8feae132009-01-08 12:04:47 +00001679 mm->total_vm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
David Howells8feae132009-01-08 12:04:47 +00001681 while ((vma = mm->mmap)) {
1682 mm->mmap = vma->vm_next;
1683 delete_vma_from_mm(vma);
1684 delete_vma(mm, vma);
Steven J. Magnani04c34962010-11-24 12:56:54 -08001685 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687}
1688
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07001689unsigned long vm_brk(unsigned long addr, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 return -ENOMEM;
1692}
1693
1694/*
David Howells6fa5f802006-09-27 01:50:21 -07001695 * expand (or shrink) an existing mapping, potentially moving it at the same
1696 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 *
David Howells6fa5f802006-09-27 01:50:21 -07001698 * under NOMMU conditions, we only permit changing a mapping's size, and only
David Howells8feae132009-01-08 12:04:47 +00001699 * as long as it stays within the region allocated by do_mmap_private() and the
1700 * block is not shareable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 *
David Howells6fa5f802006-09-27 01:50:21 -07001702 * MREMAP_FIXED is not supported under NOMMU conditions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Al Viro4b377ba2013-03-04 10:47:59 -05001704static unsigned long do_mremap(unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 unsigned long old_len, unsigned long new_len,
1706 unsigned long flags, unsigned long new_addr)
1707{
David Howells6fa5f802006-09-27 01:50:21 -07001708 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 /* insanity checks first */
Bob Liuf67d9b12011-05-24 17:12:56 -07001711 old_len = PAGE_ALIGN(old_len);
1712 new_len = PAGE_ALIGN(new_len);
David Howells8feae132009-01-08 12:04:47 +00001713 if (old_len == 0 || new_len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return (unsigned long) -EINVAL;
1715
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001716 if (offset_in_page(addr))
David Howells8feae132009-01-08 12:04:47 +00001717 return -EINVAL;
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (flags & MREMAP_FIXED && new_addr != addr)
1720 return (unsigned long) -EINVAL;
1721
David Howells8feae132009-01-08 12:04:47 +00001722 vma = find_vma_exact(current->mm, addr, old_len);
David Howells6fa5f802006-09-27 01:50:21 -07001723 if (!vma)
1724 return (unsigned long) -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
David Howells6fa5f802006-09-27 01:50:21 -07001726 if (vma->vm_end != vma->vm_start + old_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return (unsigned long) -EFAULT;
1728
David Howells6fa5f802006-09-27 01:50:21 -07001729 if (vma->vm_flags & VM_MAYSHARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 return (unsigned long) -EPERM;
1731
David Howells8feae132009-01-08 12:04:47 +00001732 if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return (unsigned long) -ENOMEM;
1734
1735 /* all checks complete - do it */
David Howells6fa5f802006-09-27 01:50:21 -07001736 vma->vm_end = vma->vm_start + new_len;
David Howells6fa5f802006-09-27 01:50:21 -07001737 return vma->vm_start;
1738}
1739
Heiko Carstens6a6160a2009-01-14 14:14:15 +01001740SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
1741 unsigned long, new_len, unsigned long, flags,
1742 unsigned long, new_addr)
David Howells6fa5f802006-09-27 01:50:21 -07001743{
1744 unsigned long ret;
1745
1746 down_write(&current->mm->mmap_sem);
1747 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
1748 up_write(&current->mm->mmap_sem);
1749 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Michel Lespinasse240aade2013-02-22 16:35:56 -08001752struct page *follow_page_mask(struct vm_area_struct *vma,
1753 unsigned long address, unsigned int flags,
1754 unsigned int *page_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
Michel Lespinasse240aade2013-02-22 16:35:56 -08001756 *page_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return NULL;
1758}
1759
Bob Liu8f3b1322011-07-08 15:39:46 -07001760int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1761 unsigned long pfn, unsigned long size, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Bob Liu8f3b1322011-07-08 15:39:46 -07001763 if (addr != (pfn << PAGE_SHIFT))
1764 return -EINVAL;
1765
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001766 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
Luke Yang22c4af42006-07-14 00:24:09 -07001769EXPORT_SYMBOL(remap_pfn_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Linus Torvalds3c0b9de2013-04-27 13:25:38 -07001771int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1772{
1773 unsigned long pfn = start >> PAGE_SHIFT;
1774 unsigned long vm_len = vma->vm_end - vma->vm_start;
1775
1776 pfn += vma->vm_pgoff;
1777 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1778}
1779EXPORT_SYMBOL(vm_iomap_memory);
1780
Paul Mundtf905bc42008-02-04 22:29:59 -08001781int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1782 unsigned long pgoff)
1783{
1784 unsigned int size = vma->vm_end - vma->vm_start;
1785
1786 if (!(vma->vm_flags & VM_USERMAP))
1787 return -EINVAL;
1788
1789 vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1790 vma->vm_end = vma->vm_start + size;
1791
1792 return 0;
1793}
1794EXPORT_SYMBOL(remap_vmalloc_range);
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
1797 unsigned long len, unsigned long pgoff, unsigned long flags)
1798{
1799 return -ENOMEM;
1800}
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802void unmap_mapping_range(struct address_space *mapping,
1803 loff_t const holebegin, loff_t const holelen,
1804 int even_cows)
1805{
1806}
Luke Yang22c4af42006-07-14 00:24:09 -07001807EXPORT_SYMBOL(unmap_mapping_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Nick Piggind0217ac2007-07-19 01:47:03 -07001809int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
David Howellsb0e15192006-01-06 00:11:42 -08001810{
1811 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001812 return 0;
David Howellsb0e15192006-01-06 00:11:42 -08001813}
Paul Mundtb5073172007-07-21 04:37:25 -07001814EXPORT_SYMBOL(filemap_fault);
David Howells0ec76a12006-09-27 01:50:15 -07001815
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07001816void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
1817{
1818 BUG();
1819}
1820EXPORT_SYMBOL(filemap_map_pages);
1821
Mike Frysingerf55f1992011-03-29 14:05:12 +01001822static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
1823 unsigned long addr, void *buf, int len, int write)
David Howells0ec76a12006-09-27 01:50:15 -07001824{
David Howells0ec76a12006-09-27 01:50:15 -07001825 struct vm_area_struct *vma;
David Howells0ec76a12006-09-27 01:50:15 -07001826
1827 down_read(&mm->mmap_sem);
1828
1829 /* the access must start within one of the target process's mappings */
David Howells0159b142006-09-27 01:50:16 -07001830 vma = find_vma(mm, addr);
1831 if (vma) {
David Howells0ec76a12006-09-27 01:50:15 -07001832 /* don't overrun this mapping */
1833 if (addr + len >= vma->vm_end)
1834 len = vma->vm_end - addr;
1835
1836 /* only read or write mappings where it is permitted */
David Howellsd00c7b992006-09-27 01:50:19 -07001837 if (write && vma->vm_flags & VM_MAYWRITE)
Jie Zhang79597222010-01-06 17:23:28 +00001838 copy_to_user_page(vma, NULL, addr,
1839 (void *) addr, buf, len);
David Howellsd00c7b992006-09-27 01:50:19 -07001840 else if (!write && vma->vm_flags & VM_MAYREAD)
Jie Zhang79597222010-01-06 17:23:28 +00001841 copy_from_user_page(vma, NULL, addr,
1842 buf, (void *) addr, len);
David Howells0ec76a12006-09-27 01:50:15 -07001843 else
1844 len = 0;
1845 } else {
1846 len = 0;
1847 }
1848
1849 up_read(&mm->mmap_sem);
Mike Frysingerf55f1992011-03-29 14:05:12 +01001850
1851 return len;
1852}
1853
1854/**
1855 * @access_remote_vm - access another process' address space
1856 * @mm: the mm_struct of the target address space
1857 * @addr: start address to access
1858 * @buf: source or destination buffer
1859 * @len: number of bytes to transfer
1860 * @write: whether the access is a write
1861 *
1862 * The caller must hold a reference on @mm.
1863 */
1864int access_remote_vm(struct mm_struct *mm, unsigned long addr,
1865 void *buf, int len, int write)
1866{
1867 return __access_remote_vm(NULL, mm, addr, buf, len, write);
1868}
1869
1870/*
1871 * Access another process' address space.
1872 * - source/target buffer must be kernel space
1873 */
1874int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
1875{
1876 struct mm_struct *mm;
1877
1878 if (addr + len < addr)
1879 return 0;
1880
1881 mm = get_task_mm(tsk);
1882 if (!mm)
1883 return 0;
1884
1885 len = __access_remote_vm(tsk, mm, addr, buf, len, write);
1886
David Howells0ec76a12006-09-27 01:50:15 -07001887 mmput(mm);
1888 return len;
1889}
David Howells7e660872010-01-15 17:01:39 -08001890
1891/**
1892 * nommu_shrink_inode_mappings - Shrink the shared mappings on an inode
1893 * @inode: The inode to check
1894 * @size: The current filesize of the inode
1895 * @newsize: The proposed filesize of the inode
1896 *
1897 * Check the shared mappings on an inode on behalf of a shrinking truncate to
1898 * make sure that that any outstanding VMAs aren't broken and then shrink the
1899 * vm_regions that extend that beyond so that do_mmap_pgoff() doesn't
1900 * automatically grant mappings that are too large.
1901 */
1902int nommu_shrink_inode_mappings(struct inode *inode, size_t size,
1903 size_t newsize)
1904{
1905 struct vm_area_struct *vma;
David Howells7e660872010-01-15 17:01:39 -08001906 struct vm_region *region;
1907 pgoff_t low, high;
1908 size_t r_size, r_top;
1909
1910 low = newsize >> PAGE_SHIFT;
1911 high = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1912
1913 down_write(&nommu_region_sem);
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001914 i_mmap_lock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08001915
1916 /* search for VMAs that fall within the dead zone */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07001917 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, low, high) {
David Howells7e660872010-01-15 17:01:39 -08001918 /* found one - only interested if it's shared out of the page
1919 * cache */
1920 if (vma->vm_flags & VM_SHARED) {
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001921 i_mmap_unlock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08001922 up_write(&nommu_region_sem);
1923 return -ETXTBSY; /* not quite true, but near enough */
1924 }
1925 }
1926
1927 /* reduce any regions that overlap the dead zone - if in existence,
1928 * these will be pointed to by VMAs that don't overlap the dead zone
1929 *
1930 * we don't check for any regions that start beyond the EOF as there
1931 * shouldn't be any
1932 */
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001933 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, 0, ULONG_MAX) {
David Howells7e660872010-01-15 17:01:39 -08001934 if (!(vma->vm_flags & VM_SHARED))
1935 continue;
1936
1937 region = vma->vm_region;
1938 r_size = region->vm_top - region->vm_start;
1939 r_top = (region->vm_pgoff << PAGE_SHIFT) + r_size;
1940
1941 if (r_top > newsize) {
1942 region->vm_top -= r_top - newsize;
1943 if (region->vm_end > region->vm_top)
1944 region->vm_end = region->vm_top;
1945 }
1946 }
1947
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001948 i_mmap_unlock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08001949 up_write(&nommu_region_sem);
1950 return 0;
1951}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001952
1953/*
1954 * Initialise sysctl_user_reserve_kbytes.
1955 *
1956 * This is intended to prevent a user from starting a single memory hogging
1957 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
1958 * mode.
1959 *
1960 * The default value is min(3% of free memory, 128MB)
1961 * 128MB is enough to recover with sshd/login, bash, and top/kill.
1962 */
1963static int __meminit init_user_reserve(void)
1964{
1965 unsigned long free_kbytes;
1966
1967 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
1968
1969 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
1970 return 0;
1971}
Paul Gortmakera4bc6fc2015-05-01 20:08:20 -04001972subsys_initcall(init_user_reserve);
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001973
1974/*
1975 * Initialise sysctl_admin_reserve_kbytes.
1976 *
1977 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
1978 * to log in and kill a memory hogging process.
1979 *
1980 * Systems with more than 256MB will reserve 8MB, enough to recover
1981 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
1982 * only reserve 3% of free pages by default.
1983 */
1984static int __meminit init_admin_reserve(void)
1985{
1986 unsigned long free_kbytes;
1987
1988 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
1989
1990 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
1991 return 0;
1992}
Paul Gortmakera4bc6fc2015-05-01 20:08:20 -04001993subsys_initcall(init_admin_reserve);