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> 401640879aSAndrew Shewmaker #include <linux/notifier.h> 411640879aSAndrew Shewmaker #include <linux/memory.h> 42b1de0d13SMitchel Humpherys #include <linux/printk.h> 4319a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h> 44d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h> 451da177e4SLinus Torvalds 461da177e4SLinus Torvalds #include <asm/uaccess.h> 471da177e4SLinus Torvalds #include <asm/cacheflush.h> 481da177e4SLinus Torvalds #include <asm/tlb.h> 49d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h> 501da177e4SLinus Torvalds 5142b77728SJan Beulich #include "internal.h" 5242b77728SJan Beulich 533a459756SKirill Korotaev #ifndef arch_mmap_check 543a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags) (0) 553a459756SKirill Korotaev #endif 563a459756SKirill Korotaev 5708e7d9b5SMartin Schwidefsky #ifndef arch_rebalance_pgtables 5808e7d9b5SMartin Schwidefsky #define arch_rebalance_pgtables(addr, len) (addr) 5908e7d9b5SMartin Schwidefsky #endif 6008e7d9b5SMartin Schwidefsky 61d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS 62d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN; 63d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX; 64d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS; 65d07e2259SDaniel Cashman #endif 66d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS 67d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN; 68d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX; 69d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS; 70d07e2259SDaniel Cashman #endif 71d07e2259SDaniel Cashman 72d977d56cSKonstantin Khlebnikov static bool ignore_rlimit_data = true; 73d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644); 74d07e2259SDaniel Cashman 75e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm, 76e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 77e0da382cSHugh Dickins unsigned long start, unsigned long end); 78e0da382cSHugh Dickins 791da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation. 801da177e4SLinus Torvalds * this is due to the limited x86 page protection hardware. The expected 811da177e4SLinus Torvalds * behavior is in parens: 821da177e4SLinus Torvalds * 831da177e4SLinus Torvalds * map_type prot 841da177e4SLinus Torvalds * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC 851da177e4SLinus Torvalds * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes 861da177e4SLinus Torvalds * w: (no) no w: (no) no w: (yes) yes w: (no) no 871da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 881da177e4SLinus Torvalds * 891da177e4SLinus Torvalds * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes 901da177e4SLinus Torvalds * w: (no) no w: (no) no w: (copy) copy w: (no) no 911da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 921da177e4SLinus Torvalds * 931da177e4SLinus Torvalds */ 941da177e4SLinus Torvalds pgprot_t protection_map[16] = { 951da177e4SLinus Torvalds __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111, 961da177e4SLinus Torvalds __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111 971da177e4SLinus Torvalds }; 981da177e4SLinus Torvalds 99804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags) 100804af2cfSHugh Dickins { 101b845f313SDave Kleikamp return __pgprot(pgprot_val(protection_map[vm_flags & 102b845f313SDave Kleikamp (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) | 103b845f313SDave Kleikamp pgprot_val(arch_vm_get_page_prot(vm_flags))); 104804af2cfSHugh Dickins } 105804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot); 106804af2cfSHugh Dickins 10764e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags) 10864e45507SPeter Feiner { 10964e45507SPeter Feiner return pgprot_modify(oldprot, vm_get_page_prot(vm_flags)); 11064e45507SPeter Feiner } 11164e45507SPeter Feiner 11264e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */ 11364e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma) 11464e45507SPeter Feiner { 11564e45507SPeter Feiner unsigned long vm_flags = vma->vm_flags; 11664e45507SPeter Feiner 11764e45507SPeter Feiner vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags); 11864e45507SPeter Feiner if (vma_wants_writenotify(vma)) { 11964e45507SPeter Feiner vm_flags &= ~VM_SHARED; 12064e45507SPeter Feiner vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, 12164e45507SPeter Feiner vm_flags); 12264e45507SPeter Feiner } 12364e45507SPeter Feiner } 12464e45507SPeter Feiner 1251da177e4SLinus Torvalds /* 126c8c06efaSDavidlohr Bueso * Requires inode->i_mapping->i_mmap_rwsem 1271da177e4SLinus Torvalds */ 1281da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma, 1291da177e4SLinus Torvalds struct file *file, struct address_space *mapping) 1301da177e4SLinus Torvalds { 1311da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 132496ad9aaSAl Viro atomic_inc(&file_inode(file)->i_writecount); 1331da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 1344bb5f5d9SDavid Herrmann mapping_unmap_writable(mapping); 1351da177e4SLinus Torvalds 1361da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 1376b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, &mapping->i_mmap); 1381da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 1391da177e4SLinus Torvalds } 1401da177e4SLinus Torvalds 1411da177e4SLinus Torvalds /* 1426b2dbba8SMichel Lespinasse * Unlink a file-based vm structure from its interval tree, to hide 143a8fb5618SHugh Dickins * vma from rmap and vmtruncate before freeing its page tables. 1441da177e4SLinus Torvalds */ 145a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma) 1461da177e4SLinus Torvalds { 1471da177e4SLinus Torvalds struct file *file = vma->vm_file; 1481da177e4SLinus Torvalds 1491da177e4SLinus Torvalds if (file) { 1501da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 15183cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 1521da177e4SLinus Torvalds __remove_shared_vm_struct(vma, file, mapping); 15383cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 1541da177e4SLinus Torvalds } 155a8fb5618SHugh Dickins } 156a8fb5618SHugh Dickins 157a8fb5618SHugh Dickins /* 158a8fb5618SHugh Dickins * Close a vm structure and free it, returning the next. 159a8fb5618SHugh Dickins */ 160a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma) 161a8fb5618SHugh Dickins { 162a8fb5618SHugh Dickins struct vm_area_struct *next = vma->vm_next; 163a8fb5618SHugh Dickins 164a8fb5618SHugh Dickins might_sleep(); 1651da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 1661da177e4SLinus Torvalds vma->vm_ops->close(vma); 167e9714acfSKonstantin Khlebnikov if (vma->vm_file) 168a8fb5618SHugh Dickins fput(vma->vm_file); 169f0be3d32SLee Schermerhorn mpol_put(vma_policy(vma)); 1701da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 171a8fb5618SHugh Dickins return next; 1721da177e4SLinus Torvalds } 1731da177e4SLinus Torvalds 174e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len); 175e4eb1ff6SLinus Torvalds 1766a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk) 1771da177e4SLinus Torvalds { 1788764b338SCyrill Gorcunov unsigned long retval; 1791da177e4SLinus Torvalds unsigned long newbrk, oldbrk; 1801da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 181a5b4592cSJiri Kosina unsigned long min_brk; 182128557ffSMichel Lespinasse bool populate; 1831da177e4SLinus Torvalds 1841da177e4SLinus Torvalds down_write(&mm->mmap_sem); 1851da177e4SLinus Torvalds 186a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK 1875520e894SJiri Kosina /* 1885520e894SJiri Kosina * CONFIG_COMPAT_BRK can still be overridden by setting 1895520e894SJiri Kosina * randomize_va_space to 2, which will still cause mm->start_brk 1905520e894SJiri Kosina * to be arbitrarily shifted 1915520e894SJiri Kosina */ 1924471a675SJiri Kosina if (current->brk_randomized) 1935520e894SJiri Kosina min_brk = mm->start_brk; 1945520e894SJiri Kosina else 1955520e894SJiri Kosina min_brk = mm->end_data; 196a5b4592cSJiri Kosina #else 197a5b4592cSJiri Kosina min_brk = mm->start_brk; 198a5b4592cSJiri Kosina #endif 199a5b4592cSJiri Kosina if (brk < min_brk) 2001da177e4SLinus Torvalds goto out; 2011e624196SRam Gupta 2021e624196SRam Gupta /* 2031e624196SRam Gupta * Check against rlimit here. If this check is done later after the test 2041e624196SRam Gupta * of oldbrk with newbrk then it can escape the test and let the data 2051e624196SRam Gupta * segment grow beyond its set limit the in case where the limit is 2061e624196SRam Gupta * not page aligned -Ram Gupta 2071e624196SRam Gupta */ 2088764b338SCyrill Gorcunov if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk, 2098764b338SCyrill Gorcunov mm->end_data, mm->start_data)) 2101e624196SRam Gupta goto out; 2111e624196SRam Gupta 2121da177e4SLinus Torvalds newbrk = PAGE_ALIGN(brk); 2131da177e4SLinus Torvalds oldbrk = PAGE_ALIGN(mm->brk); 2141da177e4SLinus Torvalds if (oldbrk == newbrk) 2151da177e4SLinus Torvalds goto set_brk; 2161da177e4SLinus Torvalds 2171da177e4SLinus Torvalds /* Always allow shrinking brk. */ 2181da177e4SLinus Torvalds if (brk <= mm->brk) { 2191da177e4SLinus Torvalds if (!do_munmap(mm, newbrk, oldbrk-newbrk)) 2201da177e4SLinus Torvalds goto set_brk; 2211da177e4SLinus Torvalds goto out; 2221da177e4SLinus Torvalds } 2231da177e4SLinus Torvalds 2241da177e4SLinus Torvalds /* Check against existing mmap mappings. */ 2251da177e4SLinus Torvalds if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE)) 2261da177e4SLinus Torvalds goto out; 2271da177e4SLinus Torvalds 2281da177e4SLinus Torvalds /* Ok, looks good - let it rip. */ 2291da177e4SLinus Torvalds if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk) 2301da177e4SLinus Torvalds goto out; 231128557ffSMichel Lespinasse 2321da177e4SLinus Torvalds set_brk: 2331da177e4SLinus Torvalds mm->brk = brk; 234128557ffSMichel Lespinasse populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0; 235128557ffSMichel Lespinasse up_write(&mm->mmap_sem); 236128557ffSMichel Lespinasse if (populate) 237128557ffSMichel Lespinasse mm_populate(oldbrk, newbrk - oldbrk); 238128557ffSMichel Lespinasse return brk; 239128557ffSMichel Lespinasse 2401da177e4SLinus Torvalds out: 2411da177e4SLinus Torvalds retval = mm->brk; 2421da177e4SLinus Torvalds up_write(&mm->mmap_sem); 2431da177e4SLinus Torvalds return retval; 2441da177e4SLinus Torvalds } 2451da177e4SLinus Torvalds 246d3737187SMichel Lespinasse static long vma_compute_subtree_gap(struct vm_area_struct *vma) 247d3737187SMichel Lespinasse { 248d3737187SMichel Lespinasse unsigned long max, subtree_gap; 249d3737187SMichel Lespinasse max = vma->vm_start; 250d3737187SMichel Lespinasse if (vma->vm_prev) 251d3737187SMichel Lespinasse max -= vma->vm_prev->vm_end; 252d3737187SMichel Lespinasse if (vma->vm_rb.rb_left) { 253d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_left, 254d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 255d3737187SMichel Lespinasse if (subtree_gap > max) 256d3737187SMichel Lespinasse max = subtree_gap; 257d3737187SMichel Lespinasse } 258d3737187SMichel Lespinasse if (vma->vm_rb.rb_right) { 259d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_right, 260d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 261d3737187SMichel Lespinasse if (subtree_gap > max) 262d3737187SMichel Lespinasse max = subtree_gap; 263d3737187SMichel Lespinasse } 264d3737187SMichel Lespinasse return max; 265d3737187SMichel Lespinasse } 266d3737187SMichel Lespinasse 267ed8ea815SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB 268acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm) 2691da177e4SLinus Torvalds { 270acf128d0SAndrea Arcangeli struct rb_root *root = &mm->mm_rb; 2715a0768f6SMichel Lespinasse int i = 0, j, bug = 0; 2721da177e4SLinus Torvalds struct rb_node *nd, *pn = NULL; 2731da177e4SLinus Torvalds unsigned long prev = 0, pend = 0; 2741da177e4SLinus Torvalds 2751da177e4SLinus Torvalds for (nd = rb_first(root); nd; nd = rb_next(nd)) { 2761da177e4SLinus Torvalds struct vm_area_struct *vma; 2771da177e4SLinus Torvalds vma = rb_entry(nd, struct vm_area_struct, vm_rb); 2785a0768f6SMichel Lespinasse if (vma->vm_start < prev) { 279ff26f70fSAndrew Morton pr_emerg("vm_start %lx < prev %lx\n", 280ff26f70fSAndrew Morton vma->vm_start, prev); 2815a0768f6SMichel Lespinasse bug = 1; 2825a0768f6SMichel Lespinasse } 2835a0768f6SMichel Lespinasse if (vma->vm_start < pend) { 284ff26f70fSAndrew Morton pr_emerg("vm_start %lx < pend %lx\n", 285ff26f70fSAndrew Morton vma->vm_start, pend); 2865a0768f6SMichel Lespinasse bug = 1; 2875a0768f6SMichel Lespinasse } 2885a0768f6SMichel Lespinasse if (vma->vm_start > vma->vm_end) { 289ff26f70fSAndrew Morton pr_emerg("vm_start %lx > vm_end %lx\n", 290ff26f70fSAndrew Morton vma->vm_start, vma->vm_end); 2915a0768f6SMichel Lespinasse bug = 1; 2925a0768f6SMichel Lespinasse } 293acf128d0SAndrea Arcangeli spin_lock(&mm->page_table_lock); 2945a0768f6SMichel Lespinasse if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) { 2958542bdfcSSasha Levin pr_emerg("free gap %lx, correct %lx\n", 2965a0768f6SMichel Lespinasse vma->rb_subtree_gap, 2975a0768f6SMichel Lespinasse vma_compute_subtree_gap(vma)); 2985a0768f6SMichel Lespinasse bug = 1; 2995a0768f6SMichel Lespinasse } 300acf128d0SAndrea Arcangeli spin_unlock(&mm->page_table_lock); 3011da177e4SLinus Torvalds i++; 3021da177e4SLinus Torvalds pn = nd; 303d1af65d1SDavid Miller prev = vma->vm_start; 304d1af65d1SDavid Miller pend = vma->vm_end; 3051da177e4SLinus Torvalds } 3061da177e4SLinus Torvalds j = 0; 3075a0768f6SMichel Lespinasse for (nd = pn; nd; nd = rb_prev(nd)) 3081da177e4SLinus Torvalds j++; 3095a0768f6SMichel Lespinasse if (i != j) { 3108542bdfcSSasha Levin pr_emerg("backwards %d, forwards %d\n", j, i); 3115a0768f6SMichel Lespinasse bug = 1; 3121da177e4SLinus Torvalds } 3135a0768f6SMichel Lespinasse return bug ? -1 : i; 3141da177e4SLinus Torvalds } 3151da177e4SLinus Torvalds 316d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore) 317d3737187SMichel Lespinasse { 318d3737187SMichel Lespinasse struct rb_node *nd; 319d3737187SMichel Lespinasse 320d3737187SMichel Lespinasse for (nd = rb_first(root); nd; nd = rb_next(nd)) { 321d3737187SMichel Lespinasse struct vm_area_struct *vma; 322d3737187SMichel Lespinasse vma = rb_entry(nd, struct vm_area_struct, vm_rb); 32396dad67fSSasha Levin VM_BUG_ON_VMA(vma != ignore && 32496dad67fSSasha Levin vma->rb_subtree_gap != vma_compute_subtree_gap(vma), 32596dad67fSSasha Levin vma); 326d3737187SMichel Lespinasse } 3271da177e4SLinus Torvalds } 3281da177e4SLinus Torvalds 329eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm) 3301da177e4SLinus Torvalds { 3311da177e4SLinus Torvalds int bug = 0; 3321da177e4SLinus Torvalds int i = 0; 3335a0768f6SMichel Lespinasse unsigned long highest_address = 0; 334ed8ea815SMichel Lespinasse struct vm_area_struct *vma = mm->mmap; 335ff26f70fSAndrew Morton 336ed8ea815SMichel Lespinasse while (vma) { 33712352d3cSKonstantin Khlebnikov struct anon_vma *anon_vma = vma->anon_vma; 338ed8ea815SMichel Lespinasse struct anon_vma_chain *avc; 339ff26f70fSAndrew Morton 34012352d3cSKonstantin Khlebnikov if (anon_vma) { 34112352d3cSKonstantin Khlebnikov anon_vma_lock_read(anon_vma); 342ed8ea815SMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 343ed8ea815SMichel Lespinasse anon_vma_interval_tree_verify(avc); 34412352d3cSKonstantin Khlebnikov anon_vma_unlock_read(anon_vma); 34512352d3cSKonstantin Khlebnikov } 34612352d3cSKonstantin Khlebnikov 3475a0768f6SMichel Lespinasse highest_address = vma->vm_end; 348ed8ea815SMichel Lespinasse vma = vma->vm_next; 3491da177e4SLinus Torvalds i++; 3501da177e4SLinus Torvalds } 3515a0768f6SMichel Lespinasse if (i != mm->map_count) { 3528542bdfcSSasha Levin pr_emerg("map_count %d vm_next %d\n", mm->map_count, i); 3535a0768f6SMichel Lespinasse bug = 1; 3545a0768f6SMichel Lespinasse } 3555a0768f6SMichel Lespinasse if (highest_address != mm->highest_vm_end) { 3568542bdfcSSasha Levin pr_emerg("mm->highest_vm_end %lx, found %lx\n", 3575a0768f6SMichel Lespinasse mm->highest_vm_end, highest_address); 3585a0768f6SMichel Lespinasse bug = 1; 3595a0768f6SMichel Lespinasse } 360acf128d0SAndrea Arcangeli i = browse_rb(mm); 3615a0768f6SMichel Lespinasse if (i != mm->map_count) { 362ff26f70fSAndrew Morton if (i != -1) 3638542bdfcSSasha Levin pr_emerg("map_count %d rb %d\n", mm->map_count, i); 3645a0768f6SMichel Lespinasse bug = 1; 3655a0768f6SMichel Lespinasse } 36696dad67fSSasha Levin VM_BUG_ON_MM(bug, mm); 3671da177e4SLinus Torvalds } 3681da177e4SLinus Torvalds #else 369d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0) 3701da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0) 3711da177e4SLinus Torvalds #endif 3721da177e4SLinus Torvalds 373d3737187SMichel Lespinasse RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb, 374d3737187SMichel Lespinasse unsigned long, rb_subtree_gap, vma_compute_subtree_gap) 375d3737187SMichel Lespinasse 376d3737187SMichel Lespinasse /* 377d3737187SMichel Lespinasse * Update augmented rbtree rb_subtree_gap values after vma->vm_start or 378d3737187SMichel Lespinasse * vma->vm_prev->vm_end values changed, without modifying the vma's position 379d3737187SMichel Lespinasse * in the rbtree. 380d3737187SMichel Lespinasse */ 381d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma) 382d3737187SMichel Lespinasse { 383d3737187SMichel Lespinasse /* 384d3737187SMichel Lespinasse * As it turns out, RB_DECLARE_CALLBACKS() already created a callback 385d3737187SMichel Lespinasse * function that does exacltly what we want. 386d3737187SMichel Lespinasse */ 387d3737187SMichel Lespinasse vma_gap_callbacks_propagate(&vma->vm_rb, NULL); 388d3737187SMichel Lespinasse } 389d3737187SMichel Lespinasse 390d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma, 391d3737187SMichel Lespinasse struct rb_root *root) 392d3737187SMichel Lespinasse { 393d3737187SMichel Lespinasse /* All rb_subtree_gap values must be consistent prior to insertion */ 394d3737187SMichel Lespinasse validate_mm_rb(root, NULL); 395d3737187SMichel Lespinasse 396d3737187SMichel Lespinasse rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 397d3737187SMichel Lespinasse } 398d3737187SMichel Lespinasse 399d3737187SMichel Lespinasse static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root) 400d3737187SMichel Lespinasse { 401d3737187SMichel Lespinasse /* 402d3737187SMichel Lespinasse * All rb_subtree_gap values must be consistent prior to erase, 403d3737187SMichel Lespinasse * with the possible exception of the vma being erased. 404d3737187SMichel Lespinasse */ 405d3737187SMichel Lespinasse validate_mm_rb(root, vma); 406d3737187SMichel Lespinasse 407d3737187SMichel Lespinasse /* 408d3737187SMichel Lespinasse * Note rb_erase_augmented is a fairly large inline function, 409d3737187SMichel Lespinasse * so make sure we instantiate it only once with our desired 410d3737187SMichel Lespinasse * augmented rbtree callbacks. 411d3737187SMichel Lespinasse */ 412d3737187SMichel Lespinasse rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 413d3737187SMichel Lespinasse } 414d3737187SMichel Lespinasse 415bf181b9fSMichel Lespinasse /* 416bf181b9fSMichel Lespinasse * vma has some anon_vma assigned, and is already inserted on that 417bf181b9fSMichel Lespinasse * anon_vma's interval trees. 418bf181b9fSMichel Lespinasse * 419bf181b9fSMichel Lespinasse * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the 420bf181b9fSMichel Lespinasse * vma must be removed from the anon_vma's interval trees using 421bf181b9fSMichel Lespinasse * anon_vma_interval_tree_pre_update_vma(). 422bf181b9fSMichel Lespinasse * 423bf181b9fSMichel Lespinasse * After the update, the vma will be reinserted using 424bf181b9fSMichel Lespinasse * anon_vma_interval_tree_post_update_vma(). 425bf181b9fSMichel Lespinasse * 426bf181b9fSMichel Lespinasse * The entire update must be protected by exclusive mmap_sem and by 427bf181b9fSMichel Lespinasse * the root anon_vma's mutex. 428bf181b9fSMichel Lespinasse */ 429bf181b9fSMichel Lespinasse static inline void 430bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma) 431bf181b9fSMichel Lespinasse { 432bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 433bf181b9fSMichel Lespinasse 434bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 435bf181b9fSMichel Lespinasse anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root); 436bf181b9fSMichel Lespinasse } 437bf181b9fSMichel Lespinasse 438bf181b9fSMichel Lespinasse static inline void 439bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma) 440bf181b9fSMichel Lespinasse { 441bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 442bf181b9fSMichel Lespinasse 443bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 444bf181b9fSMichel Lespinasse anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root); 445bf181b9fSMichel Lespinasse } 446bf181b9fSMichel Lespinasse 4476597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr, 4486597d783SHugh Dickins unsigned long end, struct vm_area_struct **pprev, 4496597d783SHugh Dickins struct rb_node ***rb_link, struct rb_node **rb_parent) 4501da177e4SLinus Torvalds { 4511da177e4SLinus Torvalds struct rb_node **__rb_link, *__rb_parent, *rb_prev; 4521da177e4SLinus Torvalds 4531da177e4SLinus Torvalds __rb_link = &mm->mm_rb.rb_node; 4541da177e4SLinus Torvalds rb_prev = __rb_parent = NULL; 4551da177e4SLinus Torvalds 4561da177e4SLinus Torvalds while (*__rb_link) { 4571da177e4SLinus Torvalds struct vm_area_struct *vma_tmp; 4581da177e4SLinus Torvalds 4591da177e4SLinus Torvalds __rb_parent = *__rb_link; 4601da177e4SLinus Torvalds vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb); 4611da177e4SLinus Torvalds 4621da177e4SLinus Torvalds if (vma_tmp->vm_end > addr) { 4636597d783SHugh Dickins /* Fail if an existing vma overlaps the area */ 4646597d783SHugh Dickins if (vma_tmp->vm_start < end) 4656597d783SHugh Dickins return -ENOMEM; 4661da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_left; 4671da177e4SLinus Torvalds } else { 4681da177e4SLinus Torvalds rb_prev = __rb_parent; 4691da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_right; 4701da177e4SLinus Torvalds } 4711da177e4SLinus Torvalds } 4721da177e4SLinus Torvalds 4731da177e4SLinus Torvalds *pprev = NULL; 4741da177e4SLinus Torvalds if (rb_prev) 4751da177e4SLinus Torvalds *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb); 4761da177e4SLinus Torvalds *rb_link = __rb_link; 4771da177e4SLinus Torvalds *rb_parent = __rb_parent; 4786597d783SHugh Dickins return 0; 4791da177e4SLinus Torvalds } 4801da177e4SLinus Torvalds 481e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm, 482e8420a8eSCyril Hrubis unsigned long addr, unsigned long end) 483e8420a8eSCyril Hrubis { 484e8420a8eSCyril Hrubis unsigned long nr_pages = 0; 485e8420a8eSCyril Hrubis struct vm_area_struct *vma; 486e8420a8eSCyril Hrubis 487e8420a8eSCyril Hrubis /* Find first overlaping mapping */ 488e8420a8eSCyril Hrubis vma = find_vma_intersection(mm, addr, end); 489e8420a8eSCyril Hrubis if (!vma) 490e8420a8eSCyril Hrubis return 0; 491e8420a8eSCyril Hrubis 492e8420a8eSCyril Hrubis nr_pages = (min(end, vma->vm_end) - 493e8420a8eSCyril Hrubis max(addr, vma->vm_start)) >> PAGE_SHIFT; 494e8420a8eSCyril Hrubis 495e8420a8eSCyril Hrubis /* Iterate over the rest of the overlaps */ 496e8420a8eSCyril Hrubis for (vma = vma->vm_next; vma; vma = vma->vm_next) { 497e8420a8eSCyril Hrubis unsigned long overlap_len; 498e8420a8eSCyril Hrubis 499e8420a8eSCyril Hrubis if (vma->vm_start > end) 500e8420a8eSCyril Hrubis break; 501e8420a8eSCyril Hrubis 502e8420a8eSCyril Hrubis overlap_len = min(end, vma->vm_end) - vma->vm_start; 503e8420a8eSCyril Hrubis nr_pages += overlap_len >> PAGE_SHIFT; 504e8420a8eSCyril Hrubis } 505e8420a8eSCyril Hrubis 506e8420a8eSCyril Hrubis return nr_pages; 507e8420a8eSCyril Hrubis } 508e8420a8eSCyril Hrubis 5091da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma, 5101da177e4SLinus Torvalds struct rb_node **rb_link, struct rb_node *rb_parent) 5111da177e4SLinus Torvalds { 512d3737187SMichel Lespinasse /* Update tracking information for the gap following the new vma. */ 513d3737187SMichel Lespinasse if (vma->vm_next) 514d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 515d3737187SMichel Lespinasse else 516d3737187SMichel Lespinasse mm->highest_vm_end = vma->vm_end; 517d3737187SMichel Lespinasse 518d3737187SMichel Lespinasse /* 519d3737187SMichel Lespinasse * vma->vm_prev wasn't known when we followed the rbtree to find the 520d3737187SMichel Lespinasse * correct insertion point for that vma. As a result, we could not 521d3737187SMichel Lespinasse * update the vma vm_rb parents rb_subtree_gap values on the way down. 522d3737187SMichel Lespinasse * So, we first insert the vma with a zero rb_subtree_gap value 523d3737187SMichel Lespinasse * (to be consistent with what we did on the way down), and then 524d3737187SMichel Lespinasse * immediately update the gap to the correct value. Finally we 525d3737187SMichel Lespinasse * rebalance the rbtree after all augmented values have been set. 526d3737187SMichel Lespinasse */ 5271da177e4SLinus Torvalds rb_link_node(&vma->vm_rb, rb_parent, rb_link); 528d3737187SMichel Lespinasse vma->rb_subtree_gap = 0; 529d3737187SMichel Lespinasse vma_gap_update(vma); 530d3737187SMichel Lespinasse vma_rb_insert(vma, &mm->mm_rb); 5311da177e4SLinus Torvalds } 5321da177e4SLinus Torvalds 533cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma) 5341da177e4SLinus Torvalds { 5351da177e4SLinus Torvalds struct file *file; 5361da177e4SLinus Torvalds 5371da177e4SLinus Torvalds file = vma->vm_file; 5381da177e4SLinus Torvalds if (file) { 5391da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 5401da177e4SLinus Torvalds 5411da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 542496ad9aaSAl Viro atomic_dec(&file_inode(file)->i_writecount); 5431da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 5444bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 5451da177e4SLinus Torvalds 5461da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 5476b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, &mapping->i_mmap); 5481da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 5491da177e4SLinus Torvalds } 5501da177e4SLinus Torvalds } 5511da177e4SLinus Torvalds 5521da177e4SLinus Torvalds static void 5531da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 5541da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 5551da177e4SLinus Torvalds struct rb_node *rb_parent) 5561da177e4SLinus Torvalds { 5571da177e4SLinus Torvalds __vma_link_list(mm, vma, prev, rb_parent); 5581da177e4SLinus Torvalds __vma_link_rb(mm, vma, rb_link, rb_parent); 5591da177e4SLinus Torvalds } 5601da177e4SLinus Torvalds 5611da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 5621da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 5631da177e4SLinus Torvalds struct rb_node *rb_parent) 5641da177e4SLinus Torvalds { 5651da177e4SLinus Torvalds struct address_space *mapping = NULL; 5661da177e4SLinus Torvalds 56764ac4940SHuang Shijie if (vma->vm_file) { 5681da177e4SLinus Torvalds mapping = vma->vm_file->f_mapping; 56983cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 57064ac4940SHuang Shijie } 5711da177e4SLinus Torvalds 5721da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 5731da177e4SLinus Torvalds __vma_link_file(vma); 5741da177e4SLinus Torvalds 5751da177e4SLinus Torvalds if (mapping) 57683cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 5771da177e4SLinus Torvalds 5781da177e4SLinus Torvalds mm->map_count++; 5791da177e4SLinus Torvalds validate_mm(mm); 5801da177e4SLinus Torvalds } 5811da177e4SLinus Torvalds 5821da177e4SLinus Torvalds /* 58388f6b4c3SKautuk Consul * Helper for vma_adjust() in the split_vma insert case: insert a vma into the 5846b2dbba8SMichel Lespinasse * mm's list and rbtree. It has already been inserted into the interval tree. 5851da177e4SLinus Torvalds */ 58648aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 5871da177e4SLinus Torvalds { 5886597d783SHugh Dickins struct vm_area_struct *prev; 5891da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 5901da177e4SLinus Torvalds 5916597d783SHugh Dickins if (find_vma_links(mm, vma->vm_start, vma->vm_end, 5926597d783SHugh Dickins &prev, &rb_link, &rb_parent)) 5936597d783SHugh Dickins BUG(); 5941da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 5951da177e4SLinus Torvalds mm->map_count++; 5961da177e4SLinus Torvalds } 5971da177e4SLinus Torvalds 5981da177e4SLinus Torvalds static inline void 5991da177e4SLinus Torvalds __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma, 6001da177e4SLinus Torvalds struct vm_area_struct *prev) 6011da177e4SLinus Torvalds { 602d3737187SMichel Lespinasse struct vm_area_struct *next; 603297c5eeeSLinus Torvalds 604d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 605d3737187SMichel Lespinasse prev->vm_next = next = vma->vm_next; 606297c5eeeSLinus Torvalds if (next) 607297c5eeeSLinus Torvalds next->vm_prev = prev; 608615d6e87SDavidlohr Bueso 609615d6e87SDavidlohr Bueso /* Kill the cache */ 610615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 6111da177e4SLinus Torvalds } 6121da177e4SLinus Torvalds 6131da177e4SLinus Torvalds /* 6141da177e4SLinus Torvalds * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that 6151da177e4SLinus Torvalds * is already present in an i_mmap tree without adjusting the tree. 6161da177e4SLinus Torvalds * The following helper function should be used when such adjustments 6171da177e4SLinus Torvalds * are necessary. The "insert" vma (if any) is to be inserted 6181da177e4SLinus Torvalds * before we drop the necessary locks. 6191da177e4SLinus Torvalds */ 6205beb4930SRik van Riel int vma_adjust(struct vm_area_struct *vma, unsigned long start, 6211da177e4SLinus Torvalds unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert) 6221da177e4SLinus Torvalds { 6231da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 6241da177e4SLinus Torvalds struct vm_area_struct *next = vma->vm_next; 6251da177e4SLinus Torvalds struct vm_area_struct *importer = NULL; 6261da177e4SLinus Torvalds struct address_space *mapping = NULL; 6276b2dbba8SMichel Lespinasse struct rb_root *root = NULL; 628012f1800SRik van Riel struct anon_vma *anon_vma = NULL; 6291da177e4SLinus Torvalds struct file *file = vma->vm_file; 630d3737187SMichel Lespinasse bool start_changed = false, end_changed = false; 6311da177e4SLinus Torvalds long adjust_next = 0; 6321da177e4SLinus Torvalds int remove_next = 0; 6331da177e4SLinus Torvalds 6341da177e4SLinus Torvalds if (next && !insert) { 635287d97acSLinus Torvalds struct vm_area_struct *exporter = NULL; 636287d97acSLinus Torvalds 6371da177e4SLinus Torvalds if (end >= next->vm_end) { 6381da177e4SLinus Torvalds /* 6391da177e4SLinus Torvalds * vma expands, overlapping all the next, and 6401da177e4SLinus Torvalds * perhaps the one after too (mprotect case 6). 6411da177e4SLinus Torvalds */ 6421da177e4SLinus Torvalds again: remove_next = 1 + (end > next->vm_end); 6431da177e4SLinus Torvalds end = next->vm_end; 644287d97acSLinus Torvalds exporter = next; 6451da177e4SLinus Torvalds importer = vma; 6461da177e4SLinus Torvalds } else if (end > next->vm_start) { 6471da177e4SLinus Torvalds /* 6481da177e4SLinus Torvalds * vma expands, overlapping part of the next: 6491da177e4SLinus Torvalds * mprotect case 5 shifting the boundary up. 6501da177e4SLinus Torvalds */ 6511da177e4SLinus Torvalds adjust_next = (end - next->vm_start) >> PAGE_SHIFT; 652287d97acSLinus Torvalds exporter = next; 6531da177e4SLinus Torvalds importer = vma; 6541da177e4SLinus Torvalds } else if (end < vma->vm_end) { 6551da177e4SLinus Torvalds /* 6561da177e4SLinus Torvalds * vma shrinks, and !insert tells it's not 6571da177e4SLinus Torvalds * split_vma inserting another: so it must be 6581da177e4SLinus Torvalds * mprotect case 4 shifting the boundary down. 6591da177e4SLinus Torvalds */ 6601da177e4SLinus Torvalds adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT); 661287d97acSLinus Torvalds exporter = vma; 6621da177e4SLinus Torvalds importer = next; 6631da177e4SLinus Torvalds } 6641da177e4SLinus Torvalds 6655beb4930SRik van Riel /* 6665beb4930SRik van Riel * Easily overlooked: when mprotect shifts the boundary, 6675beb4930SRik van Riel * make sure the expanding vma has anon_vma set if the 6685beb4930SRik van Riel * shrinking vma had, to cover any anon pages imported. 6695beb4930SRik van Riel */ 670287d97acSLinus Torvalds if (exporter && exporter->anon_vma && !importer->anon_vma) { 671c4ea95d7SDaniel Forrest int error; 672c4ea95d7SDaniel Forrest 673287d97acSLinus Torvalds importer->anon_vma = exporter->anon_vma; 674b800c91aSKonstantin Khlebnikov error = anon_vma_clone(importer, exporter); 6753fe89b3eSLeon Yu if (error) 676b800c91aSKonstantin Khlebnikov return error; 677b800c91aSKonstantin Khlebnikov } 6785beb4930SRik van Riel } 6795beb4930SRik van Riel 6801da177e4SLinus Torvalds if (file) { 6811da177e4SLinus Torvalds mapping = file->f_mapping; 6821da177e4SLinus Torvalds root = &mapping->i_mmap; 683cbc91f71SSrikar Dronamraju uprobe_munmap(vma, vma->vm_start, vma->vm_end); 684682968e0SSrikar Dronamraju 685682968e0SSrikar Dronamraju if (adjust_next) 68627ba0644SKirill A. Shutemov uprobe_munmap(next, next->vm_start, next->vm_end); 687682968e0SSrikar Dronamraju 68883cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 6891da177e4SLinus Torvalds if (insert) { 6901da177e4SLinus Torvalds /* 6916b2dbba8SMichel Lespinasse * Put into interval tree now, so instantiated pages 6921da177e4SLinus Torvalds * are visible to arm/parisc __flush_dcache_page 6931da177e4SLinus Torvalds * throughout; but we cannot insert into address 6941da177e4SLinus Torvalds * space until vma start or end is updated. 6951da177e4SLinus Torvalds */ 6961da177e4SLinus Torvalds __vma_link_file(insert); 6971da177e4SLinus Torvalds } 6981da177e4SLinus Torvalds } 6991da177e4SLinus Torvalds 70094fcc585SAndrea Arcangeli vma_adjust_trans_huge(vma, start, end, adjust_next); 70194fcc585SAndrea Arcangeli 702012f1800SRik van Riel anon_vma = vma->anon_vma; 703bf181b9fSMichel Lespinasse if (!anon_vma && adjust_next) 704bf181b9fSMichel Lespinasse anon_vma = next->anon_vma; 705bf181b9fSMichel Lespinasse if (anon_vma) { 70681d1b09cSSasha Levin VM_BUG_ON_VMA(adjust_next && next->anon_vma && 70781d1b09cSSasha Levin anon_vma != next->anon_vma, next); 7084fc3f1d6SIngo Molnar anon_vma_lock_write(anon_vma); 709bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 710bf181b9fSMichel Lespinasse if (adjust_next) 711bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(next); 712bf181b9fSMichel Lespinasse } 713012f1800SRik van Riel 7141da177e4SLinus Torvalds if (root) { 7151da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 7166b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, root); 7171da177e4SLinus Torvalds if (adjust_next) 7186b2dbba8SMichel Lespinasse vma_interval_tree_remove(next, root); 7191da177e4SLinus Torvalds } 7201da177e4SLinus Torvalds 721d3737187SMichel Lespinasse if (start != vma->vm_start) { 7221da177e4SLinus Torvalds vma->vm_start = start; 723d3737187SMichel Lespinasse start_changed = true; 724d3737187SMichel Lespinasse } 725d3737187SMichel Lespinasse if (end != vma->vm_end) { 7261da177e4SLinus Torvalds vma->vm_end = end; 727d3737187SMichel Lespinasse end_changed = true; 728d3737187SMichel Lespinasse } 7291da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 7301da177e4SLinus Torvalds if (adjust_next) { 7311da177e4SLinus Torvalds next->vm_start += adjust_next << PAGE_SHIFT; 7321da177e4SLinus Torvalds next->vm_pgoff += adjust_next; 7331da177e4SLinus Torvalds } 7341da177e4SLinus Torvalds 7351da177e4SLinus Torvalds if (root) { 7361da177e4SLinus Torvalds if (adjust_next) 7376b2dbba8SMichel Lespinasse vma_interval_tree_insert(next, root); 7386b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, root); 7391da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 7401da177e4SLinus Torvalds } 7411da177e4SLinus Torvalds 7421da177e4SLinus Torvalds if (remove_next) { 7431da177e4SLinus Torvalds /* 7441da177e4SLinus Torvalds * vma_merge has merged next into vma, and needs 7451da177e4SLinus Torvalds * us to remove next before dropping the locks. 7461da177e4SLinus Torvalds */ 7471da177e4SLinus Torvalds __vma_unlink(mm, next, vma); 7481da177e4SLinus Torvalds if (file) 7491da177e4SLinus Torvalds __remove_shared_vm_struct(next, file, mapping); 7501da177e4SLinus Torvalds } else if (insert) { 7511da177e4SLinus Torvalds /* 7521da177e4SLinus Torvalds * split_vma has split insert from vma, and needs 7531da177e4SLinus Torvalds * us to insert it before dropping the locks 7541da177e4SLinus Torvalds * (it may either follow vma or precede it). 7551da177e4SLinus Torvalds */ 7561da177e4SLinus Torvalds __insert_vm_struct(mm, insert); 757d3737187SMichel Lespinasse } else { 758d3737187SMichel Lespinasse if (start_changed) 759d3737187SMichel Lespinasse vma_gap_update(vma); 760d3737187SMichel Lespinasse if (end_changed) { 761d3737187SMichel Lespinasse if (!next) 762d3737187SMichel Lespinasse mm->highest_vm_end = end; 763d3737187SMichel Lespinasse else if (!adjust_next) 764d3737187SMichel Lespinasse vma_gap_update(next); 765d3737187SMichel Lespinasse } 7661da177e4SLinus Torvalds } 7671da177e4SLinus Torvalds 768bf181b9fSMichel Lespinasse if (anon_vma) { 769bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 770bf181b9fSMichel Lespinasse if (adjust_next) 771bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(next); 77208b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 773bf181b9fSMichel Lespinasse } 7741da177e4SLinus Torvalds if (mapping) 77583cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 7761da177e4SLinus Torvalds 7772b144498SSrikar Dronamraju if (root) { 7787b2d81d4SIngo Molnar uprobe_mmap(vma); 7792b144498SSrikar Dronamraju 7802b144498SSrikar Dronamraju if (adjust_next) 7817b2d81d4SIngo Molnar uprobe_mmap(next); 7822b144498SSrikar Dronamraju } 7832b144498SSrikar Dronamraju 7841da177e4SLinus Torvalds if (remove_next) { 785925d1c40SMatt Helsley if (file) { 786cbc91f71SSrikar Dronamraju uprobe_munmap(next, next->vm_start, next->vm_end); 7871da177e4SLinus Torvalds fput(file); 788925d1c40SMatt Helsley } 7895beb4930SRik van Riel if (next->anon_vma) 7905beb4930SRik van Riel anon_vma_merge(vma, next); 7911da177e4SLinus Torvalds mm->map_count--; 7923964acd0SOleg Nesterov mpol_put(vma_policy(next)); 7931da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, next); 7941da177e4SLinus Torvalds /* 7951da177e4SLinus Torvalds * In mprotect's case 6 (see comments on vma_merge), 7961da177e4SLinus Torvalds * we must remove another next too. It would clutter 7971da177e4SLinus Torvalds * up the code too much to do both in one go. 7981da177e4SLinus Torvalds */ 7991da177e4SLinus Torvalds next = vma->vm_next; 800d3737187SMichel Lespinasse if (remove_next == 2) 8011da177e4SLinus Torvalds goto again; 802d3737187SMichel Lespinasse else if (next) 803d3737187SMichel Lespinasse vma_gap_update(next); 804d3737187SMichel Lespinasse else 805d3737187SMichel Lespinasse mm->highest_vm_end = end; 8061da177e4SLinus Torvalds } 8072b144498SSrikar Dronamraju if (insert && file) 8087b2d81d4SIngo Molnar uprobe_mmap(insert); 8091da177e4SLinus Torvalds 8101da177e4SLinus Torvalds validate_mm(mm); 8115beb4930SRik van Riel 8125beb4930SRik van Riel return 0; 8131da177e4SLinus Torvalds } 8141da177e4SLinus Torvalds 8151da177e4SLinus Torvalds /* 8161da177e4SLinus Torvalds * If the vma has a ->close operation then the driver probably needs to release 8171da177e4SLinus Torvalds * per-vma resources, so we don't attempt to merge those. 8181da177e4SLinus Torvalds */ 8191da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma, 82019a809afSAndrea Arcangeli struct file *file, unsigned long vm_flags, 82119a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 8221da177e4SLinus Torvalds { 82334228d47SCyrill Gorcunov /* 82434228d47SCyrill Gorcunov * VM_SOFTDIRTY should not prevent from VMA merging, if we 82534228d47SCyrill Gorcunov * match the flags but dirty bit -- the caller should mark 82634228d47SCyrill Gorcunov * merged VMA as dirty. If dirty bit won't be excluded from 82734228d47SCyrill Gorcunov * comparison, we increase pressue on the memory system forcing 82834228d47SCyrill Gorcunov * the kernel to generate new VMAs when old one could be 82934228d47SCyrill Gorcunov * extended instead. 83034228d47SCyrill Gorcunov */ 83134228d47SCyrill Gorcunov if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY) 8321da177e4SLinus Torvalds return 0; 8331da177e4SLinus Torvalds if (vma->vm_file != file) 8341da177e4SLinus Torvalds return 0; 8351da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 8361da177e4SLinus Torvalds return 0; 83719a809afSAndrea Arcangeli if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx)) 83819a809afSAndrea Arcangeli return 0; 8391da177e4SLinus Torvalds return 1; 8401da177e4SLinus Torvalds } 8411da177e4SLinus Torvalds 8421da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1, 843965f55deSShaohua Li struct anon_vma *anon_vma2, 844965f55deSShaohua Li struct vm_area_struct *vma) 8451da177e4SLinus Torvalds { 846965f55deSShaohua Li /* 847965f55deSShaohua Li * The list_is_singular() test is to avoid merging VMA cloned from 848965f55deSShaohua Li * parents. This can improve scalability caused by anon_vma lock. 849965f55deSShaohua Li */ 850965f55deSShaohua Li if ((!anon_vma1 || !anon_vma2) && (!vma || 851965f55deSShaohua Li list_is_singular(&vma->anon_vma_chain))) 852965f55deSShaohua Li return 1; 853965f55deSShaohua Li return anon_vma1 == anon_vma2; 8541da177e4SLinus Torvalds } 8551da177e4SLinus Torvalds 8561da177e4SLinus Torvalds /* 8571da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 8581da177e4SLinus Torvalds * in front of (at a lower virtual address and file offset than) the vma. 8591da177e4SLinus Torvalds * 8601da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 8611da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 8621da177e4SLinus Torvalds * 8631da177e4SLinus Torvalds * We don't check here for the merged mmap wrapping around the end of pagecache 8641da177e4SLinus Torvalds * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which 8651da177e4SLinus Torvalds * wrap, nor mmaps which cover the final page at index -1UL. 8661da177e4SLinus Torvalds */ 8671da177e4SLinus Torvalds static int 8681da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags, 86919a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 87019a809afSAndrea Arcangeli pgoff_t vm_pgoff, 87119a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 8721da177e4SLinus Torvalds { 87319a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 874965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 8751da177e4SLinus Torvalds if (vma->vm_pgoff == vm_pgoff) 8761da177e4SLinus Torvalds return 1; 8771da177e4SLinus Torvalds } 8781da177e4SLinus Torvalds return 0; 8791da177e4SLinus Torvalds } 8801da177e4SLinus Torvalds 8811da177e4SLinus Torvalds /* 8821da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 8831da177e4SLinus Torvalds * beyond (at a higher virtual address and file offset than) the vma. 8841da177e4SLinus Torvalds * 8851da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 8861da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 8871da177e4SLinus Torvalds */ 8881da177e4SLinus Torvalds static int 8891da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags, 89019a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 89119a809afSAndrea Arcangeli pgoff_t vm_pgoff, 89219a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 8931da177e4SLinus Torvalds { 89419a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 895965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 8961da177e4SLinus Torvalds pgoff_t vm_pglen; 897d6e93217SLibin vm_pglen = vma_pages(vma); 8981da177e4SLinus Torvalds if (vma->vm_pgoff + vm_pglen == vm_pgoff) 8991da177e4SLinus Torvalds return 1; 9001da177e4SLinus Torvalds } 9011da177e4SLinus Torvalds return 0; 9021da177e4SLinus Torvalds } 9031da177e4SLinus Torvalds 9041da177e4SLinus Torvalds /* 9051da177e4SLinus Torvalds * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out 9061da177e4SLinus Torvalds * whether that can be merged with its predecessor or its successor. 9071da177e4SLinus Torvalds * Or both (it neatly fills a hole). 9081da177e4SLinus Torvalds * 9091da177e4SLinus Torvalds * In most cases - when called for mmap, brk or mremap - [addr,end) is 9101da177e4SLinus Torvalds * certain not to be mapped by the time vma_merge is called; but when 9111da177e4SLinus Torvalds * called for mprotect, it is certain to be already mapped (either at 9121da177e4SLinus Torvalds * an offset within prev, or at the start of next), and the flags of 9131da177e4SLinus Torvalds * this area are about to be changed to vm_flags - and the no-change 9141da177e4SLinus Torvalds * case has already been eliminated. 9151da177e4SLinus Torvalds * 9161da177e4SLinus Torvalds * The following mprotect cases have to be considered, where AAAA is 9171da177e4SLinus Torvalds * the area passed down from mprotect_fixup, never extending beyond one 9181da177e4SLinus Torvalds * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after: 9191da177e4SLinus Torvalds * 9201da177e4SLinus Torvalds * AAAA AAAA AAAA AAAA 9211da177e4SLinus Torvalds * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX 9221da177e4SLinus Torvalds * cannot merge might become might become might become 9231da177e4SLinus Torvalds * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or 9241da177e4SLinus Torvalds * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or 9251da177e4SLinus Torvalds * mremap move: PPPPNNNNNNNN 8 9261da177e4SLinus Torvalds * AAAA 9271da177e4SLinus Torvalds * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN 9281da177e4SLinus Torvalds * might become case 1 below case 2 below case 3 below 9291da177e4SLinus Torvalds * 9301da177e4SLinus Torvalds * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX: 9311da177e4SLinus Torvalds * mprotect_fixup updates vm_flags & vm_page_prot on successful return. 9321da177e4SLinus Torvalds */ 9331da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm, 9341da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long addr, 9351da177e4SLinus Torvalds unsigned long end, unsigned long vm_flags, 9361da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, 93719a809afSAndrea Arcangeli pgoff_t pgoff, struct mempolicy *policy, 93819a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 9391da177e4SLinus Torvalds { 9401da177e4SLinus Torvalds pgoff_t pglen = (end - addr) >> PAGE_SHIFT; 9411da177e4SLinus Torvalds struct vm_area_struct *area, *next; 9425beb4930SRik van Riel int err; 9431da177e4SLinus Torvalds 9441da177e4SLinus Torvalds /* 9451da177e4SLinus Torvalds * We later require that vma->vm_flags == vm_flags, 9461da177e4SLinus Torvalds * so this tests vma->vm_flags & VM_SPECIAL, too. 9471da177e4SLinus Torvalds */ 9481da177e4SLinus Torvalds if (vm_flags & VM_SPECIAL) 9491da177e4SLinus Torvalds return NULL; 9501da177e4SLinus Torvalds 9511da177e4SLinus Torvalds if (prev) 9521da177e4SLinus Torvalds next = prev->vm_next; 9531da177e4SLinus Torvalds else 9541da177e4SLinus Torvalds next = mm->mmap; 9551da177e4SLinus Torvalds area = next; 9561da177e4SLinus Torvalds if (next && next->vm_end == end) /* cases 6, 7, 8 */ 9571da177e4SLinus Torvalds next = next->vm_next; 9581da177e4SLinus Torvalds 9591da177e4SLinus Torvalds /* 9601da177e4SLinus Torvalds * Can it merge with the predecessor? 9611da177e4SLinus Torvalds */ 9621da177e4SLinus Torvalds if (prev && prev->vm_end == addr && 9631da177e4SLinus Torvalds mpol_equal(vma_policy(prev), policy) && 9641da177e4SLinus Torvalds can_vma_merge_after(prev, vm_flags, 96519a809afSAndrea Arcangeli anon_vma, file, pgoff, 96619a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 9671da177e4SLinus Torvalds /* 9681da177e4SLinus Torvalds * OK, it can. Can we now merge in the successor as well? 9691da177e4SLinus Torvalds */ 9701da177e4SLinus Torvalds if (next && end == next->vm_start && 9711da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 9721da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 97319a809afSAndrea Arcangeli anon_vma, file, 97419a809afSAndrea Arcangeli pgoff+pglen, 97519a809afSAndrea Arcangeli vm_userfaultfd_ctx) && 9761da177e4SLinus Torvalds is_mergeable_anon_vma(prev->anon_vma, 977965f55deSShaohua Li next->anon_vma, NULL)) { 9781da177e4SLinus Torvalds /* cases 1, 6 */ 9795beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 9801da177e4SLinus Torvalds next->vm_end, prev->vm_pgoff, NULL); 9811da177e4SLinus Torvalds } else /* cases 2, 5, 7 */ 9825beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 9831da177e4SLinus Torvalds end, prev->vm_pgoff, NULL); 9845beb4930SRik van Riel if (err) 9855beb4930SRik van Riel return NULL; 9866d50e60cSDavid Rientjes khugepaged_enter_vma_merge(prev, vm_flags); 9871da177e4SLinus Torvalds return prev; 9881da177e4SLinus Torvalds } 9891da177e4SLinus Torvalds 9901da177e4SLinus Torvalds /* 9911da177e4SLinus Torvalds * Can this new request be merged in front of next? 9921da177e4SLinus Torvalds */ 9931da177e4SLinus Torvalds if (next && end == next->vm_start && 9941da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 9951da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 99619a809afSAndrea Arcangeli anon_vma, file, pgoff+pglen, 99719a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 9981da177e4SLinus Torvalds if (prev && addr < prev->vm_end) /* case 4 */ 9995beb4930SRik van Riel err = vma_adjust(prev, prev->vm_start, 10001da177e4SLinus Torvalds addr, prev->vm_pgoff, NULL); 10011da177e4SLinus Torvalds else /* cases 3, 8 */ 10025beb4930SRik van Riel err = vma_adjust(area, addr, next->vm_end, 10031da177e4SLinus Torvalds next->vm_pgoff - pglen, NULL); 10045beb4930SRik van Riel if (err) 10055beb4930SRik van Riel return NULL; 10066d50e60cSDavid Rientjes khugepaged_enter_vma_merge(area, vm_flags); 10071da177e4SLinus Torvalds return area; 10081da177e4SLinus Torvalds } 10091da177e4SLinus Torvalds 10101da177e4SLinus Torvalds return NULL; 10111da177e4SLinus Torvalds } 10121da177e4SLinus Torvalds 10131da177e4SLinus Torvalds /* 1014d0e9fe17SLinus Torvalds * Rough compatbility check to quickly see if it's even worth looking 1015d0e9fe17SLinus Torvalds * at sharing an anon_vma. 1016d0e9fe17SLinus Torvalds * 1017d0e9fe17SLinus Torvalds * They need to have the same vm_file, and the flags can only differ 1018d0e9fe17SLinus Torvalds * in things that mprotect may change. 1019d0e9fe17SLinus Torvalds * 1020d0e9fe17SLinus Torvalds * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that 1021d0e9fe17SLinus Torvalds * we can merge the two vma's. For example, we refuse to merge a vma if 1022d0e9fe17SLinus Torvalds * there is a vm_ops->close() function, because that indicates that the 1023d0e9fe17SLinus Torvalds * driver is doing some kind of reference counting. But that doesn't 1024d0e9fe17SLinus Torvalds * really matter for the anon_vma sharing case. 1025d0e9fe17SLinus Torvalds */ 1026d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b) 1027d0e9fe17SLinus Torvalds { 1028d0e9fe17SLinus Torvalds return a->vm_end == b->vm_start && 1029d0e9fe17SLinus Torvalds mpol_equal(vma_policy(a), vma_policy(b)) && 1030d0e9fe17SLinus Torvalds a->vm_file == b->vm_file && 103134228d47SCyrill Gorcunov !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) && 1032d0e9fe17SLinus Torvalds b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT); 1033d0e9fe17SLinus Torvalds } 1034d0e9fe17SLinus Torvalds 1035d0e9fe17SLinus Torvalds /* 1036d0e9fe17SLinus Torvalds * Do some basic sanity checking to see if we can re-use the anon_vma 1037d0e9fe17SLinus Torvalds * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be 1038d0e9fe17SLinus Torvalds * the same as 'old', the other will be the new one that is trying 1039d0e9fe17SLinus Torvalds * to share the anon_vma. 1040d0e9fe17SLinus Torvalds * 1041d0e9fe17SLinus Torvalds * NOTE! This runs with mm_sem held for reading, so it is possible that 1042d0e9fe17SLinus Torvalds * the anon_vma of 'old' is concurrently in the process of being set up 1043d0e9fe17SLinus Torvalds * by another page fault trying to merge _that_. But that's ok: if it 1044d0e9fe17SLinus Torvalds * is being set up, that automatically means that it will be a singleton 1045d0e9fe17SLinus Torvalds * acceptable for merging, so we can do all of this optimistically. But 10464db0c3c2SJason Low * we do that READ_ONCE() to make sure that we never re-load the pointer. 1047d0e9fe17SLinus Torvalds * 1048d0e9fe17SLinus Torvalds * IOW: that the "list_is_singular()" test on the anon_vma_chain only 1049d0e9fe17SLinus Torvalds * matters for the 'stable anon_vma' case (ie the thing we want to avoid 1050d0e9fe17SLinus Torvalds * is to return an anon_vma that is "complex" due to having gone through 1051d0e9fe17SLinus Torvalds * a fork). 1052d0e9fe17SLinus Torvalds * 1053d0e9fe17SLinus Torvalds * We also make sure that the two vma's are compatible (adjacent, 1054d0e9fe17SLinus Torvalds * and with the same memory policies). That's all stable, even with just 1055d0e9fe17SLinus Torvalds * a read lock on the mm_sem. 1056d0e9fe17SLinus Torvalds */ 1057d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b) 1058d0e9fe17SLinus Torvalds { 1059d0e9fe17SLinus Torvalds if (anon_vma_compatible(a, b)) { 10604db0c3c2SJason Low struct anon_vma *anon_vma = READ_ONCE(old->anon_vma); 1061d0e9fe17SLinus Torvalds 1062d0e9fe17SLinus Torvalds if (anon_vma && list_is_singular(&old->anon_vma_chain)) 1063d0e9fe17SLinus Torvalds return anon_vma; 1064d0e9fe17SLinus Torvalds } 1065d0e9fe17SLinus Torvalds return NULL; 1066d0e9fe17SLinus Torvalds } 1067d0e9fe17SLinus Torvalds 1068d0e9fe17SLinus Torvalds /* 10691da177e4SLinus Torvalds * find_mergeable_anon_vma is used by anon_vma_prepare, to check 10701da177e4SLinus Torvalds * neighbouring vmas for a suitable anon_vma, before it goes off 10711da177e4SLinus Torvalds * to allocate a new anon_vma. It checks because a repetitive 10721da177e4SLinus Torvalds * sequence of mprotects and faults may otherwise lead to distinct 10731da177e4SLinus Torvalds * anon_vmas being allocated, preventing vma merge in subsequent 10741da177e4SLinus Torvalds * mprotect. 10751da177e4SLinus Torvalds */ 10761da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) 10771da177e4SLinus Torvalds { 1078d0e9fe17SLinus Torvalds struct anon_vma *anon_vma; 10791da177e4SLinus Torvalds struct vm_area_struct *near; 10801da177e4SLinus Torvalds 10811da177e4SLinus Torvalds near = vma->vm_next; 10821da177e4SLinus Torvalds if (!near) 10831da177e4SLinus Torvalds goto try_prev; 10841da177e4SLinus Torvalds 1085d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, vma, near); 1086d0e9fe17SLinus Torvalds if (anon_vma) 1087d0e9fe17SLinus Torvalds return anon_vma; 10881da177e4SLinus Torvalds try_prev: 10899be34c9dSLinus Torvalds near = vma->vm_prev; 10901da177e4SLinus Torvalds if (!near) 10911da177e4SLinus Torvalds goto none; 10921da177e4SLinus Torvalds 1093d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, near, vma); 1094d0e9fe17SLinus Torvalds if (anon_vma) 1095d0e9fe17SLinus Torvalds return anon_vma; 10961da177e4SLinus Torvalds none: 10971da177e4SLinus Torvalds /* 10981da177e4SLinus Torvalds * There's no absolute need to look only at touching neighbours: 10991da177e4SLinus Torvalds * we could search further afield for "compatible" anon_vmas. 11001da177e4SLinus Torvalds * But it would probably just be a waste of time searching, 11011da177e4SLinus Torvalds * or lead to too many vmas hanging off the same anon_vma. 11021da177e4SLinus Torvalds * We're trying to allow mprotect remerging later on, 11031da177e4SLinus Torvalds * not trying to minimize memory used for anon_vmas. 11041da177e4SLinus Torvalds */ 11051da177e4SLinus Torvalds return NULL; 11061da177e4SLinus Torvalds } 11071da177e4SLinus Torvalds 11081da177e4SLinus Torvalds /* 110940401530SAl Viro * If a hint addr is less than mmap_min_addr change hint to be as 111040401530SAl Viro * low as possible but still greater than mmap_min_addr 111140401530SAl Viro */ 111240401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint) 111340401530SAl Viro { 111440401530SAl Viro hint &= PAGE_MASK; 111540401530SAl Viro if (((void *)hint != NULL) && 111640401530SAl Viro (hint < mmap_min_addr)) 111740401530SAl Viro return PAGE_ALIGN(mmap_min_addr); 111840401530SAl Viro return hint; 111940401530SAl Viro } 112040401530SAl Viro 1121363ee17fSDavidlohr Bueso static inline int mlock_future_check(struct mm_struct *mm, 1122363ee17fSDavidlohr Bueso unsigned long flags, 1123363ee17fSDavidlohr Bueso unsigned long len) 1124363ee17fSDavidlohr Bueso { 1125363ee17fSDavidlohr Bueso unsigned long locked, lock_limit; 1126363ee17fSDavidlohr Bueso 1127363ee17fSDavidlohr Bueso /* mlock MCL_FUTURE? */ 1128363ee17fSDavidlohr Bueso if (flags & VM_LOCKED) { 1129363ee17fSDavidlohr Bueso locked = len >> PAGE_SHIFT; 1130363ee17fSDavidlohr Bueso locked += mm->locked_vm; 1131363ee17fSDavidlohr Bueso lock_limit = rlimit(RLIMIT_MEMLOCK); 1132363ee17fSDavidlohr Bueso lock_limit >>= PAGE_SHIFT; 1133363ee17fSDavidlohr Bueso if (locked > lock_limit && !capable(CAP_IPC_LOCK)) 1134363ee17fSDavidlohr Bueso return -EAGAIN; 1135363ee17fSDavidlohr Bueso } 1136363ee17fSDavidlohr Bueso return 0; 1137363ee17fSDavidlohr Bueso } 1138363ee17fSDavidlohr Bueso 113940401530SAl Viro /* 114027f5de79SJianjun Kong * The caller must hold down_write(¤t->mm->mmap_sem). 11411da177e4SLinus Torvalds */ 11421fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr, 11431da177e4SLinus Torvalds unsigned long len, unsigned long prot, 11441fcfd8dbSOleg Nesterov unsigned long flags, vm_flags_t vm_flags, 11451fcfd8dbSOleg Nesterov unsigned long pgoff, unsigned long *populate) 11461da177e4SLinus Torvalds { 11471da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 11481da177e4SLinus Torvalds 114941badc15SMichel Lespinasse *populate = 0; 1150bebeb3d6SMichel Lespinasse 1151e37609bbSPiotr Kwapulinski if (!len) 1152e37609bbSPiotr Kwapulinski return -EINVAL; 1153e37609bbSPiotr Kwapulinski 11541da177e4SLinus Torvalds /* 11551da177e4SLinus Torvalds * Does the application expect PROT_READ to imply PROT_EXEC? 11561da177e4SLinus Torvalds * 11571da177e4SLinus Torvalds * (the exception is when the underlying filesystem is noexec 11581da177e4SLinus Torvalds * mounted, in which case we dont add PROT_EXEC.) 11591da177e4SLinus Torvalds */ 11601da177e4SLinus Torvalds if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) 116190f8572bSEric W. Biederman if (!(file && path_noexec(&file->f_path))) 11621da177e4SLinus Torvalds prot |= PROT_EXEC; 11631da177e4SLinus Torvalds 11647cd94146SEric Paris if (!(flags & MAP_FIXED)) 11657cd94146SEric Paris addr = round_hint_to_min(addr); 11667cd94146SEric Paris 11671da177e4SLinus Torvalds /* Careful about overflows.. */ 11681da177e4SLinus Torvalds len = PAGE_ALIGN(len); 11699206de95SAl Viro if (!len) 11701da177e4SLinus Torvalds return -ENOMEM; 11711da177e4SLinus Torvalds 11721da177e4SLinus Torvalds /* offset overflow? */ 11731da177e4SLinus Torvalds if ((pgoff + (len >> PAGE_SHIFT)) < pgoff) 11741da177e4SLinus Torvalds return -EOVERFLOW; 11751da177e4SLinus Torvalds 11761da177e4SLinus Torvalds /* Too many mappings? */ 11771da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 11781da177e4SLinus Torvalds return -ENOMEM; 11791da177e4SLinus Torvalds 11801da177e4SLinus Torvalds /* Obtain the address to map to. we verify (or select) it and ensure 11811da177e4SLinus Torvalds * that it represents a valid section of the address space. 11821da177e4SLinus Torvalds */ 11831da177e4SLinus Torvalds addr = get_unmapped_area(file, addr, len, pgoff, flags); 1184de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 11851da177e4SLinus Torvalds return addr; 11861da177e4SLinus Torvalds 11871da177e4SLinus Torvalds /* Do simple checking here so the lower-level routines won't have 11881da177e4SLinus Torvalds * to. we assume access permissions have been handled by the open 11891da177e4SLinus Torvalds * of the memory object, so we don't do any here. 11901da177e4SLinus Torvalds */ 11911fcfd8dbSOleg Nesterov vm_flags |= calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) | 11921da177e4SLinus Torvalds mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC; 11931da177e4SLinus Torvalds 1194cdf7b341SHuang Shijie if (flags & MAP_LOCKED) 11951da177e4SLinus Torvalds if (!can_do_mlock()) 11961da177e4SLinus Torvalds return -EPERM; 1197ba470de4SRik van Riel 1198363ee17fSDavidlohr Bueso if (mlock_future_check(mm, vm_flags, len)) 11991da177e4SLinus Torvalds return -EAGAIN; 12001da177e4SLinus Torvalds 12011da177e4SLinus Torvalds if (file) { 1202077bf22bSOleg Nesterov struct inode *inode = file_inode(file); 1203077bf22bSOleg Nesterov 12041da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 12051da177e4SLinus Torvalds case MAP_SHARED: 12061da177e4SLinus Torvalds if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE)) 12071da177e4SLinus Torvalds return -EACCES; 12081da177e4SLinus Torvalds 12091da177e4SLinus Torvalds /* 12101da177e4SLinus Torvalds * Make sure we don't allow writing to an append-only 12111da177e4SLinus Torvalds * file.. 12121da177e4SLinus Torvalds */ 12131da177e4SLinus Torvalds if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE)) 12141da177e4SLinus Torvalds return -EACCES; 12151da177e4SLinus Torvalds 12161da177e4SLinus Torvalds /* 12171da177e4SLinus Torvalds * Make sure there are no mandatory locks on the file. 12181da177e4SLinus Torvalds */ 1219d7a06983SJeff Layton if (locks_verify_locked(file)) 12201da177e4SLinus Torvalds return -EAGAIN; 12211da177e4SLinus Torvalds 12221da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 12231da177e4SLinus Torvalds if (!(file->f_mode & FMODE_WRITE)) 12241da177e4SLinus Torvalds vm_flags &= ~(VM_MAYWRITE | VM_SHARED); 12251da177e4SLinus Torvalds 12261da177e4SLinus Torvalds /* fall through */ 12271da177e4SLinus Torvalds case MAP_PRIVATE: 12281da177e4SLinus Torvalds if (!(file->f_mode & FMODE_READ)) 12291da177e4SLinus Torvalds return -EACCES; 123090f8572bSEric W. Biederman if (path_noexec(&file->f_path)) { 123180c5606cSLinus Torvalds if (vm_flags & VM_EXEC) 123280c5606cSLinus Torvalds return -EPERM; 123380c5606cSLinus Torvalds vm_flags &= ~VM_MAYEXEC; 123480c5606cSLinus Torvalds } 123580c5606cSLinus Torvalds 123672c2d531SAl Viro if (!file->f_op->mmap) 123780c5606cSLinus Torvalds return -ENODEV; 1238b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1239b2c56e4fSOleg Nesterov return -EINVAL; 12401da177e4SLinus Torvalds break; 12411da177e4SLinus Torvalds 12421da177e4SLinus Torvalds default: 12431da177e4SLinus Torvalds return -EINVAL; 12441da177e4SLinus Torvalds } 12451da177e4SLinus Torvalds } else { 12461da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 12471da177e4SLinus Torvalds case MAP_SHARED: 1248b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1249b2c56e4fSOleg Nesterov return -EINVAL; 1250ce363942STejun Heo /* 1251ce363942STejun Heo * Ignore pgoff. 1252ce363942STejun Heo */ 1253ce363942STejun Heo pgoff = 0; 12541da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 12551da177e4SLinus Torvalds break; 12561da177e4SLinus Torvalds case MAP_PRIVATE: 12571da177e4SLinus Torvalds /* 12581da177e4SLinus Torvalds * Set pgoff according to addr for anon_vma. 12591da177e4SLinus Torvalds */ 12601da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 12611da177e4SLinus Torvalds break; 12621da177e4SLinus Torvalds default: 12631da177e4SLinus Torvalds return -EINVAL; 12641da177e4SLinus Torvalds } 12651da177e4SLinus Torvalds } 12661da177e4SLinus Torvalds 1267c22c0d63SMichel Lespinasse /* 1268c22c0d63SMichel Lespinasse * Set 'VM_NORESERVE' if we should not account for the 1269c22c0d63SMichel Lespinasse * memory use of this mapping. 1270c22c0d63SMichel Lespinasse */ 1271c22c0d63SMichel Lespinasse if (flags & MAP_NORESERVE) { 1272c22c0d63SMichel Lespinasse /* We honor MAP_NORESERVE if allowed to overcommit */ 1273c22c0d63SMichel Lespinasse if (sysctl_overcommit_memory != OVERCOMMIT_NEVER) 1274c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1275c22c0d63SMichel Lespinasse 1276c22c0d63SMichel Lespinasse /* hugetlb applies strict overcommit unless MAP_NORESERVE */ 1277c22c0d63SMichel Lespinasse if (file && is_file_hugepages(file)) 1278c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1279c22c0d63SMichel Lespinasse } 1280c22c0d63SMichel Lespinasse 1281c22c0d63SMichel Lespinasse addr = mmap_region(file, addr, len, vm_flags, pgoff); 128209a9f1d2SMichel Lespinasse if (!IS_ERR_VALUE(addr) && 128309a9f1d2SMichel Lespinasse ((vm_flags & VM_LOCKED) || 128409a9f1d2SMichel Lespinasse (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE)) 128541badc15SMichel Lespinasse *populate = len; 1286bebeb3d6SMichel Lespinasse return addr; 12870165ab44SMiklos Szeredi } 12886be5ceb0SLinus Torvalds 128966f0dc48SHugh Dickins SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len, 129066f0dc48SHugh Dickins unsigned long, prot, unsigned long, flags, 129166f0dc48SHugh Dickins unsigned long, fd, unsigned long, pgoff) 129266f0dc48SHugh Dickins { 129366f0dc48SHugh Dickins struct file *file = NULL; 12941e3ee14bSChen Gang unsigned long retval; 129566f0dc48SHugh Dickins 129666f0dc48SHugh Dickins if (!(flags & MAP_ANONYMOUS)) { 1297120a795dSAl Viro audit_mmap_fd(fd, flags); 129866f0dc48SHugh Dickins file = fget(fd); 129966f0dc48SHugh Dickins if (!file) 13001e3ee14bSChen Gang return -EBADF; 1301af73e4d9SNaoya Horiguchi if (is_file_hugepages(file)) 1302af73e4d9SNaoya Horiguchi len = ALIGN(len, huge_page_size(hstate_file(file))); 1303493af578SJörn Engel retval = -EINVAL; 1304493af578SJörn Engel if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file))) 1305493af578SJörn Engel goto out_fput; 130666f0dc48SHugh Dickins } else if (flags & MAP_HUGETLB) { 130766f0dc48SHugh Dickins struct user_struct *user = NULL; 1308c103a4dcSAndrew Morton struct hstate *hs; 1309af73e4d9SNaoya Horiguchi 1310c103a4dcSAndrew Morton hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK); 1311091d0d55SLi Zefan if (!hs) 1312091d0d55SLi Zefan return -EINVAL; 1313091d0d55SLi Zefan 1314091d0d55SLi Zefan len = ALIGN(len, huge_page_size(hs)); 131566f0dc48SHugh Dickins /* 131666f0dc48SHugh Dickins * VM_NORESERVE is used because the reservations will be 131766f0dc48SHugh Dickins * taken when vm_ops->mmap() is called 131866f0dc48SHugh Dickins * A dummy user value is used because we are not locking 131966f0dc48SHugh Dickins * memory so no accounting is necessary 132066f0dc48SHugh Dickins */ 1321af73e4d9SNaoya Horiguchi file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, 132242d7395fSAndi Kleen VM_NORESERVE, 132342d7395fSAndi Kleen &user, HUGETLB_ANONHUGE_INODE, 132442d7395fSAndi Kleen (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 132566f0dc48SHugh Dickins if (IS_ERR(file)) 132666f0dc48SHugh Dickins return PTR_ERR(file); 132766f0dc48SHugh Dickins } 132866f0dc48SHugh Dickins 132966f0dc48SHugh Dickins flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE); 133066f0dc48SHugh Dickins 1331eb36c587SAl Viro retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff); 1332493af578SJörn Engel out_fput: 133366f0dc48SHugh Dickins if (file) 133466f0dc48SHugh Dickins fput(file); 133566f0dc48SHugh Dickins return retval; 133666f0dc48SHugh Dickins } 133766f0dc48SHugh Dickins 1338a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP 1339a4679373SChristoph Hellwig struct mmap_arg_struct { 1340a4679373SChristoph Hellwig unsigned long addr; 1341a4679373SChristoph Hellwig unsigned long len; 1342a4679373SChristoph Hellwig unsigned long prot; 1343a4679373SChristoph Hellwig unsigned long flags; 1344a4679373SChristoph Hellwig unsigned long fd; 1345a4679373SChristoph Hellwig unsigned long offset; 1346a4679373SChristoph Hellwig }; 1347a4679373SChristoph Hellwig 1348a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg) 1349a4679373SChristoph Hellwig { 1350a4679373SChristoph Hellwig struct mmap_arg_struct a; 1351a4679373SChristoph Hellwig 1352a4679373SChristoph Hellwig if (copy_from_user(&a, arg, sizeof(a))) 1353a4679373SChristoph Hellwig return -EFAULT; 1354de1741a1SAlexander Kuleshov if (offset_in_page(a.offset)) 1355a4679373SChristoph Hellwig return -EINVAL; 1356a4679373SChristoph Hellwig 1357a4679373SChristoph Hellwig return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, 1358a4679373SChristoph Hellwig a.offset >> PAGE_SHIFT); 1359a4679373SChristoph Hellwig } 1360a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */ 1361a4679373SChristoph Hellwig 13624e950f6fSAlexey Dobriyan /* 13634e950f6fSAlexey Dobriyan * Some shared mappigns will want the pages marked read-only 13644e950f6fSAlexey Dobriyan * to track write events. If so, we'll downgrade vm_page_prot 13654e950f6fSAlexey Dobriyan * to the private version (using protection_map[] without the 13664e950f6fSAlexey Dobriyan * VM_SHARED bit). 13674e950f6fSAlexey Dobriyan */ 13684e950f6fSAlexey Dobriyan int vma_wants_writenotify(struct vm_area_struct *vma) 13694e950f6fSAlexey Dobriyan { 1370ca16d140SKOSAKI Motohiro vm_flags_t vm_flags = vma->vm_flags; 13718a04446aSKirill A. Shutemov const struct vm_operations_struct *vm_ops = vma->vm_ops; 13724e950f6fSAlexey Dobriyan 13734e950f6fSAlexey Dobriyan /* If it was private or non-writable, the write bit is already clear */ 13744e950f6fSAlexey Dobriyan if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED))) 13754e950f6fSAlexey Dobriyan return 0; 13764e950f6fSAlexey Dobriyan 13774e950f6fSAlexey Dobriyan /* The backer wishes to know when pages are first written to? */ 13788a04446aSKirill A. Shutemov if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite)) 13794e950f6fSAlexey Dobriyan return 1; 13804e950f6fSAlexey Dobriyan 138164e45507SPeter Feiner /* The open routine did something to the protections that pgprot_modify 138264e45507SPeter Feiner * won't preserve? */ 13834e950f6fSAlexey Dobriyan if (pgprot_val(vma->vm_page_prot) != 138464e45507SPeter Feiner pgprot_val(vm_pgprot_modify(vma->vm_page_prot, vm_flags))) 13854e950f6fSAlexey Dobriyan return 0; 13864e950f6fSAlexey Dobriyan 138764e45507SPeter Feiner /* Do we need to track softdirty? */ 138864e45507SPeter Feiner if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY)) 138964e45507SPeter Feiner return 1; 139064e45507SPeter Feiner 13914e950f6fSAlexey Dobriyan /* Specialty mapping? */ 13924b6e1e37SKonstantin Khlebnikov if (vm_flags & VM_PFNMAP) 13934e950f6fSAlexey Dobriyan return 0; 13944e950f6fSAlexey Dobriyan 13954e950f6fSAlexey Dobriyan /* Can the mapping track the dirty pages? */ 13964e950f6fSAlexey Dobriyan return vma->vm_file && vma->vm_file->f_mapping && 13974e950f6fSAlexey Dobriyan mapping_cap_account_dirty(vma->vm_file->f_mapping); 13984e950f6fSAlexey Dobriyan } 13994e950f6fSAlexey Dobriyan 1400fc8744adSLinus Torvalds /* 1401fc8744adSLinus Torvalds * We account for memory if it's a private writeable mapping, 14025a6fe125SMel Gorman * not hugepages and VM_NORESERVE wasn't set. 1403fc8744adSLinus Torvalds */ 1404ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags) 1405fc8744adSLinus Torvalds { 14065a6fe125SMel Gorman /* 14075a6fe125SMel Gorman * hugetlb has its own accounting separate from the core VM 14085a6fe125SMel Gorman * VM_HUGETLB may not be set yet so we cannot check for that flag. 14095a6fe125SMel Gorman */ 14105a6fe125SMel Gorman if (file && is_file_hugepages(file)) 14115a6fe125SMel Gorman return 0; 14125a6fe125SMel Gorman 1413fc8744adSLinus Torvalds return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE; 1414fc8744adSLinus Torvalds } 1415fc8744adSLinus Torvalds 14160165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr, 1417c22c0d63SMichel Lespinasse unsigned long len, vm_flags_t vm_flags, unsigned long pgoff) 14180165ab44SMiklos Szeredi { 14190165ab44SMiklos Szeredi struct mm_struct *mm = current->mm; 14200165ab44SMiklos Szeredi struct vm_area_struct *vma, *prev; 14210165ab44SMiklos Szeredi int error; 14220165ab44SMiklos Szeredi struct rb_node **rb_link, *rb_parent; 14230165ab44SMiklos Szeredi unsigned long charged = 0; 14240165ab44SMiklos Szeredi 1425e8420a8eSCyril Hrubis /* Check against address space limit. */ 142684638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) { 1427e8420a8eSCyril Hrubis unsigned long nr_pages; 1428e8420a8eSCyril Hrubis 1429e8420a8eSCyril Hrubis /* 1430e8420a8eSCyril Hrubis * MAP_FIXED may remove pages of mappings that intersects with 1431e8420a8eSCyril Hrubis * requested mapping. Account for the pages it would unmap. 1432e8420a8eSCyril Hrubis */ 1433e8420a8eSCyril Hrubis nr_pages = count_vma_pages_range(mm, addr, addr + len); 1434e8420a8eSCyril Hrubis 143584638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, 143684638335SKonstantin Khlebnikov (len >> PAGE_SHIFT) - nr_pages)) 1437e8420a8eSCyril Hrubis return -ENOMEM; 1438e8420a8eSCyril Hrubis } 1439e8420a8eSCyril Hrubis 14401da177e4SLinus Torvalds /* Clear old maps */ 14419fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 14429fcd1457SRasmus Villemoes &rb_parent)) { 14431da177e4SLinus Torvalds if (do_munmap(mm, addr, len)) 14441da177e4SLinus Torvalds return -ENOMEM; 14451da177e4SLinus Torvalds } 14461da177e4SLinus Torvalds 1447fc8744adSLinus Torvalds /* 14481da177e4SLinus Torvalds * Private writable mapping: check memory availability 14491da177e4SLinus Torvalds */ 14505a6fe125SMel Gorman if (accountable_mapping(file, vm_flags)) { 14511da177e4SLinus Torvalds charged = len >> PAGE_SHIFT; 1452191c5424SAl Viro if (security_vm_enough_memory_mm(mm, charged)) 14531da177e4SLinus Torvalds return -ENOMEM; 14541da177e4SLinus Torvalds vm_flags |= VM_ACCOUNT; 14551da177e4SLinus Torvalds } 14561da177e4SLinus Torvalds 14571da177e4SLinus Torvalds /* 1458de33c8dbSLinus Torvalds * Can we just expand an old mapping? 14591da177e4SLinus Torvalds */ 146019a809afSAndrea Arcangeli vma = vma_merge(mm, prev, addr, addr + len, vm_flags, 146119a809afSAndrea Arcangeli NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX); 1462ba470de4SRik van Riel if (vma) 14631da177e4SLinus Torvalds goto out; 14641da177e4SLinus Torvalds 14651da177e4SLinus Torvalds /* 14661da177e4SLinus Torvalds * Determine the object being mapped and call the appropriate 14671da177e4SLinus Torvalds * specific mapper. the address has already been validated, but 14681da177e4SLinus Torvalds * not unmapped, but the maps are removed from the list. 14691da177e4SLinus Torvalds */ 1470c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 14711da177e4SLinus Torvalds if (!vma) { 14721da177e4SLinus Torvalds error = -ENOMEM; 14731da177e4SLinus Torvalds goto unacct_error; 14741da177e4SLinus Torvalds } 14751da177e4SLinus Torvalds 14761da177e4SLinus Torvalds vma->vm_mm = mm; 14771da177e4SLinus Torvalds vma->vm_start = addr; 14781da177e4SLinus Torvalds vma->vm_end = addr + len; 14791da177e4SLinus Torvalds vma->vm_flags = vm_flags; 14803ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vm_flags); 14811da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 14825beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 14831da177e4SLinus Torvalds 14841da177e4SLinus Torvalds if (file) { 14851da177e4SLinus Torvalds if (vm_flags & VM_DENYWRITE) { 14861da177e4SLinus Torvalds error = deny_write_access(file); 14871da177e4SLinus Torvalds if (error) 14881da177e4SLinus Torvalds goto free_vma; 14891da177e4SLinus Torvalds } 14904bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) { 14914bb5f5d9SDavid Herrmann error = mapping_map_writable(file->f_mapping); 14924bb5f5d9SDavid Herrmann if (error) 14934bb5f5d9SDavid Herrmann goto allow_write_and_free_vma; 14944bb5f5d9SDavid Herrmann } 14954bb5f5d9SDavid Herrmann 14964bb5f5d9SDavid Herrmann /* ->mmap() can change vma->vm_file, but must guarantee that 14974bb5f5d9SDavid Herrmann * vma_link() below can deny write-access if VM_DENYWRITE is set 14984bb5f5d9SDavid Herrmann * and map writably if VM_SHARED is set. This usually means the 14994bb5f5d9SDavid Herrmann * new file must not have been exposed to user-space, yet. 15004bb5f5d9SDavid Herrmann */ 1501cb0942b8SAl Viro vma->vm_file = get_file(file); 15021da177e4SLinus Torvalds error = file->f_op->mmap(file, vma); 15031da177e4SLinus Torvalds if (error) 15041da177e4SLinus Torvalds goto unmap_and_free_vma; 15051da177e4SLinus Torvalds 15061da177e4SLinus Torvalds /* Can addr have changed?? 15071da177e4SLinus Torvalds * 15081da177e4SLinus Torvalds * Answer: Yes, several device drivers can do it in their 15091da177e4SLinus Torvalds * f_op->mmap method. -DaveM 15102897b4d2SJoonsoo Kim * Bug: If addr is changed, prev, rb_link, rb_parent should 15112897b4d2SJoonsoo Kim * be updated for vma_link() 15121da177e4SLinus Torvalds */ 15132897b4d2SJoonsoo Kim WARN_ON_ONCE(addr != vma->vm_start); 15142897b4d2SJoonsoo Kim 15151da177e4SLinus Torvalds addr = vma->vm_start; 15161da177e4SLinus Torvalds vm_flags = vma->vm_flags; 1517f8dbf0a7SHuang Shijie } else if (vm_flags & VM_SHARED) { 1518f8dbf0a7SHuang Shijie error = shmem_zero_setup(vma); 1519f8dbf0a7SHuang Shijie if (error) 1520f8dbf0a7SHuang Shijie goto free_vma; 1521f8dbf0a7SHuang Shijie } 15221da177e4SLinus Torvalds 15234d3d5b41SOleg Nesterov vma_link(mm, vma, prev, rb_link, rb_parent); 15244d3d5b41SOleg Nesterov /* Once vma denies write, undo our temporary denial count */ 15254bb5f5d9SDavid Herrmann if (file) { 15264bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 15274bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 1528e8686772SOleg Nesterov if (vm_flags & VM_DENYWRITE) 1529e8686772SOleg Nesterov allow_write_access(file); 15304bb5f5d9SDavid Herrmann } 1531e8686772SOleg Nesterov file = vma->vm_file; 15321da177e4SLinus Torvalds out: 1533cdd6c482SIngo Molnar perf_event_mmap(vma); 15340a4a9391SPeter Zijlstra 153584638335SKonstantin Khlebnikov vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT); 15361da177e4SLinus Torvalds if (vm_flags & VM_LOCKED) { 1537bebeb3d6SMichel Lespinasse if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) || 1538bebeb3d6SMichel Lespinasse vma == get_gate_vma(current->mm))) 153906f9d8c2SKOSAKI Motohiro mm->locked_vm += (len >> PAGE_SHIFT); 1540bebeb3d6SMichel Lespinasse else 1541de60f5f1SEric B Munson vma->vm_flags &= VM_LOCKED_CLEAR_MASK; 1542bebeb3d6SMichel Lespinasse } 15432b144498SSrikar Dronamraju 1544c7a3a88cSOleg Nesterov if (file) 1545c7a3a88cSOleg Nesterov uprobe_mmap(vma); 15462b144498SSrikar Dronamraju 1547d9104d1cSCyrill Gorcunov /* 1548d9104d1cSCyrill Gorcunov * New (or expanded) vma always get soft dirty status. 1549d9104d1cSCyrill Gorcunov * Otherwise user-space soft-dirty page tracker won't 1550d9104d1cSCyrill Gorcunov * be able to distinguish situation when vma area unmapped, 1551d9104d1cSCyrill Gorcunov * then new mapped in-place (which must be aimed as 1552d9104d1cSCyrill Gorcunov * a completely new data area). 1553d9104d1cSCyrill Gorcunov */ 1554d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 1555d9104d1cSCyrill Gorcunov 155664e45507SPeter Feiner vma_set_page_prot(vma); 155764e45507SPeter Feiner 15581da177e4SLinus Torvalds return addr; 15591da177e4SLinus Torvalds 15601da177e4SLinus Torvalds unmap_and_free_vma: 15611da177e4SLinus Torvalds vma->vm_file = NULL; 15621da177e4SLinus Torvalds fput(file); 15631da177e4SLinus Torvalds 15641da177e4SLinus Torvalds /* Undo any partial mapping done by a device driver. */ 1565e0da382cSHugh Dickins unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); 1566e0da382cSHugh Dickins charged = 0; 15674bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 15684bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 15694bb5f5d9SDavid Herrmann allow_write_and_free_vma: 15704bb5f5d9SDavid Herrmann if (vm_flags & VM_DENYWRITE) 15714bb5f5d9SDavid Herrmann allow_write_access(file); 15721da177e4SLinus Torvalds free_vma: 15731da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 15741da177e4SLinus Torvalds unacct_error: 15751da177e4SLinus Torvalds if (charged) 15761da177e4SLinus Torvalds vm_unacct_memory(charged); 15771da177e4SLinus Torvalds return error; 15781da177e4SLinus Torvalds } 15791da177e4SLinus Torvalds 1580db4fbfb9SMichel Lespinasse unsigned long unmapped_area(struct vm_unmapped_area_info *info) 1581db4fbfb9SMichel Lespinasse { 1582db4fbfb9SMichel Lespinasse /* 1583db4fbfb9SMichel Lespinasse * We implement the search by looking for an rbtree node that 1584db4fbfb9SMichel Lespinasse * immediately follows a suitable gap. That is, 1585db4fbfb9SMichel Lespinasse * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length; 1586db4fbfb9SMichel Lespinasse * - gap_end = vma->vm_start >= info->low_limit + length; 1587db4fbfb9SMichel Lespinasse * - gap_end - gap_start >= length 1588db4fbfb9SMichel Lespinasse */ 1589db4fbfb9SMichel Lespinasse 1590db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1591db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1592db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1593db4fbfb9SMichel Lespinasse 1594db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1595db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1596db4fbfb9SMichel Lespinasse if (length < info->length) 1597db4fbfb9SMichel Lespinasse return -ENOMEM; 1598db4fbfb9SMichel Lespinasse 1599db4fbfb9SMichel Lespinasse /* Adjust search limits by the desired length */ 1600db4fbfb9SMichel Lespinasse if (info->high_limit < length) 1601db4fbfb9SMichel Lespinasse return -ENOMEM; 1602db4fbfb9SMichel Lespinasse high_limit = info->high_limit - length; 1603db4fbfb9SMichel Lespinasse 1604db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1605db4fbfb9SMichel Lespinasse return -ENOMEM; 1606db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1607db4fbfb9SMichel Lespinasse 1608db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1609db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1610db4fbfb9SMichel Lespinasse goto check_highest; 1611db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1612db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1613db4fbfb9SMichel Lespinasse goto check_highest; 1614db4fbfb9SMichel Lespinasse 1615db4fbfb9SMichel Lespinasse while (true) { 1616db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1617db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1618db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && vma->vm_rb.rb_left) { 1619db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1620db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1621db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1622db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1623db4fbfb9SMichel Lespinasse vma = left; 1624db4fbfb9SMichel Lespinasse continue; 1625db4fbfb9SMichel Lespinasse } 1626db4fbfb9SMichel Lespinasse } 1627db4fbfb9SMichel Lespinasse 1628db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; 1629db4fbfb9SMichel Lespinasse check_current: 1630db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1631db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1632db4fbfb9SMichel Lespinasse return -ENOMEM; 1633db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && gap_end - gap_start >= length) 1634db4fbfb9SMichel Lespinasse goto found; 1635db4fbfb9SMichel Lespinasse 1636db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1637db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_right) { 1638db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1639db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1640db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1641db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1642db4fbfb9SMichel Lespinasse vma = right; 1643db4fbfb9SMichel Lespinasse continue; 1644db4fbfb9SMichel Lespinasse } 1645db4fbfb9SMichel Lespinasse } 1646db4fbfb9SMichel Lespinasse 1647db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1648db4fbfb9SMichel Lespinasse while (true) { 1649db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1650db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1651db4fbfb9SMichel Lespinasse goto check_highest; 1652db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1653db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1654db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_left) { 1655db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev->vm_end; 1656db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1657db4fbfb9SMichel Lespinasse goto check_current; 1658db4fbfb9SMichel Lespinasse } 1659db4fbfb9SMichel Lespinasse } 1660db4fbfb9SMichel Lespinasse } 1661db4fbfb9SMichel Lespinasse 1662db4fbfb9SMichel Lespinasse check_highest: 1663db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1664db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1665db4fbfb9SMichel Lespinasse gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */ 1666db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1667db4fbfb9SMichel Lespinasse return -ENOMEM; 1668db4fbfb9SMichel Lespinasse 1669db4fbfb9SMichel Lespinasse found: 1670db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original low_limit. */ 1671db4fbfb9SMichel Lespinasse if (gap_start < info->low_limit) 1672db4fbfb9SMichel Lespinasse gap_start = info->low_limit; 1673db4fbfb9SMichel Lespinasse 1674db4fbfb9SMichel Lespinasse /* Adjust gap address to the desired alignment */ 1675db4fbfb9SMichel Lespinasse gap_start += (info->align_offset - gap_start) & info->align_mask; 1676db4fbfb9SMichel Lespinasse 1677db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > info->high_limit); 1678db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > gap_end); 1679db4fbfb9SMichel Lespinasse return gap_start; 1680db4fbfb9SMichel Lespinasse } 1681db4fbfb9SMichel Lespinasse 1682db4fbfb9SMichel Lespinasse unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info) 1683db4fbfb9SMichel Lespinasse { 1684db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1685db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1686db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1687db4fbfb9SMichel Lespinasse 1688db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1689db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1690db4fbfb9SMichel Lespinasse if (length < info->length) 1691db4fbfb9SMichel Lespinasse return -ENOMEM; 1692db4fbfb9SMichel Lespinasse 1693db4fbfb9SMichel Lespinasse /* 1694db4fbfb9SMichel Lespinasse * Adjust search limits by the desired length. 1695db4fbfb9SMichel Lespinasse * See implementation comment at top of unmapped_area(). 1696db4fbfb9SMichel Lespinasse */ 1697db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1698db4fbfb9SMichel Lespinasse if (gap_end < length) 1699db4fbfb9SMichel Lespinasse return -ENOMEM; 1700db4fbfb9SMichel Lespinasse high_limit = gap_end - length; 1701db4fbfb9SMichel Lespinasse 1702db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1703db4fbfb9SMichel Lespinasse return -ENOMEM; 1704db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1705db4fbfb9SMichel Lespinasse 1706db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1707db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1708db4fbfb9SMichel Lespinasse if (gap_start <= high_limit) 1709db4fbfb9SMichel Lespinasse goto found_highest; 1710db4fbfb9SMichel Lespinasse 1711db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1712db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1713db4fbfb9SMichel Lespinasse return -ENOMEM; 1714db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1715db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1716db4fbfb9SMichel Lespinasse return -ENOMEM; 1717db4fbfb9SMichel Lespinasse 1718db4fbfb9SMichel Lespinasse while (true) { 1719db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1720db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; 1721db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && vma->vm_rb.rb_right) { 1722db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1723db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1724db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1725db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1726db4fbfb9SMichel Lespinasse vma = right; 1727db4fbfb9SMichel Lespinasse continue; 1728db4fbfb9SMichel Lespinasse } 1729db4fbfb9SMichel Lespinasse } 1730db4fbfb9SMichel Lespinasse 1731db4fbfb9SMichel Lespinasse check_current: 1732db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1733db4fbfb9SMichel Lespinasse gap_end = vma->vm_start; 1734db4fbfb9SMichel Lespinasse if (gap_end < low_limit) 1735db4fbfb9SMichel Lespinasse return -ENOMEM; 1736db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && gap_end - gap_start >= length) 1737db4fbfb9SMichel Lespinasse goto found; 1738db4fbfb9SMichel Lespinasse 1739db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1740db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_left) { 1741db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1742db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1743db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1744db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1745db4fbfb9SMichel Lespinasse vma = left; 1746db4fbfb9SMichel Lespinasse continue; 1747db4fbfb9SMichel Lespinasse } 1748db4fbfb9SMichel Lespinasse } 1749db4fbfb9SMichel Lespinasse 1750db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1751db4fbfb9SMichel Lespinasse while (true) { 1752db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1753db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1754db4fbfb9SMichel Lespinasse return -ENOMEM; 1755db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1756db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1757db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_right) { 1758db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? 1759db4fbfb9SMichel Lespinasse vma->vm_prev->vm_end : 0; 1760db4fbfb9SMichel Lespinasse goto check_current; 1761db4fbfb9SMichel Lespinasse } 1762db4fbfb9SMichel Lespinasse } 1763db4fbfb9SMichel Lespinasse } 1764db4fbfb9SMichel Lespinasse 1765db4fbfb9SMichel Lespinasse found: 1766db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original high_limit. */ 1767db4fbfb9SMichel Lespinasse if (gap_end > info->high_limit) 1768db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1769db4fbfb9SMichel Lespinasse 1770db4fbfb9SMichel Lespinasse found_highest: 1771db4fbfb9SMichel Lespinasse /* Compute highest gap address at the desired alignment */ 1772db4fbfb9SMichel Lespinasse gap_end -= info->length; 1773db4fbfb9SMichel Lespinasse gap_end -= (gap_end - info->align_offset) & info->align_mask; 1774db4fbfb9SMichel Lespinasse 1775db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < info->low_limit); 1776db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < gap_start); 1777db4fbfb9SMichel Lespinasse return gap_end; 1778db4fbfb9SMichel Lespinasse } 1779db4fbfb9SMichel Lespinasse 17801da177e4SLinus Torvalds /* Get an address range which is currently unmapped. 17811da177e4SLinus Torvalds * For shmat() with addr=0. 17821da177e4SLinus Torvalds * 17831da177e4SLinus Torvalds * Ugly calling convention alert: 17841da177e4SLinus Torvalds * Return value with the low bits set means error value, 17851da177e4SLinus Torvalds * ie 17861da177e4SLinus Torvalds * if (ret & ~PAGE_MASK) 17871da177e4SLinus Torvalds * error = ret; 17881da177e4SLinus Torvalds * 17891da177e4SLinus Torvalds * This function "knows" that -ENOMEM has the bits set. 17901da177e4SLinus Torvalds */ 17911da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA 17921da177e4SLinus Torvalds unsigned long 17931da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr, 17941da177e4SLinus Torvalds unsigned long len, unsigned long pgoff, unsigned long flags) 17951da177e4SLinus Torvalds { 17961da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 17971da177e4SLinus Torvalds struct vm_area_struct *vma; 1798db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 17991da177e4SLinus Torvalds 18002afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 18011da177e4SLinus Torvalds return -ENOMEM; 18021da177e4SLinus Torvalds 180306abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 180406abdfb4SBenjamin Herrenschmidt return addr; 180506abdfb4SBenjamin Herrenschmidt 18061da177e4SLinus Torvalds if (addr) { 18071da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 18081da177e4SLinus Torvalds vma = find_vma(mm, addr); 18092afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 18101da177e4SLinus Torvalds (!vma || addr + len <= vma->vm_start)) 18111da177e4SLinus Torvalds return addr; 18121da177e4SLinus Torvalds } 18131da177e4SLinus Torvalds 1814db4fbfb9SMichel Lespinasse info.flags = 0; 1815db4fbfb9SMichel Lespinasse info.length = len; 18164e99b021SHeiko Carstens info.low_limit = mm->mmap_base; 1817db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 1818db4fbfb9SMichel Lespinasse info.align_mask = 0; 1819db4fbfb9SMichel Lespinasse return vm_unmapped_area(&info); 18201da177e4SLinus Torvalds } 18211da177e4SLinus Torvalds #endif 18221da177e4SLinus Torvalds 18231da177e4SLinus Torvalds /* 18241da177e4SLinus Torvalds * This mmap-allocator allocates new areas top-down from below the 18251da177e4SLinus Torvalds * stack's low limit (the base): 18261da177e4SLinus Torvalds */ 18271da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN 18281da177e4SLinus Torvalds unsigned long 18291da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, 18301da177e4SLinus Torvalds const unsigned long len, const unsigned long pgoff, 18311da177e4SLinus Torvalds const unsigned long flags) 18321da177e4SLinus Torvalds { 18331da177e4SLinus Torvalds struct vm_area_struct *vma; 18341da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 1835db4fbfb9SMichel Lespinasse unsigned long addr = addr0; 1836db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 18371da177e4SLinus Torvalds 18381da177e4SLinus Torvalds /* requested length too big for entire address space */ 18392afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 18401da177e4SLinus Torvalds return -ENOMEM; 18411da177e4SLinus Torvalds 184206abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 184306abdfb4SBenjamin Herrenschmidt return addr; 184406abdfb4SBenjamin Herrenschmidt 18451da177e4SLinus Torvalds /* requesting a specific address */ 18461da177e4SLinus Torvalds if (addr) { 18471da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 18481da177e4SLinus Torvalds vma = find_vma(mm, addr); 18492afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 18501da177e4SLinus Torvalds (!vma || addr + len <= vma->vm_start)) 18511da177e4SLinus Torvalds return addr; 18521da177e4SLinus Torvalds } 18531da177e4SLinus Torvalds 1854db4fbfb9SMichel Lespinasse info.flags = VM_UNMAPPED_AREA_TOPDOWN; 1855db4fbfb9SMichel Lespinasse info.length = len; 18562afc745fSAkira Takeuchi info.low_limit = max(PAGE_SIZE, mmap_min_addr); 1857db4fbfb9SMichel Lespinasse info.high_limit = mm->mmap_base; 1858db4fbfb9SMichel Lespinasse info.align_mask = 0; 1859db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 1860b716ad95SXiao Guangrong 18611da177e4SLinus Torvalds /* 18621da177e4SLinus Torvalds * A failed mmap() very likely causes application failure, 18631da177e4SLinus Torvalds * so fall back to the bottom-up function here. This scenario 18641da177e4SLinus Torvalds * can happen with large stack limits and large mmap() 18651da177e4SLinus Torvalds * allocations. 18661da177e4SLinus Torvalds */ 1867de1741a1SAlexander Kuleshov if (offset_in_page(addr)) { 1868db4fbfb9SMichel Lespinasse VM_BUG_ON(addr != -ENOMEM); 1869db4fbfb9SMichel Lespinasse info.flags = 0; 1870db4fbfb9SMichel Lespinasse info.low_limit = TASK_UNMAPPED_BASE; 1871db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 1872db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 1873db4fbfb9SMichel Lespinasse } 18741da177e4SLinus Torvalds 18751da177e4SLinus Torvalds return addr; 18761da177e4SLinus Torvalds } 18771da177e4SLinus Torvalds #endif 18781da177e4SLinus Torvalds 18791da177e4SLinus Torvalds unsigned long 18801da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, 18811da177e4SLinus Torvalds unsigned long pgoff, unsigned long flags) 18821da177e4SLinus Torvalds { 188306abdfb4SBenjamin Herrenschmidt unsigned long (*get_area)(struct file *, unsigned long, 188406abdfb4SBenjamin Herrenschmidt unsigned long, unsigned long, unsigned long); 188507ab67c8SLinus Torvalds 18869206de95SAl Viro unsigned long error = arch_mmap_check(addr, len, flags); 18879206de95SAl Viro if (error) 18889206de95SAl Viro return error; 18899206de95SAl Viro 18909206de95SAl Viro /* Careful about overflows.. */ 18919206de95SAl Viro if (len > TASK_SIZE) 18929206de95SAl Viro return -ENOMEM; 18939206de95SAl Viro 189407ab67c8SLinus Torvalds get_area = current->mm->get_unmapped_area; 189572c2d531SAl Viro if (file && file->f_op->get_unmapped_area) 189607ab67c8SLinus Torvalds get_area = file->f_op->get_unmapped_area; 189707ab67c8SLinus Torvalds addr = get_area(file, addr, len, pgoff, flags); 189807ab67c8SLinus Torvalds if (IS_ERR_VALUE(addr)) 189907ab67c8SLinus Torvalds return addr; 190007ab67c8SLinus Torvalds 19011da177e4SLinus Torvalds if (addr > TASK_SIZE - len) 19021da177e4SLinus Torvalds return -ENOMEM; 1903de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 19041da177e4SLinus Torvalds return -EINVAL; 190506abdfb4SBenjamin Herrenschmidt 19069ac4ed4bSAl Viro addr = arch_rebalance_pgtables(addr, len); 19079ac4ed4bSAl Viro error = security_mmap_addr(addr); 19089ac4ed4bSAl Viro return error ? error : addr; 19091da177e4SLinus Torvalds } 19101da177e4SLinus Torvalds 19111da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area); 19121da177e4SLinus Torvalds 19131da177e4SLinus Torvalds /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */ 19141da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) 19151da177e4SLinus Torvalds { 1916615d6e87SDavidlohr Bueso struct rb_node *rb_node; 1917615d6e87SDavidlohr Bueso struct vm_area_struct *vma; 19181da177e4SLinus Torvalds 19191da177e4SLinus Torvalds /* Check the cache first. */ 1920615d6e87SDavidlohr Bueso vma = vmacache_find(mm, addr); 1921615d6e87SDavidlohr Bueso if (likely(vma)) 1922615d6e87SDavidlohr Bueso return vma; 19231da177e4SLinus Torvalds 19241da177e4SLinus Torvalds rb_node = mm->mm_rb.rb_node; 19251da177e4SLinus Torvalds 19261da177e4SLinus Torvalds while (rb_node) { 1927615d6e87SDavidlohr Bueso struct vm_area_struct *tmp; 19281da177e4SLinus Torvalds 1929615d6e87SDavidlohr Bueso tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb); 19301da177e4SLinus Torvalds 1931615d6e87SDavidlohr Bueso if (tmp->vm_end > addr) { 1932615d6e87SDavidlohr Bueso vma = tmp; 1933615d6e87SDavidlohr Bueso if (tmp->vm_start <= addr) 19341da177e4SLinus Torvalds break; 19351da177e4SLinus Torvalds rb_node = rb_node->rb_left; 19361da177e4SLinus Torvalds } else 19371da177e4SLinus Torvalds rb_node = rb_node->rb_right; 19381da177e4SLinus Torvalds } 1939615d6e87SDavidlohr Bueso 19401da177e4SLinus Torvalds if (vma) 1941615d6e87SDavidlohr Bueso vmacache_update(addr, vma); 19421da177e4SLinus Torvalds return vma; 19431da177e4SLinus Torvalds } 19441da177e4SLinus Torvalds 19451da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma); 19461da177e4SLinus Torvalds 19476bd4837dSKOSAKI Motohiro /* 19486bd4837dSKOSAKI Motohiro * Same as find_vma, but also return a pointer to the previous VMA in *pprev. 19496bd4837dSKOSAKI Motohiro */ 19501da177e4SLinus Torvalds struct vm_area_struct * 19511da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr, 19521da177e4SLinus Torvalds struct vm_area_struct **pprev) 19531da177e4SLinus Torvalds { 19546bd4837dSKOSAKI Motohiro struct vm_area_struct *vma; 19551da177e4SLinus Torvalds 19566bd4837dSKOSAKI Motohiro vma = find_vma(mm, addr); 195783cd904dSMikulas Patocka if (vma) { 195883cd904dSMikulas Patocka *pprev = vma->vm_prev; 195983cd904dSMikulas Patocka } else { 196083cd904dSMikulas Patocka struct rb_node *rb_node = mm->mm_rb.rb_node; 196183cd904dSMikulas Patocka *pprev = NULL; 196283cd904dSMikulas Patocka while (rb_node) { 196383cd904dSMikulas Patocka *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb); 196483cd904dSMikulas Patocka rb_node = rb_node->rb_right; 196583cd904dSMikulas Patocka } 196683cd904dSMikulas Patocka } 19676bd4837dSKOSAKI Motohiro return vma; 19681da177e4SLinus Torvalds } 19691da177e4SLinus Torvalds 19701da177e4SLinus Torvalds /* 19711da177e4SLinus Torvalds * Verify that the stack growth is acceptable and 19721da177e4SLinus Torvalds * update accounting. This is shared with both the 19731da177e4SLinus Torvalds * grow-up and grow-down cases. 19741da177e4SLinus Torvalds */ 19751da177e4SLinus Torvalds static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow) 19761da177e4SLinus Torvalds { 19771da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 19781da177e4SLinus Torvalds struct rlimit *rlim = current->signal->rlim; 1979690eac53SLinus Torvalds unsigned long new_start, actual_size; 19801da177e4SLinus Torvalds 19811da177e4SLinus Torvalds /* address space limit tests */ 198284638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vma->vm_flags, grow)) 19831da177e4SLinus Torvalds return -ENOMEM; 19841da177e4SLinus Torvalds 19851da177e4SLinus Torvalds /* Stack limit test */ 1986690eac53SLinus Torvalds actual_size = size; 1987690eac53SLinus Torvalds if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN))) 1988690eac53SLinus Torvalds actual_size -= PAGE_SIZE; 19894db0c3c2SJason Low if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur)) 19901da177e4SLinus Torvalds return -ENOMEM; 19911da177e4SLinus Torvalds 19921da177e4SLinus Torvalds /* mlock limit tests */ 19931da177e4SLinus Torvalds if (vma->vm_flags & VM_LOCKED) { 19941da177e4SLinus Torvalds unsigned long locked; 19951da177e4SLinus Torvalds unsigned long limit; 19961da177e4SLinus Torvalds locked = mm->locked_vm + grow; 19974db0c3c2SJason Low limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur); 199859e99e5bSJiri Slaby limit >>= PAGE_SHIFT; 19991da177e4SLinus Torvalds if (locked > limit && !capable(CAP_IPC_LOCK)) 20001da177e4SLinus Torvalds return -ENOMEM; 20011da177e4SLinus Torvalds } 20021da177e4SLinus Torvalds 20030d59a01bSAdam Litke /* Check to ensure the stack will not grow into a hugetlb-only region */ 20040d59a01bSAdam Litke new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start : 20050d59a01bSAdam Litke vma->vm_end - size; 20060d59a01bSAdam Litke if (is_hugepage_only_range(vma->vm_mm, new_start, size)) 20070d59a01bSAdam Litke return -EFAULT; 20080d59a01bSAdam Litke 20091da177e4SLinus Torvalds /* 20101da177e4SLinus Torvalds * Overcommit.. This must be the final test, as it will 20111da177e4SLinus Torvalds * update security statistics. 20121da177e4SLinus Torvalds */ 201305fa199dSHugh Dickins if (security_vm_enough_memory_mm(mm, grow)) 20141da177e4SLinus Torvalds return -ENOMEM; 20151da177e4SLinus Torvalds 20161da177e4SLinus Torvalds return 0; 20171da177e4SLinus Torvalds } 20181da177e4SLinus Torvalds 201946dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64) 20201da177e4SLinus Torvalds /* 202146dea3d0SHugh Dickins * PA-RISC uses this for its stack; IA64 for its Register Backing Store. 202246dea3d0SHugh Dickins * vma is the last one with address > vma->vm_end. Have to extend vma. 20231da177e4SLinus Torvalds */ 202446dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address) 20251da177e4SLinus Torvalds { 202609357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 202712352d3cSKonstantin Khlebnikov int error = 0; 20281da177e4SLinus Torvalds 20291da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSUP)) 20301da177e4SLinus Torvalds return -EFAULT; 20311da177e4SLinus Torvalds 203212352d3cSKonstantin Khlebnikov /* Guard against wrapping around to address 0. */ 203312352d3cSKonstantin Khlebnikov if (address < PAGE_ALIGN(address+4)) 203412352d3cSKonstantin Khlebnikov address = PAGE_ALIGN(address+4); 203512352d3cSKonstantin Khlebnikov else 203612352d3cSKonstantin Khlebnikov return -ENOMEM; 203712352d3cSKonstantin Khlebnikov 203812352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 20391da177e4SLinus Torvalds if (unlikely(anon_vma_prepare(vma))) 20401da177e4SLinus Torvalds return -ENOMEM; 20411da177e4SLinus Torvalds 20421da177e4SLinus Torvalds /* 20431da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 20441da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 20451da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 20461da177e4SLinus Torvalds */ 204712352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 20481da177e4SLinus Torvalds 20491da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 20501da177e4SLinus Torvalds if (address > vma->vm_end) { 20511da177e4SLinus Torvalds unsigned long size, grow; 20521da177e4SLinus Torvalds 20531da177e4SLinus Torvalds size = address - vma->vm_start; 20541da177e4SLinus Torvalds grow = (address - vma->vm_end) >> PAGE_SHIFT; 20551da177e4SLinus Torvalds 205642c36f63SHugh Dickins error = -ENOMEM; 205742c36f63SHugh Dickins if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) { 20581da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 20593af9e859SEric B Munson if (!error) { 20604128997bSMichel Lespinasse /* 20614128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 20624128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 20634128997bSMichel Lespinasse * lock here, so we need to protect against 20644128997bSMichel Lespinasse * concurrent vma expansions. 206512352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 20664128997bSMichel Lespinasse * we don't guarantee that all growable vmas 20674128997bSMichel Lespinasse * in a mm share the same root anon vma. 20684128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 20694128997bSMichel Lespinasse * against concurrent vma expansions. 20704128997bSMichel Lespinasse */ 207109357814SOleg Nesterov spin_lock(&mm->page_table_lock); 207287e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 207309357814SOleg Nesterov mm->locked_vm += grow; 207484638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2075bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 20761da177e4SLinus Torvalds vma->vm_end = address; 2077bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2078d3737187SMichel Lespinasse if (vma->vm_next) 2079d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 2080d3737187SMichel Lespinasse else 208109357814SOleg Nesterov mm->highest_vm_end = address; 208209357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 20834128997bSMichel Lespinasse 20843af9e859SEric B Munson perf_event_mmap(vma); 20853af9e859SEric B Munson } 20861da177e4SLinus Torvalds } 208742c36f63SHugh Dickins } 208812352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 20896d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 209009357814SOleg Nesterov validate_mm(mm); 20911da177e4SLinus Torvalds return error; 20921da177e4SLinus Torvalds } 209346dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */ 209446dea3d0SHugh Dickins 20951da177e4SLinus Torvalds /* 20961da177e4SLinus Torvalds * vma is the first one with address < vma->vm_start. Have to extend vma. 20971da177e4SLinus Torvalds */ 2098d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma, 2099b6a2fea3SOllie Wild unsigned long address) 21001da177e4SLinus Torvalds { 210109357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 21021da177e4SLinus Torvalds int error; 21031da177e4SLinus Torvalds 21048869477aSEric Paris address &= PAGE_MASK; 2105e5467859SAl Viro error = security_mmap_addr(address); 21068869477aSEric Paris if (error) 21078869477aSEric Paris return error; 21088869477aSEric Paris 210912352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 211012352d3cSKonstantin Khlebnikov if (unlikely(anon_vma_prepare(vma))) 211112352d3cSKonstantin Khlebnikov return -ENOMEM; 21121da177e4SLinus Torvalds 21131da177e4SLinus Torvalds /* 21141da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 21151da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 21161da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 21171da177e4SLinus Torvalds */ 211812352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 21191da177e4SLinus Torvalds 21201da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 21211da177e4SLinus Torvalds if (address < vma->vm_start) { 21221da177e4SLinus Torvalds unsigned long size, grow; 21231da177e4SLinus Torvalds 21241da177e4SLinus Torvalds size = vma->vm_end - address; 21251da177e4SLinus Torvalds grow = (vma->vm_start - address) >> PAGE_SHIFT; 21261da177e4SLinus Torvalds 2127a626ca6aSLinus Torvalds error = -ENOMEM; 2128a626ca6aSLinus Torvalds if (grow <= vma->vm_pgoff) { 21291da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 21301da177e4SLinus Torvalds if (!error) { 21314128997bSMichel Lespinasse /* 21324128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 21334128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 21344128997bSMichel Lespinasse * lock here, so we need to protect against 21354128997bSMichel Lespinasse * concurrent vma expansions. 213612352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 21374128997bSMichel Lespinasse * we don't guarantee that all growable vmas 21384128997bSMichel Lespinasse * in a mm share the same root anon vma. 21394128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 21404128997bSMichel Lespinasse * against concurrent vma expansions. 21414128997bSMichel Lespinasse */ 214209357814SOleg Nesterov spin_lock(&mm->page_table_lock); 214387e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 214409357814SOleg Nesterov mm->locked_vm += grow; 214584638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2146bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 21471da177e4SLinus Torvalds vma->vm_start = address; 21481da177e4SLinus Torvalds vma->vm_pgoff -= grow; 2149bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2150d3737187SMichel Lespinasse vma_gap_update(vma); 215109357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 21524128997bSMichel Lespinasse 21533af9e859SEric B Munson perf_event_mmap(vma); 21541da177e4SLinus Torvalds } 21551da177e4SLinus Torvalds } 2156a626ca6aSLinus Torvalds } 215712352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 21586d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 215909357814SOleg Nesterov validate_mm(mm); 21601da177e4SLinus Torvalds return error; 21611da177e4SLinus Torvalds } 21621da177e4SLinus Torvalds 216309884964SLinus Torvalds /* 216409884964SLinus Torvalds * Note how expand_stack() refuses to expand the stack all the way to 216509884964SLinus Torvalds * abut the next virtual mapping, *unless* that mapping itself is also 216609884964SLinus Torvalds * a stack mapping. We want to leave room for a guard page, after all 216709884964SLinus Torvalds * (the guard page itself is not added here, that is done by the 216809884964SLinus Torvalds * actual page faulting logic) 216909884964SLinus Torvalds * 217009884964SLinus Torvalds * This matches the behavior of the guard page logic (see mm/memory.c: 217109884964SLinus Torvalds * check_stack_guard_page()), which only allows the guard page to be 217209884964SLinus Torvalds * removed under these circumstances. 217309884964SLinus Torvalds */ 2174b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP 2175b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2176b6a2fea3SOllie Wild { 217709884964SLinus Torvalds struct vm_area_struct *next; 217809884964SLinus Torvalds 217909884964SLinus Torvalds address &= PAGE_MASK; 218009884964SLinus Torvalds next = vma->vm_next; 218109884964SLinus Torvalds if (next && next->vm_start == address + PAGE_SIZE) { 218209884964SLinus Torvalds if (!(next->vm_flags & VM_GROWSUP)) 218309884964SLinus Torvalds return -ENOMEM; 218409884964SLinus Torvalds } 2185b6a2fea3SOllie Wild return expand_upwards(vma, address); 2186b6a2fea3SOllie Wild } 2187b6a2fea3SOllie Wild 2188b6a2fea3SOllie Wild struct vm_area_struct * 2189b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr) 2190b6a2fea3SOllie Wild { 2191b6a2fea3SOllie Wild struct vm_area_struct *vma, *prev; 2192b6a2fea3SOllie Wild 2193b6a2fea3SOllie Wild addr &= PAGE_MASK; 2194b6a2fea3SOllie Wild vma = find_vma_prev(mm, addr, &prev); 2195b6a2fea3SOllie Wild if (vma && (vma->vm_start <= addr)) 2196b6a2fea3SOllie Wild return vma; 21971c127185SDenys Vlasenko if (!prev || expand_stack(prev, addr)) 2198b6a2fea3SOllie Wild return NULL; 2199cea10a19SMichel Lespinasse if (prev->vm_flags & VM_LOCKED) 2200fc05f566SKirill A. Shutemov populate_vma_page_range(prev, addr, prev->vm_end, NULL); 2201b6a2fea3SOllie Wild return prev; 2202b6a2fea3SOllie Wild } 2203b6a2fea3SOllie Wild #else 2204b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2205b6a2fea3SOllie Wild { 220609884964SLinus Torvalds struct vm_area_struct *prev; 220709884964SLinus Torvalds 220809884964SLinus Torvalds address &= PAGE_MASK; 220909884964SLinus Torvalds prev = vma->vm_prev; 221009884964SLinus Torvalds if (prev && prev->vm_end == address) { 221109884964SLinus Torvalds if (!(prev->vm_flags & VM_GROWSDOWN)) 221209884964SLinus Torvalds return -ENOMEM; 221309884964SLinus Torvalds } 2214b6a2fea3SOllie Wild return expand_downwards(vma, address); 2215b6a2fea3SOllie Wild } 2216b6a2fea3SOllie Wild 22171da177e4SLinus Torvalds struct vm_area_struct * 22181da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr) 22191da177e4SLinus Torvalds { 22201da177e4SLinus Torvalds struct vm_area_struct *vma; 22211da177e4SLinus Torvalds unsigned long start; 22221da177e4SLinus Torvalds 22231da177e4SLinus Torvalds addr &= PAGE_MASK; 22241da177e4SLinus Torvalds vma = find_vma(mm, addr); 22251da177e4SLinus Torvalds if (!vma) 22261da177e4SLinus Torvalds return NULL; 22271da177e4SLinus Torvalds if (vma->vm_start <= addr) 22281da177e4SLinus Torvalds return vma; 22291da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSDOWN)) 22301da177e4SLinus Torvalds return NULL; 22311da177e4SLinus Torvalds start = vma->vm_start; 22321da177e4SLinus Torvalds if (expand_stack(vma, addr)) 22331da177e4SLinus Torvalds return NULL; 2234cea10a19SMichel Lespinasse if (vma->vm_flags & VM_LOCKED) 2235fc05f566SKirill A. Shutemov populate_vma_page_range(vma, addr, start, NULL); 22361da177e4SLinus Torvalds return vma; 22371da177e4SLinus Torvalds } 22381da177e4SLinus Torvalds #endif 22391da177e4SLinus Torvalds 2240e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma); 2241e1d6d01aSJesse Barnes 22422c0b3814SHugh Dickins /* 22432c0b3814SHugh Dickins * Ok - we have the memory areas we should free on the vma list, 22442c0b3814SHugh Dickins * so release them, and do the vma updates. 22451da177e4SLinus Torvalds * 22462c0b3814SHugh Dickins * Called with the mm semaphore held. 22471da177e4SLinus Torvalds */ 22482c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma) 22491da177e4SLinus Torvalds { 22504f74d2c8SLinus Torvalds unsigned long nr_accounted = 0; 22514f74d2c8SLinus Torvalds 2252365e9c87SHugh Dickins /* Update high watermark before we lower total_vm */ 2253365e9c87SHugh Dickins update_hiwater_vm(mm); 22542c0b3814SHugh Dickins do { 2255ab50b8edSHugh Dickins long nrpages = vma_pages(vma); 22561da177e4SLinus Torvalds 22574f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 22584f74d2c8SLinus Torvalds nr_accounted += nrpages; 225984638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, -nrpages); 2260a8fb5618SHugh Dickins vma = remove_vma(vma); 2261146425a3SHugh Dickins } while (vma); 22624f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 22631da177e4SLinus Torvalds validate_mm(mm); 22641da177e4SLinus Torvalds } 22651da177e4SLinus Torvalds 22661da177e4SLinus Torvalds /* 22671da177e4SLinus Torvalds * Get rid of page table information in the indicated region. 22681da177e4SLinus Torvalds * 2269f10df686SPaolo 'Blaisorblade' Giarrusso * Called with the mm semaphore held. 22701da177e4SLinus Torvalds */ 22711da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm, 2272e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 2273e0da382cSHugh Dickins unsigned long start, unsigned long end) 22741da177e4SLinus Torvalds { 2275e0da382cSHugh Dickins struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap; 2276d16dfc55SPeter Zijlstra struct mmu_gather tlb; 22771da177e4SLinus Torvalds 22781da177e4SLinus Torvalds lru_add_drain(); 22792b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, start, end); 2280365e9c87SHugh Dickins update_hiwater_rss(mm); 22814f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, start, end); 2282d16dfc55SPeter Zijlstra free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS, 22836ee8630eSHugh Dickins next ? next->vm_start : USER_PGTABLES_CEILING); 2284d16dfc55SPeter Zijlstra tlb_finish_mmu(&tlb, start, end); 22851da177e4SLinus Torvalds } 22861da177e4SLinus Torvalds 22871da177e4SLinus Torvalds /* 22881da177e4SLinus Torvalds * Create a list of vma's touched by the unmap, removing them from the mm's 22891da177e4SLinus Torvalds * vma list as we go.. 22901da177e4SLinus Torvalds */ 22911da177e4SLinus Torvalds static void 22921da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma, 22931da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long end) 22941da177e4SLinus Torvalds { 22951da177e4SLinus Torvalds struct vm_area_struct **insertion_point; 22961da177e4SLinus Torvalds struct vm_area_struct *tail_vma = NULL; 22971da177e4SLinus Torvalds 22981da177e4SLinus Torvalds insertion_point = (prev ? &prev->vm_next : &mm->mmap); 2299297c5eeeSLinus Torvalds vma->vm_prev = NULL; 23001da177e4SLinus Torvalds do { 2301d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 23021da177e4SLinus Torvalds mm->map_count--; 23031da177e4SLinus Torvalds tail_vma = vma; 23041da177e4SLinus Torvalds vma = vma->vm_next; 23051da177e4SLinus Torvalds } while (vma && vma->vm_start < end); 23061da177e4SLinus Torvalds *insertion_point = vma; 2307d3737187SMichel Lespinasse if (vma) { 2308297c5eeeSLinus Torvalds vma->vm_prev = prev; 2309d3737187SMichel Lespinasse vma_gap_update(vma); 2310d3737187SMichel Lespinasse } else 2311d3737187SMichel Lespinasse mm->highest_vm_end = prev ? prev->vm_end : 0; 23121da177e4SLinus Torvalds tail_vma->vm_next = NULL; 2313615d6e87SDavidlohr Bueso 2314615d6e87SDavidlohr Bueso /* Kill the cache */ 2315615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 23161da177e4SLinus Torvalds } 23171da177e4SLinus Torvalds 23181da177e4SLinus Torvalds /* 2319659ace58SKOSAKI Motohiro * __split_vma() bypasses sysctl_max_map_count checking. We use this on the 2320659ace58SKOSAKI Motohiro * munmap path where it doesn't make sense to fail. 23211da177e4SLinus Torvalds */ 2322659ace58SKOSAKI Motohiro static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 23231da177e4SLinus Torvalds unsigned long addr, int new_below) 23241da177e4SLinus Torvalds { 23251da177e4SLinus Torvalds struct vm_area_struct *new; 2326e3975891SChen Gang int err; 23271da177e4SLinus Torvalds 2328a5516438SAndi Kleen if (is_vm_hugetlb_page(vma) && (addr & 2329a5516438SAndi Kleen ~(huge_page_mask(hstate_vma(vma))))) 23301da177e4SLinus Torvalds return -EINVAL; 23311da177e4SLinus Torvalds 2332e94b1766SChristoph Lameter new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 23331da177e4SLinus Torvalds if (!new) 2334e3975891SChen Gang return -ENOMEM; 23351da177e4SLinus Torvalds 23361da177e4SLinus Torvalds /* most fields are the same, copy all, and then fixup */ 23371da177e4SLinus Torvalds *new = *vma; 23381da177e4SLinus Torvalds 23395beb4930SRik van Riel INIT_LIST_HEAD(&new->anon_vma_chain); 23405beb4930SRik van Riel 23411da177e4SLinus Torvalds if (new_below) 23421da177e4SLinus Torvalds new->vm_end = addr; 23431da177e4SLinus Torvalds else { 23441da177e4SLinus Torvalds new->vm_start = addr; 23451da177e4SLinus Torvalds new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT); 23461da177e4SLinus Torvalds } 23471da177e4SLinus Torvalds 2348ef0855d3SOleg Nesterov err = vma_dup_policy(vma, new); 2349ef0855d3SOleg Nesterov if (err) 23505beb4930SRik van Riel goto out_free_vma; 23511da177e4SLinus Torvalds 2352c4ea95d7SDaniel Forrest err = anon_vma_clone(new, vma); 2353c4ea95d7SDaniel Forrest if (err) 23545beb4930SRik van Riel goto out_free_mpol; 23555beb4930SRik van Riel 2356e9714acfSKonstantin Khlebnikov if (new->vm_file) 23571da177e4SLinus Torvalds get_file(new->vm_file); 23581da177e4SLinus Torvalds 23591da177e4SLinus Torvalds if (new->vm_ops && new->vm_ops->open) 23601da177e4SLinus Torvalds new->vm_ops->open(new); 23611da177e4SLinus Torvalds 23621da177e4SLinus Torvalds if (new_below) 23635beb4930SRik van Riel err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff + 23641da177e4SLinus Torvalds ((addr - new->vm_start) >> PAGE_SHIFT), new); 23651da177e4SLinus Torvalds else 23665beb4930SRik van Riel err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new); 23671da177e4SLinus Torvalds 23685beb4930SRik van Riel /* Success. */ 23695beb4930SRik van Riel if (!err) 23701da177e4SLinus Torvalds return 0; 23715beb4930SRik van Riel 23725beb4930SRik van Riel /* Clean everything up if vma_adjust failed. */ 237358927533SRik van Riel if (new->vm_ops && new->vm_ops->close) 23745beb4930SRik van Riel new->vm_ops->close(new); 2375e9714acfSKonstantin Khlebnikov if (new->vm_file) 23765beb4930SRik van Riel fput(new->vm_file); 23772aeadc30SAndrea Arcangeli unlink_anon_vmas(new); 23785beb4930SRik van Riel out_free_mpol: 2379ef0855d3SOleg Nesterov mpol_put(vma_policy(new)); 23805beb4930SRik van Riel out_free_vma: 23815beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new); 23825beb4930SRik van Riel return err; 23831da177e4SLinus Torvalds } 23841da177e4SLinus Torvalds 2385659ace58SKOSAKI Motohiro /* 2386659ace58SKOSAKI Motohiro * Split a vma into two pieces at address 'addr', a new vma is allocated 2387659ace58SKOSAKI Motohiro * either for the first part or the tail. 2388659ace58SKOSAKI Motohiro */ 2389659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 2390659ace58SKOSAKI Motohiro unsigned long addr, int new_below) 2391659ace58SKOSAKI Motohiro { 2392659ace58SKOSAKI Motohiro if (mm->map_count >= sysctl_max_map_count) 2393659ace58SKOSAKI Motohiro return -ENOMEM; 2394659ace58SKOSAKI Motohiro 2395659ace58SKOSAKI Motohiro return __split_vma(mm, vma, addr, new_below); 2396659ace58SKOSAKI Motohiro } 2397659ace58SKOSAKI Motohiro 23981da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds 23991da177e4SLinus Torvalds * what needs doing, and the areas themselves, which do the 24001da177e4SLinus Torvalds * work. This now handles partial unmappings. 24011da177e4SLinus Torvalds * Jeremy Fitzhardinge <jeremy@goop.org> 24021da177e4SLinus Torvalds */ 24031da177e4SLinus Torvalds int do_munmap(struct mm_struct *mm, unsigned long start, size_t len) 24041da177e4SLinus Torvalds { 24051da177e4SLinus Torvalds unsigned long end; 2406146425a3SHugh Dickins struct vm_area_struct *vma, *prev, *last; 24071da177e4SLinus Torvalds 2408de1741a1SAlexander Kuleshov if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start) 24091da177e4SLinus Torvalds return -EINVAL; 24101da177e4SLinus Torvalds 2411cc71aba3Svishnu.ps len = PAGE_ALIGN(len); 2412cc71aba3Svishnu.ps if (len == 0) 24131da177e4SLinus Torvalds return -EINVAL; 24141da177e4SLinus Torvalds 24151da177e4SLinus Torvalds /* Find the first overlapping VMA */ 24169be34c9dSLinus Torvalds vma = find_vma(mm, start); 2417146425a3SHugh Dickins if (!vma) 24181da177e4SLinus Torvalds return 0; 24199be34c9dSLinus Torvalds prev = vma->vm_prev; 2420146425a3SHugh Dickins /* we have start < vma->vm_end */ 24211da177e4SLinus Torvalds 24221da177e4SLinus Torvalds /* if it doesn't overlap, we have nothing.. */ 24231da177e4SLinus Torvalds end = start + len; 2424146425a3SHugh Dickins if (vma->vm_start >= end) 24251da177e4SLinus Torvalds return 0; 24261da177e4SLinus Torvalds 24271da177e4SLinus Torvalds /* 24281da177e4SLinus Torvalds * If we need to split any vma, do it now to save pain later. 24291da177e4SLinus Torvalds * 24301da177e4SLinus Torvalds * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially 24311da177e4SLinus Torvalds * unmapped vm_area_struct will remain in use: so lower split_vma 24321da177e4SLinus Torvalds * places tmp vma above, and higher split_vma places tmp vma below. 24331da177e4SLinus Torvalds */ 2434146425a3SHugh Dickins if (start > vma->vm_start) { 2435659ace58SKOSAKI Motohiro int error; 2436659ace58SKOSAKI Motohiro 2437659ace58SKOSAKI Motohiro /* 2438659ace58SKOSAKI Motohiro * Make sure that map_count on return from munmap() will 2439659ace58SKOSAKI Motohiro * not exceed its limit; but let map_count go just above 2440659ace58SKOSAKI Motohiro * its limit temporarily, to help free resources as expected. 2441659ace58SKOSAKI Motohiro */ 2442659ace58SKOSAKI Motohiro if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count) 2443659ace58SKOSAKI Motohiro return -ENOMEM; 2444659ace58SKOSAKI Motohiro 2445659ace58SKOSAKI Motohiro error = __split_vma(mm, vma, start, 0); 24461da177e4SLinus Torvalds if (error) 24471da177e4SLinus Torvalds return error; 2448146425a3SHugh Dickins prev = vma; 24491da177e4SLinus Torvalds } 24501da177e4SLinus Torvalds 24511da177e4SLinus Torvalds /* Does it split the last one? */ 24521da177e4SLinus Torvalds last = find_vma(mm, end); 24531da177e4SLinus Torvalds if (last && end > last->vm_start) { 2454659ace58SKOSAKI Motohiro int error = __split_vma(mm, last, end, 1); 24551da177e4SLinus Torvalds if (error) 24561da177e4SLinus Torvalds return error; 24571da177e4SLinus Torvalds } 2458146425a3SHugh Dickins vma = prev ? prev->vm_next : mm->mmap; 24591da177e4SLinus Torvalds 24601da177e4SLinus Torvalds /* 2461ba470de4SRik van Riel * unlock any mlock()ed ranges before detaching vmas 2462ba470de4SRik van Riel */ 2463ba470de4SRik van Riel if (mm->locked_vm) { 2464ba470de4SRik van Riel struct vm_area_struct *tmp = vma; 2465ba470de4SRik van Riel while (tmp && tmp->vm_start < end) { 2466ba470de4SRik van Riel if (tmp->vm_flags & VM_LOCKED) { 2467ba470de4SRik van Riel mm->locked_vm -= vma_pages(tmp); 2468ba470de4SRik van Riel munlock_vma_pages_all(tmp); 2469ba470de4SRik van Riel } 2470ba470de4SRik van Riel tmp = tmp->vm_next; 2471ba470de4SRik van Riel } 2472ba470de4SRik van Riel } 2473ba470de4SRik van Riel 2474ba470de4SRik van Riel /* 24751da177e4SLinus Torvalds * Remove the vma's, and unmap the actual pages 24761da177e4SLinus Torvalds */ 2477146425a3SHugh Dickins detach_vmas_to_be_unmapped(mm, vma, prev, end); 2478146425a3SHugh Dickins unmap_region(mm, vma, prev, start, end); 24791da177e4SLinus Torvalds 24801de4fa14SDave Hansen arch_unmap(mm, vma, start, end); 24811de4fa14SDave Hansen 24821da177e4SLinus Torvalds /* Fix up all other VM information */ 24832c0b3814SHugh Dickins remove_vma_list(mm, vma); 24841da177e4SLinus Torvalds 24851da177e4SLinus Torvalds return 0; 24861da177e4SLinus Torvalds } 24871da177e4SLinus Torvalds 2488bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len) 2489a46ef99dSLinus Torvalds { 2490a46ef99dSLinus Torvalds int ret; 2491bfce281cSAl Viro struct mm_struct *mm = current->mm; 2492a46ef99dSLinus Torvalds 2493a46ef99dSLinus Torvalds down_write(&mm->mmap_sem); 2494a46ef99dSLinus Torvalds ret = do_munmap(mm, start, len); 2495a46ef99dSLinus Torvalds up_write(&mm->mmap_sem); 2496a46ef99dSLinus Torvalds return ret; 2497a46ef99dSLinus Torvalds } 2498a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap); 2499a46ef99dSLinus Torvalds 25006a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len) 25011da177e4SLinus Torvalds { 25021da177e4SLinus Torvalds profile_munmap(addr); 2503bfce281cSAl Viro return vm_munmap(addr, len); 25041da177e4SLinus Torvalds } 25051da177e4SLinus Torvalds 2506c8d78c18SKirill A. Shutemov 2507c8d78c18SKirill A. Shutemov /* 2508c8d78c18SKirill A. Shutemov * Emulation of deprecated remap_file_pages() syscall. 2509c8d78c18SKirill A. Shutemov */ 2510c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size, 2511c8d78c18SKirill A. Shutemov unsigned long, prot, unsigned long, pgoff, unsigned long, flags) 2512c8d78c18SKirill A. Shutemov { 2513c8d78c18SKirill A. Shutemov 2514c8d78c18SKirill A. Shutemov struct mm_struct *mm = current->mm; 2515c8d78c18SKirill A. Shutemov struct vm_area_struct *vma; 2516c8d78c18SKirill A. Shutemov unsigned long populate = 0; 2517c8d78c18SKirill A. Shutemov unsigned long ret = -EINVAL; 2518c8d78c18SKirill A. Shutemov struct file *file; 2519c8d78c18SKirill A. Shutemov 2520*756a025fSJoe Perches pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n", 2521c8d78c18SKirill A. Shutemov current->comm, current->pid); 2522c8d78c18SKirill A. Shutemov 2523c8d78c18SKirill A. Shutemov if (prot) 2524c8d78c18SKirill A. Shutemov return ret; 2525c8d78c18SKirill A. Shutemov start = start & PAGE_MASK; 2526c8d78c18SKirill A. Shutemov size = size & PAGE_MASK; 2527c8d78c18SKirill A. Shutemov 2528c8d78c18SKirill A. Shutemov if (start + size <= start) 2529c8d78c18SKirill A. Shutemov return ret; 2530c8d78c18SKirill A. Shutemov 2531c8d78c18SKirill A. Shutemov /* Does pgoff wrap? */ 2532c8d78c18SKirill A. Shutemov if (pgoff + (size >> PAGE_SHIFT) < pgoff) 2533c8d78c18SKirill A. Shutemov return ret; 2534c8d78c18SKirill A. Shutemov 2535c8d78c18SKirill A. Shutemov down_write(&mm->mmap_sem); 2536c8d78c18SKirill A. Shutemov vma = find_vma(mm, start); 2537c8d78c18SKirill A. Shutemov 2538c8d78c18SKirill A. Shutemov if (!vma || !(vma->vm_flags & VM_SHARED)) 2539c8d78c18SKirill A. Shutemov goto out; 2540c8d78c18SKirill A. Shutemov 254148f7df32SKirill A. Shutemov if (start < vma->vm_start) 2542c8d78c18SKirill A. Shutemov goto out; 2543c8d78c18SKirill A. Shutemov 254448f7df32SKirill A. Shutemov if (start + size > vma->vm_end) { 254548f7df32SKirill A. Shutemov struct vm_area_struct *next; 254648f7df32SKirill A. Shutemov 254748f7df32SKirill A. Shutemov for (next = vma->vm_next; next; next = next->vm_next) { 254848f7df32SKirill A. Shutemov /* hole between vmas ? */ 254948f7df32SKirill A. Shutemov if (next->vm_start != next->vm_prev->vm_end) 255048f7df32SKirill A. Shutemov goto out; 255148f7df32SKirill A. Shutemov 255248f7df32SKirill A. Shutemov if (next->vm_file != vma->vm_file) 255348f7df32SKirill A. Shutemov goto out; 255448f7df32SKirill A. Shutemov 255548f7df32SKirill A. Shutemov if (next->vm_flags != vma->vm_flags) 255648f7df32SKirill A. Shutemov goto out; 255748f7df32SKirill A. Shutemov 255848f7df32SKirill A. Shutemov if (start + size <= next->vm_end) 255948f7df32SKirill A. Shutemov break; 256048f7df32SKirill A. Shutemov } 256148f7df32SKirill A. Shutemov 256248f7df32SKirill A. Shutemov if (!next) 2563c8d78c18SKirill A. Shutemov goto out; 2564c8d78c18SKirill A. Shutemov } 2565c8d78c18SKirill A. Shutemov 2566c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_READ ? PROT_READ : 0; 2567c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0; 2568c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0; 2569c8d78c18SKirill A. Shutemov 2570c8d78c18SKirill A. Shutemov flags &= MAP_NONBLOCK; 2571c8d78c18SKirill A. Shutemov flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE; 2572c8d78c18SKirill A. Shutemov if (vma->vm_flags & VM_LOCKED) { 257348f7df32SKirill A. Shutemov struct vm_area_struct *tmp; 2574c8d78c18SKirill A. Shutemov flags |= MAP_LOCKED; 257548f7df32SKirill A. Shutemov 2576c8d78c18SKirill A. Shutemov /* drop PG_Mlocked flag for over-mapped range */ 257748f7df32SKirill A. Shutemov for (tmp = vma; tmp->vm_start >= start + size; 257848f7df32SKirill A. Shutemov tmp = tmp->vm_next) { 257948f7df32SKirill A. Shutemov munlock_vma_pages_range(tmp, 258048f7df32SKirill A. Shutemov max(tmp->vm_start, start), 258148f7df32SKirill A. Shutemov min(tmp->vm_end, start + size)); 258248f7df32SKirill A. Shutemov } 2583c8d78c18SKirill A. Shutemov } 2584c8d78c18SKirill A. Shutemov 2585c8d78c18SKirill A. Shutemov file = get_file(vma->vm_file); 2586c8d78c18SKirill A. Shutemov ret = do_mmap_pgoff(vma->vm_file, start, size, 2587c8d78c18SKirill A. Shutemov prot, flags, pgoff, &populate); 2588c8d78c18SKirill A. Shutemov fput(file); 2589c8d78c18SKirill A. Shutemov out: 2590c8d78c18SKirill A. Shutemov up_write(&mm->mmap_sem); 2591c8d78c18SKirill A. Shutemov if (populate) 2592c8d78c18SKirill A. Shutemov mm_populate(ret, populate); 2593c8d78c18SKirill A. Shutemov if (!IS_ERR_VALUE(ret)) 2594c8d78c18SKirill A. Shutemov ret = 0; 2595c8d78c18SKirill A. Shutemov return ret; 2596c8d78c18SKirill A. Shutemov } 2597c8d78c18SKirill A. Shutemov 25981da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm) 25991da177e4SLinus Torvalds { 2600a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM 26011da177e4SLinus Torvalds if (unlikely(down_read_trylock(&mm->mmap_sem))) { 26021da177e4SLinus Torvalds WARN_ON(1); 26031da177e4SLinus Torvalds up_read(&mm->mmap_sem); 26041da177e4SLinus Torvalds } 26051da177e4SLinus Torvalds #endif 26061da177e4SLinus Torvalds } 26071da177e4SLinus Torvalds 26081da177e4SLinus Torvalds /* 26091da177e4SLinus Torvalds * this is really a simplified "do_mmap". it only handles 26101da177e4SLinus Torvalds * anonymous maps. eventually we may be able to do some 26111da177e4SLinus Torvalds * brk-specific accounting here. 26121da177e4SLinus Torvalds */ 2613e4eb1ff6SLinus Torvalds static unsigned long do_brk(unsigned long addr, unsigned long len) 26141da177e4SLinus Torvalds { 26151da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 26161da177e4SLinus Torvalds struct vm_area_struct *vma, *prev; 26171da177e4SLinus Torvalds unsigned long flags; 26181da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 26191da177e4SLinus Torvalds pgoff_t pgoff = addr >> PAGE_SHIFT; 26203a459756SKirill Korotaev int error; 26211da177e4SLinus Torvalds 26221da177e4SLinus Torvalds len = PAGE_ALIGN(len); 26231da177e4SLinus Torvalds if (!len) 26241da177e4SLinus Torvalds return addr; 26251da177e4SLinus Torvalds 26263a459756SKirill Korotaev flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags; 26273a459756SKirill Korotaev 26282c6a1016SAl Viro error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED); 2629de1741a1SAlexander Kuleshov if (offset_in_page(error)) 26303a459756SKirill Korotaev return error; 26313a459756SKirill Korotaev 2632363ee17fSDavidlohr Bueso error = mlock_future_check(mm, mm->def_flags, len); 2633363ee17fSDavidlohr Bueso if (error) 2634363ee17fSDavidlohr Bueso return error; 26351da177e4SLinus Torvalds 26361da177e4SLinus Torvalds /* 26371da177e4SLinus Torvalds * mm->mmap_sem is required to protect against another thread 26381da177e4SLinus Torvalds * changing the mappings in case we sleep. 26391da177e4SLinus Torvalds */ 26401da177e4SLinus Torvalds verify_mm_writelocked(mm); 26411da177e4SLinus Torvalds 26421da177e4SLinus Torvalds /* 26431da177e4SLinus Torvalds * Clear old maps. this also does some error checking for us 26441da177e4SLinus Torvalds */ 26459fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 26469fcd1457SRasmus Villemoes &rb_parent)) { 26471da177e4SLinus Torvalds if (do_munmap(mm, addr, len)) 26481da177e4SLinus Torvalds return -ENOMEM; 26491da177e4SLinus Torvalds } 26501da177e4SLinus Torvalds 26511da177e4SLinus Torvalds /* Check against address space limits *after* clearing old maps... */ 265284638335SKonstantin Khlebnikov if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT)) 26531da177e4SLinus Torvalds return -ENOMEM; 26541da177e4SLinus Torvalds 26551da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 26561da177e4SLinus Torvalds return -ENOMEM; 26571da177e4SLinus Torvalds 2658191c5424SAl Viro if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT)) 26591da177e4SLinus Torvalds return -ENOMEM; 26601da177e4SLinus Torvalds 26611da177e4SLinus Torvalds /* Can we just expand an old private anonymous mapping? */ 2662ba470de4SRik van Riel vma = vma_merge(mm, prev, addr, addr + len, flags, 266319a809afSAndrea Arcangeli NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX); 2664ba470de4SRik van Riel if (vma) 26651da177e4SLinus Torvalds goto out; 26661da177e4SLinus Torvalds 26671da177e4SLinus Torvalds /* 26681da177e4SLinus Torvalds * create a vma struct for an anonymous mapping 26691da177e4SLinus Torvalds */ 2670c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 26711da177e4SLinus Torvalds if (!vma) { 26721da177e4SLinus Torvalds vm_unacct_memory(len >> PAGE_SHIFT); 26731da177e4SLinus Torvalds return -ENOMEM; 26741da177e4SLinus Torvalds } 26751da177e4SLinus Torvalds 26765beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 26771da177e4SLinus Torvalds vma->vm_mm = mm; 26781da177e4SLinus Torvalds vma->vm_start = addr; 26791da177e4SLinus Torvalds vma->vm_end = addr + len; 26801da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 26811da177e4SLinus Torvalds vma->vm_flags = flags; 26823ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(flags); 26831da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 26841da177e4SLinus Torvalds out: 26853af9e859SEric B Munson perf_event_mmap(vma); 26861da177e4SLinus Torvalds mm->total_vm += len >> PAGE_SHIFT; 268784638335SKonstantin Khlebnikov mm->data_vm += len >> PAGE_SHIFT; 2688128557ffSMichel Lespinasse if (flags & VM_LOCKED) 2689ba470de4SRik van Riel mm->locked_vm += (len >> PAGE_SHIFT); 2690d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 26911da177e4SLinus Torvalds return addr; 26921da177e4SLinus Torvalds } 26931da177e4SLinus Torvalds 2694e4eb1ff6SLinus Torvalds unsigned long vm_brk(unsigned long addr, unsigned long len) 2695e4eb1ff6SLinus Torvalds { 2696e4eb1ff6SLinus Torvalds struct mm_struct *mm = current->mm; 2697e4eb1ff6SLinus Torvalds unsigned long ret; 2698128557ffSMichel Lespinasse bool populate; 2699e4eb1ff6SLinus Torvalds 2700e4eb1ff6SLinus Torvalds down_write(&mm->mmap_sem); 2701e4eb1ff6SLinus Torvalds ret = do_brk(addr, len); 2702128557ffSMichel Lespinasse populate = ((mm->def_flags & VM_LOCKED) != 0); 2703e4eb1ff6SLinus Torvalds up_write(&mm->mmap_sem); 2704128557ffSMichel Lespinasse if (populate) 2705128557ffSMichel Lespinasse mm_populate(addr, len); 2706e4eb1ff6SLinus Torvalds return ret; 2707e4eb1ff6SLinus Torvalds } 2708e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk); 27091da177e4SLinus Torvalds 27101da177e4SLinus Torvalds /* Release all mmaps. */ 27111da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm) 27121da177e4SLinus Torvalds { 2713d16dfc55SPeter Zijlstra struct mmu_gather tlb; 2714ba470de4SRik van Riel struct vm_area_struct *vma; 27151da177e4SLinus Torvalds unsigned long nr_accounted = 0; 27161da177e4SLinus Torvalds 2717d6dd61c8SJeremy Fitzhardinge /* mm's last user has gone, and its about to be pulled down */ 2718cddb8a5cSAndrea Arcangeli mmu_notifier_release(mm); 2719d6dd61c8SJeremy Fitzhardinge 2720ba470de4SRik van Riel if (mm->locked_vm) { 2721ba470de4SRik van Riel vma = mm->mmap; 2722ba470de4SRik van Riel while (vma) { 2723ba470de4SRik van Riel if (vma->vm_flags & VM_LOCKED) 2724ba470de4SRik van Riel munlock_vma_pages_all(vma); 2725ba470de4SRik van Riel vma = vma->vm_next; 2726ba470de4SRik van Riel } 2727ba470de4SRik van Riel } 27289480c53eSJeremy Fitzhardinge 27299480c53eSJeremy Fitzhardinge arch_exit_mmap(mm); 27309480c53eSJeremy Fitzhardinge 2731ba470de4SRik van Riel vma = mm->mmap; 27329480c53eSJeremy Fitzhardinge if (!vma) /* Can happen if dup_mmap() received an OOM */ 27339480c53eSJeremy Fitzhardinge return; 27349480c53eSJeremy Fitzhardinge 27351da177e4SLinus Torvalds lru_add_drain(); 27361da177e4SLinus Torvalds flush_cache_mm(mm); 27372b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, 0, -1); 2738901608d9SOleg Nesterov /* update_hiwater_rss(mm) here? but nobody should be looking */ 2739e0da382cSHugh Dickins /* Use -1 here to ensure all VMAs in the mm are unmapped */ 27404f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, 0, -1); 27419ba69294SHugh Dickins 27426ee8630eSHugh Dickins free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING); 2743853f5e26SAl Viro tlb_finish_mmu(&tlb, 0, -1); 27441da177e4SLinus Torvalds 27451da177e4SLinus Torvalds /* 27468f4f8c16SHugh Dickins * Walk the list again, actually closing and freeing it, 27478f4f8c16SHugh Dickins * with preemption enabled, without holding any MM locks. 27481da177e4SLinus Torvalds */ 27494f74d2c8SLinus Torvalds while (vma) { 27504f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 27514f74d2c8SLinus Torvalds nr_accounted += vma_pages(vma); 2752a8fb5618SHugh Dickins vma = remove_vma(vma); 27534f74d2c8SLinus Torvalds } 27544f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 27551da177e4SLinus Torvalds } 27561da177e4SLinus Torvalds 27571da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address 27581da177e4SLinus Torvalds * and into the inode's i_mmap tree. If vm_file is non-NULL 2759c8c06efaSDavidlohr Bueso * then i_mmap_rwsem is taken here. 27601da177e4SLinus Torvalds */ 27611da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 27621da177e4SLinus Torvalds { 27636597d783SHugh Dickins struct vm_area_struct *prev; 27641da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 27651da177e4SLinus Torvalds 2766c9d13f5fSChen Gang if (find_vma_links(mm, vma->vm_start, vma->vm_end, 2767c9d13f5fSChen Gang &prev, &rb_link, &rb_parent)) 2768c9d13f5fSChen Gang return -ENOMEM; 2769c9d13f5fSChen Gang if ((vma->vm_flags & VM_ACCOUNT) && 2770c9d13f5fSChen Gang security_vm_enough_memory_mm(mm, vma_pages(vma))) 2771c9d13f5fSChen Gang return -ENOMEM; 2772c9d13f5fSChen Gang 27731da177e4SLinus Torvalds /* 27741da177e4SLinus Torvalds * The vm_pgoff of a purely anonymous vma should be irrelevant 27751da177e4SLinus Torvalds * until its first write fault, when page's anon_vma and index 27761da177e4SLinus Torvalds * are set. But now set the vm_pgoff it will almost certainly 27771da177e4SLinus Torvalds * end up with (unless mremap moves it elsewhere before that 27781da177e4SLinus Torvalds * first wfault), so /proc/pid/maps tells a consistent story. 27791da177e4SLinus Torvalds * 27801da177e4SLinus Torvalds * By setting it to reflect the virtual start address of the 27811da177e4SLinus Torvalds * vma, merges and splits can happen in a seamless way, just 27821da177e4SLinus Torvalds * using the existing file pgoff checks and manipulations. 27831da177e4SLinus Torvalds * Similarly in do_mmap_pgoff and in do_brk. 27841da177e4SLinus Torvalds */ 27858a9cc3b5SOleg Nesterov if (vma_is_anonymous(vma)) { 27861da177e4SLinus Torvalds BUG_ON(vma->anon_vma); 27871da177e4SLinus Torvalds vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT; 27881da177e4SLinus Torvalds } 27892b144498SSrikar Dronamraju 27901da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 27911da177e4SLinus Torvalds return 0; 27921da177e4SLinus Torvalds } 27931da177e4SLinus Torvalds 27941da177e4SLinus Torvalds /* 27951da177e4SLinus Torvalds * Copy the vma structure to a new location in the same mm, 27961da177e4SLinus Torvalds * prior to moving page table entries, to effect an mremap move. 27971da177e4SLinus Torvalds */ 27981da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap, 279938a76013SMichel Lespinasse unsigned long addr, unsigned long len, pgoff_t pgoff, 280038a76013SMichel Lespinasse bool *need_rmap_locks) 28011da177e4SLinus Torvalds { 28021da177e4SLinus Torvalds struct vm_area_struct *vma = *vmap; 28031da177e4SLinus Torvalds unsigned long vma_start = vma->vm_start; 28041da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 28051da177e4SLinus Torvalds struct vm_area_struct *new_vma, *prev; 28061da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 2807948f017bSAndrea Arcangeli bool faulted_in_anon_vma = true; 28081da177e4SLinus Torvalds 28091da177e4SLinus Torvalds /* 28101da177e4SLinus Torvalds * If anonymous vma has not yet been faulted, update new pgoff 28111da177e4SLinus Torvalds * to match new location, to increase its chance of merging. 28121da177e4SLinus Torvalds */ 2813ce75799bSOleg Nesterov if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) { 28141da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 2815948f017bSAndrea Arcangeli faulted_in_anon_vma = false; 2816948f017bSAndrea Arcangeli } 28171da177e4SLinus Torvalds 28186597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) 28196597d783SHugh Dickins return NULL; /* should never get here */ 28201da177e4SLinus Torvalds new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags, 282119a809afSAndrea Arcangeli vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma), 282219a809afSAndrea Arcangeli vma->vm_userfaultfd_ctx); 28231da177e4SLinus Torvalds if (new_vma) { 28241da177e4SLinus Torvalds /* 28251da177e4SLinus Torvalds * Source vma may have been merged into new_vma 28261da177e4SLinus Torvalds */ 2827948f017bSAndrea Arcangeli if (unlikely(vma_start >= new_vma->vm_start && 2828948f017bSAndrea Arcangeli vma_start < new_vma->vm_end)) { 2829948f017bSAndrea Arcangeli /* 2830948f017bSAndrea Arcangeli * The only way we can get a vma_merge with 2831948f017bSAndrea Arcangeli * self during an mremap is if the vma hasn't 2832948f017bSAndrea Arcangeli * been faulted in yet and we were allowed to 2833948f017bSAndrea Arcangeli * reset the dst vma->vm_pgoff to the 2834948f017bSAndrea Arcangeli * destination address of the mremap to allow 2835948f017bSAndrea Arcangeli * the merge to happen. mremap must change the 2836948f017bSAndrea Arcangeli * vm_pgoff linearity between src and dst vmas 2837948f017bSAndrea Arcangeli * (in turn preventing a vma_merge) to be 2838948f017bSAndrea Arcangeli * safe. It is only safe to keep the vm_pgoff 2839948f017bSAndrea Arcangeli * linear if there are no pages mapped yet. 2840948f017bSAndrea Arcangeli */ 284181d1b09cSSasha Levin VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma); 284238a76013SMichel Lespinasse *vmap = vma = new_vma; 2843108d6642SMichel Lespinasse } 284438a76013SMichel Lespinasse *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff); 28451da177e4SLinus Torvalds } else { 2846e94b1766SChristoph Lameter new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 2847e3975891SChen Gang if (!new_vma) 2848e3975891SChen Gang goto out; 28491da177e4SLinus Torvalds *new_vma = *vma; 28501da177e4SLinus Torvalds new_vma->vm_start = addr; 28511da177e4SLinus Torvalds new_vma->vm_end = addr + len; 28521da177e4SLinus Torvalds new_vma->vm_pgoff = pgoff; 2853ef0855d3SOleg Nesterov if (vma_dup_policy(vma, new_vma)) 2854523d4e20SMichel Lespinasse goto out_free_vma; 2855523d4e20SMichel Lespinasse INIT_LIST_HEAD(&new_vma->anon_vma_chain); 2856523d4e20SMichel Lespinasse if (anon_vma_clone(new_vma, vma)) 2857523d4e20SMichel Lespinasse goto out_free_mempol; 2858e9714acfSKonstantin Khlebnikov if (new_vma->vm_file) 28591da177e4SLinus Torvalds get_file(new_vma->vm_file); 28601da177e4SLinus Torvalds if (new_vma->vm_ops && new_vma->vm_ops->open) 28611da177e4SLinus Torvalds new_vma->vm_ops->open(new_vma); 28621da177e4SLinus Torvalds vma_link(mm, new_vma, prev, rb_link, rb_parent); 286338a76013SMichel Lespinasse *need_rmap_locks = false; 28641da177e4SLinus Torvalds } 28651da177e4SLinus Torvalds return new_vma; 28665beb4930SRik van Riel 28675beb4930SRik van Riel out_free_mempol: 2868ef0855d3SOleg Nesterov mpol_put(vma_policy(new_vma)); 28695beb4930SRik van Riel out_free_vma: 28705beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new_vma); 2871e3975891SChen Gang out: 28725beb4930SRik van Riel return NULL; 28731da177e4SLinus Torvalds } 2874119f657cSakpm@osdl.org 2875119f657cSakpm@osdl.org /* 2876119f657cSakpm@osdl.org * Return true if the calling process may expand its vm space by the passed 2877119f657cSakpm@osdl.org * number of pages 2878119f657cSakpm@osdl.org */ 287984638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages) 2880119f657cSakpm@osdl.org { 288184638335SKonstantin Khlebnikov if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT) 288284638335SKonstantin Khlebnikov return false; 2883119f657cSakpm@osdl.org 2884d977d56cSKonstantin Khlebnikov if (is_data_mapping(flags) && 2885d977d56cSKonstantin Khlebnikov mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) { 2886d977d56cSKonstantin Khlebnikov if (ignore_rlimit_data) 2887*756a025fSJoe Perches pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Will be forbidden soon.\n", 2888d977d56cSKonstantin Khlebnikov current->comm, current->pid, 2889d977d56cSKonstantin Khlebnikov (mm->data_vm + npages) << PAGE_SHIFT, 2890d977d56cSKonstantin Khlebnikov rlimit(RLIMIT_DATA)); 2891d977d56cSKonstantin Khlebnikov else 2892d977d56cSKonstantin Khlebnikov return false; 2893d977d56cSKonstantin Khlebnikov } 2894119f657cSakpm@osdl.org 289584638335SKonstantin Khlebnikov return true; 289684638335SKonstantin Khlebnikov } 289784638335SKonstantin Khlebnikov 289884638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages) 289984638335SKonstantin Khlebnikov { 290084638335SKonstantin Khlebnikov mm->total_vm += npages; 290184638335SKonstantin Khlebnikov 2902d977d56cSKonstantin Khlebnikov if (is_exec_mapping(flags)) 290384638335SKonstantin Khlebnikov mm->exec_vm += npages; 2904d977d56cSKonstantin Khlebnikov else if (is_stack_mapping(flags)) 290584638335SKonstantin Khlebnikov mm->stack_vm += npages; 2906d977d56cSKonstantin Khlebnikov else if (is_data_mapping(flags)) 290784638335SKonstantin Khlebnikov mm->data_vm += npages; 2908119f657cSakpm@osdl.org } 2909fa5dc22fSRoland McGrath 2910a62c34bdSAndy Lutomirski static int special_mapping_fault(struct vm_area_struct *vma, 2911a62c34bdSAndy Lutomirski struct vm_fault *vmf); 2912a62c34bdSAndy Lutomirski 2913a62c34bdSAndy Lutomirski /* 2914a62c34bdSAndy Lutomirski * Having a close hook prevents vma merging regardless of flags. 2915a62c34bdSAndy Lutomirski */ 2916a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma) 2917a62c34bdSAndy Lutomirski { 2918a62c34bdSAndy Lutomirski } 2919a62c34bdSAndy Lutomirski 2920a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma) 2921a62c34bdSAndy Lutomirski { 2922a62c34bdSAndy Lutomirski return ((struct vm_special_mapping *)vma->vm_private_data)->name; 2923a62c34bdSAndy Lutomirski } 2924a62c34bdSAndy Lutomirski 2925a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = { 2926a62c34bdSAndy Lutomirski .close = special_mapping_close, 2927a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 2928a62c34bdSAndy Lutomirski .name = special_mapping_name, 2929a62c34bdSAndy Lutomirski }; 2930a62c34bdSAndy Lutomirski 2931a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = { 2932a62c34bdSAndy Lutomirski .close = special_mapping_close, 2933a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 2934a62c34bdSAndy Lutomirski }; 2935fa5dc22fSRoland McGrath 2936b1d0e4f5SNick Piggin static int special_mapping_fault(struct vm_area_struct *vma, 2937b1d0e4f5SNick Piggin struct vm_fault *vmf) 2938fa5dc22fSRoland McGrath { 2939b1d0e4f5SNick Piggin pgoff_t pgoff; 2940fa5dc22fSRoland McGrath struct page **pages; 2941fa5dc22fSRoland McGrath 2942f872f540SAndy Lutomirski if (vma->vm_ops == &legacy_special_mapping_vmops) { 2943a62c34bdSAndy Lutomirski pages = vma->vm_private_data; 2944f872f540SAndy Lutomirski } else { 2945f872f540SAndy Lutomirski struct vm_special_mapping *sm = vma->vm_private_data; 2946f872f540SAndy Lutomirski 2947f872f540SAndy Lutomirski if (sm->fault) 2948f872f540SAndy Lutomirski return sm->fault(sm, vma, vmf); 2949f872f540SAndy Lutomirski 2950f872f540SAndy Lutomirski pages = sm->pages; 2951f872f540SAndy Lutomirski } 2952a62c34bdSAndy Lutomirski 29538a9cc3b5SOleg Nesterov for (pgoff = vmf->pgoff; pgoff && *pages; ++pages) 2954b1d0e4f5SNick Piggin pgoff--; 2955fa5dc22fSRoland McGrath 2956fa5dc22fSRoland McGrath if (*pages) { 2957fa5dc22fSRoland McGrath struct page *page = *pages; 2958fa5dc22fSRoland McGrath get_page(page); 2959b1d0e4f5SNick Piggin vmf->page = page; 2960b1d0e4f5SNick Piggin return 0; 2961fa5dc22fSRoland McGrath } 2962fa5dc22fSRoland McGrath 2963b1d0e4f5SNick Piggin return VM_FAULT_SIGBUS; 2964fa5dc22fSRoland McGrath } 2965fa5dc22fSRoland McGrath 2966a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping( 2967a62c34bdSAndy Lutomirski struct mm_struct *mm, 2968fa5dc22fSRoland McGrath unsigned long addr, unsigned long len, 296927f28b97SChen Gang unsigned long vm_flags, void *priv, 297027f28b97SChen Gang const struct vm_operations_struct *ops) 2971fa5dc22fSRoland McGrath { 2972462e635eSTavis Ormandy int ret; 2973fa5dc22fSRoland McGrath struct vm_area_struct *vma; 2974fa5dc22fSRoland McGrath 2975fa5dc22fSRoland McGrath vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 2976fa5dc22fSRoland McGrath if (unlikely(vma == NULL)) 29773935ed6aSStefani Seibold return ERR_PTR(-ENOMEM); 2978fa5dc22fSRoland McGrath 29795beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 2980fa5dc22fSRoland McGrath vma->vm_mm = mm; 2981fa5dc22fSRoland McGrath vma->vm_start = addr; 2982fa5dc22fSRoland McGrath vma->vm_end = addr + len; 2983fa5dc22fSRoland McGrath 2984d9104d1cSCyrill Gorcunov vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY; 29853ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vma->vm_flags); 2986fa5dc22fSRoland McGrath 2987a62c34bdSAndy Lutomirski vma->vm_ops = ops; 2988a62c34bdSAndy Lutomirski vma->vm_private_data = priv; 2989fa5dc22fSRoland McGrath 2990462e635eSTavis Ormandy ret = insert_vm_struct(mm, vma); 2991462e635eSTavis Ormandy if (ret) 2992462e635eSTavis Ormandy goto out; 2993fa5dc22fSRoland McGrath 299484638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT); 2995fa5dc22fSRoland McGrath 2996cdd6c482SIngo Molnar perf_event_mmap(vma); 2997089dd79dSPeter Zijlstra 29983935ed6aSStefani Seibold return vma; 2999462e635eSTavis Ormandy 3000462e635eSTavis Ormandy out: 3001462e635eSTavis Ormandy kmem_cache_free(vm_area_cachep, vma); 30023935ed6aSStefani Seibold return ERR_PTR(ret); 30033935ed6aSStefani Seibold } 30043935ed6aSStefani Seibold 3005a62c34bdSAndy Lutomirski /* 3006a62c34bdSAndy Lutomirski * Called with mm->mmap_sem held for writing. 3007a62c34bdSAndy Lutomirski * Insert a new vma covering the given region, with the given flags. 3008a62c34bdSAndy Lutomirski * Its pages are supplied by the given array of struct page *. 3009a62c34bdSAndy Lutomirski * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated. 3010a62c34bdSAndy Lutomirski * The region past the last page supplied will always produce SIGBUS. 3011a62c34bdSAndy Lutomirski * The array pointer and the pages it points to are assumed to stay alive 3012a62c34bdSAndy Lutomirski * for as long as this mapping might exist. 3013a62c34bdSAndy Lutomirski */ 3014a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping( 3015a62c34bdSAndy Lutomirski struct mm_struct *mm, 3016a62c34bdSAndy Lutomirski unsigned long addr, unsigned long len, 3017a62c34bdSAndy Lutomirski unsigned long vm_flags, const struct vm_special_mapping *spec) 3018a62c34bdSAndy Lutomirski { 301927f28b97SChen Gang return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec, 302027f28b97SChen Gang &special_mapping_vmops); 3021a62c34bdSAndy Lutomirski } 3022a62c34bdSAndy Lutomirski 30233935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm, 30243935ed6aSStefani Seibold unsigned long addr, unsigned long len, 30253935ed6aSStefani Seibold unsigned long vm_flags, struct page **pages) 30263935ed6aSStefani Seibold { 3027a62c34bdSAndy Lutomirski struct vm_area_struct *vma = __install_special_mapping( 302827f28b97SChen Gang mm, addr, len, vm_flags, (void *)pages, 302927f28b97SChen Gang &legacy_special_mapping_vmops); 30303935ed6aSStefani Seibold 303114bd5b45SDuan Jiong return PTR_ERR_OR_ZERO(vma); 3032fa5dc22fSRoland McGrath } 30337906d00cSAndrea Arcangeli 30347906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex); 30357906d00cSAndrea Arcangeli 3036454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma) 30377906d00cSAndrea Arcangeli { 3038bf181b9fSMichel Lespinasse if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 30397906d00cSAndrea Arcangeli /* 30407906d00cSAndrea Arcangeli * The LSB of head.next can't change from under us 30417906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 30427906d00cSAndrea Arcangeli */ 3043572043c9SJiri Kosina down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem); 30447906d00cSAndrea Arcangeli /* 30457906d00cSAndrea Arcangeli * We can safely modify head.next after taking the 30465a505085SIngo Molnar * anon_vma->root->rwsem. If some other vma in this mm shares 30477906d00cSAndrea Arcangeli * the same anon_vma we won't take it again. 30487906d00cSAndrea Arcangeli * 30497906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 30507906d00cSAndrea Arcangeli * can't change from under us thanks to the 30515a505085SIngo Molnar * anon_vma->root->rwsem. 30527906d00cSAndrea Arcangeli */ 30537906d00cSAndrea Arcangeli if (__test_and_set_bit(0, (unsigned long *) 3054bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 30557906d00cSAndrea Arcangeli BUG(); 30567906d00cSAndrea Arcangeli } 30577906d00cSAndrea Arcangeli } 30587906d00cSAndrea Arcangeli 3059454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping) 30607906d00cSAndrea Arcangeli { 30617906d00cSAndrea Arcangeli if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 30627906d00cSAndrea Arcangeli /* 30637906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change from under us because 30647906d00cSAndrea Arcangeli * we hold the mm_all_locks_mutex. 30657906d00cSAndrea Arcangeli * 30667906d00cSAndrea Arcangeli * Operations on ->flags have to be atomic because 30677906d00cSAndrea Arcangeli * even if AS_MM_ALL_LOCKS is stable thanks to the 30687906d00cSAndrea Arcangeli * mm_all_locks_mutex, there may be other cpus 30697906d00cSAndrea Arcangeli * changing other bitflags in parallel to us. 30707906d00cSAndrea Arcangeli */ 30717906d00cSAndrea Arcangeli if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags)) 30727906d00cSAndrea Arcangeli BUG(); 3073c8c06efaSDavidlohr Bueso down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem); 30747906d00cSAndrea Arcangeli } 30757906d00cSAndrea Arcangeli } 30767906d00cSAndrea Arcangeli 30777906d00cSAndrea Arcangeli /* 30787906d00cSAndrea Arcangeli * This operation locks against the VM for all pte/vma/mm related 30797906d00cSAndrea Arcangeli * operations that could ever happen on a certain mm. This includes 30807906d00cSAndrea Arcangeli * vmtruncate, try_to_unmap, and all page faults. 30817906d00cSAndrea Arcangeli * 30827906d00cSAndrea Arcangeli * The caller must take the mmap_sem in write mode before calling 30837906d00cSAndrea Arcangeli * mm_take_all_locks(). The caller isn't allowed to release the 30847906d00cSAndrea Arcangeli * mmap_sem until mm_drop_all_locks() returns. 30857906d00cSAndrea Arcangeli * 30867906d00cSAndrea Arcangeli * mmap_sem in write mode is required in order to block all operations 30877906d00cSAndrea Arcangeli * that could modify pagetables and free pages without need of 308827ba0644SKirill A. Shutemov * altering the vma layout. It's also needed in write mode to avoid new 30897906d00cSAndrea Arcangeli * anon_vmas to be associated with existing vmas. 30907906d00cSAndrea Arcangeli * 30917906d00cSAndrea Arcangeli * A single task can't take more than one mm_take_all_locks() in a row 30927906d00cSAndrea Arcangeli * or it would deadlock. 30937906d00cSAndrea Arcangeli * 3094bf181b9fSMichel Lespinasse * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in 30957906d00cSAndrea Arcangeli * mapping->flags avoid to take the same lock twice, if more than one 30967906d00cSAndrea Arcangeli * vma in this mm is backed by the same anon_vma or address_space. 30977906d00cSAndrea Arcangeli * 309888f306b6SKirill A. Shutemov * We take locks in following order, accordingly to comment at beginning 309988f306b6SKirill A. Shutemov * of mm/rmap.c: 310088f306b6SKirill A. Shutemov * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for 310188f306b6SKirill A. Shutemov * hugetlb mapping); 310288f306b6SKirill A. Shutemov * - all i_mmap_rwsem locks; 310388f306b6SKirill A. Shutemov * - all anon_vma->rwseml 310488f306b6SKirill A. Shutemov * 310588f306b6SKirill A. Shutemov * We can take all locks within these types randomly because the VM code 310688f306b6SKirill A. Shutemov * doesn't nest them and we protected from parallel mm_take_all_locks() by 310788f306b6SKirill A. Shutemov * mm_all_locks_mutex. 31087906d00cSAndrea Arcangeli * 31097906d00cSAndrea Arcangeli * mm_take_all_locks() and mm_drop_all_locks are expensive operations 31107906d00cSAndrea Arcangeli * that may have to take thousand of locks. 31117906d00cSAndrea Arcangeli * 31127906d00cSAndrea Arcangeli * mm_take_all_locks() can fail if it's interrupted by signals. 31137906d00cSAndrea Arcangeli */ 31147906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm) 31157906d00cSAndrea Arcangeli { 31167906d00cSAndrea Arcangeli struct vm_area_struct *vma; 31175beb4930SRik van Riel struct anon_vma_chain *avc; 31187906d00cSAndrea Arcangeli 31197906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 31207906d00cSAndrea Arcangeli 31217906d00cSAndrea Arcangeli mutex_lock(&mm_all_locks_mutex); 31227906d00cSAndrea Arcangeli 31237906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 31247906d00cSAndrea Arcangeli if (signal_pending(current)) 31257906d00cSAndrea Arcangeli goto out_unlock; 312688f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 312788f306b6SKirill A. Shutemov is_vm_hugetlb_page(vma)) 312888f306b6SKirill A. Shutemov vm_lock_mapping(mm, vma->vm_file->f_mapping); 312988f306b6SKirill A. Shutemov } 313088f306b6SKirill A. Shutemov 313188f306b6SKirill A. Shutemov for (vma = mm->mmap; vma; vma = vma->vm_next) { 313288f306b6SKirill A. Shutemov if (signal_pending(current)) 313388f306b6SKirill A. Shutemov goto out_unlock; 313488f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 313588f306b6SKirill A. Shutemov !is_vm_hugetlb_page(vma)) 3136454ed842SPeter Zijlstra vm_lock_mapping(mm, vma->vm_file->f_mapping); 31377906d00cSAndrea Arcangeli } 31387cd5a02fSPeter Zijlstra 31397cd5a02fSPeter Zijlstra for (vma = mm->mmap; vma; vma = vma->vm_next) { 31407cd5a02fSPeter Zijlstra if (signal_pending(current)) 31417cd5a02fSPeter Zijlstra goto out_unlock; 31427cd5a02fSPeter Zijlstra if (vma->anon_vma) 31435beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 31445beb4930SRik van Riel vm_lock_anon_vma(mm, avc->anon_vma); 31457cd5a02fSPeter Zijlstra } 31467cd5a02fSPeter Zijlstra 3147584cff54SKautuk Consul return 0; 31487906d00cSAndrea Arcangeli 31497906d00cSAndrea Arcangeli out_unlock: 31507906d00cSAndrea Arcangeli mm_drop_all_locks(mm); 3151584cff54SKautuk Consul return -EINTR; 31527906d00cSAndrea Arcangeli } 31537906d00cSAndrea Arcangeli 31547906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma) 31557906d00cSAndrea Arcangeli { 3156bf181b9fSMichel Lespinasse if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 31577906d00cSAndrea Arcangeli /* 31587906d00cSAndrea Arcangeli * The LSB of head.next can't change to 0 from under 31597906d00cSAndrea Arcangeli * us because we hold the mm_all_locks_mutex. 31607906d00cSAndrea Arcangeli * 31617906d00cSAndrea Arcangeli * We must however clear the bitflag before unlocking 3162bf181b9fSMichel Lespinasse * the vma so the users using the anon_vma->rb_root will 31637906d00cSAndrea Arcangeli * never see our bitflag. 31647906d00cSAndrea Arcangeli * 31657906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 31667906d00cSAndrea Arcangeli * can't change from under us until we release the 31675a505085SIngo Molnar * anon_vma->root->rwsem. 31687906d00cSAndrea Arcangeli */ 31697906d00cSAndrea Arcangeli if (!__test_and_clear_bit(0, (unsigned long *) 3170bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 31717906d00cSAndrea Arcangeli BUG(); 317208b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 31737906d00cSAndrea Arcangeli } 31747906d00cSAndrea Arcangeli } 31757906d00cSAndrea Arcangeli 31767906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping) 31777906d00cSAndrea Arcangeli { 31787906d00cSAndrea Arcangeli if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 31797906d00cSAndrea Arcangeli /* 31807906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change to 0 from under us 31817906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 31827906d00cSAndrea Arcangeli */ 318383cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 31847906d00cSAndrea Arcangeli if (!test_and_clear_bit(AS_MM_ALL_LOCKS, 31857906d00cSAndrea Arcangeli &mapping->flags)) 31867906d00cSAndrea Arcangeli BUG(); 31877906d00cSAndrea Arcangeli } 31887906d00cSAndrea Arcangeli } 31897906d00cSAndrea Arcangeli 31907906d00cSAndrea Arcangeli /* 31917906d00cSAndrea Arcangeli * The mmap_sem cannot be released by the caller until 31927906d00cSAndrea Arcangeli * mm_drop_all_locks() returns. 31937906d00cSAndrea Arcangeli */ 31947906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm) 31957906d00cSAndrea Arcangeli { 31967906d00cSAndrea Arcangeli struct vm_area_struct *vma; 31975beb4930SRik van Riel struct anon_vma_chain *avc; 31987906d00cSAndrea Arcangeli 31997906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 32007906d00cSAndrea Arcangeli BUG_ON(!mutex_is_locked(&mm_all_locks_mutex)); 32017906d00cSAndrea Arcangeli 32027906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 32037906d00cSAndrea Arcangeli if (vma->anon_vma) 32045beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 32055beb4930SRik van Riel vm_unlock_anon_vma(avc->anon_vma); 32067906d00cSAndrea Arcangeli if (vma->vm_file && vma->vm_file->f_mapping) 32077906d00cSAndrea Arcangeli vm_unlock_mapping(vma->vm_file->f_mapping); 32087906d00cSAndrea Arcangeli } 32097906d00cSAndrea Arcangeli 32107906d00cSAndrea Arcangeli mutex_unlock(&mm_all_locks_mutex); 32117906d00cSAndrea Arcangeli } 32128feae131SDavid Howells 32138feae131SDavid Howells /* 32148feae131SDavid Howells * initialise the VMA slab 32158feae131SDavid Howells */ 32168feae131SDavid Howells void __init mmap_init(void) 32178feae131SDavid Howells { 321800a62ce9SKOSAKI Motohiro int ret; 321900a62ce9SKOSAKI Motohiro 3220908c7f19STejun Heo ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL); 322100a62ce9SKOSAKI Motohiro VM_BUG_ON(ret); 32228feae131SDavid Howells } 3223c9b1d098SAndrew Shewmaker 3224c9b1d098SAndrew Shewmaker /* 3225c9b1d098SAndrew Shewmaker * Initialise sysctl_user_reserve_kbytes. 3226c9b1d098SAndrew Shewmaker * 3227c9b1d098SAndrew Shewmaker * This is intended to prevent a user from starting a single memory hogging 3228c9b1d098SAndrew Shewmaker * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER 3229c9b1d098SAndrew Shewmaker * mode. 3230c9b1d098SAndrew Shewmaker * 3231c9b1d098SAndrew Shewmaker * The default value is min(3% of free memory, 128MB) 3232c9b1d098SAndrew Shewmaker * 128MB is enough to recover with sshd/login, bash, and top/kill. 3233c9b1d098SAndrew Shewmaker */ 32341640879aSAndrew Shewmaker static int init_user_reserve(void) 3235c9b1d098SAndrew Shewmaker { 3236c9b1d098SAndrew Shewmaker unsigned long free_kbytes; 3237c9b1d098SAndrew Shewmaker 3238c9b1d098SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 3239c9b1d098SAndrew Shewmaker 3240c9b1d098SAndrew Shewmaker sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17); 3241c9b1d098SAndrew Shewmaker return 0; 3242c9b1d098SAndrew Shewmaker } 3243a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve); 32444eeab4f5SAndrew Shewmaker 32454eeab4f5SAndrew Shewmaker /* 32464eeab4f5SAndrew Shewmaker * Initialise sysctl_admin_reserve_kbytes. 32474eeab4f5SAndrew Shewmaker * 32484eeab4f5SAndrew Shewmaker * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin 32494eeab4f5SAndrew Shewmaker * to log in and kill a memory hogging process. 32504eeab4f5SAndrew Shewmaker * 32514eeab4f5SAndrew Shewmaker * Systems with more than 256MB will reserve 8MB, enough to recover 32524eeab4f5SAndrew Shewmaker * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will 32534eeab4f5SAndrew Shewmaker * only reserve 3% of free pages by default. 32544eeab4f5SAndrew Shewmaker */ 32551640879aSAndrew Shewmaker static int init_admin_reserve(void) 32564eeab4f5SAndrew Shewmaker { 32574eeab4f5SAndrew Shewmaker unsigned long free_kbytes; 32584eeab4f5SAndrew Shewmaker 32594eeab4f5SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 32604eeab4f5SAndrew Shewmaker 32614eeab4f5SAndrew Shewmaker sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13); 32624eeab4f5SAndrew Shewmaker return 0; 32634eeab4f5SAndrew Shewmaker } 3264a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve); 32651640879aSAndrew Shewmaker 32661640879aSAndrew Shewmaker /* 32671640879aSAndrew Shewmaker * Reinititalise user and admin reserves if memory is added or removed. 32681640879aSAndrew Shewmaker * 32691640879aSAndrew Shewmaker * The default user reserve max is 128MB, and the default max for the 32701640879aSAndrew Shewmaker * admin reserve is 8MB. These are usually, but not always, enough to 32711640879aSAndrew Shewmaker * enable recovery from a memory hogging process using login/sshd, a shell, 32721640879aSAndrew Shewmaker * and tools like top. It may make sense to increase or even disable the 32731640879aSAndrew Shewmaker * reserve depending on the existence of swap or variations in the recovery 32741640879aSAndrew Shewmaker * tools. So, the admin may have changed them. 32751640879aSAndrew Shewmaker * 32761640879aSAndrew Shewmaker * If memory is added and the reserves have been eliminated or increased above 32771640879aSAndrew Shewmaker * the default max, then we'll trust the admin. 32781640879aSAndrew Shewmaker * 32791640879aSAndrew Shewmaker * If memory is removed and there isn't enough free memory, then we 32801640879aSAndrew Shewmaker * need to reset the reserves. 32811640879aSAndrew Shewmaker * 32821640879aSAndrew Shewmaker * Otherwise keep the reserve set by the admin. 32831640879aSAndrew Shewmaker */ 32841640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb, 32851640879aSAndrew Shewmaker unsigned long action, void *data) 32861640879aSAndrew Shewmaker { 32871640879aSAndrew Shewmaker unsigned long tmp, free_kbytes; 32881640879aSAndrew Shewmaker 32891640879aSAndrew Shewmaker switch (action) { 32901640879aSAndrew Shewmaker case MEM_ONLINE: 32911640879aSAndrew Shewmaker /* Default max is 128MB. Leave alone if modified by operator. */ 32921640879aSAndrew Shewmaker tmp = sysctl_user_reserve_kbytes; 32931640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 17)) 32941640879aSAndrew Shewmaker init_user_reserve(); 32951640879aSAndrew Shewmaker 32961640879aSAndrew Shewmaker /* Default max is 8MB. Leave alone if modified by operator. */ 32971640879aSAndrew Shewmaker tmp = sysctl_admin_reserve_kbytes; 32981640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 13)) 32991640879aSAndrew Shewmaker init_admin_reserve(); 33001640879aSAndrew Shewmaker 33011640879aSAndrew Shewmaker break; 33021640879aSAndrew Shewmaker case MEM_OFFLINE: 33031640879aSAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 33041640879aSAndrew Shewmaker 33051640879aSAndrew Shewmaker if (sysctl_user_reserve_kbytes > free_kbytes) { 33061640879aSAndrew Shewmaker init_user_reserve(); 33071640879aSAndrew Shewmaker pr_info("vm.user_reserve_kbytes reset to %lu\n", 33081640879aSAndrew Shewmaker sysctl_user_reserve_kbytes); 33091640879aSAndrew Shewmaker } 33101640879aSAndrew Shewmaker 33111640879aSAndrew Shewmaker if (sysctl_admin_reserve_kbytes > free_kbytes) { 33121640879aSAndrew Shewmaker init_admin_reserve(); 33131640879aSAndrew Shewmaker pr_info("vm.admin_reserve_kbytes reset to %lu\n", 33141640879aSAndrew Shewmaker sysctl_admin_reserve_kbytes); 33151640879aSAndrew Shewmaker } 33161640879aSAndrew Shewmaker break; 33171640879aSAndrew Shewmaker default: 33181640879aSAndrew Shewmaker break; 33191640879aSAndrew Shewmaker } 33201640879aSAndrew Shewmaker return NOTIFY_OK; 33211640879aSAndrew Shewmaker } 33221640879aSAndrew Shewmaker 33231640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = { 33241640879aSAndrew Shewmaker .notifier_call = reserve_mem_notifier, 33251640879aSAndrew Shewmaker }; 33261640879aSAndrew Shewmaker 33271640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void) 33281640879aSAndrew Shewmaker { 33291640879aSAndrew Shewmaker if (register_hotmemory_notifier(&reserve_mem_nb)) 3330b1de0d13SMitchel Humpherys pr_err("Failed registering memory add/remove notifier for admin reserve\n"); 33311640879aSAndrew Shewmaker 33321640879aSAndrew Shewmaker return 0; 33331640879aSAndrew Shewmaker } 3334a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier); 3335