11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * mm/mmap.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Written by obz. 51da177e4SLinus Torvalds * 6046c6884SAlan Cox * Address space accounting code <alan@lxorguk.ukuu.org.uk> 71da177e4SLinus Torvalds */ 81da177e4SLinus Torvalds 9b1de0d13SMitchel Humpherys #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 10b1de0d13SMitchel Humpherys 11e8420a8eSCyril Hrubis #include <linux/kernel.h> 121da177e4SLinus Torvalds #include <linux/slab.h> 134af3c9ccSAlexey Dobriyan #include <linux/backing-dev.h> 141da177e4SLinus Torvalds #include <linux/mm.h> 15615d6e87SDavidlohr Bueso #include <linux/vmacache.h> 161da177e4SLinus Torvalds #include <linux/shm.h> 171da177e4SLinus Torvalds #include <linux/mman.h> 181da177e4SLinus Torvalds #include <linux/pagemap.h> 191da177e4SLinus Torvalds #include <linux/swap.h> 201da177e4SLinus Torvalds #include <linux/syscalls.h> 21c59ede7bSRandy.Dunlap #include <linux/capability.h> 221da177e4SLinus Torvalds #include <linux/init.h> 231da177e4SLinus Torvalds #include <linux/file.h> 241da177e4SLinus Torvalds #include <linux/fs.h> 251da177e4SLinus Torvalds #include <linux/personality.h> 261da177e4SLinus Torvalds #include <linux/security.h> 271da177e4SLinus Torvalds #include <linux/hugetlb.h> 281da177e4SLinus Torvalds #include <linux/profile.h> 29b95f1b31SPaul Gortmaker #include <linux/export.h> 301da177e4SLinus Torvalds #include <linux/mount.h> 311da177e4SLinus Torvalds #include <linux/mempolicy.h> 321da177e4SLinus Torvalds #include <linux/rmap.h> 33cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h> 3482f71ae4SKonstantin Khlebnikov #include <linux/mmdebug.h> 35cdd6c482SIngo Molnar #include <linux/perf_event.h> 36120a795dSAl Viro #include <linux/audit.h> 37b15d00b6SAndrea Arcangeli #include <linux/khugepaged.h> 382b144498SSrikar Dronamraju #include <linux/uprobes.h> 39d3737187SMichel Lespinasse #include <linux/rbtree_augmented.h> 40cf4aebc2SClark Williams #include <linux/sched/sysctl.h> 411640879aSAndrew Shewmaker #include <linux/notifier.h> 421640879aSAndrew Shewmaker #include <linux/memory.h> 43b1de0d13SMitchel Humpherys #include <linux/printk.h> 441da177e4SLinus Torvalds 451da177e4SLinus Torvalds #include <asm/uaccess.h> 461da177e4SLinus Torvalds #include <asm/cacheflush.h> 471da177e4SLinus Torvalds #include <asm/tlb.h> 48d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h> 491da177e4SLinus Torvalds 5042b77728SJan Beulich #include "internal.h" 5142b77728SJan Beulich 523a459756SKirill Korotaev #ifndef arch_mmap_check 533a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags) (0) 543a459756SKirill Korotaev #endif 553a459756SKirill Korotaev 5608e7d9b5SMartin Schwidefsky #ifndef arch_rebalance_pgtables 5708e7d9b5SMartin Schwidefsky #define arch_rebalance_pgtables(addr, len) (addr) 5808e7d9b5SMartin Schwidefsky #endif 5908e7d9b5SMartin Schwidefsky 60e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm, 61e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 62e0da382cSHugh Dickins unsigned long start, unsigned long end); 63e0da382cSHugh Dickins 641da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation. 651da177e4SLinus Torvalds * this is due to the limited x86 page protection hardware. The expected 661da177e4SLinus Torvalds * behavior is in parens: 671da177e4SLinus Torvalds * 681da177e4SLinus Torvalds * map_type prot 691da177e4SLinus Torvalds * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC 701da177e4SLinus Torvalds * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes 711da177e4SLinus Torvalds * w: (no) no w: (no) no w: (yes) yes w: (no) no 721da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 731da177e4SLinus Torvalds * 741da177e4SLinus Torvalds * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes 751da177e4SLinus Torvalds * w: (no) no w: (no) no w: (copy) copy w: (no) no 761da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 771da177e4SLinus Torvalds * 781da177e4SLinus Torvalds */ 791da177e4SLinus Torvalds pgprot_t protection_map[16] = { 801da177e4SLinus Torvalds __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111, 811da177e4SLinus Torvalds __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111 821da177e4SLinus Torvalds }; 831da177e4SLinus Torvalds 84804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags) 85804af2cfSHugh Dickins { 86b845f313SDave Kleikamp return __pgprot(pgprot_val(protection_map[vm_flags & 87b845f313SDave Kleikamp (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) | 88b845f313SDave Kleikamp pgprot_val(arch_vm_get_page_prot(vm_flags))); 89804af2cfSHugh Dickins } 90804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot); 91804af2cfSHugh Dickins 9234679d7eSShaohua Li int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS; /* heuristic overcommit */ 9334679d7eSShaohua Li int sysctl_overcommit_ratio __read_mostly = 50; /* default is 50% */ 9449f0ce5fSJerome Marchand unsigned long sysctl_overcommit_kbytes __read_mostly; 95c3d8c141SChristoph Lameter int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT; 96c9b1d098SAndrew Shewmaker unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */ 974eeab4f5SAndrew Shewmaker unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */ 9834679d7eSShaohua Li /* 9934679d7eSShaohua Li * Make sure vm_committed_as in one cacheline and not cacheline shared with 10034679d7eSShaohua Li * other variables. It can be updated by several CPUs frequently. 10134679d7eSShaohua Li */ 10234679d7eSShaohua Li struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp; 1031da177e4SLinus Torvalds 1041da177e4SLinus Torvalds /* 105997071bcSK. Y. Srinivasan * The global memory commitment made in the system can be a metric 106997071bcSK. Y. Srinivasan * that can be used to drive ballooning decisions when Linux is hosted 107997071bcSK. Y. Srinivasan * as a guest. On Hyper-V, the host implements a policy engine for dynamically 108997071bcSK. Y. Srinivasan * balancing memory across competing virtual machines that are hosted. 109997071bcSK. Y. Srinivasan * Several metrics drive this policy engine including the guest reported 110997071bcSK. Y. Srinivasan * memory commitment. 111997071bcSK. Y. Srinivasan */ 112997071bcSK. Y. Srinivasan unsigned long vm_memory_committed(void) 113997071bcSK. Y. Srinivasan { 114997071bcSK. Y. Srinivasan return percpu_counter_read_positive(&vm_committed_as); 115997071bcSK. Y. Srinivasan } 116997071bcSK. Y. Srinivasan EXPORT_SYMBOL_GPL(vm_memory_committed); 117997071bcSK. Y. Srinivasan 118997071bcSK. Y. Srinivasan /* 1191da177e4SLinus Torvalds * Check that a process has enough memory to allocate a new virtual 1201da177e4SLinus Torvalds * mapping. 0 means there is enough memory for the allocation to 1211da177e4SLinus Torvalds * succeed and -ENOMEM implies there is not. 1221da177e4SLinus Torvalds * 1231da177e4SLinus Torvalds * We currently support three overcommit policies, which are set via the 1241da177e4SLinus Torvalds * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting 1251da177e4SLinus Torvalds * 1261da177e4SLinus Torvalds * Strict overcommit modes added 2002 Feb 26 by Alan Cox. 1271da177e4SLinus Torvalds * Additional code 2002 Jul 20 by Robert Love. 1281da177e4SLinus Torvalds * 1291da177e4SLinus Torvalds * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise. 1301da177e4SLinus Torvalds * 1311da177e4SLinus Torvalds * Note this is a helper function intended to be used by LSMs which 1321da177e4SLinus Torvalds * wish to use this logic. 1331da177e4SLinus Torvalds */ 13434b4e4aaSAlan Cox int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin) 1351da177e4SLinus Torvalds { 136c9b1d098SAndrew Shewmaker unsigned long free, allowed, reserve; 1371da177e4SLinus Torvalds 13882f71ae4SKonstantin Khlebnikov VM_WARN_ONCE(percpu_counter_read(&vm_committed_as) < 13982f71ae4SKonstantin Khlebnikov -(s64)vm_committed_as_batch * num_online_cpus(), 14082f71ae4SKonstantin Khlebnikov "memory commitment underflow"); 14182f71ae4SKonstantin Khlebnikov 1421da177e4SLinus Torvalds vm_acct_memory(pages); 1431da177e4SLinus Torvalds 1441da177e4SLinus Torvalds /* 1451da177e4SLinus Torvalds * Sometimes we want to use more memory than we have 1461da177e4SLinus Torvalds */ 1471da177e4SLinus Torvalds if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS) 1481da177e4SLinus Torvalds return 0; 1491da177e4SLinus Torvalds 1501da177e4SLinus Torvalds if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) { 151c15bef30SDmitry Fink free = global_page_state(NR_FREE_PAGES); 152c15bef30SDmitry Fink free += global_page_state(NR_FILE_PAGES); 1531da177e4SLinus Torvalds 154c15bef30SDmitry Fink /* 155c15bef30SDmitry Fink * shmem pages shouldn't be counted as free in this 156c15bef30SDmitry Fink * case, they can't be purged, only swapped out, and 157c15bef30SDmitry Fink * that won't affect the overall amount of available 158c15bef30SDmitry Fink * memory in the system. 159c15bef30SDmitry Fink */ 160c15bef30SDmitry Fink free -= global_page_state(NR_SHMEM); 161c15bef30SDmitry Fink 162ec8acf20SShaohua Li free += get_nr_swap_pages(); 1631da177e4SLinus Torvalds 1641da177e4SLinus Torvalds /* 1651da177e4SLinus Torvalds * Any slabs which are created with the 1661da177e4SLinus Torvalds * SLAB_RECLAIM_ACCOUNT flag claim to have contents 1671da177e4SLinus Torvalds * which are reclaimable, under pressure. The dentry 1681da177e4SLinus Torvalds * cache and most inode caches should fall into this 1691da177e4SLinus Torvalds */ 170972d1a7bSChristoph Lameter free += global_page_state(NR_SLAB_RECLAIMABLE); 1711da177e4SLinus Torvalds 1721da177e4SLinus Torvalds /* 173c15bef30SDmitry Fink * Leave reserved pages. The pages are not for anonymous pages. 174c15bef30SDmitry Fink */ 175c15bef30SDmitry Fink if (free <= totalreserve_pages) 176c15bef30SDmitry Fink goto error; 177c15bef30SDmitry Fink else 178c15bef30SDmitry Fink free -= totalreserve_pages; 179c15bef30SDmitry Fink 180c15bef30SDmitry Fink /* 1814eeab4f5SAndrew Shewmaker * Reserve some for root 1821da177e4SLinus Torvalds */ 1831da177e4SLinus Torvalds if (!cap_sys_admin) 1844eeab4f5SAndrew Shewmaker free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10); 1851da177e4SLinus Torvalds 1861da177e4SLinus Torvalds if (free > pages) 1871da177e4SLinus Torvalds return 0; 1881da177e4SLinus Torvalds 1896d9f7839SHideo AOKI goto error; 1901da177e4SLinus Torvalds } 1911da177e4SLinus Torvalds 19200619bccSJerome Marchand allowed = vm_commit_limit(); 1931da177e4SLinus Torvalds /* 1944eeab4f5SAndrew Shewmaker * Reserve some for root 1951da177e4SLinus Torvalds */ 1961da177e4SLinus Torvalds if (!cap_sys_admin) 1974eeab4f5SAndrew Shewmaker allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10); 1981da177e4SLinus Torvalds 199c9b1d098SAndrew Shewmaker /* 200c9b1d098SAndrew Shewmaker * Don't let a single process grow so big a user can't recover 201c9b1d098SAndrew Shewmaker */ 202c9b1d098SAndrew Shewmaker if (mm) { 203c9b1d098SAndrew Shewmaker reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10); 204c9b1d098SAndrew Shewmaker allowed -= min(mm->total_vm / 32, reserve); 205c9b1d098SAndrew Shewmaker } 2061da177e4SLinus Torvalds 20700a62ce9SKOSAKI Motohiro if (percpu_counter_read_positive(&vm_committed_as) < allowed) 2081da177e4SLinus Torvalds return 0; 2096d9f7839SHideo AOKI error: 2101da177e4SLinus Torvalds vm_unacct_memory(pages); 2111da177e4SLinus Torvalds 2121da177e4SLinus Torvalds return -ENOMEM; 2131da177e4SLinus Torvalds } 2141da177e4SLinus Torvalds 2151da177e4SLinus Torvalds /* 2163d48ae45SPeter Zijlstra * Requires inode->i_mapping->i_mmap_mutex 2171da177e4SLinus Torvalds */ 2181da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma, 2191da177e4SLinus Torvalds struct file *file, struct address_space *mapping) 2201da177e4SLinus Torvalds { 2211da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 222496ad9aaSAl Viro atomic_inc(&file_inode(file)->i_writecount); 2231da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 2244bb5f5d9SDavid Herrmann mapping_unmap_writable(mapping); 2251da177e4SLinus Torvalds 2261da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 2271da177e4SLinus Torvalds if (unlikely(vma->vm_flags & VM_NONLINEAR)) 2286b2dbba8SMichel Lespinasse list_del_init(&vma->shared.nonlinear); 2291da177e4SLinus Torvalds else 2306b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, &mapping->i_mmap); 2311da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 2321da177e4SLinus Torvalds } 2331da177e4SLinus Torvalds 2341da177e4SLinus Torvalds /* 2356b2dbba8SMichel Lespinasse * Unlink a file-based vm structure from its interval tree, to hide 236a8fb5618SHugh Dickins * vma from rmap and vmtruncate before freeing its page tables. 2371da177e4SLinus Torvalds */ 238a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma) 2391da177e4SLinus Torvalds { 2401da177e4SLinus Torvalds struct file *file = vma->vm_file; 2411da177e4SLinus Torvalds 2421da177e4SLinus Torvalds if (file) { 2431da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 2443d48ae45SPeter Zijlstra mutex_lock(&mapping->i_mmap_mutex); 2451da177e4SLinus Torvalds __remove_shared_vm_struct(vma, file, mapping); 2463d48ae45SPeter Zijlstra mutex_unlock(&mapping->i_mmap_mutex); 2471da177e4SLinus Torvalds } 248a8fb5618SHugh Dickins } 249a8fb5618SHugh Dickins 250a8fb5618SHugh Dickins /* 251a8fb5618SHugh Dickins * Close a vm structure and free it, returning the next. 252a8fb5618SHugh Dickins */ 253a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma) 254a8fb5618SHugh Dickins { 255a8fb5618SHugh Dickins struct vm_area_struct *next = vma->vm_next; 256a8fb5618SHugh Dickins 257a8fb5618SHugh Dickins might_sleep(); 2581da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 2591da177e4SLinus Torvalds vma->vm_ops->close(vma); 260e9714acfSKonstantin Khlebnikov if (vma->vm_file) 261a8fb5618SHugh Dickins fput(vma->vm_file); 262f0be3d32SLee Schermerhorn mpol_put(vma_policy(vma)); 2631da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 264a8fb5618SHugh Dickins return next; 2651da177e4SLinus Torvalds } 2661da177e4SLinus Torvalds 267e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len); 268e4eb1ff6SLinus Torvalds 2696a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk) 2701da177e4SLinus Torvalds { 2718764b338SCyrill Gorcunov unsigned long retval; 2721da177e4SLinus Torvalds unsigned long newbrk, oldbrk; 2731da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 274a5b4592cSJiri Kosina unsigned long min_brk; 275128557ffSMichel Lespinasse bool populate; 2761da177e4SLinus Torvalds 2771da177e4SLinus Torvalds down_write(&mm->mmap_sem); 2781da177e4SLinus Torvalds 279a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK 2805520e894SJiri Kosina /* 2815520e894SJiri Kosina * CONFIG_COMPAT_BRK can still be overridden by setting 2825520e894SJiri Kosina * randomize_va_space to 2, which will still cause mm->start_brk 2835520e894SJiri Kosina * to be arbitrarily shifted 2845520e894SJiri Kosina */ 2854471a675SJiri Kosina if (current->brk_randomized) 2865520e894SJiri Kosina min_brk = mm->start_brk; 2875520e894SJiri Kosina else 2885520e894SJiri Kosina min_brk = mm->end_data; 289a5b4592cSJiri Kosina #else 290a5b4592cSJiri Kosina min_brk = mm->start_brk; 291a5b4592cSJiri Kosina #endif 292a5b4592cSJiri Kosina if (brk < min_brk) 2931da177e4SLinus Torvalds goto out; 2941e624196SRam Gupta 2951e624196SRam Gupta /* 2961e624196SRam Gupta * Check against rlimit here. If this check is done later after the test 2971e624196SRam Gupta * of oldbrk with newbrk then it can escape the test and let the data 2981e624196SRam Gupta * segment grow beyond its set limit the in case where the limit is 2991e624196SRam Gupta * not page aligned -Ram Gupta 3001e624196SRam Gupta */ 3018764b338SCyrill Gorcunov if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk, 3028764b338SCyrill Gorcunov mm->end_data, mm->start_data)) 3031e624196SRam Gupta goto out; 3041e624196SRam Gupta 3051da177e4SLinus Torvalds newbrk = PAGE_ALIGN(brk); 3061da177e4SLinus Torvalds oldbrk = PAGE_ALIGN(mm->brk); 3071da177e4SLinus Torvalds if (oldbrk == newbrk) 3081da177e4SLinus Torvalds goto set_brk; 3091da177e4SLinus Torvalds 3101da177e4SLinus Torvalds /* Always allow shrinking brk. */ 3111da177e4SLinus Torvalds if (brk <= mm->brk) { 3121da177e4SLinus Torvalds if (!do_munmap(mm, newbrk, oldbrk-newbrk)) 3131da177e4SLinus Torvalds goto set_brk; 3141da177e4SLinus Torvalds goto out; 3151da177e4SLinus Torvalds } 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds /* Check against existing mmap mappings. */ 3181da177e4SLinus Torvalds if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE)) 3191da177e4SLinus Torvalds goto out; 3201da177e4SLinus Torvalds 3211da177e4SLinus Torvalds /* Ok, looks good - let it rip. */ 3221da177e4SLinus Torvalds if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk) 3231da177e4SLinus Torvalds goto out; 324128557ffSMichel Lespinasse 3251da177e4SLinus Torvalds set_brk: 3261da177e4SLinus Torvalds mm->brk = brk; 327128557ffSMichel Lespinasse populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0; 328128557ffSMichel Lespinasse up_write(&mm->mmap_sem); 329128557ffSMichel Lespinasse if (populate) 330128557ffSMichel Lespinasse mm_populate(oldbrk, newbrk - oldbrk); 331128557ffSMichel Lespinasse return brk; 332128557ffSMichel Lespinasse 3331da177e4SLinus Torvalds out: 3341da177e4SLinus Torvalds retval = mm->brk; 3351da177e4SLinus Torvalds up_write(&mm->mmap_sem); 3361da177e4SLinus Torvalds return retval; 3371da177e4SLinus Torvalds } 3381da177e4SLinus Torvalds 339d3737187SMichel Lespinasse static long vma_compute_subtree_gap(struct vm_area_struct *vma) 340d3737187SMichel Lespinasse { 341d3737187SMichel Lespinasse unsigned long max, subtree_gap; 342d3737187SMichel Lespinasse max = vma->vm_start; 343d3737187SMichel Lespinasse if (vma->vm_prev) 344d3737187SMichel Lespinasse max -= vma->vm_prev->vm_end; 345d3737187SMichel Lespinasse if (vma->vm_rb.rb_left) { 346d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_left, 347d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 348d3737187SMichel Lespinasse if (subtree_gap > max) 349d3737187SMichel Lespinasse max = subtree_gap; 350d3737187SMichel Lespinasse } 351d3737187SMichel Lespinasse if (vma->vm_rb.rb_right) { 352d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_right, 353d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 354d3737187SMichel Lespinasse if (subtree_gap > max) 355d3737187SMichel Lespinasse max = subtree_gap; 356d3737187SMichel Lespinasse } 357d3737187SMichel Lespinasse return max; 358d3737187SMichel Lespinasse } 359d3737187SMichel Lespinasse 360ed8ea815SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB 3611da177e4SLinus Torvalds static int browse_rb(struct rb_root *root) 3621da177e4SLinus Torvalds { 3635a0768f6SMichel Lespinasse int i = 0, j, bug = 0; 3641da177e4SLinus Torvalds struct rb_node *nd, *pn = NULL; 3651da177e4SLinus Torvalds unsigned long prev = 0, pend = 0; 3661da177e4SLinus Torvalds 3671da177e4SLinus Torvalds for (nd = rb_first(root); nd; nd = rb_next(nd)) { 3681da177e4SLinus Torvalds struct vm_area_struct *vma; 3691da177e4SLinus Torvalds vma = rb_entry(nd, struct vm_area_struct, vm_rb); 3705a0768f6SMichel Lespinasse if (vma->vm_start < prev) { 3718542bdfcSSasha Levin pr_emerg("vm_start %lx prev %lx\n", vma->vm_start, prev); 3725a0768f6SMichel Lespinasse bug = 1; 3735a0768f6SMichel Lespinasse } 3745a0768f6SMichel Lespinasse if (vma->vm_start < pend) { 3758542bdfcSSasha Levin pr_emerg("vm_start %lx pend %lx\n", vma->vm_start, pend); 3765a0768f6SMichel Lespinasse bug = 1; 3775a0768f6SMichel Lespinasse } 3785a0768f6SMichel Lespinasse if (vma->vm_start > vma->vm_end) { 3798542bdfcSSasha Levin pr_emerg("vm_end %lx < vm_start %lx\n", 3805a0768f6SMichel Lespinasse vma->vm_end, vma->vm_start); 3815a0768f6SMichel Lespinasse bug = 1; 3825a0768f6SMichel Lespinasse } 3835a0768f6SMichel Lespinasse if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) { 3848542bdfcSSasha Levin pr_emerg("free gap %lx, correct %lx\n", 3855a0768f6SMichel Lespinasse vma->rb_subtree_gap, 3865a0768f6SMichel Lespinasse vma_compute_subtree_gap(vma)); 3875a0768f6SMichel Lespinasse bug = 1; 3885a0768f6SMichel Lespinasse } 3891da177e4SLinus Torvalds i++; 3901da177e4SLinus Torvalds pn = nd; 391d1af65d1SDavid Miller prev = vma->vm_start; 392d1af65d1SDavid Miller pend = vma->vm_end; 3931da177e4SLinus Torvalds } 3941da177e4SLinus Torvalds j = 0; 3955a0768f6SMichel Lespinasse for (nd = pn; nd; nd = rb_prev(nd)) 3961da177e4SLinus Torvalds j++; 3975a0768f6SMichel Lespinasse if (i != j) { 3988542bdfcSSasha Levin pr_emerg("backwards %d, forwards %d\n", j, i); 3995a0768f6SMichel Lespinasse bug = 1; 4001da177e4SLinus Torvalds } 4015a0768f6SMichel Lespinasse return bug ? -1 : i; 4021da177e4SLinus Torvalds } 4031da177e4SLinus Torvalds 404d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore) 405d3737187SMichel Lespinasse { 406d3737187SMichel Lespinasse struct rb_node *nd; 407d3737187SMichel Lespinasse 408d3737187SMichel Lespinasse for (nd = rb_first(root); nd; nd = rb_next(nd)) { 409d3737187SMichel Lespinasse struct vm_area_struct *vma; 410d3737187SMichel Lespinasse vma = rb_entry(nd, struct vm_area_struct, vm_rb); 411d3737187SMichel Lespinasse BUG_ON(vma != ignore && 412d3737187SMichel Lespinasse vma->rb_subtree_gap != vma_compute_subtree_gap(vma)); 413d3737187SMichel Lespinasse } 4141da177e4SLinus Torvalds } 4151da177e4SLinus Torvalds 416eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm) 4171da177e4SLinus Torvalds { 4181da177e4SLinus Torvalds int bug = 0; 4191da177e4SLinus Torvalds int i = 0; 4205a0768f6SMichel Lespinasse unsigned long highest_address = 0; 421ed8ea815SMichel Lespinasse struct vm_area_struct *vma = mm->mmap; 422ed8ea815SMichel Lespinasse while (vma) { 423ed8ea815SMichel Lespinasse struct anon_vma_chain *avc; 42463c3b902SMichel Lespinasse vma_lock_anon_vma(vma); 425ed8ea815SMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 426ed8ea815SMichel Lespinasse anon_vma_interval_tree_verify(avc); 42763c3b902SMichel Lespinasse vma_unlock_anon_vma(vma); 4285a0768f6SMichel Lespinasse highest_address = vma->vm_end; 429ed8ea815SMichel Lespinasse vma = vma->vm_next; 4301da177e4SLinus Torvalds i++; 4311da177e4SLinus Torvalds } 4325a0768f6SMichel Lespinasse if (i != mm->map_count) { 4338542bdfcSSasha Levin pr_emerg("map_count %d vm_next %d\n", mm->map_count, i); 4345a0768f6SMichel Lespinasse bug = 1; 4355a0768f6SMichel Lespinasse } 4365a0768f6SMichel Lespinasse if (highest_address != mm->highest_vm_end) { 4378542bdfcSSasha Levin pr_emerg("mm->highest_vm_end %lx, found %lx\n", 4385a0768f6SMichel Lespinasse mm->highest_vm_end, highest_address); 4395a0768f6SMichel Lespinasse bug = 1; 4405a0768f6SMichel Lespinasse } 4411da177e4SLinus Torvalds i = browse_rb(&mm->mm_rb); 4425a0768f6SMichel Lespinasse if (i != mm->map_count) { 4438542bdfcSSasha Levin pr_emerg("map_count %d rb %d\n", mm->map_count, i); 4445a0768f6SMichel Lespinasse bug = 1; 4455a0768f6SMichel Lespinasse } 44646a350efSEric Sesterhenn BUG_ON(bug); 4471da177e4SLinus Torvalds } 4481da177e4SLinus Torvalds #else 449d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0) 4501da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0) 4511da177e4SLinus Torvalds #endif 4521da177e4SLinus Torvalds 453d3737187SMichel Lespinasse RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb, 454d3737187SMichel Lespinasse unsigned long, rb_subtree_gap, vma_compute_subtree_gap) 455d3737187SMichel Lespinasse 456d3737187SMichel Lespinasse /* 457d3737187SMichel Lespinasse * Update augmented rbtree rb_subtree_gap values after vma->vm_start or 458d3737187SMichel Lespinasse * vma->vm_prev->vm_end values changed, without modifying the vma's position 459d3737187SMichel Lespinasse * in the rbtree. 460d3737187SMichel Lespinasse */ 461d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma) 462d3737187SMichel Lespinasse { 463d3737187SMichel Lespinasse /* 464d3737187SMichel Lespinasse * As it turns out, RB_DECLARE_CALLBACKS() already created a callback 465d3737187SMichel Lespinasse * function that does exacltly what we want. 466d3737187SMichel Lespinasse */ 467d3737187SMichel Lespinasse vma_gap_callbacks_propagate(&vma->vm_rb, NULL); 468d3737187SMichel Lespinasse } 469d3737187SMichel Lespinasse 470d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma, 471d3737187SMichel Lespinasse struct rb_root *root) 472d3737187SMichel Lespinasse { 473d3737187SMichel Lespinasse /* All rb_subtree_gap values must be consistent prior to insertion */ 474d3737187SMichel Lespinasse validate_mm_rb(root, NULL); 475d3737187SMichel Lespinasse 476d3737187SMichel Lespinasse rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 477d3737187SMichel Lespinasse } 478d3737187SMichel Lespinasse 479d3737187SMichel Lespinasse static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root) 480d3737187SMichel Lespinasse { 481d3737187SMichel Lespinasse /* 482d3737187SMichel Lespinasse * All rb_subtree_gap values must be consistent prior to erase, 483d3737187SMichel Lespinasse * with the possible exception of the vma being erased. 484d3737187SMichel Lespinasse */ 485d3737187SMichel Lespinasse validate_mm_rb(root, vma); 486d3737187SMichel Lespinasse 487d3737187SMichel Lespinasse /* 488d3737187SMichel Lespinasse * Note rb_erase_augmented is a fairly large inline function, 489d3737187SMichel Lespinasse * so make sure we instantiate it only once with our desired 490d3737187SMichel Lespinasse * augmented rbtree callbacks. 491d3737187SMichel Lespinasse */ 492d3737187SMichel Lespinasse rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 493d3737187SMichel Lespinasse } 494d3737187SMichel Lespinasse 495bf181b9fSMichel Lespinasse /* 496bf181b9fSMichel Lespinasse * vma has some anon_vma assigned, and is already inserted on that 497bf181b9fSMichel Lespinasse * anon_vma's interval trees. 498bf181b9fSMichel Lespinasse * 499bf181b9fSMichel Lespinasse * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the 500bf181b9fSMichel Lespinasse * vma must be removed from the anon_vma's interval trees using 501bf181b9fSMichel Lespinasse * anon_vma_interval_tree_pre_update_vma(). 502bf181b9fSMichel Lespinasse * 503bf181b9fSMichel Lespinasse * After the update, the vma will be reinserted using 504bf181b9fSMichel Lespinasse * anon_vma_interval_tree_post_update_vma(). 505bf181b9fSMichel Lespinasse * 506bf181b9fSMichel Lespinasse * The entire update must be protected by exclusive mmap_sem and by 507bf181b9fSMichel Lespinasse * the root anon_vma's mutex. 508bf181b9fSMichel Lespinasse */ 509bf181b9fSMichel Lespinasse static inline void 510bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma) 511bf181b9fSMichel Lespinasse { 512bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 513bf181b9fSMichel Lespinasse 514bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 515bf181b9fSMichel Lespinasse anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root); 516bf181b9fSMichel Lespinasse } 517bf181b9fSMichel Lespinasse 518bf181b9fSMichel Lespinasse static inline void 519bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma) 520bf181b9fSMichel Lespinasse { 521bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 522bf181b9fSMichel Lespinasse 523bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 524bf181b9fSMichel Lespinasse anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root); 525bf181b9fSMichel Lespinasse } 526bf181b9fSMichel Lespinasse 5276597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr, 5286597d783SHugh Dickins unsigned long end, struct vm_area_struct **pprev, 5296597d783SHugh Dickins struct rb_node ***rb_link, struct rb_node **rb_parent) 5301da177e4SLinus Torvalds { 5311da177e4SLinus Torvalds struct rb_node **__rb_link, *__rb_parent, *rb_prev; 5321da177e4SLinus Torvalds 5331da177e4SLinus Torvalds __rb_link = &mm->mm_rb.rb_node; 5341da177e4SLinus Torvalds rb_prev = __rb_parent = NULL; 5351da177e4SLinus Torvalds 5361da177e4SLinus Torvalds while (*__rb_link) { 5371da177e4SLinus Torvalds struct vm_area_struct *vma_tmp; 5381da177e4SLinus Torvalds 5391da177e4SLinus Torvalds __rb_parent = *__rb_link; 5401da177e4SLinus Torvalds vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb); 5411da177e4SLinus Torvalds 5421da177e4SLinus Torvalds if (vma_tmp->vm_end > addr) { 5436597d783SHugh Dickins /* Fail if an existing vma overlaps the area */ 5446597d783SHugh Dickins if (vma_tmp->vm_start < end) 5456597d783SHugh Dickins return -ENOMEM; 5461da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_left; 5471da177e4SLinus Torvalds } else { 5481da177e4SLinus Torvalds rb_prev = __rb_parent; 5491da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_right; 5501da177e4SLinus Torvalds } 5511da177e4SLinus Torvalds } 5521da177e4SLinus Torvalds 5531da177e4SLinus Torvalds *pprev = NULL; 5541da177e4SLinus Torvalds if (rb_prev) 5551da177e4SLinus Torvalds *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb); 5561da177e4SLinus Torvalds *rb_link = __rb_link; 5571da177e4SLinus Torvalds *rb_parent = __rb_parent; 5586597d783SHugh Dickins return 0; 5591da177e4SLinus Torvalds } 5601da177e4SLinus Torvalds 561e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm, 562e8420a8eSCyril Hrubis unsigned long addr, unsigned long end) 563e8420a8eSCyril Hrubis { 564e8420a8eSCyril Hrubis unsigned long nr_pages = 0; 565e8420a8eSCyril Hrubis struct vm_area_struct *vma; 566e8420a8eSCyril Hrubis 567e8420a8eSCyril Hrubis /* Find first overlaping mapping */ 568e8420a8eSCyril Hrubis vma = find_vma_intersection(mm, addr, end); 569e8420a8eSCyril Hrubis if (!vma) 570e8420a8eSCyril Hrubis return 0; 571e8420a8eSCyril Hrubis 572e8420a8eSCyril Hrubis nr_pages = (min(end, vma->vm_end) - 573e8420a8eSCyril Hrubis max(addr, vma->vm_start)) >> PAGE_SHIFT; 574e8420a8eSCyril Hrubis 575e8420a8eSCyril Hrubis /* Iterate over the rest of the overlaps */ 576e8420a8eSCyril Hrubis for (vma = vma->vm_next; vma; vma = vma->vm_next) { 577e8420a8eSCyril Hrubis unsigned long overlap_len; 578e8420a8eSCyril Hrubis 579e8420a8eSCyril Hrubis if (vma->vm_start > end) 580e8420a8eSCyril Hrubis break; 581e8420a8eSCyril Hrubis 582e8420a8eSCyril Hrubis overlap_len = min(end, vma->vm_end) - vma->vm_start; 583e8420a8eSCyril Hrubis nr_pages += overlap_len >> PAGE_SHIFT; 584e8420a8eSCyril Hrubis } 585e8420a8eSCyril Hrubis 586e8420a8eSCyril Hrubis return nr_pages; 587e8420a8eSCyril Hrubis } 588e8420a8eSCyril Hrubis 5891da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma, 5901da177e4SLinus Torvalds struct rb_node **rb_link, struct rb_node *rb_parent) 5911da177e4SLinus Torvalds { 592d3737187SMichel Lespinasse /* Update tracking information for the gap following the new vma. */ 593d3737187SMichel Lespinasse if (vma->vm_next) 594d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 595d3737187SMichel Lespinasse else 596d3737187SMichel Lespinasse mm->highest_vm_end = vma->vm_end; 597d3737187SMichel Lespinasse 598d3737187SMichel Lespinasse /* 599d3737187SMichel Lespinasse * vma->vm_prev wasn't known when we followed the rbtree to find the 600d3737187SMichel Lespinasse * correct insertion point for that vma. As a result, we could not 601d3737187SMichel Lespinasse * update the vma vm_rb parents rb_subtree_gap values on the way down. 602d3737187SMichel Lespinasse * So, we first insert the vma with a zero rb_subtree_gap value 603d3737187SMichel Lespinasse * (to be consistent with what we did on the way down), and then 604d3737187SMichel Lespinasse * immediately update the gap to the correct value. Finally we 605d3737187SMichel Lespinasse * rebalance the rbtree after all augmented values have been set. 606d3737187SMichel Lespinasse */ 6071da177e4SLinus Torvalds rb_link_node(&vma->vm_rb, rb_parent, rb_link); 608d3737187SMichel Lespinasse vma->rb_subtree_gap = 0; 609d3737187SMichel Lespinasse vma_gap_update(vma); 610d3737187SMichel Lespinasse vma_rb_insert(vma, &mm->mm_rb); 6111da177e4SLinus Torvalds } 6121da177e4SLinus Torvalds 613cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma) 6141da177e4SLinus Torvalds { 6151da177e4SLinus Torvalds struct file *file; 6161da177e4SLinus Torvalds 6171da177e4SLinus Torvalds file = vma->vm_file; 6181da177e4SLinus Torvalds if (file) { 6191da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 6201da177e4SLinus Torvalds 6211da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 622496ad9aaSAl Viro atomic_dec(&file_inode(file)->i_writecount); 6231da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 6244bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 6251da177e4SLinus Torvalds 6261da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 6271da177e4SLinus Torvalds if (unlikely(vma->vm_flags & VM_NONLINEAR)) 6281da177e4SLinus Torvalds vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear); 6291da177e4SLinus Torvalds else 6306b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, &mapping->i_mmap); 6311da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 6321da177e4SLinus Torvalds } 6331da177e4SLinus Torvalds } 6341da177e4SLinus Torvalds 6351da177e4SLinus Torvalds static void 6361da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6371da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6381da177e4SLinus Torvalds struct rb_node *rb_parent) 6391da177e4SLinus Torvalds { 6401da177e4SLinus Torvalds __vma_link_list(mm, vma, prev, rb_parent); 6411da177e4SLinus Torvalds __vma_link_rb(mm, vma, rb_link, rb_parent); 6421da177e4SLinus Torvalds } 6431da177e4SLinus Torvalds 6441da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6451da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6461da177e4SLinus Torvalds struct rb_node *rb_parent) 6471da177e4SLinus Torvalds { 6481da177e4SLinus Torvalds struct address_space *mapping = NULL; 6491da177e4SLinus Torvalds 65064ac4940SHuang Shijie if (vma->vm_file) { 6511da177e4SLinus Torvalds mapping = vma->vm_file->f_mapping; 6523d48ae45SPeter Zijlstra mutex_lock(&mapping->i_mmap_mutex); 65364ac4940SHuang Shijie } 6541da177e4SLinus Torvalds 6551da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6561da177e4SLinus Torvalds __vma_link_file(vma); 6571da177e4SLinus Torvalds 6581da177e4SLinus Torvalds if (mapping) 6593d48ae45SPeter Zijlstra mutex_unlock(&mapping->i_mmap_mutex); 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvalds mm->map_count++; 6621da177e4SLinus Torvalds validate_mm(mm); 6631da177e4SLinus Torvalds } 6641da177e4SLinus Torvalds 6651da177e4SLinus Torvalds /* 66688f6b4c3SKautuk Consul * Helper for vma_adjust() in the split_vma insert case: insert a vma into the 6676b2dbba8SMichel Lespinasse * mm's list and rbtree. It has already been inserted into the interval tree. 6681da177e4SLinus Torvalds */ 66948aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 6701da177e4SLinus Torvalds { 6716597d783SHugh Dickins struct vm_area_struct *prev; 6721da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 6731da177e4SLinus Torvalds 6746597d783SHugh Dickins if (find_vma_links(mm, vma->vm_start, vma->vm_end, 6756597d783SHugh Dickins &prev, &rb_link, &rb_parent)) 6766597d783SHugh Dickins BUG(); 6771da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6781da177e4SLinus Torvalds mm->map_count++; 6791da177e4SLinus Torvalds } 6801da177e4SLinus Torvalds 6811da177e4SLinus Torvalds static inline void 6821da177e4SLinus Torvalds __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma, 6831da177e4SLinus Torvalds struct vm_area_struct *prev) 6841da177e4SLinus Torvalds { 685d3737187SMichel Lespinasse struct vm_area_struct *next; 686297c5eeeSLinus Torvalds 687d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 688d3737187SMichel Lespinasse prev->vm_next = next = vma->vm_next; 689297c5eeeSLinus Torvalds if (next) 690297c5eeeSLinus Torvalds next->vm_prev = prev; 691615d6e87SDavidlohr Bueso 692615d6e87SDavidlohr Bueso /* Kill the cache */ 693615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 6941da177e4SLinus Torvalds } 6951da177e4SLinus Torvalds 6961da177e4SLinus Torvalds /* 6971da177e4SLinus Torvalds * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that 6981da177e4SLinus Torvalds * is already present in an i_mmap tree without adjusting the tree. 6991da177e4SLinus Torvalds * The following helper function should be used when such adjustments 7001da177e4SLinus Torvalds * are necessary. The "insert" vma (if any) is to be inserted 7011da177e4SLinus Torvalds * before we drop the necessary locks. 7021da177e4SLinus Torvalds */ 7035beb4930SRik van Riel int vma_adjust(struct vm_area_struct *vma, unsigned long start, 7041da177e4SLinus Torvalds unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert) 7051da177e4SLinus Torvalds { 7061da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 7071da177e4SLinus Torvalds struct vm_area_struct *next = vma->vm_next; 7081da177e4SLinus Torvalds struct vm_area_struct *importer = NULL; 7091da177e4SLinus Torvalds struct address_space *mapping = NULL; 7106b2dbba8SMichel Lespinasse struct rb_root *root = NULL; 711012f1800SRik van Riel struct anon_vma *anon_vma = NULL; 7121da177e4SLinus Torvalds struct file *file = vma->vm_file; 713d3737187SMichel Lespinasse bool start_changed = false, end_changed = false; 7141da177e4SLinus Torvalds long adjust_next = 0; 7151da177e4SLinus Torvalds int remove_next = 0; 7161da177e4SLinus Torvalds 7171da177e4SLinus Torvalds if (next && !insert) { 718287d97acSLinus Torvalds struct vm_area_struct *exporter = NULL; 719287d97acSLinus Torvalds 7201da177e4SLinus Torvalds if (end >= next->vm_end) { 7211da177e4SLinus Torvalds /* 7221da177e4SLinus Torvalds * vma expands, overlapping all the next, and 7231da177e4SLinus Torvalds * perhaps the one after too (mprotect case 6). 7241da177e4SLinus Torvalds */ 7251da177e4SLinus Torvalds again: remove_next = 1 + (end > next->vm_end); 7261da177e4SLinus Torvalds end = next->vm_end; 727287d97acSLinus Torvalds exporter = next; 7281da177e4SLinus Torvalds importer = vma; 7291da177e4SLinus Torvalds } else if (end > next->vm_start) { 7301da177e4SLinus Torvalds /* 7311da177e4SLinus Torvalds * vma expands, overlapping part of the next: 7321da177e4SLinus Torvalds * mprotect case 5 shifting the boundary up. 7331da177e4SLinus Torvalds */ 7341da177e4SLinus Torvalds adjust_next = (end - next->vm_start) >> PAGE_SHIFT; 735287d97acSLinus Torvalds exporter = next; 7361da177e4SLinus Torvalds importer = vma; 7371da177e4SLinus Torvalds } else if (end < vma->vm_end) { 7381da177e4SLinus Torvalds /* 7391da177e4SLinus Torvalds * vma shrinks, and !insert tells it's not 7401da177e4SLinus Torvalds * split_vma inserting another: so it must be 7411da177e4SLinus Torvalds * mprotect case 4 shifting the boundary down. 7421da177e4SLinus Torvalds */ 7431da177e4SLinus Torvalds adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT); 744287d97acSLinus Torvalds exporter = vma; 7451da177e4SLinus Torvalds importer = next; 7461da177e4SLinus Torvalds } 7471da177e4SLinus Torvalds 7485beb4930SRik van Riel /* 7495beb4930SRik van Riel * Easily overlooked: when mprotect shifts the boundary, 7505beb4930SRik van Riel * make sure the expanding vma has anon_vma set if the 7515beb4930SRik van Riel * shrinking vma had, to cover any anon pages imported. 7525beb4930SRik van Riel */ 753287d97acSLinus Torvalds if (exporter && exporter->anon_vma && !importer->anon_vma) { 754287d97acSLinus Torvalds if (anon_vma_clone(importer, exporter)) 7555beb4930SRik van Riel return -ENOMEM; 756287d97acSLinus Torvalds importer->anon_vma = exporter->anon_vma; 7575beb4930SRik van Riel } 7585beb4930SRik van Riel } 7595beb4930SRik van Riel 7601da177e4SLinus Torvalds if (file) { 7611da177e4SLinus Torvalds mapping = file->f_mapping; 762682968e0SSrikar Dronamraju if (!(vma->vm_flags & VM_NONLINEAR)) { 7631da177e4SLinus Torvalds root = &mapping->i_mmap; 764cbc91f71SSrikar Dronamraju uprobe_munmap(vma, vma->vm_start, vma->vm_end); 765682968e0SSrikar Dronamraju 766682968e0SSrikar Dronamraju if (adjust_next) 767cbc91f71SSrikar Dronamraju uprobe_munmap(next, next->vm_start, 768cbc91f71SSrikar Dronamraju next->vm_end); 769682968e0SSrikar Dronamraju } 770682968e0SSrikar Dronamraju 7713d48ae45SPeter Zijlstra mutex_lock(&mapping->i_mmap_mutex); 7721da177e4SLinus Torvalds if (insert) { 7731da177e4SLinus Torvalds /* 7746b2dbba8SMichel Lespinasse * Put into interval tree now, so instantiated pages 7751da177e4SLinus Torvalds * are visible to arm/parisc __flush_dcache_page 7761da177e4SLinus Torvalds * throughout; but we cannot insert into address 7771da177e4SLinus Torvalds * space until vma start or end is updated. 7781da177e4SLinus Torvalds */ 7791da177e4SLinus Torvalds __vma_link_file(insert); 7801da177e4SLinus Torvalds } 7811da177e4SLinus Torvalds } 7821da177e4SLinus Torvalds 78394fcc585SAndrea Arcangeli vma_adjust_trans_huge(vma, start, end, adjust_next); 78494fcc585SAndrea Arcangeli 785012f1800SRik van Riel anon_vma = vma->anon_vma; 786bf181b9fSMichel Lespinasse if (!anon_vma && adjust_next) 787bf181b9fSMichel Lespinasse anon_vma = next->anon_vma; 788bf181b9fSMichel Lespinasse if (anon_vma) { 789*81d1b09cSSasha Levin VM_BUG_ON_VMA(adjust_next && next->anon_vma && 790*81d1b09cSSasha Levin anon_vma != next->anon_vma, next); 7914fc3f1d6SIngo Molnar anon_vma_lock_write(anon_vma); 792bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 793bf181b9fSMichel Lespinasse if (adjust_next) 794bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(next); 795bf181b9fSMichel Lespinasse } 796012f1800SRik van Riel 7971da177e4SLinus Torvalds if (root) { 7981da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 7996b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, root); 8001da177e4SLinus Torvalds if (adjust_next) 8016b2dbba8SMichel Lespinasse vma_interval_tree_remove(next, root); 8021da177e4SLinus Torvalds } 8031da177e4SLinus Torvalds 804d3737187SMichel Lespinasse if (start != vma->vm_start) { 8051da177e4SLinus Torvalds vma->vm_start = start; 806d3737187SMichel Lespinasse start_changed = true; 807d3737187SMichel Lespinasse } 808d3737187SMichel Lespinasse if (end != vma->vm_end) { 8091da177e4SLinus Torvalds vma->vm_end = end; 810d3737187SMichel Lespinasse end_changed = true; 811d3737187SMichel Lespinasse } 8121da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 8131da177e4SLinus Torvalds if (adjust_next) { 8141da177e4SLinus Torvalds next->vm_start += adjust_next << PAGE_SHIFT; 8151da177e4SLinus Torvalds next->vm_pgoff += adjust_next; 8161da177e4SLinus Torvalds } 8171da177e4SLinus Torvalds 8181da177e4SLinus Torvalds if (root) { 8191da177e4SLinus Torvalds if (adjust_next) 8206b2dbba8SMichel Lespinasse vma_interval_tree_insert(next, root); 8216b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, root); 8221da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 8231da177e4SLinus Torvalds } 8241da177e4SLinus Torvalds 8251da177e4SLinus Torvalds if (remove_next) { 8261da177e4SLinus Torvalds /* 8271da177e4SLinus Torvalds * vma_merge has merged next into vma, and needs 8281da177e4SLinus Torvalds * us to remove next before dropping the locks. 8291da177e4SLinus Torvalds */ 8301da177e4SLinus Torvalds __vma_unlink(mm, next, vma); 8311da177e4SLinus Torvalds if (file) 8321da177e4SLinus Torvalds __remove_shared_vm_struct(next, file, mapping); 8331da177e4SLinus Torvalds } else if (insert) { 8341da177e4SLinus Torvalds /* 8351da177e4SLinus Torvalds * split_vma has split insert from vma, and needs 8361da177e4SLinus Torvalds * us to insert it before dropping the locks 8371da177e4SLinus Torvalds * (it may either follow vma or precede it). 8381da177e4SLinus Torvalds */ 8391da177e4SLinus Torvalds __insert_vm_struct(mm, insert); 840d3737187SMichel Lespinasse } else { 841d3737187SMichel Lespinasse if (start_changed) 842d3737187SMichel Lespinasse vma_gap_update(vma); 843d3737187SMichel Lespinasse if (end_changed) { 844d3737187SMichel Lespinasse if (!next) 845d3737187SMichel Lespinasse mm->highest_vm_end = end; 846d3737187SMichel Lespinasse else if (!adjust_next) 847d3737187SMichel Lespinasse vma_gap_update(next); 848d3737187SMichel Lespinasse } 8491da177e4SLinus Torvalds } 8501da177e4SLinus Torvalds 851bf181b9fSMichel Lespinasse if (anon_vma) { 852bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 853bf181b9fSMichel Lespinasse if (adjust_next) 854bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(next); 85508b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 856bf181b9fSMichel Lespinasse } 8571da177e4SLinus Torvalds if (mapping) 8583d48ae45SPeter Zijlstra mutex_unlock(&mapping->i_mmap_mutex); 8591da177e4SLinus Torvalds 8602b144498SSrikar Dronamraju if (root) { 8617b2d81d4SIngo Molnar uprobe_mmap(vma); 8622b144498SSrikar Dronamraju 8632b144498SSrikar Dronamraju if (adjust_next) 8647b2d81d4SIngo Molnar uprobe_mmap(next); 8652b144498SSrikar Dronamraju } 8662b144498SSrikar Dronamraju 8671da177e4SLinus Torvalds if (remove_next) { 868925d1c40SMatt Helsley if (file) { 869cbc91f71SSrikar Dronamraju uprobe_munmap(next, next->vm_start, next->vm_end); 8701da177e4SLinus Torvalds fput(file); 871925d1c40SMatt Helsley } 8725beb4930SRik van Riel if (next->anon_vma) 8735beb4930SRik van Riel anon_vma_merge(vma, next); 8741da177e4SLinus Torvalds mm->map_count--; 8753964acd0SOleg Nesterov mpol_put(vma_policy(next)); 8761da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, next); 8771da177e4SLinus Torvalds /* 8781da177e4SLinus Torvalds * In mprotect's case 6 (see comments on vma_merge), 8791da177e4SLinus Torvalds * we must remove another next too. It would clutter 8801da177e4SLinus Torvalds * up the code too much to do both in one go. 8811da177e4SLinus Torvalds */ 8821da177e4SLinus Torvalds next = vma->vm_next; 883d3737187SMichel Lespinasse if (remove_next == 2) 8841da177e4SLinus Torvalds goto again; 885d3737187SMichel Lespinasse else if (next) 886d3737187SMichel Lespinasse vma_gap_update(next); 887d3737187SMichel Lespinasse else 888d3737187SMichel Lespinasse mm->highest_vm_end = end; 8891da177e4SLinus Torvalds } 8902b144498SSrikar Dronamraju if (insert && file) 8917b2d81d4SIngo Molnar uprobe_mmap(insert); 8921da177e4SLinus Torvalds 8931da177e4SLinus Torvalds validate_mm(mm); 8945beb4930SRik van Riel 8955beb4930SRik van Riel return 0; 8961da177e4SLinus Torvalds } 8971da177e4SLinus Torvalds 8981da177e4SLinus Torvalds /* 8991da177e4SLinus Torvalds * If the vma has a ->close operation then the driver probably needs to release 9001da177e4SLinus Torvalds * per-vma resources, so we don't attempt to merge those. 9011da177e4SLinus Torvalds */ 9021da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma, 9031da177e4SLinus Torvalds struct file *file, unsigned long vm_flags) 9041da177e4SLinus Torvalds { 90534228d47SCyrill Gorcunov /* 90634228d47SCyrill Gorcunov * VM_SOFTDIRTY should not prevent from VMA merging, if we 90734228d47SCyrill Gorcunov * match the flags but dirty bit -- the caller should mark 90834228d47SCyrill Gorcunov * merged VMA as dirty. If dirty bit won't be excluded from 90934228d47SCyrill Gorcunov * comparison, we increase pressue on the memory system forcing 91034228d47SCyrill Gorcunov * the kernel to generate new VMAs when old one could be 91134228d47SCyrill Gorcunov * extended instead. 91234228d47SCyrill Gorcunov */ 91334228d47SCyrill Gorcunov if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY) 9141da177e4SLinus Torvalds return 0; 9151da177e4SLinus Torvalds if (vma->vm_file != file) 9161da177e4SLinus Torvalds return 0; 9171da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 9181da177e4SLinus Torvalds return 0; 9191da177e4SLinus Torvalds return 1; 9201da177e4SLinus Torvalds } 9211da177e4SLinus Torvalds 9221da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1, 923965f55deSShaohua Li struct anon_vma *anon_vma2, 924965f55deSShaohua Li struct vm_area_struct *vma) 9251da177e4SLinus Torvalds { 926965f55deSShaohua Li /* 927965f55deSShaohua Li * The list_is_singular() test is to avoid merging VMA cloned from 928965f55deSShaohua Li * parents. This can improve scalability caused by anon_vma lock. 929965f55deSShaohua Li */ 930965f55deSShaohua Li if ((!anon_vma1 || !anon_vma2) && (!vma || 931965f55deSShaohua Li list_is_singular(&vma->anon_vma_chain))) 932965f55deSShaohua Li return 1; 933965f55deSShaohua Li return anon_vma1 == anon_vma2; 9341da177e4SLinus Torvalds } 9351da177e4SLinus Torvalds 9361da177e4SLinus Torvalds /* 9371da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 9381da177e4SLinus Torvalds * in front of (at a lower virtual address and file offset than) the vma. 9391da177e4SLinus Torvalds * 9401da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 9411da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 9421da177e4SLinus Torvalds * 9431da177e4SLinus Torvalds * We don't check here for the merged mmap wrapping around the end of pagecache 9441da177e4SLinus Torvalds * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which 9451da177e4SLinus Torvalds * wrap, nor mmaps which cover the final page at index -1UL. 9461da177e4SLinus Torvalds */ 9471da177e4SLinus Torvalds static int 9481da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags, 9491da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff) 9501da177e4SLinus Torvalds { 9511da177e4SLinus Torvalds if (is_mergeable_vma(vma, file, vm_flags) && 952965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 9531da177e4SLinus Torvalds if (vma->vm_pgoff == vm_pgoff) 9541da177e4SLinus Torvalds return 1; 9551da177e4SLinus Torvalds } 9561da177e4SLinus Torvalds return 0; 9571da177e4SLinus Torvalds } 9581da177e4SLinus Torvalds 9591da177e4SLinus Torvalds /* 9601da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 9611da177e4SLinus Torvalds * beyond (at a higher virtual address and file offset than) the vma. 9621da177e4SLinus Torvalds * 9631da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 9641da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 9651da177e4SLinus Torvalds */ 9661da177e4SLinus Torvalds static int 9671da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags, 9681da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff) 9691da177e4SLinus Torvalds { 9701da177e4SLinus Torvalds if (is_mergeable_vma(vma, file, vm_flags) && 971965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 9721da177e4SLinus Torvalds pgoff_t vm_pglen; 973d6e93217SLibin vm_pglen = vma_pages(vma); 9741da177e4SLinus Torvalds if (vma->vm_pgoff + vm_pglen == vm_pgoff) 9751da177e4SLinus Torvalds return 1; 9761da177e4SLinus Torvalds } 9771da177e4SLinus Torvalds return 0; 9781da177e4SLinus Torvalds } 9791da177e4SLinus Torvalds 9801da177e4SLinus Torvalds /* 9811da177e4SLinus Torvalds * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out 9821da177e4SLinus Torvalds * whether that can be merged with its predecessor or its successor. 9831da177e4SLinus Torvalds * Or both (it neatly fills a hole). 9841da177e4SLinus Torvalds * 9851da177e4SLinus Torvalds * In most cases - when called for mmap, brk or mremap - [addr,end) is 9861da177e4SLinus Torvalds * certain not to be mapped by the time vma_merge is called; but when 9871da177e4SLinus Torvalds * called for mprotect, it is certain to be already mapped (either at 9881da177e4SLinus Torvalds * an offset within prev, or at the start of next), and the flags of 9891da177e4SLinus Torvalds * this area are about to be changed to vm_flags - and the no-change 9901da177e4SLinus Torvalds * case has already been eliminated. 9911da177e4SLinus Torvalds * 9921da177e4SLinus Torvalds * The following mprotect cases have to be considered, where AAAA is 9931da177e4SLinus Torvalds * the area passed down from mprotect_fixup, never extending beyond one 9941da177e4SLinus Torvalds * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after: 9951da177e4SLinus Torvalds * 9961da177e4SLinus Torvalds * AAAA AAAA AAAA AAAA 9971da177e4SLinus Torvalds * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX 9981da177e4SLinus Torvalds * cannot merge might become might become might become 9991da177e4SLinus Torvalds * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or 10001da177e4SLinus Torvalds * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or 10011da177e4SLinus Torvalds * mremap move: PPPPNNNNNNNN 8 10021da177e4SLinus Torvalds * AAAA 10031da177e4SLinus Torvalds * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN 10041da177e4SLinus Torvalds * might become case 1 below case 2 below case 3 below 10051da177e4SLinus Torvalds * 10061da177e4SLinus Torvalds * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX: 10071da177e4SLinus Torvalds * mprotect_fixup updates vm_flags & vm_page_prot on successful return. 10081da177e4SLinus Torvalds */ 10091da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm, 10101da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long addr, 10111da177e4SLinus Torvalds unsigned long end, unsigned long vm_flags, 10121da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, 10131da177e4SLinus Torvalds pgoff_t pgoff, struct mempolicy *policy) 10141da177e4SLinus Torvalds { 10151da177e4SLinus Torvalds pgoff_t pglen = (end - addr) >> PAGE_SHIFT; 10161da177e4SLinus Torvalds struct vm_area_struct *area, *next; 10175beb4930SRik van Riel int err; 10181da177e4SLinus Torvalds 10191da177e4SLinus Torvalds /* 10201da177e4SLinus Torvalds * We later require that vma->vm_flags == vm_flags, 10211da177e4SLinus Torvalds * so this tests vma->vm_flags & VM_SPECIAL, too. 10221da177e4SLinus Torvalds */ 10231da177e4SLinus Torvalds if (vm_flags & VM_SPECIAL) 10241da177e4SLinus Torvalds return NULL; 10251da177e4SLinus Torvalds 10261da177e4SLinus Torvalds if (prev) 10271da177e4SLinus Torvalds next = prev->vm_next; 10281da177e4SLinus Torvalds else 10291da177e4SLinus Torvalds next = mm->mmap; 10301da177e4SLinus Torvalds area = next; 10311da177e4SLinus Torvalds if (next && next->vm_end == end) /* cases 6, 7, 8 */ 10321da177e4SLinus Torvalds next = next->vm_next; 10331da177e4SLinus Torvalds 10341da177e4SLinus Torvalds /* 10351da177e4SLinus Torvalds * Can it merge with the predecessor? 10361da177e4SLinus Torvalds */ 10371da177e4SLinus Torvalds if (prev && prev->vm_end == addr && 10381da177e4SLinus Torvalds mpol_equal(vma_policy(prev), policy) && 10391da177e4SLinus Torvalds can_vma_merge_after(prev, vm_flags, 10401da177e4SLinus Torvalds anon_vma, file, pgoff)) { 10411da177e4SLinus Torvalds /* 10421da177e4SLinus Torvalds * OK, it can. Can we now merge in the successor as well? 10431da177e4SLinus Torvalds */ 10441da177e4SLinus Torvalds if (next && end == next->vm_start && 10451da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 10461da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 10471da177e4SLinus Torvalds anon_vma, file, pgoff+pglen) && 10481da177e4SLinus Torvalds is_mergeable_anon_vma(prev->anon_vma, 1049965f55deSShaohua Li next->anon_vma, NULL)) { 10501da177e4SLinus Torvalds /* cases 1, 6 */ 10515beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 10521da177e4SLinus Torvalds next->vm_end, prev->vm_pgoff, NULL); 10531da177e4SLinus Torvalds } else /* cases 2, 5, 7 */ 10545beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 10551da177e4SLinus Torvalds end, prev->vm_pgoff, NULL); 10565beb4930SRik van Riel if (err) 10575beb4930SRik van Riel return NULL; 1058b15d00b6SAndrea Arcangeli khugepaged_enter_vma_merge(prev); 10591da177e4SLinus Torvalds return prev; 10601da177e4SLinus Torvalds } 10611da177e4SLinus Torvalds 10621da177e4SLinus Torvalds /* 10631da177e4SLinus Torvalds * Can this new request be merged in front of next? 10641da177e4SLinus Torvalds */ 10651da177e4SLinus Torvalds if (next && end == next->vm_start && 10661da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 10671da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 10681da177e4SLinus Torvalds anon_vma, file, pgoff+pglen)) { 10691da177e4SLinus Torvalds if (prev && addr < prev->vm_end) /* case 4 */ 10705beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 10711da177e4SLinus Torvalds addr, prev->vm_pgoff, NULL); 10721da177e4SLinus Torvalds else /* cases 3, 8 */ 10735beb4930SRik van Riel err = vma_adjust(area, addr, next->vm_end, 10741da177e4SLinus Torvalds next->vm_pgoff - pglen, NULL); 10755beb4930SRik van Riel if (err) 10765beb4930SRik van Riel return NULL; 1077b15d00b6SAndrea Arcangeli khugepaged_enter_vma_merge(area); 10781da177e4SLinus Torvalds return area; 10791da177e4SLinus Torvalds } 10801da177e4SLinus Torvalds 10811da177e4SLinus Torvalds return NULL; 10821da177e4SLinus Torvalds } 10831da177e4SLinus Torvalds 10841da177e4SLinus Torvalds /* 1085d0e9fe17SLinus Torvalds * Rough compatbility check to quickly see if it's even worth looking 1086d0e9fe17SLinus Torvalds * at sharing an anon_vma. 1087d0e9fe17SLinus Torvalds * 1088d0e9fe17SLinus Torvalds * They need to have the same vm_file, and the flags can only differ 1089d0e9fe17SLinus Torvalds * in things that mprotect may change. 1090d0e9fe17SLinus Torvalds * 1091d0e9fe17SLinus Torvalds * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that 1092d0e9fe17SLinus Torvalds * we can merge the two vma's. For example, we refuse to merge a vma if 1093d0e9fe17SLinus Torvalds * there is a vm_ops->close() function, because that indicates that the 1094d0e9fe17SLinus Torvalds * driver is doing some kind of reference counting. But that doesn't 1095d0e9fe17SLinus Torvalds * really matter for the anon_vma sharing case. 1096d0e9fe17SLinus Torvalds */ 1097d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b) 1098d0e9fe17SLinus Torvalds { 1099d0e9fe17SLinus Torvalds return a->vm_end == b->vm_start && 1100d0e9fe17SLinus Torvalds mpol_equal(vma_policy(a), vma_policy(b)) && 1101d0e9fe17SLinus Torvalds a->vm_file == b->vm_file && 110234228d47SCyrill Gorcunov !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) && 1103d0e9fe17SLinus Torvalds b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT); 1104d0e9fe17SLinus Torvalds } 1105d0e9fe17SLinus Torvalds 1106d0e9fe17SLinus Torvalds /* 1107d0e9fe17SLinus Torvalds * Do some basic sanity checking to see if we can re-use the anon_vma 1108d0e9fe17SLinus Torvalds * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be 1109d0e9fe17SLinus Torvalds * the same as 'old', the other will be the new one that is trying 1110d0e9fe17SLinus Torvalds * to share the anon_vma. 1111d0e9fe17SLinus Torvalds * 1112d0e9fe17SLinus Torvalds * NOTE! This runs with mm_sem held for reading, so it is possible that 1113d0e9fe17SLinus Torvalds * the anon_vma of 'old' is concurrently in the process of being set up 1114d0e9fe17SLinus Torvalds * by another page fault trying to merge _that_. But that's ok: if it 1115d0e9fe17SLinus Torvalds * is being set up, that automatically means that it will be a singleton 1116d0e9fe17SLinus Torvalds * acceptable for merging, so we can do all of this optimistically. But 1117d0e9fe17SLinus Torvalds * we do that ACCESS_ONCE() to make sure that we never re-load the pointer. 1118d0e9fe17SLinus Torvalds * 1119d0e9fe17SLinus Torvalds * IOW: that the "list_is_singular()" test on the anon_vma_chain only 1120d0e9fe17SLinus Torvalds * matters for the 'stable anon_vma' case (ie the thing we want to avoid 1121d0e9fe17SLinus Torvalds * is to return an anon_vma that is "complex" due to having gone through 1122d0e9fe17SLinus Torvalds * a fork). 1123d0e9fe17SLinus Torvalds * 1124d0e9fe17SLinus Torvalds * We also make sure that the two vma's are compatible (adjacent, 1125d0e9fe17SLinus Torvalds * and with the same memory policies). That's all stable, even with just 1126d0e9fe17SLinus Torvalds * a read lock on the mm_sem. 1127d0e9fe17SLinus Torvalds */ 1128d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b) 1129d0e9fe17SLinus Torvalds { 1130d0e9fe17SLinus Torvalds if (anon_vma_compatible(a, b)) { 1131d0e9fe17SLinus Torvalds struct anon_vma *anon_vma = ACCESS_ONCE(old->anon_vma); 1132d0e9fe17SLinus Torvalds 1133d0e9fe17SLinus Torvalds if (anon_vma && list_is_singular(&old->anon_vma_chain)) 1134d0e9fe17SLinus Torvalds return anon_vma; 1135d0e9fe17SLinus Torvalds } 1136d0e9fe17SLinus Torvalds return NULL; 1137d0e9fe17SLinus Torvalds } 1138d0e9fe17SLinus Torvalds 1139d0e9fe17SLinus Torvalds /* 11401da177e4SLinus Torvalds * find_mergeable_anon_vma is used by anon_vma_prepare, to check 11411da177e4SLinus Torvalds * neighbouring vmas for a suitable anon_vma, before it goes off 11421da177e4SLinus Torvalds * to allocate a new anon_vma. It checks because a repetitive 11431da177e4SLinus Torvalds * sequence of mprotects and faults may otherwise lead to distinct 11441da177e4SLinus Torvalds * anon_vmas being allocated, preventing vma merge in subsequent 11451da177e4SLinus Torvalds * mprotect. 11461da177e4SLinus Torvalds */ 11471da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) 11481da177e4SLinus Torvalds { 1149d0e9fe17SLinus Torvalds struct anon_vma *anon_vma; 11501da177e4SLinus Torvalds struct vm_area_struct *near; 11511da177e4SLinus Torvalds 11521da177e4SLinus Torvalds near = vma->vm_next; 11531da177e4SLinus Torvalds if (!near) 11541da177e4SLinus Torvalds goto try_prev; 11551da177e4SLinus Torvalds 1156d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, vma, near); 1157d0e9fe17SLinus Torvalds if (anon_vma) 1158d0e9fe17SLinus Torvalds return anon_vma; 11591da177e4SLinus Torvalds try_prev: 11609be34c9dSLinus Torvalds near = vma->vm_prev; 11611da177e4SLinus Torvalds if (!near) 11621da177e4SLinus Torvalds goto none; 11631da177e4SLinus Torvalds 1164d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, near, vma); 1165d0e9fe17SLinus Torvalds if (anon_vma) 1166d0e9fe17SLinus Torvalds return anon_vma; 11671da177e4SLinus Torvalds none: 11681da177e4SLinus Torvalds /* 11691da177e4SLinus Torvalds * There's no absolute need to look only at touching neighbours: 11701da177e4SLinus Torvalds * we could search further afield for "compatible" anon_vmas. 11711da177e4SLinus Torvalds * But it would probably just be a waste of time searching, 11721da177e4SLinus Torvalds * or lead to too many vmas hanging off the same anon_vma. 11731da177e4SLinus Torvalds * We're trying to allow mprotect remerging later on, 11741da177e4SLinus Torvalds * not trying to minimize memory used for anon_vmas. 11751da177e4SLinus Torvalds */ 11761da177e4SLinus Torvalds return NULL; 11771da177e4SLinus Torvalds } 11781da177e4SLinus Torvalds 11791da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 1180ab50b8edSHugh Dickins void vm_stat_account(struct mm_struct *mm, unsigned long flags, 11811da177e4SLinus Torvalds struct file *file, long pages) 11821da177e4SLinus Torvalds { 11831da177e4SLinus Torvalds const unsigned long stack_flags 11841da177e4SLinus Torvalds = VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN); 11851da177e4SLinus Torvalds 118644de9d0cSHuang Shijie mm->total_vm += pages; 118744de9d0cSHuang Shijie 11881da177e4SLinus Torvalds if (file) { 11891da177e4SLinus Torvalds mm->shared_vm += pages; 11901da177e4SLinus Torvalds if ((flags & (VM_EXEC|VM_WRITE)) == VM_EXEC) 11911da177e4SLinus Torvalds mm->exec_vm += pages; 11921da177e4SLinus Torvalds } else if (flags & stack_flags) 11931da177e4SLinus Torvalds mm->stack_vm += pages; 11941da177e4SLinus Torvalds } 11951da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 11961da177e4SLinus Torvalds 11971da177e4SLinus Torvalds /* 119840401530SAl Viro * If a hint addr is less than mmap_min_addr change hint to be as 119940401530SAl Viro * low as possible but still greater than mmap_min_addr 120040401530SAl Viro */ 120140401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint) 120240401530SAl Viro { 120340401530SAl Viro hint &= PAGE_MASK; 120440401530SAl Viro if (((void *)hint != NULL) && 120540401530SAl Viro (hint < mmap_min_addr)) 120640401530SAl Viro return PAGE_ALIGN(mmap_min_addr); 120740401530SAl Viro return hint; 120840401530SAl Viro } 120940401530SAl Viro 1210363ee17fSDavidlohr Bueso static inline int mlock_future_check(struct mm_struct *mm, 1211363ee17fSDavidlohr Bueso unsigned long flags, 1212363ee17fSDavidlohr Bueso unsigned long len) 1213363ee17fSDavidlohr Bueso { 1214363ee17fSDavidlohr Bueso unsigned long locked, lock_limit; 1215363ee17fSDavidlohr Bueso 1216363ee17fSDavidlohr Bueso /* mlock MCL_FUTURE? */ 1217363ee17fSDavidlohr Bueso if (flags & VM_LOCKED) { 1218363ee17fSDavidlohr Bueso locked = len >> PAGE_SHIFT; 1219363ee17fSDavidlohr Bueso locked += mm->locked_vm; 1220363ee17fSDavidlohr Bueso lock_limit = rlimit(RLIMIT_MEMLOCK); 1221363ee17fSDavidlohr Bueso lock_limit >>= PAGE_SHIFT; 1222363ee17fSDavidlohr Bueso if (locked > lock_limit && !capable(CAP_IPC_LOCK)) 1223363ee17fSDavidlohr Bueso return -EAGAIN; 1224363ee17fSDavidlohr Bueso } 1225363ee17fSDavidlohr Bueso return 0; 1226363ee17fSDavidlohr Bueso } 1227363ee17fSDavidlohr Bueso 122840401530SAl Viro /* 122927f5de79SJianjun Kong * The caller must hold down_write(¤t->mm->mmap_sem). 12301da177e4SLinus Torvalds */ 12311da177e4SLinus Torvalds 1232e3fc629dSAl Viro unsigned long do_mmap_pgoff(struct file *file, unsigned long addr, 12331da177e4SLinus Torvalds unsigned long len, unsigned long prot, 1234bebeb3d6SMichel Lespinasse unsigned long flags, unsigned long pgoff, 123541badc15SMichel Lespinasse unsigned long *populate) 12361da177e4SLinus Torvalds { 12371da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 1238ca16d140SKOSAKI Motohiro vm_flags_t vm_flags; 12391da177e4SLinus Torvalds 124041badc15SMichel Lespinasse *populate = 0; 1241bebeb3d6SMichel Lespinasse 12421da177e4SLinus Torvalds /* 12431da177e4SLinus Torvalds * Does the application expect PROT_READ to imply PROT_EXEC? 12441da177e4SLinus Torvalds * 12451da177e4SLinus Torvalds * (the exception is when the underlying filesystem is noexec 12461da177e4SLinus Torvalds * mounted, in which case we dont add PROT_EXEC.) 12471da177e4SLinus Torvalds */ 12481da177e4SLinus Torvalds if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) 1249d3ac7f89SJosef "Jeff" Sipek if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC))) 12501da177e4SLinus Torvalds prot |= PROT_EXEC; 12511da177e4SLinus Torvalds 12521da177e4SLinus Torvalds if (!len) 12531da177e4SLinus Torvalds return -EINVAL; 12541da177e4SLinus Torvalds 12557cd94146SEric Paris if (!(flags & MAP_FIXED)) 12567cd94146SEric Paris addr = round_hint_to_min(addr); 12577cd94146SEric Paris 12581da177e4SLinus Torvalds /* Careful about overflows.. */ 12591da177e4SLinus Torvalds len = PAGE_ALIGN(len); 12609206de95SAl Viro if (!len) 12611da177e4SLinus Torvalds return -ENOMEM; 12621da177e4SLinus Torvalds 12631da177e4SLinus Torvalds /* offset overflow? */ 12641da177e4SLinus Torvalds if ((pgoff + (len >> PAGE_SHIFT)) < pgoff) 12651da177e4SLinus Torvalds return -EOVERFLOW; 12661da177e4SLinus Torvalds 12671da177e4SLinus Torvalds /* Too many mappings? */ 12681da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 12691da177e4SLinus Torvalds return -ENOMEM; 12701da177e4SLinus Torvalds 12711da177e4SLinus Torvalds /* Obtain the address to map to. we verify (or select) it and ensure 12721da177e4SLinus Torvalds * that it represents a valid section of the address space. 12731da177e4SLinus Torvalds */ 12741da177e4SLinus Torvalds addr = get_unmapped_area(file, addr, len, pgoff, flags); 12751da177e4SLinus Torvalds if (addr & ~PAGE_MASK) 12761da177e4SLinus Torvalds return addr; 12771da177e4SLinus Torvalds 12781da177e4SLinus Torvalds /* Do simple checking here so the lower-level routines won't have 12791da177e4SLinus Torvalds * to. we assume access permissions have been handled by the open 12801da177e4SLinus Torvalds * of the memory object, so we don't do any here. 12811da177e4SLinus Torvalds */ 12821da177e4SLinus Torvalds vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) | 12831da177e4SLinus Torvalds mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC; 12841da177e4SLinus Torvalds 1285cdf7b341SHuang Shijie if (flags & MAP_LOCKED) 12861da177e4SLinus Torvalds if (!can_do_mlock()) 12871da177e4SLinus Torvalds return -EPERM; 1288ba470de4SRik van Riel 1289363ee17fSDavidlohr Bueso if (mlock_future_check(mm, vm_flags, len)) 12901da177e4SLinus Torvalds return -EAGAIN; 12911da177e4SLinus Torvalds 12921da177e4SLinus Torvalds if (file) { 1293077bf22bSOleg Nesterov struct inode *inode = file_inode(file); 1294077bf22bSOleg Nesterov 12951da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 12961da177e4SLinus Torvalds case MAP_SHARED: 12971da177e4SLinus Torvalds if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE)) 12981da177e4SLinus Torvalds return -EACCES; 12991da177e4SLinus Torvalds 13001da177e4SLinus Torvalds /* 13011da177e4SLinus Torvalds * Make sure we don't allow writing to an append-only 13021da177e4SLinus Torvalds * file.. 13031da177e4SLinus Torvalds */ 13041da177e4SLinus Torvalds if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE)) 13051da177e4SLinus Torvalds return -EACCES; 13061da177e4SLinus Torvalds 13071da177e4SLinus Torvalds /* 13081da177e4SLinus Torvalds * Make sure there are no mandatory locks on the file. 13091da177e4SLinus Torvalds */ 1310d7a06983SJeff Layton if (locks_verify_locked(file)) 13111da177e4SLinus Torvalds return -EAGAIN; 13121da177e4SLinus Torvalds 13131da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 13141da177e4SLinus Torvalds if (!(file->f_mode & FMODE_WRITE)) 13151da177e4SLinus Torvalds vm_flags &= ~(VM_MAYWRITE | VM_SHARED); 13161da177e4SLinus Torvalds 13171da177e4SLinus Torvalds /* fall through */ 13181da177e4SLinus Torvalds case MAP_PRIVATE: 13191da177e4SLinus Torvalds if (!(file->f_mode & FMODE_READ)) 13201da177e4SLinus Torvalds return -EACCES; 1321d3ac7f89SJosef "Jeff" Sipek if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) { 132280c5606cSLinus Torvalds if (vm_flags & VM_EXEC) 132380c5606cSLinus Torvalds return -EPERM; 132480c5606cSLinus Torvalds vm_flags &= ~VM_MAYEXEC; 132580c5606cSLinus Torvalds } 132680c5606cSLinus Torvalds 132772c2d531SAl Viro if (!file->f_op->mmap) 132880c5606cSLinus Torvalds return -ENODEV; 1329b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1330b2c56e4fSOleg Nesterov return -EINVAL; 13311da177e4SLinus Torvalds break; 13321da177e4SLinus Torvalds 13331da177e4SLinus Torvalds default: 13341da177e4SLinus Torvalds return -EINVAL; 13351da177e4SLinus Torvalds } 13361da177e4SLinus Torvalds } else { 13371da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 13381da177e4SLinus Torvalds case MAP_SHARED: 1339b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1340b2c56e4fSOleg Nesterov return -EINVAL; 1341ce363942STejun Heo /* 1342ce363942STejun Heo * Ignore pgoff. 1343ce363942STejun Heo */ 1344ce363942STejun Heo pgoff = 0; 13451da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 13461da177e4SLinus Torvalds break; 13471da177e4SLinus Torvalds case MAP_PRIVATE: 13481da177e4SLinus Torvalds /* 13491da177e4SLinus Torvalds * Set pgoff according to addr for anon_vma. 13501da177e4SLinus Torvalds */ 13511da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 13521da177e4SLinus Torvalds break; 13531da177e4SLinus Torvalds default: 13541da177e4SLinus Torvalds return -EINVAL; 13551da177e4SLinus Torvalds } 13561da177e4SLinus Torvalds } 13571da177e4SLinus Torvalds 1358c22c0d63SMichel Lespinasse /* 1359c22c0d63SMichel Lespinasse * Set 'VM_NORESERVE' if we should not account for the 1360c22c0d63SMichel Lespinasse * memory use of this mapping. 1361c22c0d63SMichel Lespinasse */ 1362c22c0d63SMichel Lespinasse if (flags & MAP_NORESERVE) { 1363c22c0d63SMichel Lespinasse /* We honor MAP_NORESERVE if allowed to overcommit */ 1364c22c0d63SMichel Lespinasse if (sysctl_overcommit_memory != OVERCOMMIT_NEVER) 1365c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1366c22c0d63SMichel Lespinasse 1367c22c0d63SMichel Lespinasse /* hugetlb applies strict overcommit unless MAP_NORESERVE */ 1368c22c0d63SMichel Lespinasse if (file && is_file_hugepages(file)) 1369c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1370c22c0d63SMichel Lespinasse } 1371c22c0d63SMichel Lespinasse 1372c22c0d63SMichel Lespinasse addr = mmap_region(file, addr, len, vm_flags, pgoff); 137309a9f1d2SMichel Lespinasse if (!IS_ERR_VALUE(addr) && 137409a9f1d2SMichel Lespinasse ((vm_flags & VM_LOCKED) || 137509a9f1d2SMichel Lespinasse (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE)) 137641badc15SMichel Lespinasse *populate = len; 1377bebeb3d6SMichel Lespinasse return addr; 13780165ab44SMiklos Szeredi } 13796be5ceb0SLinus Torvalds 138066f0dc48SHugh Dickins SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len, 138166f0dc48SHugh Dickins unsigned long, prot, unsigned long, flags, 138266f0dc48SHugh Dickins unsigned long, fd, unsigned long, pgoff) 138366f0dc48SHugh Dickins { 138466f0dc48SHugh Dickins struct file *file = NULL; 138566f0dc48SHugh Dickins unsigned long retval = -EBADF; 138666f0dc48SHugh Dickins 138766f0dc48SHugh Dickins if (!(flags & MAP_ANONYMOUS)) { 1388120a795dSAl Viro audit_mmap_fd(fd, flags); 138966f0dc48SHugh Dickins file = fget(fd); 139066f0dc48SHugh Dickins if (!file) 139166f0dc48SHugh Dickins goto out; 1392af73e4d9SNaoya Horiguchi if (is_file_hugepages(file)) 1393af73e4d9SNaoya Horiguchi len = ALIGN(len, huge_page_size(hstate_file(file))); 1394493af578SJörn Engel retval = -EINVAL; 1395493af578SJörn Engel if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file))) 1396493af578SJörn Engel goto out_fput; 139766f0dc48SHugh Dickins } else if (flags & MAP_HUGETLB) { 139866f0dc48SHugh Dickins struct user_struct *user = NULL; 1399c103a4dcSAndrew Morton struct hstate *hs; 1400af73e4d9SNaoya Horiguchi 1401c103a4dcSAndrew Morton hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK); 1402091d0d55SLi Zefan if (!hs) 1403091d0d55SLi Zefan return -EINVAL; 1404091d0d55SLi Zefan 1405091d0d55SLi Zefan len = ALIGN(len, huge_page_size(hs)); 140666f0dc48SHugh Dickins /* 140766f0dc48SHugh Dickins * VM_NORESERVE is used because the reservations will be 140866f0dc48SHugh Dickins * taken when vm_ops->mmap() is called 140966f0dc48SHugh Dickins * A dummy user value is used because we are not locking 141066f0dc48SHugh Dickins * memory so no accounting is necessary 141166f0dc48SHugh Dickins */ 1412af73e4d9SNaoya Horiguchi file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, 141342d7395fSAndi Kleen VM_NORESERVE, 141442d7395fSAndi Kleen &user, HUGETLB_ANONHUGE_INODE, 141542d7395fSAndi Kleen (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 141666f0dc48SHugh Dickins if (IS_ERR(file)) 141766f0dc48SHugh Dickins return PTR_ERR(file); 141866f0dc48SHugh Dickins } 141966f0dc48SHugh Dickins 142066f0dc48SHugh Dickins flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE); 142166f0dc48SHugh Dickins 1422eb36c587SAl Viro retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff); 1423493af578SJörn Engel out_fput: 142466f0dc48SHugh Dickins if (file) 142566f0dc48SHugh Dickins fput(file); 142666f0dc48SHugh Dickins out: 142766f0dc48SHugh Dickins return retval; 142866f0dc48SHugh Dickins } 142966f0dc48SHugh Dickins 1430a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP 1431a4679373SChristoph Hellwig struct mmap_arg_struct { 1432a4679373SChristoph Hellwig unsigned long addr; 1433a4679373SChristoph Hellwig unsigned long len; 1434a4679373SChristoph Hellwig unsigned long prot; 1435a4679373SChristoph Hellwig unsigned long flags; 1436a4679373SChristoph Hellwig unsigned long fd; 1437a4679373SChristoph Hellwig unsigned long offset; 1438a4679373SChristoph Hellwig }; 1439a4679373SChristoph Hellwig 1440a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg) 1441a4679373SChristoph Hellwig { 1442a4679373SChristoph Hellwig struct mmap_arg_struct a; 1443a4679373SChristoph Hellwig 1444a4679373SChristoph Hellwig if (copy_from_user(&a, arg, sizeof(a))) 1445a4679373SChristoph Hellwig return -EFAULT; 1446a4679373SChristoph Hellwig if (a.offset & ~PAGE_MASK) 1447a4679373SChristoph Hellwig return -EINVAL; 1448a4679373SChristoph Hellwig 1449a4679373SChristoph Hellwig return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, 1450a4679373SChristoph Hellwig a.offset >> PAGE_SHIFT); 1451a4679373SChristoph Hellwig } 1452a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */ 1453a4679373SChristoph Hellwig 14544e950f6fSAlexey Dobriyan /* 14554e950f6fSAlexey Dobriyan * Some shared mappigns will want the pages marked read-only 14564e950f6fSAlexey Dobriyan * to track write events. If so, we'll downgrade vm_page_prot 14574e950f6fSAlexey Dobriyan * to the private version (using protection_map[] without the 14584e950f6fSAlexey Dobriyan * VM_SHARED bit). 14594e950f6fSAlexey Dobriyan */ 14604e950f6fSAlexey Dobriyan int vma_wants_writenotify(struct vm_area_struct *vma) 14614e950f6fSAlexey Dobriyan { 1462ca16d140SKOSAKI Motohiro vm_flags_t vm_flags = vma->vm_flags; 14634e950f6fSAlexey Dobriyan 14644e950f6fSAlexey Dobriyan /* If it was private or non-writable, the write bit is already clear */ 14654e950f6fSAlexey Dobriyan if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED))) 14664e950f6fSAlexey Dobriyan return 0; 14674e950f6fSAlexey Dobriyan 14684e950f6fSAlexey Dobriyan /* The backer wishes to know when pages are first written to? */ 14694e950f6fSAlexey Dobriyan if (vma->vm_ops && vma->vm_ops->page_mkwrite) 14704e950f6fSAlexey Dobriyan return 1; 14714e950f6fSAlexey Dobriyan 14724e950f6fSAlexey Dobriyan /* The open routine did something to the protections already? */ 14734e950f6fSAlexey Dobriyan if (pgprot_val(vma->vm_page_prot) != 14743ed75eb8SColy Li pgprot_val(vm_get_page_prot(vm_flags))) 14754e950f6fSAlexey Dobriyan return 0; 14764e950f6fSAlexey Dobriyan 14774e950f6fSAlexey Dobriyan /* Specialty mapping? */ 14784b6e1e37SKonstantin Khlebnikov if (vm_flags & VM_PFNMAP) 14794e950f6fSAlexey Dobriyan return 0; 14804e950f6fSAlexey Dobriyan 14814e950f6fSAlexey Dobriyan /* Can the mapping track the dirty pages? */ 14824e950f6fSAlexey Dobriyan return vma->vm_file && vma->vm_file->f_mapping && 14834e950f6fSAlexey Dobriyan mapping_cap_account_dirty(vma->vm_file->f_mapping); 14844e950f6fSAlexey Dobriyan } 14854e950f6fSAlexey Dobriyan 1486fc8744adSLinus Torvalds /* 1487fc8744adSLinus Torvalds * We account for memory if it's a private writeable mapping, 14885a6fe125SMel Gorman * not hugepages and VM_NORESERVE wasn't set. 1489fc8744adSLinus Torvalds */ 1490ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags) 1491fc8744adSLinus Torvalds { 14925a6fe125SMel Gorman /* 14935a6fe125SMel Gorman * hugetlb has its own accounting separate from the core VM 14945a6fe125SMel Gorman * VM_HUGETLB may not be set yet so we cannot check for that flag. 14955a6fe125SMel Gorman */ 14965a6fe125SMel Gorman if (file && is_file_hugepages(file)) 14975a6fe125SMel Gorman return 0; 14985a6fe125SMel Gorman 1499fc8744adSLinus Torvalds return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE; 1500fc8744adSLinus Torvalds } 1501fc8744adSLinus Torvalds 15020165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr, 1503c22c0d63SMichel Lespinasse unsigned long len, vm_flags_t vm_flags, unsigned long pgoff) 15040165ab44SMiklos Szeredi { 15050165ab44SMiklos Szeredi struct mm_struct *mm = current->mm; 15060165ab44SMiklos Szeredi struct vm_area_struct *vma, *prev; 15070165ab44SMiklos Szeredi int error; 15080165ab44SMiklos Szeredi struct rb_node **rb_link, *rb_parent; 15090165ab44SMiklos Szeredi unsigned long charged = 0; 15100165ab44SMiklos Szeredi 1511e8420a8eSCyril Hrubis /* Check against address space limit. */ 1512e8420a8eSCyril Hrubis if (!may_expand_vm(mm, len >> PAGE_SHIFT)) { 1513e8420a8eSCyril Hrubis unsigned long nr_pages; 1514e8420a8eSCyril Hrubis 1515e8420a8eSCyril Hrubis /* 1516e8420a8eSCyril Hrubis * MAP_FIXED may remove pages of mappings that intersects with 1517e8420a8eSCyril Hrubis * requested mapping. Account for the pages it would unmap. 1518e8420a8eSCyril Hrubis */ 1519e8420a8eSCyril Hrubis if (!(vm_flags & MAP_FIXED)) 1520e8420a8eSCyril Hrubis return -ENOMEM; 1521e8420a8eSCyril Hrubis 1522e8420a8eSCyril Hrubis nr_pages = count_vma_pages_range(mm, addr, addr + len); 1523e8420a8eSCyril Hrubis 1524e8420a8eSCyril Hrubis if (!may_expand_vm(mm, (len >> PAGE_SHIFT) - nr_pages)) 1525e8420a8eSCyril Hrubis return -ENOMEM; 1526e8420a8eSCyril Hrubis } 1527e8420a8eSCyril Hrubis 15281da177e4SLinus Torvalds /* Clear old maps */ 15291da177e4SLinus Torvalds error = -ENOMEM; 15301da177e4SLinus Torvalds munmap_back: 15316597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) { 15321da177e4SLinus Torvalds if (do_munmap(mm, addr, len)) 15331da177e4SLinus Torvalds return -ENOMEM; 15341da177e4SLinus Torvalds goto munmap_back; 15351da177e4SLinus Torvalds } 15361da177e4SLinus Torvalds 1537fc8744adSLinus Torvalds /* 15381da177e4SLinus Torvalds * Private writable mapping: check memory availability 15391da177e4SLinus Torvalds */ 15405a6fe125SMel Gorman if (accountable_mapping(file, vm_flags)) { 15411da177e4SLinus Torvalds charged = len >> PAGE_SHIFT; 1542191c5424SAl Viro if (security_vm_enough_memory_mm(mm, charged)) 15431da177e4SLinus Torvalds return -ENOMEM; 15441da177e4SLinus Torvalds vm_flags |= VM_ACCOUNT; 15451da177e4SLinus Torvalds } 15461da177e4SLinus Torvalds 15471da177e4SLinus Torvalds /* 1548de33c8dbSLinus Torvalds * Can we just expand an old mapping? 15491da177e4SLinus Torvalds */ 1550de33c8dbSLinus Torvalds vma = vma_merge(mm, prev, addr, addr + len, vm_flags, NULL, file, pgoff, NULL); 1551ba470de4SRik van Riel if (vma) 15521da177e4SLinus Torvalds goto out; 15531da177e4SLinus Torvalds 15541da177e4SLinus Torvalds /* 15551da177e4SLinus Torvalds * Determine the object being mapped and call the appropriate 15561da177e4SLinus Torvalds * specific mapper. the address has already been validated, but 15571da177e4SLinus Torvalds * not unmapped, but the maps are removed from the list. 15581da177e4SLinus Torvalds */ 1559c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 15601da177e4SLinus Torvalds if (!vma) { 15611da177e4SLinus Torvalds error = -ENOMEM; 15621da177e4SLinus Torvalds goto unacct_error; 15631da177e4SLinus Torvalds } 15641da177e4SLinus Torvalds 15651da177e4SLinus Torvalds vma->vm_mm = mm; 15661da177e4SLinus Torvalds vma->vm_start = addr; 15671da177e4SLinus Torvalds vma->vm_end = addr + len; 15681da177e4SLinus Torvalds vma->vm_flags = vm_flags; 15693ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vm_flags); 15701da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 15715beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 15721da177e4SLinus Torvalds 15731da177e4SLinus Torvalds if (file) { 15741da177e4SLinus Torvalds if (vm_flags & VM_DENYWRITE) { 15751da177e4SLinus Torvalds error = deny_write_access(file); 15761da177e4SLinus Torvalds if (error) 15771da177e4SLinus Torvalds goto free_vma; 15781da177e4SLinus Torvalds } 15794bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) { 15804bb5f5d9SDavid Herrmann error = mapping_map_writable(file->f_mapping); 15814bb5f5d9SDavid Herrmann if (error) 15824bb5f5d9SDavid Herrmann goto allow_write_and_free_vma; 15834bb5f5d9SDavid Herrmann } 15844bb5f5d9SDavid Herrmann 15854bb5f5d9SDavid Herrmann /* ->mmap() can change vma->vm_file, but must guarantee that 15864bb5f5d9SDavid Herrmann * vma_link() below can deny write-access if VM_DENYWRITE is set 15874bb5f5d9SDavid Herrmann * and map writably if VM_SHARED is set. This usually means the 15884bb5f5d9SDavid Herrmann * new file must not have been exposed to user-space, yet. 15894bb5f5d9SDavid Herrmann */ 1590cb0942b8SAl Viro vma->vm_file = get_file(file); 15911da177e4SLinus Torvalds error = file->f_op->mmap(file, vma); 15921da177e4SLinus Torvalds if (error) 15931da177e4SLinus Torvalds goto unmap_and_free_vma; 15941da177e4SLinus Torvalds 15951da177e4SLinus Torvalds /* Can addr have changed?? 15961da177e4SLinus Torvalds * 15971da177e4SLinus Torvalds * Answer: Yes, several device drivers can do it in their 15981da177e4SLinus Torvalds * f_op->mmap method. -DaveM 15992897b4d2SJoonsoo Kim * Bug: If addr is changed, prev, rb_link, rb_parent should 16002897b4d2SJoonsoo Kim * be updated for vma_link() 16011da177e4SLinus Torvalds */ 16022897b4d2SJoonsoo Kim WARN_ON_ONCE(addr != vma->vm_start); 16032897b4d2SJoonsoo Kim 16041da177e4SLinus Torvalds addr = vma->vm_start; 16051da177e4SLinus Torvalds vm_flags = vma->vm_flags; 1606f8dbf0a7SHuang Shijie } else if (vm_flags & VM_SHARED) { 1607f8dbf0a7SHuang Shijie error = shmem_zero_setup(vma); 1608f8dbf0a7SHuang Shijie if (error) 1609f8dbf0a7SHuang Shijie goto free_vma; 1610f8dbf0a7SHuang Shijie } 16111da177e4SLinus Torvalds 1612c9d0bf24SMagnus Damm if (vma_wants_writenotify(vma)) { 1613c9d0bf24SMagnus Damm pgprot_t pprot = vma->vm_page_prot; 1614c9d0bf24SMagnus Damm 1615c9d0bf24SMagnus Damm /* Can vma->vm_page_prot have changed?? 1616c9d0bf24SMagnus Damm * 1617c9d0bf24SMagnus Damm * Answer: Yes, drivers may have changed it in their 1618c9d0bf24SMagnus Damm * f_op->mmap method. 1619c9d0bf24SMagnus Damm * 1620c9d0bf24SMagnus Damm * Ensures that vmas marked as uncached stay that way. 1621c9d0bf24SMagnus Damm */ 16221ddd439eSHugh Dickins vma->vm_page_prot = vm_get_page_prot(vm_flags & ~VM_SHARED); 1623c9d0bf24SMagnus Damm if (pgprot_val(pprot) == pgprot_val(pgprot_noncached(pprot))) 1624c9d0bf24SMagnus Damm vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); 1625c9d0bf24SMagnus Damm } 1626d08b3851SPeter Zijlstra 16274d3d5b41SOleg Nesterov vma_link(mm, vma, prev, rb_link, rb_parent); 16284d3d5b41SOleg Nesterov /* Once vma denies write, undo our temporary denial count */ 16294bb5f5d9SDavid Herrmann if (file) { 16304bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 16314bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 1632e8686772SOleg Nesterov if (vm_flags & VM_DENYWRITE) 1633e8686772SOleg Nesterov allow_write_access(file); 16344bb5f5d9SDavid Herrmann } 1635e8686772SOleg Nesterov file = vma->vm_file; 16361da177e4SLinus Torvalds out: 1637cdd6c482SIngo Molnar perf_event_mmap(vma); 16380a4a9391SPeter Zijlstra 1639ab50b8edSHugh Dickins vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT); 16401da177e4SLinus Torvalds if (vm_flags & VM_LOCKED) { 1641bebeb3d6SMichel Lespinasse if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) || 1642bebeb3d6SMichel Lespinasse vma == get_gate_vma(current->mm))) 164306f9d8c2SKOSAKI Motohiro mm->locked_vm += (len >> PAGE_SHIFT); 1644bebeb3d6SMichel Lespinasse else 1645bebeb3d6SMichel Lespinasse vma->vm_flags &= ~VM_LOCKED; 1646bebeb3d6SMichel Lespinasse } 16472b144498SSrikar Dronamraju 1648c7a3a88cSOleg Nesterov if (file) 1649c7a3a88cSOleg Nesterov uprobe_mmap(vma); 16502b144498SSrikar Dronamraju 1651d9104d1cSCyrill Gorcunov /* 1652d9104d1cSCyrill Gorcunov * New (or expanded) vma always get soft dirty status. 1653d9104d1cSCyrill Gorcunov * Otherwise user-space soft-dirty page tracker won't 1654d9104d1cSCyrill Gorcunov * be able to distinguish situation when vma area unmapped, 1655d9104d1cSCyrill Gorcunov * then new mapped in-place (which must be aimed as 1656d9104d1cSCyrill Gorcunov * a completely new data area). 1657d9104d1cSCyrill Gorcunov */ 1658d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 1659d9104d1cSCyrill Gorcunov 16601da177e4SLinus Torvalds return addr; 16611da177e4SLinus Torvalds 16621da177e4SLinus Torvalds unmap_and_free_vma: 16631da177e4SLinus Torvalds vma->vm_file = NULL; 16641da177e4SLinus Torvalds fput(file); 16651da177e4SLinus Torvalds 16661da177e4SLinus Torvalds /* Undo any partial mapping done by a device driver. */ 1667e0da382cSHugh Dickins unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); 1668e0da382cSHugh Dickins charged = 0; 16694bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 16704bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 16714bb5f5d9SDavid Herrmann allow_write_and_free_vma: 16724bb5f5d9SDavid Herrmann if (vm_flags & VM_DENYWRITE) 16734bb5f5d9SDavid Herrmann allow_write_access(file); 16741da177e4SLinus Torvalds free_vma: 16751da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 16761da177e4SLinus Torvalds unacct_error: 16771da177e4SLinus Torvalds if (charged) 16781da177e4SLinus Torvalds vm_unacct_memory(charged); 16791da177e4SLinus Torvalds return error; 16801da177e4SLinus Torvalds } 16811da177e4SLinus Torvalds 1682db4fbfb9SMichel Lespinasse unsigned long unmapped_area(struct vm_unmapped_area_info *info) 1683db4fbfb9SMichel Lespinasse { 1684db4fbfb9SMichel Lespinasse /* 1685db4fbfb9SMichel Lespinasse * We implement the search by looking for an rbtree node that 1686db4fbfb9SMichel Lespinasse * immediately follows a suitable gap. That is, 1687db4fbfb9SMichel Lespinasse * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length; 1688db4fbfb9SMichel Lespinasse * - gap_end = vma->vm_start >= info->low_limit + length; 1689db4fbfb9SMichel Lespinasse * - gap_end - gap_start >= length 1690db4fbfb9SMichel Lespinasse */ 1691db4fbfb9SMichel Lespinasse 1692db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1693db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1694db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1695db4fbfb9SMichel Lespinasse 1696db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1697db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1698db4fbfb9SMichel Lespinasse if (length < info->length) 1699db4fbfb9SMichel Lespinasse return -ENOMEM; 1700db4fbfb9SMichel Lespinasse 1701db4fbfb9SMichel Lespinasse /* Adjust search limits by the desired length */ 1702db4fbfb9SMichel Lespinasse if (info->high_limit < length) 1703db4fbfb9SMichel Lespinasse return -ENOMEM; 1704db4fbfb9SMichel Lespinasse high_limit = info->high_limit - length; 1705db4fbfb9SMichel Lespinasse 1706db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1707db4fbfb9SMichel Lespinasse return -ENOMEM; 1708db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1709db4fbfb9SMichel Lespinasse 1710db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1711db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1712db4fbfb9SMichel Lespinasse goto check_highest; 1713db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1714db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1715db4fbfb9SMichel Lespinasse goto check_highest; 1716db4fbfb9SMichel Lespinasse 1717db4fbfb9SMichel Lespinasse while (true) { 1718db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1719db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1720db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && vma->vm_rb.rb_left) { 1721db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1722db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1723db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1724db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1725db4fbfb9SMichel Lespinasse vma = left; 1726db4fbfb9SMichel Lespinasse continue; 1727db4fbfb9SMichel Lespinasse } 1728db4fbfb9SMichel Lespinasse } 1729db4fbfb9SMichel Lespinasse 1730db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; 1731db4fbfb9SMichel Lespinasse check_current: 1732db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1733db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1734db4fbfb9SMichel Lespinasse return -ENOMEM; 1735db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && gap_end - gap_start >= length) 1736db4fbfb9SMichel Lespinasse goto found; 1737db4fbfb9SMichel Lespinasse 1738db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1739db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_right) { 1740db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1741db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1742db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1743db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1744db4fbfb9SMichel Lespinasse vma = right; 1745db4fbfb9SMichel Lespinasse continue; 1746db4fbfb9SMichel Lespinasse } 1747db4fbfb9SMichel Lespinasse } 1748db4fbfb9SMichel Lespinasse 1749db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1750db4fbfb9SMichel Lespinasse while (true) { 1751db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1752db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1753db4fbfb9SMichel Lespinasse goto check_highest; 1754db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1755db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1756db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_left) { 1757db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev->vm_end; 1758db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1759db4fbfb9SMichel Lespinasse goto check_current; 1760db4fbfb9SMichel Lespinasse } 1761db4fbfb9SMichel Lespinasse } 1762db4fbfb9SMichel Lespinasse } 1763db4fbfb9SMichel Lespinasse 1764db4fbfb9SMichel Lespinasse check_highest: 1765db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1766db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1767db4fbfb9SMichel Lespinasse gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */ 1768db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1769db4fbfb9SMichel Lespinasse return -ENOMEM; 1770db4fbfb9SMichel Lespinasse 1771db4fbfb9SMichel Lespinasse found: 1772db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original low_limit. */ 1773db4fbfb9SMichel Lespinasse if (gap_start < info->low_limit) 1774db4fbfb9SMichel Lespinasse gap_start = info->low_limit; 1775db4fbfb9SMichel Lespinasse 1776db4fbfb9SMichel Lespinasse /* Adjust gap address to the desired alignment */ 1777db4fbfb9SMichel Lespinasse gap_start += (info->align_offset - gap_start) & info->align_mask; 1778db4fbfb9SMichel Lespinasse 1779db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > info->high_limit); 1780db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > gap_end); 1781db4fbfb9SMichel Lespinasse return gap_start; 1782db4fbfb9SMichel Lespinasse } 1783db4fbfb9SMichel Lespinasse 1784db4fbfb9SMichel Lespinasse unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info) 1785db4fbfb9SMichel Lespinasse { 1786db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1787db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1788db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1789db4fbfb9SMichel Lespinasse 1790db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1791db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1792db4fbfb9SMichel Lespinasse if (length < info->length) 1793db4fbfb9SMichel Lespinasse return -ENOMEM; 1794db4fbfb9SMichel Lespinasse 1795db4fbfb9SMichel Lespinasse /* 1796db4fbfb9SMichel Lespinasse * Adjust search limits by the desired length. 1797db4fbfb9SMichel Lespinasse * See implementation comment at top of unmapped_area(). 1798db4fbfb9SMichel Lespinasse */ 1799db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1800db4fbfb9SMichel Lespinasse if (gap_end < length) 1801db4fbfb9SMichel Lespinasse return -ENOMEM; 1802db4fbfb9SMichel Lespinasse high_limit = gap_end - length; 1803db4fbfb9SMichel Lespinasse 1804db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1805db4fbfb9SMichel Lespinasse return -ENOMEM; 1806db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1807db4fbfb9SMichel Lespinasse 1808db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1809db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1810db4fbfb9SMichel Lespinasse if (gap_start <= high_limit) 1811db4fbfb9SMichel Lespinasse goto found_highest; 1812db4fbfb9SMichel Lespinasse 1813db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1814db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1815db4fbfb9SMichel Lespinasse return -ENOMEM; 1816db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1817db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1818db4fbfb9SMichel Lespinasse return -ENOMEM; 1819db4fbfb9SMichel Lespinasse 1820db4fbfb9SMichel Lespinasse while (true) { 1821db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1822db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; 1823db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && vma->vm_rb.rb_right) { 1824db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1825db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1826db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1827db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1828db4fbfb9SMichel Lespinasse vma = right; 1829db4fbfb9SMichel Lespinasse continue; 1830db4fbfb9SMichel Lespinasse } 1831db4fbfb9SMichel Lespinasse } 1832db4fbfb9SMichel Lespinasse 1833db4fbfb9SMichel Lespinasse check_current: 1834db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1835db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1836db4fbfb9SMichel Lespinasse if (gap_end < low_limit) 1837db4fbfb9SMichel Lespinasse return -ENOMEM; 1838db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && gap_end - gap_start >= length) 1839db4fbfb9SMichel Lespinasse goto found; 1840db4fbfb9SMichel Lespinasse 1841db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1842db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_left) { 1843db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1844db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1845db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1846db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1847db4fbfb9SMichel Lespinasse vma = left; 1848db4fbfb9SMichel Lespinasse continue; 1849db4fbfb9SMichel Lespinasse } 1850db4fbfb9SMichel Lespinasse } 1851db4fbfb9SMichel Lespinasse 1852db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1853db4fbfb9SMichel Lespinasse while (true) { 1854db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1855db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1856db4fbfb9SMichel Lespinasse return -ENOMEM; 1857db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1858db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1859db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_right) { 1860db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? 1861db4fbfb9SMichel Lespinasse vma->vm_prev->vm_end : 0; 1862db4fbfb9SMichel Lespinasse goto check_current; 1863db4fbfb9SMichel Lespinasse } 1864db4fbfb9SMichel Lespinasse } 1865db4fbfb9SMichel Lespinasse } 1866db4fbfb9SMichel Lespinasse 1867db4fbfb9SMichel Lespinasse found: 1868db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original high_limit. */ 1869db4fbfb9SMichel Lespinasse if (gap_end > info->high_limit) 1870db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1871db4fbfb9SMichel Lespinasse 1872db4fbfb9SMichel Lespinasse found_highest: 1873db4fbfb9SMichel Lespinasse /* Compute highest gap address at the desired alignment */ 1874db4fbfb9SMichel Lespinasse gap_end -= info->length; 1875db4fbfb9SMichel Lespinasse gap_end -= (gap_end - info->align_offset) & info->align_mask; 1876db4fbfb9SMichel Lespinasse 1877db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < info->low_limit); 1878db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < gap_start); 1879db4fbfb9SMichel Lespinasse return gap_end; 1880db4fbfb9SMichel Lespinasse } 1881db4fbfb9SMichel Lespinasse 18821da177e4SLinus Torvalds /* Get an address range which is currently unmapped. 18831da177e4SLinus Torvalds * For shmat() with addr=0. 18841da177e4SLinus Torvalds * 18851da177e4SLinus Torvalds * Ugly calling convention alert: 18861da177e4SLinus Torvalds * Return value with the low bits set means error value, 18871da177e4SLinus Torvalds * ie 18881da177e4SLinus Torvalds * if (ret & ~PAGE_MASK) 18891da177e4SLinus Torvalds * error = ret; 18901da177e4SLinus Torvalds * 18911da177e4SLinus Torvalds * This function "knows" that -ENOMEM has the bits set. 18921da177e4SLinus Torvalds */ 18931da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA 18941da177e4SLinus Torvalds unsigned long 18951da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr, 18961da177e4SLinus Torvalds unsigned long len, unsigned long pgoff, unsigned long flags) 18971da177e4SLinus Torvalds { 18981da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 18991da177e4SLinus Torvalds struct vm_area_struct *vma; 1900db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 19011da177e4SLinus Torvalds 19022afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 19031da177e4SLinus Torvalds return -ENOMEM; 19041da177e4SLinus Torvalds 190506abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 190606abdfb4SBenjamin Herrenschmidt return addr; 190706abdfb4SBenjamin Herrenschmidt 19081da177e4SLinus Torvalds if (addr) { 19091da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 19101da177e4SLinus Torvalds vma = find_vma(mm, addr); 19112afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 19121da177e4SLinus Torvalds (!vma || addr + len <= vma->vm_start)) 19131da177e4SLinus Torvalds return addr; 19141da177e4SLinus Torvalds } 19151da177e4SLinus Torvalds 1916db4fbfb9SMichel Lespinasse info.flags = 0; 1917db4fbfb9SMichel Lespinasse info.length = len; 19184e99b021SHeiko Carstens info.low_limit = mm->mmap_base; 1919db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 1920db4fbfb9SMichel Lespinasse info.align_mask = 0; 1921db4fbfb9SMichel Lespinasse return vm_unmapped_area(&info); 19221da177e4SLinus Torvalds } 19231da177e4SLinus Torvalds #endif 19241da177e4SLinus Torvalds 19251da177e4SLinus Torvalds /* 19261da177e4SLinus Torvalds * This mmap-allocator allocates new areas top-down from below the 19271da177e4SLinus Torvalds * stack's low limit (the base): 19281da177e4SLinus Torvalds */ 19291da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN 19301da177e4SLinus Torvalds unsigned long 19311da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, 19321da177e4SLinus Torvalds const unsigned long len, const unsigned long pgoff, 19331da177e4SLinus Torvalds const unsigned long flags) 19341da177e4SLinus Torvalds { 19351da177e4SLinus Torvalds struct vm_area_struct *vma; 19361da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 1937db4fbfb9SMichel Lespinasse unsigned long addr = addr0; 1938db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 19391da177e4SLinus Torvalds 19401da177e4SLinus Torvalds /* requested length too big for entire address space */ 19412afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 19421da177e4SLinus Torvalds return -ENOMEM; 19431da177e4SLinus Torvalds 194406abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 194506abdfb4SBenjamin Herrenschmidt return addr; 194606abdfb4SBenjamin Herrenschmidt 19471da177e4SLinus Torvalds /* requesting a specific address */ 19481da177e4SLinus Torvalds if (addr) { 19491da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 19501da177e4SLinus Torvalds vma = find_vma(mm, addr); 19512afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 19521da177e4SLinus Torvalds (!vma || addr + len <= vma->vm_start)) 19531da177e4SLinus Torvalds return addr; 19541da177e4SLinus Torvalds } 19551da177e4SLinus Torvalds 1956db4fbfb9SMichel Lespinasse info.flags = VM_UNMAPPED_AREA_TOPDOWN; 1957db4fbfb9SMichel Lespinasse info.length = len; 19582afc745fSAkira Takeuchi info.low_limit = max(PAGE_SIZE, mmap_min_addr); 1959db4fbfb9SMichel Lespinasse info.high_limit = mm->mmap_base; 1960db4fbfb9SMichel Lespinasse info.align_mask = 0; 1961db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 1962b716ad95SXiao Guangrong 19631da177e4SLinus Torvalds /* 19641da177e4SLinus Torvalds * A failed mmap() very likely causes application failure, 19651da177e4SLinus Torvalds * so fall back to the bottom-up function here. This scenario 19661da177e4SLinus Torvalds * can happen with large stack limits and large mmap() 19671da177e4SLinus Torvalds * allocations. 19681da177e4SLinus Torvalds */ 1969db4fbfb9SMichel Lespinasse if (addr & ~PAGE_MASK) { 1970db4fbfb9SMichel Lespinasse VM_BUG_ON(addr != -ENOMEM); 1971db4fbfb9SMichel Lespinasse info.flags = 0; 1972db4fbfb9SMichel Lespinasse info.low_limit = TASK_UNMAPPED_BASE; 1973db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 1974db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 1975db4fbfb9SMichel Lespinasse } 19761da177e4SLinus Torvalds 19771da177e4SLinus Torvalds return addr; 19781da177e4SLinus Torvalds } 19791da177e4SLinus Torvalds #endif 19801da177e4SLinus Torvalds 19811da177e4SLinus Torvalds unsigned long 19821da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, 19831da177e4SLinus Torvalds unsigned long pgoff, unsigned long flags) 19841da177e4SLinus Torvalds { 198506abdfb4SBenjamin Herrenschmidt unsigned long (*get_area)(struct file *, unsigned long, 198606abdfb4SBenjamin Herrenschmidt unsigned long, unsigned long, unsigned long); 198707ab67c8SLinus Torvalds 19889206de95SAl Viro unsigned long error = arch_mmap_check(addr, len, flags); 19899206de95SAl Viro if (error) 19909206de95SAl Viro return error; 19919206de95SAl Viro 19929206de95SAl Viro /* Careful about overflows.. */ 19939206de95SAl Viro if (len > TASK_SIZE) 19949206de95SAl Viro return -ENOMEM; 19959206de95SAl Viro 199607ab67c8SLinus Torvalds get_area = current->mm->get_unmapped_area; 199772c2d531SAl Viro if (file && file->f_op->get_unmapped_area) 199807ab67c8SLinus Torvalds get_area = file->f_op->get_unmapped_area; 199907ab67c8SLinus Torvalds addr = get_area(file, addr, len, pgoff, flags); 200007ab67c8SLinus Torvalds if (IS_ERR_VALUE(addr)) 200107ab67c8SLinus Torvalds return addr; 200207ab67c8SLinus Torvalds 20031da177e4SLinus Torvalds if (addr > TASK_SIZE - len) 20041da177e4SLinus Torvalds return -ENOMEM; 20051da177e4SLinus Torvalds if (addr & ~PAGE_MASK) 20061da177e4SLinus Torvalds return -EINVAL; 200706abdfb4SBenjamin Herrenschmidt 20089ac4ed4bSAl Viro addr = arch_rebalance_pgtables(addr, len); 20099ac4ed4bSAl Viro error = security_mmap_addr(addr); 20109ac4ed4bSAl Viro return error ? error : addr; 20111da177e4SLinus Torvalds } 20121da177e4SLinus Torvalds 20131da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area); 20141da177e4SLinus Torvalds 20151da177e4SLinus Torvalds /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */ 20161da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) 20171da177e4SLinus Torvalds { 2018615d6e87SDavidlohr Bueso struct rb_node *rb_node; 2019615d6e87SDavidlohr Bueso struct vm_area_struct *vma; 20201da177e4SLinus Torvalds 20211da177e4SLinus Torvalds /* Check the cache first. */ 2022615d6e87SDavidlohr Bueso vma = vmacache_find(mm, addr); 2023615d6e87SDavidlohr Bueso if (likely(vma)) 2024615d6e87SDavidlohr Bueso return vma; 20251da177e4SLinus Torvalds 20261da177e4SLinus Torvalds rb_node = mm->mm_rb.rb_node; 20271da177e4SLinus Torvalds vma = NULL; 20281da177e4SLinus Torvalds 20291da177e4SLinus Torvalds while (rb_node) { 2030615d6e87SDavidlohr Bueso struct vm_area_struct *tmp; 20311da177e4SLinus Torvalds 2032615d6e87SDavidlohr Bueso tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb); 20331da177e4SLinus Torvalds 2034615d6e87SDavidlohr Bueso if (tmp->vm_end > addr) { 2035615d6e87SDavidlohr Bueso vma = tmp; 2036615d6e87SDavidlohr Bueso if (tmp->vm_start <= addr) 20371da177e4SLinus Torvalds break; 20381da177e4SLinus Torvalds rb_node = rb_node->rb_left; 20391da177e4SLinus Torvalds } else 20401da177e4SLinus Torvalds rb_node = rb_node->rb_right; 20411da177e4SLinus Torvalds } 2042615d6e87SDavidlohr Bueso 20431da177e4SLinus Torvalds if (vma) 2044615d6e87SDavidlohr Bueso vmacache_update(addr, vma); 20451da177e4SLinus Torvalds return vma; 20461da177e4SLinus Torvalds } 20471da177e4SLinus Torvalds 20481da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma); 20491da177e4SLinus Torvalds 20506bd4837dSKOSAKI Motohiro /* 20516bd4837dSKOSAKI Motohiro * Same as find_vma, but also return a pointer to the previous VMA in *pprev. 20526bd4837dSKOSAKI Motohiro */ 20531da177e4SLinus Torvalds struct vm_area_struct * 20541da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr, 20551da177e4SLinus Torvalds struct vm_area_struct **pprev) 20561da177e4SLinus Torvalds { 20576bd4837dSKOSAKI Motohiro struct vm_area_struct *vma; 20581da177e4SLinus Torvalds 20596bd4837dSKOSAKI Motohiro vma = find_vma(mm, addr); 206083cd904dSMikulas Patocka if (vma) { 206183cd904dSMikulas Patocka *pprev = vma->vm_prev; 206283cd904dSMikulas Patocka } else { 206383cd904dSMikulas Patocka struct rb_node *rb_node = mm->mm_rb.rb_node; 206483cd904dSMikulas Patocka *pprev = NULL; 206583cd904dSMikulas Patocka while (rb_node) { 206683cd904dSMikulas Patocka *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb); 206783cd904dSMikulas Patocka rb_node = rb_node->rb_right; 206883cd904dSMikulas Patocka } 206983cd904dSMikulas Patocka } 20706bd4837dSKOSAKI Motohiro return vma; 20711da177e4SLinus Torvalds } 20721da177e4SLinus Torvalds 20731da177e4SLinus Torvalds /* 20741da177e4SLinus Torvalds * Verify that the stack growth is acceptable and 20751da177e4SLinus Torvalds * update accounting. This is shared with both the 20761da177e4SLinus Torvalds * grow-up and grow-down cases. 20771da177e4SLinus Torvalds */ 20781da177e4SLinus Torvalds static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow) 20791da177e4SLinus Torvalds { 20801da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 20811da177e4SLinus Torvalds struct rlimit *rlim = current->signal->rlim; 20820d59a01bSAdam Litke unsigned long new_start; 20831da177e4SLinus Torvalds 20841da177e4SLinus Torvalds /* address space limit tests */ 2085119f657cSakpm@osdl.org if (!may_expand_vm(mm, grow)) 20861da177e4SLinus Torvalds return -ENOMEM; 20871da177e4SLinus Torvalds 20881da177e4SLinus Torvalds /* Stack limit test */ 208959e99e5bSJiri Slaby if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur)) 20901da177e4SLinus Torvalds return -ENOMEM; 20911da177e4SLinus Torvalds 20921da177e4SLinus Torvalds /* mlock limit tests */ 20931da177e4SLinus Torvalds if (vma->vm_flags & VM_LOCKED) { 20941da177e4SLinus Torvalds unsigned long locked; 20951da177e4SLinus Torvalds unsigned long limit; 20961da177e4SLinus Torvalds locked = mm->locked_vm + grow; 209759e99e5bSJiri Slaby limit = ACCESS_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur); 209859e99e5bSJiri Slaby limit >>= PAGE_SHIFT; 20991da177e4SLinus Torvalds if (locked > limit && !capable(CAP_IPC_LOCK)) 21001da177e4SLinus Torvalds return -ENOMEM; 21011da177e4SLinus Torvalds } 21021da177e4SLinus Torvalds 21030d59a01bSAdam Litke /* Check to ensure the stack will not grow into a hugetlb-only region */ 21040d59a01bSAdam Litke new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start : 21050d59a01bSAdam Litke vma->vm_end - size; 21060d59a01bSAdam Litke if (is_hugepage_only_range(vma->vm_mm, new_start, size)) 21070d59a01bSAdam Litke return -EFAULT; 21080d59a01bSAdam Litke 21091da177e4SLinus Torvalds /* 21101da177e4SLinus Torvalds * Overcommit.. This must be the final test, as it will 21111da177e4SLinus Torvalds * update security statistics. 21121da177e4SLinus Torvalds */ 211305fa199dSHugh Dickins if (security_vm_enough_memory_mm(mm, grow)) 21141da177e4SLinus Torvalds return -ENOMEM; 21151da177e4SLinus Torvalds 21161da177e4SLinus Torvalds /* Ok, everything looks good - let it rip */ 21171da177e4SLinus Torvalds if (vma->vm_flags & VM_LOCKED) 21181da177e4SLinus Torvalds mm->locked_vm += grow; 2119ab50b8edSHugh Dickins vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow); 21201da177e4SLinus Torvalds return 0; 21211da177e4SLinus Torvalds } 21221da177e4SLinus Torvalds 212346dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64) 21241da177e4SLinus Torvalds /* 212546dea3d0SHugh Dickins * PA-RISC uses this for its stack; IA64 for its Register Backing Store. 212646dea3d0SHugh Dickins * vma is the last one with address > vma->vm_end. Have to extend vma. 21271da177e4SLinus Torvalds */ 212846dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address) 21291da177e4SLinus Torvalds { 21301da177e4SLinus Torvalds int error; 21311da177e4SLinus Torvalds 21321da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSUP)) 21331da177e4SLinus Torvalds return -EFAULT; 21341da177e4SLinus Torvalds 21351da177e4SLinus Torvalds /* 21361da177e4SLinus Torvalds * We must make sure the anon_vma is allocated 21371da177e4SLinus Torvalds * so that the anon_vma locking is not a noop. 21381da177e4SLinus Torvalds */ 21391da177e4SLinus Torvalds if (unlikely(anon_vma_prepare(vma))) 21401da177e4SLinus Torvalds return -ENOMEM; 2141bb4a340eSRik van Riel vma_lock_anon_vma(vma); 21421da177e4SLinus Torvalds 21431da177e4SLinus Torvalds /* 21441da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 21451da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 21461da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 214706b32f3aSHelge Deller * Also guard against wrapping around to address 0. 21481da177e4SLinus Torvalds */ 214906b32f3aSHelge Deller if (address < PAGE_ALIGN(address+4)) 215006b32f3aSHelge Deller address = PAGE_ALIGN(address+4); 215106b32f3aSHelge Deller else { 2152bb4a340eSRik van Riel vma_unlock_anon_vma(vma); 215306b32f3aSHelge Deller return -ENOMEM; 215406b32f3aSHelge Deller } 21551da177e4SLinus Torvalds error = 0; 21561da177e4SLinus Torvalds 21571da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 21581da177e4SLinus Torvalds if (address > vma->vm_end) { 21591da177e4SLinus Torvalds unsigned long size, grow; 21601da177e4SLinus Torvalds 21611da177e4SLinus Torvalds size = address - vma->vm_start; 21621da177e4SLinus Torvalds grow = (address - vma->vm_end) >> PAGE_SHIFT; 21631da177e4SLinus Torvalds 216442c36f63SHugh Dickins error = -ENOMEM; 216542c36f63SHugh Dickins if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) { 21661da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 21673af9e859SEric B Munson if (!error) { 21684128997bSMichel Lespinasse /* 21694128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 21704128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 21714128997bSMichel Lespinasse * lock here, so we need to protect against 21724128997bSMichel Lespinasse * concurrent vma expansions. 21734128997bSMichel Lespinasse * vma_lock_anon_vma() doesn't help here, as 21744128997bSMichel Lespinasse * we don't guarantee that all growable vmas 21754128997bSMichel Lespinasse * in a mm share the same root anon vma. 21764128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 21774128997bSMichel Lespinasse * against concurrent vma expansions. 21784128997bSMichel Lespinasse */ 21794128997bSMichel Lespinasse spin_lock(&vma->vm_mm->page_table_lock); 2180bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 21811da177e4SLinus Torvalds vma->vm_end = address; 2182bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2183d3737187SMichel Lespinasse if (vma->vm_next) 2184d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 2185d3737187SMichel Lespinasse else 2186d3737187SMichel Lespinasse vma->vm_mm->highest_vm_end = address; 21874128997bSMichel Lespinasse spin_unlock(&vma->vm_mm->page_table_lock); 21884128997bSMichel Lespinasse 21893af9e859SEric B Munson perf_event_mmap(vma); 21903af9e859SEric B Munson } 21911da177e4SLinus Torvalds } 219242c36f63SHugh Dickins } 2193bb4a340eSRik van Riel vma_unlock_anon_vma(vma); 2194b15d00b6SAndrea Arcangeli khugepaged_enter_vma_merge(vma); 2195ed8ea815SMichel Lespinasse validate_mm(vma->vm_mm); 21961da177e4SLinus Torvalds return error; 21971da177e4SLinus Torvalds } 219846dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */ 219946dea3d0SHugh Dickins 22001da177e4SLinus Torvalds /* 22011da177e4SLinus Torvalds * vma is the first one with address < vma->vm_start. Have to extend vma. 22021da177e4SLinus Torvalds */ 2203d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma, 2204b6a2fea3SOllie Wild unsigned long address) 22051da177e4SLinus Torvalds { 22061da177e4SLinus Torvalds int error; 22071da177e4SLinus Torvalds 22081da177e4SLinus Torvalds /* 22091da177e4SLinus Torvalds * We must make sure the anon_vma is allocated 22101da177e4SLinus Torvalds * so that the anon_vma locking is not a noop. 22111da177e4SLinus Torvalds */ 22121da177e4SLinus Torvalds if (unlikely(anon_vma_prepare(vma))) 22131da177e4SLinus Torvalds return -ENOMEM; 22148869477aSEric Paris 22158869477aSEric Paris address &= PAGE_MASK; 2216e5467859SAl Viro error = security_mmap_addr(address); 22178869477aSEric Paris if (error) 22188869477aSEric Paris return error; 22198869477aSEric Paris 2220bb4a340eSRik van Riel vma_lock_anon_vma(vma); 22211da177e4SLinus Torvalds 22221da177e4SLinus Torvalds /* 22231da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 22241da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 22251da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 22261da177e4SLinus Torvalds */ 22271da177e4SLinus Torvalds 22281da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 22291da177e4SLinus Torvalds if (address < vma->vm_start) { 22301da177e4SLinus Torvalds unsigned long size, grow; 22311da177e4SLinus Torvalds 22321da177e4SLinus Torvalds size = vma->vm_end - address; 22331da177e4SLinus Torvalds grow = (vma->vm_start - address) >> PAGE_SHIFT; 22341da177e4SLinus Torvalds 2235a626ca6aSLinus Torvalds error = -ENOMEM; 2236a626ca6aSLinus Torvalds if (grow <= vma->vm_pgoff) { 22371da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 22381da177e4SLinus Torvalds if (!error) { 22394128997bSMichel Lespinasse /* 22404128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 22414128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 22424128997bSMichel Lespinasse * lock here, so we need to protect against 22434128997bSMichel Lespinasse * concurrent vma expansions. 22444128997bSMichel Lespinasse * vma_lock_anon_vma() doesn't help here, as 22454128997bSMichel Lespinasse * we don't guarantee that all growable vmas 22464128997bSMichel Lespinasse * in a mm share the same root anon vma. 22474128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 22484128997bSMichel Lespinasse * against concurrent vma expansions. 22494128997bSMichel Lespinasse */ 22504128997bSMichel Lespinasse spin_lock(&vma->vm_mm->page_table_lock); 2251bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 22521da177e4SLinus Torvalds vma->vm_start = address; 22531da177e4SLinus Torvalds vma->vm_pgoff -= grow; 2254bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2255d3737187SMichel Lespinasse vma_gap_update(vma); 22564128997bSMichel Lespinasse spin_unlock(&vma->vm_mm->page_table_lock); 22574128997bSMichel Lespinasse 22583af9e859SEric B Munson perf_event_mmap(vma); 22591da177e4SLinus Torvalds } 22601da177e4SLinus Torvalds } 2261a626ca6aSLinus Torvalds } 2262bb4a340eSRik van Riel vma_unlock_anon_vma(vma); 2263b15d00b6SAndrea Arcangeli khugepaged_enter_vma_merge(vma); 2264ed8ea815SMichel Lespinasse validate_mm(vma->vm_mm); 22651da177e4SLinus Torvalds return error; 22661da177e4SLinus Torvalds } 22671da177e4SLinus Torvalds 226809884964SLinus Torvalds /* 226909884964SLinus Torvalds * Note how expand_stack() refuses to expand the stack all the way to 227009884964SLinus Torvalds * abut the next virtual mapping, *unless* that mapping itself is also 227109884964SLinus Torvalds * a stack mapping. We want to leave room for a guard page, after all 227209884964SLinus Torvalds * (the guard page itself is not added here, that is done by the 227309884964SLinus Torvalds * actual page faulting logic) 227409884964SLinus Torvalds * 227509884964SLinus Torvalds * This matches the behavior of the guard page logic (see mm/memory.c: 227609884964SLinus Torvalds * check_stack_guard_page()), which only allows the guard page to be 227709884964SLinus Torvalds * removed under these circumstances. 227809884964SLinus Torvalds */ 2279b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP 2280b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2281b6a2fea3SOllie Wild { 228209884964SLinus Torvalds struct vm_area_struct *next; 228309884964SLinus Torvalds 228409884964SLinus Torvalds address &= PAGE_MASK; 228509884964SLinus Torvalds next = vma->vm_next; 228609884964SLinus Torvalds if (next && next->vm_start == address + PAGE_SIZE) { 228709884964SLinus Torvalds if (!(next->vm_flags & VM_GROWSUP)) 228809884964SLinus Torvalds return -ENOMEM; 228909884964SLinus Torvalds } 2290b6a2fea3SOllie Wild return expand_upwards(vma, address); 2291b6a2fea3SOllie Wild } 2292b6a2fea3SOllie Wild 2293b6a2fea3SOllie Wild struct vm_area_struct * 2294b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr) 2295b6a2fea3SOllie Wild { 2296b6a2fea3SOllie Wild struct vm_area_struct *vma, *prev; 2297b6a2fea3SOllie Wild 2298b6a2fea3SOllie Wild addr &= PAGE_MASK; 2299b6a2fea3SOllie Wild vma = find_vma_prev(mm, addr, &prev); 2300b6a2fea3SOllie Wild if (vma && (vma->vm_start <= addr)) 2301b6a2fea3SOllie Wild return vma; 23021c127185SDenys Vlasenko if (!prev || expand_stack(prev, addr)) 2303b6a2fea3SOllie Wild return NULL; 2304cea10a19SMichel Lespinasse if (prev->vm_flags & VM_LOCKED) 2305cea10a19SMichel Lespinasse __mlock_vma_pages_range(prev, addr, prev->vm_end, NULL); 2306b6a2fea3SOllie Wild return prev; 2307b6a2fea3SOllie Wild } 2308b6a2fea3SOllie Wild #else 2309b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2310b6a2fea3SOllie Wild { 231109884964SLinus Torvalds struct vm_area_struct *prev; 231209884964SLinus Torvalds 231309884964SLinus Torvalds address &= PAGE_MASK; 231409884964SLinus Torvalds prev = vma->vm_prev; 231509884964SLinus Torvalds if (prev && prev->vm_end == address) { 231609884964SLinus Torvalds if (!(prev->vm_flags & VM_GROWSDOWN)) 231709884964SLinus Torvalds return -ENOMEM; 231809884964SLinus Torvalds } 2319b6a2fea3SOllie Wild return expand_downwards(vma, address); 2320b6a2fea3SOllie Wild } 2321b6a2fea3SOllie Wild 23221da177e4SLinus Torvalds struct vm_area_struct * 23231da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr) 23241da177e4SLinus Torvalds { 23251da177e4SLinus Torvalds struct vm_area_struct *vma; 23261da177e4SLinus Torvalds unsigned long start; 23271da177e4SLinus Torvalds 23281da177e4SLinus Torvalds addr &= PAGE_MASK; 23291da177e4SLinus Torvalds vma = find_vma(mm, addr); 23301da177e4SLinus Torvalds if (!vma) 23311da177e4SLinus Torvalds return NULL; 23321da177e4SLinus Torvalds if (vma->vm_start <= addr) 23331da177e4SLinus Torvalds return vma; 23341da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSDOWN)) 23351da177e4SLinus Torvalds return NULL; 23361da177e4SLinus Torvalds start = vma->vm_start; 23371da177e4SLinus Torvalds if (expand_stack(vma, addr)) 23381da177e4SLinus Torvalds return NULL; 2339cea10a19SMichel Lespinasse if (vma->vm_flags & VM_LOCKED) 2340cea10a19SMichel Lespinasse __mlock_vma_pages_range(vma, addr, start, NULL); 23411da177e4SLinus Torvalds return vma; 23421da177e4SLinus Torvalds } 23431da177e4SLinus Torvalds #endif 23441da177e4SLinus Torvalds 23452c0b3814SHugh Dickins /* 23462c0b3814SHugh Dickins * Ok - we have the memory areas we should free on the vma list, 23472c0b3814SHugh Dickins * so release them, and do the vma updates. 23481da177e4SLinus Torvalds * 23492c0b3814SHugh Dickins * Called with the mm semaphore held. 23501da177e4SLinus Torvalds */ 23512c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma) 23521da177e4SLinus Torvalds { 23534f74d2c8SLinus Torvalds unsigned long nr_accounted = 0; 23544f74d2c8SLinus Torvalds 2355365e9c87SHugh Dickins /* Update high watermark before we lower total_vm */ 2356365e9c87SHugh Dickins update_hiwater_vm(mm); 23572c0b3814SHugh Dickins do { 2358ab50b8edSHugh Dickins long nrpages = vma_pages(vma); 23591da177e4SLinus Torvalds 23604f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 23614f74d2c8SLinus Torvalds nr_accounted += nrpages; 2362ab50b8edSHugh Dickins vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages); 2363a8fb5618SHugh Dickins vma = remove_vma(vma); 2364146425a3SHugh Dickins } while (vma); 23654f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 23661da177e4SLinus Torvalds validate_mm(mm); 23671da177e4SLinus Torvalds } 23681da177e4SLinus Torvalds 23691da177e4SLinus Torvalds /* 23701da177e4SLinus Torvalds * Get rid of page table information in the indicated region. 23711da177e4SLinus Torvalds * 2372f10df686SPaolo 'Blaisorblade' Giarrusso * Called with the mm semaphore held. 23731da177e4SLinus Torvalds */ 23741da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm, 2375e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 2376e0da382cSHugh Dickins unsigned long start, unsigned long end) 23771da177e4SLinus Torvalds { 2378e0da382cSHugh Dickins struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap; 2379d16dfc55SPeter Zijlstra struct mmu_gather tlb; 23801da177e4SLinus Torvalds 23811da177e4SLinus Torvalds lru_add_drain(); 23822b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, start, end); 2383365e9c87SHugh Dickins update_hiwater_rss(mm); 23844f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, start, end); 2385d16dfc55SPeter Zijlstra free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS, 23866ee8630eSHugh Dickins next ? next->vm_start : USER_PGTABLES_CEILING); 2387d16dfc55SPeter Zijlstra tlb_finish_mmu(&tlb, start, end); 23881da177e4SLinus Torvalds } 23891da177e4SLinus Torvalds 23901da177e4SLinus Torvalds /* 23911da177e4SLinus Torvalds * Create a list of vma's touched by the unmap, removing them from the mm's 23921da177e4SLinus Torvalds * vma list as we go.. 23931da177e4SLinus Torvalds */ 23941da177e4SLinus Torvalds static void 23951da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma, 23961da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long end) 23971da177e4SLinus Torvalds { 23981da177e4SLinus Torvalds struct vm_area_struct **insertion_point; 23991da177e4SLinus Torvalds struct vm_area_struct *tail_vma = NULL; 24001da177e4SLinus Torvalds 24011da177e4SLinus Torvalds insertion_point = (prev ? &prev->vm_next : &mm->mmap); 2402297c5eeeSLinus Torvalds vma->vm_prev = NULL; 24031da177e4SLinus Torvalds do { 2404d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 24051da177e4SLinus Torvalds mm->map_count--; 24061da177e4SLinus Torvalds tail_vma = vma; 24071da177e4SLinus Torvalds vma = vma->vm_next; 24081da177e4SLinus Torvalds } while (vma && vma->vm_start < end); 24091da177e4SLinus Torvalds *insertion_point = vma; 2410d3737187SMichel Lespinasse if (vma) { 2411297c5eeeSLinus Torvalds vma->vm_prev = prev; 2412d3737187SMichel Lespinasse vma_gap_update(vma); 2413d3737187SMichel Lespinasse } else 2414d3737187SMichel Lespinasse mm->highest_vm_end = prev ? prev->vm_end : 0; 24151da177e4SLinus Torvalds tail_vma->vm_next = NULL; 2416615d6e87SDavidlohr Bueso 2417615d6e87SDavidlohr Bueso /* Kill the cache */ 2418615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 24191da177e4SLinus Torvalds } 24201da177e4SLinus Torvalds 24211da177e4SLinus Torvalds /* 2422659ace58SKOSAKI Motohiro * __split_vma() bypasses sysctl_max_map_count checking. We use this on the 2423659ace58SKOSAKI Motohiro * munmap path where it doesn't make sense to fail. 24241da177e4SLinus Torvalds */ 2425659ace58SKOSAKI Motohiro static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 24261da177e4SLinus Torvalds unsigned long addr, int new_below) 24271da177e4SLinus Torvalds { 24281da177e4SLinus Torvalds struct vm_area_struct *new; 24295beb4930SRik van Riel int err = -ENOMEM; 24301da177e4SLinus Torvalds 2431a5516438SAndi Kleen if (is_vm_hugetlb_page(vma) && (addr & 2432a5516438SAndi Kleen ~(huge_page_mask(hstate_vma(vma))))) 24331da177e4SLinus Torvalds return -EINVAL; 24341da177e4SLinus Torvalds 2435e94b1766SChristoph Lameter new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 24361da177e4SLinus Torvalds if (!new) 24375beb4930SRik van Riel goto out_err; 24381da177e4SLinus Torvalds 24391da177e4SLinus Torvalds /* most fields are the same, copy all, and then fixup */ 24401da177e4SLinus Torvalds *new = *vma; 24411da177e4SLinus Torvalds 24425beb4930SRik van Riel INIT_LIST_HEAD(&new->anon_vma_chain); 24435beb4930SRik van Riel 24441da177e4SLinus Torvalds if (new_below) 24451da177e4SLinus Torvalds new->vm_end = addr; 24461da177e4SLinus Torvalds else { 24471da177e4SLinus Torvalds new->vm_start = addr; 24481da177e4SLinus Torvalds new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT); 24491da177e4SLinus Torvalds } 24501da177e4SLinus Torvalds 2451ef0855d3SOleg Nesterov err = vma_dup_policy(vma, new); 2452ef0855d3SOleg Nesterov if (err) 24535beb4930SRik van Riel goto out_free_vma; 24541da177e4SLinus Torvalds 24555beb4930SRik van Riel if (anon_vma_clone(new, vma)) 24565beb4930SRik van Riel goto out_free_mpol; 24575beb4930SRik van Riel 2458e9714acfSKonstantin Khlebnikov if (new->vm_file) 24591da177e4SLinus Torvalds get_file(new->vm_file); 24601da177e4SLinus Torvalds 24611da177e4SLinus Torvalds if (new->vm_ops && new->vm_ops->open) 24621da177e4SLinus Torvalds new->vm_ops->open(new); 24631da177e4SLinus Torvalds 24641da177e4SLinus Torvalds if (new_below) 24655beb4930SRik van Riel err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff + 24661da177e4SLinus Torvalds ((addr - new->vm_start) >> PAGE_SHIFT), new); 24671da177e4SLinus Torvalds else 24685beb4930SRik van Riel err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new); 24691da177e4SLinus Torvalds 24705beb4930SRik van Riel /* Success. */ 24715beb4930SRik van Riel if (!err) 24721da177e4SLinus Torvalds return 0; 24735beb4930SRik van Riel 24745beb4930SRik van Riel /* Clean everything up if vma_adjust failed. */ 247558927533SRik van Riel if (new->vm_ops && new->vm_ops->close) 24765beb4930SRik van Riel new->vm_ops->close(new); 2477e9714acfSKonstantin Khlebnikov if (new->vm_file) 24785beb4930SRik van Riel fput(new->vm_file); 24792aeadc30SAndrea Arcangeli unlink_anon_vmas(new); 24805beb4930SRik van Riel out_free_mpol: 2481ef0855d3SOleg Nesterov mpol_put(vma_policy(new)); 24825beb4930SRik van Riel out_free_vma: 24835beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new); 24845beb4930SRik van Riel out_err: 24855beb4930SRik van Riel return err; 24861da177e4SLinus Torvalds } 24871da177e4SLinus Torvalds 2488659ace58SKOSAKI Motohiro /* 2489659ace58SKOSAKI Motohiro * Split a vma into two pieces at address 'addr', a new vma is allocated 2490659ace58SKOSAKI Motohiro * either for the first part or the tail. 2491659ace58SKOSAKI Motohiro */ 2492659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 2493659ace58SKOSAKI Motohiro unsigned long addr, int new_below) 2494659ace58SKOSAKI Motohiro { 2495659ace58SKOSAKI Motohiro if (mm->map_count >= sysctl_max_map_count) 2496659ace58SKOSAKI Motohiro return -ENOMEM; 2497659ace58SKOSAKI Motohiro 2498659ace58SKOSAKI Motohiro return __split_vma(mm, vma, addr, new_below); 2499659ace58SKOSAKI Motohiro } 2500659ace58SKOSAKI Motohiro 25011da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds 25021da177e4SLinus Torvalds * what needs doing, and the areas themselves, which do the 25031da177e4SLinus Torvalds * work. This now handles partial unmappings. 25041da177e4SLinus Torvalds * Jeremy Fitzhardinge <jeremy@goop.org> 25051da177e4SLinus Torvalds */ 25061da177e4SLinus Torvalds int do_munmap(struct mm_struct *mm, unsigned long start, size_t len) 25071da177e4SLinus Torvalds { 25081da177e4SLinus Torvalds unsigned long end; 2509146425a3SHugh Dickins struct vm_area_struct *vma, *prev, *last; 25101da177e4SLinus Torvalds 25111da177e4SLinus Torvalds if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start) 25121da177e4SLinus Torvalds return -EINVAL; 25131da177e4SLinus Torvalds 2514cc71aba3Svishnu.ps len = PAGE_ALIGN(len); 2515cc71aba3Svishnu.ps if (len == 0) 25161da177e4SLinus Torvalds return -EINVAL; 25171da177e4SLinus Torvalds 25181da177e4SLinus Torvalds /* Find the first overlapping VMA */ 25199be34c9dSLinus Torvalds vma = find_vma(mm, start); 2520146425a3SHugh Dickins if (!vma) 25211da177e4SLinus Torvalds return 0; 25229be34c9dSLinus Torvalds prev = vma->vm_prev; 2523146425a3SHugh Dickins /* we have start < vma->vm_end */ 25241da177e4SLinus Torvalds 25251da177e4SLinus Torvalds /* if it doesn't overlap, we have nothing.. */ 25261da177e4SLinus Torvalds end = start + len; 2527146425a3SHugh Dickins if (vma->vm_start >= end) 25281da177e4SLinus Torvalds return 0; 25291da177e4SLinus Torvalds 25301da177e4SLinus Torvalds /* 25311da177e4SLinus Torvalds * If we need to split any vma, do it now to save pain later. 25321da177e4SLinus Torvalds * 25331da177e4SLinus Torvalds * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially 25341da177e4SLinus Torvalds * unmapped vm_area_struct will remain in use: so lower split_vma 25351da177e4SLinus Torvalds * places tmp vma above, and higher split_vma places tmp vma below. 25361da177e4SLinus Torvalds */ 2537146425a3SHugh Dickins if (start > vma->vm_start) { 2538659ace58SKOSAKI Motohiro int error; 2539659ace58SKOSAKI Motohiro 2540659ace58SKOSAKI Motohiro /* 2541659ace58SKOSAKI Motohiro * Make sure that map_count on return from munmap() will 2542659ace58SKOSAKI Motohiro * not exceed its limit; but let map_count go just above 2543659ace58SKOSAKI Motohiro * its limit temporarily, to help free resources as expected. 2544659ace58SKOSAKI Motohiro */ 2545659ace58SKOSAKI Motohiro if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count) 2546659ace58SKOSAKI Motohiro return -ENOMEM; 2547659ace58SKOSAKI Motohiro 2548659ace58SKOSAKI Motohiro error = __split_vma(mm, vma, start, 0); 25491da177e4SLinus Torvalds if (error) 25501da177e4SLinus Torvalds return error; 2551146425a3SHugh Dickins prev = vma; 25521da177e4SLinus Torvalds } 25531da177e4SLinus Torvalds 25541da177e4SLinus Torvalds /* Does it split the last one? */ 25551da177e4SLinus Torvalds last = find_vma(mm, end); 25561da177e4SLinus Torvalds if (last && end > last->vm_start) { 2557659ace58SKOSAKI Motohiro int error = __split_vma(mm, last, end, 1); 25581da177e4SLinus Torvalds if (error) 25591da177e4SLinus Torvalds return error; 25601da177e4SLinus Torvalds } 2561146425a3SHugh Dickins vma = prev ? prev->vm_next : mm->mmap; 25621da177e4SLinus Torvalds 25631da177e4SLinus Torvalds /* 2564ba470de4SRik van Riel * unlock any mlock()ed ranges before detaching vmas 2565ba470de4SRik van Riel */ 2566ba470de4SRik van Riel if (mm->locked_vm) { 2567ba470de4SRik van Riel struct vm_area_struct *tmp = vma; 2568ba470de4SRik van Riel while (tmp && tmp->vm_start < end) { 2569ba470de4SRik van Riel if (tmp->vm_flags & VM_LOCKED) { 2570ba470de4SRik van Riel mm->locked_vm -= vma_pages(tmp); 2571ba470de4SRik van Riel munlock_vma_pages_all(tmp); 2572ba470de4SRik van Riel } 2573ba470de4SRik van Riel tmp = tmp->vm_next; 2574ba470de4SRik van Riel } 2575ba470de4SRik van Riel } 2576ba470de4SRik van Riel 2577ba470de4SRik van Riel /* 25781da177e4SLinus Torvalds * Remove the vma's, and unmap the actual pages 25791da177e4SLinus Torvalds */ 2580146425a3SHugh Dickins detach_vmas_to_be_unmapped(mm, vma, prev, end); 2581146425a3SHugh Dickins unmap_region(mm, vma, prev, start, end); 25821da177e4SLinus Torvalds 25831da177e4SLinus Torvalds /* Fix up all other VM information */ 25842c0b3814SHugh Dickins remove_vma_list(mm, vma); 25851da177e4SLinus Torvalds 25861da177e4SLinus Torvalds return 0; 25871da177e4SLinus Torvalds } 25881da177e4SLinus Torvalds 2589bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len) 2590a46ef99dSLinus Torvalds { 2591a46ef99dSLinus Torvalds int ret; 2592bfce281cSAl Viro struct mm_struct *mm = current->mm; 2593a46ef99dSLinus Torvalds 2594a46ef99dSLinus Torvalds down_write(&mm->mmap_sem); 2595a46ef99dSLinus Torvalds ret = do_munmap(mm, start, len); 2596a46ef99dSLinus Torvalds up_write(&mm->mmap_sem); 2597a46ef99dSLinus Torvalds return ret; 2598a46ef99dSLinus Torvalds } 2599a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap); 2600a46ef99dSLinus Torvalds 26016a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len) 26021da177e4SLinus Torvalds { 26031da177e4SLinus Torvalds profile_munmap(addr); 2604bfce281cSAl Viro return vm_munmap(addr, len); 26051da177e4SLinus Torvalds } 26061da177e4SLinus Torvalds 26071da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm) 26081da177e4SLinus Torvalds { 2609a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM 26101da177e4SLinus Torvalds if (unlikely(down_read_trylock(&mm->mmap_sem))) { 26111da177e4SLinus Torvalds WARN_ON(1); 26121da177e4SLinus Torvalds up_read(&mm->mmap_sem); 26131da177e4SLinus Torvalds } 26141da177e4SLinus Torvalds #endif 26151da177e4SLinus Torvalds } 26161da177e4SLinus Torvalds 26171da177e4SLinus Torvalds /* 26181da177e4SLinus Torvalds * this is really a simplified "do_mmap". it only handles 26191da177e4SLinus Torvalds * anonymous maps. eventually we may be able to do some 26201da177e4SLinus Torvalds * brk-specific accounting here. 26211da177e4SLinus Torvalds */ 2622e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len) 26231da177e4SLinus Torvalds { 26241da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 26251da177e4SLinus Torvalds struct vm_area_struct *vma, *prev; 26261da177e4SLinus Torvalds unsigned long flags; 26271da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 26281da177e4SLinus Torvalds pgoff_t pgoff = addr >> PAGE_SHIFT; 26293a459756SKirill Korotaev int error; 26301da177e4SLinus Torvalds 26311da177e4SLinus Torvalds len = PAGE_ALIGN(len); 26321da177e4SLinus Torvalds if (!len) 26331da177e4SLinus Torvalds return addr; 26341da177e4SLinus Torvalds 26353a459756SKirill Korotaev flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags; 26363a459756SKirill Korotaev 26372c6a1016SAl Viro error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED); 26382c6a1016SAl Viro if (error & ~PAGE_MASK) 26393a459756SKirill Korotaev return error; 26403a459756SKirill Korotaev 2641363ee17fSDavidlohr Bueso error = mlock_future_check(mm, mm->def_flags, len); 2642363ee17fSDavidlohr Bueso if (error) 2643363ee17fSDavidlohr Bueso return error; 26441da177e4SLinus Torvalds 26451da177e4SLinus Torvalds /* 26461da177e4SLinus Torvalds * mm->mmap_sem is required to protect against another thread 26471da177e4SLinus Torvalds * changing the mappings in case we sleep. 26481da177e4SLinus Torvalds */ 26491da177e4SLinus Torvalds verify_mm_writelocked(mm); 26501da177e4SLinus Torvalds 26511da177e4SLinus Torvalds /* 26521da177e4SLinus Torvalds * Clear old maps. this also does some error checking for us 26531da177e4SLinus Torvalds */ 26541da177e4SLinus Torvalds munmap_back: 26556597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) { 26561da177e4SLinus Torvalds if (do_munmap(mm, addr, len)) 26571da177e4SLinus Torvalds return -ENOMEM; 26581da177e4SLinus Torvalds goto munmap_back; 26591da177e4SLinus Torvalds } 26601da177e4SLinus Torvalds 26611da177e4SLinus Torvalds /* Check against address space limits *after* clearing old maps... */ 2662119f657cSakpm@osdl.org if (!may_expand_vm(mm, len >> PAGE_SHIFT)) 26631da177e4SLinus Torvalds return -ENOMEM; 26641da177e4SLinus Torvalds 26651da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 26661da177e4SLinus Torvalds return -ENOMEM; 26671da177e4SLinus Torvalds 2668191c5424SAl Viro if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT)) 26691da177e4SLinus Torvalds return -ENOMEM; 26701da177e4SLinus Torvalds 26711da177e4SLinus Torvalds /* Can we just expand an old private anonymous mapping? */ 2672ba470de4SRik van Riel vma = vma_merge(mm, prev, addr, addr + len, flags, 2673ba470de4SRik van Riel NULL, NULL, pgoff, NULL); 2674ba470de4SRik van Riel if (vma) 26751da177e4SLinus Torvalds goto out; 26761da177e4SLinus Torvalds 26771da177e4SLinus Torvalds /* 26781da177e4SLinus Torvalds * create a vma struct for an anonymous mapping 26791da177e4SLinus Torvalds */ 2680c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 26811da177e4SLinus Torvalds if (!vma) { 26821da177e4SLinus Torvalds vm_unacct_memory(len >> PAGE_SHIFT); 26831da177e4SLinus Torvalds return -ENOMEM; 26841da177e4SLinus Torvalds } 26851da177e4SLinus Torvalds 26865beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 26871da177e4SLinus Torvalds vma->vm_mm = mm; 26881da177e4SLinus Torvalds vma->vm_start = addr; 26891da177e4SLinus Torvalds vma->vm_end = addr + len; 26901da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 26911da177e4SLinus Torvalds vma->vm_flags = flags; 26923ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(flags); 26931da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 26941da177e4SLinus Torvalds out: 26953af9e859SEric B Munson perf_event_mmap(vma); 26961da177e4SLinus Torvalds mm->total_vm += len >> PAGE_SHIFT; 2697128557ffSMichel Lespinasse if (flags & VM_LOCKED) 2698ba470de4SRik van Riel mm->locked_vm += (len >> PAGE_SHIFT); 2699d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 27001da177e4SLinus Torvalds return addr; 27011da177e4SLinus Torvalds } 27021da177e4SLinus Torvalds 2703e4eb1ff6SLinus Torvalds unsigned long vm_brk(unsigned long addr, unsigned long len) 2704e4eb1ff6SLinus Torvalds { 2705e4eb1ff6SLinus Torvalds struct mm_struct *mm = current->mm; 2706e4eb1ff6SLinus Torvalds unsigned long ret; 2707128557ffSMichel Lespinasse bool populate; 2708e4eb1ff6SLinus Torvalds 2709e4eb1ff6SLinus Torvalds down_write(&mm->mmap_sem); 2710e4eb1ff6SLinus Torvalds ret = do_brk(addr, len); 2711128557ffSMichel Lespinasse populate = ((mm->def_flags & VM_LOCKED) != 0); 2712e4eb1ff6SLinus Torvalds up_write(&mm->mmap_sem); 2713128557ffSMichel Lespinasse if (populate) 2714128557ffSMichel Lespinasse mm_populate(addr, len); 2715e4eb1ff6SLinus Torvalds return ret; 2716e4eb1ff6SLinus Torvalds } 2717e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk); 27181da177e4SLinus Torvalds 27191da177e4SLinus Torvalds /* Release all mmaps. */ 27201da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm) 27211da177e4SLinus Torvalds { 2722d16dfc55SPeter Zijlstra struct mmu_gather tlb; 2723ba470de4SRik van Riel struct vm_area_struct *vma; 27241da177e4SLinus Torvalds unsigned long nr_accounted = 0; 27251da177e4SLinus Torvalds 2726d6dd61c8SJeremy Fitzhardinge /* mm's last user has gone, and its about to be pulled down */ 2727cddb8a5cSAndrea Arcangeli mmu_notifier_release(mm); 2728d6dd61c8SJeremy Fitzhardinge 2729ba470de4SRik van Riel if (mm->locked_vm) { 2730ba470de4SRik van Riel vma = mm->mmap; 2731ba470de4SRik van Riel while (vma) { 2732ba470de4SRik van Riel if (vma->vm_flags & VM_LOCKED) 2733ba470de4SRik van Riel munlock_vma_pages_all(vma); 2734ba470de4SRik van Riel vma = vma->vm_next; 2735ba470de4SRik van Riel } 2736ba470de4SRik van Riel } 27379480c53eSJeremy Fitzhardinge 27389480c53eSJeremy Fitzhardinge arch_exit_mmap(mm); 27399480c53eSJeremy Fitzhardinge 2740ba470de4SRik van Riel vma = mm->mmap; 27419480c53eSJeremy Fitzhardinge if (!vma) /* Can happen if dup_mmap() received an OOM */ 27429480c53eSJeremy Fitzhardinge return; 27439480c53eSJeremy Fitzhardinge 27441da177e4SLinus Torvalds lru_add_drain(); 27451da177e4SLinus Torvalds flush_cache_mm(mm); 27462b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, 0, -1); 2747901608d9SOleg Nesterov /* update_hiwater_rss(mm) here? but nobody should be looking */ 2748e0da382cSHugh Dickins /* Use -1 here to ensure all VMAs in the mm are unmapped */ 27494f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, 0, -1); 27509ba69294SHugh Dickins 27516ee8630eSHugh Dickins free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING); 2752853f5e26SAl Viro tlb_finish_mmu(&tlb, 0, -1); 27531da177e4SLinus Torvalds 27541da177e4SLinus Torvalds /* 27558f4f8c16SHugh Dickins * Walk the list again, actually closing and freeing it, 27568f4f8c16SHugh Dickins * with preemption enabled, without holding any MM locks. 27571da177e4SLinus Torvalds */ 27584f74d2c8SLinus Torvalds while (vma) { 27594f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 27604f74d2c8SLinus Torvalds nr_accounted += vma_pages(vma); 2761a8fb5618SHugh Dickins vma = remove_vma(vma); 27624f74d2c8SLinus Torvalds } 27634f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 2764e0da382cSHugh Dickins 2765e1f56c89SKirill A. Shutemov WARN_ON(atomic_long_read(&mm->nr_ptes) > 2766e1f56c89SKirill A. Shutemov (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT); 27671da177e4SLinus Torvalds } 27681da177e4SLinus Torvalds 27691da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address 27701da177e4SLinus Torvalds * and into the inode's i_mmap tree. If vm_file is non-NULL 27713d48ae45SPeter Zijlstra * then i_mmap_mutex is taken here. 27721da177e4SLinus Torvalds */ 27731da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 27741da177e4SLinus Torvalds { 27756597d783SHugh Dickins struct vm_area_struct *prev; 27761da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 27771da177e4SLinus Torvalds 27781da177e4SLinus Torvalds /* 27791da177e4SLinus Torvalds * The vm_pgoff of a purely anonymous vma should be irrelevant 27801da177e4SLinus Torvalds * until its first write fault, when page's anon_vma and index 27811da177e4SLinus Torvalds * are set. But now set the vm_pgoff it will almost certainly 27821da177e4SLinus Torvalds * end up with (unless mremap moves it elsewhere before that 27831da177e4SLinus Torvalds * first wfault), so /proc/pid/maps tells a consistent story. 27841da177e4SLinus Torvalds * 27851da177e4SLinus Torvalds * By setting it to reflect the virtual start address of the 27861da177e4SLinus Torvalds * vma, merges and splits can happen in a seamless way, just 27871da177e4SLinus Torvalds * using the existing file pgoff checks and manipulations. 27881da177e4SLinus Torvalds * Similarly in do_mmap_pgoff and in do_brk. 27891da177e4SLinus Torvalds */ 27901da177e4SLinus Torvalds if (!vma->vm_file) { 27911da177e4SLinus Torvalds BUG_ON(vma->anon_vma); 27921da177e4SLinus Torvalds vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT; 27931da177e4SLinus Torvalds } 27946597d783SHugh Dickins if (find_vma_links(mm, vma->vm_start, vma->vm_end, 27956597d783SHugh Dickins &prev, &rb_link, &rb_parent)) 27961da177e4SLinus Torvalds return -ENOMEM; 27972fd4ef85SHugh Dickins if ((vma->vm_flags & VM_ACCOUNT) && 279834b4e4aaSAlan Cox security_vm_enough_memory_mm(mm, vma_pages(vma))) 27992fd4ef85SHugh Dickins return -ENOMEM; 28002b144498SSrikar Dronamraju 28011da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 28021da177e4SLinus Torvalds return 0; 28031da177e4SLinus Torvalds } 28041da177e4SLinus Torvalds 28051da177e4SLinus Torvalds /* 28061da177e4SLinus Torvalds * Copy the vma structure to a new location in the same mm, 28071da177e4SLinus Torvalds * prior to moving page table entries, to effect an mremap move. 28081da177e4SLinus Torvalds */ 28091da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap, 281038a76013SMichel Lespinasse unsigned long addr, unsigned long len, pgoff_t pgoff, 281138a76013SMichel Lespinasse bool *need_rmap_locks) 28121da177e4SLinus Torvalds { 28131da177e4SLinus Torvalds struct vm_area_struct *vma = *vmap; 28141da177e4SLinus Torvalds unsigned long vma_start = vma->vm_start; 28151da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 28161da177e4SLinus Torvalds struct vm_area_struct *new_vma, *prev; 28171da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 2818948f017bSAndrea Arcangeli bool faulted_in_anon_vma = true; 28191da177e4SLinus Torvalds 28201da177e4SLinus Torvalds /* 28211da177e4SLinus Torvalds * If anonymous vma has not yet been faulted, update new pgoff 28221da177e4SLinus Torvalds * to match new location, to increase its chance of merging. 28231da177e4SLinus Torvalds */ 2824948f017bSAndrea Arcangeli if (unlikely(!vma->vm_file && !vma->anon_vma)) { 28251da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 2826948f017bSAndrea Arcangeli faulted_in_anon_vma = false; 2827948f017bSAndrea Arcangeli } 28281da177e4SLinus Torvalds 28296597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) 28306597d783SHugh Dickins return NULL; /* should never get here */ 28311da177e4SLinus Torvalds new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags, 28321da177e4SLinus Torvalds vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma)); 28331da177e4SLinus Torvalds if (new_vma) { 28341da177e4SLinus Torvalds /* 28351da177e4SLinus Torvalds * Source vma may have been merged into new_vma 28361da177e4SLinus Torvalds */ 2837948f017bSAndrea Arcangeli if (unlikely(vma_start >= new_vma->vm_start && 2838948f017bSAndrea Arcangeli vma_start < new_vma->vm_end)) { 2839948f017bSAndrea Arcangeli /* 2840948f017bSAndrea Arcangeli * The only way we can get a vma_merge with 2841948f017bSAndrea Arcangeli * self during an mremap is if the vma hasn't 2842948f017bSAndrea Arcangeli * been faulted in yet and we were allowed to 2843948f017bSAndrea Arcangeli * reset the dst vma->vm_pgoff to the 2844948f017bSAndrea Arcangeli * destination address of the mremap to allow 2845948f017bSAndrea Arcangeli * the merge to happen. mremap must change the 2846948f017bSAndrea Arcangeli * vm_pgoff linearity between src and dst vmas 2847948f017bSAndrea Arcangeli * (in turn preventing a vma_merge) to be 2848948f017bSAndrea Arcangeli * safe. It is only safe to keep the vm_pgoff 2849948f017bSAndrea Arcangeli * linear if there are no pages mapped yet. 2850948f017bSAndrea Arcangeli */ 2851*81d1b09cSSasha Levin VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma); 285238a76013SMichel Lespinasse *vmap = vma = new_vma; 2853108d6642SMichel Lespinasse } 285438a76013SMichel Lespinasse *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff); 28551da177e4SLinus Torvalds } else { 2856e94b1766SChristoph Lameter new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 28571da177e4SLinus Torvalds if (new_vma) { 28581da177e4SLinus Torvalds *new_vma = *vma; 28591da177e4SLinus Torvalds new_vma->vm_start = addr; 28601da177e4SLinus Torvalds new_vma->vm_end = addr + len; 28611da177e4SLinus Torvalds new_vma->vm_pgoff = pgoff; 2862ef0855d3SOleg Nesterov if (vma_dup_policy(vma, new_vma)) 2863523d4e20SMichel Lespinasse goto out_free_vma; 2864523d4e20SMichel Lespinasse INIT_LIST_HEAD(&new_vma->anon_vma_chain); 2865523d4e20SMichel Lespinasse if (anon_vma_clone(new_vma, vma)) 2866523d4e20SMichel Lespinasse goto out_free_mempol; 2867e9714acfSKonstantin Khlebnikov if (new_vma->vm_file) 28681da177e4SLinus Torvalds get_file(new_vma->vm_file); 28691da177e4SLinus Torvalds if (new_vma->vm_ops && new_vma->vm_ops->open) 28701da177e4SLinus Torvalds new_vma->vm_ops->open(new_vma); 28711da177e4SLinus Torvalds vma_link(mm, new_vma, prev, rb_link, rb_parent); 287238a76013SMichel Lespinasse *need_rmap_locks = false; 28731da177e4SLinus Torvalds } 28741da177e4SLinus Torvalds } 28751da177e4SLinus Torvalds return new_vma; 28765beb4930SRik van Riel 28775beb4930SRik van Riel out_free_mempol: 2878ef0855d3SOleg Nesterov mpol_put(vma_policy(new_vma)); 28795beb4930SRik van Riel out_free_vma: 28805beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new_vma); 28815beb4930SRik van Riel return NULL; 28821da177e4SLinus Torvalds } 2883119f657cSakpm@osdl.org 2884119f657cSakpm@osdl.org /* 2885119f657cSakpm@osdl.org * Return true if the calling process may expand its vm space by the passed 2886119f657cSakpm@osdl.org * number of pages 2887119f657cSakpm@osdl.org */ 2888119f657cSakpm@osdl.org int may_expand_vm(struct mm_struct *mm, unsigned long npages) 2889119f657cSakpm@osdl.org { 2890119f657cSakpm@osdl.org unsigned long cur = mm->total_vm; /* pages */ 2891119f657cSakpm@osdl.org unsigned long lim; 2892119f657cSakpm@osdl.org 289359e99e5bSJiri Slaby lim = rlimit(RLIMIT_AS) >> PAGE_SHIFT; 2894119f657cSakpm@osdl.org 2895119f657cSakpm@osdl.org if (cur + npages > lim) 2896119f657cSakpm@osdl.org return 0; 2897119f657cSakpm@osdl.org return 1; 2898119f657cSakpm@osdl.org } 2899fa5dc22fSRoland McGrath 2900a62c34bdSAndy Lutomirski static int special_mapping_fault(struct vm_area_struct *vma, 2901a62c34bdSAndy Lutomirski struct vm_fault *vmf); 2902a62c34bdSAndy Lutomirski 2903a62c34bdSAndy Lutomirski /* 2904a62c34bdSAndy Lutomirski * Having a close hook prevents vma merging regardless of flags. 2905a62c34bdSAndy Lutomirski */ 2906a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma) 2907a62c34bdSAndy Lutomirski { 2908a62c34bdSAndy Lutomirski } 2909a62c34bdSAndy Lutomirski 2910a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma) 2911a62c34bdSAndy Lutomirski { 2912a62c34bdSAndy Lutomirski return ((struct vm_special_mapping *)vma->vm_private_data)->name; 2913a62c34bdSAndy Lutomirski } 2914a62c34bdSAndy Lutomirski 2915a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = { 2916a62c34bdSAndy Lutomirski .close = special_mapping_close, 2917a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 2918a62c34bdSAndy Lutomirski .name = special_mapping_name, 2919a62c34bdSAndy Lutomirski }; 2920a62c34bdSAndy Lutomirski 2921a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = { 2922a62c34bdSAndy Lutomirski .close = special_mapping_close, 2923a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 2924a62c34bdSAndy Lutomirski }; 2925fa5dc22fSRoland McGrath 2926b1d0e4f5SNick Piggin static int special_mapping_fault(struct vm_area_struct *vma, 2927b1d0e4f5SNick Piggin struct vm_fault *vmf) 2928fa5dc22fSRoland McGrath { 2929b1d0e4f5SNick Piggin pgoff_t pgoff; 2930fa5dc22fSRoland McGrath struct page **pages; 2931fa5dc22fSRoland McGrath 2932b1d0e4f5SNick Piggin /* 2933b1d0e4f5SNick Piggin * special mappings have no vm_file, and in that case, the mm 2934b1d0e4f5SNick Piggin * uses vm_pgoff internally. So we have to subtract it from here. 2935b1d0e4f5SNick Piggin * We are allowed to do this because we are the mm; do not copy 2936b1d0e4f5SNick Piggin * this code into drivers! 2937b1d0e4f5SNick Piggin */ 2938b1d0e4f5SNick Piggin pgoff = vmf->pgoff - vma->vm_pgoff; 2939fa5dc22fSRoland McGrath 2940a62c34bdSAndy Lutomirski if (vma->vm_ops == &legacy_special_mapping_vmops) 2941a62c34bdSAndy Lutomirski pages = vma->vm_private_data; 2942a62c34bdSAndy Lutomirski else 2943a62c34bdSAndy Lutomirski pages = ((struct vm_special_mapping *)vma->vm_private_data)-> 2944a62c34bdSAndy Lutomirski pages; 2945a62c34bdSAndy Lutomirski 2946a62c34bdSAndy Lutomirski for (; pgoff && *pages; ++pages) 2947b1d0e4f5SNick Piggin pgoff--; 2948fa5dc22fSRoland McGrath 2949fa5dc22fSRoland McGrath if (*pages) { 2950fa5dc22fSRoland McGrath struct page *page = *pages; 2951fa5dc22fSRoland McGrath get_page(page); 2952b1d0e4f5SNick Piggin vmf->page = page; 2953b1d0e4f5SNick Piggin return 0; 2954fa5dc22fSRoland McGrath } 2955fa5dc22fSRoland McGrath 2956b1d0e4f5SNick Piggin return VM_FAULT_SIGBUS; 2957fa5dc22fSRoland McGrath } 2958fa5dc22fSRoland McGrath 2959a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping( 2960a62c34bdSAndy Lutomirski struct mm_struct *mm, 2961fa5dc22fSRoland McGrath unsigned long addr, unsigned long len, 2962a62c34bdSAndy Lutomirski unsigned long vm_flags, const struct vm_operations_struct *ops, 2963a62c34bdSAndy Lutomirski void *priv) 2964fa5dc22fSRoland McGrath { 2965462e635eSTavis Ormandy int ret; 2966fa5dc22fSRoland McGrath struct vm_area_struct *vma; 2967fa5dc22fSRoland McGrath 2968fa5dc22fSRoland McGrath vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 2969fa5dc22fSRoland McGrath if (unlikely(vma == NULL)) 29703935ed6aSStefani Seibold return ERR_PTR(-ENOMEM); 2971fa5dc22fSRoland McGrath 29725beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 2973fa5dc22fSRoland McGrath vma->vm_mm = mm; 2974fa5dc22fSRoland McGrath vma->vm_start = addr; 2975fa5dc22fSRoland McGrath vma->vm_end = addr + len; 2976fa5dc22fSRoland McGrath 2977d9104d1cSCyrill Gorcunov vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY; 29783ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vma->vm_flags); 2979fa5dc22fSRoland McGrath 2980a62c34bdSAndy Lutomirski vma->vm_ops = ops; 2981a62c34bdSAndy Lutomirski vma->vm_private_data = priv; 2982fa5dc22fSRoland McGrath 2983462e635eSTavis Ormandy ret = insert_vm_struct(mm, vma); 2984462e635eSTavis Ormandy if (ret) 2985462e635eSTavis Ormandy goto out; 2986fa5dc22fSRoland McGrath 2987fa5dc22fSRoland McGrath mm->total_vm += len >> PAGE_SHIFT; 2988fa5dc22fSRoland McGrath 2989cdd6c482SIngo Molnar perf_event_mmap(vma); 2990089dd79dSPeter Zijlstra 29913935ed6aSStefani Seibold return vma; 2992462e635eSTavis Ormandy 2993462e635eSTavis Ormandy out: 2994462e635eSTavis Ormandy kmem_cache_free(vm_area_cachep, vma); 29953935ed6aSStefani Seibold return ERR_PTR(ret); 29963935ed6aSStefani Seibold } 29973935ed6aSStefani Seibold 2998a62c34bdSAndy Lutomirski /* 2999a62c34bdSAndy Lutomirski * Called with mm->mmap_sem held for writing. 3000a62c34bdSAndy Lutomirski * Insert a new vma covering the given region, with the given flags. 3001a62c34bdSAndy Lutomirski * Its pages are supplied by the given array of struct page *. 3002a62c34bdSAndy Lutomirski * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated. 3003a62c34bdSAndy Lutomirski * The region past the last page supplied will always produce SIGBUS. 3004a62c34bdSAndy Lutomirski * The array pointer and the pages it points to are assumed to stay alive 3005a62c34bdSAndy Lutomirski * for as long as this mapping might exist. 3006a62c34bdSAndy Lutomirski */ 3007a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping( 3008a62c34bdSAndy Lutomirski struct mm_struct *mm, 3009a62c34bdSAndy Lutomirski unsigned long addr, unsigned long len, 3010a62c34bdSAndy Lutomirski unsigned long vm_flags, const struct vm_special_mapping *spec) 3011a62c34bdSAndy Lutomirski { 3012a62c34bdSAndy Lutomirski return __install_special_mapping(mm, addr, len, vm_flags, 3013a62c34bdSAndy Lutomirski &special_mapping_vmops, (void *)spec); 3014a62c34bdSAndy Lutomirski } 3015a62c34bdSAndy Lutomirski 30163935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm, 30173935ed6aSStefani Seibold unsigned long addr, unsigned long len, 30183935ed6aSStefani Seibold unsigned long vm_flags, struct page **pages) 30193935ed6aSStefani Seibold { 3020a62c34bdSAndy Lutomirski struct vm_area_struct *vma = __install_special_mapping( 3021a62c34bdSAndy Lutomirski mm, addr, len, vm_flags, &legacy_special_mapping_vmops, 3022a62c34bdSAndy Lutomirski (void *)pages); 30233935ed6aSStefani Seibold 302414bd5b45SDuan Jiong return PTR_ERR_OR_ZERO(vma); 3025fa5dc22fSRoland McGrath } 30267906d00cSAndrea Arcangeli 30277906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex); 30287906d00cSAndrea Arcangeli 3029454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma) 30307906d00cSAndrea Arcangeli { 3031bf181b9fSMichel Lespinasse if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 30327906d00cSAndrea Arcangeli /* 30337906d00cSAndrea Arcangeli * The LSB of head.next can't change from under us 30347906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 30357906d00cSAndrea Arcangeli */ 3036572043c9SJiri Kosina down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem); 30377906d00cSAndrea Arcangeli /* 30387906d00cSAndrea Arcangeli * We can safely modify head.next after taking the 30395a505085SIngo Molnar * anon_vma->root->rwsem. If some other vma in this mm shares 30407906d00cSAndrea Arcangeli * the same anon_vma we won't take it again. 30417906d00cSAndrea Arcangeli * 30427906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 30437906d00cSAndrea Arcangeli * can't change from under us thanks to the 30445a505085SIngo Molnar * anon_vma->root->rwsem. 30457906d00cSAndrea Arcangeli */ 30467906d00cSAndrea Arcangeli if (__test_and_set_bit(0, (unsigned long *) 3047bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 30487906d00cSAndrea Arcangeli BUG(); 30497906d00cSAndrea Arcangeli } 30507906d00cSAndrea Arcangeli } 30517906d00cSAndrea Arcangeli 3052454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping) 30537906d00cSAndrea Arcangeli { 30547906d00cSAndrea Arcangeli if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 30557906d00cSAndrea Arcangeli /* 30567906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change from under us because 30577906d00cSAndrea Arcangeli * we hold the mm_all_locks_mutex. 30587906d00cSAndrea Arcangeli * 30597906d00cSAndrea Arcangeli * Operations on ->flags have to be atomic because 30607906d00cSAndrea Arcangeli * even if AS_MM_ALL_LOCKS is stable thanks to the 30617906d00cSAndrea Arcangeli * mm_all_locks_mutex, there may be other cpus 30627906d00cSAndrea Arcangeli * changing other bitflags in parallel to us. 30637906d00cSAndrea Arcangeli */ 30647906d00cSAndrea Arcangeli if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags)) 30657906d00cSAndrea Arcangeli BUG(); 30663d48ae45SPeter Zijlstra mutex_lock_nest_lock(&mapping->i_mmap_mutex, &mm->mmap_sem); 30677906d00cSAndrea Arcangeli } 30687906d00cSAndrea Arcangeli } 30697906d00cSAndrea Arcangeli 30707906d00cSAndrea Arcangeli /* 30717906d00cSAndrea Arcangeli * This operation locks against the VM for all pte/vma/mm related 30727906d00cSAndrea Arcangeli * operations that could ever happen on a certain mm. This includes 30737906d00cSAndrea Arcangeli * vmtruncate, try_to_unmap, and all page faults. 30747906d00cSAndrea Arcangeli * 30757906d00cSAndrea Arcangeli * The caller must take the mmap_sem in write mode before calling 30767906d00cSAndrea Arcangeli * mm_take_all_locks(). The caller isn't allowed to release the 30777906d00cSAndrea Arcangeli * mmap_sem until mm_drop_all_locks() returns. 30787906d00cSAndrea Arcangeli * 30797906d00cSAndrea Arcangeli * mmap_sem in write mode is required in order to block all operations 30807906d00cSAndrea Arcangeli * that could modify pagetables and free pages without need of 30817906d00cSAndrea Arcangeli * altering the vma layout (for example populate_range() with 30827906d00cSAndrea Arcangeli * nonlinear vmas). It's also needed in write mode to avoid new 30837906d00cSAndrea Arcangeli * anon_vmas to be associated with existing vmas. 30847906d00cSAndrea Arcangeli * 30857906d00cSAndrea Arcangeli * A single task can't take more than one mm_take_all_locks() in a row 30867906d00cSAndrea Arcangeli * or it would deadlock. 30877906d00cSAndrea Arcangeli * 3088bf181b9fSMichel Lespinasse * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in 30897906d00cSAndrea Arcangeli * mapping->flags avoid to take the same lock twice, if more than one 30907906d00cSAndrea Arcangeli * vma in this mm is backed by the same anon_vma or address_space. 30917906d00cSAndrea Arcangeli * 30927906d00cSAndrea Arcangeli * We can take all the locks in random order because the VM code 3093631b0cfdSYuanhan Liu * taking i_mmap_mutex or anon_vma->rwsem outside the mmap_sem never 30947906d00cSAndrea Arcangeli * takes more than one of them in a row. Secondly we're protected 30957906d00cSAndrea Arcangeli * against a concurrent mm_take_all_locks() by the mm_all_locks_mutex. 30967906d00cSAndrea Arcangeli * 30977906d00cSAndrea Arcangeli * mm_take_all_locks() and mm_drop_all_locks are expensive operations 30987906d00cSAndrea Arcangeli * that may have to take thousand of locks. 30997906d00cSAndrea Arcangeli * 31007906d00cSAndrea Arcangeli * mm_take_all_locks() can fail if it's interrupted by signals. 31017906d00cSAndrea Arcangeli */ 31027906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm) 31037906d00cSAndrea Arcangeli { 31047906d00cSAndrea Arcangeli struct vm_area_struct *vma; 31055beb4930SRik van Riel struct anon_vma_chain *avc; 31067906d00cSAndrea Arcangeli 31077906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 31087906d00cSAndrea Arcangeli 31097906d00cSAndrea Arcangeli mutex_lock(&mm_all_locks_mutex); 31107906d00cSAndrea Arcangeli 31117906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 31127906d00cSAndrea Arcangeli if (signal_pending(current)) 31137906d00cSAndrea Arcangeli goto out_unlock; 31147906d00cSAndrea Arcangeli if (vma->vm_file && vma->vm_file->f_mapping) 3115454ed842SPeter Zijlstra vm_lock_mapping(mm, vma->vm_file->f_mapping); 31167906d00cSAndrea Arcangeli } 31177cd5a02fSPeter Zijlstra 31187cd5a02fSPeter Zijlstra for (vma = mm->mmap; vma; vma = vma->vm_next) { 31197cd5a02fSPeter Zijlstra if (signal_pending(current)) 31207cd5a02fSPeter Zijlstra goto out_unlock; 31217cd5a02fSPeter Zijlstra if (vma->anon_vma) 31225beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 31235beb4930SRik van Riel vm_lock_anon_vma(mm, avc->anon_vma); 31247cd5a02fSPeter Zijlstra } 31257cd5a02fSPeter Zijlstra 3126584cff54SKautuk Consul return 0; 31277906d00cSAndrea Arcangeli 31287906d00cSAndrea Arcangeli out_unlock: 31297906d00cSAndrea Arcangeli mm_drop_all_locks(mm); 3130584cff54SKautuk Consul return -EINTR; 31317906d00cSAndrea Arcangeli } 31327906d00cSAndrea Arcangeli 31337906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma) 31347906d00cSAndrea Arcangeli { 3135bf181b9fSMichel Lespinasse if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 31367906d00cSAndrea Arcangeli /* 31377906d00cSAndrea Arcangeli * The LSB of head.next can't change to 0 from under 31387906d00cSAndrea Arcangeli * us because we hold the mm_all_locks_mutex. 31397906d00cSAndrea Arcangeli * 31407906d00cSAndrea Arcangeli * We must however clear the bitflag before unlocking 3141bf181b9fSMichel Lespinasse * the vma so the users using the anon_vma->rb_root will 31427906d00cSAndrea Arcangeli * never see our bitflag. 31437906d00cSAndrea Arcangeli * 31447906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 31457906d00cSAndrea Arcangeli * can't change from under us until we release the 31465a505085SIngo Molnar * anon_vma->root->rwsem. 31477906d00cSAndrea Arcangeli */ 31487906d00cSAndrea Arcangeli if (!__test_and_clear_bit(0, (unsigned long *) 3149bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 31507906d00cSAndrea Arcangeli BUG(); 315108b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 31527906d00cSAndrea Arcangeli } 31537906d00cSAndrea Arcangeli } 31547906d00cSAndrea Arcangeli 31557906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping) 31567906d00cSAndrea Arcangeli { 31577906d00cSAndrea Arcangeli if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 31587906d00cSAndrea Arcangeli /* 31597906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change to 0 from under us 31607906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 31617906d00cSAndrea Arcangeli */ 31623d48ae45SPeter Zijlstra mutex_unlock(&mapping->i_mmap_mutex); 31637906d00cSAndrea Arcangeli if (!test_and_clear_bit(AS_MM_ALL_LOCKS, 31647906d00cSAndrea Arcangeli &mapping->flags)) 31657906d00cSAndrea Arcangeli BUG(); 31667906d00cSAndrea Arcangeli } 31677906d00cSAndrea Arcangeli } 31687906d00cSAndrea Arcangeli 31697906d00cSAndrea Arcangeli /* 31707906d00cSAndrea Arcangeli * The mmap_sem cannot be released by the caller until 31717906d00cSAndrea Arcangeli * mm_drop_all_locks() returns. 31727906d00cSAndrea Arcangeli */ 31737906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm) 31747906d00cSAndrea Arcangeli { 31757906d00cSAndrea Arcangeli struct vm_area_struct *vma; 31765beb4930SRik van Riel struct anon_vma_chain *avc; 31777906d00cSAndrea Arcangeli 31787906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 31797906d00cSAndrea Arcangeli BUG_ON(!mutex_is_locked(&mm_all_locks_mutex)); 31807906d00cSAndrea Arcangeli 31817906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 31827906d00cSAndrea Arcangeli if (vma->anon_vma) 31835beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 31845beb4930SRik van Riel vm_unlock_anon_vma(avc->anon_vma); 31857906d00cSAndrea Arcangeli if (vma->vm_file && vma->vm_file->f_mapping) 31867906d00cSAndrea Arcangeli vm_unlock_mapping(vma->vm_file->f_mapping); 31877906d00cSAndrea Arcangeli } 31887906d00cSAndrea Arcangeli 31897906d00cSAndrea Arcangeli mutex_unlock(&mm_all_locks_mutex); 31907906d00cSAndrea Arcangeli } 31918feae131SDavid Howells 31928feae131SDavid Howells /* 31938feae131SDavid Howells * initialise the VMA slab 31948feae131SDavid Howells */ 31958feae131SDavid Howells void __init mmap_init(void) 31968feae131SDavid Howells { 319700a62ce9SKOSAKI Motohiro int ret; 319800a62ce9SKOSAKI Motohiro 319900a62ce9SKOSAKI Motohiro ret = percpu_counter_init(&vm_committed_as, 0); 320000a62ce9SKOSAKI Motohiro VM_BUG_ON(ret); 32018feae131SDavid Howells } 3202c9b1d098SAndrew Shewmaker 3203c9b1d098SAndrew Shewmaker /* 3204c9b1d098SAndrew Shewmaker * Initialise sysctl_user_reserve_kbytes. 3205c9b1d098SAndrew Shewmaker * 3206c9b1d098SAndrew Shewmaker * This is intended to prevent a user from starting a single memory hogging 3207c9b1d098SAndrew Shewmaker * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER 3208c9b1d098SAndrew Shewmaker * mode. 3209c9b1d098SAndrew Shewmaker * 3210c9b1d098SAndrew Shewmaker * The default value is min(3% of free memory, 128MB) 3211c9b1d098SAndrew Shewmaker * 128MB is enough to recover with sshd/login, bash, and top/kill. 3212c9b1d098SAndrew Shewmaker */ 32131640879aSAndrew Shewmaker static int init_user_reserve(void) 3214c9b1d098SAndrew Shewmaker { 3215c9b1d098SAndrew Shewmaker unsigned long free_kbytes; 3216c9b1d098SAndrew Shewmaker 3217c9b1d098SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 3218c9b1d098SAndrew Shewmaker 3219c9b1d098SAndrew Shewmaker sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17); 3220c9b1d098SAndrew Shewmaker return 0; 3221c9b1d098SAndrew Shewmaker } 3222a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve); 32234eeab4f5SAndrew Shewmaker 32244eeab4f5SAndrew Shewmaker /* 32254eeab4f5SAndrew Shewmaker * Initialise sysctl_admin_reserve_kbytes. 32264eeab4f5SAndrew Shewmaker * 32274eeab4f5SAndrew Shewmaker * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin 32284eeab4f5SAndrew Shewmaker * to log in and kill a memory hogging process. 32294eeab4f5SAndrew Shewmaker * 32304eeab4f5SAndrew Shewmaker * Systems with more than 256MB will reserve 8MB, enough to recover 32314eeab4f5SAndrew Shewmaker * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will 32324eeab4f5SAndrew Shewmaker * only reserve 3% of free pages by default. 32334eeab4f5SAndrew Shewmaker */ 32341640879aSAndrew Shewmaker static int init_admin_reserve(void) 32354eeab4f5SAndrew Shewmaker { 32364eeab4f5SAndrew Shewmaker unsigned long free_kbytes; 32374eeab4f5SAndrew Shewmaker 32384eeab4f5SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 32394eeab4f5SAndrew Shewmaker 32404eeab4f5SAndrew Shewmaker sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13); 32414eeab4f5SAndrew Shewmaker return 0; 32424eeab4f5SAndrew Shewmaker } 3243a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve); 32441640879aSAndrew Shewmaker 32451640879aSAndrew Shewmaker /* 32461640879aSAndrew Shewmaker * Reinititalise user and admin reserves if memory is added or removed. 32471640879aSAndrew Shewmaker * 32481640879aSAndrew Shewmaker * The default user reserve max is 128MB, and the default max for the 32491640879aSAndrew Shewmaker * admin reserve is 8MB. These are usually, but not always, enough to 32501640879aSAndrew Shewmaker * enable recovery from a memory hogging process using login/sshd, a shell, 32511640879aSAndrew Shewmaker * and tools like top. It may make sense to increase or even disable the 32521640879aSAndrew Shewmaker * reserve depending on the existence of swap or variations in the recovery 32531640879aSAndrew Shewmaker * tools. So, the admin may have changed them. 32541640879aSAndrew Shewmaker * 32551640879aSAndrew Shewmaker * If memory is added and the reserves have been eliminated or increased above 32561640879aSAndrew Shewmaker * the default max, then we'll trust the admin. 32571640879aSAndrew Shewmaker * 32581640879aSAndrew Shewmaker * If memory is removed and there isn't enough free memory, then we 32591640879aSAndrew Shewmaker * need to reset the reserves. 32601640879aSAndrew Shewmaker * 32611640879aSAndrew Shewmaker * Otherwise keep the reserve set by the admin. 32621640879aSAndrew Shewmaker */ 32631640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb, 32641640879aSAndrew Shewmaker unsigned long action, void *data) 32651640879aSAndrew Shewmaker { 32661640879aSAndrew Shewmaker unsigned long tmp, free_kbytes; 32671640879aSAndrew Shewmaker 32681640879aSAndrew Shewmaker switch (action) { 32691640879aSAndrew Shewmaker case MEM_ONLINE: 32701640879aSAndrew Shewmaker /* Default max is 128MB. Leave alone if modified by operator. */ 32711640879aSAndrew Shewmaker tmp = sysctl_user_reserve_kbytes; 32721640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 17)) 32731640879aSAndrew Shewmaker init_user_reserve(); 32741640879aSAndrew Shewmaker 32751640879aSAndrew Shewmaker /* Default max is 8MB. Leave alone if modified by operator. */ 32761640879aSAndrew Shewmaker tmp = sysctl_admin_reserve_kbytes; 32771640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 13)) 32781640879aSAndrew Shewmaker init_admin_reserve(); 32791640879aSAndrew Shewmaker 32801640879aSAndrew Shewmaker break; 32811640879aSAndrew Shewmaker case MEM_OFFLINE: 32821640879aSAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 32831640879aSAndrew Shewmaker 32841640879aSAndrew Shewmaker if (sysctl_user_reserve_kbytes > free_kbytes) { 32851640879aSAndrew Shewmaker init_user_reserve(); 32861640879aSAndrew Shewmaker pr_info("vm.user_reserve_kbytes reset to %lu\n", 32871640879aSAndrew Shewmaker sysctl_user_reserve_kbytes); 32881640879aSAndrew Shewmaker } 32891640879aSAndrew Shewmaker 32901640879aSAndrew Shewmaker if (sysctl_admin_reserve_kbytes > free_kbytes) { 32911640879aSAndrew Shewmaker init_admin_reserve(); 32921640879aSAndrew Shewmaker pr_info("vm.admin_reserve_kbytes reset to %lu\n", 32931640879aSAndrew Shewmaker sysctl_admin_reserve_kbytes); 32941640879aSAndrew Shewmaker } 32951640879aSAndrew Shewmaker break; 32961640879aSAndrew Shewmaker default: 32971640879aSAndrew Shewmaker break; 32981640879aSAndrew Shewmaker } 32991640879aSAndrew Shewmaker return NOTIFY_OK; 33001640879aSAndrew Shewmaker } 33011640879aSAndrew Shewmaker 33021640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = { 33031640879aSAndrew Shewmaker .notifier_call = reserve_mem_notifier, 33041640879aSAndrew Shewmaker }; 33051640879aSAndrew Shewmaker 33061640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void) 33071640879aSAndrew Shewmaker { 33081640879aSAndrew Shewmaker if (register_hotmemory_notifier(&reserve_mem_nb)) 3309b1de0d13SMitchel Humpherys pr_err("Failed registering memory add/remove notifier for admin reserve\n"); 33101640879aSAndrew Shewmaker 33111640879aSAndrew Shewmaker return 0; 33121640879aSAndrew Shewmaker } 3313a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier); 3314