blob: 08848fc186728acb2c664d12861a94be0a2dcb17 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/mm/nommu.c
4 *
5 * Replacement code for mm functions to support CPU's that don't
6 * have any form of memory management unit (thus no virtual memory).
7 *
8 * See Documentation/nommu-mmap.txt
9 *
David Howells8feae132009-01-08 12:04:47 +000010 * Copyright (c) 2004-2008 David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (c) 2000-2003 David McCullough <davidm@snapgear.com>
12 * Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org>
13 * Copyright (c) 2002 Greg Ungerer <gerg@snapgear.com>
Paul Mundt29c185e2010-12-24 12:08:30 +090014 * Copyright (c) 2007-2010 Paul Mundt <lethal@linux-sh.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/mm.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010021#include <linux/sched/mm.h>
Davidlohr Bueso615d6e82014-04-07 15:37:25 -070022#include <linux/vmacache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mman.h>
24#include <linux/swap.h>
25#include <linux/file.h>
26#include <linux/highmem.h>
27#include <linux/pagemap.h>
28#include <linux/slab.h>
29#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/blkdev.h>
31#include <linux/backing-dev.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070032#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/mount.h>
34#include <linux/personality.h>
35#include <linux/security.h>
36#include <linux/syscalls.h>
Al Viro120a7952010-10-30 02:54:44 -040037#include <linux/audit.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070038#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/tlb.h>
42#include <asm/tlbflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070043#include <asm/mmu_context.h>
David Howells8feae132009-01-08 12:04:47 +000044#include "internal.h"
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046void *high_memory;
Arnd Bergmann944b6872015-02-05 12:25:12 -080047EXPORT_SYMBOL(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048struct page *mem_map;
49unsigned long max_mapnr;
gchen gchen5b8bf302015-03-12 16:26:05 -070050EXPORT_SYMBOL(max_mapnr);
Hugh Dickins4266c972009-09-23 17:05:53 +010051unsigned long highest_memmap_pfn;
David Howellsfc4d5c22009-05-06 16:03:05 -070052int sysctl_nr_trim_pages = CONFIG_NOMMU_INITIAL_TRIM_EXCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053int heap_stack_gap = 0;
54
David Howells33e5d7692009-04-02 16:56:32 -070055atomic_long_t mmap_pages_allocated;
David Howells8feae132009-01-08 12:04:47 +000056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057EXPORT_SYMBOL(mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David Howells8feae132009-01-08 12:04:47 +000059/* list of mapped, potentially shareable regions */
60static struct kmem_cache *vm_region_jar;
61struct rb_root nommu_region_tree = RB_ROOT;
62DECLARE_RWSEM(nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +040064const struct vm_operations_struct generic_file_vm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * Return the total memory allocated for this pointer, not
69 * just what the caller asked for.
70 *
71 * Doesn't have to be accurate, i.e. may have races.
72 */
73unsigned int kobjsize(const void *objp)
74{
75 struct page *page;
76
Michael Hennerich4016a132008-04-28 02:13:38 -070077 /*
78 * If the object we have should not have ksize performed on it,
79 * return size of 0
80 */
Paul Mundt5a1603b2008-06-12 16:29:55 +090081 if (!objp || !virt_addr_valid(objp))
Paul Mundt6cfd53fc2008-06-05 22:46:08 -070082 return 0;
83
84 page = virt_to_head_page(objp);
Paul Mundt6cfd53fc2008-06-05 22:46:08 -070085
86 /*
87 * If the allocator sets PageSlab, we know the pointer came from
88 * kmalloc().
89 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (PageSlab(page))
91 return ksize(objp);
92
Paul Mundt6cfd53fc2008-06-05 22:46:08 -070093 /*
Paul Mundtab2e83e2009-01-08 12:04:48 +000094 * If it's not a compound page, see if we have a matching VMA
95 * region. This test is intentionally done in reverse order,
96 * so if there's no VMA, we still fall through and hand back
97 * PAGE_SIZE for 0-order pages.
98 */
99 if (!PageCompound(page)) {
100 struct vm_area_struct *vma;
101
102 vma = find_vma(current->mm, (unsigned long)objp);
103 if (vma)
104 return vma->vm_end - vma->vm_start;
105 }
106
107 /*
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700108 * The ksize() function is only guaranteed to work for pointers
Paul Mundt5a1603b2008-06-12 16:29:55 +0900109 * returned by kmalloc(). So handle arbitrary pointers here.
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700110 */
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -0700111 return page_size(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Paul Mundtdfc2f912009-06-26 04:31:57 +0900114/**
115 * follow_pfn - look up PFN at a user virtual address
116 * @vma: memory mapping
117 * @address: user virtual address
118 * @pfn: location to store found PFN
119 *
120 * Only IO mappings and raw PFN mappings are allowed.
121 *
122 * Returns zero and the pfn at @pfn on success, -ve otherwise.
123 */
124int follow_pfn(struct vm_area_struct *vma, unsigned long address,
125 unsigned long *pfn)
126{
127 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
128 return -EINVAL;
129
130 *pfn = address >> PAGE_SHIFT;
131 return 0;
132}
133EXPORT_SYMBOL(follow_pfn);
134
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700135LIST_HEAD(vmap_area_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800137void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 kfree(addr);
140}
Paul Mundtb5073172007-07-21 04:37:25 -0700141EXPORT_SYMBOL(vfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700143void *__vmalloc(unsigned long size, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 /*
Robert P. J. Day85186092007-10-19 23:11:38 +0200146 * You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
147 * returns only a logical address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
Nick Piggin84097512006-03-22 00:08:34 -0800149 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
Paul Mundtb5073172007-07-21 04:37:25 -0700151EXPORT_SYMBOL(__vmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Christoph Hellwig2b905942020-06-01 21:51:53 -0700153void *__vmalloc_node(unsigned long size, unsigned long align, gfp_t gfp_mask,
154 int node, const void *caller)
Michal Hockoa7c3e902017-05-08 15:57:09 -0700155{
Christoph Hellwig2b905942020-06-01 21:51:53 -0700156 return __vmalloc(size, gfp_mask);
Michal Hockoa7c3e902017-05-08 15:57:09 -0700157}
158
Andrii Nakryikoed817452019-11-23 14:08:35 -0800159static void *__vmalloc_user_flags(unsigned long size, gfp_t flags)
Paul Mundtf905bc42008-02-04 22:29:59 -0800160{
161 void *ret;
162
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700163 ret = __vmalloc(size, flags);
Paul Mundtf905bc42008-02-04 22:29:59 -0800164 if (ret) {
165 struct vm_area_struct *vma;
166
167 down_write(&current->mm->mmap_sem);
168 vma = find_vma(current->mm, (unsigned long)ret);
169 if (vma)
170 vma->vm_flags |= VM_USERMAP;
171 up_write(&current->mm->mmap_sem);
172 }
173
174 return ret;
175}
Andrii Nakryikoed817452019-11-23 14:08:35 -0800176
177void *vmalloc_user(unsigned long size)
178{
179 return __vmalloc_user_flags(size, GFP_KERNEL | __GFP_ZERO);
180}
Paul Mundtf905bc42008-02-04 22:29:59 -0800181EXPORT_SYMBOL(vmalloc_user);
182
Andrii Nakryikoed817452019-11-23 14:08:35 -0800183void *vmalloc_user_node_flags(unsigned long size, int node, gfp_t flags)
184{
185 return __vmalloc_user_flags(size, flags | __GFP_ZERO);
186}
187EXPORT_SYMBOL(vmalloc_user_node_flags);
188
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800189struct page *vmalloc_to_page(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 return virt_to_page(addr);
192}
Paul Mundtb5073172007-07-21 04:37:25 -0700193EXPORT_SYMBOL(vmalloc_to_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800195unsigned long vmalloc_to_pfn(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 return page_to_pfn(virt_to_page(addr));
198}
Paul Mundtb5073172007-07-21 04:37:25 -0700199EXPORT_SYMBOL(vmalloc_to_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201long vread(char *buf, char *addr, unsigned long count)
202{
Chen Gang9bde9162013-07-03 15:02:36 -0700203 /* Don't allow overflow */
204 if ((unsigned long) buf + count < count)
205 count = -(unsigned long) buf;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 memcpy(buf, addr, count);
208 return count;
209}
210
211long vwrite(char *buf, char *addr, unsigned long count)
212{
213 /* Don't allow overflow */
214 if ((unsigned long) addr + count < count)
215 count = -(unsigned long) addr;
216
217 memcpy(addr, buf, count);
Choi Gi-yongac714902014-04-07 15:37:36 -0700218 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221/*
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900222 * vmalloc - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 *
224 * @size: allocation size
225 *
226 * Allocate enough pages to cover @size from the page level
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900227 * allocator and map them into contiguous kernel virtual space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +0200229 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * use __vmalloc() instead.
231 */
232void *vmalloc(unsigned long size)
233{
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700234 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
Andrew Mortonf6138882006-02-28 16:59:18 -0800236EXPORT_SYMBOL(vmalloc);
237
Dave Younge1ca7782010-10-26 14:22:06 -0700238/*
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900239 * vzalloc - allocate virtually contiguous memory with zero fill
Dave Younge1ca7782010-10-26 14:22:06 -0700240 *
241 * @size: allocation size
242 *
243 * Allocate enough pages to cover @size from the page level
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900244 * allocator and map them into contiguous kernel virtual space.
Dave Younge1ca7782010-10-26 14:22:06 -0700245 * The memory allocated is set to zero.
246 *
247 * For tight control over page level allocator and protection flags
248 * use __vmalloc() instead.
249 */
250void *vzalloc(unsigned long size)
251{
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700252 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO);
Dave Younge1ca7782010-10-26 14:22:06 -0700253}
254EXPORT_SYMBOL(vzalloc);
255
256/**
257 * vmalloc_node - allocate memory on a specific node
258 * @size: allocation size
259 * @node: numa node
260 *
261 * Allocate enough pages to cover @size from the page level
262 * allocator and map them into contiguous kernel virtual space.
263 *
264 * For tight control over page level allocator and protection flags
265 * use __vmalloc() instead.
266 */
Andrew Mortonf6138882006-02-28 16:59:18 -0800267void *vmalloc_node(unsigned long size, int node)
268{
269 return vmalloc(size);
270}
Paul Mundt9a14f652010-12-24 11:50:34 +0900271EXPORT_SYMBOL(vmalloc_node);
Dave Younge1ca7782010-10-26 14:22:06 -0700272
273/**
274 * vzalloc_node - allocate memory on a specific node with zero fill
275 * @size: allocation size
276 * @node: numa node
277 *
278 * Allocate enough pages to cover @size from the page level
279 * allocator and map them into contiguous kernel virtual space.
280 * The memory allocated is set to zero.
281 *
282 * For tight control over page level allocator and protection flags
283 * use __vmalloc() instead.
284 */
285void *vzalloc_node(unsigned long size, int node)
286{
287 return vzalloc(size);
288}
289EXPORT_SYMBOL(vzalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Paul Mundt1af446e2008-08-04 16:01:47 +0900291/**
292 * vmalloc_exec - allocate virtually contiguous, executable memory
293 * @size: allocation size
294 *
295 * Kernel-internal function to allocate enough pages to cover @size
296 * the page level allocator and map them into contiguous and
297 * executable kernel virtual space.
298 *
299 * For tight control over page level allocator and protection flags
300 * use __vmalloc() instead.
301 */
302
303void *vmalloc_exec(unsigned long size)
304{
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700305 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM);
Paul Mundt1af446e2008-08-04 16:01:47 +0900306}
307
Paul Mundtb5073172007-07-21 04:37:25 -0700308/**
309 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * @size: allocation size
311 *
312 * Allocate enough 32bit PA addressable pages to cover @size from the
Masahiro Yamadae1c05062015-07-07 10:14:59 +0900313 * page level allocator and map them into contiguous kernel virtual space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 */
315void *vmalloc_32(unsigned long size)
316{
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700317 return __vmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
Paul Mundtb5073172007-07-21 04:37:25 -0700319EXPORT_SYMBOL(vmalloc_32);
320
321/**
322 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
323 * @size: allocation size
324 *
325 * The resulting memory area is 32bit addressable and zeroed so it can be
326 * mapped to userspace without leaking data.
Paul Mundtf905bc42008-02-04 22:29:59 -0800327 *
328 * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
329 * remap_vmalloc_range() are permissible.
Paul Mundtb5073172007-07-21 04:37:25 -0700330 */
331void *vmalloc_32_user(unsigned long size)
332{
Paul Mundtf905bc42008-02-04 22:29:59 -0800333 /*
334 * We'll have to sort out the ZONE_DMA bits for 64-bit,
335 * but for now this can simply use vmalloc_user() directly.
336 */
337 return vmalloc_user(size);
Paul Mundtb5073172007-07-21 04:37:25 -0700338}
339EXPORT_SYMBOL(vmalloc_32_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
342{
343 BUG();
344 return NULL;
345}
Paul Mundtb5073172007-07-21 04:37:25 -0700346EXPORT_SYMBOL(vmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800348void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 BUG();
351}
Paul Mundtb5073172007-07-21 04:37:25 -0700352EXPORT_SYMBOL(vunmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Christoph Hellwigd4efd792020-06-01 21:51:27 -0700354void *vm_map_ram(struct page **pages, unsigned int count, int node)
Paul Mundteb6434d2009-01-21 17:45:47 +0900355{
356 BUG();
357 return NULL;
358}
359EXPORT_SYMBOL(vm_map_ram);
360
361void vm_unmap_ram(const void *mem, unsigned int count)
362{
363 BUG();
364}
365EXPORT_SYMBOL(vm_unmap_ram);
366
367void vm_unmap_aliases(void)
368{
369}
370EXPORT_SYMBOL_GPL(vm_unmap_aliases);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/*
Joerg Roedel763802b52020-03-21 18:22:41 -0700373 * Implement a stub for vmalloc_sync_[un]mapping() if the architecture
374 * chose not to have one.
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700375 */
Joerg Roedel763802b52020-03-21 18:22:41 -0700376void __weak vmalloc_sync_mappings(void)
377{
378}
379
380void __weak vmalloc_sync_unmappings(void)
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700381{
382}
383
David Vrabelcd129092011-09-29 16:53:32 +0100384struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Paul Mundt29c185e2010-12-24 12:08:30 +0900385{
386 BUG();
387 return NULL;
388}
389EXPORT_SYMBOL_GPL(alloc_vm_area);
390
391void free_vm_area(struct vm_struct *area)
392{
393 BUG();
394}
395EXPORT_SYMBOL_GPL(free_vm_area);
396
Paul Mundtb5073172007-07-21 04:37:25 -0700397int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
398 struct page *page)
399{
400 return -EINVAL;
401}
402EXPORT_SYMBOL(vm_insert_page);
403
Souptick Joardera667d742019-05-13 17:21:56 -0700404int vm_map_pages(struct vm_area_struct *vma, struct page **pages,
405 unsigned long num)
406{
407 return -EINVAL;
408}
409EXPORT_SYMBOL(vm_map_pages);
410
411int vm_map_pages_zero(struct vm_area_struct *vma, struct page **pages,
412 unsigned long num)
413{
414 return -EINVAL;
415}
416EXPORT_SYMBOL(vm_map_pages_zero);
417
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700418/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * sys_brk() for the most part doesn't need the global kernel
420 * lock, except when an application is doing something nasty
421 * like trying to un-brk an area that has already been mapped
422 * to a regular file. in this case, the unmapping will need
423 * to invoke file system routines that need the global lock.
424 */
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100425SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct mm_struct *mm = current->mm;
428
429 if (brk < mm->start_brk || brk > mm->context.end_brk)
430 return mm->brk;
431
432 if (mm->brk == brk)
433 return mm->brk;
434
435 /*
436 * Always allow shrinking brk
437 */
438 if (brk <= mm->brk) {
439 mm->brk = brk;
440 return brk;
441 }
442
443 /*
444 * Ok, looks good - let it rip.
445 */
Mike Frysingercfe79c02010-01-06 17:23:23 +0000446 flush_icache_range(mm->brk, brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return mm->brk = brk;
448}
449
David Howells8feae132009-01-08 12:04:47 +0000450/*
seokhoon.yoon3edf41d2017-02-24 14:56:44 -0800451 * initialise the percpu counter for VM and region record slabs
David Howells8feae132009-01-08 12:04:47 +0000452 */
453void __init mmap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700455 int ret;
456
Tejun Heo908c7f12014-09-08 09:51:29 +0900457 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700458 VM_BUG_ON(ret);
Vladimir Davydov5d097052016-01-14 15:18:21 -0800459 vm_region_jar = KMEM_CACHE(vm_region, SLAB_PANIC|SLAB_ACCOUNT);
David Howells8feae132009-01-08 12:04:47 +0000460}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
David Howells8feae132009-01-08 12:04:47 +0000462/*
463 * validate the region tree
464 * - the caller must hold the region lock
465 */
466#ifdef CONFIG_DEBUG_NOMMU_REGIONS
467static noinline void validate_nommu_regions(void)
468{
469 struct vm_region *region, *last;
470 struct rb_node *p, *lastp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
David Howells8feae132009-01-08 12:04:47 +0000472 lastp = rb_first(&nommu_region_tree);
473 if (!lastp)
474 return;
475
476 last = rb_entry(lastp, struct vm_region, vm_rb);
Geliang Tangc9427bc2015-11-05 18:48:38 -0800477 BUG_ON(last->vm_end <= last->vm_start);
478 BUG_ON(last->vm_top < last->vm_end);
David Howells8feae132009-01-08 12:04:47 +0000479
480 while ((p = rb_next(lastp))) {
481 region = rb_entry(p, struct vm_region, vm_rb);
482 last = rb_entry(lastp, struct vm_region, vm_rb);
483
Geliang Tangc9427bc2015-11-05 18:48:38 -0800484 BUG_ON(region->vm_end <= region->vm_start);
485 BUG_ON(region->vm_top < region->vm_end);
486 BUG_ON(region->vm_start < last->vm_top);
David Howells8feae132009-01-08 12:04:47 +0000487
488 lastp = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490}
David Howells8feae132009-01-08 12:04:47 +0000491#else
David Howells33e5d7692009-04-02 16:56:32 -0700492static void validate_nommu_regions(void)
493{
494}
David Howells8feae132009-01-08 12:04:47 +0000495#endif
496
497/*
498 * add a region into the global tree
499 */
500static void add_nommu_region(struct vm_region *region)
501{
502 struct vm_region *pregion;
503 struct rb_node **p, *parent;
504
505 validate_nommu_regions();
506
David Howells8feae132009-01-08 12:04:47 +0000507 parent = NULL;
508 p = &nommu_region_tree.rb_node;
509 while (*p) {
510 parent = *p;
511 pregion = rb_entry(parent, struct vm_region, vm_rb);
512 if (region->vm_start < pregion->vm_start)
513 p = &(*p)->rb_left;
514 else if (region->vm_start > pregion->vm_start)
515 p = &(*p)->rb_right;
516 else if (pregion == region)
517 return;
518 else
519 BUG();
520 }
521
522 rb_link_node(&region->vm_rb, parent, p);
523 rb_insert_color(&region->vm_rb, &nommu_region_tree);
524
525 validate_nommu_regions();
526}
527
528/*
529 * delete a region from the global tree
530 */
531static void delete_nommu_region(struct vm_region *region)
532{
533 BUG_ON(!nommu_region_tree.rb_node);
534
535 validate_nommu_regions();
536 rb_erase(&region->vm_rb, &nommu_region_tree);
537 validate_nommu_regions();
538}
539
540/*
541 * free a contiguous series of pages
542 */
543static void free_page_series(unsigned long from, unsigned long to)
544{
545 for (; from < to; from += PAGE_SIZE) {
546 struct page *page = virt_to_page(from);
547
David Howells33e5d7692009-04-02 16:56:32 -0700548 atomic_long_dec(&mmap_pages_allocated);
David Howells8feae132009-01-08 12:04:47 +0000549 put_page(page);
550 }
551}
552
553/*
554 * release a reference to a region
David Howells33e5d7692009-04-02 16:56:32 -0700555 * - the caller must hold the region semaphore for writing, which this releases
Paul Mundtdd8632a2009-01-08 12:04:47 +0000556 * - the region may not have been added to the tree yet, in which case vm_top
David Howells8feae132009-01-08 12:04:47 +0000557 * will equal vm_start
558 */
559static void __put_nommu_region(struct vm_region *region)
560 __releases(nommu_region_sem)
561{
David Howells8feae132009-01-08 12:04:47 +0000562 BUG_ON(!nommu_region_tree.rb_node);
563
David Howells1e2ae592010-01-15 17:01:33 -0800564 if (--region->vm_usage == 0) {
Paul Mundtdd8632a2009-01-08 12:04:47 +0000565 if (region->vm_top > region->vm_start)
David Howells8feae132009-01-08 12:04:47 +0000566 delete_nommu_region(region);
567 up_write(&nommu_region_sem);
568
569 if (region->vm_file)
570 fput(region->vm_file);
571
572 /* IO memory and memory shared directly out of the pagecache
573 * from ramfs/tmpfs mustn't be released here */
Leon Romanovsky22cc8772015-06-24 16:57:47 -0700574 if (region->vm_flags & VM_MAPPED_COPY)
Paul Mundtdd8632a2009-01-08 12:04:47 +0000575 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +0000576 kmem_cache_free(vm_region_jar, region);
577 } else {
578 up_write(&nommu_region_sem);
579 }
580}
581
582/*
583 * release a reference to a region
584 */
585static void put_nommu_region(struct vm_region *region)
586{
587 down_write(&nommu_region_sem);
588 __put_nommu_region(region);
589}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
David Howells30340972006-09-27 01:50:20 -0700591/*
592 * add a VMA into a process's mm_struct in the appropriate place in the list
David Howells8feae132009-01-08 12:04:47 +0000593 * and tree and add to the address space's page tree also if not an anonymous
594 * page
David Howells30340972006-09-27 01:50:20 -0700595 * - should be called with mm->mmap_sem held writelocked
596 */
David Howells8feae132009-01-08 12:04:47 +0000597static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
David Howells30340972006-09-27 01:50:20 -0700598{
Namhyung Kim6038def2011-05-24 17:11:22 -0700599 struct vm_area_struct *pvma, *prev;
David Howells8feae132009-01-08 12:04:47 +0000600 struct address_space *mapping;
Namhyung Kim6038def2011-05-24 17:11:22 -0700601 struct rb_node **p, *parent, *rb_prev;
David Howells30340972006-09-27 01:50:20 -0700602
David Howells8feae132009-01-08 12:04:47 +0000603 BUG_ON(!vma->vm_region);
604
605 mm->map_count++;
606 vma->vm_mm = mm;
607
608 /* add the VMA to the mapping */
609 if (vma->vm_file) {
610 mapping = vma->vm_file->f_mapping;
611
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800612 i_mmap_lock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000613 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700614 vma_interval_tree_insert(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000615 flush_dcache_mmap_unlock(mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800616 i_mmap_unlock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000617 }
618
619 /* add the VMA to the tree */
Namhyung Kim6038def2011-05-24 17:11:22 -0700620 parent = rb_prev = NULL;
David Howells8feae132009-01-08 12:04:47 +0000621 p = &mm->mm_rb.rb_node;
622 while (*p) {
623 parent = *p;
624 pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
625
626 /* sort by: start addr, end addr, VMA struct addr in that order
627 * (the latter is necessary as we may get identical VMAs) */
628 if (vma->vm_start < pvma->vm_start)
629 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700630 else if (vma->vm_start > pvma->vm_start) {
631 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000632 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700633 } else if (vma->vm_end < pvma->vm_end)
David Howells8feae132009-01-08 12:04:47 +0000634 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700635 else if (vma->vm_end > pvma->vm_end) {
636 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000637 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700638 } else if (vma < pvma)
David Howells8feae132009-01-08 12:04:47 +0000639 p = &(*p)->rb_left;
Namhyung Kim6038def2011-05-24 17:11:22 -0700640 else if (vma > pvma) {
641 rb_prev = parent;
David Howells8feae132009-01-08 12:04:47 +0000642 p = &(*p)->rb_right;
Namhyung Kim6038def2011-05-24 17:11:22 -0700643 } else
David Howells8feae132009-01-08 12:04:47 +0000644 BUG();
645 }
646
647 rb_link_node(&vma->vm_rb, parent, p);
648 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
649
650 /* add VMA to the VMA list also */
Namhyung Kim6038def2011-05-24 17:11:22 -0700651 prev = NULL;
652 if (rb_prev)
653 prev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
David Howells30340972006-09-27 01:50:20 -0700654
Wei Yangaba6dfb2019-11-30 17:50:53 -0800655 __vma_link_list(mm, vma, prev);
David Howells8feae132009-01-08 12:04:47 +0000656}
657
658/*
659 * delete a VMA from its owning mm_struct and address space
660 */
661static void delete_vma_from_mm(struct vm_area_struct *vma)
662{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700663 int i;
David Howells8feae132009-01-08 12:04:47 +0000664 struct address_space *mapping;
665 struct mm_struct *mm = vma->vm_mm;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700666 struct task_struct *curr = current;
David Howells8feae132009-01-08 12:04:47 +0000667
David Howells8feae132009-01-08 12:04:47 +0000668 mm->map_count--;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700669 for (i = 0; i < VMACACHE_SIZE; i++) {
670 /* if the vma is cached, invalidate the entire cache */
Ingo Molnar314ff782017-02-03 11:03:31 +0100671 if (curr->vmacache.vmas[i] == vma) {
Steven Miaoe020d5b2014-06-23 13:22:02 -0700672 vmacache_invalidate(mm);
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700673 break;
674 }
675 }
David Howells8feae132009-01-08 12:04:47 +0000676
677 /* remove the VMA from the mapping */
678 if (vma->vm_file) {
679 mapping = vma->vm_file->f_mapping;
680
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800681 i_mmap_lock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000682 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700683 vma_interval_tree_remove(vma, &mapping->i_mmap);
David Howells8feae132009-01-08 12:04:47 +0000684 flush_dcache_mmap_unlock(mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800685 i_mmap_unlock_write(mapping);
David Howells8feae132009-01-08 12:04:47 +0000686 }
687
688 /* remove from the MM's tree and list */
689 rb_erase(&vma->vm_rb, &mm->mm_rb);
Namhyung Kimb951bf22011-05-24 17:11:23 -0700690
Wei Yang1b9fc5b22019-11-30 17:50:49 -0800691 __vma_unlink_list(mm, vma);
David Howells8feae132009-01-08 12:04:47 +0000692}
693
694/*
695 * destroy a VMA record
696 */
697static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
698{
David Howells8feae132009-01-08 12:04:47 +0000699 if (vma->vm_ops && vma->vm_ops->close)
700 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700701 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +0000702 fput(vma->vm_file);
David Howells8feae132009-01-08 12:04:47 +0000703 put_nommu_region(vma->vm_region);
Linus Torvalds3928d4f2018-07-21 13:48:51 -0700704 vm_area_free(vma);
David Howells30340972006-09-27 01:50:20 -0700705}
706
707/*
708 * look up the first VMA in which addr resides, NULL if none
709 * - should be called with mm->mmap_sem at least held readlocked
710 */
711struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
712{
David Howells8feae132009-01-08 12:04:47 +0000713 struct vm_area_struct *vma;
David Howells30340972006-09-27 01:50:20 -0700714
David Howells8feae132009-01-08 12:04:47 +0000715 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700716 vma = vmacache_find(mm, addr);
717 if (likely(vma))
David Howells8feae132009-01-08 12:04:47 +0000718 return vma;
719
Namhyung Kime922c4c2011-05-24 17:11:24 -0700720 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000721 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700722 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000723 if (vma->vm_start > addr)
724 return NULL;
725 if (vma->vm_end > addr) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700726 vmacache_update(addr, vma);
David Howells8feae132009-01-08 12:04:47 +0000727 return vma;
728 }
David Howells30340972006-09-27 01:50:20 -0700729 }
730
David Howells30340972006-09-27 01:50:20 -0700731 return NULL;
732}
733EXPORT_SYMBOL(find_vma);
734
735/*
David Howells930e6522006-09-27 01:50:22 -0700736 * find a VMA
737 * - we don't extend stack VMAs under NOMMU conditions
738 */
739struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
740{
David Howells7561e8c2010-03-25 16:48:38 +0000741 return find_vma(mm, addr);
David Howells930e6522006-09-27 01:50:22 -0700742}
743
David Howells8feae132009-01-08 12:04:47 +0000744/*
745 * expand a stack to a given address
746 * - not supported under NOMMU conditions
747 */
Greg Ungerer57c8f632007-07-15 23:38:28 -0700748int expand_stack(struct vm_area_struct *vma, unsigned long address)
749{
750 return -ENOMEM;
751}
752
David Howells930e6522006-09-27 01:50:22 -0700753/*
David Howells6fa5f802006-09-27 01:50:21 -0700754 * look up the first VMA exactly that exactly matches addr
755 * - should be called with mm->mmap_sem at least held readlocked
756 */
David Howells8feae132009-01-08 12:04:47 +0000757static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
758 unsigned long addr,
759 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 struct vm_area_struct *vma;
David Howells8feae132009-01-08 12:04:47 +0000762 unsigned long end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
David Howells8feae132009-01-08 12:04:47 +0000764 /* check the cache first */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700765 vma = vmacache_find_exact(mm, addr, end);
766 if (vma)
David Howells8feae132009-01-08 12:04:47 +0000767 return vma;
768
Namhyung Kime922c4c2011-05-24 17:11:24 -0700769 /* trawl the list (there may be multiple mappings in which addr
David Howells8feae132009-01-08 12:04:47 +0000770 * resides) */
Namhyung Kime922c4c2011-05-24 17:11:24 -0700771 for (vma = mm->mmap; vma; vma = vma->vm_next) {
David Howells8feae132009-01-08 12:04:47 +0000772 if (vma->vm_start < addr)
773 continue;
774 if (vma->vm_start > addr)
775 return NULL;
776 if (vma->vm_end == end) {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700777 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return vma;
David Howells8feae132009-01-08 12:04:47 +0000779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
782 return NULL;
783}
784
David Howells30340972006-09-27 01:50:20 -0700785/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * determine whether a mapping should be permitted and, if so, what sort of
787 * mapping we're capable of supporting
788 */
789static int validate_mmap_request(struct file *file,
790 unsigned long addr,
791 unsigned long len,
792 unsigned long prot,
793 unsigned long flags,
794 unsigned long pgoff,
795 unsigned long *_capabilities)
796{
David Howells8feae132009-01-08 12:04:47 +0000797 unsigned long capabilities, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int ret;
799
800 /* do the simple checks first */
Leon Romanovsky22cc8772015-06-24 16:57:47 -0700801 if (flags & MAP_FIXED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if ((flags & MAP_TYPE) != MAP_PRIVATE &&
805 (flags & MAP_TYPE) != MAP_SHARED)
806 return -EINVAL;
807
Mike Frysingerf81cff0d2006-12-06 12:02:59 +1000808 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return -EINVAL;
810
Mike Frysingerf81cff0d2006-12-06 12:02:59 +1000811 /* Careful about overflows.. */
David Howells8feae132009-01-08 12:04:47 +0000812 rlen = PAGE_ALIGN(len);
813 if (!rlen || rlen > TASK_SIZE)
Mike Frysingerf81cff0d2006-12-06 12:02:59 +1000814 return -ENOMEM;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* offset overflow? */
David Howells8feae132009-01-08 12:04:47 +0000817 if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
Mike Frysingerf81cff0d2006-12-06 12:02:59 +1000818 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /* files must support mmap */
Al Viro72c2d532013-09-22 16:27:52 -0400822 if (!file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return -ENODEV;
824
825 /* work out if what we've got could possibly be shared
826 * - we support chardevs that provide their own "memory"
827 * - we support files/blockdevs that are memory backed
828 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100829 if (file->f_op->mmap_capabilities) {
830 capabilities = file->f_op->mmap_capabilities(file);
831 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /* no explicit capabilities set, so assume some
833 * defaults */
Al Viro496ad9a2013-01-23 17:07:38 -0500834 switch (file_inode(file)->i_mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 case S_IFREG:
836 case S_IFBLK:
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100837 capabilities = NOMMU_MAP_COPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839
840 case S_IFCHR:
841 capabilities =
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100842 NOMMU_MAP_DIRECT |
843 NOMMU_MAP_READ |
844 NOMMU_MAP_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846
847 default:
848 return -EINVAL;
849 }
850 }
851
852 /* eliminate any capabilities that we can't support on this
853 * device */
854 if (!file->f_op->get_unmapped_area)
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100855 capabilities &= ~NOMMU_MAP_DIRECT;
Al Viro6e242a12015-03-31 12:35:13 -0400856 if (!(file->f_mode & FMODE_CAN_READ))
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100857 capabilities &= ~NOMMU_MAP_COPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Graff Yang28d7a6a2009-08-18 14:11:17 -0700859 /* The file shall have been opened with read permission. */
860 if (!(file->f_mode & FMODE_READ))
861 return -EACCES;
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (flags & MAP_SHARED) {
864 /* do checks for writing, appending and locking */
865 if ((prot & PROT_WRITE) &&
866 !(file->f_mode & FMODE_WRITE))
867 return -EACCES;
868
Al Viro496ad9a2013-01-23 17:07:38 -0500869 if (IS_APPEND(file_inode(file)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 (file->f_mode & FMODE_WRITE))
871 return -EACCES;
872
Jeff Laytond7a06982014-03-10 09:54:15 -0400873 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return -EAGAIN;
875
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100876 if (!(capabilities & NOMMU_MAP_DIRECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -ENODEV;
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* we mustn't privatise shared mappings */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100880 capabilities &= ~NOMMU_MAP_COPY;
Choi Gi-yongac714902014-04-07 15:37:36 -0700881 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 /* we're going to read the file into private memory we
883 * allocate */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100884 if (!(capabilities & NOMMU_MAP_COPY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return -ENODEV;
886
887 /* we don't permit a private writable mapping to be
888 * shared with the backing device */
889 if (prot & PROT_WRITE)
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100890 capabilities &= ~NOMMU_MAP_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100893 if (capabilities & NOMMU_MAP_DIRECT) {
894 if (((prot & PROT_READ) && !(capabilities & NOMMU_MAP_READ)) ||
895 ((prot & PROT_WRITE) && !(capabilities & NOMMU_MAP_WRITE)) ||
896 ((prot & PROT_EXEC) && !(capabilities & NOMMU_MAP_EXEC))
Bernd Schmidt3c7b2042010-05-25 23:43:00 -0700897 ) {
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100898 capabilities &= ~NOMMU_MAP_DIRECT;
Bernd Schmidt3c7b2042010-05-25 23:43:00 -0700899 if (flags & MAP_SHARED) {
Leon Romanovsky22cc8772015-06-24 16:57:47 -0700900 pr_warn("MAP_SHARED not completely supported on !MMU\n");
Bernd Schmidt3c7b2042010-05-25 23:43:00 -0700901 return -EINVAL;
902 }
903 }
904 }
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 /* handle executable mappings and implied executable
907 * mappings */
Eric W. Biederman90f85722015-06-29 14:42:03 -0500908 if (path_noexec(&file->f_path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (prot & PROT_EXEC)
910 return -EPERM;
Choi Gi-yongac714902014-04-07 15:37:36 -0700911 } else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 /* handle implication of PROT_EXEC by PROT_READ */
913 if (current->personality & READ_IMPLIES_EXEC) {
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100914 if (capabilities & NOMMU_MAP_EXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 prot |= PROT_EXEC;
916 }
Choi Gi-yongac714902014-04-07 15:37:36 -0700917 } else if ((prot & PROT_READ) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 (prot & PROT_EXEC) &&
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100919 !(capabilities & NOMMU_MAP_EXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ) {
921 /* backing file is not executable, try to copy */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100922 capabilities &= ~NOMMU_MAP_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Choi Gi-yongac714902014-04-07 15:37:36 -0700924 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /* anonymous mappings are always memory backed and can be
926 * privately mapped
927 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100928 capabilities = NOMMU_MAP_COPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* handle PROT_EXEC implication by PROT_READ */
931 if ((prot & PROT_READ) &&
932 (current->personality & READ_IMPLIES_EXEC))
933 prot |= PROT_EXEC;
934 }
935
936 /* allow the security API to have its say */
Al Viroe5467852012-05-30 13:30:51 -0400937 ret = security_mmap_addr(addr);
938 if (ret < 0)
939 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /* looks okay */
942 *_capabilities = capabilities;
943 return 0;
944}
945
946/*
947 * we've determined that we can make the mapping, now translate what we
948 * now know into VMA flags
949 */
950static unsigned long determine_vm_flags(struct file *file,
951 unsigned long prot,
952 unsigned long flags,
953 unsigned long capabilities)
954{
955 unsigned long vm_flags;
956
Dave Hansene6bfb702016-02-12 13:02:31 -0800957 vm_flags = calc_vm_prot_bits(prot, 0) | calc_vm_flag_bits(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /* vm_flags |= mm->def_flags; */
959
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100960 if (!(capabilities & NOMMU_MAP_DIRECT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /* attempt to share read-only copies of mapped file chunks */
Bernd Schmidt3c7b2042010-05-25 23:43:00 -0700962 vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (file && !(prot & PROT_WRITE))
964 vm_flags |= VM_MAYSHARE;
Bernd Schmidt3c7b2042010-05-25 23:43:00 -0700965 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 /* overlay a shareable mapping on the backing device or inode
967 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
968 * romfs/cramfs */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100969 vm_flags |= VM_MAYSHARE | (capabilities & NOMMU_VMFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (flags & MAP_SHARED)
Bernd Schmidt3c7b2042010-05-25 23:43:00 -0700971 vm_flags |= VM_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
974 /* refuse to let anyone share private mappings with this process if
975 * it's being traced - otherwise breakpoints set in it may interfere
976 * with another untraced process
977 */
Tejun Heoa288eec2011-06-17 16:50:37 +0200978 if ((flags & MAP_PRIVATE) && current->ptrace)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 vm_flags &= ~VM_MAYSHARE;
980
981 return vm_flags;
982}
983
984/*
David Howells8feae132009-01-08 12:04:47 +0000985 * set up a shared mapping on a file (the driver or filesystem provides and
986 * pins the storage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
David Howells8feae132009-01-08 12:04:47 +0000988static int do_mmap_shared_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 int ret;
991
Miklos Szeredif74ac012017-02-20 16:51:23 +0100992 ret = call_mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +0000993 if (ret == 0) {
994 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +0100995 return 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (ret != -ENOSYS)
998 return ret;
999
David Howells3fa30462010-03-23 13:35:21 -07001000 /* getting -ENOSYS indicates that direct mmap isn't possible (as
1001 * opposed to tried but failed) so we can only give a suitable error as
1002 * it's not possible to make a private copy if MAP_SHARED was given */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return -ENODEV;
1004}
1005
1006/*
1007 * set up a private mapping or an anonymous shared mapping
1008 */
David Howells8feae132009-01-08 12:04:47 +00001009static int do_mmap_private(struct vm_area_struct *vma,
1010 struct vm_region *region,
David Howells645d83c2009-09-24 15:13:10 +01001011 unsigned long len,
1012 unsigned long capabilities)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001014 unsigned long total, point;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 void *base;
David Howells8feae132009-01-08 12:04:47 +00001016 int ret, order;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /* invoke the file's mapping function so that it can keep track of
1019 * shared mappings on devices or memory
1020 * - VM_MAYSHARE will be set if it may attempt to share
1021 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001022 if (capabilities & NOMMU_MAP_DIRECT) {
Miklos Szeredif74ac012017-02-20 16:51:23 +01001023 ret = call_mmap(vma->vm_file, vma);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001024 if (ret == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 /* shouldn't return success if we're not sharing */
Paul Mundtdd8632a2009-01-08 12:04:47 +00001026 BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1027 vma->vm_region->vm_top = vma->vm_region->vm_end;
David Howells645d83c2009-09-24 15:13:10 +01001028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
Paul Mundtdd8632a2009-01-08 12:04:47 +00001030 if (ret != -ENOSYS)
1031 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 /* getting an ENOSYS error indicates that direct mmap isn't
1034 * possible (as opposed to tried but failed) so we'll try to
1035 * make a private copy of the data and map that instead */
1036 }
1037
David Howells8feae132009-01-08 12:04:47 +00001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* allocate some memory to hold the mapping
1040 * - note that this may not return a page-aligned address if the object
1041 * we're allocating is smaller than a page
1042 */
Bob Liuf67d9b12011-05-24 17:12:56 -07001043 order = get_order(len);
David Howells8feae132009-01-08 12:04:47 +00001044 total = 1 << order;
Bob Liuf67d9b12011-05-24 17:12:56 -07001045 point = len >> PAGE_SHIFT;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001046
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001047 /* we don't want to allocate a power-of-2 sized page set */
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001048 if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages)
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001049 total = point;
David Howells8feae132009-01-08 12:04:47 +00001050
Joonsoo Kimda616532015-02-27 15:51:43 -08001051 base = alloc_pages_exact(total << PAGE_SHIFT, GFP_KERNEL);
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001052 if (!base)
1053 goto enomem;
David Howells8feae132009-01-08 12:04:47 +00001054
Joonsoo Kimdbc83582014-12-12 16:55:55 -08001055 atomic_long_add(total, &mmap_pages_allocated);
1056
David Howells8feae132009-01-08 12:04:47 +00001057 region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
1058 region->vm_start = (unsigned long) base;
Bob Liuf67d9b12011-05-24 17:12:56 -07001059 region->vm_end = region->vm_start + len;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001060 region->vm_top = region->vm_start + (total << PAGE_SHIFT);
David Howells8feae132009-01-08 12:04:47 +00001061
1062 vma->vm_start = region->vm_start;
1063 vma->vm_end = region->vm_start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 if (vma->vm_file) {
1066 /* read the contents of a file into the copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 loff_t fpos;
1068
1069 fpos = vma->vm_pgoff;
1070 fpos <<= PAGE_SHIFT;
1071
Christoph Hellwigb4bf8022017-09-01 17:39:17 +02001072 ret = kernel_read(vma->vm_file, base, len, &fpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (ret < 0)
1074 goto error_free;
1075
1076 /* clear the last little bit */
Bob Liuf67d9b12011-05-24 17:12:56 -07001077 if (ret < len)
1078 memset(base + ret, 0, len - ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Kirill A. Shutemovbfd40ea2018-07-26 16:37:35 -07001080 } else {
1081 vma_set_anonymous(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
1084 return 0;
1085
1086error_free:
Namhyung Kim7223bb42011-05-24 17:11:26 -07001087 free_page_series(region->vm_start, region->vm_top);
David Howells8feae132009-01-08 12:04:47 +00001088 region->vm_start = vma->vm_start = 0;
1089 region->vm_end = vma->vm_end = 0;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001090 region->vm_top = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return ret;
1092
1093enomem:
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07001094 pr_err("Allocation of length %lu from process %d (%s) failed\n",
Greg Ungerer05ae6fa2009-01-13 17:30:22 +10001095 len, current->pid, current->comm);
Michal Hocko9af744d2017-02-22 15:46:16 -08001096 show_free_areas(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return -ENOMEM;
1098}
1099
1100/*
1101 * handle mapping creation for uClinux
1102 */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001103unsigned long do_mmap(struct file *file,
1104 unsigned long addr,
1105 unsigned long len,
1106 unsigned long prot,
1107 unsigned long flags,
1108 vm_flags_t vm_flags,
1109 unsigned long pgoff,
Mike Rapoport897ab3e2017-02-24 14:58:22 -08001110 unsigned long *populate,
1111 struct list_head *uf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
David Howells8feae132009-01-08 12:04:47 +00001113 struct vm_area_struct *vma;
1114 struct vm_region *region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 struct rb_node *rb;
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001116 unsigned long capabilities, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 int ret;
1118
Michel Lespinasse41badc12013-02-22 16:32:47 -08001119 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 /* decide whether we should attempt the mapping, and if so what sort of
1122 * mapping */
1123 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
1124 &capabilities);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001125 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return ret;
1127
David Howells06aab5a2009-09-24 12:33:48 +01001128 /* we ignore the address hint */
1129 addr = 0;
Bob Liuf67d9b12011-05-24 17:12:56 -07001130 len = PAGE_ALIGN(len);
David Howells06aab5a2009-09-24 12:33:48 +01001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* we've determined that we can make the mapping, now translate what we
1133 * now know into VMA flags */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001134 vm_flags |= determine_vm_flags(file, prot, flags, capabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
David Howells8feae132009-01-08 12:04:47 +00001136 /* we're going to need to record the mapping */
1137 region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
1138 if (!region)
1139 goto error_getting_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Linus Torvalds490fc052018-07-21 15:24:03 -07001141 vma = vm_area_alloc(current->mm);
David Howells8feae132009-01-08 12:04:47 +00001142 if (!vma)
1143 goto error_getting_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
David Howells1e2ae592010-01-15 17:01:33 -08001145 region->vm_usage = 1;
David Howells8feae132009-01-08 12:04:47 +00001146 region->vm_flags = vm_flags;
1147 region->vm_pgoff = pgoff;
1148
David Howells8feae132009-01-08 12:04:47 +00001149 vma->vm_flags = vm_flags;
1150 vma->vm_pgoff = pgoff;
1151
1152 if (file) {
Al Virocb0942b2012-08-27 14:48:26 -04001153 region->vm_file = get_file(file);
1154 vma->vm_file = get_file(file);
David Howells8feae132009-01-08 12:04:47 +00001155 }
1156
1157 down_write(&nommu_region_sem);
1158
1159 /* if we want to share, we need to check for regions created by other
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 * mmap() calls that overlap with our proposed mapping
David Howells8feae132009-01-08 12:04:47 +00001161 * - we can only share with a superset match on most regular files
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * - shared mappings on character devices and memory backed files are
1163 * permitted to overlap inexactly as far as we are concerned for in
1164 * these cases, sharing is handled in the driver or filesystem rather
1165 * than here
1166 */
1167 if (vm_flags & VM_MAYSHARE) {
David Howells8feae132009-01-08 12:04:47 +00001168 struct vm_region *pregion;
1169 unsigned long pglen, rpglen, pgend, rpgend, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
David Howells8feae132009-01-08 12:04:47 +00001171 pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1172 pgend = pgoff + pglen;
David Howells165b2392007-03-22 00:11:24 -08001173
David Howells8feae132009-01-08 12:04:47 +00001174 for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
1175 pregion = rb_entry(rb, struct vm_region, vm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
David Howells8feae132009-01-08 12:04:47 +00001177 if (!(pregion->vm_flags & VM_MAYSHARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 continue;
1179
1180 /* search for overlapping mappings on the same file */
Al Viro496ad9a2013-01-23 17:07:38 -05001181 if (file_inode(pregion->vm_file) !=
1182 file_inode(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 continue;
1184
David Howells8feae132009-01-08 12:04:47 +00001185 if (pregion->vm_pgoff >= pgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 continue;
1187
David Howells8feae132009-01-08 12:04:47 +00001188 rpglen = pregion->vm_end - pregion->vm_start;
1189 rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1190 rpgend = pregion->vm_pgoff + rpglen;
1191 if (pgoff >= rpgend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 continue;
1193
David Howells8feae132009-01-08 12:04:47 +00001194 /* handle inexactly overlapping matches between
1195 * mappings */
1196 if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
1197 !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
1198 /* new mapping is not a subset of the region */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001199 if (!(capabilities & NOMMU_MAP_DIRECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 goto sharing_violation;
1201 continue;
1202 }
1203
David Howells8feae132009-01-08 12:04:47 +00001204 /* we've found a region we can share */
David Howells1e2ae592010-01-15 17:01:33 -08001205 pregion->vm_usage++;
David Howells8feae132009-01-08 12:04:47 +00001206 vma->vm_region = pregion;
1207 start = pregion->vm_start;
1208 start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
1209 vma->vm_start = start;
1210 vma->vm_end = start + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001212 if (pregion->vm_flags & VM_MAPPED_COPY)
David Howells8feae132009-01-08 12:04:47 +00001213 vma->vm_flags |= VM_MAPPED_COPY;
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001214 else {
David Howells8feae132009-01-08 12:04:47 +00001215 ret = do_mmap_shared_file(vma);
1216 if (ret < 0) {
1217 vma->vm_region = NULL;
1218 vma->vm_start = 0;
1219 vma->vm_end = 0;
David Howells1e2ae592010-01-15 17:01:33 -08001220 pregion->vm_usage--;
David Howells8feae132009-01-08 12:04:47 +00001221 pregion = NULL;
1222 goto error_just_free;
1223 }
1224 }
1225 fput(region->vm_file);
1226 kmem_cache_free(vm_region_jar, region);
1227 region = pregion;
1228 result = start;
1229 goto share;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /* obtain the address at which to make a shared mapping
1233 * - this is the hook for quasi-memory character devices to
1234 * tell us the location of a shared mapping
1235 */
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001236 if (capabilities & NOMMU_MAP_DIRECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 addr = file->f_op->get_unmapped_area(file, addr, len,
1238 pgoff, flags);
Namhyung Kimbb005a52011-05-24 17:11:27 -07001239 if (IS_ERR_VALUE(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 ret = addr;
Namhyung Kimbb005a52011-05-24 17:11:27 -07001241 if (ret != -ENOSYS)
David Howells8feae132009-01-08 12:04:47 +00001242 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 /* the driver refused to tell us where to site
1245 * the mapping so we'll have to attempt to copy
1246 * it */
Namhyung Kimbb005a52011-05-24 17:11:27 -07001247 ret = -ENODEV;
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001248 if (!(capabilities & NOMMU_MAP_COPY))
David Howells8feae132009-01-08 12:04:47 +00001249 goto error_just_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001251 capabilities &= ~NOMMU_MAP_DIRECT;
David Howells8feae132009-01-08 12:04:47 +00001252 } else {
1253 vma->vm_start = region->vm_start = addr;
1254 vma->vm_end = region->vm_end = addr + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256 }
1257 }
1258
David Howells8feae132009-01-08 12:04:47 +00001259 vma->vm_region = region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
David Howells645d83c2009-09-24 15:13:10 +01001261 /* set up the mapping
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001262 * - the region is filled in if NOMMU_MAP_DIRECT is still set
David Howells645d83c2009-09-24 15:13:10 +01001263 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (file && vma->vm_flags & VM_SHARED)
David Howells8feae132009-01-08 12:04:47 +00001265 ret = do_mmap_shared_file(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 else
David Howells645d83c2009-09-24 15:13:10 +01001267 ret = do_mmap_private(vma, region, len, capabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (ret < 0)
David Howells645d83c2009-09-24 15:13:10 +01001269 goto error_just_free;
1270 add_nommu_region(region);
David Howells8feae132009-01-08 12:04:47 +00001271
Jie Zhangea637632009-12-14 18:00:02 -08001272 /* clear anonymous mappings that don't ask for uninitialized data */
Christoph Hellwig0bf5f942019-07-16 16:26:27 -07001273 if (!vma->vm_file &&
1274 (!IS_ENABLED(CONFIG_MMAP_ALLOW_UNINITIALIZED) ||
1275 !(flags & MAP_UNINITIALIZED)))
Jie Zhangea637632009-12-14 18:00:02 -08001276 memset((void *)region->vm_start, 0,
1277 region->vm_end - region->vm_start);
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 /* okay... we have a mapping; now we have to register it */
David Howells8feae132009-01-08 12:04:47 +00001280 result = vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 current->mm->total_vm += len >> PAGE_SHIFT;
1283
David Howells8feae132009-01-08 12:04:47 +00001284share:
1285 add_vma_to_mm(current->mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Mike Frysingercfe79c02010-01-06 17:23:23 +00001287 /* we flush the region from the icache only when the first executable
1288 * mapping of it is made */
1289 if (vma->vm_flags & VM_EXEC && !region->vm_icache_flushed) {
1290 flush_icache_range(region->vm_start, region->vm_end);
1291 region->vm_icache_flushed = true;
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Mike Frysingercfe79c02010-01-06 17:23:23 +00001294 up_write(&nommu_region_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
David Howells8feae132009-01-08 12:04:47 +00001296 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
David Howells8feae132009-01-08 12:04:47 +00001298error_just_free:
1299 up_write(&nommu_region_sem);
1300error:
David Howells89a86402009-10-30 13:13:26 +00001301 if (region->vm_file)
1302 fput(region->vm_file);
David Howells8feae132009-01-08 12:04:47 +00001303 kmem_cache_free(vm_region_jar, region);
David Howells89a86402009-10-30 13:13:26 +00001304 if (vma->vm_file)
1305 fput(vma->vm_file);
Linus Torvalds3928d4f2018-07-21 13:48:51 -07001306 vm_area_free(vma);
David Howells8feae132009-01-08 12:04:47 +00001307 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
David Howells8feae132009-01-08 12:04:47 +00001309sharing_violation:
1310 up_write(&nommu_region_sem);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001311 pr_warn("Attempt to share mismatched mappings\n");
David Howells8feae132009-01-08 12:04:47 +00001312 ret = -EINVAL;
1313 goto error;
1314
1315error_getting_vma:
1316 kmem_cache_free(vm_region_jar, region);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001317 pr_warn("Allocation of vma for %lu byte allocation from process %d failed\n",
1318 len, current->pid);
Michal Hocko9af744d2017-02-22 15:46:16 -08001319 show_free_areas(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return -ENOMEM;
1321
David Howells8feae132009-01-08 12:04:47 +00001322error_getting_region:
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001323 pr_warn("Allocation of vm region for %lu byte allocation from process %d failed\n",
1324 len, current->pid);
Michal Hocko9af744d2017-02-22 15:46:16 -08001325 show_free_areas(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return -ENOMEM;
1327}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001328
Dominik Brodowskia90f5902018-03-11 11:34:46 +01001329unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
1330 unsigned long prot, unsigned long flags,
1331 unsigned long fd, unsigned long pgoff)
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001332{
1333 struct file *file = NULL;
1334 unsigned long retval = -EBADF;
1335
Al Viro120a7952010-10-30 02:54:44 -04001336 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001337 if (!(flags & MAP_ANONYMOUS)) {
1338 file = fget(fd);
1339 if (!file)
1340 goto out;
1341 }
1342
1343 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1344
Greg Ungererad1ed292012-06-04 14:29:59 +10001345 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001346
1347 if (file)
1348 fput(file);
1349out:
1350 return retval;
1351}
1352
Dominik Brodowskia90f5902018-03-11 11:34:46 +01001353SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1354 unsigned long, prot, unsigned long, flags,
1355 unsigned long, fd, unsigned long, pgoff)
1356{
1357 return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
1358}
1359
Christoph Hellwiga4679372010-03-10 15:21:15 -08001360#ifdef __ARCH_WANT_SYS_OLD_MMAP
1361struct mmap_arg_struct {
1362 unsigned long addr;
1363 unsigned long len;
1364 unsigned long prot;
1365 unsigned long flags;
1366 unsigned long fd;
1367 unsigned long offset;
1368};
1369
1370SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1371{
1372 struct mmap_arg_struct a;
1373
1374 if (copy_from_user(&a, arg, sizeof(a)))
1375 return -EFAULT;
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001376 if (offset_in_page(a.offset))
Christoph Hellwiga4679372010-03-10 15:21:15 -08001377 return -EINVAL;
1378
Dominik Brodowskia90f5902018-03-11 11:34:46 +01001379 return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1380 a.offset >> PAGE_SHIFT);
Christoph Hellwiga4679372010-03-10 15:21:15 -08001381}
1382#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/*
David Howells8feae132009-01-08 12:04:47 +00001385 * split a vma into two pieces at address 'addr', a new vma is allocated either
1386 * for the first part or the tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
David Howells8feae132009-01-08 12:04:47 +00001388int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
1389 unsigned long addr, int new_below)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
David Howells8feae132009-01-08 12:04:47 +00001391 struct vm_area_struct *new;
1392 struct vm_region *region;
1393 unsigned long npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
David Howells779c1022010-01-15 17:01:34 -08001395 /* we're only permitted to split anonymous regions (these should have
1396 * only a single usage on the region) */
1397 if (vma->vm_file)
David Howells8feae132009-01-08 12:04:47 +00001398 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
David Howells8feae132009-01-08 12:04:47 +00001400 if (mm->map_count >= sysctl_max_map_count)
1401 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
David Howells8feae132009-01-08 12:04:47 +00001403 region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
1404 if (!region)
1405 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Linus Torvalds3928d4f2018-07-21 13:48:51 -07001407 new = vm_area_dup(vma);
David Howells8feae132009-01-08 12:04:47 +00001408 if (!new) {
1409 kmem_cache_free(vm_region_jar, region);
1410 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
David Howells8feae132009-01-08 12:04:47 +00001412
1413 /* most fields are the same, copy all, and then fixup */
David Howells8feae132009-01-08 12:04:47 +00001414 *region = *vma->vm_region;
1415 new->vm_region = region;
1416
1417 npages = (addr - vma->vm_start) >> PAGE_SHIFT;
1418
1419 if (new_below) {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001420 region->vm_top = region->vm_end = new->vm_end = addr;
David Howells8feae132009-01-08 12:04:47 +00001421 } else {
1422 region->vm_start = new->vm_start = addr;
1423 region->vm_pgoff = new->vm_pgoff += npages;
1424 }
1425
1426 if (new->vm_ops && new->vm_ops->open)
1427 new->vm_ops->open(new);
1428
1429 delete_vma_from_mm(vma);
1430 down_write(&nommu_region_sem);
1431 delete_nommu_region(vma->vm_region);
1432 if (new_below) {
1433 vma->vm_region->vm_start = vma->vm_start = addr;
1434 vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
1435 } else {
1436 vma->vm_region->vm_end = vma->vm_end = addr;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001437 vma->vm_region->vm_top = addr;
David Howells8feae132009-01-08 12:04:47 +00001438 }
1439 add_nommu_region(vma->vm_region);
1440 add_nommu_region(new->vm_region);
1441 up_write(&nommu_region_sem);
1442 add_vma_to_mm(mm, vma);
1443 add_vma_to_mm(mm, new);
1444 return 0;
1445}
1446
1447/*
1448 * shrink a VMA by removing the specified chunk from either the beginning or
1449 * the end
1450 */
1451static int shrink_vma(struct mm_struct *mm,
1452 struct vm_area_struct *vma,
1453 unsigned long from, unsigned long to)
1454{
1455 struct vm_region *region;
1456
David Howells8feae132009-01-08 12:04:47 +00001457 /* adjust the VMA's pointers, which may reposition it in the MM's tree
1458 * and list */
1459 delete_vma_from_mm(vma);
1460 if (from > vma->vm_start)
1461 vma->vm_end = from;
1462 else
1463 vma->vm_start = to;
1464 add_vma_to_mm(mm, vma);
1465
1466 /* cut the backing region down to size */
1467 region = vma->vm_region;
David Howells1e2ae592010-01-15 17:01:33 -08001468 BUG_ON(region->vm_usage != 1);
David Howells8feae132009-01-08 12:04:47 +00001469
1470 down_write(&nommu_region_sem);
1471 delete_nommu_region(region);
Paul Mundtdd8632a2009-01-08 12:04:47 +00001472 if (from > region->vm_start) {
1473 to = region->vm_top;
1474 region->vm_top = region->vm_end = from;
1475 } else {
David Howells8feae132009-01-08 12:04:47 +00001476 region->vm_start = to;
Paul Mundtdd8632a2009-01-08 12:04:47 +00001477 }
David Howells8feae132009-01-08 12:04:47 +00001478 add_nommu_region(region);
1479 up_write(&nommu_region_sem);
1480
1481 free_page_series(from, to);
1482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
David Howells30340972006-09-27 01:50:20 -07001485/*
1486 * release a mapping
David Howells8feae132009-01-08 12:04:47 +00001487 * - under NOMMU conditions the chunk to be unmapped must be backed by a single
1488 * VMA, though it need not cover the whole VMA
David Howells30340972006-09-27 01:50:20 -07001489 */
Mike Rapoport897ab3e2017-02-24 14:58:22 -08001490int do_munmap(struct mm_struct *mm, unsigned long start, size_t len, struct list_head *uf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
David Howells8feae132009-01-08 12:04:47 +00001492 struct vm_area_struct *vma;
Bob Liuf67d9b12011-05-24 17:12:56 -07001493 unsigned long end;
David Howells8feae132009-01-08 12:04:47 +00001494 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Bob Liuf67d9b12011-05-24 17:12:56 -07001496 len = PAGE_ALIGN(len);
David Howells8feae132009-01-08 12:04:47 +00001497 if (len == 0)
1498 return -EINVAL;
1499
Bob Liuf67d9b12011-05-24 17:12:56 -07001500 end = start + len;
1501
David Howells8feae132009-01-08 12:04:47 +00001502 /* find the first potentially overlapping VMA */
1503 vma = find_vma(mm, start);
1504 if (!vma) {
Choi Gi-yongac714902014-04-07 15:37:36 -07001505 static int limit;
David Howells33e5d7692009-04-02 16:56:32 -07001506 if (limit < 5) {
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001507 pr_warn("munmap of memory not mmapped by process %d (%s): 0x%lx-0x%lx\n",
1508 current->pid, current->comm,
1509 start, start + len - 1);
David Howells33e5d7692009-04-02 16:56:32 -07001510 limit++;
1511 }
David Howells8feae132009-01-08 12:04:47 +00001512 return -EINVAL;
David Howells30340972006-09-27 01:50:20 -07001513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
David Howells8feae132009-01-08 12:04:47 +00001515 /* we're allowed to split an anonymous VMA but not a file-backed one */
1516 if (vma->vm_file) {
1517 do {
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001518 if (start > vma->vm_start)
David Howells8feae132009-01-08 12:04:47 +00001519 return -EINVAL;
David Howells8feae132009-01-08 12:04:47 +00001520 if (end == vma->vm_end)
1521 goto erase_whole_vma;
Namhyung Kimd75a3102011-05-24 17:11:25 -07001522 vma = vma->vm_next;
1523 } while (vma);
David Howells8feae132009-01-08 12:04:47 +00001524 return -EINVAL;
1525 } else {
1526 /* the chunk must be a subset of the VMA found */
1527 if (start == vma->vm_start && end == vma->vm_end)
1528 goto erase_whole_vma;
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001529 if (start < vma->vm_start || end > vma->vm_end)
David Howells8feae132009-01-08 12:04:47 +00001530 return -EINVAL;
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001531 if (offset_in_page(start))
David Howells8feae132009-01-08 12:04:47 +00001532 return -EINVAL;
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001533 if (end != vma->vm_end && offset_in_page(end))
David Howells8feae132009-01-08 12:04:47 +00001534 return -EINVAL;
David Howells8feae132009-01-08 12:04:47 +00001535 if (start != vma->vm_start && end != vma->vm_end) {
1536 ret = split_vma(mm, vma, start, 1);
Leon Romanovsky22cc8772015-06-24 16:57:47 -07001537 if (ret < 0)
David Howells8feae132009-01-08 12:04:47 +00001538 return ret;
David Howells8feae132009-01-08 12:04:47 +00001539 }
1540 return shrink_vma(mm, vma, start, end);
1541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
David Howells8feae132009-01-08 12:04:47 +00001543erase_whole_vma:
1544 delete_vma_from_mm(vma);
1545 delete_vma(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return 0;
1547}
Paul Mundtb5073172007-07-21 04:37:25 -07001548EXPORT_SYMBOL(do_munmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Al Virobfce2812012-04-20 21:57:04 -04001550int vm_munmap(unsigned long addr, size_t len)
David Howells30340972006-09-27 01:50:20 -07001551{
Al Virobfce2812012-04-20 21:57:04 -04001552 struct mm_struct *mm = current->mm;
David Howells30340972006-09-27 01:50:20 -07001553 int ret;
David Howells30340972006-09-27 01:50:20 -07001554
1555 down_write(&mm->mmap_sem);
Mike Rapoport897ab3e2017-02-24 14:58:22 -08001556 ret = do_munmap(mm, addr, len, NULL);
David Howells30340972006-09-27 01:50:20 -07001557 up_write(&mm->mmap_sem);
1558 return ret;
1559}
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001560EXPORT_SYMBOL(vm_munmap);
1561
1562SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
1563{
Al Virobfce2812012-04-20 21:57:04 -04001564 return vm_munmap(addr, len);
Linus Torvaldsa46ef992012-04-20 16:20:01 -07001565}
David Howells30340972006-09-27 01:50:20 -07001566
1567/*
David Howells8feae132009-01-08 12:04:47 +00001568 * release all the mappings made in a process's VM space
David Howells30340972006-09-27 01:50:20 -07001569 */
David Howells8feae132009-01-08 12:04:47 +00001570void exit_mmap(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
David Howells8feae132009-01-08 12:04:47 +00001572 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
David Howells8feae132009-01-08 12:04:47 +00001574 if (!mm)
1575 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
David Howells8feae132009-01-08 12:04:47 +00001577 mm->total_vm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
David Howells8feae132009-01-08 12:04:47 +00001579 while ((vma = mm->mmap)) {
1580 mm->mmap = vma->vm_next;
1581 delete_vma_from_mm(vma);
1582 delete_vma(mm, vma);
Steven J. Magnani04c34962010-11-24 12:56:54 -08001583 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585}
1586
Linus Torvalds5d22fc22016-05-27 15:57:31 -07001587int vm_brk(unsigned long addr, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 return -ENOMEM;
1590}
1591
1592/*
David Howells6fa5f802006-09-27 01:50:21 -07001593 * expand (or shrink) an existing mapping, potentially moving it at the same
1594 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 *
David Howells6fa5f802006-09-27 01:50:21 -07001596 * under NOMMU conditions, we only permit changing a mapping's size, and only
David Howells8feae132009-01-08 12:04:47 +00001597 * as long as it stays within the region allocated by do_mmap_private() and the
1598 * block is not shareable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 *
David Howells6fa5f802006-09-27 01:50:21 -07001600 * MREMAP_FIXED is not supported under NOMMU conditions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 */
Al Viro4b377ba2013-03-04 10:47:59 -05001602static unsigned long do_mremap(unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 unsigned long old_len, unsigned long new_len,
1604 unsigned long flags, unsigned long new_addr)
1605{
David Howells6fa5f802006-09-27 01:50:21 -07001606 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /* insanity checks first */
Bob Liuf67d9b12011-05-24 17:12:56 -07001609 old_len = PAGE_ALIGN(old_len);
1610 new_len = PAGE_ALIGN(new_len);
David Howells8feae132009-01-08 12:04:47 +00001611 if (old_len == 0 || new_len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return (unsigned long) -EINVAL;
1613
Alexander Kuleshov1824cb72015-11-05 18:46:35 -08001614 if (offset_in_page(addr))
David Howells8feae132009-01-08 12:04:47 +00001615 return -EINVAL;
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (flags & MREMAP_FIXED && new_addr != addr)
1618 return (unsigned long) -EINVAL;
1619
David Howells8feae132009-01-08 12:04:47 +00001620 vma = find_vma_exact(current->mm, addr, old_len);
David Howells6fa5f802006-09-27 01:50:21 -07001621 if (!vma)
1622 return (unsigned long) -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
David Howells6fa5f802006-09-27 01:50:21 -07001624 if (vma->vm_end != vma->vm_start + old_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return (unsigned long) -EFAULT;
1626
David Howells6fa5f802006-09-27 01:50:21 -07001627 if (vma->vm_flags & VM_MAYSHARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return (unsigned long) -EPERM;
1629
David Howells8feae132009-01-08 12:04:47 +00001630 if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 return (unsigned long) -ENOMEM;
1632
1633 /* all checks complete - do it */
David Howells6fa5f802006-09-27 01:50:21 -07001634 vma->vm_end = vma->vm_start + new_len;
David Howells6fa5f802006-09-27 01:50:21 -07001635 return vma->vm_start;
1636}
1637
Heiko Carstens6a6160a2009-01-14 14:14:15 +01001638SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
1639 unsigned long, new_len, unsigned long, flags,
1640 unsigned long, new_addr)
David Howells6fa5f802006-09-27 01:50:21 -07001641{
1642 unsigned long ret;
1643
1644 down_write(&current->mm->mmap_sem);
1645 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
1646 up_write(&current->mm->mmap_sem);
1647 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Keith Buschdf06b372018-10-26 15:10:28 -07001650struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
1651 unsigned int foll_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 return NULL;
1654}
1655
Bob Liu8f3b1322011-07-08 15:39:46 -07001656int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1657 unsigned long pfn, unsigned long size, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Bob Liu8f3b1322011-07-08 15:39:46 -07001659 if (addr != (pfn << PAGE_SHIFT))
1660 return -EINVAL;
1661
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001662 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001663 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
Luke Yang22c4af42006-07-14 00:24:09 -07001665EXPORT_SYMBOL(remap_pfn_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Linus Torvalds3c0b9de2013-04-27 13:25:38 -07001667int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1668{
1669 unsigned long pfn = start >> PAGE_SHIFT;
1670 unsigned long vm_len = vma->vm_end - vma->vm_start;
1671
1672 pfn += vma->vm_pgoff;
1673 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1674}
1675EXPORT_SYMBOL(vm_iomap_memory);
1676
Paul Mundtf905bc42008-02-04 22:29:59 -08001677int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1678 unsigned long pgoff)
1679{
1680 unsigned int size = vma->vm_end - vma->vm_start;
1681
1682 if (!(vma->vm_flags & VM_USERMAP))
1683 return -EINVAL;
1684
1685 vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1686 vma->vm_end = vma->vm_start + size;
1687
1688 return 0;
1689}
1690EXPORT_SYMBOL(remap_vmalloc_range);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
1693 unsigned long len, unsigned long pgoff, unsigned long flags)
1694{
1695 return -ENOMEM;
1696}
1697
Souptick Joarder2bcd6452018-06-07 17:08:00 -07001698vm_fault_t filemap_fault(struct vm_fault *vmf)
David Howellsb0e15192006-01-06 00:11:42 -08001699{
1700 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001701 return 0;
David Howellsb0e15192006-01-06 00:11:42 -08001702}
Paul Mundtb5073172007-07-21 04:37:25 -07001703EXPORT_SYMBOL(filemap_fault);
David Howells0ec76a12006-09-27 01:50:15 -07001704
Jan Kara82b0f8c2016-12-14 15:06:58 -08001705void filemap_map_pages(struct vm_fault *vmf,
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -07001706 pgoff_t start_pgoff, pgoff_t end_pgoff)
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07001707{
1708 BUG();
1709}
1710EXPORT_SYMBOL(filemap_map_pages);
1711
Eric W. Biederman84d77d32016-11-22 12:06:50 -06001712int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
Lorenzo Stoakes442486e2016-10-13 01:20:18 +01001713 unsigned long addr, void *buf, int len, unsigned int gup_flags)
David Howells0ec76a12006-09-27 01:50:15 -07001714{
David Howells0ec76a12006-09-27 01:50:15 -07001715 struct vm_area_struct *vma;
Lorenzo Stoakes442486e2016-10-13 01:20:18 +01001716 int write = gup_flags & FOLL_WRITE;
David Howells0ec76a12006-09-27 01:50:15 -07001717
Konstantin Khlebnikov1e426fe2019-07-11 21:00:07 -07001718 if (down_read_killable(&mm->mmap_sem))
1719 return 0;
David Howells0ec76a12006-09-27 01:50:15 -07001720
1721 /* the access must start within one of the target process's mappings */
David Howells0159b142006-09-27 01:50:16 -07001722 vma = find_vma(mm, addr);
1723 if (vma) {
David Howells0ec76a12006-09-27 01:50:15 -07001724 /* don't overrun this mapping */
1725 if (addr + len >= vma->vm_end)
1726 len = vma->vm_end - addr;
1727
1728 /* only read or write mappings where it is permitted */
David Howellsd00c7b992006-09-27 01:50:19 -07001729 if (write && vma->vm_flags & VM_MAYWRITE)
Jie Zhang79597222010-01-06 17:23:28 +00001730 copy_to_user_page(vma, NULL, addr,
1731 (void *) addr, buf, len);
David Howellsd00c7b992006-09-27 01:50:19 -07001732 else if (!write && vma->vm_flags & VM_MAYREAD)
Jie Zhang79597222010-01-06 17:23:28 +00001733 copy_from_user_page(vma, NULL, addr,
1734 buf, (void *) addr, len);
David Howells0ec76a12006-09-27 01:50:15 -07001735 else
1736 len = 0;
1737 } else {
1738 len = 0;
1739 }
1740
1741 up_read(&mm->mmap_sem);
Mike Frysingerf55f1992011-03-29 14:05:12 +01001742
1743 return len;
1744}
1745
1746/**
Mike Rapoportb7701a52018-02-06 15:42:13 -08001747 * access_remote_vm - access another process' address space
Mike Frysingerf55f1992011-03-29 14:05:12 +01001748 * @mm: the mm_struct of the target address space
1749 * @addr: start address to access
1750 * @buf: source or destination buffer
1751 * @len: number of bytes to transfer
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +01001752 * @gup_flags: flags modifying lookup behaviour
Mike Frysingerf55f1992011-03-29 14:05:12 +01001753 *
1754 * The caller must hold a reference on @mm.
1755 */
1756int access_remote_vm(struct mm_struct *mm, unsigned long addr,
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +01001757 void *buf, int len, unsigned int gup_flags)
Mike Frysingerf55f1992011-03-29 14:05:12 +01001758{
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +01001759 return __access_remote_vm(NULL, mm, addr, buf, len, gup_flags);
Mike Frysingerf55f1992011-03-29 14:05:12 +01001760}
1761
1762/*
1763 * Access another process' address space.
1764 * - source/target buffer must be kernel space
1765 */
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +01001766int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len,
1767 unsigned int gup_flags)
Mike Frysingerf55f1992011-03-29 14:05:12 +01001768{
1769 struct mm_struct *mm;
1770
1771 if (addr + len < addr)
1772 return 0;
1773
1774 mm = get_task_mm(tsk);
1775 if (!mm)
1776 return 0;
1777
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +01001778 len = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags);
Mike Frysingerf55f1992011-03-29 14:05:12 +01001779
David Howells0ec76a12006-09-27 01:50:15 -07001780 mmput(mm);
1781 return len;
1782}
Catalin Marinasfcd35852016-11-01 14:43:25 -07001783EXPORT_SYMBOL_GPL(access_process_vm);
David Howells7e660872010-01-15 17:01:39 -08001784
1785/**
1786 * nommu_shrink_inode_mappings - Shrink the shared mappings on an inode
1787 * @inode: The inode to check
1788 * @size: The current filesize of the inode
1789 * @newsize: The proposed filesize of the inode
1790 *
1791 * Check the shared mappings on an inode on behalf of a shrinking truncate to
1792 * make sure that that any outstanding VMAs aren't broken and then shrink the
1793 * vm_regions that extend that beyond so that do_mmap_pgoff() doesn't
1794 * automatically grant mappings that are too large.
1795 */
1796int nommu_shrink_inode_mappings(struct inode *inode, size_t size,
1797 size_t newsize)
1798{
1799 struct vm_area_struct *vma;
David Howells7e660872010-01-15 17:01:39 -08001800 struct vm_region *region;
1801 pgoff_t low, high;
1802 size_t r_size, r_top;
1803
1804 low = newsize >> PAGE_SHIFT;
1805 high = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1806
1807 down_write(&nommu_region_sem);
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001808 i_mmap_lock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08001809
1810 /* search for VMAs that fall within the dead zone */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07001811 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, low, high) {
David Howells7e660872010-01-15 17:01:39 -08001812 /* found one - only interested if it's shared out of the page
1813 * cache */
1814 if (vma->vm_flags & VM_SHARED) {
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001815 i_mmap_unlock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08001816 up_write(&nommu_region_sem);
1817 return -ETXTBSY; /* not quite true, but near enough */
1818 }
1819 }
1820
1821 /* reduce any regions that overlap the dead zone - if in existence,
1822 * these will be pointed to by VMAs that don't overlap the dead zone
1823 *
1824 * we don't check for any regions that start beyond the EOF as there
1825 * shouldn't be any
1826 */
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001827 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, 0, ULONG_MAX) {
David Howells7e660872010-01-15 17:01:39 -08001828 if (!(vma->vm_flags & VM_SHARED))
1829 continue;
1830
1831 region = vma->vm_region;
1832 r_size = region->vm_top - region->vm_start;
1833 r_top = (region->vm_pgoff << PAGE_SHIFT) + r_size;
1834
1835 if (r_top > newsize) {
1836 region->vm_top -= r_top - newsize;
1837 if (region->vm_end > region->vm_top)
1838 region->vm_end = region->vm_top;
1839 }
1840 }
1841
Davidlohr Bueso1acf2e02014-12-12 16:54:39 -08001842 i_mmap_unlock_read(inode->i_mapping);
David Howells7e660872010-01-15 17:01:39 -08001843 up_write(&nommu_region_sem);
1844 return 0;
1845}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001846
1847/*
1848 * Initialise sysctl_user_reserve_kbytes.
1849 *
1850 * This is intended to prevent a user from starting a single memory hogging
1851 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
1852 * mode.
1853 *
1854 * The default value is min(3% of free memory, 128MB)
1855 * 128MB is enough to recover with sshd/login, bash, and top/kill.
1856 */
1857static int __meminit init_user_reserve(void)
1858{
1859 unsigned long free_kbytes;
1860
Michal Hockoc41f0122017-09-06 16:23:36 -07001861 free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001862
1863 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
1864 return 0;
1865}
Paul Gortmakera4bc6fc2015-05-01 20:08:20 -04001866subsys_initcall(init_user_reserve);
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001867
1868/*
1869 * Initialise sysctl_admin_reserve_kbytes.
1870 *
1871 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
1872 * to log in and kill a memory hogging process.
1873 *
1874 * Systems with more than 256MB will reserve 8MB, enough to recover
1875 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
1876 * only reserve 3% of free pages by default.
1877 */
1878static int __meminit init_admin_reserve(void)
1879{
1880 unsigned long free_kbytes;
1881
Michal Hockoc41f0122017-09-06 16:23:36 -07001882 free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001883
1884 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
1885 return 0;
1886}
Paul Gortmakera4bc6fc2015-05-01 20:08:20 -04001887subsys_initcall(init_admin_reserve);