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(sysctl_max_map_count
);
48 EXPORT_SYMBOL(sysctl_overcommit_memory
);
49 EXPORT_SYMBOL(sysctl_overcommit_ratio
);
50 EXPORT_SYMBOL(vm_committed_space
);
51 EXPORT_SYMBOL(__vm_enough_memory
);
53 /* list of shareable VMAs */
54 struct rb_root nommu_vma_tree
= RB_ROOT
;
55 DECLARE_RWSEM(nommu_vma_sem
);
57 struct vm_operations_struct generic_file_vm_ops
= {
60 EXPORT_SYMBOL(vmalloc
);
62 EXPORT_SYMBOL(vmalloc_to_page
);
63 EXPORT_SYMBOL(vmalloc_32
);
66 * Handle all mappings that got truncated by a "truncate()"
69 * NOTE! We have to be ready to update the memory sharing
70 * between the file and the memory map for a potential last
71 * incomplete page. Ugly, but necessary.
73 int vmtruncate(struct inode
*inode
, loff_t offset
)
75 struct address_space
*mapping
= inode
->i_mapping
;
78 if (inode
->i_size
< offset
)
80 i_size_write(inode
, offset
);
82 truncate_inode_pages(mapping
, offset
);
86 limit
= current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
;
87 if (limit
!= RLIM_INFINITY
&& offset
> limit
)
89 if (offset
> inode
->i_sb
->s_maxbytes
)
91 i_size_write(inode
, offset
);
94 if (inode
->i_op
&& inode
->i_op
->truncate
)
95 inode
->i_op
->truncate(inode
);
98 send_sig(SIGXFSZ
, current
, 0);
103 EXPORT_SYMBOL(vmtruncate
);
106 * Return the total memory allocated for this pointer, not
107 * just what the caller asked for.
109 * Doesn't have to be accurate, i.e. may have races.
111 unsigned int kobjsize(const void *objp
)
115 if (!objp
|| !((page
= virt_to_page(objp
))))
121 BUG_ON(page
->index
< 0);
122 BUG_ON(page
->index
>= MAX_ORDER
);
124 return (PAGE_SIZE
<< page
->index
);
128 * The nommu dodgy version :-)
130 int get_user_pages(struct task_struct
*tsk
, struct mm_struct
*mm
,
131 unsigned long start
, int len
, int write
, int force
,
132 struct page
**pages
, struct vm_area_struct
**vmas
)
135 static struct vm_area_struct dummy_vma
;
137 for (i
= 0; i
< len
; i
++) {
139 pages
[i
] = virt_to_page(start
);
141 page_cache_get(pages
[i
]);
144 vmas
[i
] = &dummy_vma
;
150 EXPORT_SYMBOL(get_user_pages
);
152 DEFINE_RWLOCK(vmlist_lock
);
153 struct vm_struct
*vmlist
;
155 void vfree(void *addr
)
160 void *__vmalloc(unsigned long size
, gfp_t gfp_mask
, pgprot_t prot
)
163 * kmalloc doesn't like __GFP_HIGHMEM for some reason
165 return kmalloc(size
, gfp_mask
& ~__GFP_HIGHMEM
);
168 struct page
* vmalloc_to_page(void *addr
)
170 return virt_to_page(addr
);
173 unsigned long vmalloc_to_pfn(void *addr
)
175 return page_to_pfn(virt_to_page(addr
));
179 long vread(char *buf
, char *addr
, unsigned long count
)
181 memcpy(buf
, addr
, count
);
185 long vwrite(char *buf
, char *addr
, unsigned long count
)
187 /* Don't allow overflow */
188 if ((unsigned long) addr
+ count
< count
)
189 count
= -(unsigned long) addr
;
191 memcpy(addr
, buf
, count
);
196 * vmalloc - allocate virtually continguos memory
198 * @size: allocation size
200 * Allocate enough pages to cover @size from the page level
201 * allocator and map them into continguos kernel virtual space.
203 * For tight cotrol over page level allocator and protection flags
204 * use __vmalloc() instead.
206 void *vmalloc(unsigned long size
)
208 return __vmalloc(size
, GFP_KERNEL
| __GFP_HIGHMEM
, PAGE_KERNEL
);
212 * vmalloc_32 - allocate virtually continguos memory (32bit addressable)
214 * @size: allocation size
216 * Allocate enough 32bit PA addressable pages to cover @size from the
217 * page level allocator and map them into continguos kernel virtual space.
219 void *vmalloc_32(unsigned long size
)
221 return __vmalloc(size
, GFP_KERNEL
, PAGE_KERNEL
);
224 void *vmap(struct page
**pages
, unsigned int count
, unsigned long flags
, pgprot_t prot
)
230 void vunmap(void *addr
)
236 * sys_brk() for the most part doesn't need the global kernel
237 * lock, except when an application is doing something nasty
238 * like trying to un-brk an area that has already been mapped
239 * to a regular file. in this case, the unmapping will need
240 * to invoke file system routines that need the global lock.
242 asmlinkage
unsigned long sys_brk(unsigned long brk
)
244 struct mm_struct
*mm
= current
->mm
;
246 if (brk
< mm
->start_brk
|| brk
> mm
->context
.end_brk
)
253 * Always allow shrinking brk
255 if (brk
<= mm
->brk
) {
261 * Ok, looks good - let it rip.
263 return mm
->brk
= brk
;
267 static void show_process_blocks(void)
269 struct vm_list_struct
*vml
;
271 printk("Process blocks %d:", current
->pid
);
273 for (vml
= ¤t
->mm
->context
.vmlist
; vml
; vml
= vml
->next
) {
274 printk(" %p: %p", vml
, vml
->vma
);
276 printk(" (%d @%lx #%d)",
277 kobjsize((void *) vml
->vma
->vm_start
),
279 atomic_read(&vml
->vma
->vm_usage
));
280 printk(vml
->next
? " ->" : ".\n");
285 static inline struct vm_area_struct
*find_nommu_vma(unsigned long start
)
287 struct vm_area_struct
*vma
;
288 struct rb_node
*n
= nommu_vma_tree
.rb_node
;
291 vma
= rb_entry(n
, struct vm_area_struct
, vm_rb
);
293 if (start
< vma
->vm_start
)
295 else if (start
> vma
->vm_start
)
304 static void add_nommu_vma(struct vm_area_struct
*vma
)
306 struct vm_area_struct
*pvma
;
307 struct address_space
*mapping
;
308 struct rb_node
**p
= &nommu_vma_tree
.rb_node
;
309 struct rb_node
*parent
= NULL
;
311 /* add the VMA to the mapping */
313 mapping
= vma
->vm_file
->f_mapping
;
315 flush_dcache_mmap_lock(mapping
);
316 vma_prio_tree_insert(vma
, &mapping
->i_mmap
);
317 flush_dcache_mmap_unlock(mapping
);
320 /* add the VMA to the master list */
323 pvma
= rb_entry(parent
, struct vm_area_struct
, vm_rb
);
325 if (vma
->vm_start
< pvma
->vm_start
) {
328 else if (vma
->vm_start
> pvma
->vm_start
) {
332 /* mappings are at the same address - this can only
333 * happen for shared-mem chardevs and shared file
334 * mappings backed by ramfs/tmpfs */
335 BUG_ON(!(pvma
->vm_flags
& VM_SHARED
));
346 rb_link_node(&vma
->vm_rb
, parent
, p
);
347 rb_insert_color(&vma
->vm_rb
, &nommu_vma_tree
);
350 static void delete_nommu_vma(struct vm_area_struct
*vma
)
352 struct address_space
*mapping
;
354 /* remove the VMA from the mapping */
356 mapping
= vma
->vm_file
->f_mapping
;
358 flush_dcache_mmap_lock(mapping
);
359 vma_prio_tree_remove(vma
, &mapping
->i_mmap
);
360 flush_dcache_mmap_unlock(mapping
);
363 /* remove from the master list */
364 rb_erase(&vma
->vm_rb
, &nommu_vma_tree
);
368 * determine whether a mapping should be permitted and, if so, what sort of
369 * mapping we're capable of supporting
371 static int validate_mmap_request(struct file
*file
,
377 unsigned long *_capabilities
)
379 unsigned long capabilities
;
380 unsigned long reqprot
= prot
;
383 /* do the simple checks first */
384 if (flags
& MAP_FIXED
|| addr
) {
386 "%d: Can't do fixed-address/overlay mmap of RAM\n",
391 if ((flags
& MAP_TYPE
) != MAP_PRIVATE
&&
392 (flags
& MAP_TYPE
) != MAP_SHARED
)
395 if (PAGE_ALIGN(len
) == 0)
401 /* offset overflow? */
402 if ((pgoff
+ (len
>> PAGE_SHIFT
)) < pgoff
)
406 /* validate file mapping requests */
407 struct address_space
*mapping
;
409 /* files must support mmap */
410 if (!file
->f_op
|| !file
->f_op
->mmap
)
413 /* work out if what we've got could possibly be shared
414 * - we support chardevs that provide their own "memory"
415 * - we support files/blockdevs that are memory backed
417 mapping
= file
->f_mapping
;
419 mapping
= file
->f_dentry
->d_inode
->i_mapping
;
422 if (mapping
&& mapping
->backing_dev_info
)
423 capabilities
= mapping
->backing_dev_info
->capabilities
;
426 /* no explicit capabilities set, so assume some
428 switch (file
->f_dentry
->d_inode
->i_mode
& S_IFMT
) {
431 capabilities
= BDI_CAP_MAP_COPY
;
446 /* eliminate any capabilities that we can't support on this
448 if (!file
->f_op
->get_unmapped_area
)
449 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
450 if (!file
->f_op
->read
)
451 capabilities
&= ~BDI_CAP_MAP_COPY
;
453 if (flags
& MAP_SHARED
) {
454 /* do checks for writing, appending and locking */
455 if ((prot
& PROT_WRITE
) &&
456 !(file
->f_mode
& FMODE_WRITE
))
459 if (IS_APPEND(file
->f_dentry
->d_inode
) &&
460 (file
->f_mode
& FMODE_WRITE
))
463 if (locks_verify_locked(file
->f_dentry
->d_inode
))
466 if (!(capabilities
& BDI_CAP_MAP_DIRECT
))
469 if (((prot
& PROT_READ
) && !(capabilities
& BDI_CAP_READ_MAP
)) ||
470 ((prot
& PROT_WRITE
) && !(capabilities
& BDI_CAP_WRITE_MAP
)) ||
471 ((prot
& PROT_EXEC
) && !(capabilities
& BDI_CAP_EXEC_MAP
))
473 printk("MAP_SHARED not completely supported on !MMU\n");
477 /* we mustn't privatise shared mappings */
478 capabilities
&= ~BDI_CAP_MAP_COPY
;
481 /* we're going to read the file into private memory we
483 if (!(capabilities
& BDI_CAP_MAP_COPY
))
486 /* we don't permit a private writable mapping to be
487 * shared with the backing device */
488 if (prot
& PROT_WRITE
)
489 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
492 /* handle executable mappings and implied executable
494 if (file
->f_vfsmnt
->mnt_flags
& MNT_NOEXEC
) {
495 if (prot
& PROT_EXEC
)
498 else if ((prot
& PROT_READ
) && !(prot
& PROT_EXEC
)) {
499 /* handle implication of PROT_EXEC by PROT_READ */
500 if (current
->personality
& READ_IMPLIES_EXEC
) {
501 if (capabilities
& BDI_CAP_EXEC_MAP
)
505 else if ((prot
& PROT_READ
) &&
506 (prot
& PROT_EXEC
) &&
507 !(capabilities
& BDI_CAP_EXEC_MAP
)
509 /* backing file is not executable, try to copy */
510 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
514 /* anonymous mappings are always memory backed and can be
517 capabilities
= BDI_CAP_MAP_COPY
;
519 /* handle PROT_EXEC implication by PROT_READ */
520 if ((prot
& PROT_READ
) &&
521 (current
->personality
& READ_IMPLIES_EXEC
))
525 /* allow the security API to have its say */
526 ret
= security_file_mmap(file
, reqprot
, prot
, flags
);
531 *_capabilities
= capabilities
;
536 * we've determined that we can make the mapping, now translate what we
537 * now know into VMA flags
539 static unsigned long determine_vm_flags(struct file
*file
,
542 unsigned long capabilities
)
544 unsigned long vm_flags
;
546 vm_flags
= calc_vm_prot_bits(prot
) | calc_vm_flag_bits(flags
);
547 vm_flags
|= VM_MAYREAD
| VM_MAYWRITE
| VM_MAYEXEC
;
548 /* vm_flags |= mm->def_flags; */
550 if (!(capabilities
& BDI_CAP_MAP_DIRECT
)) {
551 /* attempt to share read-only copies of mapped file chunks */
552 if (file
&& !(prot
& PROT_WRITE
))
553 vm_flags
|= VM_MAYSHARE
;
556 /* overlay a shareable mapping on the backing device or inode
557 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
559 if (flags
& MAP_SHARED
)
560 vm_flags
|= VM_MAYSHARE
| VM_SHARED
;
561 else if ((((vm_flags
& capabilities
) ^ vm_flags
) & BDI_CAP_VMFLAGS
) == 0)
562 vm_flags
|= VM_MAYSHARE
;
565 /* refuse to let anyone share private mappings with this process if
566 * it's being traced - otherwise breakpoints set in it may interfere
567 * with another untraced process
569 if ((flags
& MAP_PRIVATE
) && (current
->ptrace
& PT_PTRACED
))
570 vm_flags
&= ~VM_MAYSHARE
;
576 * set up a shared mapping on a file
578 static int do_mmap_shared_file(struct vm_area_struct
*vma
, unsigned long len
)
582 ret
= vma
->vm_file
->f_op
->mmap(vma
->vm_file
, vma
);
586 /* getting an ENOSYS error indicates that direct mmap isn't
587 * possible (as opposed to tried but failed) so we'll fall
588 * through to making a private copy of the data and mapping
594 * set up a private mapping or an anonymous shared mapping
596 static int do_mmap_private(struct vm_area_struct
*vma
, unsigned long len
)
601 /* invoke the file's mapping function so that it can keep track of
602 * shared mappings on devices or memory
603 * - VM_MAYSHARE will be set if it may attempt to share
606 ret
= vma
->vm_file
->f_op
->mmap(vma
->vm_file
, vma
);
607 if (ret
!= -ENOSYS
) {
608 /* shouldn't return success if we're not sharing */
609 BUG_ON(ret
== 0 && !(vma
->vm_flags
& VM_MAYSHARE
));
610 return ret
; /* success or a real error */
613 /* getting an ENOSYS error indicates that direct mmap isn't
614 * possible (as opposed to tried but failed) so we'll try to
615 * make a private copy of the data and map that instead */
618 /* allocate some memory to hold the mapping
619 * - note that this may not return a page-aligned address if the object
620 * we're allocating is smaller than a page
622 base
= kmalloc(len
, GFP_KERNEL
);
626 vma
->vm_start
= (unsigned long) base
;
627 vma
->vm_end
= vma
->vm_start
+ len
;
628 vma
->vm_flags
|= VM_MAPPED_COPY
;
631 if (len
+ WARN_ON_SLACK
<= kobjsize(result
))
632 printk("Allocation of %lu bytes from process %d has %lu bytes of slack\n",
633 len
, current
->pid
, kobjsize(result
) - len
);
637 /* read the contents of a file into the copy */
641 fpos
= vma
->vm_pgoff
;
646 ret
= vma
->vm_file
->f_op
->read(vma
->vm_file
, base
, len
, &fpos
);
652 /* clear the last little bit */
654 memset(base
+ ret
, 0, len
- ret
);
657 /* if it's an anonymous mapping, then just clear it */
658 memset(base
, 0, len
);
669 printk("Allocation of length %lu from process %d failed\n",
676 * handle mapping creation for uClinux
678 unsigned long do_mmap_pgoff(struct file
*file
,
685 struct vm_list_struct
*vml
= NULL
;
686 struct vm_area_struct
*vma
= NULL
;
688 unsigned long capabilities
, vm_flags
;
692 /* decide whether we should attempt the mapping, and if so what sort of
694 ret
= validate_mmap_request(file
, addr
, len
, prot
, flags
, pgoff
,
699 /* we've determined that we can make the mapping, now translate what we
700 * now know into VMA flags */
701 vm_flags
= determine_vm_flags(file
, prot
, flags
, capabilities
);
703 /* we're going to need to record the mapping if it works */
704 vml
= kmalloc(sizeof(struct vm_list_struct
), GFP_KERNEL
);
706 goto error_getting_vml
;
707 memset(vml
, 0, sizeof(*vml
));
709 down_write(&nommu_vma_sem
);
711 /* if we want to share, we need to check for VMAs created by other
712 * mmap() calls that overlap with our proposed mapping
713 * - we can only share with an exact match on most regular files
714 * - shared mappings on character devices and memory backed files are
715 * permitted to overlap inexactly as far as we are concerned for in
716 * these cases, sharing is handled in the driver or filesystem rather
719 if (vm_flags
& VM_MAYSHARE
) {
720 unsigned long pglen
= (len
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
721 unsigned long vmpglen
;
723 for (rb
= rb_first(&nommu_vma_tree
); rb
; rb
= rb_next(rb
)) {
724 vma
= rb_entry(rb
, struct vm_area_struct
, vm_rb
);
726 if (!(vma
->vm_flags
& VM_MAYSHARE
))
729 /* search for overlapping mappings on the same file */
730 if (vma
->vm_file
->f_dentry
->d_inode
!= file
->f_dentry
->d_inode
)
733 if (vma
->vm_pgoff
>= pgoff
+ pglen
)
736 vmpglen
= vma
->vm_end
- vma
->vm_start
+ PAGE_SIZE
- 1;
737 vmpglen
>>= PAGE_SHIFT
;
738 if (pgoff
>= vma
->vm_pgoff
+ vmpglen
)
741 /* handle inexactly overlapping matches between mappings */
742 if (vma
->vm_pgoff
!= pgoff
|| vmpglen
!= pglen
) {
743 if (!(capabilities
& BDI_CAP_MAP_DIRECT
))
744 goto sharing_violation
;
748 /* we've found a VMA we can share */
749 atomic_inc(&vma
->vm_usage
);
752 result
= (void *) vma
->vm_start
;
758 /* obtain the address at which to make a shared mapping
759 * - this is the hook for quasi-memory character devices to
760 * tell us the location of a shared mapping
762 if (file
&& file
->f_op
->get_unmapped_area
) {
763 addr
= file
->f_op
->get_unmapped_area(file
, addr
, len
,
765 if (IS_ERR((void *) addr
)) {
767 if (ret
!= (unsigned long) -ENOSYS
)
770 /* the driver refused to tell us where to site
771 * the mapping so we'll have to attempt to copy
773 ret
= (unsigned long) -ENODEV
;
774 if (!(capabilities
& BDI_CAP_MAP_COPY
))
777 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
782 /* we're going to need a VMA struct as well */
783 vma
= kmalloc(sizeof(struct vm_area_struct
), GFP_KERNEL
);
785 goto error_getting_vma
;
787 memset(vma
, 0, sizeof(*vma
));
788 INIT_LIST_HEAD(&vma
->anon_vma_node
);
789 atomic_set(&vma
->vm_usage
, 1);
793 vma
->vm_flags
= vm_flags
;
794 vma
->vm_start
= addr
;
795 vma
->vm_end
= addr
+ len
;
796 vma
->vm_pgoff
= pgoff
;
800 /* set up the mapping */
801 if (file
&& vma
->vm_flags
& VM_SHARED
)
802 ret
= do_mmap_shared_file(vma
, len
);
804 ret
= do_mmap_private(vma
, len
);
808 /* okay... we have a mapping; now we have to register it */
809 result
= (void *) vma
->vm_start
;
811 if (vma
->vm_flags
& VM_MAPPED_COPY
) {
812 realalloc
+= kobjsize(result
);
816 realalloc
+= kobjsize(vma
);
817 askedalloc
+= sizeof(*vma
);
819 current
->mm
->total_vm
+= len
>> PAGE_SHIFT
;
824 realalloc
+= kobjsize(vml
);
825 askedalloc
+= sizeof(*vml
);
827 vml
->next
= current
->mm
->context
.vmlist
;
828 current
->mm
->context
.vmlist
= vml
;
830 up_write(&nommu_vma_sem
);
832 if (prot
& PROT_EXEC
)
833 flush_icache_range((unsigned long) result
,
834 (unsigned long) result
+ len
);
837 printk("do_mmap:\n");
838 show_process_blocks();
841 return (unsigned long) result
;
844 up_write(&nommu_vma_sem
);
853 up_write(&nommu_vma_sem
);
854 printk("Attempt to share mismatched mappings\n");
859 up_write(&nommu_vma_sem
);
861 printk("Allocation of vma for %lu byte allocation from process %d failed\n",
867 printk("Allocation of vml for %lu byte allocation from process %d failed\n",
874 * handle mapping disposal for uClinux
876 static void put_vma(struct vm_area_struct
*vma
)
879 down_write(&nommu_vma_sem
);
881 if (atomic_dec_and_test(&vma
->vm_usage
)) {
882 delete_nommu_vma(vma
);
884 if (vma
->vm_ops
&& vma
->vm_ops
->close
)
885 vma
->vm_ops
->close(vma
);
887 /* IO memory and memory shared directly out of the pagecache from
888 * ramfs/tmpfs mustn't be released here */
889 if (vma
->vm_flags
& VM_MAPPED_COPY
) {
890 realalloc
-= kobjsize((void *) vma
->vm_start
);
891 askedalloc
-= vma
->vm_end
- vma
->vm_start
;
892 kfree((void *) vma
->vm_start
);
895 realalloc
-= kobjsize(vma
);
896 askedalloc
-= sizeof(*vma
);
903 up_write(&nommu_vma_sem
);
907 int do_munmap(struct mm_struct
*mm
, unsigned long addr
, size_t len
)
909 struct vm_list_struct
*vml
, **parent
;
910 unsigned long end
= addr
+ len
;
913 printk("do_munmap:\n");
916 for (parent
= &mm
->context
.vmlist
; *parent
; parent
= &(*parent
)->next
)
917 if ((*parent
)->vma
->vm_start
== addr
&&
918 ((len
== 0) || ((*parent
)->vma
->vm_end
== end
)))
921 printk("munmap of non-mmaped memory by process %d (%s): %p\n",
922 current
->pid
, current
->comm
, (void *) addr
);
931 realalloc
-= kobjsize(vml
);
932 askedalloc
-= sizeof(*vml
);
935 update_hiwater_vm(mm
);
936 mm
->total_vm
-= len
>> PAGE_SHIFT
;
939 show_process_blocks();
945 /* Release all mmaps. */
946 void exit_mmap(struct mm_struct
* mm
)
948 struct vm_list_struct
*tmp
;
952 printk("Exit_mmap:\n");
957 while ((tmp
= mm
->context
.vmlist
)) {
958 mm
->context
.vmlist
= tmp
->next
;
961 realalloc
-= kobjsize(tmp
);
962 askedalloc
-= sizeof(*tmp
);
967 show_process_blocks();
972 asmlinkage
long sys_munmap(unsigned long addr
, size_t len
)
975 struct mm_struct
*mm
= current
->mm
;
977 down_write(&mm
->mmap_sem
);
978 ret
= do_munmap(mm
, addr
, len
);
979 up_write(&mm
->mmap_sem
);
983 unsigned long do_brk(unsigned long addr
, unsigned long len
)
989 * Expand (or shrink) an existing mapping, potentially moving it at the
990 * same time (controlled by the MREMAP_MAYMOVE flag and available VM space)
992 * MREMAP_FIXED option added 5-Dec-1999 by Benjamin LaHaise
993 * This option implies MREMAP_MAYMOVE.
995 * on uClinux, we only permit changing a mapping's size, and only as long as it stays within the
996 * hole allocated by the kmalloc() call in do_mmap_pgoff() and the block is not shareable
998 unsigned long do_mremap(unsigned long addr
,
999 unsigned long old_len
, unsigned long new_len
,
1000 unsigned long flags
, unsigned long new_addr
)
1002 struct vm_list_struct
*vml
= NULL
;
1004 /* insanity checks first */
1006 return (unsigned long) -EINVAL
;
1008 if (flags
& MREMAP_FIXED
&& new_addr
!= addr
)
1009 return (unsigned long) -EINVAL
;
1011 for (vml
= current
->mm
->context
.vmlist
; vml
; vml
= vml
->next
)
1012 if (vml
->vma
->vm_start
== addr
)
1015 return (unsigned long) -EINVAL
;
1018 if (vml
->vma
->vm_end
!= vml
->vma
->vm_start
+ old_len
)
1019 return (unsigned long) -EFAULT
;
1021 if (vml
->vma
->vm_flags
& VM_MAYSHARE
)
1022 return (unsigned long) -EPERM
;
1024 if (new_len
> kobjsize((void *) addr
))
1025 return (unsigned long) -ENOMEM
;
1027 /* all checks complete - do it */
1028 vml
->vma
->vm_end
= vml
->vma
->vm_start
+ new_len
;
1030 askedalloc
-= old_len
;
1031 askedalloc
+= new_len
;
1033 return vml
->vma
->vm_start
;
1037 * Look up the first VMA which satisfies addr < vm_end, NULL if none
1039 struct vm_area_struct
*find_vma(struct mm_struct
*mm
, unsigned long addr
)
1041 struct vm_list_struct
*vml
;
1043 for (vml
= mm
->context
.vmlist
; vml
; vml
= vml
->next
)
1044 if (addr
>= vml
->vma
->vm_start
&& addr
< vml
->vma
->vm_end
)
1050 EXPORT_SYMBOL(find_vma
);
1052 struct page
*follow_page(struct mm_struct
*mm
, unsigned long address
,
1053 unsigned int foll_flags
)
1058 struct vm_area_struct
*find_extend_vma(struct mm_struct
*mm
, unsigned long addr
)
1063 int remap_pfn_range(struct vm_area_struct
*vma
, unsigned long from
,
1064 unsigned long to
, unsigned long size
, pgprot_t prot
)
1066 vma
->vm_start
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1070 void swap_unplug_io_fn(struct backing_dev_info
*bdi
, struct page
*page
)
1074 unsigned long arch_get_unmapped_area(struct file
*file
, unsigned long addr
,
1075 unsigned long len
, unsigned long pgoff
, unsigned long flags
)
1080 void arch_unmap_area(struct mm_struct
*mm
, unsigned long addr
)
1084 void unmap_mapping_range(struct address_space
*mapping
,
1085 loff_t
const holebegin
, loff_t
const holelen
,
1091 * Check that a process has enough memory to allocate a new virtual
1092 * mapping. 0 means there is enough memory for the allocation to
1093 * succeed and -ENOMEM implies there is not.
1095 * We currently support three overcommit policies, which are set via the
1096 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1098 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1099 * Additional code 2002 Jul 20 by Robert Love.
1101 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1103 * Note this is a helper function intended to be used by LSMs which
1104 * wish to use this logic.
1106 int __vm_enough_memory(long pages
, int cap_sys_admin
)
1108 unsigned long free
, allowed
;
1110 vm_acct_memory(pages
);
1113 * Sometimes we want to use more memory than we have
1115 if (sysctl_overcommit_memory
== OVERCOMMIT_ALWAYS
)
1118 if (sysctl_overcommit_memory
== OVERCOMMIT_GUESS
) {
1121 free
= get_page_cache_size();
1122 free
+= nr_swap_pages
;
1125 * Any slabs which are created with the
1126 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1127 * which are reclaimable, under pressure. The dentry
1128 * cache and most inode caches should fall into this
1130 free
+= atomic_read(&slab_reclaim_pages
);
1133 * Leave the last 3% for root
1142 * nr_free_pages() is very expensive on large systems,
1143 * only call if we're about to fail.
1145 n
= nr_free_pages();
1152 vm_unacct_memory(pages
);
1156 allowed
= totalram_pages
* sysctl_overcommit_ratio
/ 100;
1158 * Leave the last 3% for root
1161 allowed
-= allowed
/ 32;
1162 allowed
+= total_swap_pages
;
1164 /* Don't let a single process grow too big:
1165 leave 3% of the size of this process for other processes */
1166 allowed
-= current
->mm
->total_vm
/ 32;
1169 * cast `allowed' as a signed long because vm_committed_space
1170 * sometimes has a negative value
1172 if (atomic_read(&vm_committed_space
) < (long)allowed
)
1175 vm_unacct_memory(pages
);
1180 int in_gate_area_no_task(unsigned long addr
)