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> 4419a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h> 45d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h> 461da177e4SLinus Torvalds 471da177e4SLinus Torvalds #include <asm/uaccess.h> 481da177e4SLinus Torvalds #include <asm/cacheflush.h> 491da177e4SLinus Torvalds #include <asm/tlb.h> 50d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h> 511da177e4SLinus Torvalds 5242b77728SJan Beulich #include "internal.h" 5342b77728SJan Beulich 543a459756SKirill Korotaev #ifndef arch_mmap_check 553a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags) (0) 563a459756SKirill Korotaev #endif 573a459756SKirill Korotaev 5808e7d9b5SMartin Schwidefsky #ifndef arch_rebalance_pgtables 5908e7d9b5SMartin Schwidefsky #define arch_rebalance_pgtables(addr, len) (addr) 6008e7d9b5SMartin Schwidefsky #endif 6108e7d9b5SMartin Schwidefsky 62d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS 63d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN; 64d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX; 65d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS; 66d07e2259SDaniel Cashman #endif 67d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS 68d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN; 69d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX; 70d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS; 71d07e2259SDaniel Cashman #endif 72d07e2259SDaniel Cashman 73d977d56cSKonstantin Khlebnikov static bool ignore_rlimit_data = true; 74d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644); 75d07e2259SDaniel Cashman 76e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm, 77e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 78e0da382cSHugh Dickins unsigned long start, unsigned long end); 79e0da382cSHugh Dickins 801da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation. 811da177e4SLinus Torvalds * this is due to the limited x86 page protection hardware. The expected 821da177e4SLinus Torvalds * behavior is in parens: 831da177e4SLinus Torvalds * 841da177e4SLinus Torvalds * map_type prot 851da177e4SLinus Torvalds * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC 861da177e4SLinus Torvalds * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes 871da177e4SLinus Torvalds * w: (no) no w: (no) no w: (yes) yes w: (no) no 881da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 891da177e4SLinus Torvalds * 901da177e4SLinus Torvalds * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes 911da177e4SLinus Torvalds * w: (no) no w: (no) no w: (copy) copy w: (no) no 921da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 931da177e4SLinus Torvalds * 941da177e4SLinus Torvalds */ 951da177e4SLinus Torvalds pgprot_t protection_map[16] = { 961da177e4SLinus Torvalds __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111, 971da177e4SLinus Torvalds __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111 981da177e4SLinus Torvalds }; 991da177e4SLinus Torvalds 100804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags) 101804af2cfSHugh Dickins { 102b845f313SDave Kleikamp return __pgprot(pgprot_val(protection_map[vm_flags & 103b845f313SDave Kleikamp (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) | 104b845f313SDave Kleikamp pgprot_val(arch_vm_get_page_prot(vm_flags))); 105804af2cfSHugh Dickins } 106804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot); 107804af2cfSHugh Dickins 10864e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags) 10964e45507SPeter Feiner { 11064e45507SPeter Feiner return pgprot_modify(oldprot, vm_get_page_prot(vm_flags)); 11164e45507SPeter Feiner } 11264e45507SPeter Feiner 11364e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */ 11464e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma) 11564e45507SPeter Feiner { 11664e45507SPeter Feiner unsigned long vm_flags = vma->vm_flags; 11764e45507SPeter Feiner 11864e45507SPeter Feiner vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags); 11964e45507SPeter Feiner if (vma_wants_writenotify(vma)) { 12064e45507SPeter Feiner vm_flags &= ~VM_SHARED; 12164e45507SPeter Feiner vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, 12264e45507SPeter Feiner vm_flags); 12364e45507SPeter Feiner } 12464e45507SPeter Feiner } 12564e45507SPeter Feiner 12664e45507SPeter Feiner 12734679d7eSShaohua Li int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS; /* heuristic overcommit */ 12834679d7eSShaohua Li int sysctl_overcommit_ratio __read_mostly = 50; /* default is 50% */ 12949f0ce5fSJerome Marchand unsigned long sysctl_overcommit_kbytes __read_mostly; 130c3d8c141SChristoph Lameter int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT; 131c9b1d098SAndrew Shewmaker unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */ 1324eeab4f5SAndrew Shewmaker unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */ 13334679d7eSShaohua Li /* 13434679d7eSShaohua Li * Make sure vm_committed_as in one cacheline and not cacheline shared with 13534679d7eSShaohua Li * other variables. It can be updated by several CPUs frequently. 13634679d7eSShaohua Li */ 13734679d7eSShaohua Li struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp; 1381da177e4SLinus Torvalds 1391da177e4SLinus Torvalds /* 140997071bcSK. Y. Srinivasan * The global memory commitment made in the system can be a metric 141997071bcSK. Y. Srinivasan * that can be used to drive ballooning decisions when Linux is hosted 142997071bcSK. Y. Srinivasan * as a guest. On Hyper-V, the host implements a policy engine for dynamically 143997071bcSK. Y. Srinivasan * balancing memory across competing virtual machines that are hosted. 144997071bcSK. Y. Srinivasan * Several metrics drive this policy engine including the guest reported 145997071bcSK. Y. Srinivasan * memory commitment. 146997071bcSK. Y. Srinivasan */ 147997071bcSK. Y. Srinivasan unsigned long vm_memory_committed(void) 148997071bcSK. Y. Srinivasan { 149997071bcSK. Y. Srinivasan return percpu_counter_read_positive(&vm_committed_as); 150997071bcSK. Y. Srinivasan } 151997071bcSK. Y. Srinivasan EXPORT_SYMBOL_GPL(vm_memory_committed); 152997071bcSK. Y. Srinivasan 153997071bcSK. Y. Srinivasan /* 1541da177e4SLinus Torvalds * Check that a process has enough memory to allocate a new virtual 1551da177e4SLinus Torvalds * mapping. 0 means there is enough memory for the allocation to 1561da177e4SLinus Torvalds * succeed and -ENOMEM implies there is not. 1571da177e4SLinus Torvalds * 1581da177e4SLinus Torvalds * We currently support three overcommit policies, which are set via the 1591da177e4SLinus Torvalds * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting 1601da177e4SLinus Torvalds * 1611da177e4SLinus Torvalds * Strict overcommit modes added 2002 Feb 26 by Alan Cox. 1621da177e4SLinus Torvalds * Additional code 2002 Jul 20 by Robert Love. 1631da177e4SLinus Torvalds * 1641da177e4SLinus Torvalds * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise. 1651da177e4SLinus Torvalds * 1661da177e4SLinus Torvalds * Note this is a helper function intended to be used by LSMs which 1671da177e4SLinus Torvalds * wish to use this logic. 1681da177e4SLinus Torvalds */ 16934b4e4aaSAlan Cox int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin) 1701da177e4SLinus Torvalds { 1715703b087SRoman Gushchin long free, allowed, reserve; 1721da177e4SLinus Torvalds 17382f71ae4SKonstantin Khlebnikov VM_WARN_ONCE(percpu_counter_read(&vm_committed_as) < 17482f71ae4SKonstantin Khlebnikov -(s64)vm_committed_as_batch * num_online_cpus(), 17582f71ae4SKonstantin Khlebnikov "memory commitment underflow"); 17682f71ae4SKonstantin Khlebnikov 1771da177e4SLinus Torvalds vm_acct_memory(pages); 1781da177e4SLinus Torvalds 1791da177e4SLinus Torvalds /* 1801da177e4SLinus Torvalds * Sometimes we want to use more memory than we have 1811da177e4SLinus Torvalds */ 1821da177e4SLinus Torvalds if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS) 1831da177e4SLinus Torvalds return 0; 1841da177e4SLinus Torvalds 1851da177e4SLinus Torvalds if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) { 186c15bef30SDmitry Fink free = global_page_state(NR_FREE_PAGES); 187c15bef30SDmitry Fink free += global_page_state(NR_FILE_PAGES); 1881da177e4SLinus Torvalds 189c15bef30SDmitry Fink /* 190c15bef30SDmitry Fink * shmem pages shouldn't be counted as free in this 191c15bef30SDmitry Fink * case, they can't be purged, only swapped out, and 192c15bef30SDmitry Fink * that won't affect the overall amount of available 193c15bef30SDmitry Fink * memory in the system. 194c15bef30SDmitry Fink */ 195c15bef30SDmitry Fink free -= global_page_state(NR_SHMEM); 196c15bef30SDmitry Fink 197ec8acf20SShaohua Li free += get_nr_swap_pages(); 1981da177e4SLinus Torvalds 1991da177e4SLinus Torvalds /* 2001da177e4SLinus Torvalds * Any slabs which are created with the 2011da177e4SLinus Torvalds * SLAB_RECLAIM_ACCOUNT flag claim to have contents 2021da177e4SLinus Torvalds * which are reclaimable, under pressure. The dentry 2031da177e4SLinus Torvalds * cache and most inode caches should fall into this 2041da177e4SLinus Torvalds */ 205972d1a7bSChristoph Lameter free += global_page_state(NR_SLAB_RECLAIMABLE); 2061da177e4SLinus Torvalds 2071da177e4SLinus Torvalds /* 208c15bef30SDmitry Fink * Leave reserved pages. The pages are not for anonymous pages. 209c15bef30SDmitry Fink */ 210c15bef30SDmitry Fink if (free <= totalreserve_pages) 211c15bef30SDmitry Fink goto error; 212c15bef30SDmitry Fink else 213c15bef30SDmitry Fink free -= totalreserve_pages; 214c15bef30SDmitry Fink 215c15bef30SDmitry Fink /* 2164eeab4f5SAndrew Shewmaker * Reserve some for root 2171da177e4SLinus Torvalds */ 2181da177e4SLinus Torvalds if (!cap_sys_admin) 2194eeab4f5SAndrew Shewmaker free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10); 2201da177e4SLinus Torvalds 2211da177e4SLinus Torvalds if (free > pages) 2221da177e4SLinus Torvalds return 0; 2231da177e4SLinus Torvalds 2246d9f7839SHideo AOKI goto error; 2251da177e4SLinus Torvalds } 2261da177e4SLinus Torvalds 22700619bccSJerome Marchand allowed = vm_commit_limit(); 2281da177e4SLinus Torvalds /* 2294eeab4f5SAndrew Shewmaker * Reserve some for root 2301da177e4SLinus Torvalds */ 2311da177e4SLinus Torvalds if (!cap_sys_admin) 2324eeab4f5SAndrew Shewmaker allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10); 2331da177e4SLinus Torvalds 234c9b1d098SAndrew Shewmaker /* 235c9b1d098SAndrew Shewmaker * Don't let a single process grow so big a user can't recover 236c9b1d098SAndrew Shewmaker */ 237c9b1d098SAndrew Shewmaker if (mm) { 238c9b1d098SAndrew Shewmaker reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10); 2395703b087SRoman Gushchin allowed -= min_t(long, mm->total_vm / 32, reserve); 240c9b1d098SAndrew Shewmaker } 2411da177e4SLinus Torvalds 24200a62ce9SKOSAKI Motohiro if (percpu_counter_read_positive(&vm_committed_as) < allowed) 2431da177e4SLinus Torvalds return 0; 2446d9f7839SHideo AOKI error: 2451da177e4SLinus Torvalds vm_unacct_memory(pages); 2461da177e4SLinus Torvalds 2471da177e4SLinus Torvalds return -ENOMEM; 2481da177e4SLinus Torvalds } 2491da177e4SLinus Torvalds 2501da177e4SLinus Torvalds /* 251c8c06efaSDavidlohr Bueso * Requires inode->i_mapping->i_mmap_rwsem 2521da177e4SLinus Torvalds */ 2531da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma, 2541da177e4SLinus Torvalds struct file *file, struct address_space *mapping) 2551da177e4SLinus Torvalds { 2561da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 257496ad9aaSAl Viro atomic_inc(&file_inode(file)->i_writecount); 2581da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 2594bb5f5d9SDavid Herrmann mapping_unmap_writable(mapping); 2601da177e4SLinus Torvalds 2611da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 2626b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, &mapping->i_mmap); 2631da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 2641da177e4SLinus Torvalds } 2651da177e4SLinus Torvalds 2661da177e4SLinus Torvalds /* 2676b2dbba8SMichel Lespinasse * Unlink a file-based vm structure from its interval tree, to hide 268a8fb5618SHugh Dickins * vma from rmap and vmtruncate before freeing its page tables. 2691da177e4SLinus Torvalds */ 270a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma) 2711da177e4SLinus Torvalds { 2721da177e4SLinus Torvalds struct file *file = vma->vm_file; 2731da177e4SLinus Torvalds 2741da177e4SLinus Torvalds if (file) { 2751da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 27683cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 2771da177e4SLinus Torvalds __remove_shared_vm_struct(vma, file, mapping); 27883cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 2791da177e4SLinus Torvalds } 280a8fb5618SHugh Dickins } 281a8fb5618SHugh Dickins 282a8fb5618SHugh Dickins /* 283a8fb5618SHugh Dickins * Close a vm structure and free it, returning the next. 284a8fb5618SHugh Dickins */ 285a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma) 286a8fb5618SHugh Dickins { 287a8fb5618SHugh Dickins struct vm_area_struct *next = vma->vm_next; 288a8fb5618SHugh Dickins 289a8fb5618SHugh Dickins might_sleep(); 2901da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 2911da177e4SLinus Torvalds vma->vm_ops->close(vma); 292e9714acfSKonstantin Khlebnikov if (vma->vm_file) 293a8fb5618SHugh Dickins fput(vma->vm_file); 294f0be3d32SLee Schermerhorn mpol_put(vma_policy(vma)); 2951da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 296a8fb5618SHugh Dickins return next; 2971da177e4SLinus Torvalds } 2981da177e4SLinus Torvalds 299e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len); 300e4eb1ff6SLinus Torvalds 3016a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk) 3021da177e4SLinus Torvalds { 3038764b338SCyrill Gorcunov unsigned long retval; 3041da177e4SLinus Torvalds unsigned long newbrk, oldbrk; 3051da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 306a5b4592cSJiri Kosina unsigned long min_brk; 307128557ffSMichel Lespinasse bool populate; 3081da177e4SLinus Torvalds 3091da177e4SLinus Torvalds down_write(&mm->mmap_sem); 3101da177e4SLinus Torvalds 311a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK 3125520e894SJiri Kosina /* 3135520e894SJiri Kosina * CONFIG_COMPAT_BRK can still be overridden by setting 3145520e894SJiri Kosina * randomize_va_space to 2, which will still cause mm->start_brk 3155520e894SJiri Kosina * to be arbitrarily shifted 3165520e894SJiri Kosina */ 3174471a675SJiri Kosina if (current->brk_randomized) 3185520e894SJiri Kosina min_brk = mm->start_brk; 3195520e894SJiri Kosina else 3205520e894SJiri Kosina min_brk = mm->end_data; 321a5b4592cSJiri Kosina #else 322a5b4592cSJiri Kosina min_brk = mm->start_brk; 323a5b4592cSJiri Kosina #endif 324a5b4592cSJiri Kosina if (brk < min_brk) 3251da177e4SLinus Torvalds goto out; 3261e624196SRam Gupta 3271e624196SRam Gupta /* 3281e624196SRam Gupta * Check against rlimit here. If this check is done later after the test 3291e624196SRam Gupta * of oldbrk with newbrk then it can escape the test and let the data 3301e624196SRam Gupta * segment grow beyond its set limit the in case where the limit is 3311e624196SRam Gupta * not page aligned -Ram Gupta 3321e624196SRam Gupta */ 3338764b338SCyrill Gorcunov if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk, 3348764b338SCyrill Gorcunov mm->end_data, mm->start_data)) 3351e624196SRam Gupta goto out; 3361e624196SRam Gupta 3371da177e4SLinus Torvalds newbrk = PAGE_ALIGN(brk); 3381da177e4SLinus Torvalds oldbrk = PAGE_ALIGN(mm->brk); 3391da177e4SLinus Torvalds if (oldbrk == newbrk) 3401da177e4SLinus Torvalds goto set_brk; 3411da177e4SLinus Torvalds 3421da177e4SLinus Torvalds /* Always allow shrinking brk. */ 3431da177e4SLinus Torvalds if (brk <= mm->brk) { 3441da177e4SLinus Torvalds if (!do_munmap(mm, newbrk, oldbrk-newbrk)) 3451da177e4SLinus Torvalds goto set_brk; 3461da177e4SLinus Torvalds goto out; 3471da177e4SLinus Torvalds } 3481da177e4SLinus Torvalds 3491da177e4SLinus Torvalds /* Check against existing mmap mappings. */ 3501da177e4SLinus Torvalds if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE)) 3511da177e4SLinus Torvalds goto out; 3521da177e4SLinus Torvalds 3531da177e4SLinus Torvalds /* Ok, looks good - let it rip. */ 3541da177e4SLinus Torvalds if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk) 3551da177e4SLinus Torvalds goto out; 356128557ffSMichel Lespinasse 3571da177e4SLinus Torvalds set_brk: 3581da177e4SLinus Torvalds mm->brk = brk; 359128557ffSMichel Lespinasse populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0; 360128557ffSMichel Lespinasse up_write(&mm->mmap_sem); 361128557ffSMichel Lespinasse if (populate) 362128557ffSMichel Lespinasse mm_populate(oldbrk, newbrk - oldbrk); 363128557ffSMichel Lespinasse return brk; 364128557ffSMichel Lespinasse 3651da177e4SLinus Torvalds out: 3661da177e4SLinus Torvalds retval = mm->brk; 3671da177e4SLinus Torvalds up_write(&mm->mmap_sem); 3681da177e4SLinus Torvalds return retval; 3691da177e4SLinus Torvalds } 3701da177e4SLinus Torvalds 371d3737187SMichel Lespinasse static long vma_compute_subtree_gap(struct vm_area_struct *vma) 372d3737187SMichel Lespinasse { 373d3737187SMichel Lespinasse unsigned long max, subtree_gap; 374d3737187SMichel Lespinasse max = vma->vm_start; 375d3737187SMichel Lespinasse if (vma->vm_prev) 376d3737187SMichel Lespinasse max -= vma->vm_prev->vm_end; 377d3737187SMichel Lespinasse if (vma->vm_rb.rb_left) { 378d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_left, 379d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 380d3737187SMichel Lespinasse if (subtree_gap > max) 381d3737187SMichel Lespinasse max = subtree_gap; 382d3737187SMichel Lespinasse } 383d3737187SMichel Lespinasse if (vma->vm_rb.rb_right) { 384d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_right, 385d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 386d3737187SMichel Lespinasse if (subtree_gap > max) 387d3737187SMichel Lespinasse max = subtree_gap; 388d3737187SMichel Lespinasse } 389d3737187SMichel Lespinasse return max; 390d3737187SMichel Lespinasse } 391d3737187SMichel Lespinasse 392ed8ea815SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB 393acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm) 3941da177e4SLinus Torvalds { 395acf128d0SAndrea Arcangeli struct rb_root *root = &mm->mm_rb; 3965a0768f6SMichel Lespinasse int i = 0, j, bug = 0; 3971da177e4SLinus Torvalds struct rb_node *nd, *pn = NULL; 3981da177e4SLinus Torvalds unsigned long prev = 0, pend = 0; 3991da177e4SLinus Torvalds 4001da177e4SLinus Torvalds for (nd = rb_first(root); nd; nd = rb_next(nd)) { 4011da177e4SLinus Torvalds struct vm_area_struct *vma; 4021da177e4SLinus Torvalds vma = rb_entry(nd, struct vm_area_struct, vm_rb); 4035a0768f6SMichel Lespinasse if (vma->vm_start < prev) { 404ff26f70fSAndrew Morton pr_emerg("vm_start %lx < prev %lx\n", 405ff26f70fSAndrew Morton vma->vm_start, prev); 4065a0768f6SMichel Lespinasse bug = 1; 4075a0768f6SMichel Lespinasse } 4085a0768f6SMichel Lespinasse if (vma->vm_start < pend) { 409ff26f70fSAndrew Morton pr_emerg("vm_start %lx < pend %lx\n", 410ff26f70fSAndrew Morton vma->vm_start, pend); 4115a0768f6SMichel Lespinasse bug = 1; 4125a0768f6SMichel Lespinasse } 4135a0768f6SMichel Lespinasse if (vma->vm_start > vma->vm_end) { 414ff26f70fSAndrew Morton pr_emerg("vm_start %lx > vm_end %lx\n", 415ff26f70fSAndrew Morton vma->vm_start, vma->vm_end); 4165a0768f6SMichel Lespinasse bug = 1; 4175a0768f6SMichel Lespinasse } 418acf128d0SAndrea Arcangeli spin_lock(&mm->page_table_lock); 4195a0768f6SMichel Lespinasse if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) { 4208542bdfcSSasha Levin pr_emerg("free gap %lx, correct %lx\n", 4215a0768f6SMichel Lespinasse vma->rb_subtree_gap, 4225a0768f6SMichel Lespinasse vma_compute_subtree_gap(vma)); 4235a0768f6SMichel Lespinasse bug = 1; 4245a0768f6SMichel Lespinasse } 425acf128d0SAndrea Arcangeli spin_unlock(&mm->page_table_lock); 4261da177e4SLinus Torvalds i++; 4271da177e4SLinus Torvalds pn = nd; 428d1af65d1SDavid Miller prev = vma->vm_start; 429d1af65d1SDavid Miller pend = vma->vm_end; 4301da177e4SLinus Torvalds } 4311da177e4SLinus Torvalds j = 0; 4325a0768f6SMichel Lespinasse for (nd = pn; nd; nd = rb_prev(nd)) 4331da177e4SLinus Torvalds j++; 4345a0768f6SMichel Lespinasse if (i != j) { 4358542bdfcSSasha Levin pr_emerg("backwards %d, forwards %d\n", j, i); 4365a0768f6SMichel Lespinasse bug = 1; 4371da177e4SLinus Torvalds } 4385a0768f6SMichel Lespinasse return bug ? -1 : i; 4391da177e4SLinus Torvalds } 4401da177e4SLinus Torvalds 441d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore) 442d3737187SMichel Lespinasse { 443d3737187SMichel Lespinasse struct rb_node *nd; 444d3737187SMichel Lespinasse 445d3737187SMichel Lespinasse for (nd = rb_first(root); nd; nd = rb_next(nd)) { 446d3737187SMichel Lespinasse struct vm_area_struct *vma; 447d3737187SMichel Lespinasse vma = rb_entry(nd, struct vm_area_struct, vm_rb); 44896dad67fSSasha Levin VM_BUG_ON_VMA(vma != ignore && 44996dad67fSSasha Levin vma->rb_subtree_gap != vma_compute_subtree_gap(vma), 45096dad67fSSasha Levin vma); 451d3737187SMichel Lespinasse } 4521da177e4SLinus Torvalds } 4531da177e4SLinus Torvalds 454eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm) 4551da177e4SLinus Torvalds { 4561da177e4SLinus Torvalds int bug = 0; 4571da177e4SLinus Torvalds int i = 0; 4585a0768f6SMichel Lespinasse unsigned long highest_address = 0; 459ed8ea815SMichel Lespinasse struct vm_area_struct *vma = mm->mmap; 460ff26f70fSAndrew Morton 461ed8ea815SMichel Lespinasse while (vma) { 46212352d3cSKonstantin Khlebnikov struct anon_vma *anon_vma = vma->anon_vma; 463ed8ea815SMichel Lespinasse struct anon_vma_chain *avc; 464ff26f70fSAndrew Morton 46512352d3cSKonstantin Khlebnikov if (anon_vma) { 46612352d3cSKonstantin Khlebnikov anon_vma_lock_read(anon_vma); 467ed8ea815SMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 468ed8ea815SMichel Lespinasse anon_vma_interval_tree_verify(avc); 46912352d3cSKonstantin Khlebnikov anon_vma_unlock_read(anon_vma); 47012352d3cSKonstantin Khlebnikov } 47112352d3cSKonstantin Khlebnikov 4725a0768f6SMichel Lespinasse highest_address = vma->vm_end; 473ed8ea815SMichel Lespinasse vma = vma->vm_next; 4741da177e4SLinus Torvalds i++; 4751da177e4SLinus Torvalds } 4765a0768f6SMichel Lespinasse if (i != mm->map_count) { 4778542bdfcSSasha Levin pr_emerg("map_count %d vm_next %d\n", mm->map_count, i); 4785a0768f6SMichel Lespinasse bug = 1; 4795a0768f6SMichel Lespinasse } 4805a0768f6SMichel Lespinasse if (highest_address != mm->highest_vm_end) { 4818542bdfcSSasha Levin pr_emerg("mm->highest_vm_end %lx, found %lx\n", 4825a0768f6SMichel Lespinasse mm->highest_vm_end, highest_address); 4835a0768f6SMichel Lespinasse bug = 1; 4845a0768f6SMichel Lespinasse } 485acf128d0SAndrea Arcangeli i = browse_rb(mm); 4865a0768f6SMichel Lespinasse if (i != mm->map_count) { 487ff26f70fSAndrew Morton if (i != -1) 4888542bdfcSSasha Levin pr_emerg("map_count %d rb %d\n", mm->map_count, i); 4895a0768f6SMichel Lespinasse bug = 1; 4905a0768f6SMichel Lespinasse } 49196dad67fSSasha Levin VM_BUG_ON_MM(bug, mm); 4921da177e4SLinus Torvalds } 4931da177e4SLinus Torvalds #else 494d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0) 4951da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0) 4961da177e4SLinus Torvalds #endif 4971da177e4SLinus Torvalds 498d3737187SMichel Lespinasse RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb, 499d3737187SMichel Lespinasse unsigned long, rb_subtree_gap, vma_compute_subtree_gap) 500d3737187SMichel Lespinasse 501d3737187SMichel Lespinasse /* 502d3737187SMichel Lespinasse * Update augmented rbtree rb_subtree_gap values after vma->vm_start or 503d3737187SMichel Lespinasse * vma->vm_prev->vm_end values changed, without modifying the vma's position 504d3737187SMichel Lespinasse * in the rbtree. 505d3737187SMichel Lespinasse */ 506d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma) 507d3737187SMichel Lespinasse { 508d3737187SMichel Lespinasse /* 509d3737187SMichel Lespinasse * As it turns out, RB_DECLARE_CALLBACKS() already created a callback 510d3737187SMichel Lespinasse * function that does exacltly what we want. 511d3737187SMichel Lespinasse */ 512d3737187SMichel Lespinasse vma_gap_callbacks_propagate(&vma->vm_rb, NULL); 513d3737187SMichel Lespinasse } 514d3737187SMichel Lespinasse 515d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma, 516d3737187SMichel Lespinasse struct rb_root *root) 517d3737187SMichel Lespinasse { 518d3737187SMichel Lespinasse /* All rb_subtree_gap values must be consistent prior to insertion */ 519d3737187SMichel Lespinasse validate_mm_rb(root, NULL); 520d3737187SMichel Lespinasse 521d3737187SMichel Lespinasse rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 522d3737187SMichel Lespinasse } 523d3737187SMichel Lespinasse 524d3737187SMichel Lespinasse static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root) 525d3737187SMichel Lespinasse { 526d3737187SMichel Lespinasse /* 527d3737187SMichel Lespinasse * All rb_subtree_gap values must be consistent prior to erase, 528d3737187SMichel Lespinasse * with the possible exception of the vma being erased. 529d3737187SMichel Lespinasse */ 530d3737187SMichel Lespinasse validate_mm_rb(root, vma); 531d3737187SMichel Lespinasse 532d3737187SMichel Lespinasse /* 533d3737187SMichel Lespinasse * Note rb_erase_augmented is a fairly large inline function, 534d3737187SMichel Lespinasse * so make sure we instantiate it only once with our desired 535d3737187SMichel Lespinasse * augmented rbtree callbacks. 536d3737187SMichel Lespinasse */ 537d3737187SMichel Lespinasse rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 538d3737187SMichel Lespinasse } 539d3737187SMichel Lespinasse 540bf181b9fSMichel Lespinasse /* 541bf181b9fSMichel Lespinasse * vma has some anon_vma assigned, and is already inserted on that 542bf181b9fSMichel Lespinasse * anon_vma's interval trees. 543bf181b9fSMichel Lespinasse * 544bf181b9fSMichel Lespinasse * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the 545bf181b9fSMichel Lespinasse * vma must be removed from the anon_vma's interval trees using 546bf181b9fSMichel Lespinasse * anon_vma_interval_tree_pre_update_vma(). 547bf181b9fSMichel Lespinasse * 548bf181b9fSMichel Lespinasse * After the update, the vma will be reinserted using 549bf181b9fSMichel Lespinasse * anon_vma_interval_tree_post_update_vma(). 550bf181b9fSMichel Lespinasse * 551bf181b9fSMichel Lespinasse * The entire update must be protected by exclusive mmap_sem and by 552bf181b9fSMichel Lespinasse * the root anon_vma's mutex. 553bf181b9fSMichel Lespinasse */ 554bf181b9fSMichel Lespinasse static inline void 555bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma) 556bf181b9fSMichel Lespinasse { 557bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 558bf181b9fSMichel Lespinasse 559bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 560bf181b9fSMichel Lespinasse anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root); 561bf181b9fSMichel Lespinasse } 562bf181b9fSMichel Lespinasse 563bf181b9fSMichel Lespinasse static inline void 564bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma) 565bf181b9fSMichel Lespinasse { 566bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 567bf181b9fSMichel Lespinasse 568bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 569bf181b9fSMichel Lespinasse anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root); 570bf181b9fSMichel Lespinasse } 571bf181b9fSMichel Lespinasse 5726597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr, 5736597d783SHugh Dickins unsigned long end, struct vm_area_struct **pprev, 5746597d783SHugh Dickins struct rb_node ***rb_link, struct rb_node **rb_parent) 5751da177e4SLinus Torvalds { 5761da177e4SLinus Torvalds struct rb_node **__rb_link, *__rb_parent, *rb_prev; 5771da177e4SLinus Torvalds 5781da177e4SLinus Torvalds __rb_link = &mm->mm_rb.rb_node; 5791da177e4SLinus Torvalds rb_prev = __rb_parent = NULL; 5801da177e4SLinus Torvalds 5811da177e4SLinus Torvalds while (*__rb_link) { 5821da177e4SLinus Torvalds struct vm_area_struct *vma_tmp; 5831da177e4SLinus Torvalds 5841da177e4SLinus Torvalds __rb_parent = *__rb_link; 5851da177e4SLinus Torvalds vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb); 5861da177e4SLinus Torvalds 5871da177e4SLinus Torvalds if (vma_tmp->vm_end > addr) { 5886597d783SHugh Dickins /* Fail if an existing vma overlaps the area */ 5896597d783SHugh Dickins if (vma_tmp->vm_start < end) 5906597d783SHugh Dickins return -ENOMEM; 5911da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_left; 5921da177e4SLinus Torvalds } else { 5931da177e4SLinus Torvalds rb_prev = __rb_parent; 5941da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_right; 5951da177e4SLinus Torvalds } 5961da177e4SLinus Torvalds } 5971da177e4SLinus Torvalds 5981da177e4SLinus Torvalds *pprev = NULL; 5991da177e4SLinus Torvalds if (rb_prev) 6001da177e4SLinus Torvalds *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb); 6011da177e4SLinus Torvalds *rb_link = __rb_link; 6021da177e4SLinus Torvalds *rb_parent = __rb_parent; 6036597d783SHugh Dickins return 0; 6041da177e4SLinus Torvalds } 6051da177e4SLinus Torvalds 606e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm, 607e8420a8eSCyril Hrubis unsigned long addr, unsigned long end) 608e8420a8eSCyril Hrubis { 609e8420a8eSCyril Hrubis unsigned long nr_pages = 0; 610e8420a8eSCyril Hrubis struct vm_area_struct *vma; 611e8420a8eSCyril Hrubis 612e8420a8eSCyril Hrubis /* Find first overlaping mapping */ 613e8420a8eSCyril Hrubis vma = find_vma_intersection(mm, addr, end); 614e8420a8eSCyril Hrubis if (!vma) 615e8420a8eSCyril Hrubis return 0; 616e8420a8eSCyril Hrubis 617e8420a8eSCyril Hrubis nr_pages = (min(end, vma->vm_end) - 618e8420a8eSCyril Hrubis max(addr, vma->vm_start)) >> PAGE_SHIFT; 619e8420a8eSCyril Hrubis 620e8420a8eSCyril Hrubis /* Iterate over the rest of the overlaps */ 621e8420a8eSCyril Hrubis for (vma = vma->vm_next; vma; vma = vma->vm_next) { 622e8420a8eSCyril Hrubis unsigned long overlap_len; 623e8420a8eSCyril Hrubis 624e8420a8eSCyril Hrubis if (vma->vm_start > end) 625e8420a8eSCyril Hrubis break; 626e8420a8eSCyril Hrubis 627e8420a8eSCyril Hrubis overlap_len = min(end, vma->vm_end) - vma->vm_start; 628e8420a8eSCyril Hrubis nr_pages += overlap_len >> PAGE_SHIFT; 629e8420a8eSCyril Hrubis } 630e8420a8eSCyril Hrubis 631e8420a8eSCyril Hrubis return nr_pages; 632e8420a8eSCyril Hrubis } 633e8420a8eSCyril Hrubis 6341da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma, 6351da177e4SLinus Torvalds struct rb_node **rb_link, struct rb_node *rb_parent) 6361da177e4SLinus Torvalds { 637d3737187SMichel Lespinasse /* Update tracking information for the gap following the new vma. */ 638d3737187SMichel Lespinasse if (vma->vm_next) 639d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 640d3737187SMichel Lespinasse else 641d3737187SMichel Lespinasse mm->highest_vm_end = vma->vm_end; 642d3737187SMichel Lespinasse 643d3737187SMichel Lespinasse /* 644d3737187SMichel Lespinasse * vma->vm_prev wasn't known when we followed the rbtree to find the 645d3737187SMichel Lespinasse * correct insertion point for that vma. As a result, we could not 646d3737187SMichel Lespinasse * update the vma vm_rb parents rb_subtree_gap values on the way down. 647d3737187SMichel Lespinasse * So, we first insert the vma with a zero rb_subtree_gap value 648d3737187SMichel Lespinasse * (to be consistent with what we did on the way down), and then 649d3737187SMichel Lespinasse * immediately update the gap to the correct value. Finally we 650d3737187SMichel Lespinasse * rebalance the rbtree after all augmented values have been set. 651d3737187SMichel Lespinasse */ 6521da177e4SLinus Torvalds rb_link_node(&vma->vm_rb, rb_parent, rb_link); 653d3737187SMichel Lespinasse vma->rb_subtree_gap = 0; 654d3737187SMichel Lespinasse vma_gap_update(vma); 655d3737187SMichel Lespinasse vma_rb_insert(vma, &mm->mm_rb); 6561da177e4SLinus Torvalds } 6571da177e4SLinus Torvalds 658cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma) 6591da177e4SLinus Torvalds { 6601da177e4SLinus Torvalds struct file *file; 6611da177e4SLinus Torvalds 6621da177e4SLinus Torvalds file = vma->vm_file; 6631da177e4SLinus Torvalds if (file) { 6641da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 6651da177e4SLinus Torvalds 6661da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 667496ad9aaSAl Viro atomic_dec(&file_inode(file)->i_writecount); 6681da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 6694bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 6701da177e4SLinus Torvalds 6711da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 6726b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, &mapping->i_mmap); 6731da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 6741da177e4SLinus Torvalds } 6751da177e4SLinus Torvalds } 6761da177e4SLinus Torvalds 6771da177e4SLinus Torvalds static void 6781da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6791da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6801da177e4SLinus Torvalds struct rb_node *rb_parent) 6811da177e4SLinus Torvalds { 6821da177e4SLinus Torvalds __vma_link_list(mm, vma, prev, rb_parent); 6831da177e4SLinus Torvalds __vma_link_rb(mm, vma, rb_link, rb_parent); 6841da177e4SLinus Torvalds } 6851da177e4SLinus Torvalds 6861da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6871da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6881da177e4SLinus Torvalds struct rb_node *rb_parent) 6891da177e4SLinus Torvalds { 6901da177e4SLinus Torvalds struct address_space *mapping = NULL; 6911da177e4SLinus Torvalds 69264ac4940SHuang Shijie if (vma->vm_file) { 6931da177e4SLinus Torvalds mapping = vma->vm_file->f_mapping; 69483cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 69564ac4940SHuang Shijie } 6961da177e4SLinus Torvalds 6971da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6981da177e4SLinus Torvalds __vma_link_file(vma); 6991da177e4SLinus Torvalds 7001da177e4SLinus Torvalds if (mapping) 70183cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 7021da177e4SLinus Torvalds 7031da177e4SLinus Torvalds mm->map_count++; 7041da177e4SLinus Torvalds validate_mm(mm); 7051da177e4SLinus Torvalds } 7061da177e4SLinus Torvalds 7071da177e4SLinus Torvalds /* 70888f6b4c3SKautuk Consul * Helper for vma_adjust() in the split_vma insert case: insert a vma into the 7096b2dbba8SMichel Lespinasse * mm's list and rbtree. It has already been inserted into the interval tree. 7101da177e4SLinus Torvalds */ 71148aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 7121da177e4SLinus Torvalds { 7136597d783SHugh Dickins struct vm_area_struct *prev; 7141da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 7151da177e4SLinus Torvalds 7166597d783SHugh Dickins if (find_vma_links(mm, vma->vm_start, vma->vm_end, 7176597d783SHugh Dickins &prev, &rb_link, &rb_parent)) 7186597d783SHugh Dickins BUG(); 7191da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 7201da177e4SLinus Torvalds mm->map_count++; 7211da177e4SLinus Torvalds } 7221da177e4SLinus Torvalds 7231da177e4SLinus Torvalds static inline void 7241da177e4SLinus Torvalds __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma, 7251da177e4SLinus Torvalds struct vm_area_struct *prev) 7261da177e4SLinus Torvalds { 727d3737187SMichel Lespinasse struct vm_area_struct *next; 728297c5eeeSLinus Torvalds 729d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 730d3737187SMichel Lespinasse prev->vm_next = next = vma->vm_next; 731297c5eeeSLinus Torvalds if (next) 732297c5eeeSLinus Torvalds next->vm_prev = prev; 733615d6e87SDavidlohr Bueso 734615d6e87SDavidlohr Bueso /* Kill the cache */ 735615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 7361da177e4SLinus Torvalds } 7371da177e4SLinus Torvalds 7381da177e4SLinus Torvalds /* 7391da177e4SLinus Torvalds * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that 7401da177e4SLinus Torvalds * is already present in an i_mmap tree without adjusting the tree. 7411da177e4SLinus Torvalds * The following helper function should be used when such adjustments 7421da177e4SLinus Torvalds * are necessary. The "insert" vma (if any) is to be inserted 7431da177e4SLinus Torvalds * before we drop the necessary locks. 7441da177e4SLinus Torvalds */ 7455beb4930SRik van Riel int vma_adjust(struct vm_area_struct *vma, unsigned long start, 7461da177e4SLinus Torvalds unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert) 7471da177e4SLinus Torvalds { 7481da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 7491da177e4SLinus Torvalds struct vm_area_struct *next = vma->vm_next; 7501da177e4SLinus Torvalds struct vm_area_struct *importer = NULL; 7511da177e4SLinus Torvalds struct address_space *mapping = NULL; 7526b2dbba8SMichel Lespinasse struct rb_root *root = NULL; 753012f1800SRik van Riel struct anon_vma *anon_vma = NULL; 7541da177e4SLinus Torvalds struct file *file = vma->vm_file; 755d3737187SMichel Lespinasse bool start_changed = false, end_changed = false; 7561da177e4SLinus Torvalds long adjust_next = 0; 7571da177e4SLinus Torvalds int remove_next = 0; 7581da177e4SLinus Torvalds 7591da177e4SLinus Torvalds if (next && !insert) { 760287d97acSLinus Torvalds struct vm_area_struct *exporter = NULL; 761287d97acSLinus Torvalds 7621da177e4SLinus Torvalds if (end >= next->vm_end) { 7631da177e4SLinus Torvalds /* 7641da177e4SLinus Torvalds * vma expands, overlapping all the next, and 7651da177e4SLinus Torvalds * perhaps the one after too (mprotect case 6). 7661da177e4SLinus Torvalds */ 7671da177e4SLinus Torvalds again: remove_next = 1 + (end > next->vm_end); 7681da177e4SLinus Torvalds end = next->vm_end; 769287d97acSLinus Torvalds exporter = next; 7701da177e4SLinus Torvalds importer = vma; 7711da177e4SLinus Torvalds } else if (end > next->vm_start) { 7721da177e4SLinus Torvalds /* 7731da177e4SLinus Torvalds * vma expands, overlapping part of the next: 7741da177e4SLinus Torvalds * mprotect case 5 shifting the boundary up. 7751da177e4SLinus Torvalds */ 7761da177e4SLinus Torvalds adjust_next = (end - next->vm_start) >> PAGE_SHIFT; 777287d97acSLinus Torvalds exporter = next; 7781da177e4SLinus Torvalds importer = vma; 7791da177e4SLinus Torvalds } else if (end < vma->vm_end) { 7801da177e4SLinus Torvalds /* 7811da177e4SLinus Torvalds * vma shrinks, and !insert tells it's not 7821da177e4SLinus Torvalds * split_vma inserting another: so it must be 7831da177e4SLinus Torvalds * mprotect case 4 shifting the boundary down. 7841da177e4SLinus Torvalds */ 7851da177e4SLinus Torvalds adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT); 786287d97acSLinus Torvalds exporter = vma; 7871da177e4SLinus Torvalds importer = next; 7881da177e4SLinus Torvalds } 7891da177e4SLinus Torvalds 7905beb4930SRik van Riel /* 7915beb4930SRik van Riel * Easily overlooked: when mprotect shifts the boundary, 7925beb4930SRik van Riel * make sure the expanding vma has anon_vma set if the 7935beb4930SRik van Riel * shrinking vma had, to cover any anon pages imported. 7945beb4930SRik van Riel */ 795287d97acSLinus Torvalds if (exporter && exporter->anon_vma && !importer->anon_vma) { 796c4ea95d7SDaniel Forrest int error; 797c4ea95d7SDaniel Forrest 798287d97acSLinus Torvalds importer->anon_vma = exporter->anon_vma; 799b800c91aSKonstantin Khlebnikov error = anon_vma_clone(importer, exporter); 8003fe89b3eSLeon Yu if (error) 801b800c91aSKonstantin Khlebnikov return error; 802b800c91aSKonstantin Khlebnikov } 8035beb4930SRik van Riel } 8045beb4930SRik van Riel 8051da177e4SLinus Torvalds if (file) { 8061da177e4SLinus Torvalds mapping = file->f_mapping; 8071da177e4SLinus Torvalds root = &mapping->i_mmap; 808cbc91f71SSrikar Dronamraju uprobe_munmap(vma, vma->vm_start, vma->vm_end); 809682968e0SSrikar Dronamraju 810682968e0SSrikar Dronamraju if (adjust_next) 81127ba0644SKirill A. Shutemov uprobe_munmap(next, next->vm_start, next->vm_end); 812682968e0SSrikar Dronamraju 81383cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 8141da177e4SLinus Torvalds if (insert) { 8151da177e4SLinus Torvalds /* 8166b2dbba8SMichel Lespinasse * Put into interval tree now, so instantiated pages 8171da177e4SLinus Torvalds * are visible to arm/parisc __flush_dcache_page 8181da177e4SLinus Torvalds * throughout; but we cannot insert into address 8191da177e4SLinus Torvalds * space until vma start or end is updated. 8201da177e4SLinus Torvalds */ 8211da177e4SLinus Torvalds __vma_link_file(insert); 8221da177e4SLinus Torvalds } 8231da177e4SLinus Torvalds } 8241da177e4SLinus Torvalds 82594fcc585SAndrea Arcangeli vma_adjust_trans_huge(vma, start, end, adjust_next); 82694fcc585SAndrea Arcangeli 827012f1800SRik van Riel anon_vma = vma->anon_vma; 828bf181b9fSMichel Lespinasse if (!anon_vma && adjust_next) 829bf181b9fSMichel Lespinasse anon_vma = next->anon_vma; 830bf181b9fSMichel Lespinasse if (anon_vma) { 83181d1b09cSSasha Levin VM_BUG_ON_VMA(adjust_next && next->anon_vma && 83281d1b09cSSasha Levin anon_vma != next->anon_vma, next); 8334fc3f1d6SIngo Molnar anon_vma_lock_write(anon_vma); 834bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 835bf181b9fSMichel Lespinasse if (adjust_next) 836bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(next); 837bf181b9fSMichel Lespinasse } 838012f1800SRik van Riel 8391da177e4SLinus Torvalds if (root) { 8401da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 8416b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, root); 8421da177e4SLinus Torvalds if (adjust_next) 8436b2dbba8SMichel Lespinasse vma_interval_tree_remove(next, root); 8441da177e4SLinus Torvalds } 8451da177e4SLinus Torvalds 846d3737187SMichel Lespinasse if (start != vma->vm_start) { 8471da177e4SLinus Torvalds vma->vm_start = start; 848d3737187SMichel Lespinasse start_changed = true; 849d3737187SMichel Lespinasse } 850d3737187SMichel Lespinasse if (end != vma->vm_end) { 8511da177e4SLinus Torvalds vma->vm_end = end; 852d3737187SMichel Lespinasse end_changed = true; 853d3737187SMichel Lespinasse } 8541da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 8551da177e4SLinus Torvalds if (adjust_next) { 8561da177e4SLinus Torvalds next->vm_start += adjust_next << PAGE_SHIFT; 8571da177e4SLinus Torvalds next->vm_pgoff += adjust_next; 8581da177e4SLinus Torvalds } 8591da177e4SLinus Torvalds 8601da177e4SLinus Torvalds if (root) { 8611da177e4SLinus Torvalds if (adjust_next) 8626b2dbba8SMichel Lespinasse vma_interval_tree_insert(next, root); 8636b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, root); 8641da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 8651da177e4SLinus Torvalds } 8661da177e4SLinus Torvalds 8671da177e4SLinus Torvalds if (remove_next) { 8681da177e4SLinus Torvalds /* 8691da177e4SLinus Torvalds * vma_merge has merged next into vma, and needs 8701da177e4SLinus Torvalds * us to remove next before dropping the locks. 8711da177e4SLinus Torvalds */ 8721da177e4SLinus Torvalds __vma_unlink(mm, next, vma); 8731da177e4SLinus Torvalds if (file) 8741da177e4SLinus Torvalds __remove_shared_vm_struct(next, file, mapping); 8751da177e4SLinus Torvalds } else if (insert) { 8761da177e4SLinus Torvalds /* 8771da177e4SLinus Torvalds * split_vma has split insert from vma, and needs 8781da177e4SLinus Torvalds * us to insert it before dropping the locks 8791da177e4SLinus Torvalds * (it may either follow vma or precede it). 8801da177e4SLinus Torvalds */ 8811da177e4SLinus Torvalds __insert_vm_struct(mm, insert); 882d3737187SMichel Lespinasse } else { 883d3737187SMichel Lespinasse if (start_changed) 884d3737187SMichel Lespinasse vma_gap_update(vma); 885d3737187SMichel Lespinasse if (end_changed) { 886d3737187SMichel Lespinasse if (!next) 887d3737187SMichel Lespinasse mm->highest_vm_end = end; 888d3737187SMichel Lespinasse else if (!adjust_next) 889d3737187SMichel Lespinasse vma_gap_update(next); 890d3737187SMichel Lespinasse } 8911da177e4SLinus Torvalds } 8921da177e4SLinus Torvalds 893bf181b9fSMichel Lespinasse if (anon_vma) { 894bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 895bf181b9fSMichel Lespinasse if (adjust_next) 896bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(next); 89708b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 898bf181b9fSMichel Lespinasse } 8991da177e4SLinus Torvalds if (mapping) 90083cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 9011da177e4SLinus Torvalds 9022b144498SSrikar Dronamraju if (root) { 9037b2d81d4SIngo Molnar uprobe_mmap(vma); 9042b144498SSrikar Dronamraju 9052b144498SSrikar Dronamraju if (adjust_next) 9067b2d81d4SIngo Molnar uprobe_mmap(next); 9072b144498SSrikar Dronamraju } 9082b144498SSrikar Dronamraju 9091da177e4SLinus Torvalds if (remove_next) { 910925d1c40SMatt Helsley if (file) { 911cbc91f71SSrikar Dronamraju uprobe_munmap(next, next->vm_start, next->vm_end); 9121da177e4SLinus Torvalds fput(file); 913925d1c40SMatt Helsley } 9145beb4930SRik van Riel if (next->anon_vma) 9155beb4930SRik van Riel anon_vma_merge(vma, next); 9161da177e4SLinus Torvalds mm->map_count--; 9173964acd0SOleg Nesterov mpol_put(vma_policy(next)); 9181da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, next); 9191da177e4SLinus Torvalds /* 9201da177e4SLinus Torvalds * In mprotect's case 6 (see comments on vma_merge), 9211da177e4SLinus Torvalds * we must remove another next too. It would clutter 9221da177e4SLinus Torvalds * up the code too much to do both in one go. 9231da177e4SLinus Torvalds */ 9241da177e4SLinus Torvalds next = vma->vm_next; 925d3737187SMichel Lespinasse if (remove_next == 2) 9261da177e4SLinus Torvalds goto again; 927d3737187SMichel Lespinasse else if (next) 928d3737187SMichel Lespinasse vma_gap_update(next); 929d3737187SMichel Lespinasse else 930d3737187SMichel Lespinasse mm->highest_vm_end = end; 9311da177e4SLinus Torvalds } 9322b144498SSrikar Dronamraju if (insert && file) 9337b2d81d4SIngo Molnar uprobe_mmap(insert); 9341da177e4SLinus Torvalds 9351da177e4SLinus Torvalds validate_mm(mm); 9365beb4930SRik van Riel 9375beb4930SRik van Riel return 0; 9381da177e4SLinus Torvalds } 9391da177e4SLinus Torvalds 9401da177e4SLinus Torvalds /* 9411da177e4SLinus Torvalds * If the vma has a ->close operation then the driver probably needs to release 9421da177e4SLinus Torvalds * per-vma resources, so we don't attempt to merge those. 9431da177e4SLinus Torvalds */ 9441da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma, 94519a809afSAndrea Arcangeli struct file *file, unsigned long vm_flags, 94619a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 9471da177e4SLinus Torvalds { 94834228d47SCyrill Gorcunov /* 94934228d47SCyrill Gorcunov * VM_SOFTDIRTY should not prevent from VMA merging, if we 95034228d47SCyrill Gorcunov * match the flags but dirty bit -- the caller should mark 95134228d47SCyrill Gorcunov * merged VMA as dirty. If dirty bit won't be excluded from 95234228d47SCyrill Gorcunov * comparison, we increase pressue on the memory system forcing 95334228d47SCyrill Gorcunov * the kernel to generate new VMAs when old one could be 95434228d47SCyrill Gorcunov * extended instead. 95534228d47SCyrill Gorcunov */ 95634228d47SCyrill Gorcunov if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY) 9571da177e4SLinus Torvalds return 0; 9581da177e4SLinus Torvalds if (vma->vm_file != file) 9591da177e4SLinus Torvalds return 0; 9601da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 9611da177e4SLinus Torvalds return 0; 96219a809afSAndrea Arcangeli if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx)) 96319a809afSAndrea Arcangeli return 0; 9641da177e4SLinus Torvalds return 1; 9651da177e4SLinus Torvalds } 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1, 968965f55deSShaohua Li struct anon_vma *anon_vma2, 969965f55deSShaohua Li struct vm_area_struct *vma) 9701da177e4SLinus Torvalds { 971965f55deSShaohua Li /* 972965f55deSShaohua Li * The list_is_singular() test is to avoid merging VMA cloned from 973965f55deSShaohua Li * parents. This can improve scalability caused by anon_vma lock. 974965f55deSShaohua Li */ 975965f55deSShaohua Li if ((!anon_vma1 || !anon_vma2) && (!vma || 976965f55deSShaohua Li list_is_singular(&vma->anon_vma_chain))) 977965f55deSShaohua Li return 1; 978965f55deSShaohua Li return anon_vma1 == anon_vma2; 9791da177e4SLinus Torvalds } 9801da177e4SLinus Torvalds 9811da177e4SLinus Torvalds /* 9821da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 9831da177e4SLinus Torvalds * in front of (at a lower virtual address and file offset than) the vma. 9841da177e4SLinus Torvalds * 9851da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 9861da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 9871da177e4SLinus Torvalds * 9881da177e4SLinus Torvalds * We don't check here for the merged mmap wrapping around the end of pagecache 9891da177e4SLinus Torvalds * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which 9901da177e4SLinus Torvalds * wrap, nor mmaps which cover the final page at index -1UL. 9911da177e4SLinus Torvalds */ 9921da177e4SLinus Torvalds static int 9931da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags, 99419a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 99519a809afSAndrea Arcangeli pgoff_t vm_pgoff, 99619a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 9971da177e4SLinus Torvalds { 99819a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 999965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 10001da177e4SLinus Torvalds if (vma->vm_pgoff == vm_pgoff) 10011da177e4SLinus Torvalds return 1; 10021da177e4SLinus Torvalds } 10031da177e4SLinus Torvalds return 0; 10041da177e4SLinus Torvalds } 10051da177e4SLinus Torvalds 10061da177e4SLinus Torvalds /* 10071da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 10081da177e4SLinus Torvalds * beyond (at a higher virtual address and file offset than) the vma. 10091da177e4SLinus Torvalds * 10101da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 10111da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 10121da177e4SLinus Torvalds */ 10131da177e4SLinus Torvalds static int 10141da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags, 101519a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 101619a809afSAndrea Arcangeli pgoff_t vm_pgoff, 101719a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 10181da177e4SLinus Torvalds { 101919a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 1020965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 10211da177e4SLinus Torvalds pgoff_t vm_pglen; 1022d6e93217SLibin vm_pglen = vma_pages(vma); 10231da177e4SLinus Torvalds if (vma->vm_pgoff + vm_pglen == vm_pgoff) 10241da177e4SLinus Torvalds return 1; 10251da177e4SLinus Torvalds } 10261da177e4SLinus Torvalds return 0; 10271da177e4SLinus Torvalds } 10281da177e4SLinus Torvalds 10291da177e4SLinus Torvalds /* 10301da177e4SLinus Torvalds * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out 10311da177e4SLinus Torvalds * whether that can be merged with its predecessor or its successor. 10321da177e4SLinus Torvalds * Or both (it neatly fills a hole). 10331da177e4SLinus Torvalds * 10341da177e4SLinus Torvalds * In most cases - when called for mmap, brk or mremap - [addr,end) is 10351da177e4SLinus Torvalds * certain not to be mapped by the time vma_merge is called; but when 10361da177e4SLinus Torvalds * called for mprotect, it is certain to be already mapped (either at 10371da177e4SLinus Torvalds * an offset within prev, or at the start of next), and the flags of 10381da177e4SLinus Torvalds * this area are about to be changed to vm_flags - and the no-change 10391da177e4SLinus Torvalds * case has already been eliminated. 10401da177e4SLinus Torvalds * 10411da177e4SLinus Torvalds * The following mprotect cases have to be considered, where AAAA is 10421da177e4SLinus Torvalds * the area passed down from mprotect_fixup, never extending beyond one 10431da177e4SLinus Torvalds * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after: 10441da177e4SLinus Torvalds * 10451da177e4SLinus Torvalds * AAAA AAAA AAAA AAAA 10461da177e4SLinus Torvalds * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX 10471da177e4SLinus Torvalds * cannot merge might become might become might become 10481da177e4SLinus Torvalds * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or 10491da177e4SLinus Torvalds * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or 10501da177e4SLinus Torvalds * mremap move: PPPPNNNNNNNN 8 10511da177e4SLinus Torvalds * AAAA 10521da177e4SLinus Torvalds * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN 10531da177e4SLinus Torvalds * might become case 1 below case 2 below case 3 below 10541da177e4SLinus Torvalds * 10551da177e4SLinus Torvalds * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX: 10561da177e4SLinus Torvalds * mprotect_fixup updates vm_flags & vm_page_prot on successful return. 10571da177e4SLinus Torvalds */ 10581da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm, 10591da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long addr, 10601da177e4SLinus Torvalds unsigned long end, unsigned long vm_flags, 10611da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, 106219a809afSAndrea Arcangeli pgoff_t pgoff, struct mempolicy *policy, 106319a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 10641da177e4SLinus Torvalds { 10651da177e4SLinus Torvalds pgoff_t pglen = (end - addr) >> PAGE_SHIFT; 10661da177e4SLinus Torvalds struct vm_area_struct *area, *next; 10675beb4930SRik van Riel int err; 10681da177e4SLinus Torvalds 10691da177e4SLinus Torvalds /* 10701da177e4SLinus Torvalds * We later require that vma->vm_flags == vm_flags, 10711da177e4SLinus Torvalds * so this tests vma->vm_flags & VM_SPECIAL, too. 10721da177e4SLinus Torvalds */ 10731da177e4SLinus Torvalds if (vm_flags & VM_SPECIAL) 10741da177e4SLinus Torvalds return NULL; 10751da177e4SLinus Torvalds 10761da177e4SLinus Torvalds if (prev) 10771da177e4SLinus Torvalds next = prev->vm_next; 10781da177e4SLinus Torvalds else 10791da177e4SLinus Torvalds next = mm->mmap; 10801da177e4SLinus Torvalds area = next; 10811da177e4SLinus Torvalds if (next && next->vm_end == end) /* cases 6, 7, 8 */ 10821da177e4SLinus Torvalds next = next->vm_next; 10831da177e4SLinus Torvalds 10841da177e4SLinus Torvalds /* 10851da177e4SLinus Torvalds * Can it merge with the predecessor? 10861da177e4SLinus Torvalds */ 10871da177e4SLinus Torvalds if (prev && prev->vm_end == addr && 10881da177e4SLinus Torvalds mpol_equal(vma_policy(prev), policy) && 10891da177e4SLinus Torvalds can_vma_merge_after(prev, vm_flags, 109019a809afSAndrea Arcangeli anon_vma, file, pgoff, 109119a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 10921da177e4SLinus Torvalds /* 10931da177e4SLinus Torvalds * OK, it can. Can we now merge in the successor as well? 10941da177e4SLinus Torvalds */ 10951da177e4SLinus Torvalds if (next && end == next->vm_start && 10961da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 10971da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 109819a809afSAndrea Arcangeli anon_vma, file, 109919a809afSAndrea Arcangeli pgoff+pglen, 110019a809afSAndrea Arcangeli vm_userfaultfd_ctx) && 11011da177e4SLinus Torvalds is_mergeable_anon_vma(prev->anon_vma, 1102965f55deSShaohua Li next->anon_vma, NULL)) { 11031da177e4SLinus Torvalds /* cases 1, 6 */ 11045beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 11051da177e4SLinus Torvalds next->vm_end, prev->vm_pgoff, NULL); 11061da177e4SLinus Torvalds } else /* cases 2, 5, 7 */ 11075beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 11081da177e4SLinus Torvalds end, prev->vm_pgoff, NULL); 11095beb4930SRik van Riel if (err) 11105beb4930SRik van Riel return NULL; 11116d50e60cSDavid Rientjes khugepaged_enter_vma_merge(prev, vm_flags); 11121da177e4SLinus Torvalds return prev; 11131da177e4SLinus Torvalds } 11141da177e4SLinus Torvalds 11151da177e4SLinus Torvalds /* 11161da177e4SLinus Torvalds * Can this new request be merged in front of next? 11171da177e4SLinus Torvalds */ 11181da177e4SLinus Torvalds if (next && end == next->vm_start && 11191da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 11201da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 112119a809afSAndrea Arcangeli anon_vma, file, pgoff+pglen, 112219a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 11231da177e4SLinus Torvalds if (prev && addr < prev->vm_end) /* case 4 */ 11245beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 11251da177e4SLinus Torvalds addr, prev->vm_pgoff, NULL); 11261da177e4SLinus Torvalds else /* cases 3, 8 */ 11275beb4930SRik van Riel err = vma_adjust(area, addr, next->vm_end, 11281da177e4SLinus Torvalds next->vm_pgoff - pglen, NULL); 11295beb4930SRik van Riel if (err) 11305beb4930SRik van Riel return NULL; 11316d50e60cSDavid Rientjes khugepaged_enter_vma_merge(area, vm_flags); 11321da177e4SLinus Torvalds return area; 11331da177e4SLinus Torvalds } 11341da177e4SLinus Torvalds 11351da177e4SLinus Torvalds return NULL; 11361da177e4SLinus Torvalds } 11371da177e4SLinus Torvalds 11381da177e4SLinus Torvalds /* 1139d0e9fe17SLinus Torvalds * Rough compatbility check to quickly see if it's even worth looking 1140d0e9fe17SLinus Torvalds * at sharing an anon_vma. 1141d0e9fe17SLinus Torvalds * 1142d0e9fe17SLinus Torvalds * They need to have the same vm_file, and the flags can only differ 1143d0e9fe17SLinus Torvalds * in things that mprotect may change. 1144d0e9fe17SLinus Torvalds * 1145d0e9fe17SLinus Torvalds * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that 1146d0e9fe17SLinus Torvalds * we can merge the two vma's. For example, we refuse to merge a vma if 1147d0e9fe17SLinus Torvalds * there is a vm_ops->close() function, because that indicates that the 1148d0e9fe17SLinus Torvalds * driver is doing some kind of reference counting. But that doesn't 1149d0e9fe17SLinus Torvalds * really matter for the anon_vma sharing case. 1150d0e9fe17SLinus Torvalds */ 1151d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b) 1152d0e9fe17SLinus Torvalds { 1153d0e9fe17SLinus Torvalds return a->vm_end == b->vm_start && 1154d0e9fe17SLinus Torvalds mpol_equal(vma_policy(a), vma_policy(b)) && 1155d0e9fe17SLinus Torvalds a->vm_file == b->vm_file && 115634228d47SCyrill Gorcunov !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) && 1157d0e9fe17SLinus Torvalds b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT); 1158d0e9fe17SLinus Torvalds } 1159d0e9fe17SLinus Torvalds 1160d0e9fe17SLinus Torvalds /* 1161d0e9fe17SLinus Torvalds * Do some basic sanity checking to see if we can re-use the anon_vma 1162d0e9fe17SLinus Torvalds * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be 1163d0e9fe17SLinus Torvalds * the same as 'old', the other will be the new one that is trying 1164d0e9fe17SLinus Torvalds * to share the anon_vma. 1165d0e9fe17SLinus Torvalds * 1166d0e9fe17SLinus Torvalds * NOTE! This runs with mm_sem held for reading, so it is possible that 1167d0e9fe17SLinus Torvalds * the anon_vma of 'old' is concurrently in the process of being set up 1168d0e9fe17SLinus Torvalds * by another page fault trying to merge _that_. But that's ok: if it 1169d0e9fe17SLinus Torvalds * is being set up, that automatically means that it will be a singleton 1170d0e9fe17SLinus Torvalds * acceptable for merging, so we can do all of this optimistically. But 11714db0c3c2SJason Low * we do that READ_ONCE() to make sure that we never re-load the pointer. 1172d0e9fe17SLinus Torvalds * 1173d0e9fe17SLinus Torvalds * IOW: that the "list_is_singular()" test on the anon_vma_chain only 1174d0e9fe17SLinus Torvalds * matters for the 'stable anon_vma' case (ie the thing we want to avoid 1175d0e9fe17SLinus Torvalds * is to return an anon_vma that is "complex" due to having gone through 1176d0e9fe17SLinus Torvalds * a fork). 1177d0e9fe17SLinus Torvalds * 1178d0e9fe17SLinus Torvalds * We also make sure that the two vma's are compatible (adjacent, 1179d0e9fe17SLinus Torvalds * and with the same memory policies). That's all stable, even with just 1180d0e9fe17SLinus Torvalds * a read lock on the mm_sem. 1181d0e9fe17SLinus Torvalds */ 1182d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b) 1183d0e9fe17SLinus Torvalds { 1184d0e9fe17SLinus Torvalds if (anon_vma_compatible(a, b)) { 11854db0c3c2SJason Low struct anon_vma *anon_vma = READ_ONCE(old->anon_vma); 1186d0e9fe17SLinus Torvalds 1187d0e9fe17SLinus Torvalds if (anon_vma && list_is_singular(&old->anon_vma_chain)) 1188d0e9fe17SLinus Torvalds return anon_vma; 1189d0e9fe17SLinus Torvalds } 1190d0e9fe17SLinus Torvalds return NULL; 1191d0e9fe17SLinus Torvalds } 1192d0e9fe17SLinus Torvalds 1193d0e9fe17SLinus Torvalds /* 11941da177e4SLinus Torvalds * find_mergeable_anon_vma is used by anon_vma_prepare, to check 11951da177e4SLinus Torvalds * neighbouring vmas for a suitable anon_vma, before it goes off 11961da177e4SLinus Torvalds * to allocate a new anon_vma. It checks because a repetitive 11971da177e4SLinus Torvalds * sequence of mprotects and faults may otherwise lead to distinct 11981da177e4SLinus Torvalds * anon_vmas being allocated, preventing vma merge in subsequent 11991da177e4SLinus Torvalds * mprotect. 12001da177e4SLinus Torvalds */ 12011da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) 12021da177e4SLinus Torvalds { 1203d0e9fe17SLinus Torvalds struct anon_vma *anon_vma; 12041da177e4SLinus Torvalds struct vm_area_struct *near; 12051da177e4SLinus Torvalds 12061da177e4SLinus Torvalds near = vma->vm_next; 12071da177e4SLinus Torvalds if (!near) 12081da177e4SLinus Torvalds goto try_prev; 12091da177e4SLinus Torvalds 1210d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, vma, near); 1211d0e9fe17SLinus Torvalds if (anon_vma) 1212d0e9fe17SLinus Torvalds return anon_vma; 12131da177e4SLinus Torvalds try_prev: 12149be34c9dSLinus Torvalds near = vma->vm_prev; 12151da177e4SLinus Torvalds if (!near) 12161da177e4SLinus Torvalds goto none; 12171da177e4SLinus Torvalds 1218d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, near, vma); 1219d0e9fe17SLinus Torvalds if (anon_vma) 1220d0e9fe17SLinus Torvalds return anon_vma; 12211da177e4SLinus Torvalds none: 12221da177e4SLinus Torvalds /* 12231da177e4SLinus Torvalds * There's no absolute need to look only at touching neighbours: 12241da177e4SLinus Torvalds * we could search further afield for "compatible" anon_vmas. 12251da177e4SLinus Torvalds * But it would probably just be a waste of time searching, 12261da177e4SLinus Torvalds * or lead to too many vmas hanging off the same anon_vma. 12271da177e4SLinus Torvalds * We're trying to allow mprotect remerging later on, 12281da177e4SLinus Torvalds * not trying to minimize memory used for anon_vmas. 12291da177e4SLinus Torvalds */ 12301da177e4SLinus Torvalds return NULL; 12311da177e4SLinus Torvalds } 12321da177e4SLinus Torvalds 12331da177e4SLinus Torvalds /* 123440401530SAl Viro * If a hint addr is less than mmap_min_addr change hint to be as 123540401530SAl Viro * low as possible but still greater than mmap_min_addr 123640401530SAl Viro */ 123740401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint) 123840401530SAl Viro { 123940401530SAl Viro hint &= PAGE_MASK; 124040401530SAl Viro if (((void *)hint != NULL) && 124140401530SAl Viro (hint < mmap_min_addr)) 124240401530SAl Viro return PAGE_ALIGN(mmap_min_addr); 124340401530SAl Viro return hint; 124440401530SAl Viro } 124540401530SAl Viro 1246363ee17fSDavidlohr Bueso static inline int mlock_future_check(struct mm_struct *mm, 1247363ee17fSDavidlohr Bueso unsigned long flags, 1248363ee17fSDavidlohr Bueso unsigned long len) 1249363ee17fSDavidlohr Bueso { 1250363ee17fSDavidlohr Bueso unsigned long locked, lock_limit; 1251363ee17fSDavidlohr Bueso 1252363ee17fSDavidlohr Bueso /* mlock MCL_FUTURE? */ 1253363ee17fSDavidlohr Bueso if (flags & VM_LOCKED) { 1254363ee17fSDavidlohr Bueso locked = len >> PAGE_SHIFT; 1255363ee17fSDavidlohr Bueso locked += mm->locked_vm; 1256363ee17fSDavidlohr Bueso lock_limit = rlimit(RLIMIT_MEMLOCK); 1257363ee17fSDavidlohr Bueso lock_limit >>= PAGE_SHIFT; 1258363ee17fSDavidlohr Bueso if (locked > lock_limit && !capable(CAP_IPC_LOCK)) 1259363ee17fSDavidlohr Bueso return -EAGAIN; 1260363ee17fSDavidlohr Bueso } 1261363ee17fSDavidlohr Bueso return 0; 1262363ee17fSDavidlohr Bueso } 1263363ee17fSDavidlohr Bueso 126440401530SAl Viro /* 126527f5de79SJianjun Kong * The caller must hold down_write(¤t->mm->mmap_sem). 12661da177e4SLinus Torvalds */ 12671fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr, 12681da177e4SLinus Torvalds unsigned long len, unsigned long prot, 12691fcfd8dbSOleg Nesterov unsigned long flags, vm_flags_t vm_flags, 12701fcfd8dbSOleg Nesterov unsigned long pgoff, unsigned long *populate) 12711da177e4SLinus Torvalds { 12721da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 12731da177e4SLinus Torvalds 127441badc15SMichel Lespinasse *populate = 0; 1275bebeb3d6SMichel Lespinasse 1276e37609bbSPiotr Kwapulinski if (!len) 1277e37609bbSPiotr Kwapulinski return -EINVAL; 1278e37609bbSPiotr Kwapulinski 12791da177e4SLinus Torvalds /* 12801da177e4SLinus Torvalds * Does the application expect PROT_READ to imply PROT_EXEC? 12811da177e4SLinus Torvalds * 12821da177e4SLinus Torvalds * (the exception is when the underlying filesystem is noexec 12831da177e4SLinus Torvalds * mounted, in which case we dont add PROT_EXEC.) 12841da177e4SLinus Torvalds */ 12851da177e4SLinus Torvalds if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) 128690f8572bSEric W. Biederman if (!(file && path_noexec(&file->f_path))) 12871da177e4SLinus Torvalds prot |= PROT_EXEC; 12881da177e4SLinus Torvalds 12897cd94146SEric Paris if (!(flags & MAP_FIXED)) 12907cd94146SEric Paris addr = round_hint_to_min(addr); 12917cd94146SEric Paris 12921da177e4SLinus Torvalds /* Careful about overflows.. */ 12931da177e4SLinus Torvalds len = PAGE_ALIGN(len); 12949206de95SAl Viro if (!len) 12951da177e4SLinus Torvalds return -ENOMEM; 12961da177e4SLinus Torvalds 12971da177e4SLinus Torvalds /* offset overflow? */ 12981da177e4SLinus Torvalds if ((pgoff + (len >> PAGE_SHIFT)) < pgoff) 12991da177e4SLinus Torvalds return -EOVERFLOW; 13001da177e4SLinus Torvalds 13011da177e4SLinus Torvalds /* Too many mappings? */ 13021da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 13031da177e4SLinus Torvalds return -ENOMEM; 13041da177e4SLinus Torvalds 13051da177e4SLinus Torvalds /* Obtain the address to map to. we verify (or select) it and ensure 13061da177e4SLinus Torvalds * that it represents a valid section of the address space. 13071da177e4SLinus Torvalds */ 13081da177e4SLinus Torvalds addr = get_unmapped_area(file, addr, len, pgoff, flags); 1309de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 13101da177e4SLinus Torvalds return addr; 13111da177e4SLinus Torvalds 13121da177e4SLinus Torvalds /* Do simple checking here so the lower-level routines won't have 13131da177e4SLinus Torvalds * to. we assume access permissions have been handled by the open 13141da177e4SLinus Torvalds * of the memory object, so we don't do any here. 13151da177e4SLinus Torvalds */ 13161fcfd8dbSOleg Nesterov vm_flags |= calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) | 13171da177e4SLinus Torvalds mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC; 13181da177e4SLinus Torvalds 1319cdf7b341SHuang Shijie if (flags & MAP_LOCKED) 13201da177e4SLinus Torvalds if (!can_do_mlock()) 13211da177e4SLinus Torvalds return -EPERM; 1322ba470de4SRik van Riel 1323363ee17fSDavidlohr Bueso if (mlock_future_check(mm, vm_flags, len)) 13241da177e4SLinus Torvalds return -EAGAIN; 13251da177e4SLinus Torvalds 13261da177e4SLinus Torvalds if (file) { 1327077bf22bSOleg Nesterov struct inode *inode = file_inode(file); 1328077bf22bSOleg Nesterov 13291da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 13301da177e4SLinus Torvalds case MAP_SHARED: 13311da177e4SLinus Torvalds if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE)) 13321da177e4SLinus Torvalds return -EACCES; 13331da177e4SLinus Torvalds 13341da177e4SLinus Torvalds /* 13351da177e4SLinus Torvalds * Make sure we don't allow writing to an append-only 13361da177e4SLinus Torvalds * file.. 13371da177e4SLinus Torvalds */ 13381da177e4SLinus Torvalds if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE)) 13391da177e4SLinus Torvalds return -EACCES; 13401da177e4SLinus Torvalds 13411da177e4SLinus Torvalds /* 13421da177e4SLinus Torvalds * Make sure there are no mandatory locks on the file. 13431da177e4SLinus Torvalds */ 1344d7a06983SJeff Layton if (locks_verify_locked(file)) 13451da177e4SLinus Torvalds return -EAGAIN; 13461da177e4SLinus Torvalds 13471da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 13481da177e4SLinus Torvalds if (!(file->f_mode & FMODE_WRITE)) 13491da177e4SLinus Torvalds vm_flags &= ~(VM_MAYWRITE | VM_SHARED); 13501da177e4SLinus Torvalds 13511da177e4SLinus Torvalds /* fall through */ 13521da177e4SLinus Torvalds case MAP_PRIVATE: 13531da177e4SLinus Torvalds if (!(file->f_mode & FMODE_READ)) 13541da177e4SLinus Torvalds return -EACCES; 135590f8572bSEric W. Biederman if (path_noexec(&file->f_path)) { 135680c5606cSLinus Torvalds if (vm_flags & VM_EXEC) 135780c5606cSLinus Torvalds return -EPERM; 135880c5606cSLinus Torvalds vm_flags &= ~VM_MAYEXEC; 135980c5606cSLinus Torvalds } 136080c5606cSLinus Torvalds 136172c2d531SAl Viro if (!file->f_op->mmap) 136280c5606cSLinus Torvalds return -ENODEV; 1363b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1364b2c56e4fSOleg Nesterov return -EINVAL; 13651da177e4SLinus Torvalds break; 13661da177e4SLinus Torvalds 13671da177e4SLinus Torvalds default: 13681da177e4SLinus Torvalds return -EINVAL; 13691da177e4SLinus Torvalds } 13701da177e4SLinus Torvalds } else { 13711da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 13721da177e4SLinus Torvalds case MAP_SHARED: 1373b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1374b2c56e4fSOleg Nesterov return -EINVAL; 1375ce363942STejun Heo /* 1376ce363942STejun Heo * Ignore pgoff. 1377ce363942STejun Heo */ 1378ce363942STejun Heo pgoff = 0; 13791da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 13801da177e4SLinus Torvalds break; 13811da177e4SLinus Torvalds case MAP_PRIVATE: 13821da177e4SLinus Torvalds /* 13831da177e4SLinus Torvalds * Set pgoff according to addr for anon_vma. 13841da177e4SLinus Torvalds */ 13851da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 13861da177e4SLinus Torvalds break; 13871da177e4SLinus Torvalds default: 13881da177e4SLinus Torvalds return -EINVAL; 13891da177e4SLinus Torvalds } 13901da177e4SLinus Torvalds } 13911da177e4SLinus Torvalds 1392c22c0d63SMichel Lespinasse /* 1393c22c0d63SMichel Lespinasse * Set 'VM_NORESERVE' if we should not account for the 1394c22c0d63SMichel Lespinasse * memory use of this mapping. 1395c22c0d63SMichel Lespinasse */ 1396c22c0d63SMichel Lespinasse if (flags & MAP_NORESERVE) { 1397c22c0d63SMichel Lespinasse /* We honor MAP_NORESERVE if allowed to overcommit */ 1398c22c0d63SMichel Lespinasse if (sysctl_overcommit_memory != OVERCOMMIT_NEVER) 1399c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1400c22c0d63SMichel Lespinasse 1401c22c0d63SMichel Lespinasse /* hugetlb applies strict overcommit unless MAP_NORESERVE */ 1402c22c0d63SMichel Lespinasse if (file && is_file_hugepages(file)) 1403c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1404c22c0d63SMichel Lespinasse } 1405c22c0d63SMichel Lespinasse 1406c22c0d63SMichel Lespinasse addr = mmap_region(file, addr, len, vm_flags, pgoff); 140709a9f1d2SMichel Lespinasse if (!IS_ERR_VALUE(addr) && 140809a9f1d2SMichel Lespinasse ((vm_flags & VM_LOCKED) || 140909a9f1d2SMichel Lespinasse (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE)) 141041badc15SMichel Lespinasse *populate = len; 1411bebeb3d6SMichel Lespinasse return addr; 14120165ab44SMiklos Szeredi } 14136be5ceb0SLinus Torvalds 141466f0dc48SHugh Dickins SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len, 141566f0dc48SHugh Dickins unsigned long, prot, unsigned long, flags, 141666f0dc48SHugh Dickins unsigned long, fd, unsigned long, pgoff) 141766f0dc48SHugh Dickins { 141866f0dc48SHugh Dickins struct file *file = NULL; 14191e3ee14bSChen Gang unsigned long retval; 142066f0dc48SHugh Dickins 142166f0dc48SHugh Dickins if (!(flags & MAP_ANONYMOUS)) { 1422120a795dSAl Viro audit_mmap_fd(fd, flags); 142366f0dc48SHugh Dickins file = fget(fd); 142466f0dc48SHugh Dickins if (!file) 14251e3ee14bSChen Gang return -EBADF; 1426af73e4d9SNaoya Horiguchi if (is_file_hugepages(file)) 1427af73e4d9SNaoya Horiguchi len = ALIGN(len, huge_page_size(hstate_file(file))); 1428493af578SJörn Engel retval = -EINVAL; 1429493af578SJörn Engel if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file))) 1430493af578SJörn Engel goto out_fput; 143166f0dc48SHugh Dickins } else if (flags & MAP_HUGETLB) { 143266f0dc48SHugh Dickins struct user_struct *user = NULL; 1433c103a4dcSAndrew Morton struct hstate *hs; 1434af73e4d9SNaoya Horiguchi 1435c103a4dcSAndrew Morton hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK); 1436091d0d55SLi Zefan if (!hs) 1437091d0d55SLi Zefan return -EINVAL; 1438091d0d55SLi Zefan 1439091d0d55SLi Zefan len = ALIGN(len, huge_page_size(hs)); 144066f0dc48SHugh Dickins /* 144166f0dc48SHugh Dickins * VM_NORESERVE is used because the reservations will be 144266f0dc48SHugh Dickins * taken when vm_ops->mmap() is called 144366f0dc48SHugh Dickins * A dummy user value is used because we are not locking 144466f0dc48SHugh Dickins * memory so no accounting is necessary 144566f0dc48SHugh Dickins */ 1446af73e4d9SNaoya Horiguchi file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, 144742d7395fSAndi Kleen VM_NORESERVE, 144842d7395fSAndi Kleen &user, HUGETLB_ANONHUGE_INODE, 144942d7395fSAndi Kleen (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 145066f0dc48SHugh Dickins if (IS_ERR(file)) 145166f0dc48SHugh Dickins return PTR_ERR(file); 145266f0dc48SHugh Dickins } 145366f0dc48SHugh Dickins 145466f0dc48SHugh Dickins flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE); 145566f0dc48SHugh Dickins 1456eb36c587SAl Viro retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff); 1457493af578SJörn Engel out_fput: 145866f0dc48SHugh Dickins if (file) 145966f0dc48SHugh Dickins fput(file); 146066f0dc48SHugh Dickins return retval; 146166f0dc48SHugh Dickins } 146266f0dc48SHugh Dickins 1463a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP 1464a4679373SChristoph Hellwig struct mmap_arg_struct { 1465a4679373SChristoph Hellwig unsigned long addr; 1466a4679373SChristoph Hellwig unsigned long len; 1467a4679373SChristoph Hellwig unsigned long prot; 1468a4679373SChristoph Hellwig unsigned long flags; 1469a4679373SChristoph Hellwig unsigned long fd; 1470a4679373SChristoph Hellwig unsigned long offset; 1471a4679373SChristoph Hellwig }; 1472a4679373SChristoph Hellwig 1473a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg) 1474a4679373SChristoph Hellwig { 1475a4679373SChristoph Hellwig struct mmap_arg_struct a; 1476a4679373SChristoph Hellwig 1477a4679373SChristoph Hellwig if (copy_from_user(&a, arg, sizeof(a))) 1478a4679373SChristoph Hellwig return -EFAULT; 1479de1741a1SAlexander Kuleshov if (offset_in_page(a.offset)) 1480a4679373SChristoph Hellwig return -EINVAL; 1481a4679373SChristoph Hellwig 1482a4679373SChristoph Hellwig return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, 1483a4679373SChristoph Hellwig a.offset >> PAGE_SHIFT); 1484a4679373SChristoph Hellwig } 1485a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */ 1486a4679373SChristoph Hellwig 14874e950f6fSAlexey Dobriyan /* 14884e950f6fSAlexey Dobriyan * Some shared mappigns will want the pages marked read-only 14894e950f6fSAlexey Dobriyan * to track write events. If so, we'll downgrade vm_page_prot 14904e950f6fSAlexey Dobriyan * to the private version (using protection_map[] without the 14914e950f6fSAlexey Dobriyan * VM_SHARED bit). 14924e950f6fSAlexey Dobriyan */ 14934e950f6fSAlexey Dobriyan int vma_wants_writenotify(struct vm_area_struct *vma) 14944e950f6fSAlexey Dobriyan { 1495ca16d140SKOSAKI Motohiro vm_flags_t vm_flags = vma->vm_flags; 14968a04446aSKirill A. Shutemov const struct vm_operations_struct *vm_ops = vma->vm_ops; 14974e950f6fSAlexey Dobriyan 14984e950f6fSAlexey Dobriyan /* If it was private or non-writable, the write bit is already clear */ 14994e950f6fSAlexey Dobriyan if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED))) 15004e950f6fSAlexey Dobriyan return 0; 15014e950f6fSAlexey Dobriyan 15024e950f6fSAlexey Dobriyan /* The backer wishes to know when pages are first written to? */ 15038a04446aSKirill A. Shutemov if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite)) 15044e950f6fSAlexey Dobriyan return 1; 15054e950f6fSAlexey Dobriyan 150664e45507SPeter Feiner /* The open routine did something to the protections that pgprot_modify 150764e45507SPeter Feiner * won't preserve? */ 15084e950f6fSAlexey Dobriyan if (pgprot_val(vma->vm_page_prot) != 150964e45507SPeter Feiner pgprot_val(vm_pgprot_modify(vma->vm_page_prot, vm_flags))) 15104e950f6fSAlexey Dobriyan return 0; 15114e950f6fSAlexey Dobriyan 151264e45507SPeter Feiner /* Do we need to track softdirty? */ 151364e45507SPeter Feiner if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY)) 151464e45507SPeter Feiner return 1; 151564e45507SPeter Feiner 15164e950f6fSAlexey Dobriyan /* Specialty mapping? */ 15174b6e1e37SKonstantin Khlebnikov if (vm_flags & VM_PFNMAP) 15184e950f6fSAlexey Dobriyan return 0; 15194e950f6fSAlexey Dobriyan 15204e950f6fSAlexey Dobriyan /* Can the mapping track the dirty pages? */ 15214e950f6fSAlexey Dobriyan return vma->vm_file && vma->vm_file->f_mapping && 15224e950f6fSAlexey Dobriyan mapping_cap_account_dirty(vma->vm_file->f_mapping); 15234e950f6fSAlexey Dobriyan } 15244e950f6fSAlexey Dobriyan 1525fc8744adSLinus Torvalds /* 1526fc8744adSLinus Torvalds * We account for memory if it's a private writeable mapping, 15275a6fe125SMel Gorman * not hugepages and VM_NORESERVE wasn't set. 1528fc8744adSLinus Torvalds */ 1529ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags) 1530fc8744adSLinus Torvalds { 15315a6fe125SMel Gorman /* 15325a6fe125SMel Gorman * hugetlb has its own accounting separate from the core VM 15335a6fe125SMel Gorman * VM_HUGETLB may not be set yet so we cannot check for that flag. 15345a6fe125SMel Gorman */ 15355a6fe125SMel Gorman if (file && is_file_hugepages(file)) 15365a6fe125SMel Gorman return 0; 15375a6fe125SMel Gorman 1538fc8744adSLinus Torvalds return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE; 1539fc8744adSLinus Torvalds } 1540fc8744adSLinus Torvalds 15410165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr, 1542c22c0d63SMichel Lespinasse unsigned long len, vm_flags_t vm_flags, unsigned long pgoff) 15430165ab44SMiklos Szeredi { 15440165ab44SMiklos Szeredi struct mm_struct *mm = current->mm; 15450165ab44SMiklos Szeredi struct vm_area_struct *vma, *prev; 15460165ab44SMiklos Szeredi int error; 15470165ab44SMiklos Szeredi struct rb_node **rb_link, *rb_parent; 15480165ab44SMiklos Szeredi unsigned long charged = 0; 15490165ab44SMiklos Szeredi 1550e8420a8eSCyril Hrubis /* Check against address space limit. */ 155184638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) { 1552e8420a8eSCyril Hrubis unsigned long nr_pages; 1553e8420a8eSCyril Hrubis 1554e8420a8eSCyril Hrubis /* 1555e8420a8eSCyril Hrubis * MAP_FIXED may remove pages of mappings that intersects with 1556e8420a8eSCyril Hrubis * requested mapping. Account for the pages it would unmap. 1557e8420a8eSCyril Hrubis */ 1558e8420a8eSCyril Hrubis nr_pages = count_vma_pages_range(mm, addr, addr + len); 1559e8420a8eSCyril Hrubis 156084638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, 156184638335SKonstantin Khlebnikov (len >> PAGE_SHIFT) - nr_pages)) 1562e8420a8eSCyril Hrubis return -ENOMEM; 1563e8420a8eSCyril Hrubis } 1564e8420a8eSCyril Hrubis 15651da177e4SLinus Torvalds /* Clear old maps */ 15669fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 15679fcd1457SRasmus Villemoes &rb_parent)) { 15681da177e4SLinus Torvalds if (do_munmap(mm, addr, len)) 15691da177e4SLinus Torvalds return -ENOMEM; 15701da177e4SLinus Torvalds } 15711da177e4SLinus Torvalds 1572fc8744adSLinus Torvalds /* 15731da177e4SLinus Torvalds * Private writable mapping: check memory availability 15741da177e4SLinus Torvalds */ 15755a6fe125SMel Gorman if (accountable_mapping(file, vm_flags)) { 15761da177e4SLinus Torvalds charged = len >> PAGE_SHIFT; 1577191c5424SAl Viro if (security_vm_enough_memory_mm(mm, charged)) 15781da177e4SLinus Torvalds return -ENOMEM; 15791da177e4SLinus Torvalds vm_flags |= VM_ACCOUNT; 15801da177e4SLinus Torvalds } 15811da177e4SLinus Torvalds 15821da177e4SLinus Torvalds /* 1583de33c8dbSLinus Torvalds * Can we just expand an old mapping? 15841da177e4SLinus Torvalds */ 158519a809afSAndrea Arcangeli vma = vma_merge(mm, prev, addr, addr + len, vm_flags, 158619a809afSAndrea Arcangeli NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX); 1587ba470de4SRik van Riel if (vma) 15881da177e4SLinus Torvalds goto out; 15891da177e4SLinus Torvalds 15901da177e4SLinus Torvalds /* 15911da177e4SLinus Torvalds * Determine the object being mapped and call the appropriate 15921da177e4SLinus Torvalds * specific mapper. the address has already been validated, but 15931da177e4SLinus Torvalds * not unmapped, but the maps are removed from the list. 15941da177e4SLinus Torvalds */ 1595c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 15961da177e4SLinus Torvalds if (!vma) { 15971da177e4SLinus Torvalds error = -ENOMEM; 15981da177e4SLinus Torvalds goto unacct_error; 15991da177e4SLinus Torvalds } 16001da177e4SLinus Torvalds 16011da177e4SLinus Torvalds vma->vm_mm = mm; 16021da177e4SLinus Torvalds vma->vm_start = addr; 16031da177e4SLinus Torvalds vma->vm_end = addr + len; 16041da177e4SLinus Torvalds vma->vm_flags = vm_flags; 16053ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vm_flags); 16061da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 16075beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 16081da177e4SLinus Torvalds 16091da177e4SLinus Torvalds if (file) { 16101da177e4SLinus Torvalds if (vm_flags & VM_DENYWRITE) { 16111da177e4SLinus Torvalds error = deny_write_access(file); 16121da177e4SLinus Torvalds if (error) 16131da177e4SLinus Torvalds goto free_vma; 16141da177e4SLinus Torvalds } 16154bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) { 16164bb5f5d9SDavid Herrmann error = mapping_map_writable(file->f_mapping); 16174bb5f5d9SDavid Herrmann if (error) 16184bb5f5d9SDavid Herrmann goto allow_write_and_free_vma; 16194bb5f5d9SDavid Herrmann } 16204bb5f5d9SDavid Herrmann 16214bb5f5d9SDavid Herrmann /* ->mmap() can change vma->vm_file, but must guarantee that 16224bb5f5d9SDavid Herrmann * vma_link() below can deny write-access if VM_DENYWRITE is set 16234bb5f5d9SDavid Herrmann * and map writably if VM_SHARED is set. This usually means the 16244bb5f5d9SDavid Herrmann * new file must not have been exposed to user-space, yet. 16254bb5f5d9SDavid Herrmann */ 1626cb0942b8SAl Viro vma->vm_file = get_file(file); 16271da177e4SLinus Torvalds error = file->f_op->mmap(file, vma); 16281da177e4SLinus Torvalds if (error) 16291da177e4SLinus Torvalds goto unmap_and_free_vma; 16301da177e4SLinus Torvalds 16311da177e4SLinus Torvalds /* Can addr have changed?? 16321da177e4SLinus Torvalds * 16331da177e4SLinus Torvalds * Answer: Yes, several device drivers can do it in their 16341da177e4SLinus Torvalds * f_op->mmap method. -DaveM 16352897b4d2SJoonsoo Kim * Bug: If addr is changed, prev, rb_link, rb_parent should 16362897b4d2SJoonsoo Kim * be updated for vma_link() 16371da177e4SLinus Torvalds */ 16382897b4d2SJoonsoo Kim WARN_ON_ONCE(addr != vma->vm_start); 16392897b4d2SJoonsoo Kim 16401da177e4SLinus Torvalds addr = vma->vm_start; 16411da177e4SLinus Torvalds vm_flags = vma->vm_flags; 1642f8dbf0a7SHuang Shijie } else if (vm_flags & VM_SHARED) { 1643f8dbf0a7SHuang Shijie error = shmem_zero_setup(vma); 1644f8dbf0a7SHuang Shijie if (error) 1645f8dbf0a7SHuang Shijie goto free_vma; 1646f8dbf0a7SHuang Shijie } 16471da177e4SLinus Torvalds 16484d3d5b41SOleg Nesterov vma_link(mm, vma, prev, rb_link, rb_parent); 16494d3d5b41SOleg Nesterov /* Once vma denies write, undo our temporary denial count */ 16504bb5f5d9SDavid Herrmann if (file) { 16514bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 16524bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 1653e8686772SOleg Nesterov if (vm_flags & VM_DENYWRITE) 1654e8686772SOleg Nesterov allow_write_access(file); 16554bb5f5d9SDavid Herrmann } 1656e8686772SOleg Nesterov file = vma->vm_file; 16571da177e4SLinus Torvalds out: 1658cdd6c482SIngo Molnar perf_event_mmap(vma); 16590a4a9391SPeter Zijlstra 166084638335SKonstantin Khlebnikov vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT); 16611da177e4SLinus Torvalds if (vm_flags & VM_LOCKED) { 1662bebeb3d6SMichel Lespinasse if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) || 1663bebeb3d6SMichel Lespinasse vma == get_gate_vma(current->mm))) 166406f9d8c2SKOSAKI Motohiro mm->locked_vm += (len >> PAGE_SHIFT); 1665bebeb3d6SMichel Lespinasse else 1666de60f5f1SEric B Munson vma->vm_flags &= VM_LOCKED_CLEAR_MASK; 1667bebeb3d6SMichel Lespinasse } 16682b144498SSrikar Dronamraju 1669c7a3a88cSOleg Nesterov if (file) 1670c7a3a88cSOleg Nesterov uprobe_mmap(vma); 16712b144498SSrikar Dronamraju 1672d9104d1cSCyrill Gorcunov /* 1673d9104d1cSCyrill Gorcunov * New (or expanded) vma always get soft dirty status. 1674d9104d1cSCyrill Gorcunov * Otherwise user-space soft-dirty page tracker won't 1675d9104d1cSCyrill Gorcunov * be able to distinguish situation when vma area unmapped, 1676d9104d1cSCyrill Gorcunov * then new mapped in-place (which must be aimed as 1677d9104d1cSCyrill Gorcunov * a completely new data area). 1678d9104d1cSCyrill Gorcunov */ 1679d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 1680d9104d1cSCyrill Gorcunov 168164e45507SPeter Feiner vma_set_page_prot(vma); 168264e45507SPeter Feiner 16831da177e4SLinus Torvalds return addr; 16841da177e4SLinus Torvalds 16851da177e4SLinus Torvalds unmap_and_free_vma: 16861da177e4SLinus Torvalds vma->vm_file = NULL; 16871da177e4SLinus Torvalds fput(file); 16881da177e4SLinus Torvalds 16891da177e4SLinus Torvalds /* Undo any partial mapping done by a device driver. */ 1690e0da382cSHugh Dickins unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); 1691e0da382cSHugh Dickins charged = 0; 16924bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 16934bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 16944bb5f5d9SDavid Herrmann allow_write_and_free_vma: 16954bb5f5d9SDavid Herrmann if (vm_flags & VM_DENYWRITE) 16964bb5f5d9SDavid Herrmann allow_write_access(file); 16971da177e4SLinus Torvalds free_vma: 16981da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 16991da177e4SLinus Torvalds unacct_error: 17001da177e4SLinus Torvalds if (charged) 17011da177e4SLinus Torvalds vm_unacct_memory(charged); 17021da177e4SLinus Torvalds return error; 17031da177e4SLinus Torvalds } 17041da177e4SLinus Torvalds 1705db4fbfb9SMichel Lespinasse unsigned long unmapped_area(struct vm_unmapped_area_info *info) 1706db4fbfb9SMichel Lespinasse { 1707db4fbfb9SMichel Lespinasse /* 1708db4fbfb9SMichel Lespinasse * We implement the search by looking for an rbtree node that 1709db4fbfb9SMichel Lespinasse * immediately follows a suitable gap. That is, 1710db4fbfb9SMichel Lespinasse * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length; 1711db4fbfb9SMichel Lespinasse * - gap_end = vma->vm_start >= info->low_limit + length; 1712db4fbfb9SMichel Lespinasse * - gap_end - gap_start >= length 1713db4fbfb9SMichel Lespinasse */ 1714db4fbfb9SMichel Lespinasse 1715db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1716db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1717db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1718db4fbfb9SMichel Lespinasse 1719db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1720db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1721db4fbfb9SMichel Lespinasse if (length < info->length) 1722db4fbfb9SMichel Lespinasse return -ENOMEM; 1723db4fbfb9SMichel Lespinasse 1724db4fbfb9SMichel Lespinasse /* Adjust search limits by the desired length */ 1725db4fbfb9SMichel Lespinasse if (info->high_limit < length) 1726db4fbfb9SMichel Lespinasse return -ENOMEM; 1727db4fbfb9SMichel Lespinasse high_limit = info->high_limit - length; 1728db4fbfb9SMichel Lespinasse 1729db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1730db4fbfb9SMichel Lespinasse return -ENOMEM; 1731db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1732db4fbfb9SMichel Lespinasse 1733db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1734db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1735db4fbfb9SMichel Lespinasse goto check_highest; 1736db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1737db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1738db4fbfb9SMichel Lespinasse goto check_highest; 1739db4fbfb9SMichel Lespinasse 1740db4fbfb9SMichel Lespinasse while (true) { 1741db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1742db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1743db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && vma->vm_rb.rb_left) { 1744db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1745db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1746db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1747db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1748db4fbfb9SMichel Lespinasse vma = left; 1749db4fbfb9SMichel Lespinasse continue; 1750db4fbfb9SMichel Lespinasse } 1751db4fbfb9SMichel Lespinasse } 1752db4fbfb9SMichel Lespinasse 1753db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; 1754db4fbfb9SMichel Lespinasse check_current: 1755db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1756db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1757db4fbfb9SMichel Lespinasse return -ENOMEM; 1758db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && gap_end - gap_start >= length) 1759db4fbfb9SMichel Lespinasse goto found; 1760db4fbfb9SMichel Lespinasse 1761db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1762db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_right) { 1763db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1764db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1765db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1766db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1767db4fbfb9SMichel Lespinasse vma = right; 1768db4fbfb9SMichel Lespinasse continue; 1769db4fbfb9SMichel Lespinasse } 1770db4fbfb9SMichel Lespinasse } 1771db4fbfb9SMichel Lespinasse 1772db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1773db4fbfb9SMichel Lespinasse while (true) { 1774db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1775db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1776db4fbfb9SMichel Lespinasse goto check_highest; 1777db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1778db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1779db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_left) { 1780db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev->vm_end; 1781db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1782db4fbfb9SMichel Lespinasse goto check_current; 1783db4fbfb9SMichel Lespinasse } 1784db4fbfb9SMichel Lespinasse } 1785db4fbfb9SMichel Lespinasse } 1786db4fbfb9SMichel Lespinasse 1787db4fbfb9SMichel Lespinasse check_highest: 1788db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1789db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1790db4fbfb9SMichel Lespinasse gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */ 1791db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1792db4fbfb9SMichel Lespinasse return -ENOMEM; 1793db4fbfb9SMichel Lespinasse 1794db4fbfb9SMichel Lespinasse found: 1795db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original low_limit. */ 1796db4fbfb9SMichel Lespinasse if (gap_start < info->low_limit) 1797db4fbfb9SMichel Lespinasse gap_start = info->low_limit; 1798db4fbfb9SMichel Lespinasse 1799db4fbfb9SMichel Lespinasse /* Adjust gap address to the desired alignment */ 1800db4fbfb9SMichel Lespinasse gap_start += (info->align_offset - gap_start) & info->align_mask; 1801db4fbfb9SMichel Lespinasse 1802db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > info->high_limit); 1803db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > gap_end); 1804db4fbfb9SMichel Lespinasse return gap_start; 1805db4fbfb9SMichel Lespinasse } 1806db4fbfb9SMichel Lespinasse 1807db4fbfb9SMichel Lespinasse unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info) 1808db4fbfb9SMichel Lespinasse { 1809db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1810db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1811db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1812db4fbfb9SMichel Lespinasse 1813db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1814db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1815db4fbfb9SMichel Lespinasse if (length < info->length) 1816db4fbfb9SMichel Lespinasse return -ENOMEM; 1817db4fbfb9SMichel Lespinasse 1818db4fbfb9SMichel Lespinasse /* 1819db4fbfb9SMichel Lespinasse * Adjust search limits by the desired length. 1820db4fbfb9SMichel Lespinasse * See implementation comment at top of unmapped_area(). 1821db4fbfb9SMichel Lespinasse */ 1822db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1823db4fbfb9SMichel Lespinasse if (gap_end < length) 1824db4fbfb9SMichel Lespinasse return -ENOMEM; 1825db4fbfb9SMichel Lespinasse high_limit = gap_end - length; 1826db4fbfb9SMichel Lespinasse 1827db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1828db4fbfb9SMichel Lespinasse return -ENOMEM; 1829db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1830db4fbfb9SMichel Lespinasse 1831db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1832db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1833db4fbfb9SMichel Lespinasse if (gap_start <= high_limit) 1834db4fbfb9SMichel Lespinasse goto found_highest; 1835db4fbfb9SMichel Lespinasse 1836db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1837db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1838db4fbfb9SMichel Lespinasse return -ENOMEM; 1839db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1840db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1841db4fbfb9SMichel Lespinasse return -ENOMEM; 1842db4fbfb9SMichel Lespinasse 1843db4fbfb9SMichel Lespinasse while (true) { 1844db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1845db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; 1846db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && vma->vm_rb.rb_right) { 1847db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1848db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1849db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1850db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1851db4fbfb9SMichel Lespinasse vma = right; 1852db4fbfb9SMichel Lespinasse continue; 1853db4fbfb9SMichel Lespinasse } 1854db4fbfb9SMichel Lespinasse } 1855db4fbfb9SMichel Lespinasse 1856db4fbfb9SMichel Lespinasse check_current: 1857db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1858db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1859db4fbfb9SMichel Lespinasse if (gap_end < low_limit) 1860db4fbfb9SMichel Lespinasse return -ENOMEM; 1861db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && gap_end - gap_start >= length) 1862db4fbfb9SMichel Lespinasse goto found; 1863db4fbfb9SMichel Lespinasse 1864db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1865db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_left) { 1866db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1867db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1868db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1869db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1870db4fbfb9SMichel Lespinasse vma = left; 1871db4fbfb9SMichel Lespinasse continue; 1872db4fbfb9SMichel Lespinasse } 1873db4fbfb9SMichel Lespinasse } 1874db4fbfb9SMichel Lespinasse 1875db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1876db4fbfb9SMichel Lespinasse while (true) { 1877db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1878db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1879db4fbfb9SMichel Lespinasse return -ENOMEM; 1880db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1881db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1882db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_right) { 1883db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? 1884db4fbfb9SMichel Lespinasse vma->vm_prev->vm_end : 0; 1885db4fbfb9SMichel Lespinasse goto check_current; 1886db4fbfb9SMichel Lespinasse } 1887db4fbfb9SMichel Lespinasse } 1888db4fbfb9SMichel Lespinasse } 1889db4fbfb9SMichel Lespinasse 1890db4fbfb9SMichel Lespinasse found: 1891db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original high_limit. */ 1892db4fbfb9SMichel Lespinasse if (gap_end > info->high_limit) 1893db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1894db4fbfb9SMichel Lespinasse 1895db4fbfb9SMichel Lespinasse found_highest: 1896db4fbfb9SMichel Lespinasse /* Compute highest gap address at the desired alignment */ 1897db4fbfb9SMichel Lespinasse gap_end -= info->length; 1898db4fbfb9SMichel Lespinasse gap_end -= (gap_end - info->align_offset) & info->align_mask; 1899db4fbfb9SMichel Lespinasse 1900db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < info->low_limit); 1901db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < gap_start); 1902db4fbfb9SMichel Lespinasse return gap_end; 1903db4fbfb9SMichel Lespinasse } 1904db4fbfb9SMichel Lespinasse 19051da177e4SLinus Torvalds /* Get an address range which is currently unmapped. 19061da177e4SLinus Torvalds * For shmat() with addr=0. 19071da177e4SLinus Torvalds * 19081da177e4SLinus Torvalds * Ugly calling convention alert: 19091da177e4SLinus Torvalds * Return value with the low bits set means error value, 19101da177e4SLinus Torvalds * ie 19111da177e4SLinus Torvalds * if (ret & ~PAGE_MASK) 19121da177e4SLinus Torvalds * error = ret; 19131da177e4SLinus Torvalds * 19141da177e4SLinus Torvalds * This function "knows" that -ENOMEM has the bits set. 19151da177e4SLinus Torvalds */ 19161da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA 19171da177e4SLinus Torvalds unsigned long 19181da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr, 19191da177e4SLinus Torvalds unsigned long len, unsigned long pgoff, unsigned long flags) 19201da177e4SLinus Torvalds { 19211da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 19221da177e4SLinus Torvalds struct vm_area_struct *vma; 1923db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 19241da177e4SLinus Torvalds 19252afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 19261da177e4SLinus Torvalds return -ENOMEM; 19271da177e4SLinus Torvalds 192806abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 192906abdfb4SBenjamin Herrenschmidt return addr; 193006abdfb4SBenjamin Herrenschmidt 19311da177e4SLinus Torvalds if (addr) { 19321da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 19331da177e4SLinus Torvalds vma = find_vma(mm, addr); 19342afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 19351da177e4SLinus Torvalds (!vma || addr + len <= vma->vm_start)) 19361da177e4SLinus Torvalds return addr; 19371da177e4SLinus Torvalds } 19381da177e4SLinus Torvalds 1939db4fbfb9SMichel Lespinasse info.flags = 0; 1940db4fbfb9SMichel Lespinasse info.length = len; 19414e99b021SHeiko Carstens info.low_limit = mm->mmap_base; 1942db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 1943db4fbfb9SMichel Lespinasse info.align_mask = 0; 1944db4fbfb9SMichel Lespinasse return vm_unmapped_area(&info); 19451da177e4SLinus Torvalds } 19461da177e4SLinus Torvalds #endif 19471da177e4SLinus Torvalds 19481da177e4SLinus Torvalds /* 19491da177e4SLinus Torvalds * This mmap-allocator allocates new areas top-down from below the 19501da177e4SLinus Torvalds * stack's low limit (the base): 19511da177e4SLinus Torvalds */ 19521da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN 19531da177e4SLinus Torvalds unsigned long 19541da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, 19551da177e4SLinus Torvalds const unsigned long len, const unsigned long pgoff, 19561da177e4SLinus Torvalds const unsigned long flags) 19571da177e4SLinus Torvalds { 19581da177e4SLinus Torvalds struct vm_area_struct *vma; 19591da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 1960db4fbfb9SMichel Lespinasse unsigned long addr = addr0; 1961db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 19621da177e4SLinus Torvalds 19631da177e4SLinus Torvalds /* requested length too big for entire address space */ 19642afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 19651da177e4SLinus Torvalds return -ENOMEM; 19661da177e4SLinus Torvalds 196706abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 196806abdfb4SBenjamin Herrenschmidt return addr; 196906abdfb4SBenjamin Herrenschmidt 19701da177e4SLinus Torvalds /* requesting a specific address */ 19711da177e4SLinus Torvalds if (addr) { 19721da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 19731da177e4SLinus Torvalds vma = find_vma(mm, addr); 19742afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 19751da177e4SLinus Torvalds (!vma || addr + len <= vma->vm_start)) 19761da177e4SLinus Torvalds return addr; 19771da177e4SLinus Torvalds } 19781da177e4SLinus Torvalds 1979db4fbfb9SMichel Lespinasse info.flags = VM_UNMAPPED_AREA_TOPDOWN; 1980db4fbfb9SMichel Lespinasse info.length = len; 19812afc745fSAkira Takeuchi info.low_limit = max(PAGE_SIZE, mmap_min_addr); 1982db4fbfb9SMichel Lespinasse info.high_limit = mm->mmap_base; 1983db4fbfb9SMichel Lespinasse info.align_mask = 0; 1984db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 1985b716ad95SXiao Guangrong 19861da177e4SLinus Torvalds /* 19871da177e4SLinus Torvalds * A failed mmap() very likely causes application failure, 19881da177e4SLinus Torvalds * so fall back to the bottom-up function here. This scenario 19891da177e4SLinus Torvalds * can happen with large stack limits and large mmap() 19901da177e4SLinus Torvalds * allocations. 19911da177e4SLinus Torvalds */ 1992de1741a1SAlexander Kuleshov if (offset_in_page(addr)) { 1993db4fbfb9SMichel Lespinasse VM_BUG_ON(addr != -ENOMEM); 1994db4fbfb9SMichel Lespinasse info.flags = 0; 1995db4fbfb9SMichel Lespinasse info.low_limit = TASK_UNMAPPED_BASE; 1996db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 1997db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 1998db4fbfb9SMichel Lespinasse } 19991da177e4SLinus Torvalds 20001da177e4SLinus Torvalds return addr; 20011da177e4SLinus Torvalds } 20021da177e4SLinus Torvalds #endif 20031da177e4SLinus Torvalds 20041da177e4SLinus Torvalds unsigned long 20051da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, 20061da177e4SLinus Torvalds unsigned long pgoff, unsigned long flags) 20071da177e4SLinus Torvalds { 200806abdfb4SBenjamin Herrenschmidt unsigned long (*get_area)(struct file *, unsigned long, 200906abdfb4SBenjamin Herrenschmidt unsigned long, unsigned long, unsigned long); 201007ab67c8SLinus Torvalds 20119206de95SAl Viro unsigned long error = arch_mmap_check(addr, len, flags); 20129206de95SAl Viro if (error) 20139206de95SAl Viro return error; 20149206de95SAl Viro 20159206de95SAl Viro /* Careful about overflows.. */ 20169206de95SAl Viro if (len > TASK_SIZE) 20179206de95SAl Viro return -ENOMEM; 20189206de95SAl Viro 201907ab67c8SLinus Torvalds get_area = current->mm->get_unmapped_area; 202072c2d531SAl Viro if (file && file->f_op->get_unmapped_area) 202107ab67c8SLinus Torvalds get_area = file->f_op->get_unmapped_area; 202207ab67c8SLinus Torvalds addr = get_area(file, addr, len, pgoff, flags); 202307ab67c8SLinus Torvalds if (IS_ERR_VALUE(addr)) 202407ab67c8SLinus Torvalds return addr; 202507ab67c8SLinus Torvalds 20261da177e4SLinus Torvalds if (addr > TASK_SIZE - len) 20271da177e4SLinus Torvalds return -ENOMEM; 2028de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 20291da177e4SLinus Torvalds return -EINVAL; 203006abdfb4SBenjamin Herrenschmidt 20319ac4ed4bSAl Viro addr = arch_rebalance_pgtables(addr, len); 20329ac4ed4bSAl Viro error = security_mmap_addr(addr); 20339ac4ed4bSAl Viro return error ? error : addr; 20341da177e4SLinus Torvalds } 20351da177e4SLinus Torvalds 20361da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area); 20371da177e4SLinus Torvalds 20381da177e4SLinus Torvalds /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */ 20391da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) 20401da177e4SLinus Torvalds { 2041615d6e87SDavidlohr Bueso struct rb_node *rb_node; 2042615d6e87SDavidlohr Bueso struct vm_area_struct *vma; 20431da177e4SLinus Torvalds 20441da177e4SLinus Torvalds /* Check the cache first. */ 2045615d6e87SDavidlohr Bueso vma = vmacache_find(mm, addr); 2046615d6e87SDavidlohr Bueso if (likely(vma)) 2047615d6e87SDavidlohr Bueso return vma; 20481da177e4SLinus Torvalds 20491da177e4SLinus Torvalds rb_node = mm->mm_rb.rb_node; 20501da177e4SLinus Torvalds 20511da177e4SLinus Torvalds while (rb_node) { 2052615d6e87SDavidlohr Bueso struct vm_area_struct *tmp; 20531da177e4SLinus Torvalds 2054615d6e87SDavidlohr Bueso tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb); 20551da177e4SLinus Torvalds 2056615d6e87SDavidlohr Bueso if (tmp->vm_end > addr) { 2057615d6e87SDavidlohr Bueso vma = tmp; 2058615d6e87SDavidlohr Bueso if (tmp->vm_start <= addr) 20591da177e4SLinus Torvalds break; 20601da177e4SLinus Torvalds rb_node = rb_node->rb_left; 20611da177e4SLinus Torvalds } else 20621da177e4SLinus Torvalds rb_node = rb_node->rb_right; 20631da177e4SLinus Torvalds } 2064615d6e87SDavidlohr Bueso 20651da177e4SLinus Torvalds if (vma) 2066615d6e87SDavidlohr Bueso vmacache_update(addr, vma); 20671da177e4SLinus Torvalds return vma; 20681da177e4SLinus Torvalds } 20691da177e4SLinus Torvalds 20701da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma); 20711da177e4SLinus Torvalds 20726bd4837dSKOSAKI Motohiro /* 20736bd4837dSKOSAKI Motohiro * Same as find_vma, but also return a pointer to the previous VMA in *pprev. 20746bd4837dSKOSAKI Motohiro */ 20751da177e4SLinus Torvalds struct vm_area_struct * 20761da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr, 20771da177e4SLinus Torvalds struct vm_area_struct **pprev) 20781da177e4SLinus Torvalds { 20796bd4837dSKOSAKI Motohiro struct vm_area_struct *vma; 20801da177e4SLinus Torvalds 20816bd4837dSKOSAKI Motohiro vma = find_vma(mm, addr); 208283cd904dSMikulas Patocka if (vma) { 208383cd904dSMikulas Patocka *pprev = vma->vm_prev; 208483cd904dSMikulas Patocka } else { 208583cd904dSMikulas Patocka struct rb_node *rb_node = mm->mm_rb.rb_node; 208683cd904dSMikulas Patocka *pprev = NULL; 208783cd904dSMikulas Patocka while (rb_node) { 208883cd904dSMikulas Patocka *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb); 208983cd904dSMikulas Patocka rb_node = rb_node->rb_right; 209083cd904dSMikulas Patocka } 209183cd904dSMikulas Patocka } 20926bd4837dSKOSAKI Motohiro return vma; 20931da177e4SLinus Torvalds } 20941da177e4SLinus Torvalds 20951da177e4SLinus Torvalds /* 20961da177e4SLinus Torvalds * Verify that the stack growth is acceptable and 20971da177e4SLinus Torvalds * update accounting. This is shared with both the 20981da177e4SLinus Torvalds * grow-up and grow-down cases. 20991da177e4SLinus Torvalds */ 21001da177e4SLinus Torvalds static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow) 21011da177e4SLinus Torvalds { 21021da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 21031da177e4SLinus Torvalds struct rlimit *rlim = current->signal->rlim; 2104690eac53SLinus Torvalds unsigned long new_start, actual_size; 21051da177e4SLinus Torvalds 21061da177e4SLinus Torvalds /* address space limit tests */ 210784638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vma->vm_flags, grow)) 21081da177e4SLinus Torvalds return -ENOMEM; 21091da177e4SLinus Torvalds 21101da177e4SLinus Torvalds /* Stack limit test */ 2111690eac53SLinus Torvalds actual_size = size; 2112690eac53SLinus Torvalds if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN))) 2113690eac53SLinus Torvalds actual_size -= PAGE_SIZE; 21144db0c3c2SJason Low if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur)) 21151da177e4SLinus Torvalds return -ENOMEM; 21161da177e4SLinus Torvalds 21171da177e4SLinus Torvalds /* mlock limit tests */ 21181da177e4SLinus Torvalds if (vma->vm_flags & VM_LOCKED) { 21191da177e4SLinus Torvalds unsigned long locked; 21201da177e4SLinus Torvalds unsigned long limit; 21211da177e4SLinus Torvalds locked = mm->locked_vm + grow; 21224db0c3c2SJason Low limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur); 212359e99e5bSJiri Slaby limit >>= PAGE_SHIFT; 21241da177e4SLinus Torvalds if (locked > limit && !capable(CAP_IPC_LOCK)) 21251da177e4SLinus Torvalds return -ENOMEM; 21261da177e4SLinus Torvalds } 21271da177e4SLinus Torvalds 21280d59a01bSAdam Litke /* Check to ensure the stack will not grow into a hugetlb-only region */ 21290d59a01bSAdam Litke new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start : 21300d59a01bSAdam Litke vma->vm_end - size; 21310d59a01bSAdam Litke if (is_hugepage_only_range(vma->vm_mm, new_start, size)) 21320d59a01bSAdam Litke return -EFAULT; 21330d59a01bSAdam Litke 21341da177e4SLinus Torvalds /* 21351da177e4SLinus Torvalds * Overcommit.. This must be the final test, as it will 21361da177e4SLinus Torvalds * update security statistics. 21371da177e4SLinus Torvalds */ 213805fa199dSHugh Dickins if (security_vm_enough_memory_mm(mm, grow)) 21391da177e4SLinus Torvalds return -ENOMEM; 21401da177e4SLinus Torvalds 21411da177e4SLinus Torvalds return 0; 21421da177e4SLinus Torvalds } 21431da177e4SLinus Torvalds 214446dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64) 21451da177e4SLinus Torvalds /* 214646dea3d0SHugh Dickins * PA-RISC uses this for its stack; IA64 for its Register Backing Store. 214746dea3d0SHugh Dickins * vma is the last one with address > vma->vm_end. Have to extend vma. 21481da177e4SLinus Torvalds */ 214946dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address) 21501da177e4SLinus Torvalds { 215109357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 215212352d3cSKonstantin Khlebnikov int error = 0; 21531da177e4SLinus Torvalds 21541da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSUP)) 21551da177e4SLinus Torvalds return -EFAULT; 21561da177e4SLinus Torvalds 215712352d3cSKonstantin Khlebnikov /* Guard against wrapping around to address 0. */ 215812352d3cSKonstantin Khlebnikov if (address < PAGE_ALIGN(address+4)) 215912352d3cSKonstantin Khlebnikov address = PAGE_ALIGN(address+4); 216012352d3cSKonstantin Khlebnikov else 216112352d3cSKonstantin Khlebnikov return -ENOMEM; 216212352d3cSKonstantin Khlebnikov 216312352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 21641da177e4SLinus Torvalds if (unlikely(anon_vma_prepare(vma))) 21651da177e4SLinus Torvalds return -ENOMEM; 21661da177e4SLinus Torvalds 21671da177e4SLinus Torvalds /* 21681da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 21691da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 21701da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 21711da177e4SLinus Torvalds */ 217212352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 21731da177e4SLinus Torvalds 21741da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 21751da177e4SLinus Torvalds if (address > vma->vm_end) { 21761da177e4SLinus Torvalds unsigned long size, grow; 21771da177e4SLinus Torvalds 21781da177e4SLinus Torvalds size = address - vma->vm_start; 21791da177e4SLinus Torvalds grow = (address - vma->vm_end) >> PAGE_SHIFT; 21801da177e4SLinus Torvalds 218142c36f63SHugh Dickins error = -ENOMEM; 218242c36f63SHugh Dickins if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) { 21831da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 21843af9e859SEric B Munson if (!error) { 21854128997bSMichel Lespinasse /* 21864128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 21874128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 21884128997bSMichel Lespinasse * lock here, so we need to protect against 21894128997bSMichel Lespinasse * concurrent vma expansions. 219012352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 21914128997bSMichel Lespinasse * we don't guarantee that all growable vmas 21924128997bSMichel Lespinasse * in a mm share the same root anon vma. 21934128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 21944128997bSMichel Lespinasse * against concurrent vma expansions. 21954128997bSMichel Lespinasse */ 219609357814SOleg Nesterov spin_lock(&mm->page_table_lock); 219787e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 219809357814SOleg Nesterov mm->locked_vm += grow; 219984638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2200bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 22011da177e4SLinus Torvalds vma->vm_end = address; 2202bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2203d3737187SMichel Lespinasse if (vma->vm_next) 2204d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 2205d3737187SMichel Lespinasse else 220609357814SOleg Nesterov mm->highest_vm_end = address; 220709357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 22084128997bSMichel Lespinasse 22093af9e859SEric B Munson perf_event_mmap(vma); 22103af9e859SEric B Munson } 22111da177e4SLinus Torvalds } 221242c36f63SHugh Dickins } 221312352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 22146d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 221509357814SOleg Nesterov validate_mm(mm); 22161da177e4SLinus Torvalds return error; 22171da177e4SLinus Torvalds } 221846dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */ 221946dea3d0SHugh Dickins 22201da177e4SLinus Torvalds /* 22211da177e4SLinus Torvalds * vma is the first one with address < vma->vm_start. Have to extend vma. 22221da177e4SLinus Torvalds */ 2223d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma, 2224b6a2fea3SOllie Wild unsigned long address) 22251da177e4SLinus Torvalds { 222609357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 22271da177e4SLinus Torvalds int error; 22281da177e4SLinus Torvalds 22298869477aSEric Paris address &= PAGE_MASK; 2230e5467859SAl Viro error = security_mmap_addr(address); 22318869477aSEric Paris if (error) 22328869477aSEric Paris return error; 22338869477aSEric Paris 223412352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 223512352d3cSKonstantin Khlebnikov if (unlikely(anon_vma_prepare(vma))) 223612352d3cSKonstantin Khlebnikov return -ENOMEM; 22371da177e4SLinus Torvalds 22381da177e4SLinus Torvalds /* 22391da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 22401da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 22411da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 22421da177e4SLinus Torvalds */ 224312352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 22441da177e4SLinus Torvalds 22451da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 22461da177e4SLinus Torvalds if (address < vma->vm_start) { 22471da177e4SLinus Torvalds unsigned long size, grow; 22481da177e4SLinus Torvalds 22491da177e4SLinus Torvalds size = vma->vm_end - address; 22501da177e4SLinus Torvalds grow = (vma->vm_start - address) >> PAGE_SHIFT; 22511da177e4SLinus Torvalds 2252a626ca6aSLinus Torvalds error = -ENOMEM; 2253a626ca6aSLinus Torvalds if (grow <= vma->vm_pgoff) { 22541da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 22551da177e4SLinus Torvalds if (!error) { 22564128997bSMichel Lespinasse /* 22574128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 22584128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 22594128997bSMichel Lespinasse * lock here, so we need to protect against 22604128997bSMichel Lespinasse * concurrent vma expansions. 226112352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 22624128997bSMichel Lespinasse * we don't guarantee that all growable vmas 22634128997bSMichel Lespinasse * in a mm share the same root anon vma. 22644128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 22654128997bSMichel Lespinasse * against concurrent vma expansions. 22664128997bSMichel Lespinasse */ 226709357814SOleg Nesterov spin_lock(&mm->page_table_lock); 226887e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 226909357814SOleg Nesterov mm->locked_vm += grow; 227084638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2271bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 22721da177e4SLinus Torvalds vma->vm_start = address; 22731da177e4SLinus Torvalds vma->vm_pgoff -= grow; 2274bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2275d3737187SMichel Lespinasse vma_gap_update(vma); 227609357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 22774128997bSMichel Lespinasse 22783af9e859SEric B Munson perf_event_mmap(vma); 22791da177e4SLinus Torvalds } 22801da177e4SLinus Torvalds } 2281a626ca6aSLinus Torvalds } 228212352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 22836d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 228409357814SOleg Nesterov validate_mm(mm); 22851da177e4SLinus Torvalds return error; 22861da177e4SLinus Torvalds } 22871da177e4SLinus Torvalds 228809884964SLinus Torvalds /* 228909884964SLinus Torvalds * Note how expand_stack() refuses to expand the stack all the way to 229009884964SLinus Torvalds * abut the next virtual mapping, *unless* that mapping itself is also 229109884964SLinus Torvalds * a stack mapping. We want to leave room for a guard page, after all 229209884964SLinus Torvalds * (the guard page itself is not added here, that is done by the 229309884964SLinus Torvalds * actual page faulting logic) 229409884964SLinus Torvalds * 229509884964SLinus Torvalds * This matches the behavior of the guard page logic (see mm/memory.c: 229609884964SLinus Torvalds * check_stack_guard_page()), which only allows the guard page to be 229709884964SLinus Torvalds * removed under these circumstances. 229809884964SLinus Torvalds */ 2299b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP 2300b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2301b6a2fea3SOllie Wild { 230209884964SLinus Torvalds struct vm_area_struct *next; 230309884964SLinus Torvalds 230409884964SLinus Torvalds address &= PAGE_MASK; 230509884964SLinus Torvalds next = vma->vm_next; 230609884964SLinus Torvalds if (next && next->vm_start == address + PAGE_SIZE) { 230709884964SLinus Torvalds if (!(next->vm_flags & VM_GROWSUP)) 230809884964SLinus Torvalds return -ENOMEM; 230909884964SLinus Torvalds } 2310b6a2fea3SOllie Wild return expand_upwards(vma, address); 2311b6a2fea3SOllie Wild } 2312b6a2fea3SOllie Wild 2313b6a2fea3SOllie Wild struct vm_area_struct * 2314b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr) 2315b6a2fea3SOllie Wild { 2316b6a2fea3SOllie Wild struct vm_area_struct *vma, *prev; 2317b6a2fea3SOllie Wild 2318b6a2fea3SOllie Wild addr &= PAGE_MASK; 2319b6a2fea3SOllie Wild vma = find_vma_prev(mm, addr, &prev); 2320b6a2fea3SOllie Wild if (vma && (vma->vm_start <= addr)) 2321b6a2fea3SOllie Wild return vma; 23221c127185SDenys Vlasenko if (!prev || expand_stack(prev, addr)) 2323b6a2fea3SOllie Wild return NULL; 2324cea10a19SMichel Lespinasse if (prev->vm_flags & VM_LOCKED) 2325fc05f566SKirill A. Shutemov populate_vma_page_range(prev, addr, prev->vm_end, NULL); 2326b6a2fea3SOllie Wild return prev; 2327b6a2fea3SOllie Wild } 2328b6a2fea3SOllie Wild #else 2329b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2330b6a2fea3SOllie Wild { 233109884964SLinus Torvalds struct vm_area_struct *prev; 233209884964SLinus Torvalds 233309884964SLinus Torvalds address &= PAGE_MASK; 233409884964SLinus Torvalds prev = vma->vm_prev; 233509884964SLinus Torvalds if (prev && prev->vm_end == address) { 233609884964SLinus Torvalds if (!(prev->vm_flags & VM_GROWSDOWN)) 233709884964SLinus Torvalds return -ENOMEM; 233809884964SLinus Torvalds } 2339b6a2fea3SOllie Wild return expand_downwards(vma, address); 2340b6a2fea3SOllie Wild } 2341b6a2fea3SOllie Wild 23421da177e4SLinus Torvalds struct vm_area_struct * 23431da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr) 23441da177e4SLinus Torvalds { 23451da177e4SLinus Torvalds struct vm_area_struct *vma; 23461da177e4SLinus Torvalds unsigned long start; 23471da177e4SLinus Torvalds 23481da177e4SLinus Torvalds addr &= PAGE_MASK; 23491da177e4SLinus Torvalds vma = find_vma(mm, addr); 23501da177e4SLinus Torvalds if (!vma) 23511da177e4SLinus Torvalds return NULL; 23521da177e4SLinus Torvalds if (vma->vm_start <= addr) 23531da177e4SLinus Torvalds return vma; 23541da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSDOWN)) 23551da177e4SLinus Torvalds return NULL; 23561da177e4SLinus Torvalds start = vma->vm_start; 23571da177e4SLinus Torvalds if (expand_stack(vma, addr)) 23581da177e4SLinus Torvalds return NULL; 2359cea10a19SMichel Lespinasse if (vma->vm_flags & VM_LOCKED) 2360fc05f566SKirill A. Shutemov populate_vma_page_range(vma, addr, start, NULL); 23611da177e4SLinus Torvalds return vma; 23621da177e4SLinus Torvalds } 23631da177e4SLinus Torvalds #endif 23641da177e4SLinus Torvalds 2365e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma); 2366e1d6d01aSJesse Barnes 23672c0b3814SHugh Dickins /* 23682c0b3814SHugh Dickins * Ok - we have the memory areas we should free on the vma list, 23692c0b3814SHugh Dickins * so release them, and do the vma updates. 23701da177e4SLinus Torvalds * 23712c0b3814SHugh Dickins * Called with the mm semaphore held. 23721da177e4SLinus Torvalds */ 23732c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma) 23741da177e4SLinus Torvalds { 23754f74d2c8SLinus Torvalds unsigned long nr_accounted = 0; 23764f74d2c8SLinus Torvalds 2377365e9c87SHugh Dickins /* Update high watermark before we lower total_vm */ 2378365e9c87SHugh Dickins update_hiwater_vm(mm); 23792c0b3814SHugh Dickins do { 2380ab50b8edSHugh Dickins long nrpages = vma_pages(vma); 23811da177e4SLinus Torvalds 23824f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 23834f74d2c8SLinus Torvalds nr_accounted += nrpages; 238484638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, -nrpages); 2385a8fb5618SHugh Dickins vma = remove_vma(vma); 2386146425a3SHugh Dickins } while (vma); 23874f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 23881da177e4SLinus Torvalds validate_mm(mm); 23891da177e4SLinus Torvalds } 23901da177e4SLinus Torvalds 23911da177e4SLinus Torvalds /* 23921da177e4SLinus Torvalds * Get rid of page table information in the indicated region. 23931da177e4SLinus Torvalds * 2394f10df686SPaolo 'Blaisorblade' Giarrusso * Called with the mm semaphore held. 23951da177e4SLinus Torvalds */ 23961da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm, 2397e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 2398e0da382cSHugh Dickins unsigned long start, unsigned long end) 23991da177e4SLinus Torvalds { 2400e0da382cSHugh Dickins struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap; 2401d16dfc55SPeter Zijlstra struct mmu_gather tlb; 24021da177e4SLinus Torvalds 24031da177e4SLinus Torvalds lru_add_drain(); 24042b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, start, end); 2405365e9c87SHugh Dickins update_hiwater_rss(mm); 24064f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, start, end); 2407d16dfc55SPeter Zijlstra free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS, 24086ee8630eSHugh Dickins next ? next->vm_start : USER_PGTABLES_CEILING); 2409d16dfc55SPeter Zijlstra tlb_finish_mmu(&tlb, start, end); 24101da177e4SLinus Torvalds } 24111da177e4SLinus Torvalds 24121da177e4SLinus Torvalds /* 24131da177e4SLinus Torvalds * Create a list of vma's touched by the unmap, removing them from the mm's 24141da177e4SLinus Torvalds * vma list as we go.. 24151da177e4SLinus Torvalds */ 24161da177e4SLinus Torvalds static void 24171da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma, 24181da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long end) 24191da177e4SLinus Torvalds { 24201da177e4SLinus Torvalds struct vm_area_struct **insertion_point; 24211da177e4SLinus Torvalds struct vm_area_struct *tail_vma = NULL; 24221da177e4SLinus Torvalds 24231da177e4SLinus Torvalds insertion_point = (prev ? &prev->vm_next : &mm->mmap); 2424297c5eeeSLinus Torvalds vma->vm_prev = NULL; 24251da177e4SLinus Torvalds do { 2426d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 24271da177e4SLinus Torvalds mm->map_count--; 24281da177e4SLinus Torvalds tail_vma = vma; 24291da177e4SLinus Torvalds vma = vma->vm_next; 24301da177e4SLinus Torvalds } while (vma && vma->vm_start < end); 24311da177e4SLinus Torvalds *insertion_point = vma; 2432d3737187SMichel Lespinasse if (vma) { 2433297c5eeeSLinus Torvalds vma->vm_prev = prev; 2434d3737187SMichel Lespinasse vma_gap_update(vma); 2435d3737187SMichel Lespinasse } else 2436d3737187SMichel Lespinasse mm->highest_vm_end = prev ? prev->vm_end : 0; 24371da177e4SLinus Torvalds tail_vma->vm_next = NULL; 2438615d6e87SDavidlohr Bueso 2439615d6e87SDavidlohr Bueso /* Kill the cache */ 2440615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 24411da177e4SLinus Torvalds } 24421da177e4SLinus Torvalds 24431da177e4SLinus Torvalds /* 2444659ace58SKOSAKI Motohiro * __split_vma() bypasses sysctl_max_map_count checking. We use this on the 2445659ace58SKOSAKI Motohiro * munmap path where it doesn't make sense to fail. 24461da177e4SLinus Torvalds */ 2447659ace58SKOSAKI Motohiro static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 24481da177e4SLinus Torvalds unsigned long addr, int new_below) 24491da177e4SLinus Torvalds { 24501da177e4SLinus Torvalds struct vm_area_struct *new; 2451e3975891SChen Gang int err; 24521da177e4SLinus Torvalds 2453a5516438SAndi Kleen if (is_vm_hugetlb_page(vma) && (addr & 2454a5516438SAndi Kleen ~(huge_page_mask(hstate_vma(vma))))) 24551da177e4SLinus Torvalds return -EINVAL; 24561da177e4SLinus Torvalds 2457e94b1766SChristoph Lameter new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 24581da177e4SLinus Torvalds if (!new) 2459e3975891SChen Gang return -ENOMEM; 24601da177e4SLinus Torvalds 24611da177e4SLinus Torvalds /* most fields are the same, copy all, and then fixup */ 24621da177e4SLinus Torvalds *new = *vma; 24631da177e4SLinus Torvalds 24645beb4930SRik van Riel INIT_LIST_HEAD(&new->anon_vma_chain); 24655beb4930SRik van Riel 24661da177e4SLinus Torvalds if (new_below) 24671da177e4SLinus Torvalds new->vm_end = addr; 24681da177e4SLinus Torvalds else { 24691da177e4SLinus Torvalds new->vm_start = addr; 24701da177e4SLinus Torvalds new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT); 24711da177e4SLinus Torvalds } 24721da177e4SLinus Torvalds 2473ef0855d3SOleg Nesterov err = vma_dup_policy(vma, new); 2474ef0855d3SOleg Nesterov if (err) 24755beb4930SRik van Riel goto out_free_vma; 24761da177e4SLinus Torvalds 2477c4ea95d7SDaniel Forrest err = anon_vma_clone(new, vma); 2478c4ea95d7SDaniel Forrest if (err) 24795beb4930SRik van Riel goto out_free_mpol; 24805beb4930SRik van Riel 2481e9714acfSKonstantin Khlebnikov if (new->vm_file) 24821da177e4SLinus Torvalds get_file(new->vm_file); 24831da177e4SLinus Torvalds 24841da177e4SLinus Torvalds if (new->vm_ops && new->vm_ops->open) 24851da177e4SLinus Torvalds new->vm_ops->open(new); 24861da177e4SLinus Torvalds 24871da177e4SLinus Torvalds if (new_below) 24885beb4930SRik van Riel err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff + 24891da177e4SLinus Torvalds ((addr - new->vm_start) >> PAGE_SHIFT), new); 24901da177e4SLinus Torvalds else 24915beb4930SRik van Riel err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new); 24921da177e4SLinus Torvalds 24935beb4930SRik van Riel /* Success. */ 24945beb4930SRik van Riel if (!err) 24951da177e4SLinus Torvalds return 0; 24965beb4930SRik van Riel 24975beb4930SRik van Riel /* Clean everything up if vma_adjust failed. */ 249858927533SRik van Riel if (new->vm_ops && new->vm_ops->close) 24995beb4930SRik van Riel new->vm_ops->close(new); 2500e9714acfSKonstantin Khlebnikov if (new->vm_file) 25015beb4930SRik van Riel fput(new->vm_file); 25022aeadc30SAndrea Arcangeli unlink_anon_vmas(new); 25035beb4930SRik van Riel out_free_mpol: 2504ef0855d3SOleg Nesterov mpol_put(vma_policy(new)); 25055beb4930SRik van Riel out_free_vma: 25065beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new); 25075beb4930SRik van Riel return err; 25081da177e4SLinus Torvalds } 25091da177e4SLinus Torvalds 2510659ace58SKOSAKI Motohiro /* 2511659ace58SKOSAKI Motohiro * Split a vma into two pieces at address 'addr', a new vma is allocated 2512659ace58SKOSAKI Motohiro * either for the first part or the tail. 2513659ace58SKOSAKI Motohiro */ 2514659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 2515659ace58SKOSAKI Motohiro unsigned long addr, int new_below) 2516659ace58SKOSAKI Motohiro { 2517659ace58SKOSAKI Motohiro if (mm->map_count >= sysctl_max_map_count) 2518659ace58SKOSAKI Motohiro return -ENOMEM; 2519659ace58SKOSAKI Motohiro 2520659ace58SKOSAKI Motohiro return __split_vma(mm, vma, addr, new_below); 2521659ace58SKOSAKI Motohiro } 2522659ace58SKOSAKI Motohiro 25231da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds 25241da177e4SLinus Torvalds * what needs doing, and the areas themselves, which do the 25251da177e4SLinus Torvalds * work. This now handles partial unmappings. 25261da177e4SLinus Torvalds * Jeremy Fitzhardinge <jeremy@goop.org> 25271da177e4SLinus Torvalds */ 25281da177e4SLinus Torvalds int do_munmap(struct mm_struct *mm, unsigned long start, size_t len) 25291da177e4SLinus Torvalds { 25301da177e4SLinus Torvalds unsigned long end; 2531146425a3SHugh Dickins struct vm_area_struct *vma, *prev, *last; 25321da177e4SLinus Torvalds 2533de1741a1SAlexander Kuleshov if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start) 25341da177e4SLinus Torvalds return -EINVAL; 25351da177e4SLinus Torvalds 2536cc71aba3Svishnu.ps len = PAGE_ALIGN(len); 2537cc71aba3Svishnu.ps if (len == 0) 25381da177e4SLinus Torvalds return -EINVAL; 25391da177e4SLinus Torvalds 25401da177e4SLinus Torvalds /* Find the first overlapping VMA */ 25419be34c9dSLinus Torvalds vma = find_vma(mm, start); 2542146425a3SHugh Dickins if (!vma) 25431da177e4SLinus Torvalds return 0; 25449be34c9dSLinus Torvalds prev = vma->vm_prev; 2545146425a3SHugh Dickins /* we have start < vma->vm_end */ 25461da177e4SLinus Torvalds 25471da177e4SLinus Torvalds /* if it doesn't overlap, we have nothing.. */ 25481da177e4SLinus Torvalds end = start + len; 2549146425a3SHugh Dickins if (vma->vm_start >= end) 25501da177e4SLinus Torvalds return 0; 25511da177e4SLinus Torvalds 25521da177e4SLinus Torvalds /* 25531da177e4SLinus Torvalds * If we need to split any vma, do it now to save pain later. 25541da177e4SLinus Torvalds * 25551da177e4SLinus Torvalds * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially 25561da177e4SLinus Torvalds * unmapped vm_area_struct will remain in use: so lower split_vma 25571da177e4SLinus Torvalds * places tmp vma above, and higher split_vma places tmp vma below. 25581da177e4SLinus Torvalds */ 2559146425a3SHugh Dickins if (start > vma->vm_start) { 2560659ace58SKOSAKI Motohiro int error; 2561659ace58SKOSAKI Motohiro 2562659ace58SKOSAKI Motohiro /* 2563659ace58SKOSAKI Motohiro * Make sure that map_count on return from munmap() will 2564659ace58SKOSAKI Motohiro * not exceed its limit; but let map_count go just above 2565659ace58SKOSAKI Motohiro * its limit temporarily, to help free resources as expected. 2566659ace58SKOSAKI Motohiro */ 2567659ace58SKOSAKI Motohiro if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count) 2568659ace58SKOSAKI Motohiro return -ENOMEM; 2569659ace58SKOSAKI Motohiro 2570659ace58SKOSAKI Motohiro error = __split_vma(mm, vma, start, 0); 25711da177e4SLinus Torvalds if (error) 25721da177e4SLinus Torvalds return error; 2573146425a3SHugh Dickins prev = vma; 25741da177e4SLinus Torvalds } 25751da177e4SLinus Torvalds 25761da177e4SLinus Torvalds /* Does it split the last one? */ 25771da177e4SLinus Torvalds last = find_vma(mm, end); 25781da177e4SLinus Torvalds if (last && end > last->vm_start) { 2579659ace58SKOSAKI Motohiro int error = __split_vma(mm, last, end, 1); 25801da177e4SLinus Torvalds if (error) 25811da177e4SLinus Torvalds return error; 25821da177e4SLinus Torvalds } 2583146425a3SHugh Dickins vma = prev ? prev->vm_next : mm->mmap; 25841da177e4SLinus Torvalds 25851da177e4SLinus Torvalds /* 2586ba470de4SRik van Riel * unlock any mlock()ed ranges before detaching vmas 2587ba470de4SRik van Riel */ 2588ba470de4SRik van Riel if (mm->locked_vm) { 2589ba470de4SRik van Riel struct vm_area_struct *tmp = vma; 2590ba470de4SRik van Riel while (tmp && tmp->vm_start < end) { 2591ba470de4SRik van Riel if (tmp->vm_flags & VM_LOCKED) { 2592ba470de4SRik van Riel mm->locked_vm -= vma_pages(tmp); 2593ba470de4SRik van Riel munlock_vma_pages_all(tmp); 2594ba470de4SRik van Riel } 2595ba470de4SRik van Riel tmp = tmp->vm_next; 2596ba470de4SRik van Riel } 2597ba470de4SRik van Riel } 2598ba470de4SRik van Riel 2599ba470de4SRik van Riel /* 26001da177e4SLinus Torvalds * Remove the vma's, and unmap the actual pages 26011da177e4SLinus Torvalds */ 2602146425a3SHugh Dickins detach_vmas_to_be_unmapped(mm, vma, prev, end); 2603146425a3SHugh Dickins unmap_region(mm, vma, prev, start, end); 26041da177e4SLinus Torvalds 26051de4fa14SDave Hansen arch_unmap(mm, vma, start, end); 26061de4fa14SDave Hansen 26071da177e4SLinus Torvalds /* Fix up all other VM information */ 26082c0b3814SHugh Dickins remove_vma_list(mm, vma); 26091da177e4SLinus Torvalds 26101da177e4SLinus Torvalds return 0; 26111da177e4SLinus Torvalds } 26121da177e4SLinus Torvalds 2613bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len) 2614a46ef99dSLinus Torvalds { 2615a46ef99dSLinus Torvalds int ret; 2616bfce281cSAl Viro struct mm_struct *mm = current->mm; 2617a46ef99dSLinus Torvalds 2618a46ef99dSLinus Torvalds down_write(&mm->mmap_sem); 2619a46ef99dSLinus Torvalds ret = do_munmap(mm, start, len); 2620a46ef99dSLinus Torvalds up_write(&mm->mmap_sem); 2621a46ef99dSLinus Torvalds return ret; 2622a46ef99dSLinus Torvalds } 2623a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap); 2624a46ef99dSLinus Torvalds 26256a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len) 26261da177e4SLinus Torvalds { 26271da177e4SLinus Torvalds profile_munmap(addr); 2628bfce281cSAl Viro return vm_munmap(addr, len); 26291da177e4SLinus Torvalds } 26301da177e4SLinus Torvalds 2631c8d78c18SKirill A. Shutemov 2632c8d78c18SKirill A. Shutemov /* 2633c8d78c18SKirill A. Shutemov * Emulation of deprecated remap_file_pages() syscall. 2634c8d78c18SKirill A. Shutemov */ 2635c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size, 2636c8d78c18SKirill A. Shutemov unsigned long, prot, unsigned long, pgoff, unsigned long, flags) 2637c8d78c18SKirill A. Shutemov { 2638c8d78c18SKirill A. Shutemov 2639c8d78c18SKirill A. Shutemov struct mm_struct *mm = current->mm; 2640c8d78c18SKirill A. Shutemov struct vm_area_struct *vma; 2641c8d78c18SKirill A. Shutemov unsigned long populate = 0; 2642c8d78c18SKirill A. Shutemov unsigned long ret = -EINVAL; 2643c8d78c18SKirill A. Shutemov struct file *file; 2644c8d78c18SKirill A. Shutemov 2645c8d78c18SKirill A. Shutemov pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. " 2646c8d78c18SKirill A. Shutemov "See Documentation/vm/remap_file_pages.txt.\n", 2647c8d78c18SKirill A. Shutemov current->comm, current->pid); 2648c8d78c18SKirill A. Shutemov 2649c8d78c18SKirill A. Shutemov if (prot) 2650c8d78c18SKirill A. Shutemov return ret; 2651c8d78c18SKirill A. Shutemov start = start & PAGE_MASK; 2652c8d78c18SKirill A. Shutemov size = size & PAGE_MASK; 2653c8d78c18SKirill A. Shutemov 2654c8d78c18SKirill A. Shutemov if (start + size <= start) 2655c8d78c18SKirill A. Shutemov return ret; 2656c8d78c18SKirill A. Shutemov 2657c8d78c18SKirill A. Shutemov /* Does pgoff wrap? */ 2658c8d78c18SKirill A. Shutemov if (pgoff + (size >> PAGE_SHIFT) < pgoff) 2659c8d78c18SKirill A. Shutemov return ret; 2660c8d78c18SKirill A. Shutemov 2661c8d78c18SKirill A. Shutemov down_write(&mm->mmap_sem); 2662c8d78c18SKirill A. Shutemov vma = find_vma(mm, start); 2663c8d78c18SKirill A. Shutemov 2664c8d78c18SKirill A. Shutemov if (!vma || !(vma->vm_flags & VM_SHARED)) 2665c8d78c18SKirill A. Shutemov goto out; 2666c8d78c18SKirill A. Shutemov 2667*48f7df32SKirill A. Shutemov if (start < vma->vm_start) 2668c8d78c18SKirill A. Shutemov goto out; 2669c8d78c18SKirill A. Shutemov 2670*48f7df32SKirill A. Shutemov if (start + size > vma->vm_end) { 2671*48f7df32SKirill A. Shutemov struct vm_area_struct *next; 2672*48f7df32SKirill A. Shutemov 2673*48f7df32SKirill A. Shutemov for (next = vma->vm_next; next; next = next->vm_next) { 2674*48f7df32SKirill A. Shutemov /* hole between vmas ? */ 2675*48f7df32SKirill A. Shutemov if (next->vm_start != next->vm_prev->vm_end) 2676*48f7df32SKirill A. Shutemov goto out; 2677*48f7df32SKirill A. Shutemov 2678*48f7df32SKirill A. Shutemov if (next->vm_file != vma->vm_file) 2679*48f7df32SKirill A. Shutemov goto out; 2680*48f7df32SKirill A. Shutemov 2681*48f7df32SKirill A. Shutemov if (next->vm_flags != vma->vm_flags) 2682*48f7df32SKirill A. Shutemov goto out; 2683*48f7df32SKirill A. Shutemov 2684*48f7df32SKirill A. Shutemov if (start + size <= next->vm_end) 2685*48f7df32SKirill A. Shutemov break; 2686*48f7df32SKirill A. Shutemov } 2687*48f7df32SKirill A. Shutemov 2688*48f7df32SKirill A. Shutemov if (!next) 2689c8d78c18SKirill A. Shutemov goto out; 2690c8d78c18SKirill A. Shutemov } 2691c8d78c18SKirill A. Shutemov 2692c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_READ ? PROT_READ : 0; 2693c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0; 2694c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0; 2695c8d78c18SKirill A. Shutemov 2696c8d78c18SKirill A. Shutemov flags &= MAP_NONBLOCK; 2697c8d78c18SKirill A. Shutemov flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE; 2698c8d78c18SKirill A. Shutemov if (vma->vm_flags & VM_LOCKED) { 2699*48f7df32SKirill A. Shutemov struct vm_area_struct *tmp; 2700c8d78c18SKirill A. Shutemov flags |= MAP_LOCKED; 2701*48f7df32SKirill A. Shutemov 2702c8d78c18SKirill A. Shutemov /* drop PG_Mlocked flag for over-mapped range */ 2703*48f7df32SKirill A. Shutemov for (tmp = vma; tmp->vm_start >= start + size; 2704*48f7df32SKirill A. Shutemov tmp = tmp->vm_next) { 2705*48f7df32SKirill A. Shutemov munlock_vma_pages_range(tmp, 2706*48f7df32SKirill A. Shutemov max(tmp->vm_start, start), 2707*48f7df32SKirill A. Shutemov min(tmp->vm_end, start + size)); 2708*48f7df32SKirill A. Shutemov } 2709c8d78c18SKirill A. Shutemov } 2710c8d78c18SKirill A. Shutemov 2711c8d78c18SKirill A. Shutemov file = get_file(vma->vm_file); 2712c8d78c18SKirill A. Shutemov ret = do_mmap_pgoff(vma->vm_file, start, size, 2713c8d78c18SKirill A. Shutemov prot, flags, pgoff, &populate); 2714c8d78c18SKirill A. Shutemov fput(file); 2715c8d78c18SKirill A. Shutemov out: 2716c8d78c18SKirill A. Shutemov up_write(&mm->mmap_sem); 2717c8d78c18SKirill A. Shutemov if (populate) 2718c8d78c18SKirill A. Shutemov mm_populate(ret, populate); 2719c8d78c18SKirill A. Shutemov if (!IS_ERR_VALUE(ret)) 2720c8d78c18SKirill A. Shutemov ret = 0; 2721c8d78c18SKirill A. Shutemov return ret; 2722c8d78c18SKirill A. Shutemov } 2723c8d78c18SKirill A. Shutemov 27241da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm) 27251da177e4SLinus Torvalds { 2726a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM 27271da177e4SLinus Torvalds if (unlikely(down_read_trylock(&mm->mmap_sem))) { 27281da177e4SLinus Torvalds WARN_ON(1); 27291da177e4SLinus Torvalds up_read(&mm->mmap_sem); 27301da177e4SLinus Torvalds } 27311da177e4SLinus Torvalds #endif 27321da177e4SLinus Torvalds } 27331da177e4SLinus Torvalds 27341da177e4SLinus Torvalds /* 27351da177e4SLinus Torvalds * this is really a simplified "do_mmap". it only handles 27361da177e4SLinus Torvalds * anonymous maps. eventually we may be able to do some 27371da177e4SLinus Torvalds * brk-specific accounting here. 27381da177e4SLinus Torvalds */ 2739e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len) 27401da177e4SLinus Torvalds { 27411da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 27421da177e4SLinus Torvalds struct vm_area_struct *vma, *prev; 27431da177e4SLinus Torvalds unsigned long flags; 27441da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 27451da177e4SLinus Torvalds pgoff_t pgoff = addr >> PAGE_SHIFT; 27463a459756SKirill Korotaev int error; 27471da177e4SLinus Torvalds 27481da177e4SLinus Torvalds len = PAGE_ALIGN(len); 27491da177e4SLinus Torvalds if (!len) 27501da177e4SLinus Torvalds return addr; 27511da177e4SLinus Torvalds 27523a459756SKirill Korotaev flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags; 27533a459756SKirill Korotaev 27542c6a1016SAl Viro error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED); 2755de1741a1SAlexander Kuleshov if (offset_in_page(error)) 27563a459756SKirill Korotaev return error; 27573a459756SKirill Korotaev 2758363ee17fSDavidlohr Bueso error = mlock_future_check(mm, mm->def_flags, len); 2759363ee17fSDavidlohr Bueso if (error) 2760363ee17fSDavidlohr Bueso return error; 27611da177e4SLinus Torvalds 27621da177e4SLinus Torvalds /* 27631da177e4SLinus Torvalds * mm->mmap_sem is required to protect against another thread 27641da177e4SLinus Torvalds * changing the mappings in case we sleep. 27651da177e4SLinus Torvalds */ 27661da177e4SLinus Torvalds verify_mm_writelocked(mm); 27671da177e4SLinus Torvalds 27681da177e4SLinus Torvalds /* 27691da177e4SLinus Torvalds * Clear old maps. this also does some error checking for us 27701da177e4SLinus Torvalds */ 27719fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 27729fcd1457SRasmus Villemoes &rb_parent)) { 27731da177e4SLinus Torvalds if (do_munmap(mm, addr, len)) 27741da177e4SLinus Torvalds return -ENOMEM; 27751da177e4SLinus Torvalds } 27761da177e4SLinus Torvalds 27771da177e4SLinus Torvalds /* Check against address space limits *after* clearing old maps... */ 277884638335SKonstantin Khlebnikov if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT)) 27791da177e4SLinus Torvalds return -ENOMEM; 27801da177e4SLinus Torvalds 27811da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 27821da177e4SLinus Torvalds return -ENOMEM; 27831da177e4SLinus Torvalds 2784191c5424SAl Viro if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT)) 27851da177e4SLinus Torvalds return -ENOMEM; 27861da177e4SLinus Torvalds 27871da177e4SLinus Torvalds /* Can we just expand an old private anonymous mapping? */ 2788ba470de4SRik van Riel vma = vma_merge(mm, prev, addr, addr + len, flags, 278919a809afSAndrea Arcangeli NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX); 2790ba470de4SRik van Riel if (vma) 27911da177e4SLinus Torvalds goto out; 27921da177e4SLinus Torvalds 27931da177e4SLinus Torvalds /* 27941da177e4SLinus Torvalds * create a vma struct for an anonymous mapping 27951da177e4SLinus Torvalds */ 2796c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 27971da177e4SLinus Torvalds if (!vma) { 27981da177e4SLinus Torvalds vm_unacct_memory(len >> PAGE_SHIFT); 27991da177e4SLinus Torvalds return -ENOMEM; 28001da177e4SLinus Torvalds } 28011da177e4SLinus Torvalds 28025beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 28031da177e4SLinus Torvalds vma->vm_mm = mm; 28041da177e4SLinus Torvalds vma->vm_start = addr; 28051da177e4SLinus Torvalds vma->vm_end = addr + len; 28061da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 28071da177e4SLinus Torvalds vma->vm_flags = flags; 28083ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(flags); 28091da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 28101da177e4SLinus Torvalds out: 28113af9e859SEric B Munson perf_event_mmap(vma); 28121da177e4SLinus Torvalds mm->total_vm += len >> PAGE_SHIFT; 281384638335SKonstantin Khlebnikov mm->data_vm += len >> PAGE_SHIFT; 2814128557ffSMichel Lespinasse if (flags & VM_LOCKED) 2815ba470de4SRik van Riel mm->locked_vm += (len >> PAGE_SHIFT); 2816d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 28171da177e4SLinus Torvalds return addr; 28181da177e4SLinus Torvalds } 28191da177e4SLinus Torvalds 2820e4eb1ff6SLinus Torvalds unsigned long vm_brk(unsigned long addr, unsigned long len) 2821e4eb1ff6SLinus Torvalds { 2822e4eb1ff6SLinus Torvalds struct mm_struct *mm = current->mm; 2823e4eb1ff6SLinus Torvalds unsigned long ret; 2824128557ffSMichel Lespinasse bool populate; 2825e4eb1ff6SLinus Torvalds 2826e4eb1ff6SLinus Torvalds down_write(&mm->mmap_sem); 2827e4eb1ff6SLinus Torvalds ret = do_brk(addr, len); 2828128557ffSMichel Lespinasse populate = ((mm->def_flags & VM_LOCKED) != 0); 2829e4eb1ff6SLinus Torvalds up_write(&mm->mmap_sem); 2830128557ffSMichel Lespinasse if (populate) 2831128557ffSMichel Lespinasse mm_populate(addr, len); 2832e4eb1ff6SLinus Torvalds return ret; 2833e4eb1ff6SLinus Torvalds } 2834e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk); 28351da177e4SLinus Torvalds 28361da177e4SLinus Torvalds /* Release all mmaps. */ 28371da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm) 28381da177e4SLinus Torvalds { 2839d16dfc55SPeter Zijlstra struct mmu_gather tlb; 2840ba470de4SRik van Riel struct vm_area_struct *vma; 28411da177e4SLinus Torvalds unsigned long nr_accounted = 0; 28421da177e4SLinus Torvalds 2843d6dd61c8SJeremy Fitzhardinge /* mm's last user has gone, and its about to be pulled down */ 2844cddb8a5cSAndrea Arcangeli mmu_notifier_release(mm); 2845d6dd61c8SJeremy Fitzhardinge 2846ba470de4SRik van Riel if (mm->locked_vm) { 2847ba470de4SRik van Riel vma = mm->mmap; 2848ba470de4SRik van Riel while (vma) { 2849ba470de4SRik van Riel if (vma->vm_flags & VM_LOCKED) 2850ba470de4SRik van Riel munlock_vma_pages_all(vma); 2851ba470de4SRik van Riel vma = vma->vm_next; 2852ba470de4SRik van Riel } 2853ba470de4SRik van Riel } 28549480c53eSJeremy Fitzhardinge 28559480c53eSJeremy Fitzhardinge arch_exit_mmap(mm); 28569480c53eSJeremy Fitzhardinge 2857ba470de4SRik van Riel vma = mm->mmap; 28589480c53eSJeremy Fitzhardinge if (!vma) /* Can happen if dup_mmap() received an OOM */ 28599480c53eSJeremy Fitzhardinge return; 28609480c53eSJeremy Fitzhardinge 28611da177e4SLinus Torvalds lru_add_drain(); 28621da177e4SLinus Torvalds flush_cache_mm(mm); 28632b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, 0, -1); 2864901608d9SOleg Nesterov /* update_hiwater_rss(mm) here? but nobody should be looking */ 2865e0da382cSHugh Dickins /* Use -1 here to ensure all VMAs in the mm are unmapped */ 28664f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, 0, -1); 28679ba69294SHugh Dickins 28686ee8630eSHugh Dickins free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING); 2869853f5e26SAl Viro tlb_finish_mmu(&tlb, 0, -1); 28701da177e4SLinus Torvalds 28711da177e4SLinus Torvalds /* 28728f4f8c16SHugh Dickins * Walk the list again, actually closing and freeing it, 28738f4f8c16SHugh Dickins * with preemption enabled, without holding any MM locks. 28741da177e4SLinus Torvalds */ 28754f74d2c8SLinus Torvalds while (vma) { 28764f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 28774f74d2c8SLinus Torvalds nr_accounted += vma_pages(vma); 2878a8fb5618SHugh Dickins vma = remove_vma(vma); 28794f74d2c8SLinus Torvalds } 28804f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 28811da177e4SLinus Torvalds } 28821da177e4SLinus Torvalds 28831da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address 28841da177e4SLinus Torvalds * and into the inode's i_mmap tree. If vm_file is non-NULL 2885c8c06efaSDavidlohr Bueso * then i_mmap_rwsem is taken here. 28861da177e4SLinus Torvalds */ 28871da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 28881da177e4SLinus Torvalds { 28896597d783SHugh Dickins struct vm_area_struct *prev; 28901da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 28911da177e4SLinus Torvalds 2892c9d13f5fSChen Gang if (find_vma_links(mm, vma->vm_start, vma->vm_end, 2893c9d13f5fSChen Gang &prev, &rb_link, &rb_parent)) 2894c9d13f5fSChen Gang return -ENOMEM; 2895c9d13f5fSChen Gang if ((vma->vm_flags & VM_ACCOUNT) && 2896c9d13f5fSChen Gang security_vm_enough_memory_mm(mm, vma_pages(vma))) 2897c9d13f5fSChen Gang return -ENOMEM; 2898c9d13f5fSChen Gang 28991da177e4SLinus Torvalds /* 29001da177e4SLinus Torvalds * The vm_pgoff of a purely anonymous vma should be irrelevant 29011da177e4SLinus Torvalds * until its first write fault, when page's anon_vma and index 29021da177e4SLinus Torvalds * are set. But now set the vm_pgoff it will almost certainly 29031da177e4SLinus Torvalds * end up with (unless mremap moves it elsewhere before that 29041da177e4SLinus Torvalds * first wfault), so /proc/pid/maps tells a consistent story. 29051da177e4SLinus Torvalds * 29061da177e4SLinus Torvalds * By setting it to reflect the virtual start address of the 29071da177e4SLinus Torvalds * vma, merges and splits can happen in a seamless way, just 29081da177e4SLinus Torvalds * using the existing file pgoff checks and manipulations. 29091da177e4SLinus Torvalds * Similarly in do_mmap_pgoff and in do_brk. 29101da177e4SLinus Torvalds */ 29118a9cc3b5SOleg Nesterov if (vma_is_anonymous(vma)) { 29121da177e4SLinus Torvalds BUG_ON(vma->anon_vma); 29131da177e4SLinus Torvalds vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT; 29141da177e4SLinus Torvalds } 29152b144498SSrikar Dronamraju 29161da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 29171da177e4SLinus Torvalds return 0; 29181da177e4SLinus Torvalds } 29191da177e4SLinus Torvalds 29201da177e4SLinus Torvalds /* 29211da177e4SLinus Torvalds * Copy the vma structure to a new location in the same mm, 29221da177e4SLinus Torvalds * prior to moving page table entries, to effect an mremap move. 29231da177e4SLinus Torvalds */ 29241da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap, 292538a76013SMichel Lespinasse unsigned long addr, unsigned long len, pgoff_t pgoff, 292638a76013SMichel Lespinasse bool *need_rmap_locks) 29271da177e4SLinus Torvalds { 29281da177e4SLinus Torvalds struct vm_area_struct *vma = *vmap; 29291da177e4SLinus Torvalds unsigned long vma_start = vma->vm_start; 29301da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 29311da177e4SLinus Torvalds struct vm_area_struct *new_vma, *prev; 29321da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 2933948f017bSAndrea Arcangeli bool faulted_in_anon_vma = true; 29341da177e4SLinus Torvalds 29351da177e4SLinus Torvalds /* 29361da177e4SLinus Torvalds * If anonymous vma has not yet been faulted, update new pgoff 29371da177e4SLinus Torvalds * to match new location, to increase its chance of merging. 29381da177e4SLinus Torvalds */ 2939ce75799bSOleg Nesterov if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) { 29401da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 2941948f017bSAndrea Arcangeli faulted_in_anon_vma = false; 2942948f017bSAndrea Arcangeli } 29431da177e4SLinus Torvalds 29446597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) 29456597d783SHugh Dickins return NULL; /* should never get here */ 29461da177e4SLinus Torvalds new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags, 294719a809afSAndrea Arcangeli vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma), 294819a809afSAndrea Arcangeli vma->vm_userfaultfd_ctx); 29491da177e4SLinus Torvalds if (new_vma) { 29501da177e4SLinus Torvalds /* 29511da177e4SLinus Torvalds * Source vma may have been merged into new_vma 29521da177e4SLinus Torvalds */ 2953948f017bSAndrea Arcangeli if (unlikely(vma_start >= new_vma->vm_start && 2954948f017bSAndrea Arcangeli vma_start < new_vma->vm_end)) { 2955948f017bSAndrea Arcangeli /* 2956948f017bSAndrea Arcangeli * The only way we can get a vma_merge with 2957948f017bSAndrea Arcangeli * self during an mremap is if the vma hasn't 2958948f017bSAndrea Arcangeli * been faulted in yet and we were allowed to 2959948f017bSAndrea Arcangeli * reset the dst vma->vm_pgoff to the 2960948f017bSAndrea Arcangeli * destination address of the mremap to allow 2961948f017bSAndrea Arcangeli * the merge to happen. mremap must change the 2962948f017bSAndrea Arcangeli * vm_pgoff linearity between src and dst vmas 2963948f017bSAndrea Arcangeli * (in turn preventing a vma_merge) to be 2964948f017bSAndrea Arcangeli * safe. It is only safe to keep the vm_pgoff 2965948f017bSAndrea Arcangeli * linear if there are no pages mapped yet. 2966948f017bSAndrea Arcangeli */ 296781d1b09cSSasha Levin VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma); 296838a76013SMichel Lespinasse *vmap = vma = new_vma; 2969108d6642SMichel Lespinasse } 297038a76013SMichel Lespinasse *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff); 29711da177e4SLinus Torvalds } else { 2972e94b1766SChristoph Lameter new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 2973e3975891SChen Gang if (!new_vma) 2974e3975891SChen Gang goto out; 29751da177e4SLinus Torvalds *new_vma = *vma; 29761da177e4SLinus Torvalds new_vma->vm_start = addr; 29771da177e4SLinus Torvalds new_vma->vm_end = addr + len; 29781da177e4SLinus Torvalds new_vma->vm_pgoff = pgoff; 2979ef0855d3SOleg Nesterov if (vma_dup_policy(vma, new_vma)) 2980523d4e20SMichel Lespinasse goto out_free_vma; 2981523d4e20SMichel Lespinasse INIT_LIST_HEAD(&new_vma->anon_vma_chain); 2982523d4e20SMichel Lespinasse if (anon_vma_clone(new_vma, vma)) 2983523d4e20SMichel Lespinasse goto out_free_mempol; 2984e9714acfSKonstantin Khlebnikov if (new_vma->vm_file) 29851da177e4SLinus Torvalds get_file(new_vma->vm_file); 29861da177e4SLinus Torvalds if (new_vma->vm_ops && new_vma->vm_ops->open) 29871da177e4SLinus Torvalds new_vma->vm_ops->open(new_vma); 29881da177e4SLinus Torvalds vma_link(mm, new_vma, prev, rb_link, rb_parent); 298938a76013SMichel Lespinasse *need_rmap_locks = false; 29901da177e4SLinus Torvalds } 29911da177e4SLinus Torvalds return new_vma; 29925beb4930SRik van Riel 29935beb4930SRik van Riel out_free_mempol: 2994ef0855d3SOleg Nesterov mpol_put(vma_policy(new_vma)); 29955beb4930SRik van Riel out_free_vma: 29965beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new_vma); 2997e3975891SChen Gang out: 29985beb4930SRik van Riel return NULL; 29991da177e4SLinus Torvalds } 3000119f657cSakpm@osdl.org 3001119f657cSakpm@osdl.org /* 3002119f657cSakpm@osdl.org * Return true if the calling process may expand its vm space by the passed 3003119f657cSakpm@osdl.org * number of pages 3004119f657cSakpm@osdl.org */ 300584638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages) 3006119f657cSakpm@osdl.org { 300784638335SKonstantin Khlebnikov if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT) 300884638335SKonstantin Khlebnikov return false; 300984638335SKonstantin Khlebnikov 3010d977d56cSKonstantin Khlebnikov if (is_data_mapping(flags) && 3011d977d56cSKonstantin Khlebnikov mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) { 3012d977d56cSKonstantin Khlebnikov if (ignore_rlimit_data) 3013d977d56cSKonstantin Khlebnikov pr_warn_once("%s (%d): VmData %lu exceed data ulimit " 3014d977d56cSKonstantin Khlebnikov "%lu. Will be forbidden soon.\n", 3015d977d56cSKonstantin Khlebnikov current->comm, current->pid, 3016d977d56cSKonstantin Khlebnikov (mm->data_vm + npages) << PAGE_SHIFT, 3017d977d56cSKonstantin Khlebnikov rlimit(RLIMIT_DATA)); 3018d977d56cSKonstantin Khlebnikov else 3019d977d56cSKonstantin Khlebnikov return false; 3020d977d56cSKonstantin Khlebnikov } 302184638335SKonstantin Khlebnikov 302284638335SKonstantin Khlebnikov return true; 302384638335SKonstantin Khlebnikov } 302484638335SKonstantin Khlebnikov 302584638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages) 302684638335SKonstantin Khlebnikov { 302784638335SKonstantin Khlebnikov mm->total_vm += npages; 302884638335SKonstantin Khlebnikov 3029d977d56cSKonstantin Khlebnikov if (is_exec_mapping(flags)) 303084638335SKonstantin Khlebnikov mm->exec_vm += npages; 3031d977d56cSKonstantin Khlebnikov else if (is_stack_mapping(flags)) 303284638335SKonstantin Khlebnikov mm->stack_vm += npages; 3033d977d56cSKonstantin Khlebnikov else if (is_data_mapping(flags)) 303484638335SKonstantin Khlebnikov mm->data_vm += npages; 3035119f657cSakpm@osdl.org } 3036fa5dc22fSRoland McGrath 3037a62c34bdSAndy Lutomirski static int special_mapping_fault(struct vm_area_struct *vma, 3038a62c34bdSAndy Lutomirski struct vm_fault *vmf); 3039a62c34bdSAndy Lutomirski 3040a62c34bdSAndy Lutomirski /* 3041a62c34bdSAndy Lutomirski * Having a close hook prevents vma merging regardless of flags. 3042a62c34bdSAndy Lutomirski */ 3043a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma) 3044a62c34bdSAndy Lutomirski { 3045a62c34bdSAndy Lutomirski } 3046a62c34bdSAndy Lutomirski 3047a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma) 3048a62c34bdSAndy Lutomirski { 3049a62c34bdSAndy Lutomirski return ((struct vm_special_mapping *)vma->vm_private_data)->name; 3050a62c34bdSAndy Lutomirski } 3051a62c34bdSAndy Lutomirski 3052a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = { 3053a62c34bdSAndy Lutomirski .close = special_mapping_close, 3054a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 3055a62c34bdSAndy Lutomirski .name = special_mapping_name, 3056a62c34bdSAndy Lutomirski }; 3057a62c34bdSAndy Lutomirski 3058a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = { 3059a62c34bdSAndy Lutomirski .close = special_mapping_close, 3060a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 3061a62c34bdSAndy Lutomirski }; 3062fa5dc22fSRoland McGrath 3063b1d0e4f5SNick Piggin static int special_mapping_fault(struct vm_area_struct *vma, 3064b1d0e4f5SNick Piggin struct vm_fault *vmf) 3065fa5dc22fSRoland McGrath { 3066b1d0e4f5SNick Piggin pgoff_t pgoff; 3067fa5dc22fSRoland McGrath struct page **pages; 3068fa5dc22fSRoland McGrath 3069a62c34bdSAndy Lutomirski if (vma->vm_ops == &legacy_special_mapping_vmops) 3070a62c34bdSAndy Lutomirski pages = vma->vm_private_data; 3071a62c34bdSAndy Lutomirski else 3072a62c34bdSAndy Lutomirski pages = ((struct vm_special_mapping *)vma->vm_private_data)-> 3073a62c34bdSAndy Lutomirski pages; 3074a62c34bdSAndy Lutomirski 30758a9cc3b5SOleg Nesterov for (pgoff = vmf->pgoff; pgoff && *pages; ++pages) 3076b1d0e4f5SNick Piggin pgoff--; 3077fa5dc22fSRoland McGrath 3078fa5dc22fSRoland McGrath if (*pages) { 3079fa5dc22fSRoland McGrath struct page *page = *pages; 3080fa5dc22fSRoland McGrath get_page(page); 3081b1d0e4f5SNick Piggin vmf->page = page; 3082b1d0e4f5SNick Piggin return 0; 3083fa5dc22fSRoland McGrath } 3084fa5dc22fSRoland McGrath 3085b1d0e4f5SNick Piggin return VM_FAULT_SIGBUS; 3086fa5dc22fSRoland McGrath } 3087fa5dc22fSRoland McGrath 3088a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping( 3089a62c34bdSAndy Lutomirski struct mm_struct *mm, 3090fa5dc22fSRoland McGrath unsigned long addr, unsigned long len, 309127f28b97SChen Gang unsigned long vm_flags, void *priv, 309227f28b97SChen Gang const struct vm_operations_struct *ops) 3093fa5dc22fSRoland McGrath { 3094462e635eSTavis Ormandy int ret; 3095fa5dc22fSRoland McGrath struct vm_area_struct *vma; 3096fa5dc22fSRoland McGrath 3097fa5dc22fSRoland McGrath vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 3098fa5dc22fSRoland McGrath if (unlikely(vma == NULL)) 30993935ed6aSStefani Seibold return ERR_PTR(-ENOMEM); 3100fa5dc22fSRoland McGrath 31015beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 3102fa5dc22fSRoland McGrath vma->vm_mm = mm; 3103fa5dc22fSRoland McGrath vma->vm_start = addr; 3104fa5dc22fSRoland McGrath vma->vm_end = addr + len; 3105fa5dc22fSRoland McGrath 3106d9104d1cSCyrill Gorcunov vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY; 31073ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vma->vm_flags); 3108fa5dc22fSRoland McGrath 3109a62c34bdSAndy Lutomirski vma->vm_ops = ops; 3110a62c34bdSAndy Lutomirski vma->vm_private_data = priv; 3111fa5dc22fSRoland McGrath 3112462e635eSTavis Ormandy ret = insert_vm_struct(mm, vma); 3113462e635eSTavis Ormandy if (ret) 3114462e635eSTavis Ormandy goto out; 3115fa5dc22fSRoland McGrath 311684638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT); 3117fa5dc22fSRoland McGrath 3118cdd6c482SIngo Molnar perf_event_mmap(vma); 3119089dd79dSPeter Zijlstra 31203935ed6aSStefani Seibold return vma; 3121462e635eSTavis Ormandy 3122462e635eSTavis Ormandy out: 3123462e635eSTavis Ormandy kmem_cache_free(vm_area_cachep, vma); 31243935ed6aSStefani Seibold return ERR_PTR(ret); 31253935ed6aSStefani Seibold } 31263935ed6aSStefani Seibold 3127a62c34bdSAndy Lutomirski /* 3128a62c34bdSAndy Lutomirski * Called with mm->mmap_sem held for writing. 3129a62c34bdSAndy Lutomirski * Insert a new vma covering the given region, with the given flags. 3130a62c34bdSAndy Lutomirski * Its pages are supplied by the given array of struct page *. 3131a62c34bdSAndy Lutomirski * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated. 3132a62c34bdSAndy Lutomirski * The region past the last page supplied will always produce SIGBUS. 3133a62c34bdSAndy Lutomirski * The array pointer and the pages it points to are assumed to stay alive 3134a62c34bdSAndy Lutomirski * for as long as this mapping might exist. 3135a62c34bdSAndy Lutomirski */ 3136a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping( 3137a62c34bdSAndy Lutomirski struct mm_struct *mm, 3138a62c34bdSAndy Lutomirski unsigned long addr, unsigned long len, 3139a62c34bdSAndy Lutomirski unsigned long vm_flags, const struct vm_special_mapping *spec) 3140a62c34bdSAndy Lutomirski { 314127f28b97SChen Gang return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec, 314227f28b97SChen Gang &special_mapping_vmops); 3143a62c34bdSAndy Lutomirski } 3144a62c34bdSAndy Lutomirski 31453935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm, 31463935ed6aSStefani Seibold unsigned long addr, unsigned long len, 31473935ed6aSStefani Seibold unsigned long vm_flags, struct page **pages) 31483935ed6aSStefani Seibold { 3149a62c34bdSAndy Lutomirski struct vm_area_struct *vma = __install_special_mapping( 315027f28b97SChen Gang mm, addr, len, vm_flags, (void *)pages, 315127f28b97SChen Gang &legacy_special_mapping_vmops); 31523935ed6aSStefani Seibold 315314bd5b45SDuan Jiong return PTR_ERR_OR_ZERO(vma); 3154fa5dc22fSRoland McGrath } 31557906d00cSAndrea Arcangeli 31567906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex); 31577906d00cSAndrea Arcangeli 3158454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma) 31597906d00cSAndrea Arcangeli { 3160bf181b9fSMichel Lespinasse if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 31617906d00cSAndrea Arcangeli /* 31627906d00cSAndrea Arcangeli * The LSB of head.next can't change from under us 31637906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 31647906d00cSAndrea Arcangeli */ 3165572043c9SJiri Kosina down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem); 31667906d00cSAndrea Arcangeli /* 31677906d00cSAndrea Arcangeli * We can safely modify head.next after taking the 31685a505085SIngo Molnar * anon_vma->root->rwsem. If some other vma in this mm shares 31697906d00cSAndrea Arcangeli * the same anon_vma we won't take it again. 31707906d00cSAndrea Arcangeli * 31717906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 31727906d00cSAndrea Arcangeli * can't change from under us thanks to the 31735a505085SIngo Molnar * anon_vma->root->rwsem. 31747906d00cSAndrea Arcangeli */ 31757906d00cSAndrea Arcangeli if (__test_and_set_bit(0, (unsigned long *) 3176bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 31777906d00cSAndrea Arcangeli BUG(); 31787906d00cSAndrea Arcangeli } 31797906d00cSAndrea Arcangeli } 31807906d00cSAndrea Arcangeli 3181454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping) 31827906d00cSAndrea Arcangeli { 31837906d00cSAndrea Arcangeli if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 31847906d00cSAndrea Arcangeli /* 31857906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change from under us because 31867906d00cSAndrea Arcangeli * we hold the mm_all_locks_mutex. 31877906d00cSAndrea Arcangeli * 31887906d00cSAndrea Arcangeli * Operations on ->flags have to be atomic because 31897906d00cSAndrea Arcangeli * even if AS_MM_ALL_LOCKS is stable thanks to the 31907906d00cSAndrea Arcangeli * mm_all_locks_mutex, there may be other cpus 31917906d00cSAndrea Arcangeli * changing other bitflags in parallel to us. 31927906d00cSAndrea Arcangeli */ 31937906d00cSAndrea Arcangeli if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags)) 31947906d00cSAndrea Arcangeli BUG(); 3195c8c06efaSDavidlohr Bueso down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem); 31967906d00cSAndrea Arcangeli } 31977906d00cSAndrea Arcangeli } 31987906d00cSAndrea Arcangeli 31997906d00cSAndrea Arcangeli /* 32007906d00cSAndrea Arcangeli * This operation locks against the VM for all pte/vma/mm related 32017906d00cSAndrea Arcangeli * operations that could ever happen on a certain mm. This includes 32027906d00cSAndrea Arcangeli * vmtruncate, try_to_unmap, and all page faults. 32037906d00cSAndrea Arcangeli * 32047906d00cSAndrea Arcangeli * The caller must take the mmap_sem in write mode before calling 32057906d00cSAndrea Arcangeli * mm_take_all_locks(). The caller isn't allowed to release the 32067906d00cSAndrea Arcangeli * mmap_sem until mm_drop_all_locks() returns. 32077906d00cSAndrea Arcangeli * 32087906d00cSAndrea Arcangeli * mmap_sem in write mode is required in order to block all operations 32097906d00cSAndrea Arcangeli * that could modify pagetables and free pages without need of 321027ba0644SKirill A. Shutemov * altering the vma layout. It's also needed in write mode to avoid new 32117906d00cSAndrea Arcangeli * anon_vmas to be associated with existing vmas. 32127906d00cSAndrea Arcangeli * 32137906d00cSAndrea Arcangeli * A single task can't take more than one mm_take_all_locks() in a row 32147906d00cSAndrea Arcangeli * or it would deadlock. 32157906d00cSAndrea Arcangeli * 3216bf181b9fSMichel Lespinasse * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in 32177906d00cSAndrea Arcangeli * mapping->flags avoid to take the same lock twice, if more than one 32187906d00cSAndrea Arcangeli * vma in this mm is backed by the same anon_vma or address_space. 32197906d00cSAndrea Arcangeli * 322088f306b6SKirill A. Shutemov * We take locks in following order, accordingly to comment at beginning 322188f306b6SKirill A. Shutemov * of mm/rmap.c: 322288f306b6SKirill A. Shutemov * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for 322388f306b6SKirill A. Shutemov * hugetlb mapping); 322488f306b6SKirill A. Shutemov * - all i_mmap_rwsem locks; 322588f306b6SKirill A. Shutemov * - all anon_vma->rwseml 322688f306b6SKirill A. Shutemov * 322788f306b6SKirill A. Shutemov * We can take all locks within these types randomly because the VM code 322888f306b6SKirill A. Shutemov * doesn't nest them and we protected from parallel mm_take_all_locks() by 322988f306b6SKirill A. Shutemov * mm_all_locks_mutex. 32307906d00cSAndrea Arcangeli * 32317906d00cSAndrea Arcangeli * mm_take_all_locks() and mm_drop_all_locks are expensive operations 32327906d00cSAndrea Arcangeli * that may have to take thousand of locks. 32337906d00cSAndrea Arcangeli * 32347906d00cSAndrea Arcangeli * mm_take_all_locks() can fail if it's interrupted by signals. 32357906d00cSAndrea Arcangeli */ 32367906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm) 32377906d00cSAndrea Arcangeli { 32387906d00cSAndrea Arcangeli struct vm_area_struct *vma; 32395beb4930SRik van Riel struct anon_vma_chain *avc; 32407906d00cSAndrea Arcangeli 32417906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 32427906d00cSAndrea Arcangeli 32437906d00cSAndrea Arcangeli mutex_lock(&mm_all_locks_mutex); 32447906d00cSAndrea Arcangeli 32457906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 32467906d00cSAndrea Arcangeli if (signal_pending(current)) 32477906d00cSAndrea Arcangeli goto out_unlock; 324888f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 324988f306b6SKirill A. Shutemov is_vm_hugetlb_page(vma)) 325088f306b6SKirill A. Shutemov vm_lock_mapping(mm, vma->vm_file->f_mapping); 325188f306b6SKirill A. Shutemov } 325288f306b6SKirill A. Shutemov 325388f306b6SKirill A. Shutemov for (vma = mm->mmap; vma; vma = vma->vm_next) { 325488f306b6SKirill A. Shutemov if (signal_pending(current)) 325588f306b6SKirill A. Shutemov goto out_unlock; 325688f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 325788f306b6SKirill A. Shutemov !is_vm_hugetlb_page(vma)) 3258454ed842SPeter Zijlstra vm_lock_mapping(mm, vma->vm_file->f_mapping); 32597906d00cSAndrea Arcangeli } 32607cd5a02fSPeter Zijlstra 32617cd5a02fSPeter Zijlstra for (vma = mm->mmap; vma; vma = vma->vm_next) { 32627cd5a02fSPeter Zijlstra if (signal_pending(current)) 32637cd5a02fSPeter Zijlstra goto out_unlock; 32647cd5a02fSPeter Zijlstra if (vma->anon_vma) 32655beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 32665beb4930SRik van Riel vm_lock_anon_vma(mm, avc->anon_vma); 32677cd5a02fSPeter Zijlstra } 32687cd5a02fSPeter Zijlstra 3269584cff54SKautuk Consul return 0; 32707906d00cSAndrea Arcangeli 32717906d00cSAndrea Arcangeli out_unlock: 32727906d00cSAndrea Arcangeli mm_drop_all_locks(mm); 3273584cff54SKautuk Consul return -EINTR; 32747906d00cSAndrea Arcangeli } 32757906d00cSAndrea Arcangeli 32767906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma) 32777906d00cSAndrea Arcangeli { 3278bf181b9fSMichel Lespinasse if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 32797906d00cSAndrea Arcangeli /* 32807906d00cSAndrea Arcangeli * The LSB of head.next can't change to 0 from under 32817906d00cSAndrea Arcangeli * us because we hold the mm_all_locks_mutex. 32827906d00cSAndrea Arcangeli * 32837906d00cSAndrea Arcangeli * We must however clear the bitflag before unlocking 3284bf181b9fSMichel Lespinasse * the vma so the users using the anon_vma->rb_root will 32857906d00cSAndrea Arcangeli * never see our bitflag. 32867906d00cSAndrea Arcangeli * 32877906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 32887906d00cSAndrea Arcangeli * can't change from under us until we release the 32895a505085SIngo Molnar * anon_vma->root->rwsem. 32907906d00cSAndrea Arcangeli */ 32917906d00cSAndrea Arcangeli if (!__test_and_clear_bit(0, (unsigned long *) 3292bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 32937906d00cSAndrea Arcangeli BUG(); 329408b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 32957906d00cSAndrea Arcangeli } 32967906d00cSAndrea Arcangeli } 32977906d00cSAndrea Arcangeli 32987906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping) 32997906d00cSAndrea Arcangeli { 33007906d00cSAndrea Arcangeli if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 33017906d00cSAndrea Arcangeli /* 33027906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change to 0 from under us 33037906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 33047906d00cSAndrea Arcangeli */ 330583cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 33067906d00cSAndrea Arcangeli if (!test_and_clear_bit(AS_MM_ALL_LOCKS, 33077906d00cSAndrea Arcangeli &mapping->flags)) 33087906d00cSAndrea Arcangeli BUG(); 33097906d00cSAndrea Arcangeli } 33107906d00cSAndrea Arcangeli } 33117906d00cSAndrea Arcangeli 33127906d00cSAndrea Arcangeli /* 33137906d00cSAndrea Arcangeli * The mmap_sem cannot be released by the caller until 33147906d00cSAndrea Arcangeli * mm_drop_all_locks() returns. 33157906d00cSAndrea Arcangeli */ 33167906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm) 33177906d00cSAndrea Arcangeli { 33187906d00cSAndrea Arcangeli struct vm_area_struct *vma; 33195beb4930SRik van Riel struct anon_vma_chain *avc; 33207906d00cSAndrea Arcangeli 33217906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 33227906d00cSAndrea Arcangeli BUG_ON(!mutex_is_locked(&mm_all_locks_mutex)); 33237906d00cSAndrea Arcangeli 33247906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 33257906d00cSAndrea Arcangeli if (vma->anon_vma) 33265beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 33275beb4930SRik van Riel vm_unlock_anon_vma(avc->anon_vma); 33287906d00cSAndrea Arcangeli if (vma->vm_file && vma->vm_file->f_mapping) 33297906d00cSAndrea Arcangeli vm_unlock_mapping(vma->vm_file->f_mapping); 33307906d00cSAndrea Arcangeli } 33317906d00cSAndrea Arcangeli 33327906d00cSAndrea Arcangeli mutex_unlock(&mm_all_locks_mutex); 33337906d00cSAndrea Arcangeli } 33348feae131SDavid Howells 33358feae131SDavid Howells /* 33368feae131SDavid Howells * initialise the VMA slab 33378feae131SDavid Howells */ 33388feae131SDavid Howells void __init mmap_init(void) 33398feae131SDavid Howells { 334000a62ce9SKOSAKI Motohiro int ret; 334100a62ce9SKOSAKI Motohiro 3342908c7f19STejun Heo ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL); 334300a62ce9SKOSAKI Motohiro VM_BUG_ON(ret); 33448feae131SDavid Howells } 3345c9b1d098SAndrew Shewmaker 3346c9b1d098SAndrew Shewmaker /* 3347c9b1d098SAndrew Shewmaker * Initialise sysctl_user_reserve_kbytes. 3348c9b1d098SAndrew Shewmaker * 3349c9b1d098SAndrew Shewmaker * This is intended to prevent a user from starting a single memory hogging 3350c9b1d098SAndrew Shewmaker * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER 3351c9b1d098SAndrew Shewmaker * mode. 3352c9b1d098SAndrew Shewmaker * 3353c9b1d098SAndrew Shewmaker * The default value is min(3% of free memory, 128MB) 3354c9b1d098SAndrew Shewmaker * 128MB is enough to recover with sshd/login, bash, and top/kill. 3355c9b1d098SAndrew Shewmaker */ 33561640879aSAndrew Shewmaker static int init_user_reserve(void) 3357c9b1d098SAndrew Shewmaker { 3358c9b1d098SAndrew Shewmaker unsigned long free_kbytes; 3359c9b1d098SAndrew Shewmaker 3360c9b1d098SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 3361c9b1d098SAndrew Shewmaker 3362c9b1d098SAndrew Shewmaker sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17); 3363c9b1d098SAndrew Shewmaker return 0; 3364c9b1d098SAndrew Shewmaker } 3365a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve); 33664eeab4f5SAndrew Shewmaker 33674eeab4f5SAndrew Shewmaker /* 33684eeab4f5SAndrew Shewmaker * Initialise sysctl_admin_reserve_kbytes. 33694eeab4f5SAndrew Shewmaker * 33704eeab4f5SAndrew Shewmaker * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin 33714eeab4f5SAndrew Shewmaker * to log in and kill a memory hogging process. 33724eeab4f5SAndrew Shewmaker * 33734eeab4f5SAndrew Shewmaker * Systems with more than 256MB will reserve 8MB, enough to recover 33744eeab4f5SAndrew Shewmaker * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will 33754eeab4f5SAndrew Shewmaker * only reserve 3% of free pages by default. 33764eeab4f5SAndrew Shewmaker */ 33771640879aSAndrew Shewmaker static int init_admin_reserve(void) 33784eeab4f5SAndrew Shewmaker { 33794eeab4f5SAndrew Shewmaker unsigned long free_kbytes; 33804eeab4f5SAndrew Shewmaker 33814eeab4f5SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 33824eeab4f5SAndrew Shewmaker 33834eeab4f5SAndrew Shewmaker sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13); 33844eeab4f5SAndrew Shewmaker return 0; 33854eeab4f5SAndrew Shewmaker } 3386a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve); 33871640879aSAndrew Shewmaker 33881640879aSAndrew Shewmaker /* 33891640879aSAndrew Shewmaker * Reinititalise user and admin reserves if memory is added or removed. 33901640879aSAndrew Shewmaker * 33911640879aSAndrew Shewmaker * The default user reserve max is 128MB, and the default max for the 33921640879aSAndrew Shewmaker * admin reserve is 8MB. These are usually, but not always, enough to 33931640879aSAndrew Shewmaker * enable recovery from a memory hogging process using login/sshd, a shell, 33941640879aSAndrew Shewmaker * and tools like top. It may make sense to increase or even disable the 33951640879aSAndrew Shewmaker * reserve depending on the existence of swap or variations in the recovery 33961640879aSAndrew Shewmaker * tools. So, the admin may have changed them. 33971640879aSAndrew Shewmaker * 33981640879aSAndrew Shewmaker * If memory is added and the reserves have been eliminated or increased above 33991640879aSAndrew Shewmaker * the default max, then we'll trust the admin. 34001640879aSAndrew Shewmaker * 34011640879aSAndrew Shewmaker * If memory is removed and there isn't enough free memory, then we 34021640879aSAndrew Shewmaker * need to reset the reserves. 34031640879aSAndrew Shewmaker * 34041640879aSAndrew Shewmaker * Otherwise keep the reserve set by the admin. 34051640879aSAndrew Shewmaker */ 34061640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb, 34071640879aSAndrew Shewmaker unsigned long action, void *data) 34081640879aSAndrew Shewmaker { 34091640879aSAndrew Shewmaker unsigned long tmp, free_kbytes; 34101640879aSAndrew Shewmaker 34111640879aSAndrew Shewmaker switch (action) { 34121640879aSAndrew Shewmaker case MEM_ONLINE: 34131640879aSAndrew Shewmaker /* Default max is 128MB. Leave alone if modified by operator. */ 34141640879aSAndrew Shewmaker tmp = sysctl_user_reserve_kbytes; 34151640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 17)) 34161640879aSAndrew Shewmaker init_user_reserve(); 34171640879aSAndrew Shewmaker 34181640879aSAndrew Shewmaker /* Default max is 8MB. Leave alone if modified by operator. */ 34191640879aSAndrew Shewmaker tmp = sysctl_admin_reserve_kbytes; 34201640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 13)) 34211640879aSAndrew Shewmaker init_admin_reserve(); 34221640879aSAndrew Shewmaker 34231640879aSAndrew Shewmaker break; 34241640879aSAndrew Shewmaker case MEM_OFFLINE: 34251640879aSAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 34261640879aSAndrew Shewmaker 34271640879aSAndrew Shewmaker if (sysctl_user_reserve_kbytes > free_kbytes) { 34281640879aSAndrew Shewmaker init_user_reserve(); 34291640879aSAndrew Shewmaker pr_info("vm.user_reserve_kbytes reset to %lu\n", 34301640879aSAndrew Shewmaker sysctl_user_reserve_kbytes); 34311640879aSAndrew Shewmaker } 34321640879aSAndrew Shewmaker 34331640879aSAndrew Shewmaker if (sysctl_admin_reserve_kbytes > free_kbytes) { 34341640879aSAndrew Shewmaker init_admin_reserve(); 34351640879aSAndrew Shewmaker pr_info("vm.admin_reserve_kbytes reset to %lu\n", 34361640879aSAndrew Shewmaker sysctl_admin_reserve_kbytes); 34371640879aSAndrew Shewmaker } 34381640879aSAndrew Shewmaker break; 34391640879aSAndrew Shewmaker default: 34401640879aSAndrew Shewmaker break; 34411640879aSAndrew Shewmaker } 34421640879aSAndrew Shewmaker return NOTIFY_OK; 34431640879aSAndrew Shewmaker } 34441640879aSAndrew Shewmaker 34451640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = { 34461640879aSAndrew Shewmaker .notifier_call = reserve_mem_notifier, 34471640879aSAndrew Shewmaker }; 34481640879aSAndrew Shewmaker 34491640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void) 34501640879aSAndrew Shewmaker { 34511640879aSAndrew Shewmaker if (register_hotmemory_notifier(&reserve_mem_nb)) 3452b1de0d13SMitchel Humpherys pr_err("Failed registering memory add/remove notifier for admin reserve\n"); 34531640879aSAndrew Shewmaker 34541640879aSAndrew Shewmaker return 0; 34551640879aSAndrew Shewmaker } 3456a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier); 3457