blob: 23f355bbe2628b12dc0be3e7c38003c10b49c33c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/nommu.c
3 *
4 * Replacement code for mm functions to support CPU's that don't
5 * have any form of memory management unit (thus no virtual memory).
6 *
7 * See Documentation/nommu-mmap.txt
8 *
9 * Copyright (c) 2004-2005 David Howells <dhowells@redhat.com>
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>
Paul Mundtf905bc42008-02-04 22:29:59 -080013 * Copyright (c) 2007 Paul Mundt <lethal@linux-sh.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
David Howellsf2b85442007-10-29 13:15:39 +000016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mm.h>
18#include <linux/mman.h>
19#include <linux/swap.h>
20#include <linux/file.h>
21#include <linux/highmem.h>
22#include <linux/pagemap.h>
23#include <linux/slab.h>
24#include <linux/vmalloc.h>
Roland McGrathfa8e26c2008-07-25 19:45:50 -070025#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/blkdev.h>
27#include <linux/backing-dev.h>
28#include <linux/mount.h>
29#include <linux/personality.h>
30#include <linux/security.h>
31#include <linux/syscalls.h>
32
33#include <asm/uaccess.h>
34#include <asm/tlb.h>
35#include <asm/tlbflush.h>
36
Nick Pigginb291f002008-10-18 20:26:44 -070037#include "internal.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039void *high_memory;
40struct page *mem_map;
41unsigned long max_mapnr;
42unsigned long num_physpages;
Alan Cox80119ef2008-05-23 13:04:31 -070043atomic_long_t vm_committed_space = ATOMIC_LONG_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
45int sysctl_overcommit_ratio = 50; /* default is 50% */
46int sysctl_max_map_count = DEFAULT_MAX_MAP_COUNT;
47int heap_stack_gap = 0;
48
49EXPORT_SYMBOL(mem_map);
Wu, Bryan6a04de62007-04-11 23:28:47 -070050EXPORT_SYMBOL(num_physpages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* list of shareable VMAs */
53struct rb_root nommu_vma_tree = RB_ROOT;
54DECLARE_RWSEM(nommu_vma_sem);
55
56struct vm_operations_struct generic_file_vm_ops = {
57};
58
59/*
60 * Handle all mappings that got truncated by a "truncate()"
61 * system call.
62 *
63 * NOTE! We have to be ready to update the memory sharing
64 * between the file and the memory map for a potential last
65 * incomplete page. Ugly, but necessary.
66 */
67int vmtruncate(struct inode *inode, loff_t offset)
68{
69 struct address_space *mapping = inode->i_mapping;
70 unsigned long limit;
71
72 if (inode->i_size < offset)
73 goto do_expand;
74 i_size_write(inode, offset);
75
76 truncate_inode_pages(mapping, offset);
77 goto out_truncate;
78
79do_expand:
80 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
81 if (limit != RLIM_INFINITY && offset > limit)
82 goto out_sig;
83 if (offset > inode->i_sb->s_maxbytes)
84 goto out;
85 i_size_write(inode, offset);
86
87out_truncate:
Al Viroacfa4382008-12-04 10:06:33 -050088 if (inode->i_op->truncate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 inode->i_op->truncate(inode);
90 return 0;
91out_sig:
92 send_sig(SIGXFSZ, current, 0);
93out:
94 return -EFBIG;
95}
96
97EXPORT_SYMBOL(vmtruncate);
98
99/*
100 * Return the total memory allocated for this pointer, not
101 * just what the caller asked for.
102 *
103 * Doesn't have to be accurate, i.e. may have races.
104 */
105unsigned int kobjsize(const void *objp)
106{
107 struct page *page;
108
Michael Hennerich4016a132008-04-28 02:13:38 -0700109 /*
110 * If the object we have should not have ksize performed on it,
111 * return size of 0
112 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900113 if (!objp || !virt_addr_valid(objp))
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700114 return 0;
115
116 page = virt_to_head_page(objp);
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700117
118 /*
119 * If the allocator sets PageSlab, we know the pointer came from
120 * kmalloc().
121 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (PageSlab(page))
123 return ksize(objp);
124
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700125 /*
126 * The ksize() function is only guaranteed to work for pointers
Paul Mundt5a1603b2008-06-12 16:29:55 +0900127 * returned by kmalloc(). So handle arbitrary pointers here.
Paul Mundt6cfd53fc2008-06-05 22:46:08 -0700128 */
Paul Mundt5a1603b2008-06-12 16:29:55 +0900129 return PAGE_SIZE << compound_order(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Nick Pigginb291f002008-10-18 20:26:44 -0700132int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
133 unsigned long start, int len, int flags,
134 struct page **pages, struct vm_area_struct **vmas)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Sonic Zhang910e46d2006-09-27 01:50:17 -0700136 struct vm_area_struct *vma;
David Howells7b4d5b82006-09-27 01:50:18 -0700137 unsigned long vm_flags;
138 int i;
Nick Pigginb291f002008-10-18 20:26:44 -0700139 int write = !!(flags & GUP_FLAGS_WRITE);
140 int force = !!(flags & GUP_FLAGS_FORCE);
141 int ignore = !!(flags & GUP_FLAGS_IGNORE_VMA_PERMISSIONS);
David Howells7b4d5b82006-09-27 01:50:18 -0700142
143 /* calculate required read or write permissions.
144 * - if 'force' is set, we only require the "MAY" flags.
145 */
146 vm_flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
147 vm_flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 for (i = 0; i < len; i++) {
Sonic Zhang910e46d2006-09-27 01:50:17 -0700150 vma = find_vma(mm, start);
David Howells7b4d5b82006-09-27 01:50:18 -0700151 if (!vma)
152 goto finish_or_fault;
153
154 /* protect what we can, including chardevs */
155 if (vma->vm_flags & (VM_IO | VM_PFNMAP) ||
Nick Pigginb291f002008-10-18 20:26:44 -0700156 (!ignore && !(vm_flags & vma->vm_flags)))
David Howells7b4d5b82006-09-27 01:50:18 -0700157 goto finish_or_fault;
Sonic Zhang910e46d2006-09-27 01:50:17 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (pages) {
160 pages[i] = virt_to_page(start);
161 if (pages[i])
162 page_cache_get(pages[i]);
163 }
164 if (vmas)
Sonic Zhang910e46d2006-09-27 01:50:17 -0700165 vmas[i] = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 start += PAGE_SIZE;
167 }
David Howells7b4d5b82006-09-27 01:50:18 -0700168
169 return i;
170
171finish_or_fault:
172 return i ? : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
Nick Pigginb291f002008-10-18 20:26:44 -0700174
175
176/*
177 * get a list of pages in an address range belonging to the specified process
178 * and indicate the VMA that covers each page
179 * - this is potentially dodgy as we may end incrementing the page count of a
180 * slab page or a secondary page from a compound page
181 * - don't permit access to VMAs that don't support it, such as I/O mappings
182 */
183int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
184 unsigned long start, int len, int write, int force,
185 struct page **pages, struct vm_area_struct **vmas)
186{
187 int flags = 0;
188
189 if (write)
190 flags |= GUP_FLAGS_WRITE;
191 if (force)
192 flags |= GUP_FLAGS_FORCE;
193
194 return __get_user_pages(tsk, mm,
195 start, len, flags,
196 pages, vmas);
197}
Greg Ungerer66aa2b42005-09-12 11:18:10 +1000198EXPORT_SYMBOL(get_user_pages);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200DEFINE_RWLOCK(vmlist_lock);
201struct vm_struct *vmlist;
202
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800203void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 kfree(addr);
206}
Paul Mundtb5073172007-07-21 04:37:25 -0700207EXPORT_SYMBOL(vfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Al Virodd0fc662005-10-07 07:46:04 +0100209void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 /*
Robert P. J. Day85186092007-10-19 23:11:38 +0200212 * You can't specify __GFP_HIGHMEM with kmalloc() since kmalloc()
213 * returns only a logical address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 */
Nick Piggin84097512006-03-22 00:08:34 -0800215 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
Paul Mundtb5073172007-07-21 04:37:25 -0700217EXPORT_SYMBOL(__vmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Paul Mundtf905bc42008-02-04 22:29:59 -0800219void *vmalloc_user(unsigned long size)
220{
221 void *ret;
222
223 ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
224 PAGE_KERNEL);
225 if (ret) {
226 struct vm_area_struct *vma;
227
228 down_write(&current->mm->mmap_sem);
229 vma = find_vma(current->mm, (unsigned long)ret);
230 if (vma)
231 vma->vm_flags |= VM_USERMAP;
232 up_write(&current->mm->mmap_sem);
233 }
234
235 return ret;
236}
237EXPORT_SYMBOL(vmalloc_user);
238
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800239struct page *vmalloc_to_page(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 return virt_to_page(addr);
242}
Paul Mundtb5073172007-07-21 04:37:25 -0700243EXPORT_SYMBOL(vmalloc_to_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800245unsigned long vmalloc_to_pfn(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 return page_to_pfn(virt_to_page(addr));
248}
Paul Mundtb5073172007-07-21 04:37:25 -0700249EXPORT_SYMBOL(vmalloc_to_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251long vread(char *buf, char *addr, unsigned long count)
252{
253 memcpy(buf, addr, count);
254 return count;
255}
256
257long vwrite(char *buf, char *addr, unsigned long count)
258{
259 /* Don't allow overflow */
260 if ((unsigned long) addr + count < count)
261 count = -(unsigned long) addr;
262
263 memcpy(addr, buf, count);
264 return(count);
265}
266
267/*
268 * vmalloc - allocate virtually continguos memory
269 *
270 * @size: allocation size
271 *
272 * Allocate enough pages to cover @size from the page level
273 * allocator and map them into continguos kernel virtual space.
274 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +0200275 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * use __vmalloc() instead.
277 */
278void *vmalloc(unsigned long size)
279{
280 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL);
281}
Andrew Mortonf6138882006-02-28 16:59:18 -0800282EXPORT_SYMBOL(vmalloc);
283
284void *vmalloc_node(unsigned long size, int node)
285{
286 return vmalloc(size);
287}
288EXPORT_SYMBOL(vmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Paul Mundt1af446e2008-08-04 16:01:47 +0900290#ifndef PAGE_KERNEL_EXEC
291# define PAGE_KERNEL_EXEC PAGE_KERNEL
292#endif
293
294/**
295 * vmalloc_exec - allocate virtually contiguous, executable memory
296 * @size: allocation size
297 *
298 * Kernel-internal function to allocate enough pages to cover @size
299 * the page level allocator and map them into contiguous and
300 * executable kernel virtual space.
301 *
302 * For tight control over page level allocator and protection flags
303 * use __vmalloc() instead.
304 */
305
306void *vmalloc_exec(unsigned long size)
307{
308 return __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC);
309}
310
Paul Mundtb5073172007-07-21 04:37:25 -0700311/**
312 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * @size: allocation size
314 *
315 * Allocate enough 32bit PA addressable pages to cover @size from the
316 * page level allocator and map them into continguos kernel virtual space.
317 */
318void *vmalloc_32(unsigned long size)
319{
320 return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL);
321}
Paul Mundtb5073172007-07-21 04:37:25 -0700322EXPORT_SYMBOL(vmalloc_32);
323
324/**
325 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
326 * @size: allocation size
327 *
328 * The resulting memory area is 32bit addressable and zeroed so it can be
329 * mapped to userspace without leaking data.
Paul Mundtf905bc42008-02-04 22:29:59 -0800330 *
331 * VM_USERMAP is set on the corresponding VMA so that subsequent calls to
332 * remap_vmalloc_range() are permissible.
Paul Mundtb5073172007-07-21 04:37:25 -0700333 */
334void *vmalloc_32_user(unsigned long size)
335{
Paul Mundtf905bc42008-02-04 22:29:59 -0800336 /*
337 * We'll have to sort out the ZONE_DMA bits for 64-bit,
338 * but for now this can simply use vmalloc_user() directly.
339 */
340 return vmalloc_user(size);
Paul Mundtb5073172007-07-21 04:37:25 -0700341}
342EXPORT_SYMBOL(vmalloc_32_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344void *vmap(struct page **pages, unsigned int count, unsigned long flags, pgprot_t prot)
345{
346 BUG();
347 return NULL;
348}
Paul Mundtb5073172007-07-21 04:37:25 -0700349EXPORT_SYMBOL(vmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800351void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 BUG();
354}
Paul Mundtb5073172007-07-21 04:37:25 -0700355EXPORT_SYMBOL(vunmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357/*
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700358 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
359 * have one.
360 */
361void __attribute__((weak)) vmalloc_sync_all(void)
362{
363}
364
Paul Mundtb5073172007-07-21 04:37:25 -0700365int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
366 struct page *page)
367{
368 return -EINVAL;
369}
370EXPORT_SYMBOL(vm_insert_page);
371
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700372/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * sys_brk() for the most part doesn't need the global kernel
374 * lock, except when an application is doing something nasty
375 * like trying to un-brk an area that has already been mapped
376 * to a regular file. in this case, the unmapping will need
377 * to invoke file system routines that need the global lock.
378 */
379asmlinkage unsigned long sys_brk(unsigned long brk)
380{
381 struct mm_struct *mm = current->mm;
382
383 if (brk < mm->start_brk || brk > mm->context.end_brk)
384 return mm->brk;
385
386 if (mm->brk == brk)
387 return mm->brk;
388
389 /*
390 * Always allow shrinking brk
391 */
392 if (brk <= mm->brk) {
393 mm->brk = brk;
394 return brk;
395 }
396
397 /*
398 * Ok, looks good - let it rip.
399 */
400 return mm->brk = brk;
401}
402
403#ifdef DEBUG
404static void show_process_blocks(void)
405{
406 struct vm_list_struct *vml;
407
408 printk("Process blocks %d:", current->pid);
409
410 for (vml = &current->mm->context.vmlist; vml; vml = vml->next) {
411 printk(" %p: %p", vml, vml->vma);
412 if (vml->vma)
413 printk(" (%d @%lx #%d)",
414 kobjsize((void *) vml->vma->vm_start),
415 vml->vma->vm_start,
416 atomic_read(&vml->vma->vm_usage));
417 printk(vml->next ? " ->" : ".\n");
418 }
419}
420#endif /* DEBUG */
421
David Howells30340972006-09-27 01:50:20 -0700422/*
423 * add a VMA into a process's mm_struct in the appropriate place in the list
424 * - should be called with mm->mmap_sem held writelocked
425 */
426static void add_vma_to_mm(struct mm_struct *mm, struct vm_list_struct *vml)
427{
428 struct vm_list_struct **ppv;
429
430 for (ppv = &current->mm->context.vmlist; *ppv; ppv = &(*ppv)->next)
431 if ((*ppv)->vma->vm_start > vml->vma->vm_start)
432 break;
433
434 vml->next = *ppv;
435 *ppv = vml;
436}
437
438/*
439 * look up the first VMA in which addr resides, NULL if none
440 * - should be called with mm->mmap_sem at least held readlocked
441 */
442struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
443{
444 struct vm_list_struct *loop, *vml;
445
446 /* search the vm_start ordered list */
447 vml = NULL;
448 for (loop = mm->context.vmlist; loop; loop = loop->next) {
449 if (loop->vma->vm_start > addr)
450 break;
451 vml = loop;
452 }
453
454 if (vml && vml->vma->vm_end > addr)
455 return vml->vma;
456
457 return NULL;
458}
459EXPORT_SYMBOL(find_vma);
460
461/*
David Howells930e6522006-09-27 01:50:22 -0700462 * find a VMA
463 * - we don't extend stack VMAs under NOMMU conditions
464 */
465struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr)
466{
467 return find_vma(mm, addr);
468}
469
Greg Ungerer57c8f632007-07-15 23:38:28 -0700470int expand_stack(struct vm_area_struct *vma, unsigned long address)
471{
472 return -ENOMEM;
473}
474
David Howells930e6522006-09-27 01:50:22 -0700475/*
David Howells6fa5f802006-09-27 01:50:21 -0700476 * look up the first VMA exactly that exactly matches addr
477 * - should be called with mm->mmap_sem at least held readlocked
478 */
479static inline struct vm_area_struct *find_vma_exact(struct mm_struct *mm,
480 unsigned long addr)
481{
482 struct vm_list_struct *vml;
483
484 /* search the vm_start ordered list */
485 for (vml = mm->context.vmlist; vml; vml = vml->next) {
486 if (vml->vma->vm_start == addr)
487 return vml->vma;
488 if (vml->vma->vm_start > addr)
489 break;
490 }
491
492 return NULL;
493}
494
495/*
David Howells30340972006-09-27 01:50:20 -0700496 * find a VMA in the global tree
497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static inline struct vm_area_struct *find_nommu_vma(unsigned long start)
499{
500 struct vm_area_struct *vma;
501 struct rb_node *n = nommu_vma_tree.rb_node;
502
503 while (n) {
504 vma = rb_entry(n, struct vm_area_struct, vm_rb);
505
506 if (start < vma->vm_start)
507 n = n->rb_left;
508 else if (start > vma->vm_start)
509 n = n->rb_right;
510 else
511 return vma;
512 }
513
514 return NULL;
515}
516
David Howells30340972006-09-27 01:50:20 -0700517/*
518 * add a VMA in the global tree
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static void add_nommu_vma(struct vm_area_struct *vma)
521{
522 struct vm_area_struct *pvma;
523 struct address_space *mapping;
524 struct rb_node **p = &nommu_vma_tree.rb_node;
525 struct rb_node *parent = NULL;
526
527 /* add the VMA to the mapping */
528 if (vma->vm_file) {
529 mapping = vma->vm_file->f_mapping;
530
531 flush_dcache_mmap_lock(mapping);
532 vma_prio_tree_insert(vma, &mapping->i_mmap);
533 flush_dcache_mmap_unlock(mapping);
534 }
535
536 /* add the VMA to the master list */
537 while (*p) {
538 parent = *p;
539 pvma = rb_entry(parent, struct vm_area_struct, vm_rb);
540
541 if (vma->vm_start < pvma->vm_start) {
542 p = &(*p)->rb_left;
543 }
544 else if (vma->vm_start > pvma->vm_start) {
545 p = &(*p)->rb_right;
546 }
547 else {
548 /* mappings are at the same address - this can only
549 * happen for shared-mem chardevs and shared file
550 * mappings backed by ramfs/tmpfs */
551 BUG_ON(!(pvma->vm_flags & VM_SHARED));
552
553 if (vma < pvma)
554 p = &(*p)->rb_left;
555 else if (vma > pvma)
556 p = &(*p)->rb_right;
557 else
558 BUG();
559 }
560 }
561
562 rb_link_node(&vma->vm_rb, parent, p);
563 rb_insert_color(&vma->vm_rb, &nommu_vma_tree);
564}
565
David Howells30340972006-09-27 01:50:20 -0700566/*
567 * delete a VMA from the global list
568 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static void delete_nommu_vma(struct vm_area_struct *vma)
570{
571 struct address_space *mapping;
572
573 /* remove the VMA from the mapping */
574 if (vma->vm_file) {
575 mapping = vma->vm_file->f_mapping;
576
577 flush_dcache_mmap_lock(mapping);
578 vma_prio_tree_remove(vma, &mapping->i_mmap);
579 flush_dcache_mmap_unlock(mapping);
580 }
581
582 /* remove from the master list */
583 rb_erase(&vma->vm_rb, &nommu_vma_tree);
584}
585
586/*
587 * determine whether a mapping should be permitted and, if so, what sort of
588 * mapping we're capable of supporting
589 */
590static int validate_mmap_request(struct file *file,
591 unsigned long addr,
592 unsigned long len,
593 unsigned long prot,
594 unsigned long flags,
595 unsigned long pgoff,
596 unsigned long *_capabilities)
597{
598 unsigned long capabilities;
599 unsigned long reqprot = prot;
600 int ret;
601
602 /* do the simple checks first */
603 if (flags & MAP_FIXED || addr) {
604 printk(KERN_DEBUG
605 "%d: Can't do fixed-address/overlay mmap of RAM\n",
606 current->pid);
607 return -EINVAL;
608 }
609
610 if ((flags & MAP_TYPE) != MAP_PRIVATE &&
611 (flags & MAP_TYPE) != MAP_SHARED)
612 return -EINVAL;
613
Mike Frysingerf81cff02006-12-06 12:02:59 +1000614 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return -EINVAL;
616
Mike Frysingerf81cff02006-12-06 12:02:59 +1000617 /* Careful about overflows.. */
618 len = PAGE_ALIGN(len);
619 if (!len || len > TASK_SIZE)
620 return -ENOMEM;
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* offset overflow? */
623 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
Mike Frysingerf81cff02006-12-06 12:02:59 +1000624 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (file) {
627 /* validate file mapping requests */
628 struct address_space *mapping;
629
630 /* files must support mmap */
631 if (!file->f_op || !file->f_op->mmap)
632 return -ENODEV;
633
634 /* work out if what we've got could possibly be shared
635 * - we support chardevs that provide their own "memory"
636 * - we support files/blockdevs that are memory backed
637 */
638 mapping = file->f_mapping;
639 if (!mapping)
Josef Sipeke9536ae2006-12-08 02:37:21 -0800640 mapping = file->f_path.dentry->d_inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 capabilities = 0;
643 if (mapping && mapping->backing_dev_info)
644 capabilities = mapping->backing_dev_info->capabilities;
645
646 if (!capabilities) {
647 /* no explicit capabilities set, so assume some
648 * defaults */
Josef Sipeke9536ae2006-12-08 02:37:21 -0800649 switch (file->f_path.dentry->d_inode->i_mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 case S_IFREG:
651 case S_IFBLK:
652 capabilities = BDI_CAP_MAP_COPY;
653 break;
654
655 case S_IFCHR:
656 capabilities =
657 BDI_CAP_MAP_DIRECT |
658 BDI_CAP_READ_MAP |
659 BDI_CAP_WRITE_MAP;
660 break;
661
662 default:
663 return -EINVAL;
664 }
665 }
666
667 /* eliminate any capabilities that we can't support on this
668 * device */
669 if (!file->f_op->get_unmapped_area)
670 capabilities &= ~BDI_CAP_MAP_DIRECT;
671 if (!file->f_op->read)
672 capabilities &= ~BDI_CAP_MAP_COPY;
673
674 if (flags & MAP_SHARED) {
675 /* do checks for writing, appending and locking */
676 if ((prot & PROT_WRITE) &&
677 !(file->f_mode & FMODE_WRITE))
678 return -EACCES;
679
Josef Sipeke9536ae2006-12-08 02:37:21 -0800680 if (IS_APPEND(file->f_path.dentry->d_inode) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 (file->f_mode & FMODE_WRITE))
682 return -EACCES;
683
Josef Sipeke9536ae2006-12-08 02:37:21 -0800684 if (locks_verify_locked(file->f_path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return -EAGAIN;
686
687 if (!(capabilities & BDI_CAP_MAP_DIRECT))
688 return -ENODEV;
689
690 if (((prot & PROT_READ) && !(capabilities & BDI_CAP_READ_MAP)) ||
691 ((prot & PROT_WRITE) && !(capabilities & BDI_CAP_WRITE_MAP)) ||
692 ((prot & PROT_EXEC) && !(capabilities & BDI_CAP_EXEC_MAP))
693 ) {
694 printk("MAP_SHARED not completely supported on !MMU\n");
695 return -EINVAL;
696 }
697
698 /* we mustn't privatise shared mappings */
699 capabilities &= ~BDI_CAP_MAP_COPY;
700 }
701 else {
702 /* we're going to read the file into private memory we
703 * allocate */
704 if (!(capabilities & BDI_CAP_MAP_COPY))
705 return -ENODEV;
706
707 /* we don't permit a private writable mapping to be
708 * shared with the backing device */
709 if (prot & PROT_WRITE)
710 capabilities &= ~BDI_CAP_MAP_DIRECT;
711 }
712
713 /* handle executable mappings and implied executable
714 * mappings */
Josef Sipeke9536ae2006-12-08 02:37:21 -0800715 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (prot & PROT_EXEC)
717 return -EPERM;
718 }
719 else if ((prot & PROT_READ) && !(prot & PROT_EXEC)) {
720 /* handle implication of PROT_EXEC by PROT_READ */
721 if (current->personality & READ_IMPLIES_EXEC) {
722 if (capabilities & BDI_CAP_EXEC_MAP)
723 prot |= PROT_EXEC;
724 }
725 }
726 else if ((prot & PROT_READ) &&
727 (prot & PROT_EXEC) &&
728 !(capabilities & BDI_CAP_EXEC_MAP)
729 ) {
730 /* backing file is not executable, try to copy */
731 capabilities &= ~BDI_CAP_MAP_DIRECT;
732 }
733 }
734 else {
735 /* anonymous mappings are always memory backed and can be
736 * privately mapped
737 */
738 capabilities = BDI_CAP_MAP_COPY;
739
740 /* handle PROT_EXEC implication by PROT_READ */
741 if ((prot & PROT_READ) &&
742 (current->personality & READ_IMPLIES_EXEC))
743 prot |= PROT_EXEC;
744 }
745
746 /* allow the security API to have its say */
Eric Parised032182007-06-28 15:55:21 -0400747 ret = security_file_mmap(file, reqprot, prot, flags, addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (ret < 0)
749 return ret;
750
751 /* looks okay */
752 *_capabilities = capabilities;
753 return 0;
754}
755
756/*
757 * we've determined that we can make the mapping, now translate what we
758 * now know into VMA flags
759 */
760static unsigned long determine_vm_flags(struct file *file,
761 unsigned long prot,
762 unsigned long flags,
763 unsigned long capabilities)
764{
765 unsigned long vm_flags;
766
767 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags);
768 vm_flags |= VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
769 /* vm_flags |= mm->def_flags; */
770
771 if (!(capabilities & BDI_CAP_MAP_DIRECT)) {
772 /* attempt to share read-only copies of mapped file chunks */
773 if (file && !(prot & PROT_WRITE))
774 vm_flags |= VM_MAYSHARE;
775 }
776 else {
777 /* overlay a shareable mapping on the backing device or inode
778 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
779 * romfs/cramfs */
780 if (flags & MAP_SHARED)
781 vm_flags |= VM_MAYSHARE | VM_SHARED;
782 else if ((((vm_flags & capabilities) ^ vm_flags) & BDI_CAP_VMFLAGS) == 0)
783 vm_flags |= VM_MAYSHARE;
784 }
785
786 /* refuse to let anyone share private mappings with this process if
787 * it's being traced - otherwise breakpoints set in it may interfere
788 * with another untraced process
789 */
Roland McGrathfa8e26c2008-07-25 19:45:50 -0700790 if ((flags & MAP_PRIVATE) && tracehook_expect_breakpoints(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 vm_flags &= ~VM_MAYSHARE;
792
793 return vm_flags;
794}
795
796/*
797 * set up a shared mapping on a file
798 */
799static int do_mmap_shared_file(struct vm_area_struct *vma, unsigned long len)
800{
801 int ret;
802
803 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
804 if (ret != -ENOSYS)
805 return ret;
806
807 /* getting an ENOSYS error indicates that direct mmap isn't
808 * possible (as opposed to tried but failed) so we'll fall
809 * through to making a private copy of the data and mapping
810 * that if we can */
811 return -ENODEV;
812}
813
814/*
815 * set up a private mapping or an anonymous shared mapping
816 */
817static int do_mmap_private(struct vm_area_struct *vma, unsigned long len)
818{
819 void *base;
820 int ret;
821
822 /* invoke the file's mapping function so that it can keep track of
823 * shared mappings on devices or memory
824 * - VM_MAYSHARE will be set if it may attempt to share
825 */
826 if (vma->vm_file) {
827 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
828 if (ret != -ENOSYS) {
829 /* shouldn't return success if we're not sharing */
830 BUG_ON(ret == 0 && !(vma->vm_flags & VM_MAYSHARE));
831 return ret; /* success or a real error */
832 }
833
834 /* getting an ENOSYS error indicates that direct mmap isn't
835 * possible (as opposed to tried but failed) so we'll try to
836 * make a private copy of the data and map that instead */
837 }
838
839 /* allocate some memory to hold the mapping
840 * - note that this may not return a page-aligned address if the object
841 * we're allocating is smaller than a page
842 */
Nick Piggin84097512006-03-22 00:08:34 -0800843 base = kmalloc(len, GFP_KERNEL|__GFP_COMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (!base)
845 goto enomem;
846
847 vma->vm_start = (unsigned long) base;
848 vma->vm_end = vma->vm_start + len;
849 vma->vm_flags |= VM_MAPPED_COPY;
850
851#ifdef WARN_ON_SLACK
852 if (len + WARN_ON_SLACK <= kobjsize(result))
853 printk("Allocation of %lu bytes from process %d has %lu bytes of slack\n",
854 len, current->pid, kobjsize(result) - len);
855#endif
856
857 if (vma->vm_file) {
858 /* read the contents of a file into the copy */
859 mm_segment_t old_fs;
860 loff_t fpos;
861
862 fpos = vma->vm_pgoff;
863 fpos <<= PAGE_SHIFT;
864
865 old_fs = get_fs();
866 set_fs(KERNEL_DS);
867 ret = vma->vm_file->f_op->read(vma->vm_file, base, len, &fpos);
868 set_fs(old_fs);
869
870 if (ret < 0)
871 goto error_free;
872
873 /* clear the last little bit */
874 if (ret < len)
875 memset(base + ret, 0, len - ret);
876
877 } else {
878 /* if it's an anonymous mapping, then just clear it */
879 memset(base, 0, len);
880 }
881
882 return 0;
883
884error_free:
885 kfree(base);
886 vma->vm_start = 0;
887 return ret;
888
889enomem:
890 printk("Allocation of length %lu from process %d failed\n",
891 len, current->pid);
892 show_free_areas();
893 return -ENOMEM;
894}
895
896/*
897 * handle mapping creation for uClinux
898 */
899unsigned long do_mmap_pgoff(struct file *file,
900 unsigned long addr,
901 unsigned long len,
902 unsigned long prot,
903 unsigned long flags,
904 unsigned long pgoff)
905{
906 struct vm_list_struct *vml = NULL;
907 struct vm_area_struct *vma = NULL;
908 struct rb_node *rb;
909 unsigned long capabilities, vm_flags;
910 void *result;
911 int ret;
912
Eric Paris7cd94142007-11-26 18:47:40 -0500913 if (!(flags & MAP_FIXED))
914 addr = round_hint_to_min(addr);
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* decide whether we should attempt the mapping, and if so what sort of
917 * mapping */
918 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
919 &capabilities);
920 if (ret < 0)
921 return ret;
922
923 /* we've determined that we can make the mapping, now translate what we
924 * now know into VMA flags */
925 vm_flags = determine_vm_flags(file, prot, flags, capabilities);
926
927 /* we're going to need to record the mapping if it works */
Burman Yan4668edc2006-12-06 20:38:51 -0800928 vml = kzalloc(sizeof(struct vm_list_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (!vml)
930 goto error_getting_vml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 down_write(&nommu_vma_sem);
933
934 /* if we want to share, we need to check for VMAs created by other
935 * mmap() calls that overlap with our proposed mapping
936 * - we can only share with an exact match on most regular files
937 * - shared mappings on character devices and memory backed files are
938 * permitted to overlap inexactly as far as we are concerned for in
939 * these cases, sharing is handled in the driver or filesystem rather
940 * than here
941 */
942 if (vm_flags & VM_MAYSHARE) {
943 unsigned long pglen = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
944 unsigned long vmpglen;
945
David Howells165b2392007-03-22 00:11:24 -0800946 /* suppress VMA sharing for shared regions */
947 if (vm_flags & VM_SHARED &&
948 capabilities & BDI_CAP_MAP_DIRECT)
949 goto dont_share_VMAs;
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 for (rb = rb_first(&nommu_vma_tree); rb; rb = rb_next(rb)) {
952 vma = rb_entry(rb, struct vm_area_struct, vm_rb);
953
954 if (!(vma->vm_flags & VM_MAYSHARE))
955 continue;
956
957 /* search for overlapping mappings on the same file */
Josef Sipeke9536ae2006-12-08 02:37:21 -0800958 if (vma->vm_file->f_path.dentry->d_inode != file->f_path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 continue;
960
961 if (vma->vm_pgoff >= pgoff + pglen)
962 continue;
963
964 vmpglen = vma->vm_end - vma->vm_start + PAGE_SIZE - 1;
965 vmpglen >>= PAGE_SHIFT;
966 if (pgoff >= vma->vm_pgoff + vmpglen)
967 continue;
968
969 /* handle inexactly overlapping matches between mappings */
970 if (vma->vm_pgoff != pgoff || vmpglen != pglen) {
971 if (!(capabilities & BDI_CAP_MAP_DIRECT))
972 goto sharing_violation;
973 continue;
974 }
975
976 /* we've found a VMA we can share */
977 atomic_inc(&vma->vm_usage);
978
979 vml->vma = vma;
980 result = (void *) vma->vm_start;
981 goto shared;
982 }
983
David Howells165b2392007-03-22 00:11:24 -0800984 dont_share_VMAs:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 vma = NULL;
986
987 /* obtain the address at which to make a shared mapping
988 * - this is the hook for quasi-memory character devices to
989 * tell us the location of a shared mapping
990 */
991 if (file && file->f_op->get_unmapped_area) {
992 addr = file->f_op->get_unmapped_area(file, addr, len,
993 pgoff, flags);
994 if (IS_ERR((void *) addr)) {
995 ret = addr;
996 if (ret != (unsigned long) -ENOSYS)
997 goto error;
998
999 /* the driver refused to tell us where to site
1000 * the mapping so we'll have to attempt to copy
1001 * it */
1002 ret = (unsigned long) -ENODEV;
1003 if (!(capabilities & BDI_CAP_MAP_COPY))
1004 goto error;
1005
1006 capabilities &= ~BDI_CAP_MAP_DIRECT;
1007 }
1008 }
1009 }
1010
1011 /* we're going to need a VMA struct as well */
Burman Yan4668edc2006-12-06 20:38:51 -08001012 vma = kzalloc(sizeof(struct vm_area_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (!vma)
1014 goto error_getting_vma;
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 INIT_LIST_HEAD(&vma->anon_vma_node);
1017 atomic_set(&vma->vm_usage, 1);
Matt Helsley925d1c42008-04-29 01:01:36 -07001018 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 get_file(file);
Matt Helsley925d1c42008-04-29 01:01:36 -07001020 if (vm_flags & VM_EXECUTABLE) {
1021 added_exe_file_vma(current->mm);
1022 vma->vm_mm = current->mm;
1023 }
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 vma->vm_file = file;
1026 vma->vm_flags = vm_flags;
1027 vma->vm_start = addr;
1028 vma->vm_end = addr + len;
1029 vma->vm_pgoff = pgoff;
1030
1031 vml->vma = vma;
1032
1033 /* set up the mapping */
1034 if (file && vma->vm_flags & VM_SHARED)
1035 ret = do_mmap_shared_file(vma, len);
1036 else
1037 ret = do_mmap_private(vma, len);
1038 if (ret < 0)
1039 goto error;
1040
1041 /* okay... we have a mapping; now we have to register it */
1042 result = (void *) vma->vm_start;
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 current->mm->total_vm += len >> PAGE_SHIFT;
1045
1046 add_nommu_vma(vma);
1047
1048 shared:
David Howells30340972006-09-27 01:50:20 -07001049 add_vma_to_mm(current->mm, vml);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 up_write(&nommu_vma_sem);
1052
1053 if (prot & PROT_EXEC)
1054 flush_icache_range((unsigned long) result,
1055 (unsigned long) result + len);
1056
1057#ifdef DEBUG
1058 printk("do_mmap:\n");
1059 show_process_blocks();
1060#endif
1061
1062 return (unsigned long) result;
1063
1064 error:
1065 up_write(&nommu_vma_sem);
1066 kfree(vml);
1067 if (vma) {
Matt Helsley925d1c42008-04-29 01:01:36 -07001068 if (vma->vm_file) {
Gavin Lambert3fcd03e2006-09-30 23:27:01 -07001069 fput(vma->vm_file);
Matt Helsley925d1c42008-04-29 01:01:36 -07001070 if (vma->vm_flags & VM_EXECUTABLE)
1071 removed_exe_file_vma(vma->vm_mm);
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 kfree(vma);
1074 }
1075 return ret;
1076
1077 sharing_violation:
1078 up_write(&nommu_vma_sem);
1079 printk("Attempt to share mismatched mappings\n");
1080 kfree(vml);
1081 return -EINVAL;
1082
1083 error_getting_vma:
1084 up_write(&nommu_vma_sem);
1085 kfree(vml);
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001086 printk("Allocation of vma for %lu byte allocation from process %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 len, current->pid);
1088 show_free_areas();
1089 return -ENOMEM;
1090
1091 error_getting_vml:
1092 printk("Allocation of vml for %lu byte allocation from process %d failed\n",
1093 len, current->pid);
1094 show_free_areas();
1095 return -ENOMEM;
1096}
Paul Mundtb5073172007-07-21 04:37:25 -07001097EXPORT_SYMBOL(do_mmap_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099/*
1100 * handle mapping disposal for uClinux
1101 */
Matt Helsley925d1c42008-04-29 01:01:36 -07001102static void put_vma(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 if (vma) {
1105 down_write(&nommu_vma_sem);
1106
1107 if (atomic_dec_and_test(&vma->vm_usage)) {
1108 delete_nommu_vma(vma);
1109
1110 if (vma->vm_ops && vma->vm_ops->close)
1111 vma->vm_ops->close(vma);
1112
1113 /* IO memory and memory shared directly out of the pagecache from
1114 * ramfs/tmpfs mustn't be released here */
David Howells41836382009-01-08 12:04:47 +00001115 if (vma->vm_flags & VM_MAPPED_COPY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 kfree((void *) vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Matt Helsley925d1c42008-04-29 01:01:36 -07001118 if (vma->vm_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 fput(vma->vm_file);
Matt Helsley925d1c42008-04-29 01:01:36 -07001120 if (vma->vm_flags & VM_EXECUTABLE)
1121 removed_exe_file_vma(mm);
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 kfree(vma);
1124 }
1125
1126 up_write(&nommu_vma_sem);
1127 }
1128}
1129
David Howells30340972006-09-27 01:50:20 -07001130/*
1131 * release a mapping
1132 * - under NOMMU conditions the parameters must match exactly to the mapping to
1133 * be removed
1134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135int do_munmap(struct mm_struct *mm, unsigned long addr, size_t len)
1136{
1137 struct vm_list_struct *vml, **parent;
1138 unsigned long end = addr + len;
1139
1140#ifdef DEBUG
1141 printk("do_munmap:\n");
1142#endif
1143
David Howells30340972006-09-27 01:50:20 -07001144 for (parent = &mm->context.vmlist; *parent; parent = &(*parent)->next) {
1145 if ((*parent)->vma->vm_start > addr)
1146 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if ((*parent)->vma->vm_start == addr &&
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001148 ((len == 0) || ((*parent)->vma->vm_end == end)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 goto found;
David Howells30340972006-09-27 01:50:20 -07001150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 printk("munmap of non-mmaped memory by process %d (%s): %p\n",
1153 current->pid, current->comm, (void *) addr);
1154 return -EINVAL;
1155
1156 found:
1157 vml = *parent;
1158
Matt Helsley925d1c42008-04-29 01:01:36 -07001159 put_vma(mm, vml->vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 *parent = vml->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 kfree(vml);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001163
1164 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 mm->total_vm -= len >> PAGE_SHIFT;
1166
1167#ifdef DEBUG
1168 show_process_blocks();
1169#endif
1170
1171 return 0;
1172}
Paul Mundtb5073172007-07-21 04:37:25 -07001173EXPORT_SYMBOL(do_munmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
David Howells30340972006-09-27 01:50:20 -07001175asmlinkage long sys_munmap(unsigned long addr, size_t len)
1176{
1177 int ret;
1178 struct mm_struct *mm = current->mm;
1179
1180 down_write(&mm->mmap_sem);
1181 ret = do_munmap(mm, addr, len);
1182 up_write(&mm->mmap_sem);
1183 return ret;
1184}
1185
1186/*
1187 * Release all mappings
1188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189void exit_mmap(struct mm_struct * mm)
1190{
1191 struct vm_list_struct *tmp;
1192
1193 if (mm) {
1194#ifdef DEBUG
1195 printk("Exit_mmap:\n");
1196#endif
1197
1198 mm->total_vm = 0;
1199
1200 while ((tmp = mm->context.vmlist)) {
1201 mm->context.vmlist = tmp->next;
Matt Helsley925d1c42008-04-29 01:01:36 -07001202 put_vma(mm, tmp->vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 kfree(tmp);
1204 }
1205
1206#ifdef DEBUG
1207 show_process_blocks();
1208#endif
1209 }
1210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212unsigned long do_brk(unsigned long addr, unsigned long len)
1213{
1214 return -ENOMEM;
1215}
1216
1217/*
David Howells6fa5f802006-09-27 01:50:21 -07001218 * expand (or shrink) an existing mapping, potentially moving it at the same
1219 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 *
David Howells6fa5f802006-09-27 01:50:21 -07001221 * under NOMMU conditions, we only permit changing a mapping's size, and only
1222 * as long as it stays within the hole allocated by the kmalloc() call in
1223 * do_mmap_pgoff() and the block is not shareable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 *
David Howells6fa5f802006-09-27 01:50:21 -07001225 * MREMAP_FIXED is not supported under NOMMU conditions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 */
1227unsigned long do_mremap(unsigned long addr,
1228 unsigned long old_len, unsigned long new_len,
1229 unsigned long flags, unsigned long new_addr)
1230{
David Howells6fa5f802006-09-27 01:50:21 -07001231 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /* insanity checks first */
1234 if (new_len == 0)
1235 return (unsigned long) -EINVAL;
1236
1237 if (flags & MREMAP_FIXED && new_addr != addr)
1238 return (unsigned long) -EINVAL;
1239
David Howells6fa5f802006-09-27 01:50:21 -07001240 vma = find_vma_exact(current->mm, addr);
1241 if (!vma)
1242 return (unsigned long) -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
David Howells6fa5f802006-09-27 01:50:21 -07001244 if (vma->vm_end != vma->vm_start + old_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return (unsigned long) -EFAULT;
1246
David Howells6fa5f802006-09-27 01:50:21 -07001247 if (vma->vm_flags & VM_MAYSHARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return (unsigned long) -EPERM;
1249
1250 if (new_len > kobjsize((void *) addr))
1251 return (unsigned long) -ENOMEM;
1252
1253 /* all checks complete - do it */
David Howells6fa5f802006-09-27 01:50:21 -07001254 vma->vm_end = vma->vm_start + new_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
David Howells6fa5f802006-09-27 01:50:21 -07001256 return vma->vm_start;
1257}
Paul Mundtb5073172007-07-21 04:37:25 -07001258EXPORT_SYMBOL(do_mremap);
David Howells6fa5f802006-09-27 01:50:21 -07001259
1260asmlinkage unsigned long sys_mremap(unsigned long addr,
1261 unsigned long old_len, unsigned long new_len,
1262 unsigned long flags, unsigned long new_addr)
1263{
1264 unsigned long ret;
1265
1266 down_write(&current->mm->mmap_sem);
1267 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
1268 up_write(&current->mm->mmap_sem);
1269 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Linus Torvalds6aab3412005-11-28 14:34:23 -08001272struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001273 unsigned int foll_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 return NULL;
1276}
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278int remap_pfn_range(struct vm_area_struct *vma, unsigned long from,
1279 unsigned long to, unsigned long size, pgprot_t prot)
1280{
Greg Ungerer66aa2b42005-09-12 11:18:10 +10001281 vma->vm_start = vma->vm_pgoff << PAGE_SHIFT;
1282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
Luke Yang22c4af42006-07-14 00:24:09 -07001284EXPORT_SYMBOL(remap_pfn_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Paul Mundtf905bc42008-02-04 22:29:59 -08001286int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1287 unsigned long pgoff)
1288{
1289 unsigned int size = vma->vm_end - vma->vm_start;
1290
1291 if (!(vma->vm_flags & VM_USERMAP))
1292 return -EINVAL;
1293
1294 vma->vm_start = (unsigned long)(addr + (pgoff << PAGE_SHIFT));
1295 vma->vm_end = vma->vm_start + size;
1296
1297 return 0;
1298}
1299EXPORT_SYMBOL(remap_vmalloc_range);
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301void swap_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1302{
1303}
1304
1305unsigned long arch_get_unmapped_area(struct file *file, unsigned long addr,
1306 unsigned long len, unsigned long pgoff, unsigned long flags)
1307{
1308 return -ENOMEM;
1309}
1310
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001311void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313}
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315void unmap_mapping_range(struct address_space *mapping,
1316 loff_t const holebegin, loff_t const holelen,
1317 int even_cows)
1318{
1319}
Luke Yang22c4af42006-07-14 00:24:09 -07001320EXPORT_SYMBOL(unmap_mapping_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322/*
David Howellsd56e03c2007-03-22 00:11:23 -08001323 * ask for an unmapped area at which to create a mapping on a file
1324 */
1325unsigned long get_unmapped_area(struct file *file, unsigned long addr,
1326 unsigned long len, unsigned long pgoff,
1327 unsigned long flags)
1328{
1329 unsigned long (*get_area)(struct file *, unsigned long, unsigned long,
1330 unsigned long, unsigned long);
1331
1332 get_area = current->mm->get_unmapped_area;
1333 if (file && file->f_op && file->f_op->get_unmapped_area)
1334 get_area = file->f_op->get_unmapped_area;
1335
1336 if (!get_area)
1337 return -ENOSYS;
1338
1339 return get_area(file, addr, len, pgoff, flags);
1340}
David Howellsd56e03c2007-03-22 00:11:23 -08001341EXPORT_SYMBOL(get_unmapped_area);
1342
1343/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 * Check that a process has enough memory to allocate a new virtual
1345 * mapping. 0 means there is enough memory for the allocation to
1346 * succeed and -ENOMEM implies there is not.
1347 *
1348 * We currently support three overcommit policies, which are set via the
1349 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1350 *
1351 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1352 * Additional code 2002 Jul 20 by Robert Love.
1353 *
1354 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1355 *
1356 * Note this is a helper function intended to be used by LSMs which
1357 * wish to use this logic.
1358 */
Alan Cox34b4e4a2007-08-22 14:01:28 -07001359int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
1361 unsigned long free, allowed;
1362
1363 vm_acct_memory(pages);
1364
1365 /*
1366 * Sometimes we want to use more memory than we have
1367 */
1368 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
1369 return 0;
1370
1371 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
1372 unsigned long n;
1373
Christoph Lameter347ce432006-06-30 01:55:35 -07001374 free = global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 free += nr_swap_pages;
1376
1377 /*
1378 * Any slabs which are created with the
1379 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1380 * which are reclaimable, under pressure. The dentry
1381 * cache and most inode caches should fall into this
1382 */
Christoph Lameter972d1a72006-09-25 23:31:51 -07001383 free += global_page_state(NR_SLAB_RECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /*
1386 * Leave the last 3% for root
1387 */
1388 if (!cap_sys_admin)
1389 free -= free / 32;
1390
1391 if (free > pages)
1392 return 0;
1393
1394 /*
1395 * nr_free_pages() is very expensive on large systems,
1396 * only call if we're about to fail.
1397 */
1398 n = nr_free_pages();
Hideo AOKId5ddc792006-04-10 22:53:01 -07001399
1400 /*
1401 * Leave reserved pages. The pages are not for anonymous pages.
1402 */
1403 if (n <= totalreserve_pages)
1404 goto error;
1405 else
1406 n -= totalreserve_pages;
1407
1408 /*
1409 * Leave the last 3% for root
1410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (!cap_sys_admin)
1412 n -= n / 32;
1413 free += n;
1414
1415 if (free > pages)
1416 return 0;
Hideo AOKId5ddc792006-04-10 22:53:01 -07001417
1418 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420
1421 allowed = totalram_pages * sysctl_overcommit_ratio / 100;
1422 /*
1423 * Leave the last 3% for root
1424 */
1425 if (!cap_sys_admin)
1426 allowed -= allowed / 32;
1427 allowed += total_swap_pages;
1428
1429 /* Don't let a single process grow too big:
1430 leave 3% of the size of this process for other processes */
Alan Cox731572d2008-10-29 14:01:20 -07001431 if (mm)
1432 allowed -= mm->total_vm / 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Simon Derr2f60f8d2005-08-04 19:52:03 -07001434 /*
1435 * cast `allowed' as a signed long because vm_committed_space
1436 * sometimes has a negative value
1437 */
Alan Cox80119ef2008-05-23 13:04:31 -07001438 if (atomic_long_read(&vm_committed_space) < (long)allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return 0;
Hideo AOKId5ddc792006-04-10 22:53:01 -07001440error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 vm_unacct_memory(pages);
1442
1443 return -ENOMEM;
1444}
1445
1446int in_gate_area_no_task(unsigned long addr)
1447{
1448 return 0;
1449}
David Howellsb0e15192006-01-06 00:11:42 -08001450
Nick Piggind0217ac2007-07-19 01:47:03 -07001451int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
David Howellsb0e15192006-01-06 00:11:42 -08001452{
1453 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001454 return 0;
David Howellsb0e15192006-01-06 00:11:42 -08001455}
Paul Mundtb5073172007-07-21 04:37:25 -07001456EXPORT_SYMBOL(filemap_fault);
David Howells0ec76a12006-09-27 01:50:15 -07001457
1458/*
1459 * Access another process' address space.
1460 * - source/target buffer must be kernel space
1461 */
1462int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
1463{
David Howells0ec76a12006-09-27 01:50:15 -07001464 struct vm_area_struct *vma;
1465 struct mm_struct *mm;
1466
1467 if (addr + len < addr)
1468 return 0;
1469
1470 mm = get_task_mm(tsk);
1471 if (!mm)
1472 return 0;
1473
1474 down_read(&mm->mmap_sem);
1475
1476 /* the access must start within one of the target process's mappings */
David Howells0159b142006-09-27 01:50:16 -07001477 vma = find_vma(mm, addr);
1478 if (vma) {
David Howells0ec76a12006-09-27 01:50:15 -07001479 /* don't overrun this mapping */
1480 if (addr + len >= vma->vm_end)
1481 len = vma->vm_end - addr;
1482
1483 /* only read or write mappings where it is permitted */
David Howellsd00c7b992006-09-27 01:50:19 -07001484 if (write && vma->vm_flags & VM_MAYWRITE)
David Howells0ec76a12006-09-27 01:50:15 -07001485 len -= copy_to_user((void *) addr, buf, len);
David Howellsd00c7b992006-09-27 01:50:19 -07001486 else if (!write && vma->vm_flags & VM_MAYREAD)
David Howells0ec76a12006-09-27 01:50:15 -07001487 len -= copy_from_user(buf, (void *) addr, len);
1488 else
1489 len = 0;
1490 } else {
1491 len = 0;
1492 }
1493
1494 up_read(&mm->mmap_sem);
1495 mmput(mm);
1496 return len;
1497}