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(__vm_enough_memory
);
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
= {
56 EXPORT_SYMBOL(vmalloc
);
58 EXPORT_SYMBOL(vmalloc_to_page
);
59 EXPORT_SYMBOL(vmalloc_32
);
62 * Handle all mappings that got truncated by a "truncate()"
65 * NOTE! We have to be ready to update the memory sharing
66 * between the file and the memory map for a potential last
67 * incomplete page. Ugly, but necessary.
69 int vmtruncate(struct inode
*inode
, loff_t offset
)
71 struct address_space
*mapping
= inode
->i_mapping
;
74 if (inode
->i_size
< offset
)
76 i_size_write(inode
, offset
);
78 truncate_inode_pages(mapping
, offset
);
82 limit
= current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
;
83 if (limit
!= RLIM_INFINITY
&& offset
> limit
)
85 if (offset
> inode
->i_sb
->s_maxbytes
)
87 i_size_write(inode
, offset
);
90 if (inode
->i_op
&& inode
->i_op
->truncate
)
91 inode
->i_op
->truncate(inode
);
94 send_sig(SIGXFSZ
, current
, 0);
99 EXPORT_SYMBOL(vmtruncate
);
102 * Return the total memory allocated for this pointer, not
103 * just what the caller asked for.
105 * Doesn't have to be accurate, i.e. may have races.
107 unsigned int kobjsize(const void *objp
)
111 if (!objp
|| !((page
= virt_to_page(objp
))))
117 BUG_ON(page
->index
< 0);
118 BUG_ON(page
->index
>= MAX_ORDER
);
120 return (PAGE_SIZE
<< page
->index
);
124 * The nommu dodgy version :-)
126 int get_user_pages(struct task_struct
*tsk
, struct mm_struct
*mm
,
127 unsigned long start
, int len
, int write
, int force
,
128 struct page
**pages
, struct vm_area_struct
**vmas
)
131 static struct vm_area_struct dummy_vma
;
133 for (i
= 0; i
< len
; i
++) {
135 pages
[i
] = virt_to_page(start
);
137 page_cache_get(pages
[i
]);
140 vmas
[i
] = &dummy_vma
;
146 EXPORT_SYMBOL(get_user_pages
);
148 DEFINE_RWLOCK(vmlist_lock
);
149 struct vm_struct
*vmlist
;
151 void vfree(void *addr
)
156 void *__vmalloc(unsigned long size
, gfp_t gfp_mask
, pgprot_t prot
)
159 * kmalloc doesn't like __GFP_HIGHMEM for some reason
161 return kmalloc(size
, gfp_mask
& ~__GFP_HIGHMEM
);
164 struct page
* vmalloc_to_page(void *addr
)
166 return virt_to_page(addr
);
169 unsigned long vmalloc_to_pfn(void *addr
)
171 return page_to_pfn(virt_to_page(addr
));
175 long vread(char *buf
, char *addr
, unsigned long count
)
177 memcpy(buf
, addr
, count
);
181 long vwrite(char *buf
, char *addr
, unsigned long count
)
183 /* Don't allow overflow */
184 if ((unsigned long) addr
+ count
< count
)
185 count
= -(unsigned long) addr
;
187 memcpy(addr
, buf
, count
);
192 * vmalloc - allocate virtually continguos memory
194 * @size: allocation size
196 * Allocate enough pages to cover @size from the page level
197 * allocator and map them into continguos kernel virtual space.
199 * For tight cotrol over page level allocator and protection flags
200 * use __vmalloc() instead.
202 void *vmalloc(unsigned long size
)
204 return __vmalloc(size
, GFP_KERNEL
| __GFP_HIGHMEM
, PAGE_KERNEL
);
208 * vmalloc_32 - allocate virtually continguos memory (32bit addressable)
210 * @size: allocation size
212 * Allocate enough 32bit PA addressable pages to cover @size from the
213 * page level allocator and map them into continguos kernel virtual space.
215 void *vmalloc_32(unsigned long size
)
217 return __vmalloc(size
, GFP_KERNEL
, PAGE_KERNEL
);
220 void *vmap(struct page
**pages
, unsigned int count
, unsigned long flags
, pgprot_t prot
)
226 void vunmap(void *addr
)
232 * sys_brk() for the most part doesn't need the global kernel
233 * lock, except when an application is doing something nasty
234 * like trying to un-brk an area that has already been mapped
235 * to a regular file. in this case, the unmapping will need
236 * to invoke file system routines that need the global lock.
238 asmlinkage
unsigned long sys_brk(unsigned long brk
)
240 struct mm_struct
*mm
= current
->mm
;
242 if (brk
< mm
->start_brk
|| brk
> mm
->context
.end_brk
)
249 * Always allow shrinking brk
251 if (brk
<= mm
->brk
) {
257 * Ok, looks good - let it rip.
259 return mm
->brk
= brk
;
263 static void show_process_blocks(void)
265 struct vm_list_struct
*vml
;
267 printk("Process blocks %d:", current
->pid
);
269 for (vml
= ¤t
->mm
->context
.vmlist
; vml
; vml
= vml
->next
) {
270 printk(" %p: %p", vml
, vml
->vma
);
272 printk(" (%d @%lx #%d)",
273 kobjsize((void *) vml
->vma
->vm_start
),
275 atomic_read(&vml
->vma
->vm_usage
));
276 printk(vml
->next
? " ->" : ".\n");
281 static inline struct vm_area_struct
*find_nommu_vma(unsigned long start
)
283 struct vm_area_struct
*vma
;
284 struct rb_node
*n
= nommu_vma_tree
.rb_node
;
287 vma
= rb_entry(n
, struct vm_area_struct
, vm_rb
);
289 if (start
< vma
->vm_start
)
291 else if (start
> vma
->vm_start
)
300 static void add_nommu_vma(struct vm_area_struct
*vma
)
302 struct vm_area_struct
*pvma
;
303 struct address_space
*mapping
;
304 struct rb_node
**p
= &nommu_vma_tree
.rb_node
;
305 struct rb_node
*parent
= NULL
;
307 /* add the VMA to the mapping */
309 mapping
= vma
->vm_file
->f_mapping
;
311 flush_dcache_mmap_lock(mapping
);
312 vma_prio_tree_insert(vma
, &mapping
->i_mmap
);
313 flush_dcache_mmap_unlock(mapping
);
316 /* add the VMA to the master list */
319 pvma
= rb_entry(parent
, struct vm_area_struct
, vm_rb
);
321 if (vma
->vm_start
< pvma
->vm_start
) {
324 else if (vma
->vm_start
> pvma
->vm_start
) {
328 /* mappings are at the same address - this can only
329 * happen for shared-mem chardevs and shared file
330 * mappings backed by ramfs/tmpfs */
331 BUG_ON(!(pvma
->vm_flags
& VM_SHARED
));
342 rb_link_node(&vma
->vm_rb
, parent
, p
);
343 rb_insert_color(&vma
->vm_rb
, &nommu_vma_tree
);
346 static void delete_nommu_vma(struct vm_area_struct
*vma
)
348 struct address_space
*mapping
;
350 /* remove the VMA from the mapping */
352 mapping
= vma
->vm_file
->f_mapping
;
354 flush_dcache_mmap_lock(mapping
);
355 vma_prio_tree_remove(vma
, &mapping
->i_mmap
);
356 flush_dcache_mmap_unlock(mapping
);
359 /* remove from the master list */
360 rb_erase(&vma
->vm_rb
, &nommu_vma_tree
);
364 * determine whether a mapping should be permitted and, if so, what sort of
365 * mapping we're capable of supporting
367 static int validate_mmap_request(struct file
*file
,
373 unsigned long *_capabilities
)
375 unsigned long capabilities
;
376 unsigned long reqprot
= prot
;
379 /* do the simple checks first */
380 if (flags
& MAP_FIXED
|| addr
) {
382 "%d: Can't do fixed-address/overlay mmap of RAM\n",
387 if ((flags
& MAP_TYPE
) != MAP_PRIVATE
&&
388 (flags
& MAP_TYPE
) != MAP_SHARED
)
391 if (PAGE_ALIGN(len
) == 0)
397 /* offset overflow? */
398 if ((pgoff
+ (len
>> PAGE_SHIFT
)) < pgoff
)
402 /* validate file mapping requests */
403 struct address_space
*mapping
;
405 /* files must support mmap */
406 if (!file
->f_op
|| !file
->f_op
->mmap
)
409 /* work out if what we've got could possibly be shared
410 * - we support chardevs that provide their own "memory"
411 * - we support files/blockdevs that are memory backed
413 mapping
= file
->f_mapping
;
415 mapping
= file
->f_dentry
->d_inode
->i_mapping
;
418 if (mapping
&& mapping
->backing_dev_info
)
419 capabilities
= mapping
->backing_dev_info
->capabilities
;
422 /* no explicit capabilities set, so assume some
424 switch (file
->f_dentry
->d_inode
->i_mode
& S_IFMT
) {
427 capabilities
= BDI_CAP_MAP_COPY
;
442 /* eliminate any capabilities that we can't support on this
444 if (!file
->f_op
->get_unmapped_area
)
445 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
446 if (!file
->f_op
->read
)
447 capabilities
&= ~BDI_CAP_MAP_COPY
;
449 if (flags
& MAP_SHARED
) {
450 /* do checks for writing, appending and locking */
451 if ((prot
& PROT_WRITE
) &&
452 !(file
->f_mode
& FMODE_WRITE
))
455 if (IS_APPEND(file
->f_dentry
->d_inode
) &&
456 (file
->f_mode
& FMODE_WRITE
))
459 if (locks_verify_locked(file
->f_dentry
->d_inode
))
462 if (!(capabilities
& BDI_CAP_MAP_DIRECT
))
465 if (((prot
& PROT_READ
) && !(capabilities
& BDI_CAP_READ_MAP
)) ||
466 ((prot
& PROT_WRITE
) && !(capabilities
& BDI_CAP_WRITE_MAP
)) ||
467 ((prot
& PROT_EXEC
) && !(capabilities
& BDI_CAP_EXEC_MAP
))
469 printk("MAP_SHARED not completely supported on !MMU\n");
473 /* we mustn't privatise shared mappings */
474 capabilities
&= ~BDI_CAP_MAP_COPY
;
477 /* we're going to read the file into private memory we
479 if (!(capabilities
& BDI_CAP_MAP_COPY
))
482 /* we don't permit a private writable mapping to be
483 * shared with the backing device */
484 if (prot
& PROT_WRITE
)
485 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
488 /* handle executable mappings and implied executable
490 if (file
->f_vfsmnt
->mnt_flags
& MNT_NOEXEC
) {
491 if (prot
& PROT_EXEC
)
494 else if ((prot
& PROT_READ
) && !(prot
& PROT_EXEC
)) {
495 /* handle implication of PROT_EXEC by PROT_READ */
496 if (current
->personality
& READ_IMPLIES_EXEC
) {
497 if (capabilities
& BDI_CAP_EXEC_MAP
)
501 else if ((prot
& PROT_READ
) &&
502 (prot
& PROT_EXEC
) &&
503 !(capabilities
& BDI_CAP_EXEC_MAP
)
505 /* backing file is not executable, try to copy */
506 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
510 /* anonymous mappings are always memory backed and can be
513 capabilities
= BDI_CAP_MAP_COPY
;
515 /* handle PROT_EXEC implication by PROT_READ */
516 if ((prot
& PROT_READ
) &&
517 (current
->personality
& READ_IMPLIES_EXEC
))
521 /* allow the security API to have its say */
522 ret
= security_file_mmap(file
, reqprot
, prot
, flags
);
527 *_capabilities
= capabilities
;
532 * we've determined that we can make the mapping, now translate what we
533 * now know into VMA flags
535 static unsigned long determine_vm_flags(struct file
*file
,
538 unsigned long capabilities
)
540 unsigned long vm_flags
;
542 vm_flags
= calc_vm_prot_bits(prot
) | calc_vm_flag_bits(flags
);
543 vm_flags
|= VM_MAYREAD
| VM_MAYWRITE
| VM_MAYEXEC
;
544 /* vm_flags |= mm->def_flags; */
546 if (!(capabilities
& BDI_CAP_MAP_DIRECT
)) {
547 /* attempt to share read-only copies of mapped file chunks */
548 if (file
&& !(prot
& PROT_WRITE
))
549 vm_flags
|= VM_MAYSHARE
;
552 /* overlay a shareable mapping on the backing device or inode
553 * if possible - used for chardevs, ramfs/tmpfs/shmfs and
555 if (flags
& MAP_SHARED
)
556 vm_flags
|= VM_MAYSHARE
| VM_SHARED
;
557 else if ((((vm_flags
& capabilities
) ^ vm_flags
) & BDI_CAP_VMFLAGS
) == 0)
558 vm_flags
|= VM_MAYSHARE
;
561 /* refuse to let anyone share private mappings with this process if
562 * it's being traced - otherwise breakpoints set in it may interfere
563 * with another untraced process
565 if ((flags
& MAP_PRIVATE
) && (current
->ptrace
& PT_PTRACED
))
566 vm_flags
&= ~VM_MAYSHARE
;
572 * set up a shared mapping on a file
574 static int do_mmap_shared_file(struct vm_area_struct
*vma
, unsigned long len
)
578 ret
= vma
->vm_file
->f_op
->mmap(vma
->vm_file
, vma
);
582 /* getting an ENOSYS error indicates that direct mmap isn't
583 * possible (as opposed to tried but failed) so we'll fall
584 * through to making a private copy of the data and mapping
590 * set up a private mapping or an anonymous shared mapping
592 static int do_mmap_private(struct vm_area_struct
*vma
, unsigned long len
)
597 /* invoke the file's mapping function so that it can keep track of
598 * shared mappings on devices or memory
599 * - VM_MAYSHARE will be set if it may attempt to share
602 ret
= vma
->vm_file
->f_op
->mmap(vma
->vm_file
, vma
);
603 if (ret
!= -ENOSYS
) {
604 /* shouldn't return success if we're not sharing */
605 BUG_ON(ret
== 0 && !(vma
->vm_flags
& VM_MAYSHARE
));
606 return ret
; /* success or a real error */
609 /* getting an ENOSYS error indicates that direct mmap isn't
610 * possible (as opposed to tried but failed) so we'll try to
611 * make a private copy of the data and map that instead */
614 /* allocate some memory to hold the mapping
615 * - note that this may not return a page-aligned address if the object
616 * we're allocating is smaller than a page
618 base
= kmalloc(len
, GFP_KERNEL
);
622 vma
->vm_start
= (unsigned long) base
;
623 vma
->vm_end
= vma
->vm_start
+ len
;
624 vma
->vm_flags
|= VM_MAPPED_COPY
;
627 if (len
+ WARN_ON_SLACK
<= kobjsize(result
))
628 printk("Allocation of %lu bytes from process %d has %lu bytes of slack\n",
629 len
, current
->pid
, kobjsize(result
) - len
);
633 /* read the contents of a file into the copy */
637 fpos
= vma
->vm_pgoff
;
642 ret
= vma
->vm_file
->f_op
->read(vma
->vm_file
, base
, len
, &fpos
);
648 /* clear the last little bit */
650 memset(base
+ ret
, 0, len
- ret
);
653 /* if it's an anonymous mapping, then just clear it */
654 memset(base
, 0, len
);
665 printk("Allocation of length %lu from process %d failed\n",
672 * handle mapping creation for uClinux
674 unsigned long do_mmap_pgoff(struct file
*file
,
681 struct vm_list_struct
*vml
= NULL
;
682 struct vm_area_struct
*vma
= NULL
;
684 unsigned long capabilities
, vm_flags
;
688 /* decide whether we should attempt the mapping, and if so what sort of
690 ret
= validate_mmap_request(file
, addr
, len
, prot
, flags
, pgoff
,
695 /* we've determined that we can make the mapping, now translate what we
696 * now know into VMA flags */
697 vm_flags
= determine_vm_flags(file
, prot
, flags
, capabilities
);
699 /* we're going to need to record the mapping if it works */
700 vml
= kmalloc(sizeof(struct vm_list_struct
), GFP_KERNEL
);
702 goto error_getting_vml
;
703 memset(vml
, 0, sizeof(*vml
));
705 down_write(&nommu_vma_sem
);
707 /* if we want to share, we need to check for VMAs created by other
708 * mmap() calls that overlap with our proposed mapping
709 * - we can only share with an exact match on most regular files
710 * - shared mappings on character devices and memory backed files are
711 * permitted to overlap inexactly as far as we are concerned for in
712 * these cases, sharing is handled in the driver or filesystem rather
715 if (vm_flags
& VM_MAYSHARE
) {
716 unsigned long pglen
= (len
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
717 unsigned long vmpglen
;
719 for (rb
= rb_first(&nommu_vma_tree
); rb
; rb
= rb_next(rb
)) {
720 vma
= rb_entry(rb
, struct vm_area_struct
, vm_rb
);
722 if (!(vma
->vm_flags
& VM_MAYSHARE
))
725 /* search for overlapping mappings on the same file */
726 if (vma
->vm_file
->f_dentry
->d_inode
!= file
->f_dentry
->d_inode
)
729 if (vma
->vm_pgoff
>= pgoff
+ pglen
)
732 vmpglen
= vma
->vm_end
- vma
->vm_start
+ PAGE_SIZE
- 1;
733 vmpglen
>>= PAGE_SHIFT
;
734 if (pgoff
>= vma
->vm_pgoff
+ vmpglen
)
737 /* handle inexactly overlapping matches between mappings */
738 if (vma
->vm_pgoff
!= pgoff
|| vmpglen
!= pglen
) {
739 if (!(capabilities
& BDI_CAP_MAP_DIRECT
))
740 goto sharing_violation
;
744 /* we've found a VMA we can share */
745 atomic_inc(&vma
->vm_usage
);
748 result
= (void *) vma
->vm_start
;
754 /* obtain the address at which to make a shared mapping
755 * - this is the hook for quasi-memory character devices to
756 * tell us the location of a shared mapping
758 if (file
&& file
->f_op
->get_unmapped_area
) {
759 addr
= file
->f_op
->get_unmapped_area(file
, addr
, len
,
761 if (IS_ERR((void *) addr
)) {
763 if (ret
!= (unsigned long) -ENOSYS
)
766 /* the driver refused to tell us where to site
767 * the mapping so we'll have to attempt to copy
769 ret
= (unsigned long) -ENODEV
;
770 if (!(capabilities
& BDI_CAP_MAP_COPY
))
773 capabilities
&= ~BDI_CAP_MAP_DIRECT
;
778 /* we're going to need a VMA struct as well */
779 vma
= kmalloc(sizeof(struct vm_area_struct
), GFP_KERNEL
);
781 goto error_getting_vma
;
783 memset(vma
, 0, sizeof(*vma
));
784 INIT_LIST_HEAD(&vma
->anon_vma_node
);
785 atomic_set(&vma
->vm_usage
, 1);
789 vma
->vm_flags
= vm_flags
;
790 vma
->vm_start
= addr
;
791 vma
->vm_end
= addr
+ len
;
792 vma
->vm_pgoff
= pgoff
;
796 /* set up the mapping */
797 if (file
&& vma
->vm_flags
& VM_SHARED
)
798 ret
= do_mmap_shared_file(vma
, len
);
800 ret
= do_mmap_private(vma
, len
);
804 /* okay... we have a mapping; now we have to register it */
805 result
= (void *) vma
->vm_start
;
807 if (vma
->vm_flags
& VM_MAPPED_COPY
) {
808 realalloc
+= kobjsize(result
);
812 realalloc
+= kobjsize(vma
);
813 askedalloc
+= sizeof(*vma
);
815 current
->mm
->total_vm
+= len
>> PAGE_SHIFT
;
820 realalloc
+= kobjsize(vml
);
821 askedalloc
+= sizeof(*vml
);
823 vml
->next
= current
->mm
->context
.vmlist
;
824 current
->mm
->context
.vmlist
= vml
;
826 up_write(&nommu_vma_sem
);
828 if (prot
& PROT_EXEC
)
829 flush_icache_range((unsigned long) result
,
830 (unsigned long) result
+ len
);
833 printk("do_mmap:\n");
834 show_process_blocks();
837 return (unsigned long) result
;
840 up_write(&nommu_vma_sem
);
849 up_write(&nommu_vma_sem
);
850 printk("Attempt to share mismatched mappings\n");
855 up_write(&nommu_vma_sem
);
857 printk("Allocation of vma for %lu byte allocation from process %d failed\n",
863 printk("Allocation of vml for %lu byte allocation from process %d failed\n",
870 * handle mapping disposal for uClinux
872 static void put_vma(struct vm_area_struct
*vma
)
875 down_write(&nommu_vma_sem
);
877 if (atomic_dec_and_test(&vma
->vm_usage
)) {
878 delete_nommu_vma(vma
);
880 if (vma
->vm_ops
&& vma
->vm_ops
->close
)
881 vma
->vm_ops
->close(vma
);
883 /* IO memory and memory shared directly out of the pagecache from
884 * ramfs/tmpfs mustn't be released here */
885 if (vma
->vm_flags
& VM_MAPPED_COPY
) {
886 realalloc
-= kobjsize((void *) vma
->vm_start
);
887 askedalloc
-= vma
->vm_end
- vma
->vm_start
;
888 kfree((void *) vma
->vm_start
);
891 realalloc
-= kobjsize(vma
);
892 askedalloc
-= sizeof(*vma
);
899 up_write(&nommu_vma_sem
);
903 int do_munmap(struct mm_struct
*mm
, unsigned long addr
, size_t len
)
905 struct vm_list_struct
*vml
, **parent
;
906 unsigned long end
= addr
+ len
;
909 printk("do_munmap:\n");
912 for (parent
= &mm
->context
.vmlist
; *parent
; parent
= &(*parent
)->next
)
913 if ((*parent
)->vma
->vm_start
== addr
&&
914 ((len
== 0) || ((*parent
)->vma
->vm_end
== end
)))
917 printk("munmap of non-mmaped memory by process %d (%s): %p\n",
918 current
->pid
, current
->comm
, (void *) addr
);
927 realalloc
-= kobjsize(vml
);
928 askedalloc
-= sizeof(*vml
);
931 update_hiwater_vm(mm
);
932 mm
->total_vm
-= len
>> PAGE_SHIFT
;
935 show_process_blocks();
941 /* Release all mmaps. */
942 void exit_mmap(struct mm_struct
* mm
)
944 struct vm_list_struct
*tmp
;
948 printk("Exit_mmap:\n");
953 while ((tmp
= mm
->context
.vmlist
)) {
954 mm
->context
.vmlist
= tmp
->next
;
957 realalloc
-= kobjsize(tmp
);
958 askedalloc
-= sizeof(*tmp
);
963 show_process_blocks();
968 asmlinkage
long sys_munmap(unsigned long addr
, size_t len
)
971 struct mm_struct
*mm
= current
->mm
;
973 down_write(&mm
->mmap_sem
);
974 ret
= do_munmap(mm
, addr
, len
);
975 up_write(&mm
->mmap_sem
);
979 unsigned long do_brk(unsigned long addr
, unsigned long len
)
985 * Expand (or shrink) an existing mapping, potentially moving it at the
986 * same time (controlled by the MREMAP_MAYMOVE flag and available VM space)
988 * MREMAP_FIXED option added 5-Dec-1999 by Benjamin LaHaise
989 * This option implies MREMAP_MAYMOVE.
991 * on uClinux, we only permit changing a mapping's size, and only as long as it stays within the
992 * hole allocated by the kmalloc() call in do_mmap_pgoff() and the block is not shareable
994 unsigned long do_mremap(unsigned long addr
,
995 unsigned long old_len
, unsigned long new_len
,
996 unsigned long flags
, unsigned long new_addr
)
998 struct vm_list_struct
*vml
= NULL
;
1000 /* insanity checks first */
1002 return (unsigned long) -EINVAL
;
1004 if (flags
& MREMAP_FIXED
&& new_addr
!= addr
)
1005 return (unsigned long) -EINVAL
;
1007 for (vml
= current
->mm
->context
.vmlist
; vml
; vml
= vml
->next
)
1008 if (vml
->vma
->vm_start
== addr
)
1011 return (unsigned long) -EINVAL
;
1014 if (vml
->vma
->vm_end
!= vml
->vma
->vm_start
+ old_len
)
1015 return (unsigned long) -EFAULT
;
1017 if (vml
->vma
->vm_flags
& VM_MAYSHARE
)
1018 return (unsigned long) -EPERM
;
1020 if (new_len
> kobjsize((void *) addr
))
1021 return (unsigned long) -ENOMEM
;
1023 /* all checks complete - do it */
1024 vml
->vma
->vm_end
= vml
->vma
->vm_start
+ new_len
;
1026 askedalloc
-= old_len
;
1027 askedalloc
+= new_len
;
1029 return vml
->vma
->vm_start
;
1033 * Look up the first VMA which satisfies addr < vm_end, NULL if none
1035 struct vm_area_struct
*find_vma(struct mm_struct
*mm
, unsigned long addr
)
1037 struct vm_list_struct
*vml
;
1039 for (vml
= mm
->context
.vmlist
; vml
; vml
= vml
->next
)
1040 if (addr
>= vml
->vma
->vm_start
&& addr
< vml
->vma
->vm_end
)
1046 EXPORT_SYMBOL(find_vma
);
1048 struct page
*follow_page(struct vm_area_struct
*vma
, unsigned long address
,
1049 unsigned int foll_flags
)
1054 struct vm_area_struct
*find_extend_vma(struct mm_struct
*mm
, unsigned long addr
)
1059 int remap_pfn_range(struct vm_area_struct
*vma
, unsigned long from
,
1060 unsigned long to
, unsigned long size
, pgprot_t prot
)
1062 vma
->vm_start
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1066 void swap_unplug_io_fn(struct backing_dev_info
*bdi
, struct page
*page
)
1070 unsigned long arch_get_unmapped_area(struct file
*file
, unsigned long addr
,
1071 unsigned long len
, unsigned long pgoff
, unsigned long flags
)
1076 void arch_unmap_area(struct mm_struct
*mm
, unsigned long addr
)
1080 void unmap_mapping_range(struct address_space
*mapping
,
1081 loff_t
const holebegin
, loff_t
const holelen
,
1087 * Check that a process has enough memory to allocate a new virtual
1088 * mapping. 0 means there is enough memory for the allocation to
1089 * succeed and -ENOMEM implies there is not.
1091 * We currently support three overcommit policies, which are set via the
1092 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
1094 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
1095 * Additional code 2002 Jul 20 by Robert Love.
1097 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
1099 * Note this is a helper function intended to be used by LSMs which
1100 * wish to use this logic.
1102 int __vm_enough_memory(long pages
, int cap_sys_admin
)
1104 unsigned long free
, allowed
;
1106 vm_acct_memory(pages
);
1109 * Sometimes we want to use more memory than we have
1111 if (sysctl_overcommit_memory
== OVERCOMMIT_ALWAYS
)
1114 if (sysctl_overcommit_memory
== OVERCOMMIT_GUESS
) {
1117 free
= get_page_cache_size();
1118 free
+= nr_swap_pages
;
1121 * Any slabs which are created with the
1122 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
1123 * which are reclaimable, under pressure. The dentry
1124 * cache and most inode caches should fall into this
1126 free
+= atomic_read(&slab_reclaim_pages
);
1129 * Leave the last 3% for root
1138 * nr_free_pages() is very expensive on large systems,
1139 * only call if we're about to fail.
1141 n
= nr_free_pages();
1148 vm_unacct_memory(pages
);
1152 allowed
= totalram_pages
* sysctl_overcommit_ratio
/ 100;
1154 * Leave the last 3% for root
1157 allowed
-= allowed
/ 32;
1158 allowed
+= total_swap_pages
;
1160 /* Don't let a single process grow too big:
1161 leave 3% of the size of this process for other processes */
1162 allowed
-= current
->mm
->total_vm
/ 32;
1165 * cast `allowed' as a signed long because vm_committed_space
1166 * sometimes has a negative value
1168 if (atomic_read(&vm_committed_space
) < (long)allowed
)
1171 vm_unacct_memory(pages
);
1176 int in_gate_area_no_task(unsigned long addr
)