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).
7 * See Documentation/nommu-mmap.txt
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>
16 #include <linux/mman.h>
17 #include <linux/swap.h>
18 #include <linux/file.h>
19 #include <linux/highmem.h>
20 #include <linux/pagemap.h>
21 #include <linux/slab.h>
22 #include <linux/vmalloc.h>
23 #include <linux/ptrace.h>
24 #include <linux/blkdev.h>
25 #include <linux/backing-dev.h>
26 #include <linux/mount.h>
27 #include <linux/personality.h>
28 #include <linux/security.h>
29 #include <linux/syscalls.h>
31 #include <asm/uaccess.h>
33 #include <asm/tlbflush.h>
37 unsigned long max_mapnr
;
38 unsigned long num_physpages
;
39 unsigned long askedalloc
, realalloc
;
40 atomic_t vm_committed_space
= ATOMIC_INIT(0);
41 int sysctl_overcommit_memory
= OVERCOMMIT_GUESS
; /* heuristic overcommit */
42 int sysctl_overcommit_ratio
= 50; /* default is 50% */
43 int sysctl_max_map_count
= DEFAULT_MAX_MAP_COUNT
;
44 int heap_stack_gap
= 0;
46 EXPORT_SYMBOL(mem_map
);
47 EXPORT_SYMBOL(num_physpages
);
49 /* list of shareable VMAs */
50 struct rb_root nommu_vma_tree
= RB_ROOT
;
51 DECLARE_RWSEM(nommu_vma_sem
);
53 struct vm_operations_struct generic_file_vm_ops
= {
57 * Handle all mappings that got truncated by a "truncate()"
60 * NOTE! We have to be ready to update the memory sharing
61 * between the file and the memory map for a potential last
62 * incomplete page. Ugly, but necessary.
64 int vmtruncate(struct inode
*inode
, loff_t offset
)
66 struct address_space
*mapping
= inode
->i_mapping
;
69 if (inode
->i_size
< offset
)
71 i_size_write(inode
, offset
);
73 truncate_inode_pages(mapping
, offset
);
77 limit
= current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
;
78 if (limit
!= RLIM_INFINITY
&& offset
> limit
)
80 if (offset
> inode
->i_sb
->s_maxbytes
)
82 i_size_write(inode
, offset
);
85 if (inode
->i_op
&& inode
->i_op
->truncate
)
86 inode
->i_op
->truncate(inode
);
89 send_sig(SIGXFSZ
, current
, 0);
94 EXPORT_SYMBOL(vmtruncate
);
97 * Return the total memory allocated for this pointer, not
98 * just what the caller asked for.
100 * Doesn't have to be accurate, i.e. may have races.
102 unsigned int kobjsize(const void *objp
)
106 if (!objp
|| !((page
= virt_to_page(objp
))))
112 BUG_ON(page
->index
< 0);
113 BUG_ON(page
->index
>= MAX_ORDER
);
115 return (PAGE_SIZE
<< page
->index
);
119 * get a list of pages in an address range belonging to the specified process
120 * and indicate the VMA that covers each page
121 * - this is potentially dodgy as we may end incrementing the page count of a
122 * slab page or a secondary page from a compound page
123 * - don't permit access to VMAs that don't support it, such as I/O mappings
125 int get_user_pages(struct task_struct
*tsk
, struct mm_struct
*mm
,
126 unsigned long start
, int len
, int write
, int force
,
127 struct page
**pages
, struct vm_area_struct
**vmas
)
129 struct vm_area_struct
*vma
;
130 unsigned long vm_flags
;
133 /* calculate required read or write permissions.
134 * - if 'force' is set, we only require the "MAY" flags.
136 vm_flags
= write
? (VM_WRITE
| VM_MAYWRITE
) : (VM_READ
| VM_MAYREAD
);
137 vm_flags
&= force
? (VM_MAYREAD
| VM_MAYWRITE
) : (VM_READ
| VM_WRITE
);
139 for (i
= 0; i
< len
; i
++) {
140 vma
= find_vma(mm
, start
);
142 goto finish_or_fault
;
144 /* protect what we can, including chardevs */
145 if (vma
->vm_flags
& (VM_IO
| VM_PFNMAP
) ||
146 !(vm_flags
& vma
->vm_flags
))
147 goto finish_or_fault
;
150 pages
[i
] = virt_to_page(start
);
152 page_cache_get(pages
[i
]);
162 return i
? : -EFAULT
;
164 EXPORT_SYMBOL(get_user_pages
);
166 DEFINE_RWLOCK(vmlist_lock
);
167 struct vm_struct
*vmlist
;
169 void vfree(void *addr
)
173 EXPORT_SYMBOL(vfree
);
175 void *__vmalloc(unsigned long size
, gfp_t gfp_mask
, pgprot_t prot
)
178 * kmalloc doesn't like __GFP_HIGHMEM for some reason
180 return kmalloc(size
, (gfp_mask
| __GFP_COMP
) & ~__GFP_HIGHMEM
);
182 EXPORT_SYMBOL(__vmalloc
);
184 struct page
* vmalloc_to_page(void *addr
)
186 return virt_to_page(addr
);
188 EXPORT_SYMBOL(vmalloc_to_page
);
190 unsigned long vmalloc_to_pfn(void *addr
)
192 return page_to_pfn(virt_to_page(addr
));
194 EXPORT_SYMBOL(vmalloc_to_pfn
);
196 long vread(char *buf
, char *addr
, unsigned long count
)
198 memcpy(buf
, addr
, count
);
202 long vwrite(char *buf
, char *addr
, unsigned long count
)
204 /* Don't allow overflow */
205 if ((unsigned long) addr
+ count
< count
)
206 count
= -(unsigned long) addr
;
208 memcpy(addr
, buf
, count
);
213 * vmalloc - allocate virtually continguos memory
215 * @size: allocation size
217 * Allocate enough pages to cover @size from the page level
218 * allocator and map them into continguos kernel virtual space.
220 * For tight control over page level allocator and protection flags
221 * use __vmalloc() instead.
223 void *vmalloc(unsigned long size
)
225 return __vmalloc(size
, GFP_KERNEL
| __GFP_HIGHMEM
, PAGE_KERNEL
);
227 EXPORT_SYMBOL(vmalloc
);
229 void *vmalloc_node(unsigned long size
, int node
)
231 return vmalloc(size
);
233 EXPORT_SYMBOL(vmalloc_node
);
236 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
237 * @size: allocation size
239 * Allocate enough 32bit PA addressable pages to cover @size from the
240 * page level allocator and map them into continguos kernel virtual space.
242 void *vmalloc_32(unsigned long size
)
244 return __vmalloc(size
, GFP_KERNEL
, PAGE_KERNEL
);
246 EXPORT_SYMBOL(vmalloc_32
);
249 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
250 * @size: allocation size
252 * The resulting memory area is 32bit addressable and zeroed so it can be
253 * mapped to userspace without leaking data.
255 void *vmalloc_32_user(unsigned long size
)
257 return __vmalloc(size
, GFP_KERNEL
| __GFP_ZERO
, PAGE_KERNEL
);
259 EXPORT_SYMBOL(vmalloc_32_user
);
261 void *vmap(struct page
**pages
, unsigned int count
, unsigned long flags
, pgprot_t prot
)
268 void vunmap(void *addr
)
272 EXPORT_SYMBOL(vunmap
);
275 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
278 void __attribute__((weak
)) vmalloc_sync_all(void)
282 int vm_insert_page(struct vm_area_struct
*vma
, unsigned long addr
,
287 EXPORT_SYMBOL(vm_insert_page
);
290 * sys_brk() for the most part doesn't need the global kernel
291 * lock, except when an application is doing something nasty
292 * like trying to un-brk an area that has already been mapped
293 * to a regular file. in this case, the unmapping will need
294 * to invoke file system routines that need the global lock.
296 asmlinkage
unsigned long sys_brk(unsigned long brk
)
298 struct mm_struct
*mm
= current
->mm
;
300 if (brk
< mm
->start_brk
|| brk
> mm
->context
.end_brk
)
307 * Always allow shrinking brk
309 if (brk
<= mm
->brk
) {
315 * Ok, looks good - let it rip.
317 return mm
->brk
= brk
;
321 static void show_process_blocks(void)
323 struct vm_list_struct
*vml
;
325 printk("Process blocks %d:", current
->pid
);
327 for (vml
= ¤t
->mm
->context
.vmlist
; vml
; vml
= vml
->next
) {
328 printk(" %p: %p", vml
, vml
->vma
);
330 printk(" (%d @%lx #%d)",
331 kobjsize((void *) vml
->vma
->vm_start
),
333 atomic_read(&vml
->vma
->vm_usage
));
334 printk(vml
->next
? " ->" : ".\n");
340 * add a VMA into a process's mm_struct in the appropriate place in the list
341 * - should be called with mm->mmap_sem held writelocked
343 static void add_vma_to_mm(struct mm_struct
*mm
, struct vm_list_struct
*vml
)
345 struct vm_list_struct
**ppv
;
347 for (ppv
= ¤t
->mm
->context
.vmlist
; *ppv
; ppv
= &(*ppv
)->next
)
348 if ((*ppv
)->vma
->vm_start
> vml
->vma
->vm_start
)
356 * look up the first VMA in which addr resides, NULL if none
357 * - should be called with mm->mmap_sem at least held readlocked
359 struct vm_area_struct
*find_vma(struct mm_struct
*mm
, unsigned long addr
)
361 struct vm_list_struct
*loop
, *vml
;
363 /* search the vm_start ordered list */
365 for (loop
= mm
->context
.vmlist
; loop
; loop
= loop
->next
) {
366 if (loop
->vma
->vm_start
> addr
)
371 if (vml
&& vml
->vma
->vm_end
> addr
)
376 EXPORT_SYMBOL(find_vma
);
380 * - we don't extend stack VMAs under NOMMU conditions
382 struct vm_area_struct
*find_extend_vma(struct mm_struct
*mm
, unsigned long addr
)
384 return find_vma(mm
, addr
);
387 int expand_stack(struct vm_area_struct
*vma
, unsigned long address
)
393 * look up the first VMA exactly that exactly matches addr
394 * - should be called with mm->mmap_sem at least held readlocked
396 static inline struct vm_area_struct
*find_vma_exact(struct mm_struct
*mm
,
399 struct vm_list_struct
*vml
;
401 /* search the vm_start ordered list */
402 for (vml
= mm
->context
.vmlist
; vml
; vml
= vml
->next
) {
403 if (vml
->vma
->vm_start
== addr
)
405 if (vml
->vma
->vm_start
> addr
)
413 * find a VMA in the global tree
415 static inline struct vm_area_struct
*find_nommu_vma(unsigned long start
)
417 struct vm_area_struct
*vma
;
418 struct rb_node
*n
= nommu_vma_tree
.rb_node
;
421 vma
= rb_entry(n
, struct vm_area_struct
, vm_rb
);
423 if (start
< vma
->vm_start
)
425 else if (start
> vma
->vm_start
)
435 * add a VMA in the global tree
437 static void add_nommu_vma(struct vm_area_struct
*vma
)
439 struct vm_area_struct
*pvma
;
440 struct address_space
*mapping
;
441 struct rb_node
**p
= &nommu_vma_tree
.rb_node
;
442 struct rb_node
*parent
= NULL
;
444 /* add the VMA to the mapping */
446 mapping
= vma
->vm_file
->f_mapping
;
448 flush_dcache_mmap_lock(mapping
);
449 vma_prio_tree_insert(vma
, &mapping
->i_mmap
);
450 flush_dcache_mmap_unlock(mapping
);
453 /* add the VMA to the master list */
456 pvma
= rb_entry(parent
, struct vm_area_struct
, vm_rb
);
458 if (vma
->vm_start
< pvma
->vm_start
) {
461 else if (vma
->vm_start
> pvma
->vm_start
) {
465 /* mappings are at the same address - this can only
466 * happen for shared-mem chardevs and shared file
467 * mappings backed by ramfs/tmpfs */
468 BUG_ON(!(pvma
->vm_flags
& VM_SHARED
));
479 rb_link_node(&vma
->vm_rb
, parent
, p
);
480 rb_insert_color(&vma
->vm_rb
, &nommu_vma_tree
);
484 * delete a VMA from the global list
486 static void delete_nommu_vma(struct vm_area_struct
*vma
)
488 struct address_space
*mapping
;
490 /* remove the VMA from the mapping */
492 mapping
= vma
->vm_file
->f_mapping
;
494 flush_dcache_mmap_lock(mapping
);
495 vma_prio_tree_remove(vma
, &mapping
->i_mmap
);
496 flush_dcache_mmap_unlock(mapping
);
499 /* remove from the master list */
500 rb_erase(&vma
->vm_rb
, &nommu_vma_tree
);
504 * determine whether a mapping should be permitted and, if so, what sort of
505 * mapping we're capable of supporting
507 static int validate_mmap_request(struct file
*file
,
513 unsigned long *_capabilities
)
515 unsigned long capabilities
;
516 unsigned long reqprot
= prot
;
519 /* do the simple checks first */
520 if (flags
& MAP_FIXED
|| addr
) {
522 "%d: Can't do fixed-address/overlay mmap of RAM\n",
527 if ((flags
& MAP_TYPE
) != MAP_PRIVATE
&&
528 (flags
& MAP_TYPE
) != MAP_SHARED
)
534 /* Careful about overflows.. */
535 len
= PAGE_ALIGN(len
);
536 if (!len
|| len
> TASK_SIZE
)
539 /* offset overflow? */
540 if ((pgoff
+ (len
>> PAGE_SHIFT
)) < pgoff
)
544 /* validate file mapping requests */
545 struct address_space
*mapping
;
547 /* files must support mmap */
548 if (!file
->f_op
|| !file
->f_op
->mmap
)
551 /* work out if what we've got could possibly be shared
552 * - we support chardevs that provide their own "memory"
553 * - we support files/blockdevs that are memory backed
555 mapping
= file
->f_mapping
;
557 mapping
= file
->f_path
.dentry
->d_inode
->i_mapping
;
560 if (mapping
&& mapping
->backing_dev_info
)
561 capabilities
= mapping
->backing_dev_info
->capabilities
;
564 /* no explicit capabilities set, so assume some
566 switch (file
->f_path
.dentry
->d_inode
->i_mode
& S_IFMT
) {
569 capabilities
= BDI_CAP_MAP_COPY
;
584 /* eliminate any capabilities that we can't support on this
586 if (!file
->f_op
->get_unmapped_area
)
587 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
588 if (!file
->f_op
->read
)
589 capabilities
&= ~BDI_CAP_MAP_COPY
;
591 if (flags
& MAP_SHARED
) {
592 /* do checks for writing, appending and locking */
593 if ((prot
& PROT_WRITE
) &&
594 !(file
->f_mode
& FMODE_WRITE
))
597 if (IS_APPEND(file
->f_path
.dentry
->d_inode
) &&
598 (file
->f_mode
& FMODE_WRITE
))
601 if (locks_verify_locked(file
->f_path
.dentry
->d_inode
))
604 if (!(capabilities
& BDI_CAP_MAP_DIRECT
))
607 if (((prot
& PROT_READ
) && !(capabilities
& BDI_CAP_READ_MAP
)) ||
608 ((prot
& PROT_WRITE
) && !(capabilities
& BDI_CAP_WRITE_MAP
)) ||
609 ((prot
& PROT_EXEC
) && !(capabilities
& BDI_CAP_EXEC_MAP
))
611 printk("MAP_SHARED not completely supported on !MMU\n");
615 /* we mustn't privatise shared mappings */
616 capabilities
&= ~BDI_CAP_MAP_COPY
;
619 /* we're going to read the file into private memory we
621 if (!(capabilities
& BDI_CAP_MAP_COPY
))
624 /* we don't permit a private writable mapping to be
625 * shared with the backing device */
626 if (prot
& PROT_WRITE
)
627 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
630 /* handle executable mappings and implied executable
632 if (file
->f_path
.mnt
->mnt_flags
& MNT_NOEXEC
) {
633 if (prot
& PROT_EXEC
)
636 else if ((prot
& PROT_READ
) && !(prot
& PROT_EXEC
)) {
637 /* handle implication of PROT_EXEC by PROT_READ */
638 if (current
->personality
& READ_IMPLIES_EXEC
) {
639 if (capabilities
& BDI_CAP_EXEC_MAP
)
643 else if ((prot
& PROT_READ
) &&
644 (prot
& PROT_EXEC
) &&
645 !(capabilities
& BDI_CAP_EXEC_MAP
)
647 /* backing file is not executable, try to copy */
648 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
652 /* anonymous mappings are always memory backed and can be
655 capabilities
= BDI_CAP_MAP_COPY
;
657 /* handle PROT_EXEC implication by PROT_READ */
658 if ((prot
& PROT_READ
) &&
659 (current
->personality
& READ_IMPLIES_EXEC
))
663 /* allow the security API to have its say */
664 ret
= security_file_mmap(file
, reqprot
, prot
, flags
, addr
, 0);
669 *_capabilities
= capabilities
;
674 * we've determined that we can make the mapping, now translate what we
675 * now know into VMA flags
677 static unsigned long determine_vm_flags(struct file
*file
,
680 unsigned long capabilities
)
682 unsigned long vm_flags
;
684 vm_flags
= calc_vm_prot_bits(prot
) | calc_vm_flag_bits(flags
);
685 vm_flags
|= VM_MAYREAD
| VM_MAYWRITE
| VM_MAYEXEC
;
686 /* vm_flags |= mm->def_flags; */
688 if (!(capabilities
& BDI_CAP_MAP_DIRECT
)) {
689 /* attempt to share read-only copies of mapped file chunks */
690 if (file
&& !(prot
& PROT_WRITE
))
691 vm_flags
|= VM_MAYSHARE
;
694 /* overlay a shareable mapping on the backing device or inode
695 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
697 if (flags
& MAP_SHARED
)
698 vm_flags
|= VM_MAYSHARE
| VM_SHARED
;
699 else if ((((vm_flags
& capabilities
) ^ vm_flags
) & BDI_CAP_VMFLAGS
) == 0)
700 vm_flags
|= VM_MAYSHARE
;
703 /* refuse to let anyone share private mappings with this process if
704 * it's being traced - otherwise breakpoints set in it may interfere
705 * with another untraced process
707 if ((flags
& MAP_PRIVATE
) && (current
->ptrace
& PT_PTRACED
))
708 vm_flags
&= ~VM_MAYSHARE
;
714 * set up a shared mapping on a file
716 static int do_mmap_shared_file(struct vm_area_struct
*vma
, unsigned long len
)
720 ret
= vma
->vm_file
->f_op
->mmap(vma
->vm_file
, vma
);
724 /* getting an ENOSYS error indicates that direct mmap isn't
725 * possible (as opposed to tried but failed) so we'll fall
726 * through to making a private copy of the data and mapping
732 * set up a private mapping or an anonymous shared mapping
734 static int do_mmap_private(struct vm_area_struct
*vma
, unsigned long len
)
739 /* invoke the file's mapping function so that it can keep track of
740 * shared mappings on devices or memory
741 * - VM_MAYSHARE will be set if it may attempt to share
744 ret
= vma
->vm_file
->f_op
->mmap(vma
->vm_file
, vma
);
745 if (ret
!= -ENOSYS
) {
746 /* shouldn't return success if we're not sharing */
747 BUG_ON(ret
== 0 && !(vma
->vm_flags
& VM_MAYSHARE
));
748 return ret
; /* success or a real error */
751 /* getting an ENOSYS error indicates that direct mmap isn't
752 * possible (as opposed to tried but failed) so we'll try to
753 * make a private copy of the data and map that instead */
756 /* allocate some memory to hold the mapping
757 * - note that this may not return a page-aligned address if the object
758 * we're allocating is smaller than a page
760 base
= kmalloc(len
, GFP_KERNEL
|__GFP_COMP
);
764 vma
->vm_start
= (unsigned long) base
;
765 vma
->vm_end
= vma
->vm_start
+ len
;
766 vma
->vm_flags
|= VM_MAPPED_COPY
;
769 if (len
+ WARN_ON_SLACK
<= kobjsize(result
))
770 printk("Allocation of %lu bytes from process %d has %lu bytes of slack\n",
771 len
, current
->pid
, kobjsize(result
) - len
);
775 /* read the contents of a file into the copy */
779 fpos
= vma
->vm_pgoff
;
784 ret
= vma
->vm_file
->f_op
->read(vma
->vm_file
, base
, len
, &fpos
);
790 /* clear the last little bit */
792 memset(base
+ ret
, 0, len
- ret
);
795 /* if it's an anonymous mapping, then just clear it */
796 memset(base
, 0, len
);
807 printk("Allocation of length %lu from process %d failed\n",
814 * handle mapping creation for uClinux
816 unsigned long do_mmap_pgoff(struct file
*file
,
823 struct vm_list_struct
*vml
= NULL
;
824 struct vm_area_struct
*vma
= NULL
;
826 unsigned long capabilities
, vm_flags
;
830 /* decide whether we should attempt the mapping, and if so what sort of
832 ret
= validate_mmap_request(file
, addr
, len
, prot
, flags
, pgoff
,
837 /* we've determined that we can make the mapping, now translate what we
838 * now know into VMA flags */
839 vm_flags
= determine_vm_flags(file
, prot
, flags
, capabilities
);
841 /* we're going to need to record the mapping if it works */
842 vml
= kzalloc(sizeof(struct vm_list_struct
), GFP_KERNEL
);
844 goto error_getting_vml
;
846 down_write(&nommu_vma_sem
);
848 /* if we want to share, we need to check for VMAs created by other
849 * mmap() calls that overlap with our proposed mapping
850 * - we can only share with an exact match on most regular files
851 * - shared mappings on character devices and memory backed files are
852 * permitted to overlap inexactly as far as we are concerned for in
853 * these cases, sharing is handled in the driver or filesystem rather
856 if (vm_flags
& VM_MAYSHARE
) {
857 unsigned long pglen
= (len
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
858 unsigned long vmpglen
;
860 /* suppress VMA sharing for shared regions */
861 if (vm_flags
& VM_SHARED
&&
862 capabilities
& BDI_CAP_MAP_DIRECT
)
863 goto dont_share_VMAs
;
865 for (rb
= rb_first(&nommu_vma_tree
); rb
; rb
= rb_next(rb
)) {
866 vma
= rb_entry(rb
, struct vm_area_struct
, vm_rb
);
868 if (!(vma
->vm_flags
& VM_MAYSHARE
))
871 /* search for overlapping mappings on the same file */
872 if (vma
->vm_file
->f_path
.dentry
->d_inode
!= file
->f_path
.dentry
->d_inode
)
875 if (vma
->vm_pgoff
>= pgoff
+ pglen
)
878 vmpglen
= vma
->vm_end
- vma
->vm_start
+ PAGE_SIZE
- 1;
879 vmpglen
>>= PAGE_SHIFT
;
880 if (pgoff
>= vma
->vm_pgoff
+ vmpglen
)
883 /* handle inexactly overlapping matches between mappings */
884 if (vma
->vm_pgoff
!= pgoff
|| vmpglen
!= pglen
) {
885 if (!(capabilities
& BDI_CAP_MAP_DIRECT
))
886 goto sharing_violation
;
890 /* we've found a VMA we can share */
891 atomic_inc(&vma
->vm_usage
);
894 result
= (void *) vma
->vm_start
;
901 /* obtain the address at which to make a shared mapping
902 * - this is the hook for quasi-memory character devices to
903 * tell us the location of a shared mapping
905 if (file
&& file
->f_op
->get_unmapped_area
) {
906 addr
= file
->f_op
->get_unmapped_area(file
, addr
, len
,
908 if (IS_ERR((void *) addr
)) {
910 if (ret
!= (unsigned long) -ENOSYS
)
913 /* the driver refused to tell us where to site
914 * the mapping so we'll have to attempt to copy
916 ret
= (unsigned long) -ENODEV
;
917 if (!(capabilities
& BDI_CAP_MAP_COPY
))
920 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
925 /* we're going to need a VMA struct as well */
926 vma
= kzalloc(sizeof(struct vm_area_struct
), GFP_KERNEL
);
928 goto error_getting_vma
;
930 INIT_LIST_HEAD(&vma
->anon_vma_node
);
931 atomic_set(&vma
->vm_usage
, 1);
935 vma
->vm_flags
= vm_flags
;
936 vma
->vm_start
= addr
;
937 vma
->vm_end
= addr
+ len
;
938 vma
->vm_pgoff
= pgoff
;
942 /* set up the mapping */
943 if (file
&& vma
->vm_flags
& VM_SHARED
)
944 ret
= do_mmap_shared_file(vma
, len
);
946 ret
= do_mmap_private(vma
, len
);
950 /* okay... we have a mapping; now we have to register it */
951 result
= (void *) vma
->vm_start
;
953 if (vma
->vm_flags
& VM_MAPPED_COPY
) {
954 realalloc
+= kobjsize(result
);
958 realalloc
+= kobjsize(vma
);
959 askedalloc
+= sizeof(*vma
);
961 current
->mm
->total_vm
+= len
>> PAGE_SHIFT
;
966 realalloc
+= kobjsize(vml
);
967 askedalloc
+= sizeof(*vml
);
969 add_vma_to_mm(current
->mm
, vml
);
971 up_write(&nommu_vma_sem
);
973 if (prot
& PROT_EXEC
)
974 flush_icache_range((unsigned long) result
,
975 (unsigned long) result
+ len
);
978 printk("do_mmap:\n");
979 show_process_blocks();
982 return (unsigned long) result
;
985 up_write(&nommu_vma_sem
);
995 up_write(&nommu_vma_sem
);
996 printk("Attempt to share mismatched mappings\n");
1001 up_write(&nommu_vma_sem
);
1003 printk("Allocation of vma for %lu byte allocation from process %d failed\n",
1009 printk("Allocation of vml for %lu byte allocation from process %d failed\n",
1014 EXPORT_SYMBOL(do_mmap_pgoff
);
1017 * handle mapping disposal for uClinux
1019 static void put_vma(struct vm_area_struct
*vma
)
1022 down_write(&nommu_vma_sem
);
1024 if (atomic_dec_and_test(&vma
->vm_usage
)) {
1025 delete_nommu_vma(vma
);
1027 if (vma
->vm_ops
&& vma
->vm_ops
->close
)
1028 vma
->vm_ops
->close(vma
);
1030 /* IO memory and memory shared directly out of the pagecache from
1031 * ramfs/tmpfs mustn't be released here */
1032 if (vma
->vm_flags
& VM_MAPPED_COPY
) {
1033 realalloc
-= kobjsize((void *) vma
->vm_start
);
1034 askedalloc
-= vma
->vm_end
- vma
->vm_start
;
1035 kfree((void *) vma
->vm_start
);
1038 realalloc
-= kobjsize(vma
);
1039 askedalloc
-= sizeof(*vma
);
1046 up_write(&nommu_vma_sem
);
1052 * - under NOMMU conditions the parameters must match exactly to the mapping to
1055 int do_munmap(struct mm_struct
*mm
, unsigned long addr
, size_t len
)
1057 struct vm_list_struct
*vml
, **parent
;
1058 unsigned long end
= addr
+ len
;
1061 printk("do_munmap:\n");
1064 for (parent
= &mm
->context
.vmlist
; *parent
; parent
= &(*parent
)->next
) {
1065 if ((*parent
)->vma
->vm_start
> addr
)
1067 if ((*parent
)->vma
->vm_start
== addr
&&
1068 ((len
== 0) || ((*parent
)->vma
->vm_end
== end
)))
1072 printk("munmap of non-mmaped memory by process %d (%s): %p\n",
1073 current
->pid
, current
->comm
, (void *) addr
);
1081 *parent
= vml
->next
;
1082 realalloc
-= kobjsize(vml
);
1083 askedalloc
-= sizeof(*vml
);
1086 update_hiwater_vm(mm
);
1087 mm
->total_vm
-= len
>> PAGE_SHIFT
;
1090 show_process_blocks();
1095 EXPORT_SYMBOL(do_munmap
);
1097 asmlinkage
long sys_munmap(unsigned long addr
, size_t len
)
1100 struct mm_struct
*mm
= current
->mm
;
1102 down_write(&mm
->mmap_sem
);
1103 ret
= do_munmap(mm
, addr
, len
);
1104 up_write(&mm
->mmap_sem
);
1109 * Release all mappings
1111 void exit_mmap(struct mm_struct
* mm
)
1113 struct vm_list_struct
*tmp
;
1117 printk("Exit_mmap:\n");
1122 while ((tmp
= mm
->context
.vmlist
)) {
1123 mm
->context
.vmlist
= tmp
->next
;
1126 realalloc
-= kobjsize(tmp
);
1127 askedalloc
-= sizeof(*tmp
);
1132 show_process_blocks();
1137 unsigned long do_brk(unsigned long addr
, unsigned long len
)
1143 * expand (or shrink) an existing mapping, potentially moving it at the same
1144 * time (controlled by the MREMAP_MAYMOVE flag and available VM space)
1146 * under NOMMU conditions, we only permit changing a mapping's size, and only
1147 * as long as it stays within the hole allocated by the kmalloc() call in
1148 * do_mmap_pgoff() and the block is not shareable
1150 * MREMAP_FIXED is not supported under NOMMU conditions
1152 unsigned long do_mremap(unsigned long addr
,
1153 unsigned long old_len
, unsigned long new_len
,
1154 unsigned long flags
, unsigned long new_addr
)
1156 struct vm_area_struct
*vma
;
1158 /* insanity checks first */
1160 return (unsigned long) -EINVAL
;
1162 if (flags
& MREMAP_FIXED
&& new_addr
!= addr
)
1163 return (unsigned long) -EINVAL
;
1165 vma
= find_vma_exact(current
->mm
, addr
);
1167 return (unsigned long) -EINVAL
;
1169 if (vma
->vm_end
!= vma
->vm_start
+ old_len
)
1170 return (unsigned long) -EFAULT
;
1172 if (vma
->vm_flags
& VM_MAYSHARE
)
1173 return (unsigned long) -EPERM
;
1175 if (new_len
> kobjsize((void *) addr
))
1176 return (unsigned long) -ENOMEM
;
1178 /* all checks complete - do it */
1179 vma
->vm_end
= vma
->vm_start
+ new_len
;
1181 askedalloc
-= old_len
;
1182 askedalloc
+= new_len
;
1184 return vma
->vm_start
;
1186 EXPORT_SYMBOL(do_mremap
);
1188 asmlinkage
unsigned long sys_mremap(unsigned long addr
,
1189 unsigned long old_len
, unsigned long new_len
,
1190 unsigned long flags
, unsigned long new_addr
)
1194 down_write(¤t
->mm
->mmap_sem
);
1195 ret
= do_mremap(addr
, old_len
, new_len
, flags
, new_addr
);
1196 up_write(¤t
->mm
->mmap_sem
);
1200 struct page
*follow_page(struct vm_area_struct
*vma
, unsigned long address
,
1201 unsigned int foll_flags
)
1206 int remap_pfn_range(struct vm_area_struct
*vma
, unsigned long from
,
1207 unsigned long to
, unsigned long size
, pgprot_t prot
)
1209 vma
->vm_start
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1212 EXPORT_SYMBOL(remap_pfn_range
);
1214 void swap_unplug_io_fn(struct backing_dev_info
*bdi
, struct page
*page
)
1218 unsigned long arch_get_unmapped_area(struct file
*file
, unsigned long addr
,
1219 unsigned long len
, unsigned long pgoff
, unsigned long flags
)
1224 void arch_unmap_area(struct mm_struct
*mm
, unsigned long addr
)
1228 void unmap_mapping_range(struct address_space
*mapping
,
1229 loff_t
const holebegin
, loff_t
const holelen
,
1233 EXPORT_SYMBOL(unmap_mapping_range
);
1236 * ask for an unmapped area at which to create a mapping on a file
1238 unsigned long get_unmapped_area(struct file
*file
, unsigned long addr
,
1239 unsigned long len
, unsigned long pgoff
,
1240 unsigned long flags
)
1242 unsigned long (*get_area
)(struct file
*, unsigned long, unsigned long,
1243 unsigned long, unsigned long);
1245 get_area
= current
->mm
->get_unmapped_area
;
1246 if (file
&& file
->f_op
&& file
->f_op
->get_unmapped_area
)
1247 get_area
= file
->f_op
->get_unmapped_area
;
1252 return get_area(file
, addr
, len
, pgoff
, flags
);
1254 EXPORT_SYMBOL(get_unmapped_area
);
1257 * Check that a process has enough memory to allocate a new virtual
1258 * mapping. 0 means there is enough memory for the allocation to
1259 * succeed and -ENOMEM implies there is not.
1261 * We currently support three overcommit policies, which are set via the
1262 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1264 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1265 * Additional code 2002 Jul 20 by Robert Love.
1267 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1269 * Note this is a helper function intended to be used by LSMs which
1270 * wish to use this logic.
1272 int __vm_enough_memory(struct mm_struct
*mm
, long pages
, int cap_sys_admin
)
1274 unsigned long free
, allowed
;
1276 vm_acct_memory(pages
);
1279 * Sometimes we want to use more memory than we have
1281 if (sysctl_overcommit_memory
== OVERCOMMIT_ALWAYS
)
1284 if (sysctl_overcommit_memory
== OVERCOMMIT_GUESS
) {
1287 free
= global_page_state(NR_FILE_PAGES
);
1288 free
+= nr_swap_pages
;
1291 * Any slabs which are created with the
1292 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1293 * which are reclaimable, under pressure. The dentry
1294 * cache and most inode caches should fall into this
1296 free
+= global_page_state(NR_SLAB_RECLAIMABLE
);
1299 * Leave the last 3% for root
1308 * nr_free_pages() is very expensive on large systems,
1309 * only call if we're about to fail.
1311 n
= nr_free_pages();
1314 * Leave reserved pages. The pages are not for anonymous pages.
1316 if (n
<= totalreserve_pages
)
1319 n
-= totalreserve_pages
;
1322 * Leave the last 3% for root
1334 allowed
= totalram_pages
* sysctl_overcommit_ratio
/ 100;
1336 * Leave the last 3% for root
1339 allowed
-= allowed
/ 32;
1340 allowed
+= total_swap_pages
;
1342 /* Don't let a single process grow too big:
1343 leave 3% of the size of this process for other processes */
1344 allowed
-= current
->mm
->total_vm
/ 32;
1347 * cast `allowed' as a signed long because vm_committed_space
1348 * sometimes has a negative value
1350 if (atomic_read(&vm_committed_space
) < (long)allowed
)
1353 vm_unacct_memory(pages
);
1358 int in_gate_area_no_task(unsigned long addr
)
1363 int filemap_fault(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1368 EXPORT_SYMBOL(filemap_fault
);
1371 * Access another process' address space.
1372 * - source/target buffer must be kernel space
1374 int access_process_vm(struct task_struct
*tsk
, unsigned long addr
, void *buf
, int len
, int write
)
1376 struct vm_area_struct
*vma
;
1377 struct mm_struct
*mm
;
1379 if (addr
+ len
< addr
)
1382 mm
= get_task_mm(tsk
);
1386 down_read(&mm
->mmap_sem
);
1388 /* the access must start within one of the target process's mappings */
1389 vma
= find_vma(mm
, addr
);
1391 /* don't overrun this mapping */
1392 if (addr
+ len
>= vma
->vm_end
)
1393 len
= vma
->vm_end
- addr
;
1395 /* only read or write mappings where it is permitted */
1396 if (write
&& vma
->vm_flags
& VM_MAYWRITE
)
1397 len
-= copy_to_user((void *) addr
, buf
, len
);
1398 else if (!write
&& vma
->vm_flags
& VM_MAYREAD
)
1399 len
-= copy_from_user(buf
, (void *) addr
, len
);
1406 up_read(&mm
->mmap_sem
);