lightnvm: missing free on init error
[linux-2.6-block.git] / mm / nommu.c
CommitLineData
1da177e4
LT
1/*
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 *
8feae131 9 * Copyright (c) 2004-2008 David Howells <dhowells@redhat.com>
1da177e4
LT
10 * 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>
29c185e5 13 * Copyright (c) 2007-2010 Paul Mundt <lethal@linux-sh.org>
1da177e4
LT
14 */
15
b1de0d13
MH
16#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
b95f1b31 18#include <linux/export.h>
1da177e4 19#include <linux/mm.h>
615d6e87 20#include <linux/vmacache.h>
1da177e4
LT
21#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>
1da177e4
LT
28#include <linux/blkdev.h>
29#include <linux/backing-dev.h>
3b32123d 30#include <linux/compiler.h>
1da177e4
LT
31#include <linux/mount.h>
32#include <linux/personality.h>
33#include <linux/security.h>
34#include <linux/syscalls.h>
120a795d 35#include <linux/audit.h>
cf4aebc2 36#include <linux/sched/sysctl.h>
b1de0d13 37#include <linux/printk.h>
1da177e4
LT
38
39#include <asm/uaccess.h>
40#include <asm/tlb.h>
41#include <asm/tlbflush.h>
eb8cdec4 42#include <asm/mmu_context.h>
8feae131
DH
43#include "internal.h"
44
1da177e4 45void *high_memory;
944b6874 46EXPORT_SYMBOL(high_memory);
1da177e4
LT
47struct page *mem_map;
48unsigned long max_mapnr;
5b8bf307 49EXPORT_SYMBOL(max_mapnr);
4266c97a 50unsigned long highest_memmap_pfn;
00a62ce9 51struct percpu_counter vm_committed_as;
1da177e4
LT
52int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
53int sysctl_overcommit_ratio = 50; /* default is 50% */
49f0ce5f 54unsigned long sysctl_overcommit_kbytes __read_mostly;
1da177e4 55int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
fc4d5c29 56int sysctl_nr_trim_pages = CONFIG_NOMMU_INITIAL_TRIM_EXCESS;
c9b1d098 57unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
4eeab4f5 58unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
1da177e4
LT
59int heap_stack_gap = 0;
60
33e5d769 61atomic_long_t mmap_pages_allocated;
8feae131 62
997071bc
S
63/*
64 * The global memory commitment made in the system can be a metric
65 * that can be used to drive ballooning decisions when Linux is hosted
66 * as a guest. On Hyper-V, the host implements a policy engine for dynamically
67 * balancing memory across competing virtual machines that are hosted.
68 * Several metrics drive this policy engine including the guest reported
69 * memory commitment.
70 */
71unsigned long vm_memory_committed(void)
72{
73 return percpu_counter_read_positive(&vm_committed_as);
74}
75
76EXPORT_SYMBOL_GPL(vm_memory_committed);
77
1da177e4 78EXPORT_SYMBOL(mem_map);
1da177e4 79
8feae131
DH
80/* list of mapped, potentially shareable regions */
81static struct kmem_cache *vm_region_jar;
82struct rb_root nommu_region_tree = RB_ROOT;
83DECLARE_RWSEM(nommu_region_sem);
1da177e4 84
f0f37e2f 85const struct vm_operations_struct generic_file_vm_ops = {
1da177e4
LT
86};
87
1da177e4
LT
88/*
89 * Return the total memory allocated for this pointer, not
90 * just what the caller asked for.
91 *
92 * Doesn't have to be accurate, i.e. may have races.
93 */
94unsigned int kobjsize(const void *objp)
95{
96 struct page *page;
97
4016a139
MH
98 /*
99 * If the object we have should not have ksize performed on it,
100 * return size of 0
101 */
5a1603be 102 if (!objp || !virt_addr_valid(objp))
6cfd53fc
PM
103 return 0;
104
105 page = virt_to_head_page(objp);
6cfd53fc
PM
106
107 /*
108 * If the allocator sets PageSlab, we know the pointer came from
109 * kmalloc().
110 */
1da177e4
LT
111 if (PageSlab(page))
112 return ksize(objp);
113
ab2e83ea
PM
114 /*
115 * If it's not a compound page, see if we have a matching VMA
116 * region. This test is intentionally done in reverse order,
117 * so if there's no VMA, we still fall through and hand back
118 * PAGE_SIZE for 0-order pages.
119 */
120 if (!PageCompound(page)) {
121 struct vm_area_struct *vma;
122
123 vma = find_vma(current->mm, (unsigned long)objp);
124 if (vma)
125 return vma->vm_end - vma->vm_start;
126 }
127
6cfd53fc
PM
128 /*
129 * The ksize() function is only guaranteed to work for pointers
5a1603be 130 * returned by kmalloc(). So handle arbitrary pointers here.
6cfd53fc 131 */
5a1603be 132 return PAGE_SIZE << compound_order(page);
1da177e4
LT
133}
134
28a35716
ML
135long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
136 unsigned long start, unsigned long nr_pages,
137 unsigned int foll_flags, struct page **pages,
138 struct vm_area_struct **vmas, int *nonblocking)
1da177e4 139{
910e46da 140 struct vm_area_struct *vma;
7b4d5b8b
DH
141 unsigned long vm_flags;
142 int i;
143
144 /* calculate required read or write permissions.
58fa879e 145 * If FOLL_FORCE is set, we only require the "MAY" flags.
7b4d5b8b 146 */
58fa879e
HD
147 vm_flags = (foll_flags & FOLL_WRITE) ?
148 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
149 vm_flags &= (foll_flags & FOLL_FORCE) ?
150 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
1da177e4 151
9d73777e 152 for (i = 0; i < nr_pages; i++) {
7561e8ca 153 vma = find_vma(mm, start);
7b4d5b8b
DH
154 if (!vma)
155 goto finish_or_fault;
156
157 /* protect what we can, including chardevs */
1c3aff1c
HD
158 if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
159 !(vm_flags & vma->vm_flags))
7b4d5b8b 160 goto finish_or_fault;
910e46da 161
1da177e4
LT
162 if (pages) {
163 pages[i] = virt_to_page(start);
164 if (pages[i])
165 page_cache_get(pages[i]);
166 }
167 if (vmas)
910e46da 168 vmas[i] = vma;
e1ee65d8 169 start = (start + PAGE_SIZE) & PAGE_MASK;
1da177e4 170 }
7b4d5b8b
DH
171
172 return i;
173
174finish_or_fault:
175 return i ? : -EFAULT;
1da177e4 176}
b291f000 177
b291f000
NP
178/*
179 * get a list of pages in an address range belonging to the specified process
180 * and indicate the VMA that covers each page
181 * - this is potentially dodgy as we may end incrementing the page count of a
182 * slab page or a secondary page from a compound page
183 * - don't permit access to VMAs that don't support it, such as I/O mappings
184 */
28a35716
ML
185long get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
186 unsigned long start, unsigned long nr_pages,
187 int write, int force, struct page **pages,
188 struct vm_area_struct **vmas)
b291f000
NP
189{
190 int flags = 0;
191
192 if (write)
58fa879e 193 flags |= FOLL_WRITE;
b291f000 194 if (force)
58fa879e 195 flags |= FOLL_FORCE;
b291f000 196
53a7706d
ML
197 return __get_user_pages(tsk, mm, start, nr_pages, flags, pages, vmas,
198 NULL);
b291f000 199}
66aa2b4b
GU
200EXPORT_SYMBOL(get_user_pages);
201
f0818f47
AA
202long get_user_pages_locked(struct task_struct *tsk, struct mm_struct *mm,
203 unsigned long start, unsigned long nr_pages,
204 int write, int force, struct page **pages,
205 int *locked)
206{
207 return get_user_pages(tsk, mm, start, nr_pages, write, force,
208 pages, NULL);
209}
210EXPORT_SYMBOL(get_user_pages_locked);
211
0fd71a56
AA
212long __get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm,
213 unsigned long start, unsigned long nr_pages,
214 int write, int force, struct page **pages,
215 unsigned int gup_flags)
f0818f47
AA
216{
217 long ret;
218 down_read(&mm->mmap_sem);
219 ret = get_user_pages(tsk, mm, start, nr_pages, write, force,
220 pages, NULL);
221 up_read(&mm->mmap_sem);
222 return ret;
223}
0fd71a56
AA
224EXPORT_SYMBOL(__get_user_pages_unlocked);
225
226long get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm,
227 unsigned long start, unsigned long nr_pages,
228 int write, int force, struct page **pages)
229{
230 return __get_user_pages_unlocked(tsk, mm, start, nr_pages, write,
231 force, pages, 0);
232}
f0818f47
AA
233EXPORT_SYMBOL(get_user_pages_unlocked);
234
dfc2f91a
PM
235/**
236 * follow_pfn - look up PFN at a user virtual address
237 * @vma: memory mapping
238 * @address: user virtual address
239 * @pfn: location to store found PFN
240 *
241 * Only IO mappings and raw PFN mappings are allowed.
242 *
243 * Returns zero and the pfn at @pfn on success, -ve otherwise.
244 */
245int follow_pfn(struct vm_area_struct *vma, unsigned long address,
246 unsigned long *pfn)
247{
248 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
249 return -EINVAL;
250
251 *pfn = address >> PAGE_SHIFT;
252 return 0;
253}
254EXPORT_SYMBOL(follow_pfn);
255
f1c4069e 256LIST_HEAD(vmap_area_list);
1da177e4 257
b3bdda02 258void vfree(const void *addr)
1da177e4
LT
259{
260 kfree(addr);
261}
b5073173 262EXPORT_SYMBOL(vfree);
1da177e4 263
dd0fc66f 264void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
1da177e4
LT
265{
266 /*
8518609d
RD
267 * You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
268 * returns only a logical address.
1da177e4 269 */
84097518 270 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
1da177e4 271}
b5073173 272EXPORT_SYMBOL(__vmalloc);
1da177e4 273
f905bc44
PM
274void *vmalloc_user(unsigned long size)
275{
276 void *ret;
277
278 ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
279 PAGE_KERNEL);
280 if (ret) {
281 struct vm_area_struct *vma;
282
283 down_write(&current->mm->mmap_sem);
284 vma = find_vma(current->mm, (unsigned long)ret);
285 if (vma)
286 vma->vm_flags |= VM_USERMAP;
287 up_write(&current->mm->mmap_sem);
288 }
289
290 return ret;
291}
292EXPORT_SYMBOL(vmalloc_user);
293
b3bdda02 294struct page *vmalloc_to_page(const void *addr)
1da177e4
LT
295{
296 return virt_to_page(addr);
297}
b5073173 298EXPORT_SYMBOL(vmalloc_to_page);
1da177e4 299
b3bdda02 300unsigned long vmalloc_to_pfn(const void *addr)
1da177e4
LT
301{
302 return page_to_pfn(virt_to_page(addr));
303}
b5073173 304EXPORT_SYMBOL(vmalloc_to_pfn);
1da177e4
LT
305
306long vread(char *buf, char *addr, unsigned long count)
307{
9bde916b
CG
308 /* Don't allow overflow */
309 if ((unsigned long) buf + count < count)
310 count = -(unsigned long) buf;
311
1da177e4
LT
312 memcpy(buf, addr, count);
313 return count;
314}
315
316long vwrite(char *buf, char *addr, unsigned long count)
317{
318 /* Don't allow overflow */
319 if ((unsigned long) addr + count < count)
320 count = -(unsigned long) addr;
321
322 memcpy(addr, buf, count);
ac714904 323 return count;
1da177e4
LT
324}
325
326/*
e1c05067 327 * vmalloc - allocate virtually contiguous memory
1da177e4
LT
328 *
329 * @size: allocation size
330 *
331 * Allocate enough pages to cover @size from the page level
e1c05067 332 * allocator and map them into contiguous kernel virtual space.
1da177e4 333 *
c1c8897f 334 * For tight control over page level allocator and protection flags
1da177e4
LT
335 * use __vmalloc() instead.
336 */
337void *vmalloc(unsigned long size)
338{
339 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL);
340}
f6138882
AM
341EXPORT_SYMBOL(vmalloc);
342
e1ca7788 343/*
e1c05067 344 * vzalloc - allocate virtually contiguous memory with zero fill
e1ca7788
DY
345 *
346 * @size: allocation size
347 *
348 * Allocate enough pages to cover @size from the page level
e1c05067 349 * allocator and map them into contiguous kernel virtual space.
e1ca7788
DY
350 * The memory allocated is set to zero.
351 *
352 * For tight control over page level allocator and protection flags
353 * use __vmalloc() instead.
354 */
355void *vzalloc(unsigned long size)
356{
357 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
358 PAGE_KERNEL);
359}
360EXPORT_SYMBOL(vzalloc);
361
362/**
363 * vmalloc_node - allocate memory on a specific node
364 * @size: allocation size
365 * @node: numa node
366 *
367 * Allocate enough pages to cover @size from the page level
368 * allocator and map them into contiguous kernel virtual space.
369 *
370 * For tight control over page level allocator and protection flags
371 * use __vmalloc() instead.
372 */
f6138882
AM
373void *vmalloc_node(unsigned long size, int node)
374{
375 return vmalloc(size);
376}
9a14f653 377EXPORT_SYMBOL(vmalloc_node);
e1ca7788
DY
378
379/**
380 * vzalloc_node - allocate memory on a specific node with zero fill
381 * @size: allocation size
382 * @node: numa node
383 *
384 * Allocate enough pages to cover @size from the page level
385 * allocator and map them into contiguous kernel virtual space.
386 * The memory allocated is set to zero.
387 *
388 * For tight control over page level allocator and protection flags
389 * use __vmalloc() instead.
390 */
391void *vzalloc_node(unsigned long size, int node)
392{
393 return vzalloc(size);
394}
395EXPORT_SYMBOL(vzalloc_node);
1da177e4 396
1af446ed
PM
397#ifndef PAGE_KERNEL_EXEC
398# define PAGE_KERNEL_EXEC PAGE_KERNEL
399#endif
400
401/**
402 * vmalloc_exec - allocate virtually contiguous, executable memory
403 * @size: allocation size
404 *
405 * Kernel-internal function to allocate enough pages to cover @size
406 * the page level allocator and map them into contiguous and
407 * executable kernel virtual space.
408 *
409 * For tight control over page level allocator and protection flags
410 * use __vmalloc() instead.
411 */
412
413void *vmalloc_exec(unsigned long size)
414{
415 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC);
416}
417
b5073173
PM
418/**
419 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
1da177e4
LT
420 * @size: allocation size
421 *
422 * Allocate enough 32bit PA addressable pages to cover @size from the
e1c05067 423 * page level allocator and map them into contiguous kernel virtual space.
1da177e4
LT
424 */
425void *vmalloc_32(unsigned long size)
426{
427 return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL);
428}
b5073173
PM
429EXPORT_SYMBOL(vmalloc_32);
430
431/**
432 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
433 * @size: allocation size
434 *
435 * The resulting memory area is 32bit addressable and zeroed so it can be
436 * mapped to userspace without leaking data.
f905bc44
PM
437 *
438 * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
439 * remap_vmalloc_range() are permissible.
b5073173
PM
440 */
441void *vmalloc_32_user(unsigned long size)
442{
f905bc44
PM
443 /*
444 * We'll have to sort out the ZONE_DMA bits for 64-bit,
445 * but for now this can simply use vmalloc_user() directly.
446 */
447 return vmalloc_user(size);
b5073173
PM
448}
449EXPORT_SYMBOL(vmalloc_32_user);
1da177e4
LT
450
451void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
452{
453 BUG();
454 return NULL;
455}
b5073173 456EXPORT_SYMBOL(vmap);
1da177e4 457
b3bdda02 458void vunmap(const void *addr)
1da177e4
LT
459{
460 BUG();
461}
b5073173 462EXPORT_SYMBOL(vunmap);
1da177e4 463
eb6434d9
PM
464void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
465{
466 BUG();
467 return NULL;
468}
469EXPORT_SYMBOL(vm_map_ram);
470
471void vm_unmap_ram(const void *mem, unsigned int count)
472{
473 BUG();
474}
475EXPORT_SYMBOL(vm_unmap_ram);
476
477void vm_unmap_aliases(void)
478{
479}
480EXPORT_SYMBOL_GPL(vm_unmap_aliases);
481
1eeb66a1
CH
482/*
483 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
484 * have one.
485 */
3b32123d 486void __weak vmalloc_sync_all(void)
1eeb66a1
CH
487{
488}
489
29c185e5
PM
490/**
491 * alloc_vm_area - allocate a range of kernel address space
492 * @size: size of the area
493 *
494 * Returns: NULL on failure, vm_struct on success
495 *
496 * This function reserves a range of kernel address space, and
497 * allocates pagetables to map that range. No actual mappings
498 * are created. If the kernel address space is not shared
499 * between processes, it syncs the pagetable across all
500 * processes.
501 */
cd12909c 502struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
29c185e5
PM
503{
504 BUG();
505 return NULL;
506}
507EXPORT_SYMBOL_GPL(alloc_vm_area);
508
509void free_vm_area(struct vm_struct *area)
510{
511 BUG();
512}
513EXPORT_SYMBOL_GPL(free_vm_area);
514
b5073173
PM
515int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
516 struct page *page)
517{
518 return -EINVAL;
519}
520EXPORT_SYMBOL(vm_insert_page);
521
1da177e4
LT
522/*
523 * sys_brk() for the most part doesn't need the global kernel
524 * lock, except when an application is doing something nasty
525 * like trying to un-brk an area that has already been mapped
526 * to a regular file. in this case, the unmapping will need
527 * to invoke file system routines that need the global lock.
528 */
6a6160a7 529SYSCALL_DEFINE1(brk, unsigned long, brk)
1da177e4
LT
530{
531 struct mm_struct *mm = current->mm;
532
533 if (brk < mm->start_brk || brk > mm->context.end_brk)
534 return mm->brk;
535
536 if (mm->brk == brk)
537 return mm->brk;
538
539 /*
540 * Always allow shrinking brk
541 */
542 if (brk <= mm->brk) {
543 mm->brk = brk;
544 return brk;
545 }
546
547 /*
548 * Ok, looks good - let it rip.
549 */
cfe79c00 550 flush_icache_range(mm->brk, brk);
1da177e4
LT
551 return mm->brk = brk;
552}
553
8feae131
DH
554/*
555 * initialise the VMA and region record slabs
556 */
557void __init mmap_init(void)
1da177e4 558{
00a62ce9
KM
559 int ret;
560
908c7f19 561 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
00a62ce9 562 VM_BUG_ON(ret);
33e5d769 563 vm_region_jar = KMEM_CACHE(vm_region, SLAB_PANIC);
1da177e4 564}
1da177e4 565
3034097a 566/*
8feae131
DH
567 * validate the region tree
568 * - the caller must hold the region lock
3034097a 569 */
8feae131
DH
570#ifdef CONFIG_DEBUG_NOMMU_REGIONS
571static noinline void validate_nommu_regions(void)
3034097a 572{
8feae131
DH
573 struct vm_region *region, *last;
574 struct rb_node *p, *lastp;
3034097a 575
8feae131
DH
576 lastp = rb_first(&nommu_region_tree);
577 if (!lastp)
578 return;
579
580 last = rb_entry(lastp, struct vm_region, vm_rb);
c9427bc0
GT
581 BUG_ON(last->vm_end <= last->vm_start);
582 BUG_ON(last->vm_top < last->vm_end);
8feae131
DH
583
584 while ((p = rb_next(lastp))) {
585 region = rb_entry(p, struct vm_region, vm_rb);
586 last = rb_entry(lastp, struct vm_region, vm_rb);
587
c9427bc0
GT
588 BUG_ON(region->vm_end <= region->vm_start);
589 BUG_ON(region->vm_top < region->vm_end);
590 BUG_ON(region->vm_start < last->vm_top);
3034097a 591
8feae131
DH
592 lastp = p;
593 }
3034097a 594}
8feae131 595#else
33e5d769
DH
596static void validate_nommu_regions(void)
597{
598}
8feae131 599#endif
3034097a
DH
600
601/*
8feae131 602 * add a region into the global tree
3034097a 603 */
8feae131 604static void add_nommu_region(struct vm_region *region)
3034097a 605{
8feae131
DH
606 struct vm_region *pregion;
607 struct rb_node **p, *parent;
3034097a 608
8feae131
DH
609 validate_nommu_regions();
610
8feae131
DH
611 parent = NULL;
612 p = &nommu_region_tree.rb_node;
613 while (*p) {
614 parent = *p;
615 pregion = rb_entry(parent, struct vm_region, vm_rb);
616 if (region->vm_start < pregion->vm_start)
617 p = &(*p)->rb_left;
618 else if (region->vm_start > pregion->vm_start)
619 p = &(*p)->rb_right;
620 else if (pregion == region)
621 return;
622 else
623 BUG();
3034097a
DH
624 }
625
8feae131
DH
626 rb_link_node(&region->vm_rb, parent, p);
627 rb_insert_color(&region->vm_rb, &nommu_region_tree);
3034097a 628
8feae131 629 validate_nommu_regions();
3034097a 630}
3034097a 631
930e652a 632/*
8feae131 633 * delete a region from the global tree
930e652a 634 */
8feae131 635static void delete_nommu_region(struct vm_region *region)
930e652a 636{
8feae131 637 BUG_ON(!nommu_region_tree.rb_node);
930e652a 638
8feae131
DH
639 validate_nommu_regions();
640 rb_erase(&region->vm_rb, &nommu_region_tree);
641 validate_nommu_regions();
57c8f63e
GU
642}
643
6fa5f80b 644/*
8feae131 645 * free a contiguous series of pages
6fa5f80b 646 */
8feae131 647static void free_page_series(unsigned long from, unsigned long to)
6fa5f80b 648{
8feae131
DH
649 for (; from < to; from += PAGE_SIZE) {
650 struct page *page = virt_to_page(from);
651
33e5d769 652 atomic_long_dec(&mmap_pages_allocated);
8feae131 653 put_page(page);
6fa5f80b 654 }
6fa5f80b
DH
655}
656
3034097a 657/*
8feae131 658 * release a reference to a region
33e5d769 659 * - the caller must hold the region semaphore for writing, which this releases
dd8632a1 660 * - the region may not have been added to the tree yet, in which case vm_top
8feae131 661 * will equal vm_start
3034097a 662 */
8feae131
DH
663static void __put_nommu_region(struct vm_region *region)
664 __releases(nommu_region_sem)
1da177e4 665{
8feae131 666 BUG_ON(!nommu_region_tree.rb_node);
1da177e4 667
1e2ae599 668 if (--region->vm_usage == 0) {
dd8632a1 669 if (region->vm_top > region->vm_start)
8feae131
DH
670 delete_nommu_region(region);
671 up_write(&nommu_region_sem);
672
673 if (region->vm_file)
674 fput(region->vm_file);
675
676 /* IO memory and memory shared directly out of the pagecache
677 * from ramfs/tmpfs mustn't be released here */
22cc877b 678 if (region->vm_flags & VM_MAPPED_COPY)
dd8632a1 679 free_page_series(region->vm_start, region->vm_top);
8feae131
DH
680 kmem_cache_free(vm_region_jar, region);
681 } else {
682 up_write(&nommu_region_sem);
1da177e4 683 }
8feae131 684}
1da177e4 685
8feae131
DH
686/*
687 * release a reference to a region
688 */
689static void put_nommu_region(struct vm_region *region)
690{
691 down_write(&nommu_region_sem);
692 __put_nommu_region(region);
1da177e4
LT
693}
694
eb8cdec4
BS
695/*
696 * update protection on a vma
697 */
698static void protect_vma(struct vm_area_struct *vma, unsigned long flags)
699{
700#ifdef CONFIG_MPU
701 struct mm_struct *mm = vma->vm_mm;
702 long start = vma->vm_start & PAGE_MASK;
703 while (start < vma->vm_end) {
704 protect_page(mm, start, flags);
705 start += PAGE_SIZE;
706 }
707 update_protections(mm);
708#endif
709}
710
3034097a 711/*
8feae131
DH
712 * add a VMA into a process's mm_struct in the appropriate place in the list
713 * and tree and add to the address space's page tree also if not an anonymous
714 * page
715 * - should be called with mm->mmap_sem held writelocked
3034097a 716 */
8feae131 717static void add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
1da177e4 718{
6038def0 719 struct vm_area_struct *pvma, *prev;
1da177e4 720 struct address_space *mapping;
6038def0 721 struct rb_node **p, *parent, *rb_prev;
8feae131 722
8feae131
DH
723 BUG_ON(!vma->vm_region);
724
725 mm->map_count++;
726 vma->vm_mm = mm;
1da177e4 727
eb8cdec4
BS
728 protect_vma(vma, vma->vm_flags);
729
1da177e4
LT
730 /* add the VMA to the mapping */
731 if (vma->vm_file) {
732 mapping = vma->vm_file->f_mapping;
733
83cde9e8 734 i_mmap_lock_write(mapping);
1da177e4 735 flush_dcache_mmap_lock(mapping);
6b2dbba8 736 vma_interval_tree_insert(vma, &mapping->i_mmap);
1da177e4 737 flush_dcache_mmap_unlock(mapping);
83cde9e8 738 i_mmap_unlock_write(mapping);
1da177e4
LT
739 }
740
8feae131 741 /* add the VMA to the tree */
6038def0 742 parent = rb_prev = NULL;
8feae131 743 p = &mm->mm_rb.rb_node;
1da177e4
LT
744 while (*p) {
745 parent = *p;
746 pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
747
8feae131
DH
748 /* sort by: start addr, end addr, VMA struct addr in that order
749 * (the latter is necessary as we may get identical VMAs) */
750 if (vma->vm_start < pvma->vm_start)
1da177e4 751 p = &(*p)->rb_left;
6038def0
NK
752 else if (vma->vm_start > pvma->vm_start) {
753 rb_prev = parent;
1da177e4 754 p = &(*p)->rb_right;
6038def0 755 } else if (vma->vm_end < pvma->vm_end)
8feae131 756 p = &(*p)->rb_left;
6038def0
NK
757 else if (vma->vm_end > pvma->vm_end) {
758 rb_prev = parent;
8feae131 759 p = &(*p)->rb_right;
6038def0 760 } else if (vma < pvma)
8feae131 761 p = &(*p)->rb_left;
6038def0
NK
762 else if (vma > pvma) {
763 rb_prev = parent;
8feae131 764 p = &(*p)->rb_right;
6038def0 765 } else
8feae131 766 BUG();
1da177e4
LT
767 }
768
769 rb_link_node(&vma->vm_rb, parent, p);
8feae131
DH
770 rb_insert_color(&vma->vm_rb, &mm->mm_rb);
771
772 /* add VMA to the VMA list also */
6038def0
NK
773 prev = NULL;
774 if (rb_prev)
775 prev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
8feae131 776
6038def0 777 __vma_link_list(mm, vma, prev, parent);
1da177e4
LT
778}
779
3034097a 780/*
8feae131 781 * delete a VMA from its owning mm_struct and address space
3034097a 782 */
8feae131 783static void delete_vma_from_mm(struct vm_area_struct *vma)
1da177e4 784{
615d6e87 785 int i;
1da177e4 786 struct address_space *mapping;
8feae131 787 struct mm_struct *mm = vma->vm_mm;
615d6e87 788 struct task_struct *curr = current;
8feae131 789
eb8cdec4
BS
790 protect_vma(vma, 0);
791
8feae131 792 mm->map_count--;
615d6e87
DB
793 for (i = 0; i < VMACACHE_SIZE; i++) {
794 /* if the vma is cached, invalidate the entire cache */
795 if (curr->vmacache[i] == vma) {
e020d5bd 796 vmacache_invalidate(mm);
615d6e87
DB
797 break;
798 }
799 }
1da177e4
LT
800
801 /* remove the VMA from the mapping */
802 if (vma->vm_file) {
803 mapping = vma->vm_file->f_mapping;
804
83cde9e8 805 i_mmap_lock_write(mapping);
1da177e4 806 flush_dcache_mmap_lock(mapping);
6b2dbba8 807 vma_interval_tree_remove(vma, &mapping->i_mmap);
1da177e4 808 flush_dcache_mmap_unlock(mapping);
83cde9e8 809 i_mmap_unlock_write(mapping);
1da177e4
LT
810 }
811
8feae131
DH
812 /* remove from the MM's tree and list */
813 rb_erase(&vma->vm_rb, &mm->mm_rb);
b951bf2c
NK
814
815 if (vma->vm_prev)
816 vma->vm_prev->vm_next = vma->vm_next;
817 else
818 mm->mmap = vma->vm_next;
819
820 if (vma->vm_next)
821 vma->vm_next->vm_prev = vma->vm_prev;
8feae131
DH
822}
823
824/*
825 * destroy a VMA record
826 */
827static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
828{
8feae131
DH
829 if (vma->vm_ops && vma->vm_ops->close)
830 vma->vm_ops->close(vma);
e9714acf 831 if (vma->vm_file)
8feae131 832 fput(vma->vm_file);
8feae131
DH
833 put_nommu_region(vma->vm_region);
834 kmem_cache_free(vm_area_cachep, vma);
835}
836
837/*
838 * look up the first VMA in which addr resides, NULL if none
839 * - should be called with mm->mmap_sem at least held readlocked
840 */
841struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
842{
843 struct vm_area_struct *vma;
8feae131
DH
844
845 /* check the cache first */
615d6e87
DB
846 vma = vmacache_find(mm, addr);
847 if (likely(vma))
8feae131
DH
848 return vma;
849
e922c4c5 850 /* trawl the list (there may be multiple mappings in which addr
8feae131 851 * resides) */
e922c4c5 852 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8feae131
DH
853 if (vma->vm_start > addr)
854 return NULL;
855 if (vma->vm_end > addr) {
615d6e87 856 vmacache_update(addr, vma);
8feae131
DH
857 return vma;
858 }
859 }
860
861 return NULL;
862}
863EXPORT_SYMBOL(find_vma);
864
865/*
866 * find a VMA
867 * - we don't extend stack VMAs under NOMMU conditions
868 */
869struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
870{
7561e8ca 871 return find_vma(mm, addr);
8feae131
DH
872}
873
874/*
875 * expand a stack to a given address
876 * - not supported under NOMMU conditions
877 */
878int expand_stack(struct vm_area_struct *vma, unsigned long address)
879{
880 return -ENOMEM;
881}
882
883/*
884 * look up the first VMA exactly that exactly matches addr
885 * - should be called with mm->mmap_sem at least held readlocked
886 */
887static struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
888 unsigned long addr,
889 unsigned long len)
890{
891 struct vm_area_struct *vma;
8feae131
DH
892 unsigned long end = addr + len;
893
894 /* check the cache first */
615d6e87
DB
895 vma = vmacache_find_exact(mm, addr, end);
896 if (vma)
8feae131
DH
897 return vma;
898
e922c4c5 899 /* trawl the list (there may be multiple mappings in which addr
8feae131 900 * resides) */
e922c4c5 901 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8feae131
DH
902 if (vma->vm_start < addr)
903 continue;
904 if (vma->vm_start > addr)
905 return NULL;
906 if (vma->vm_end == end) {
615d6e87 907 vmacache_update(addr, vma);
8feae131
DH
908 return vma;
909 }
910 }
911
912 return NULL;
1da177e4
LT
913}
914
915/*
916 * determine whether a mapping should be permitted and, if so, what sort of
917 * mapping we're capable of supporting
918 */
919static int validate_mmap_request(struct file *file,
920 unsigned long addr,
921 unsigned long len,
922 unsigned long prot,
923 unsigned long flags,
924 unsigned long pgoff,
925 unsigned long *_capabilities)
926{
8feae131 927 unsigned long capabilities, rlen;
1da177e4
LT
928 int ret;
929
930 /* do the simple checks first */
22cc877b 931 if (flags & MAP_FIXED)
1da177e4 932 return -EINVAL;
1da177e4
LT
933
934 if ((flags & MAP_TYPE) != MAP_PRIVATE &&
935 (flags & MAP_TYPE) != MAP_SHARED)
936 return -EINVAL;
937
f81cff0d 938 if (!len)
1da177e4
LT
939 return -EINVAL;
940
f81cff0d 941 /* Careful about overflows.. */
8feae131
DH
942 rlen = PAGE_ALIGN(len);
943 if (!rlen || rlen > TASK_SIZE)
f81cff0d
MF
944 return -ENOMEM;
945
1da177e4 946 /* offset overflow? */
8feae131 947 if ((pgoff + (rlen >> PAGE_SHIFT)) < pgoff)
f81cff0d 948 return -EOVERFLOW;
1da177e4
LT
949
950 if (file) {
1da177e4 951 /* files must support mmap */
72c2d531 952 if (!file->f_op->mmap)
1da177e4
LT
953 return -ENODEV;
954
955 /* work out if what we've got could possibly be shared
956 * - we support chardevs that provide their own "memory"
957 * - we support files/blockdevs that are memory backed
958 */
b4caecd4
CH
959 if (file->f_op->mmap_capabilities) {
960 capabilities = file->f_op->mmap_capabilities(file);
961 } else {
1da177e4
LT
962 /* no explicit capabilities set, so assume some
963 * defaults */
496ad9aa 964 switch (file_inode(file)->i_mode & S_IFMT) {
1da177e4
LT
965 case S_IFREG:
966 case S_IFBLK:
b4caecd4 967 capabilities = NOMMU_MAP_COPY;
1da177e4
LT
968 break;
969
970 case S_IFCHR:
971 capabilities =
b4caecd4
CH
972 NOMMU_MAP_DIRECT |
973 NOMMU_MAP_READ |
974 NOMMU_MAP_WRITE;
1da177e4
LT
975 break;
976
977 default:
978 return -EINVAL;
979 }
980 }
981
982 /* eliminate any capabilities that we can't support on this
983 * device */
984 if (!file->f_op->get_unmapped_area)
b4caecd4 985 capabilities &= ~NOMMU_MAP_DIRECT;
6e242a1c 986 if (!(file->f_mode & FMODE_CAN_READ))
b4caecd4 987 capabilities &= ~NOMMU_MAP_COPY;
1da177e4 988
28d7a6ae
GY
989 /* The file shall have been opened with read permission. */
990 if (!(file->f_mode & FMODE_READ))
991 return -EACCES;
992
1da177e4
LT
993 if (flags & MAP_SHARED) {
994 /* do checks for writing, appending and locking */
995 if ((prot & PROT_WRITE) &&
996 !(file->f_mode & FMODE_WRITE))
997 return -EACCES;
998
496ad9aa 999 if (IS_APPEND(file_inode(file)) &&
1da177e4
LT
1000 (file->f_mode & FMODE_WRITE))
1001 return -EACCES;
1002
d7a06983 1003 if (locks_verify_locked(file))
1da177e4
LT
1004 return -EAGAIN;
1005
b4caecd4 1006 if (!(capabilities & NOMMU_MAP_DIRECT))
1da177e4
LT
1007 return -ENODEV;
1008
1da177e4 1009 /* we mustn't privatise shared mappings */
b4caecd4 1010 capabilities &= ~NOMMU_MAP_COPY;
ac714904 1011 } else {
1da177e4
LT
1012 /* we're going to read the file into private memory we
1013 * allocate */
b4caecd4 1014 if (!(capabilities & NOMMU_MAP_COPY))
1da177e4
LT
1015 return -ENODEV;
1016
1017 /* we don't permit a private writable mapping to be
1018 * shared with the backing device */
1019 if (prot & PROT_WRITE)
b4caecd4 1020 capabilities &= ~NOMMU_MAP_DIRECT;
1da177e4
LT
1021 }
1022
b4caecd4
CH
1023 if (capabilities & NOMMU_MAP_DIRECT) {
1024 if (((prot & PROT_READ) && !(capabilities & NOMMU_MAP_READ)) ||
1025 ((prot & PROT_WRITE) && !(capabilities & NOMMU_MAP_WRITE)) ||
1026 ((prot & PROT_EXEC) && !(capabilities & NOMMU_MAP_EXEC))
3c7b2045 1027 ) {
b4caecd4 1028 capabilities &= ~NOMMU_MAP_DIRECT;
3c7b2045 1029 if (flags & MAP_SHARED) {
22cc877b 1030 pr_warn("MAP_SHARED not completely supported on !MMU\n");
3c7b2045
BS
1031 return -EINVAL;
1032 }
1033 }
1034 }
1035
1da177e4
LT
1036 /* handle executable mappings and implied executable
1037 * mappings */
90f8572b 1038 if (path_noexec(&file->f_path)) {
1da177e4
LT
1039 if (prot & PROT_EXEC)
1040 return -EPERM;
ac714904 1041 } else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
1da177e4
LT
1042 /* handle implication of PROT_EXEC by PROT_READ */
1043 if (current->personality & READ_IMPLIES_EXEC) {
b4caecd4 1044 if (capabilities & NOMMU_MAP_EXEC)
1da177e4
LT
1045 prot |= PROT_EXEC;
1046 }
ac714904 1047 } else if ((prot & PROT_READ) &&
1da177e4 1048 (prot & PROT_EXEC) &&
b4caecd4 1049 !(capabilities & NOMMU_MAP_EXEC)
1da177e4
LT
1050 ) {
1051 /* backing file is not executable, try to copy */
b4caecd4 1052 capabilities &= ~NOMMU_MAP_DIRECT;
1da177e4 1053 }
ac714904 1054 } else {
1da177e4
LT
1055 /* anonymous mappings are always memory backed and can be
1056 * privately mapped
1057 */
b4caecd4 1058 capabilities = NOMMU_MAP_COPY;
1da177e4
LT
1059
1060 /* handle PROT_EXEC implication by PROT_READ */
1061 if ((prot & PROT_READ) &&
1062 (current->personality & READ_IMPLIES_EXEC))
1063 prot |= PROT_EXEC;
1064 }
1065
1066 /* allow the security API to have its say */
e5467859 1067 ret = security_mmap_addr(addr);
1da177e4
LT
1068 if (ret < 0)
1069 return ret;
1070
1071 /* looks okay */
1072 *_capabilities = capabilities;
1073 return 0;
1074}
1075
1076/*
1077 * we've determined that we can make the mapping, now translate what we
1078 * now know into VMA flags
1079 */
1080static unsigned long determine_vm_flags(struct file *file,
1081 unsigned long prot,
1082 unsigned long flags,
1083 unsigned long capabilities)
1084{
1085 unsigned long vm_flags;
1086
1087 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
1da177e4
LT
1088 /* vm_flags |= mm->def_flags; */
1089
b4caecd4 1090 if (!(capabilities & NOMMU_MAP_DIRECT)) {
1da177e4 1091 /* attempt to share read-only copies of mapped file chunks */
3c7b2045 1092 vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1da177e4
LT
1093 if (file && !(prot & PROT_WRITE))
1094 vm_flags |= VM_MAYSHARE;
3c7b2045 1095 } else {
1da177e4
LT
1096 /* overlay a shareable mapping on the backing device or inode
1097 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
1098 * romfs/cramfs */
b4caecd4 1099 vm_flags |= VM_MAYSHARE | (capabilities & NOMMU_VMFLAGS);
1da177e4 1100 if (flags & MAP_SHARED)
3c7b2045 1101 vm_flags |= VM_SHARED;
1da177e4
LT
1102 }
1103
1104 /* refuse to let anyone share private mappings with this process if
1105 * it's being traced - otherwise breakpoints set in it may interfere
1106 * with another untraced process
1107 */
a288eecc 1108 if ((flags & MAP_PRIVATE) && current->ptrace)
1da177e4
LT
1109 vm_flags &= ~VM_MAYSHARE;
1110
1111 return vm_flags;
1112}
1113
1114/*
8feae131
DH
1115 * set up a shared mapping on a file (the driver or filesystem provides and
1116 * pins the storage)
1da177e4 1117 */
8feae131 1118static int do_mmap_shared_file(struct vm_area_struct *vma)
1da177e4
LT
1119{
1120 int ret;
1121
1122 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
dd8632a1
PM
1123 if (ret == 0) {
1124 vma->vm_region->vm_top = vma->vm_region->vm_end;
645d83c5 1125 return 0;
dd8632a1 1126 }
1da177e4
LT
1127 if (ret != -ENOSYS)
1128 return ret;
1129
3fa30460
DH
1130 /* getting -ENOSYS indicates that direct mmap isn't possible (as
1131 * opposed to tried but failed) so we can only give a suitable error as
1132 * it's not possible to make a private copy if MAP_SHARED was given */
1da177e4
LT
1133 return -ENODEV;
1134}
1135
1136/*
1137 * set up a private mapping or an anonymous shared mapping
1138 */
8feae131
DH
1139static int do_mmap_private(struct vm_area_struct *vma,
1140 struct vm_region *region,
645d83c5
DH
1141 unsigned long len,
1142 unsigned long capabilities)
1da177e4 1143{
dbc8358c 1144 unsigned long total, point;
1da177e4 1145 void *base;
8feae131 1146 int ret, order;
1da177e4
LT
1147
1148 /* invoke the file's mapping function so that it can keep track of
1149 * shared mappings on devices or memory
1150 * - VM_MAYSHARE will be set if it may attempt to share
1151 */
b4caecd4 1152 if (capabilities & NOMMU_MAP_DIRECT) {
1da177e4 1153 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
dd8632a1 1154 if (ret == 0) {
1da177e4 1155 /* shouldn't return success if we're not sharing */
dd8632a1
PM
1156 BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1157 vma->vm_region->vm_top = vma->vm_region->vm_end;
645d83c5 1158 return 0;
1da177e4 1159 }
dd8632a1
PM
1160 if (ret != -ENOSYS)
1161 return ret;
1da177e4
LT
1162
1163 /* getting an ENOSYS error indicates that direct mmap isn't
1164 * possible (as opposed to tried but failed) so we'll try to
1165 * make a private copy of the data and map that instead */
1166 }
1167
8feae131 1168
1da177e4
LT
1169 /* allocate some memory to hold the mapping
1170 * - note that this may not return a page-aligned address if the object
1171 * we're allocating is smaller than a page
1172 */
f67d9b15 1173 order = get_order(len);
8feae131 1174 total = 1 << order;
f67d9b15 1175 point = len >> PAGE_SHIFT;
dd8632a1 1176
dbc8358c 1177 /* we don't want to allocate a power-of-2 sized page set */
22cc877b 1178 if (sysctl_nr_trim_pages && total - point >= sysctl_nr_trim_pages)
dbc8358c 1179 total = point;
8feae131 1180
da616534 1181 base = alloc_pages_exact(total << PAGE_SHIFT, GFP_KERNEL);
dbc8358c
JK
1182 if (!base)
1183 goto enomem;
1184
1185 atomic_long_add(total, &mmap_pages_allocated);
1da177e4 1186
8feae131
DH
1187 region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
1188 region->vm_start = (unsigned long) base;
f67d9b15 1189 region->vm_end = region->vm_start + len;
dd8632a1 1190 region->vm_top = region->vm_start + (total << PAGE_SHIFT);
8feae131
DH
1191
1192 vma->vm_start = region->vm_start;
1193 vma->vm_end = region->vm_start + len;
1da177e4
LT
1194
1195 if (vma->vm_file) {
1196 /* read the contents of a file into the copy */
1197 mm_segment_t old_fs;
1198 loff_t fpos;
1199
1200 fpos = vma->vm_pgoff;
1201 fpos <<= PAGE_SHIFT;
1202
1203 old_fs = get_fs();
1204 set_fs(KERNEL_DS);
6e242a1c 1205 ret = __vfs_read(vma->vm_file, base, len, &fpos);
1da177e4
LT
1206 set_fs(old_fs);
1207
1208 if (ret < 0)
1209 goto error_free;
1210
1211 /* clear the last little bit */
f67d9b15
BL
1212 if (ret < len)
1213 memset(base + ret, 0, len - ret);
1da177e4 1214
1da177e4
LT
1215 }
1216
1217 return 0;
1218
1219error_free:
7223bb4a 1220 free_page_series(region->vm_start, region->vm_top);
8feae131
DH
1221 region->vm_start = vma->vm_start = 0;
1222 region->vm_end = vma->vm_end = 0;
dd8632a1 1223 region->vm_top = 0;
1da177e4
LT
1224 return ret;
1225
1226enomem:
b1de0d13 1227 pr_err("Allocation of length %lu from process %d (%s) failed\n",
05ae6fa3 1228 len, current->pid, current->comm);
7bf02ea2 1229 show_free_areas(0);
1da177e4
LT
1230 return -ENOMEM;
1231}
1232
1233/*
1234 * handle mapping creation for uClinux
1235 */
1fcfd8db
ON
1236unsigned long do_mmap(struct file *file,
1237 unsigned long addr,
1238 unsigned long len,
1239 unsigned long prot,
1240 unsigned long flags,
1241 vm_flags_t vm_flags,
1242 unsigned long pgoff,
1243 unsigned long *populate)
1da177e4 1244{
8feae131
DH
1245 struct vm_area_struct *vma;
1246 struct vm_region *region;
1da177e4 1247 struct rb_node *rb;
1fcfd8db 1248 unsigned long capabilities, result;
1da177e4
LT
1249 int ret;
1250
41badc15 1251 *populate = 0;
bebeb3d6 1252
1da177e4
LT
1253 /* decide whether we should attempt the mapping, and if so what sort of
1254 * mapping */
1255 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
1256 &capabilities);
22cc877b 1257 if (ret < 0)
1da177e4
LT
1258 return ret;
1259
06aab5a3
DH
1260 /* we ignore the address hint */
1261 addr = 0;
f67d9b15 1262 len = PAGE_ALIGN(len);
06aab5a3 1263
1da177e4
LT
1264 /* we've determined that we can make the mapping, now translate what we
1265 * now know into VMA flags */
1fcfd8db 1266 vm_flags |= determine_vm_flags(file, prot, flags, capabilities);
1da177e4 1267
8feae131
DH
1268 /* we're going to need to record the mapping */
1269 region = kmem_cache_zalloc(vm_region_jar, GFP_KERNEL);
1270 if (!region)
1271 goto error_getting_region;
1272
1273 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
1274 if (!vma)
1275 goto error_getting_vma;
1da177e4 1276
1e2ae599 1277 region->vm_usage = 1;
8feae131
DH
1278 region->vm_flags = vm_flags;
1279 region->vm_pgoff = pgoff;
1280
5beb4930 1281 INIT_LIST_HEAD(&vma->anon_vma_chain);
8feae131
DH
1282 vma->vm_flags = vm_flags;
1283 vma->vm_pgoff = pgoff;
1da177e4 1284
8feae131 1285 if (file) {
cb0942b8
AV
1286 region->vm_file = get_file(file);
1287 vma->vm_file = get_file(file);
8feae131
DH
1288 }
1289
1290 down_write(&nommu_region_sem);
1291
1292 /* if we want to share, we need to check for regions created by other
1da177e4 1293 * mmap() calls that overlap with our proposed mapping
8feae131 1294 * - we can only share with a superset match on most regular files
1da177e4
LT
1295 * - shared mappings on character devices and memory backed files are
1296 * permitted to overlap inexactly as far as we are concerned for in
1297 * these cases, sharing is handled in the driver or filesystem rather
1298 * than here
1299 */
1300 if (vm_flags & VM_MAYSHARE) {
8feae131
DH
1301 struct vm_region *pregion;
1302 unsigned long pglen, rpglen, pgend, rpgend, start;
1da177e4 1303
8feae131
DH
1304 pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1305 pgend = pgoff + pglen;
165b2392 1306
8feae131
DH
1307 for (rb = rb_first(&nommu_region_tree); rb; rb = rb_next(rb)) {
1308 pregion = rb_entry(rb, struct vm_region, vm_rb);
1da177e4 1309
8feae131 1310 if (!(pregion->vm_flags & VM_MAYSHARE))
1da177e4
LT
1311 continue;
1312
1313 /* search for overlapping mappings on the same file */
496ad9aa
AV
1314 if (file_inode(pregion->vm_file) !=
1315 file_inode(file))
1da177e4
LT
1316 continue;
1317
8feae131 1318 if (pregion->vm_pgoff >= pgend)
1da177e4
LT
1319 continue;
1320
8feae131
DH
1321 rpglen = pregion->vm_end - pregion->vm_start;
1322 rpglen = (rpglen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1323 rpgend = pregion->vm_pgoff + rpglen;
1324 if (pgoff >= rpgend)
1da177e4
LT
1325 continue;
1326
8feae131
DH
1327 /* handle inexactly overlapping matches between
1328 * mappings */
1329 if ((pregion->vm_pgoff != pgoff || rpglen != pglen) &&
1330 !(pgoff >= pregion->vm_pgoff && pgend <= rpgend)) {
1331 /* new mapping is not a subset of the region */
b4caecd4 1332 if (!(capabilities & NOMMU_MAP_DIRECT))
1da177e4
LT
1333 goto sharing_violation;
1334 continue;
1335 }
1336
8feae131 1337 /* we've found a region we can share */
1e2ae599 1338 pregion->vm_usage++;
8feae131
DH
1339 vma->vm_region = pregion;
1340 start = pregion->vm_start;
1341 start += (pgoff - pregion->vm_pgoff) << PAGE_SHIFT;
1342 vma->vm_start = start;
1343 vma->vm_end = start + len;
1344
22cc877b 1345 if (pregion->vm_flags & VM_MAPPED_COPY)
8feae131 1346 vma->vm_flags |= VM_MAPPED_COPY;
22cc877b 1347 else {
8feae131
DH
1348 ret = do_mmap_shared_file(vma);
1349 if (ret < 0) {
1350 vma->vm_region = NULL;
1351 vma->vm_start = 0;
1352 vma->vm_end = 0;
1e2ae599 1353 pregion->vm_usage--;
8feae131
DH
1354 pregion = NULL;
1355 goto error_just_free;
1356 }
1357 }
1358 fput(region->vm_file);
1359 kmem_cache_free(vm_region_jar, region);
1360 region = pregion;
1361 result = start;
1362 goto share;
1da177e4
LT
1363 }
1364
1da177e4
LT
1365 /* obtain the address at which to make a shared mapping
1366 * - this is the hook for quasi-memory character devices to
1367 * tell us the location of a shared mapping
1368 */
b4caecd4 1369 if (capabilities & NOMMU_MAP_DIRECT) {
1da177e4
LT
1370 addr = file->f_op->get_unmapped_area(file, addr, len,
1371 pgoff, flags);
bb005a59 1372 if (IS_ERR_VALUE(addr)) {
1da177e4 1373 ret = addr;
bb005a59 1374 if (ret != -ENOSYS)
8feae131 1375 goto error_just_free;
1da177e4
LT
1376
1377 /* the driver refused to tell us where to site
1378 * the mapping so we'll have to attempt to copy
1379 * it */
bb005a59 1380 ret = -ENODEV;
b4caecd4 1381 if (!(capabilities & NOMMU_MAP_COPY))
8feae131 1382 goto error_just_free;
1da177e4 1383
b4caecd4 1384 capabilities &= ~NOMMU_MAP_DIRECT;
8feae131
DH
1385 } else {
1386 vma->vm_start = region->vm_start = addr;
1387 vma->vm_end = region->vm_end = addr + len;
1da177e4
LT
1388 }
1389 }
1390 }
1391
8feae131 1392 vma->vm_region = region;
1da177e4 1393
645d83c5 1394 /* set up the mapping
b4caecd4 1395 * - the region is filled in if NOMMU_MAP_DIRECT is still set
645d83c5 1396 */
1da177e4 1397 if (file && vma->vm_flags & VM_SHARED)
8feae131 1398 ret = do_mmap_shared_file(vma);
1da177e4 1399 else
645d83c5 1400 ret = do_mmap_private(vma, region, len, capabilities);
1da177e4 1401 if (ret < 0)
645d83c5
DH
1402 goto error_just_free;
1403 add_nommu_region(region);
8feae131 1404
ea637639
JZ
1405 /* clear anonymous mappings that don't ask for uninitialized data */
1406 if (!vma->vm_file && !(flags & MAP_UNINITIALIZED))
1407 memset((void *)region->vm_start, 0,
1408 region->vm_end - region->vm_start);
1409
1da177e4 1410 /* okay... we have a mapping; now we have to register it */
8feae131 1411 result = vma->vm_start;
1da177e4 1412
1da177e4
LT
1413 current->mm->total_vm += len >> PAGE_SHIFT;
1414
8feae131
DH
1415share:
1416 add_vma_to_mm(current->mm, vma);
1da177e4 1417
cfe79c00
MF
1418 /* we flush the region from the icache only when the first executable
1419 * mapping of it is made */
1420 if (vma->vm_flags & VM_EXEC && !region->vm_icache_flushed) {
1421 flush_icache_range(region->vm_start, region->vm_end);
1422 region->vm_icache_flushed = true;
1423 }
1da177e4 1424
cfe79c00 1425 up_write(&nommu_region_sem);
1da177e4 1426
8feae131 1427 return result;
1da177e4 1428
8feae131
DH
1429error_just_free:
1430 up_write(&nommu_region_sem);
1431error:
89a86402
DH
1432 if (region->vm_file)
1433 fput(region->vm_file);
8feae131 1434 kmem_cache_free(vm_region_jar, region);
89a86402
DH
1435 if (vma->vm_file)
1436 fput(vma->vm_file);
8feae131 1437 kmem_cache_free(vm_area_cachep, vma);
8feae131
DH
1438 return ret;
1439
1440sharing_violation:
1441 up_write(&nommu_region_sem);
22cc877b 1442 pr_warn("Attempt to share mismatched mappings\n");
8feae131
DH
1443 ret = -EINVAL;
1444 goto error;
1da177e4 1445
8feae131
DH
1446error_getting_vma:
1447 kmem_cache_free(vm_region_jar, region);
22cc877b
LR
1448 pr_warn("Allocation of vma for %lu byte allocation from process %d failed\n",
1449 len, current->pid);
7bf02ea2 1450 show_free_areas(0);
1da177e4
LT
1451 return -ENOMEM;
1452
8feae131 1453error_getting_region:
22cc877b
LR
1454 pr_warn("Allocation of vm region for %lu byte allocation from process %d failed\n",
1455 len, current->pid);
7bf02ea2 1456 show_free_areas(0);
1da177e4
LT
1457 return -ENOMEM;
1458}
6be5ceb0 1459
66f0dc48
HD
1460SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1461 unsigned long, prot, unsigned long, flags,
1462 unsigned long, fd, unsigned long, pgoff)
1463{
1464 struct file *file = NULL;
1465 unsigned long retval = -EBADF;
1466
120a795d 1467 audit_mmap_fd(fd, flags);
66f0dc48
HD
1468 if (!(flags & MAP_ANONYMOUS)) {
1469 file = fget(fd);
1470 if (!file)
1471 goto out;
1472 }
1473
1474 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1475
ad1ed293 1476 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
66f0dc48
HD
1477
1478 if (file)
1479 fput(file);
1480out:
1481 return retval;
1482}
1483
a4679373
CH
1484#ifdef __ARCH_WANT_SYS_OLD_MMAP
1485struct mmap_arg_struct {
1486 unsigned long addr;
1487 unsigned long len;
1488 unsigned long prot;
1489 unsigned long flags;
1490 unsigned long fd;
1491 unsigned long offset;
1492};
1493
1494SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1495{
1496 struct mmap_arg_struct a;
1497
1498 if (copy_from_user(&a, arg, sizeof(a)))
1499 return -EFAULT;
1824cb75 1500 if (offset_in_page(a.offset))
a4679373
CH
1501 return -EINVAL;
1502
1503 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1504 a.offset >> PAGE_SHIFT);
1505}
1506#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1507
1da177e4 1508/*
8feae131
DH
1509 * split a vma into two pieces at address 'addr', a new vma is allocated either
1510 * for the first part or the tail.
1da177e4 1511 */
8feae131
DH
1512int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
1513 unsigned long addr, int new_below)
1da177e4 1514{
8feae131
DH
1515 struct vm_area_struct *new;
1516 struct vm_region *region;
1517 unsigned long npages;
1da177e4 1518
779c1023
DH
1519 /* we're only permitted to split anonymous regions (these should have
1520 * only a single usage on the region) */
1521 if (vma->vm_file)
8feae131 1522 return -ENOMEM;
1da177e4 1523
8feae131
DH
1524 if (mm->map_count >= sysctl_max_map_count)
1525 return -ENOMEM;
1da177e4 1526
8feae131
DH
1527 region = kmem_cache_alloc(vm_region_jar, GFP_KERNEL);
1528 if (!region)
1529 return -ENOMEM;
1da177e4 1530
8feae131
DH
1531 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1532 if (!new) {
1533 kmem_cache_free(vm_region_jar, region);
1534 return -ENOMEM;
1535 }
1536
1537 /* most fields are the same, copy all, and then fixup */
1538 *new = *vma;
1539 *region = *vma->vm_region;
1540 new->vm_region = region;
1541
1542 npages = (addr - vma->vm_start) >> PAGE_SHIFT;
1543
1544 if (new_below) {
dd8632a1 1545 region->vm_top = region->vm_end = new->vm_end = addr;
8feae131
DH
1546 } else {
1547 region->vm_start = new->vm_start = addr;
1548 region->vm_pgoff = new->vm_pgoff += npages;
1da177e4 1549 }
8feae131
DH
1550
1551 if (new->vm_ops && new->vm_ops->open)
1552 new->vm_ops->open(new);
1553
1554 delete_vma_from_mm(vma);
1555 down_write(&nommu_region_sem);
1556 delete_nommu_region(vma->vm_region);
1557 if (new_below) {
1558 vma->vm_region->vm_start = vma->vm_start = addr;
1559 vma->vm_region->vm_pgoff = vma->vm_pgoff += npages;
1560 } else {
1561 vma->vm_region->vm_end = vma->vm_end = addr;
dd8632a1 1562 vma->vm_region->vm_top = addr;
8feae131
DH
1563 }
1564 add_nommu_region(vma->vm_region);
1565 add_nommu_region(new->vm_region);
1566 up_write(&nommu_region_sem);
1567 add_vma_to_mm(mm, vma);
1568 add_vma_to_mm(mm, new);
1569 return 0;
1da177e4
LT
1570}
1571
3034097a 1572/*
8feae131
DH
1573 * shrink a VMA by removing the specified chunk from either the beginning or
1574 * the end
3034097a 1575 */
8feae131
DH
1576static int shrink_vma(struct mm_struct *mm,
1577 struct vm_area_struct *vma,
1578 unsigned long from, unsigned long to)
1da177e4 1579{
8feae131 1580 struct vm_region *region;
1da177e4 1581
8feae131
DH
1582 /* adjust the VMA's pointers, which may reposition it in the MM's tree
1583 * and list */
1584 delete_vma_from_mm(vma);
1585 if (from > vma->vm_start)
1586 vma->vm_end = from;
1587 else
1588 vma->vm_start = to;
1589 add_vma_to_mm(mm, vma);
1da177e4 1590
8feae131
DH
1591 /* cut the backing region down to size */
1592 region = vma->vm_region;
1e2ae599 1593 BUG_ON(region->vm_usage != 1);
8feae131
DH
1594
1595 down_write(&nommu_region_sem);
1596 delete_nommu_region(region);
dd8632a1
PM
1597 if (from > region->vm_start) {
1598 to = region->vm_top;
1599 region->vm_top = region->vm_end = from;
1600 } else {
8feae131 1601 region->vm_start = to;
dd8632a1 1602 }
8feae131
DH
1603 add_nommu_region(region);
1604 up_write(&nommu_region_sem);
1605
1606 free_page_series(from, to);
1607 return 0;
1608}
1da177e4 1609
8feae131
DH
1610/*
1611 * release a mapping
1612 * - under NOMMU conditions the chunk to be unmapped must be backed by a single
1613 * VMA, though it need not cover the whole VMA
1614 */
1615int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
1616{
1617 struct vm_area_struct *vma;
f67d9b15 1618 unsigned long end;
8feae131 1619 int ret;
1da177e4 1620
f67d9b15 1621 len = PAGE_ALIGN(len);
8feae131
DH
1622 if (len == 0)
1623 return -EINVAL;
365e9c87 1624
f67d9b15
BL
1625 end = start + len;
1626
8feae131
DH
1627 /* find the first potentially overlapping VMA */
1628 vma = find_vma(mm, start);
1629 if (!vma) {
ac714904 1630 static int limit;
33e5d769 1631 if (limit < 5) {
22cc877b
LR
1632 pr_warn("munmap of memory not mmapped by process %d (%s): 0x%lx-0x%lx\n",
1633 current->pid, current->comm,
1634 start, start + len - 1);
33e5d769
DH
1635 limit++;
1636 }
8feae131
DH
1637 return -EINVAL;
1638 }
1da177e4 1639
8feae131
DH
1640 /* we're allowed to split an anonymous VMA but not a file-backed one */
1641 if (vma->vm_file) {
1642 do {
22cc877b 1643 if (start > vma->vm_start)
8feae131 1644 return -EINVAL;
8feae131
DH
1645 if (end == vma->vm_end)
1646 goto erase_whole_vma;
d75a310c
NK
1647 vma = vma->vm_next;
1648 } while (vma);
8feae131
DH
1649 return -EINVAL;
1650 } else {
1651 /* the chunk must be a subset of the VMA found */
1652 if (start == vma->vm_start && end == vma->vm_end)
1653 goto erase_whole_vma;
22cc877b 1654 if (start < vma->vm_start || end > vma->vm_end)
8feae131 1655 return -EINVAL;
1824cb75 1656 if (offset_in_page(start))
8feae131 1657 return -EINVAL;
1824cb75 1658 if (end != vma->vm_end && offset_in_page(end))
8feae131 1659 return -EINVAL;
8feae131
DH
1660 if (start != vma->vm_start && end != vma->vm_end) {
1661 ret = split_vma(mm, vma, start, 1);
22cc877b 1662 if (ret < 0)
8feae131 1663 return ret;
8feae131
DH
1664 }
1665 return shrink_vma(mm, vma, start, end);
1666 }
1da177e4 1667
8feae131
DH
1668erase_whole_vma:
1669 delete_vma_from_mm(vma);
1670 delete_vma(mm, vma);
1da177e4
LT
1671 return 0;
1672}
b5073173 1673EXPORT_SYMBOL(do_munmap);
1da177e4 1674
bfce281c 1675int vm_munmap(unsigned long addr, size_t len)
3034097a 1676{
bfce281c 1677 struct mm_struct *mm = current->mm;
3034097a 1678 int ret;
3034097a
DH
1679
1680 down_write(&mm->mmap_sem);
1681 ret = do_munmap(mm, addr, len);
1682 up_write(&mm->mmap_sem);
1683 return ret;
1684}
a46ef99d
LT
1685EXPORT_SYMBOL(vm_munmap);
1686
1687SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
1688{
bfce281c 1689 return vm_munmap(addr, len);
a46ef99d 1690}
3034097a
DH
1691
1692/*
8feae131 1693 * release all the mappings made in a process's VM space
3034097a 1694 */
8feae131 1695void exit_mmap(struct mm_struct *mm)
1da177e4 1696{
8feae131 1697 struct vm_area_struct *vma;
1da177e4 1698
8feae131
DH
1699 if (!mm)
1700 return;
1da177e4 1701
8feae131 1702 mm->total_vm = 0;
1da177e4 1703
8feae131
DH
1704 while ((vma = mm->mmap)) {
1705 mm->mmap = vma->vm_next;
1706 delete_vma_from_mm(vma);
1707 delete_vma(mm, vma);
04c34961 1708 cond_resched();
1da177e4
LT
1709 }
1710}
1711
e4eb1ff6 1712unsigned long vm_brk(unsigned long addr, unsigned long len)
1da177e4
LT
1713{
1714 return -ENOMEM;
1715}
1716
1717/*
6fa5f80b
DH
1718 * expand (or shrink) an existing mapping, potentially moving it at the same
1719 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
1da177e4 1720 *
6fa5f80b 1721 * under NOMMU conditions, we only permit changing a mapping's size, and only
8feae131
DH
1722 * as long as it stays within the region allocated by do_mmap_private() and the
1723 * block is not shareable
1da177e4 1724 *
6fa5f80b 1725 * MREMAP_FIXED is not supported under NOMMU conditions
1da177e4 1726 */
4b377bab 1727static unsigned long do_mremap(unsigned long addr,
1da177e4
LT
1728 unsigned long old_len, unsigned long new_len,
1729 unsigned long flags, unsigned long new_addr)
1730{
6fa5f80b 1731 struct vm_area_struct *vma;
1da177e4
LT
1732
1733 /* insanity checks first */
f67d9b15
BL
1734 old_len = PAGE_ALIGN(old_len);
1735 new_len = PAGE_ALIGN(new_len);
8feae131 1736 if (old_len == 0 || new_len == 0)
1da177e4
LT
1737 return (unsigned long) -EINVAL;
1738
1824cb75 1739 if (offset_in_page(addr))
8feae131
DH
1740 return -EINVAL;
1741
1da177e4
LT
1742 if (flags & MREMAP_FIXED && new_addr != addr)
1743 return (unsigned long) -EINVAL;
1744
8feae131 1745 vma = find_vma_exact(current->mm, addr, old_len);
6fa5f80b
DH
1746 if (!vma)
1747 return (unsigned long) -EINVAL;
1da177e4 1748
6fa5f80b 1749 if (vma->vm_end != vma->vm_start + old_len)
1da177e4
LT
1750 return (unsigned long) -EFAULT;
1751
6fa5f80b 1752 if (vma->vm_flags & VM_MAYSHARE)
1da177e4
LT
1753 return (unsigned long) -EPERM;
1754
8feae131 1755 if (new_len > vma->vm_region->vm_end - vma->vm_region->vm_start)
1da177e4
LT
1756 return (unsigned long) -ENOMEM;
1757
1758 /* all checks complete - do it */
6fa5f80b 1759 vma->vm_end = vma->vm_start + new_len;
6fa5f80b
DH
1760 return vma->vm_start;
1761}
1762
6a6160a7
HC
1763SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
1764 unsigned long, new_len, unsigned long, flags,
1765 unsigned long, new_addr)
6fa5f80b
DH
1766{
1767 unsigned long ret;
1768
1769 down_write(&current->mm->mmap_sem);
1770 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
1771 up_write(&current->mm->mmap_sem);
1772 return ret;
1da177e4
LT
1773}
1774
240aadee
ML
1775struct page *follow_page_mask(struct vm_area_struct *vma,
1776 unsigned long address, unsigned int flags,
1777 unsigned int *page_mask)
1da177e4 1778{
240aadee 1779 *page_mask = 0;
1da177e4
LT
1780 return NULL;
1781}
1782
8f3b1327
BL
1783int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1784 unsigned long pfn, unsigned long size, pgprot_t prot)
1da177e4 1785{
8f3b1327
BL
1786 if (addr != (pfn << PAGE_SHIFT))
1787 return -EINVAL;
1788
314e51b9 1789 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
66aa2b4b 1790 return 0;
1da177e4 1791}
22c4af40 1792EXPORT_SYMBOL(remap_pfn_range);
1da177e4 1793
3c0b9de6
LT
1794int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1795{
1796 unsigned long pfn = start >> PAGE_SHIFT;
1797 unsigned long vm_len = vma->vm_end - vma->vm_start;
1798
1799 pfn += vma->vm_pgoff;
1800 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1801}
1802EXPORT_SYMBOL(vm_iomap_memory);
1803
f905bc44
PM
1804int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1805 unsigned long pgoff)
1806{
1807 unsigned int size = vma->vm_end - vma->vm_start;
1808
1809 if (!(vma->vm_flags & VM_USERMAP))
1810 return -EINVAL;
1811
1812 vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1813 vma->vm_end = vma->vm_start + size;
1814
1815 return 0;
1816}
1817EXPORT_SYMBOL(remap_vmalloc_range);
1818
1da177e4
LT
1819unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
1820 unsigned long len, unsigned long pgoff, unsigned long flags)
1821{
1822 return -ENOMEM;
1823}
1824
1da177e4
LT
1825void unmap_mapping_range(struct address_space *mapping,
1826 loff_t const holebegin, loff_t const holelen,
1827 int even_cows)
1828{
1829}
22c4af40 1830EXPORT_SYMBOL(unmap_mapping_range);
1da177e4
LT
1831
1832/*
1833 * Check that a process has enough memory to allocate a new virtual
1834 * mapping. 0 means there is enough memory for the allocation to
1835 * succeed and -ENOMEM implies there is not.
1836 *
1837 * We currently support three overcommit policies, which are set via the
1838 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1839 *
1840 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1841 * Additional code 2002 Jul 20 by Robert Love.
1842 *
1843 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1844 *
1845 * Note this is a helper function intended to be used by LSMs which
1846 * wish to use this logic.
1847 */
34b4e4aa 1848int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
1da177e4 1849{
8138a67a 1850 long free, allowed, reserve;
1da177e4
LT
1851
1852 vm_acct_memory(pages);
1853
1854 /*
1855 * Sometimes we want to use more memory than we have
1856 */
1857 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
1858 return 0;
1859
1860 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
c15bef30
DF
1861 free = global_page_state(NR_FREE_PAGES);
1862 free += global_page_state(NR_FILE_PAGES);
1863
1864 /*
1865 * shmem pages shouldn't be counted as free in this
1866 * case, they can't be purged, only swapped out, and
1867 * that won't affect the overall amount of available
1868 * memory in the system.
1869 */
1870 free -= global_page_state(NR_SHMEM);
1da177e4 1871
ec8acf20 1872 free += get_nr_swap_pages();
1da177e4
LT
1873
1874 /*
1875 * Any slabs which are created with the
1876 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1877 * which are reclaimable, under pressure. The dentry
1878 * cache and most inode caches should fall into this
1879 */
972d1a7b 1880 free += global_page_state(NR_SLAB_RECLAIMABLE);
1da177e4 1881
d5ddc79b
HA
1882 /*
1883 * Leave reserved pages. The pages are not for anonymous pages.
1884 */
c15bef30 1885 if (free <= totalreserve_pages)
d5ddc79b
HA
1886 goto error;
1887 else
c15bef30 1888 free -= totalreserve_pages;
d5ddc79b
HA
1889
1890 /*
4eeab4f5 1891 * Reserve some for root
d5ddc79b 1892 */
1da177e4 1893 if (!cap_sys_admin)
4eeab4f5 1894 free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
1da177e4
LT
1895
1896 if (free > pages)
1897 return 0;
d5ddc79b
HA
1898
1899 goto error;
1da177e4
LT
1900 }
1901
00619bcc 1902 allowed = vm_commit_limit();
1da177e4 1903 /*
4eeab4f5 1904 * Reserve some 3% for root
1da177e4
LT
1905 */
1906 if (!cap_sys_admin)
4eeab4f5 1907 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
1da177e4 1908
c9b1d098
AS
1909 /*
1910 * Don't let a single process grow so big a user can't recover
1911 */
1912 if (mm) {
1913 reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10);
8138a67a 1914 allowed -= min_t(long, mm->total_vm / 32, reserve);
c9b1d098 1915 }
1da177e4 1916
00a62ce9 1917 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
1da177e4 1918 return 0;
00a62ce9 1919
d5ddc79b 1920error:
1da177e4
LT
1921 vm_unacct_memory(pages);
1922
1923 return -ENOMEM;
1924}
1925
d0217ac0 1926int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
b0e15190
DH
1927{
1928 BUG();
d0217ac0 1929 return 0;
b0e15190 1930}
b5073173 1931EXPORT_SYMBOL(filemap_fault);
0ec76a11 1932
f1820361
KS
1933void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
1934{
1935 BUG();
1936}
1937EXPORT_SYMBOL(filemap_map_pages);
1938
f55f199b
MF
1939static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
1940 unsigned long addr, void *buf, int len, int write)
0ec76a11 1941{
0ec76a11 1942 struct vm_area_struct *vma;
0ec76a11
DH
1943
1944 down_read(&mm->mmap_sem);
1945
1946 /* the access must start within one of the target process's mappings */
0159b141
DH
1947 vma = find_vma(mm, addr);
1948 if (vma) {
0ec76a11
DH
1949 /* don't overrun this mapping */
1950 if (addr + len >= vma->vm_end)
1951 len = vma->vm_end - addr;
1952
1953 /* only read or write mappings where it is permitted */
d00c7b99 1954 if (write && vma->vm_flags & VM_MAYWRITE)
7959722b
JZ
1955 copy_to_user_page(vma, NULL, addr,
1956 (void *) addr, buf, len);
d00c7b99 1957 else if (!write && vma->vm_flags & VM_MAYREAD)
7959722b
JZ
1958 copy_from_user_page(vma, NULL, addr,
1959 buf, (void *) addr, len);
0ec76a11
DH
1960 else
1961 len = 0;
1962 } else {
1963 len = 0;
1964 }
1965
1966 up_read(&mm->mmap_sem);
f55f199b
MF
1967
1968 return len;
1969}
1970
1971/**
1972 * @access_remote_vm - access another process' address space
1973 * @mm: the mm_struct of the target address space
1974 * @addr: start address to access
1975 * @buf: source or destination buffer
1976 * @len: number of bytes to transfer
1977 * @write: whether the access is a write
1978 *
1979 * The caller must hold a reference on @mm.
1980 */
1981int access_remote_vm(struct mm_struct *mm, unsigned long addr,
1982 void *buf, int len, int write)
1983{
1984 return __access_remote_vm(NULL, mm, addr, buf, len, write);
1985}
1986
1987/*
1988 * Access another process' address space.
1989 * - source/target buffer must be kernel space
1990 */
1991int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
1992{
1993 struct mm_struct *mm;
1994
1995 if (addr + len < addr)
1996 return 0;
1997
1998 mm = get_task_mm(tsk);
1999 if (!mm)
2000 return 0;
2001
2002 len = __access_remote_vm(tsk, mm, addr, buf, len, write);
2003
0ec76a11
DH
2004 mmput(mm);
2005 return len;
2006}
7e660872
DH
2007
2008/**
2009 * nommu_shrink_inode_mappings - Shrink the shared mappings on an inode
2010 * @inode: The inode to check
2011 * @size: The current filesize of the inode
2012 * @newsize: The proposed filesize of the inode
2013 *
2014 * Check the shared mappings on an inode on behalf of a shrinking truncate to
2015 * make sure that that any outstanding VMAs aren't broken and then shrink the
2016 * vm_regions that extend that beyond so that do_mmap_pgoff() doesn't
2017 * automatically grant mappings that are too large.
2018 */
2019int nommu_shrink_inode_mappings(struct inode *inode, size_t size,
2020 size_t newsize)
2021{
2022 struct vm_area_struct *vma;
7e660872
DH
2023 struct vm_region *region;
2024 pgoff_t low, high;
2025 size_t r_size, r_top;
2026
2027 low = newsize >> PAGE_SHIFT;
2028 high = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
2029
2030 down_write(&nommu_region_sem);
1acf2e04 2031 i_mmap_lock_read(inode->i_mapping);
7e660872
DH
2032
2033 /* search for VMAs that fall within the dead zone */
6b2dbba8 2034 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, low, high) {
7e660872
DH
2035 /* found one - only interested if it's shared out of the page
2036 * cache */
2037 if (vma->vm_flags & VM_SHARED) {
1acf2e04 2038 i_mmap_unlock_read(inode->i_mapping);
7e660872
DH
2039 up_write(&nommu_region_sem);
2040 return -ETXTBSY; /* not quite true, but near enough */
2041 }
2042 }
2043
2044 /* reduce any regions that overlap the dead zone - if in existence,
2045 * these will be pointed to by VMAs that don't overlap the dead zone
2046 *
2047 * we don't check for any regions that start beyond the EOF as there
2048 * shouldn't be any
2049 */
1acf2e04 2050 vma_interval_tree_foreach(vma, &inode->i_mapping->i_mmap, 0, ULONG_MAX) {
7e660872
DH
2051 if (!(vma->vm_flags & VM_SHARED))
2052 continue;
2053
2054 region = vma->vm_region;
2055 r_size = region->vm_top - region->vm_start;
2056 r_top = (region->vm_pgoff << PAGE_SHIFT) + r_size;
2057
2058 if (r_top > newsize) {
2059 region->vm_top -= r_top - newsize;
2060 if (region->vm_end > region->vm_top)
2061 region->vm_end = region->vm_top;
2062 }
2063 }
2064
1acf2e04 2065 i_mmap_unlock_read(inode->i_mapping);
7e660872
DH
2066 up_write(&nommu_region_sem);
2067 return 0;
2068}
c9b1d098
AS
2069
2070/*
2071 * Initialise sysctl_user_reserve_kbytes.
2072 *
2073 * This is intended to prevent a user from starting a single memory hogging
2074 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
2075 * mode.
2076 *
2077 * The default value is min(3% of free memory, 128MB)
2078 * 128MB is enough to recover with sshd/login, bash, and top/kill.
2079 */
2080static int __meminit init_user_reserve(void)
2081{
2082 unsigned long free_kbytes;
2083
2084 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
2085
2086 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
2087 return 0;
2088}
a4bc6fc7 2089subsys_initcall(init_user_reserve);
4eeab4f5
AS
2090
2091/*
2092 * Initialise sysctl_admin_reserve_kbytes.
2093 *
2094 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
2095 * to log in and kill a memory hogging process.
2096 *
2097 * Systems with more than 256MB will reserve 8MB, enough to recover
2098 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
2099 * only reserve 3% of free pages by default.
2100 */
2101static int __meminit init_admin_reserve(void)
2102{
2103 unsigned long free_kbytes;
2104
2105 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
2106
2107 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
2108 return 0;
2109}
a4bc6fc7 2110subsys_initcall(init_admin_reserve);