blob: 0175b7d055f0703b1c06f3efe9dfaf1f7479ac30 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/mmap.c
3 *
4 * Written by obz.
5 *
Alan Cox046c6882009-01-05 14:06:29 +00006 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Cyril Hrubise8420a82013-04-29 15:08:33 -070011#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
Alexey Dobriyan4af3c9c2007-10-16 23:29:23 -070013#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mm.h>
Davidlohr Bueso615d6e82014-04-07 15:37:25 -070015#include <linux/vmacache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/shm.h>
17#include <linux/mman.h>
18#include <linux/pagemap.h>
19#include <linux/swap.h>
20#include <linux/syscalls.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/file.h>
24#include <linux/fs.h>
25#include <linux/personality.h>
26#include <linux/security.h>
27#include <linux/hugetlb.h>
28#include <linux/profile.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040029#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/mount.h>
31#include <linux/mempolicy.h>
32#include <linux/rmap.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070033#include <linux/mmu_notifier.h>
Konstantin Khlebnikov82f71ae2014-08-06 16:06:36 -070034#include <linux/mmdebug.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020035#include <linux/perf_event.h>
Al Viro120a7952010-10-30 02:54:44 -040036#include <linux/audit.h>
Andrea Arcangelib15d00b2011-01-13 15:46:59 -080037#include <linux/khugepaged.h>
Srikar Dronamraju2b144492012-02-09 14:56:42 +053038#include <linux/uprobes.h>
Michel Lespinassed3737182012-12-11 16:01:38 -080039#include <linux/rbtree_augmented.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060040#include <linux/sched/sysctl.h>
Andrew Shewmaker16408792013-04-29 15:08:12 -070041#include <linux/notifier.h>
42#include <linux/memory.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070043#include <linux/printk.h>
Andrea Arcangeli19a809a2015-09-04 15:46:24 -070044#include <linux/userfaultfd_k.h>
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -080045#include <linux/moduleparam.h>
Dave Hansen62b5f7d2016-02-12 13:02:40 -080046#include <linux/pkeys.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/uaccess.h>
49#include <asm/cacheflush.h>
50#include <asm/tlb.h>
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +020051#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Jan Beulich42b77722008-07-23 21:27:10 -070053#include "internal.h"
54
Kirill Korotaev3a459752006-09-07 14:17:04 +040055#ifndef arch_mmap_check
56#define arch_mmap_check(addr, len, flags) (0)
57#endif
58
Martin Schwidefsky08e7d9b2008-02-04 22:29:16 -080059#ifndef arch_rebalance_pgtables
60#define arch_rebalance_pgtables(addr, len) (addr)
61#endif
62
Daniel Cashmand07e2252016-01-14 15:19:53 -080063#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
64const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN;
65const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX;
66int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS;
67#endif
68#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
69const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN;
70const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX;
71int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS;
72#endif
73
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -080074static bool ignore_rlimit_data = true;
75core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644);
Daniel Cashmand07e2252016-01-14 15:19:53 -080076
Hugh Dickinse0da3822005-04-19 13:29:15 -070077static void unmap_region(struct mm_struct *mm,
78 struct vm_area_struct *vma, struct vm_area_struct *prev,
79 unsigned long start, unsigned long end);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* description of effects of mapping type and prot in current implementation.
82 * this is due to the limited x86 page protection hardware. The expected
83 * behavior is in parens:
84 *
85 * map_type prot
86 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
87 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
88 * w: (no) no w: (no) no w: (yes) yes w: (no) no
89 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
vishnu.pscc71aba2014-10-09 15:26:29 -070090 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
92 * w: (no) no w: (no) no w: (copy) copy w: (no) no
93 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
94 *
95 */
96pgprot_t protection_map[16] = {
97 __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
98 __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
99};
100
Hugh Dickins804af2c2006-07-26 21:39:49 +0100101pgprot_t vm_get_page_prot(unsigned long vm_flags)
102{
Dave Kleikampb845f312008-07-08 00:28:51 +1000103 return __pgprot(pgprot_val(protection_map[vm_flags &
104 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
105 pgprot_val(arch_vm_get_page_prot(vm_flags)));
Hugh Dickins804af2c2006-07-26 21:39:49 +0100106}
107EXPORT_SYMBOL(vm_get_page_prot);
108
Peter Feiner64e45502014-10-13 15:55:46 -0700109static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
110{
111 return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
112}
113
114/* Update vma->vm_page_prot to reflect vma->vm_flags. */
115void vma_set_page_prot(struct vm_area_struct *vma)
116{
117 unsigned long vm_flags = vma->vm_flags;
118
119 vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
120 if (vma_wants_writenotify(vma)) {
121 vm_flags &= ~VM_SHARED;
122 vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot,
123 vm_flags);
124 }
125}
126
127
Shaohua Li34679d72011-05-24 17:11:18 -0700128int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS; /* heuristic overcommit */
129int sysctl_overcommit_ratio __read_mostly = 50; /* default is 50% */
Jerome Marchand49f0ce52014-01-21 15:49:14 -0800130unsigned long sysctl_overcommit_kbytes __read_mostly;
Christoph Lameterc3d8c142005-09-06 15:16:33 -0700131int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700132unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -0700133unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
Shaohua Li34679d72011-05-24 17:11:18 -0700134/*
135 * Make sure vm_committed_as in one cacheline and not cacheline shared with
136 * other variables. It can be updated by several CPUs frequently.
137 */
138struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/*
K. Y. Srinivasan997071b2012-11-15 14:34:42 -0800141 * The global memory commitment made in the system can be a metric
142 * that can be used to drive ballooning decisions when Linux is hosted
143 * as a guest. On Hyper-V, the host implements a policy engine for dynamically
144 * balancing memory across competing virtual machines that are hosted.
145 * Several metrics drive this policy engine including the guest reported
146 * memory commitment.
147 */
148unsigned long vm_memory_committed(void)
149{
150 return percpu_counter_read_positive(&vm_committed_as);
151}
152EXPORT_SYMBOL_GPL(vm_memory_committed);
153
154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * Check that a process has enough memory to allocate a new virtual
156 * mapping. 0 means there is enough memory for the allocation to
157 * succeed and -ENOMEM implies there is not.
158 *
159 * We currently support three overcommit policies, which are set via the
160 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
161 *
162 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
163 * Additional code 2002 Jul 20 by Robert Love.
164 *
165 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
166 *
167 * Note this is a helper function intended to be used by LSMs which
168 * wish to use this logic.
169 */
Alan Cox34b4e4a2007-08-22 14:01:28 -0700170int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Roman Gushchin5703b082015-02-11 15:28:39 -0800172 long free, allowed, reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Konstantin Khlebnikov82f71ae2014-08-06 16:06:36 -0700174 VM_WARN_ONCE(percpu_counter_read(&vm_committed_as) <
175 -(s64)vm_committed_as_batch * num_online_cpus(),
176 "memory commitment underflow");
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 vm_acct_memory(pages);
179
180 /*
181 * Sometimes we want to use more memory than we have
182 */
183 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
184 return 0;
185
186 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
Dmitry Finkc15bef32011-07-25 17:12:19 -0700187 free = global_page_state(NR_FREE_PAGES);
188 free += global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Dmitry Finkc15bef32011-07-25 17:12:19 -0700190 /*
191 * shmem pages shouldn't be counted as free in this
192 * case, they can't be purged, only swapped out, and
193 * that won't affect the overall amount of available
194 * memory in the system.
195 */
196 free -= global_page_state(NR_SHMEM);
197
Shaohua Liec8acf22013-02-22 16:34:38 -0800198 free += get_nr_swap_pages();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /*
201 * Any slabs which are created with the
202 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
203 * which are reclaimable, under pressure. The dentry
204 * cache and most inode caches should fall into this
205 */
Christoph Lameter972d1a72006-09-25 23:31:51 -0700206 free += global_page_state(NR_SLAB_RECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /*
Dmitry Finkc15bef32011-07-25 17:12:19 -0700209 * Leave reserved pages. The pages are not for anonymous pages.
210 */
211 if (free <= totalreserve_pages)
212 goto error;
213 else
214 free -= totalreserve_pages;
215
216 /*
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -0700217 * Reserve some for root
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
219 if (!cap_sys_admin)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -0700220 free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 if (free > pages)
223 return 0;
224
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700225 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
Jerome Marchand00619bc2013-11-12 15:08:31 -0800228 allowed = vm_commit_limit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /*
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -0700230 * Reserve some for root
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
232 if (!cap_sys_admin)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -0700233 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700235 /*
236 * Don't let a single process grow so big a user can't recover
237 */
238 if (mm) {
239 reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10);
Roman Gushchin5703b082015-02-11 15:28:39 -0800240 allowed -= min_t(long, mm->total_vm / 32, reserve);
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700243 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700245error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 vm_unacct_memory(pages);
247
248 return -ENOMEM;
249}
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800252 * Requires inode->i_mapping->i_mmap_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
254static void __remove_shared_vm_struct(struct vm_area_struct *vma,
255 struct file *file, struct address_space *mapping)
256{
257 if (vma->vm_flags & VM_DENYWRITE)
Al Viro496ad9a2013-01-23 17:07:38 -0500258 atomic_inc(&file_inode(file)->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (vma->vm_flags & VM_SHARED)
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700260 mapping_unmap_writable(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 flush_dcache_mmap_lock(mapping);
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800263 vma_interval_tree_remove(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 flush_dcache_mmap_unlock(mapping);
265}
266
267/*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700268 * Unlink a file-based vm structure from its interval tree, to hide
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700269 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700271void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct file *file = vma->vm_file;
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (file) {
276 struct address_space *mapping = file->f_mapping;
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800277 i_mmap_lock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 __remove_shared_vm_struct(vma, file, mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800279 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700281}
282
283/*
284 * Close a vm structure and free it, returning the next.
285 */
286static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
287{
288 struct vm_area_struct *next = vma->vm_next;
289
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700290 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (vma->vm_ops && vma->vm_ops->close)
292 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700293 if (vma->vm_file)
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700294 fput(vma->vm_file);
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700295 mpol_put(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700297 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700300static unsigned long do_brk(unsigned long addr, unsigned long len);
301
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100302SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Cyrill Gorcunov8764b332014-10-09 15:27:32 -0700304 unsigned long retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 unsigned long newbrk, oldbrk;
306 struct mm_struct *mm = current->mm;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700307 unsigned long min_brk;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800308 bool populate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 down_write(&mm->mmap_sem);
311
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700312#ifdef CONFIG_COMPAT_BRK
Jiri Kosina5520e892011-01-13 15:47:23 -0800313 /*
314 * CONFIG_COMPAT_BRK can still be overridden by setting
315 * randomize_va_space to 2, which will still cause mm->start_brk
316 * to be arbitrarily shifted
317 */
Jiri Kosina4471a672011-04-14 15:22:09 -0700318 if (current->brk_randomized)
Jiri Kosina5520e892011-01-13 15:47:23 -0800319 min_brk = mm->start_brk;
320 else
321 min_brk = mm->end_data;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700322#else
323 min_brk = mm->start_brk;
324#endif
325 if (brk < min_brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto out;
Ram Gupta1e624192006-04-10 22:52:57 -0700327
328 /*
329 * Check against rlimit here. If this check is done later after the test
330 * of oldbrk with newbrk then it can escape the test and let the data
331 * segment grow beyond its set limit the in case where the limit is
332 * not page aligned -Ram Gupta
333 */
Cyrill Gorcunov8764b332014-10-09 15:27:32 -0700334 if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
335 mm->end_data, mm->start_data))
Ram Gupta1e624192006-04-10 22:52:57 -0700336 goto out;
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 newbrk = PAGE_ALIGN(brk);
339 oldbrk = PAGE_ALIGN(mm->brk);
340 if (oldbrk == newbrk)
341 goto set_brk;
342
343 /* Always allow shrinking brk. */
344 if (brk <= mm->brk) {
345 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
346 goto set_brk;
347 goto out;
348 }
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* Check against existing mmap mappings. */
351 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
352 goto out;
353
354 /* Ok, looks good - let it rip. */
355 if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
356 goto out;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358set_brk:
359 mm->brk = brk;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800360 populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
361 up_write(&mm->mmap_sem);
362 if (populate)
363 mm_populate(oldbrk, newbrk - oldbrk);
364 return brk;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366out:
367 retval = mm->brk;
368 up_write(&mm->mmap_sem);
369 return retval;
370}
371
Michel Lespinassed3737182012-12-11 16:01:38 -0800372static long vma_compute_subtree_gap(struct vm_area_struct *vma)
373{
374 unsigned long max, subtree_gap;
375 max = vma->vm_start;
376 if (vma->vm_prev)
377 max -= vma->vm_prev->vm_end;
378 if (vma->vm_rb.rb_left) {
379 subtree_gap = rb_entry(vma->vm_rb.rb_left,
380 struct vm_area_struct, vm_rb)->rb_subtree_gap;
381 if (subtree_gap > max)
382 max = subtree_gap;
383 }
384 if (vma->vm_rb.rb_right) {
385 subtree_gap = rb_entry(vma->vm_rb.rb_right,
386 struct vm_area_struct, vm_rb)->rb_subtree_gap;
387 if (subtree_gap > max)
388 max = subtree_gap;
389 }
390 return max;
391}
392
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700393#ifdef CONFIG_DEBUG_VM_RB
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800394static int browse_rb(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800396 struct rb_root *root = &mm->mm_rb;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800397 int i = 0, j, bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 struct rb_node *nd, *pn = NULL;
399 unsigned long prev = 0, pend = 0;
400
401 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
402 struct vm_area_struct *vma;
403 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800404 if (vma->vm_start < prev) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700405 pr_emerg("vm_start %lx < prev %lx\n",
406 vma->vm_start, prev);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800407 bug = 1;
408 }
409 if (vma->vm_start < pend) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700410 pr_emerg("vm_start %lx < pend %lx\n",
411 vma->vm_start, pend);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800412 bug = 1;
413 }
414 if (vma->vm_start > vma->vm_end) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700415 pr_emerg("vm_start %lx > vm_end %lx\n",
416 vma->vm_start, vma->vm_end);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800417 bug = 1;
418 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800419 spin_lock(&mm->page_table_lock);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800420 if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700421 pr_emerg("free gap %lx, correct %lx\n",
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800422 vma->rb_subtree_gap,
423 vma_compute_subtree_gap(vma));
424 bug = 1;
425 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800426 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 i++;
428 pn = nd;
David Millerd1af65d2007-02-28 20:13:13 -0800429 prev = vma->vm_start;
430 pend = vma->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432 j = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800433 for (nd = pn; nd; nd = rb_prev(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 j++;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800435 if (i != j) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700436 pr_emerg("backwards %d, forwards %d\n", j, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800437 bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800439 return bug ? -1 : i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Michel Lespinassed3737182012-12-11 16:01:38 -0800442static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
443{
444 struct rb_node *nd;
445
446 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
447 struct vm_area_struct *vma;
448 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Sasha Levin96dad672014-10-09 15:28:39 -0700449 VM_BUG_ON_VMA(vma != ignore &&
450 vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
451 vma);
Michel Lespinassed3737182012-12-11 16:01:38 -0800452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Rashika Kheriaeafd4dc2014-04-03 14:48:03 -0700455static void validate_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 int bug = 0;
458 int i = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800459 unsigned long highest_address = 0;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700460 struct vm_area_struct *vma = mm->mmap;
Andrew Mortonff26f702014-10-09 15:28:19 -0700461
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700462 while (vma) {
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -0800463 struct anon_vma *anon_vma = vma->anon_vma;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700464 struct anon_vma_chain *avc;
Andrew Mortonff26f702014-10-09 15:28:19 -0700465
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -0800466 if (anon_vma) {
467 anon_vma_lock_read(anon_vma);
468 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
469 anon_vma_interval_tree_verify(avc);
470 anon_vma_unlock_read(anon_vma);
471 }
472
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800473 highest_address = vma->vm_end;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700474 vma = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 i++;
476 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800477 if (i != mm->map_count) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700478 pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800479 bug = 1;
480 }
481 if (highest_address != mm->highest_vm_end) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700482 pr_emerg("mm->highest_vm_end %lx, found %lx\n",
Andrew Mortonff26f702014-10-09 15:28:19 -0700483 mm->highest_vm_end, highest_address);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800484 bug = 1;
485 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800486 i = browse_rb(mm);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800487 if (i != mm->map_count) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700488 if (i != -1)
489 pr_emerg("map_count %d rb %d\n", mm->map_count, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800490 bug = 1;
491 }
Sasha Levin96dad672014-10-09 15:28:39 -0700492 VM_BUG_ON_MM(bug, mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494#else
Michel Lespinassed3737182012-12-11 16:01:38 -0800495#define validate_mm_rb(root, ignore) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496#define validate_mm(mm) do { } while (0)
497#endif
498
Michel Lespinassed3737182012-12-11 16:01:38 -0800499RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb,
500 unsigned long, rb_subtree_gap, vma_compute_subtree_gap)
501
502/*
503 * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
504 * vma->vm_prev->vm_end values changed, without modifying the vma's position
505 * in the rbtree.
506 */
507static void vma_gap_update(struct vm_area_struct *vma)
508{
509 /*
510 * As it turns out, RB_DECLARE_CALLBACKS() already created a callback
511 * function that does exacltly what we want.
512 */
513 vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
514}
515
516static inline void vma_rb_insert(struct vm_area_struct *vma,
517 struct rb_root *root)
518{
519 /* All rb_subtree_gap values must be consistent prior to insertion */
520 validate_mm_rb(root, NULL);
521
522 rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
523}
524
525static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
526{
527 /*
528 * All rb_subtree_gap values must be consistent prior to erase,
529 * with the possible exception of the vma being erased.
530 */
531 validate_mm_rb(root, vma);
532
533 /*
534 * Note rb_erase_augmented is a fairly large inline function,
535 * so make sure we instantiate it only once with our desired
536 * augmented rbtree callbacks.
537 */
538 rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
539}
540
Michel Lespinassebf181b92012-10-08 16:31:39 -0700541/*
542 * vma has some anon_vma assigned, and is already inserted on that
543 * anon_vma's interval trees.
544 *
545 * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
546 * vma must be removed from the anon_vma's interval trees using
547 * anon_vma_interval_tree_pre_update_vma().
548 *
549 * After the update, the vma will be reinserted using
550 * anon_vma_interval_tree_post_update_vma().
551 *
552 * The entire update must be protected by exclusive mmap_sem and by
553 * the root anon_vma's mutex.
554 */
555static inline void
556anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
557{
558 struct anon_vma_chain *avc;
559
560 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
561 anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
562}
563
564static inline void
565anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
566{
567 struct anon_vma_chain *avc;
568
569 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
570 anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
571}
572
Hugh Dickins6597d782012-10-08 16:29:07 -0700573static int find_vma_links(struct mm_struct *mm, unsigned long addr,
574 unsigned long end, struct vm_area_struct **pprev,
575 struct rb_node ***rb_link, struct rb_node **rb_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Hugh Dickins6597d782012-10-08 16:29:07 -0700577 struct rb_node **__rb_link, *__rb_parent, *rb_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 __rb_link = &mm->mm_rb.rb_node;
580 rb_prev = __rb_parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 while (*__rb_link) {
583 struct vm_area_struct *vma_tmp;
584
585 __rb_parent = *__rb_link;
586 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
587
588 if (vma_tmp->vm_end > addr) {
Hugh Dickins6597d782012-10-08 16:29:07 -0700589 /* Fail if an existing vma overlaps the area */
590 if (vma_tmp->vm_start < end)
591 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 __rb_link = &__rb_parent->rb_left;
593 } else {
594 rb_prev = __rb_parent;
595 __rb_link = &__rb_parent->rb_right;
596 }
597 }
598
599 *pprev = NULL;
600 if (rb_prev)
601 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
602 *rb_link = __rb_link;
603 *rb_parent = __rb_parent;
Hugh Dickins6597d782012-10-08 16:29:07 -0700604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Cyril Hrubise8420a82013-04-29 15:08:33 -0700607static unsigned long count_vma_pages_range(struct mm_struct *mm,
608 unsigned long addr, unsigned long end)
609{
610 unsigned long nr_pages = 0;
611 struct vm_area_struct *vma;
612
613 /* Find first overlaping mapping */
614 vma = find_vma_intersection(mm, addr, end);
615 if (!vma)
616 return 0;
617
618 nr_pages = (min(end, vma->vm_end) -
619 max(addr, vma->vm_start)) >> PAGE_SHIFT;
620
621 /* Iterate over the rest of the overlaps */
622 for (vma = vma->vm_next; vma; vma = vma->vm_next) {
623 unsigned long overlap_len;
624
625 if (vma->vm_start > end)
626 break;
627
628 overlap_len = min(end, vma->vm_end) - vma->vm_start;
629 nr_pages += overlap_len >> PAGE_SHIFT;
630 }
631
632 return nr_pages;
633}
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
636 struct rb_node **rb_link, struct rb_node *rb_parent)
637{
Michel Lespinassed3737182012-12-11 16:01:38 -0800638 /* Update tracking information for the gap following the new vma. */
639 if (vma->vm_next)
640 vma_gap_update(vma->vm_next);
641 else
642 mm->highest_vm_end = vma->vm_end;
643
644 /*
645 * vma->vm_prev wasn't known when we followed the rbtree to find the
646 * correct insertion point for that vma. As a result, we could not
647 * update the vma vm_rb parents rb_subtree_gap values on the way down.
648 * So, we first insert the vma with a zero rb_subtree_gap value
649 * (to be consistent with what we did on the way down), and then
650 * immediately update the gap to the correct value. Finally we
651 * rebalance the rbtree after all augmented values have been set.
652 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
Michel Lespinassed3737182012-12-11 16:01:38 -0800654 vma->rb_subtree_gap = 0;
655 vma_gap_update(vma);
656 vma_rb_insert(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Denys Vlasenkocb8f4882008-10-18 20:27:01 -0700659static void __vma_link_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
ZhenwenXu48aae422009-01-06 14:40:21 -0800661 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 file = vma->vm_file;
664 if (file) {
665 struct address_space *mapping = file->f_mapping;
666
667 if (vma->vm_flags & VM_DENYWRITE)
Al Viro496ad9a2013-01-23 17:07:38 -0500668 atomic_dec(&file_inode(file)->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (vma->vm_flags & VM_SHARED)
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700670 atomic_inc(&mapping->i_mmap_writable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 flush_dcache_mmap_lock(mapping);
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800673 vma_interval_tree_insert(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 flush_dcache_mmap_unlock(mapping);
675 }
676}
677
678static void
679__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
680 struct vm_area_struct *prev, struct rb_node **rb_link,
681 struct rb_node *rb_parent)
682{
683 __vma_link_list(mm, vma, prev, rb_parent);
684 __vma_link_rb(mm, vma, rb_link, rb_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
688 struct vm_area_struct *prev, struct rb_node **rb_link,
689 struct rb_node *rb_parent)
690{
691 struct address_space *mapping = NULL;
692
Huang Shijie64ac4942014-06-04 16:07:33 -0700693 if (vma->vm_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 mapping = vma->vm_file->f_mapping;
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800695 i_mmap_lock_write(mapping);
Huang Shijie64ac4942014-06-04 16:07:33 -0700696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 __vma_link(mm, vma, prev, rb_link, rb_parent);
699 __vma_link_file(vma);
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (mapping)
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800702 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 mm->map_count++;
705 validate_mm(mm);
706}
707
708/*
Kautuk Consul88f6b4c2012-03-21 16:34:16 -0700709 * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700710 * mm's list and rbtree. It has already been inserted into the interval tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 */
ZhenwenXu48aae422009-01-06 14:40:21 -0800712static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Hugh Dickins6597d782012-10-08 16:29:07 -0700714 struct vm_area_struct *prev;
ZhenwenXu48aae422009-01-06 14:40:21 -0800715 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Hugh Dickins6597d782012-10-08 16:29:07 -0700717 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
718 &prev, &rb_link, &rb_parent))
719 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 __vma_link(mm, vma, prev, rb_link, rb_parent);
721 mm->map_count++;
722}
723
724static inline void
725__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
726 struct vm_area_struct *prev)
727{
Michel Lespinassed3737182012-12-11 16:01:38 -0800728 struct vm_area_struct *next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700729
Michel Lespinassed3737182012-12-11 16:01:38 -0800730 vma_rb_erase(vma, &mm->mm_rb);
731 prev->vm_next = next = vma->vm_next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700732 if (next)
733 next->vm_prev = prev;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700734
735 /* Kill the cache */
736 vmacache_invalidate(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739/*
740 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
741 * is already present in an i_mmap tree without adjusting the tree.
742 * The following helper function should be used when such adjustments
743 * are necessary. The "insert" vma (if any) is to be inserted
744 * before we drop the necessary locks.
745 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800746int vma_adjust(struct vm_area_struct *vma, unsigned long start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
748{
749 struct mm_struct *mm = vma->vm_mm;
750 struct vm_area_struct *next = vma->vm_next;
751 struct vm_area_struct *importer = NULL;
752 struct address_space *mapping = NULL;
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700753 struct rb_root *root = NULL;
Rik van Riel012f18002010-08-09 17:18:40 -0700754 struct anon_vma *anon_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 struct file *file = vma->vm_file;
Michel Lespinassed3737182012-12-11 16:01:38 -0800756 bool start_changed = false, end_changed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 long adjust_next = 0;
758 int remove_next = 0;
759
760 if (next && !insert) {
Linus Torvalds287d97a2010-04-10 15:22:30 -0700761 struct vm_area_struct *exporter = NULL;
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (end >= next->vm_end) {
764 /*
765 * vma expands, overlapping all the next, and
766 * perhaps the one after too (mprotect case 6).
767 */
768again: remove_next = 1 + (end > next->vm_end);
769 end = next->vm_end;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700770 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 importer = vma;
772 } else if (end > next->vm_start) {
773 /*
774 * vma expands, overlapping part of the next:
775 * mprotect case 5 shifting the boundary up.
776 */
777 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700778 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 importer = vma;
780 } else if (end < vma->vm_end) {
781 /*
782 * vma shrinks, and !insert tells it's not
783 * split_vma inserting another: so it must be
784 * mprotect case 4 shifting the boundary down.
785 */
vishnu.pscc71aba2014-10-09 15:26:29 -0700786 adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT);
Linus Torvalds287d97a2010-04-10 15:22:30 -0700787 exporter = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 importer = next;
789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Rik van Riel5beb4932010-03-05 13:42:07 -0800791 /*
792 * Easily overlooked: when mprotect shifts the boundary,
793 * make sure the expanding vma has anon_vma set if the
794 * shrinking vma had, to cover any anon pages imported.
795 */
Linus Torvalds287d97a2010-04-10 15:22:30 -0700796 if (exporter && exporter->anon_vma && !importer->anon_vma) {
Daniel Forrestc4ea95d2014-12-02 15:59:42 -0800797 int error;
798
Linus Torvalds287d97a2010-04-10 15:22:30 -0700799 importer->anon_vma = exporter->anon_vma;
Konstantin Khlebnikovb800c912015-01-11 16:54:06 +0300800 error = anon_vma_clone(importer, exporter);
Leon Yu3fe89b32015-03-25 15:55:11 -0700801 if (error)
Konstantin Khlebnikovb800c912015-01-11 16:54:06 +0300802 return error;
Rik van Riel5beb4932010-03-05 13:42:07 -0800803 }
804 }
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (file) {
807 mapping = file->f_mapping;
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800808 root = &mapping->i_mmap;
809 uprobe_munmap(vma, vma->vm_start, vma->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530810
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800811 if (adjust_next)
812 uprobe_munmap(next, next->vm_start, next->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530813
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800814 i_mmap_lock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (insert) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700817 * Put into interval tree now, so instantiated pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * are visible to arm/parisc __flush_dcache_page
819 * throughout; but we cannot insert into address
820 * space until vma start or end is updated.
821 */
822 __vma_link_file(insert);
823 }
824 }
825
Andrea Arcangeli94fcc582011-01-13 15:47:08 -0800826 vma_adjust_trans_huge(vma, start, end, adjust_next);
827
Michel Lespinassebf181b92012-10-08 16:31:39 -0700828 anon_vma = vma->anon_vma;
829 if (!anon_vma && adjust_next)
830 anon_vma = next->anon_vma;
831 if (anon_vma) {
Sasha Levin81d1b092014-10-09 15:28:10 -0700832 VM_BUG_ON_VMA(adjust_next && next->anon_vma &&
833 anon_vma != next->anon_vma, next);
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000834 anon_vma_lock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700835 anon_vma_interval_tree_pre_update_vma(vma);
836 if (adjust_next)
837 anon_vma_interval_tree_pre_update_vma(next);
838 }
Rik van Riel012f18002010-08-09 17:18:40 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (root) {
841 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700842 vma_interval_tree_remove(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700844 vma_interval_tree_remove(next, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846
Michel Lespinassed3737182012-12-11 16:01:38 -0800847 if (start != vma->vm_start) {
848 vma->vm_start = start;
849 start_changed = true;
850 }
851 if (end != vma->vm_end) {
852 vma->vm_end = end;
853 end_changed = true;
854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 vma->vm_pgoff = pgoff;
856 if (adjust_next) {
857 next->vm_start += adjust_next << PAGE_SHIFT;
858 next->vm_pgoff += adjust_next;
859 }
860
861 if (root) {
862 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700863 vma_interval_tree_insert(next, root);
864 vma_interval_tree_insert(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 flush_dcache_mmap_unlock(mapping);
866 }
867
868 if (remove_next) {
869 /*
870 * vma_merge has merged next into vma, and needs
871 * us to remove next before dropping the locks.
872 */
873 __vma_unlink(mm, next, vma);
874 if (file)
875 __remove_shared_vm_struct(next, file, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 } else if (insert) {
877 /*
878 * split_vma has split insert from vma, and needs
879 * us to insert it before dropping the locks
880 * (it may either follow vma or precede it).
881 */
882 __insert_vm_struct(mm, insert);
Michel Lespinassed3737182012-12-11 16:01:38 -0800883 } else {
884 if (start_changed)
885 vma_gap_update(vma);
886 if (end_changed) {
887 if (!next)
888 mm->highest_vm_end = end;
889 else if (!adjust_next)
890 vma_gap_update(next);
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
Michel Lespinassebf181b92012-10-08 16:31:39 -0700894 if (anon_vma) {
895 anon_vma_interval_tree_post_update_vma(vma);
896 if (adjust_next)
897 anon_vma_interval_tree_post_update_vma(next);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -0800898 anon_vma_unlock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (mapping)
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800901 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530903 if (root) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100904 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530905
906 if (adjust_next)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100907 uprobe_mmap(next);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530908 }
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (remove_next) {
Matt Helsley925d1c42008-04-29 01:01:36 -0700911 if (file) {
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530912 uprobe_munmap(next, next->vm_start, next->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 fput(file);
Matt Helsley925d1c42008-04-29 01:01:36 -0700914 }
Rik van Riel5beb4932010-03-05 13:42:07 -0800915 if (next->anon_vma)
916 anon_vma_merge(vma, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 mm->map_count--;
Oleg Nesterov3964acd2013-07-31 13:53:28 -0700918 mpol_put(vma_policy(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 kmem_cache_free(vm_area_cachep, next);
920 /*
921 * In mprotect's case 6 (see comments on vma_merge),
922 * we must remove another next too. It would clutter
923 * up the code too much to do both in one go.
924 */
Michel Lespinassed3737182012-12-11 16:01:38 -0800925 next = vma->vm_next;
926 if (remove_next == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 goto again;
Michel Lespinassed3737182012-12-11 16:01:38 -0800928 else if (next)
929 vma_gap_update(next);
930 else
931 mm->highest_vm_end = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530933 if (insert && file)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100934 uprobe_mmap(insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 validate_mm(mm);
Rik van Riel5beb4932010-03-05 13:42:07 -0800937
938 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
941/*
942 * If the vma has a ->close operation then the driver probably needs to release
943 * per-vma resources, so we don't attempt to merge those.
944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945static inline int is_mergeable_vma(struct vm_area_struct *vma,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700946 struct file *file, unsigned long vm_flags,
947 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Cyrill Gorcunov34228d42014-01-23 15:53:42 -0800949 /*
950 * VM_SOFTDIRTY should not prevent from VMA merging, if we
951 * match the flags but dirty bit -- the caller should mark
952 * merged VMA as dirty. If dirty bit won't be excluded from
953 * comparison, we increase pressue on the memory system forcing
954 * the kernel to generate new VMAs when old one could be
955 * extended instead.
956 */
957 if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return 0;
959 if (vma->vm_file != file)
960 return 0;
961 if (vma->vm_ops && vma->vm_ops->close)
962 return 0;
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700963 if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
964 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 1;
966}
967
968static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
Shaohua Li965f55d2011-05-24 17:11:20 -0700969 struct anon_vma *anon_vma2,
970 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Shaohua Li965f55d2011-05-24 17:11:20 -0700972 /*
973 * The list_is_singular() test is to avoid merging VMA cloned from
974 * parents. This can improve scalability caused by anon_vma lock.
975 */
976 if ((!anon_vma1 || !anon_vma2) && (!vma ||
977 list_is_singular(&vma->anon_vma_chain)))
978 return 1;
979 return anon_vma1 == anon_vma2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
982/*
983 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
984 * in front of (at a lower virtual address and file offset than) the vma.
985 *
986 * We cannot merge two vmas if they have differently assigned (non-NULL)
987 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
988 *
989 * We don't check here for the merged mmap wrapping around the end of pagecache
990 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
991 * wrap, nor mmaps which cover the final page at index -1UL.
992 */
993static int
994can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700995 struct anon_vma *anon_vma, struct file *file,
996 pgoff_t vm_pgoff,
997 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700999 if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
Shaohua Li965f55d2011-05-24 17:11:20 -07001000 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (vma->vm_pgoff == vm_pgoff)
1002 return 1;
1003 }
1004 return 0;
1005}
1006
1007/*
1008 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
1009 * beyond (at a higher virtual address and file offset than) the vma.
1010 *
1011 * We cannot merge two vmas if they have differently assigned (non-NULL)
1012 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
1013 */
1014static int
1015can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001016 struct anon_vma *anon_vma, struct file *file,
1017 pgoff_t vm_pgoff,
1018 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001020 if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
Shaohua Li965f55d2011-05-24 17:11:20 -07001021 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 pgoff_t vm_pglen;
Libind6e93212013-07-03 15:01:26 -07001023 vm_pglen = vma_pages(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
1025 return 1;
1026 }
1027 return 0;
1028}
1029
1030/*
1031 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
1032 * whether that can be merged with its predecessor or its successor.
1033 * Or both (it neatly fills a hole).
1034 *
1035 * In most cases - when called for mmap, brk or mremap - [addr,end) is
1036 * certain not to be mapped by the time vma_merge is called; but when
1037 * called for mprotect, it is certain to be already mapped (either at
1038 * an offset within prev, or at the start of next), and the flags of
1039 * this area are about to be changed to vm_flags - and the no-change
1040 * case has already been eliminated.
1041 *
1042 * The following mprotect cases have to be considered, where AAAA is
1043 * the area passed down from mprotect_fixup, never extending beyond one
1044 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
1045 *
1046 * AAAA AAAA AAAA AAAA
1047 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
1048 * cannot merge might become might become might become
1049 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
1050 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
1051 * mremap move: PPPPNNNNNNNN 8
1052 * AAAA
1053 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
1054 * might become case 1 below case 2 below case 3 below
1055 *
1056 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
1057 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
1058 */
1059struct vm_area_struct *vma_merge(struct mm_struct *mm,
1060 struct vm_area_struct *prev, unsigned long addr,
1061 unsigned long end, unsigned long vm_flags,
vishnu.pscc71aba2014-10-09 15:26:29 -07001062 struct anon_vma *anon_vma, struct file *file,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001063 pgoff_t pgoff, struct mempolicy *policy,
1064 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
1067 struct vm_area_struct *area, *next;
Rik van Riel5beb4932010-03-05 13:42:07 -08001068 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /*
1071 * We later require that vma->vm_flags == vm_flags,
1072 * so this tests vma->vm_flags & VM_SPECIAL, too.
1073 */
1074 if (vm_flags & VM_SPECIAL)
1075 return NULL;
1076
1077 if (prev)
1078 next = prev->vm_next;
1079 else
1080 next = mm->mmap;
1081 area = next;
1082 if (next && next->vm_end == end) /* cases 6, 7, 8 */
1083 next = next->vm_next;
1084
1085 /*
1086 * Can it merge with the predecessor?
1087 */
1088 if (prev && prev->vm_end == addr &&
vishnu.pscc71aba2014-10-09 15:26:29 -07001089 mpol_equal(vma_policy(prev), policy) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 can_vma_merge_after(prev, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001091 anon_vma, file, pgoff,
1092 vm_userfaultfd_ctx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /*
1094 * OK, it can. Can we now merge in the successor as well?
1095 */
1096 if (next && end == next->vm_start &&
1097 mpol_equal(policy, vma_policy(next)) &&
1098 can_vma_merge_before(next, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001099 anon_vma, file,
1100 pgoff+pglen,
1101 vm_userfaultfd_ctx) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 is_mergeable_anon_vma(prev->anon_vma,
Shaohua Li965f55d2011-05-24 17:11:20 -07001103 next->anon_vma, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /* cases 1, 6 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001105 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 next->vm_end, prev->vm_pgoff, NULL);
1107 } else /* cases 2, 5, 7 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001108 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 end, prev->vm_pgoff, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -08001110 if (err)
1111 return NULL;
David Rientjes6d50e602014-10-29 14:50:31 -07001112 khugepaged_enter_vma_merge(prev, vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return prev;
1114 }
1115
1116 /*
1117 * Can this new request be merged in front of next?
1118 */
1119 if (next && end == next->vm_start &&
vishnu.pscc71aba2014-10-09 15:26:29 -07001120 mpol_equal(policy, vma_policy(next)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 can_vma_merge_before(next, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001122 anon_vma, file, pgoff+pglen,
1123 vm_userfaultfd_ctx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (prev && addr < prev->vm_end) /* case 4 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001125 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 addr, prev->vm_pgoff, NULL);
1127 else /* cases 3, 8 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001128 err = vma_adjust(area, addr, next->vm_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 next->vm_pgoff - pglen, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -08001130 if (err)
1131 return NULL;
David Rientjes6d50e602014-10-29 14:50:31 -07001132 khugepaged_enter_vma_merge(area, vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return area;
1134 }
1135
1136 return NULL;
1137}
1138
1139/*
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001140 * Rough compatbility check to quickly see if it's even worth looking
1141 * at sharing an anon_vma.
1142 *
1143 * They need to have the same vm_file, and the flags can only differ
1144 * in things that mprotect may change.
1145 *
1146 * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1147 * we can merge the two vma's. For example, we refuse to merge a vma if
1148 * there is a vm_ops->close() function, because that indicates that the
1149 * driver is doing some kind of reference counting. But that doesn't
1150 * really matter for the anon_vma sharing case.
1151 */
1152static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1153{
1154 return a->vm_end == b->vm_start &&
1155 mpol_equal(vma_policy(a), vma_policy(b)) &&
1156 a->vm_file == b->vm_file &&
Cyrill Gorcunov34228d42014-01-23 15:53:42 -08001157 !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) &&
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001158 b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1159}
1160
1161/*
1162 * Do some basic sanity checking to see if we can re-use the anon_vma
1163 * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1164 * the same as 'old', the other will be the new one that is trying
1165 * to share the anon_vma.
1166 *
1167 * NOTE! This runs with mm_sem held for reading, so it is possible that
1168 * the anon_vma of 'old' is concurrently in the process of being set up
1169 * by another page fault trying to merge _that_. But that's ok: if it
1170 * is being set up, that automatically means that it will be a singleton
1171 * acceptable for merging, so we can do all of this optimistically. But
Jason Low4db0c3c2015-04-15 16:14:08 -07001172 * we do that READ_ONCE() to make sure that we never re-load the pointer.
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001173 *
1174 * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1175 * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1176 * is to return an anon_vma that is "complex" due to having gone through
1177 * a fork).
1178 *
1179 * We also make sure that the two vma's are compatible (adjacent,
1180 * and with the same memory policies). That's all stable, even with just
1181 * a read lock on the mm_sem.
1182 */
1183static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1184{
1185 if (anon_vma_compatible(a, b)) {
Jason Low4db0c3c2015-04-15 16:14:08 -07001186 struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001187
1188 if (anon_vma && list_is_singular(&old->anon_vma_chain))
1189 return anon_vma;
1190 }
1191 return NULL;
1192}
1193
1194/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
1196 * neighbouring vmas for a suitable anon_vma, before it goes off
1197 * to allocate a new anon_vma. It checks because a repetitive
1198 * sequence of mprotects and faults may otherwise lead to distinct
1199 * anon_vmas being allocated, preventing vma merge in subsequent
1200 * mprotect.
1201 */
1202struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
1203{
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001204 struct anon_vma *anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct vm_area_struct *near;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 near = vma->vm_next;
1208 if (!near)
1209 goto try_prev;
1210
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001211 anon_vma = reusable_anon_vma(near, vma, near);
1212 if (anon_vma)
1213 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214try_prev:
Linus Torvalds9be34c92011-06-16 00:35:09 -07001215 near = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (!near)
1217 goto none;
1218
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001219 anon_vma = reusable_anon_vma(near, near, vma);
1220 if (anon_vma)
1221 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222none:
1223 /*
1224 * There's no absolute need to look only at touching neighbours:
1225 * we could search further afield for "compatible" anon_vmas.
1226 * But it would probably just be a waste of time searching,
1227 * or lead to too many vmas hanging off the same anon_vma.
1228 * We're trying to allow mprotect remerging later on,
1229 * not trying to minimize memory used for anon_vmas.
1230 */
1231 return NULL;
1232}
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234/*
Al Viro40401532012-02-13 03:58:52 +00001235 * If a hint addr is less than mmap_min_addr change hint to be as
1236 * low as possible but still greater than mmap_min_addr
1237 */
1238static inline unsigned long round_hint_to_min(unsigned long hint)
1239{
1240 hint &= PAGE_MASK;
1241 if (((void *)hint != NULL) &&
1242 (hint < mmap_min_addr))
1243 return PAGE_ALIGN(mmap_min_addr);
1244 return hint;
1245}
1246
Davidlohr Bueso363ee172014-01-21 15:49:15 -08001247static inline int mlock_future_check(struct mm_struct *mm,
1248 unsigned long flags,
1249 unsigned long len)
1250{
1251 unsigned long locked, lock_limit;
1252
1253 /* mlock MCL_FUTURE? */
1254 if (flags & VM_LOCKED) {
1255 locked = len >> PAGE_SHIFT;
1256 locked += mm->locked_vm;
1257 lock_limit = rlimit(RLIMIT_MEMLOCK);
1258 lock_limit >>= PAGE_SHIFT;
1259 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1260 return -EAGAIN;
1261 }
1262 return 0;
1263}
1264
Al Viro40401532012-02-13 03:58:52 +00001265/*
Jianjun Kong27f5de72009-09-17 19:26:26 -07001266 * The caller must hold down_write(&current->mm->mmap_sem).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001268unsigned long do_mmap(struct file *file, unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 unsigned long len, unsigned long prot,
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001270 unsigned long flags, vm_flags_t vm_flags,
1271 unsigned long pgoff, unsigned long *populate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
vishnu.pscc71aba2014-10-09 15:26:29 -07001273 struct mm_struct *mm = current->mm;
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001274 int pkey = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Michel Lespinasse41badc12013-02-22 16:32:47 -08001276 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001277
Piotr Kwapulinskie37609b2015-06-24 16:58:39 -07001278 if (!len)
1279 return -EINVAL;
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 /*
1282 * Does the application expect PROT_READ to imply PROT_EXEC?
1283 *
1284 * (the exception is when the underlying filesystem is noexec
1285 * mounted, in which case we dont add PROT_EXEC.)
1286 */
1287 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Eric W. Biederman90f85722015-06-29 14:42:03 -05001288 if (!(file && path_noexec(&file->f_path)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 prot |= PROT_EXEC;
1290
Eric Paris7cd94142007-11-26 18:47:40 -05001291 if (!(flags & MAP_FIXED))
1292 addr = round_hint_to_min(addr);
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /* Careful about overflows.. */
1295 len = PAGE_ALIGN(len);
Al Viro9206de92009-12-03 15:23:11 -05001296 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return -ENOMEM;
1298
1299 /* offset overflow? */
1300 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
vishnu.pscc71aba2014-10-09 15:26:29 -07001301 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 /* Too many mappings? */
1304 if (mm->map_count > sysctl_max_map_count)
1305 return -ENOMEM;
1306
1307 /* Obtain the address to map to. we verify (or select) it and ensure
1308 * that it represents a valid section of the address space.
1309 */
1310 addr = get_unmapped_area(file, addr, len, pgoff, flags);
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001311 if (offset_in_page(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return addr;
1313
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001314 if (prot == PROT_EXEC) {
1315 pkey = execute_only_pkey(mm);
1316 if (pkey < 0)
1317 pkey = 0;
1318 }
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 /* Do simple checking here so the lower-level routines won't have
1321 * to. we assume access permissions have been handled by the open
1322 * of the memory object, so we don't do any here.
1323 */
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001324 vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1326
Huang Shijiecdf7b342009-09-21 17:03:36 -07001327 if (flags & MAP_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (!can_do_mlock())
1329 return -EPERM;
Rik van Rielba470de2008-10-18 20:26:50 -07001330
Davidlohr Bueso363ee172014-01-21 15:49:15 -08001331 if (mlock_future_check(mm, vm_flags, len))
1332 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (file) {
Oleg Nesterov077bf222013-09-11 14:20:19 -07001335 struct inode *inode = file_inode(file);
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 switch (flags & MAP_TYPE) {
1338 case MAP_SHARED:
1339 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
1340 return -EACCES;
1341
1342 /*
1343 * Make sure we don't allow writing to an append-only
1344 * file..
1345 */
1346 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
1347 return -EACCES;
1348
1349 /*
1350 * Make sure there are no mandatory locks on the file.
1351 */
Jeff Laytond7a06982014-03-10 09:54:15 -04001352 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return -EAGAIN;
1354
1355 vm_flags |= VM_SHARED | VM_MAYSHARE;
1356 if (!(file->f_mode & FMODE_WRITE))
1357 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1358
1359 /* fall through */
1360 case MAP_PRIVATE:
1361 if (!(file->f_mode & FMODE_READ))
1362 return -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -05001363 if (path_noexec(&file->f_path)) {
Linus Torvalds80c56062006-10-15 14:09:55 -07001364 if (vm_flags & VM_EXEC)
1365 return -EPERM;
1366 vm_flags &= ~VM_MAYEXEC;
1367 }
Linus Torvalds80c56062006-10-15 14:09:55 -07001368
Al Viro72c2d532013-09-22 16:27:52 -04001369 if (!file->f_op->mmap)
Linus Torvalds80c56062006-10-15 14:09:55 -07001370 return -ENODEV;
Oleg Nesterovb2c56e42013-09-11 14:20:18 -07001371 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1372 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 break;
1374
1375 default:
1376 return -EINVAL;
1377 }
1378 } else {
1379 switch (flags & MAP_TYPE) {
1380 case MAP_SHARED:
Oleg Nesterovb2c56e42013-09-11 14:20:18 -07001381 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1382 return -EINVAL;
Tejun Heoce363942008-09-03 16:09:47 +02001383 /*
1384 * Ignore pgoff.
1385 */
1386 pgoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 vm_flags |= VM_SHARED | VM_MAYSHARE;
1388 break;
1389 case MAP_PRIVATE:
1390 /*
1391 * Set pgoff according to addr for anon_vma.
1392 */
1393 pgoff = addr >> PAGE_SHIFT;
1394 break;
1395 default:
1396 return -EINVAL;
1397 }
1398 }
1399
Michel Lespinassec22c0d62013-02-22 16:32:43 -08001400 /*
1401 * Set 'VM_NORESERVE' if we should not account for the
1402 * memory use of this mapping.
1403 */
1404 if (flags & MAP_NORESERVE) {
1405 /* We honor MAP_NORESERVE if allowed to overcommit */
1406 if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1407 vm_flags |= VM_NORESERVE;
1408
1409 /* hugetlb applies strict overcommit unless MAP_NORESERVE */
1410 if (file && is_file_hugepages(file))
1411 vm_flags |= VM_NORESERVE;
1412 }
1413
1414 addr = mmap_region(file, addr, len, vm_flags, pgoff);
Michel Lespinasse09a9f1d2013-03-28 16:26:23 -07001415 if (!IS_ERR_VALUE(addr) &&
1416 ((vm_flags & VM_LOCKED) ||
1417 (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
Michel Lespinasse41badc12013-02-22 16:32:47 -08001418 *populate = len;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001419 return addr;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001420}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001421
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001422SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1423 unsigned long, prot, unsigned long, flags,
1424 unsigned long, fd, unsigned long, pgoff)
1425{
1426 struct file *file = NULL;
Chen Gang1e3ee142015-11-05 18:48:35 -08001427 unsigned long retval;
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001428
1429 if (!(flags & MAP_ANONYMOUS)) {
Al Viro120a7952010-10-30 02:54:44 -04001430 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001431 file = fget(fd);
1432 if (!file)
Chen Gang1e3ee142015-11-05 18:48:35 -08001433 return -EBADF;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001434 if (is_file_hugepages(file))
1435 len = ALIGN(len, huge_page_size(hstate_file(file)));
Jörn Engel493af572013-07-08 16:00:26 -07001436 retval = -EINVAL;
1437 if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file)))
1438 goto out_fput;
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001439 } else if (flags & MAP_HUGETLB) {
1440 struct user_struct *user = NULL;
Andrew Mortonc103a4d2013-07-08 16:01:08 -07001441 struct hstate *hs;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001442
Andrew Mortonc103a4d2013-07-08 16:01:08 -07001443 hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK);
Li Zefan091d0d52013-05-09 15:08:15 +08001444 if (!hs)
1445 return -EINVAL;
1446
1447 len = ALIGN(len, huge_page_size(hs));
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001448 /*
1449 * VM_NORESERVE is used because the reservations will be
1450 * taken when vm_ops->mmap() is called
1451 * A dummy user value is used because we are not locking
1452 * memory so no accounting is necessary
1453 */
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001454 file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
Andi Kleen42d73952012-12-11 16:01:34 -08001455 VM_NORESERVE,
1456 &user, HUGETLB_ANONHUGE_INODE,
1457 (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001458 if (IS_ERR(file))
1459 return PTR_ERR(file);
1460 }
1461
1462 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1463
Al Viroeb36c582012-05-30 20:17:35 -04001464 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Jörn Engel493af572013-07-08 16:00:26 -07001465out_fput:
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001466 if (file)
1467 fput(file);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001468 return retval;
1469}
1470
Christoph Hellwiga4679372010-03-10 15:21:15 -08001471#ifdef __ARCH_WANT_SYS_OLD_MMAP
1472struct mmap_arg_struct {
1473 unsigned long addr;
1474 unsigned long len;
1475 unsigned long prot;
1476 unsigned long flags;
1477 unsigned long fd;
1478 unsigned long offset;
1479};
1480
1481SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1482{
1483 struct mmap_arg_struct a;
1484
1485 if (copy_from_user(&a, arg, sizeof(a)))
1486 return -EFAULT;
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001487 if (offset_in_page(a.offset))
Christoph Hellwiga4679372010-03-10 15:21:15 -08001488 return -EINVAL;
1489
1490 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1491 a.offset >> PAGE_SHIFT);
1492}
1493#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1494
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001495/*
1496 * Some shared mappigns will want the pages marked read-only
1497 * to track write events. If so, we'll downgrade vm_page_prot
1498 * to the private version (using protection_map[] without the
1499 * VM_SHARED bit).
1500 */
1501int vma_wants_writenotify(struct vm_area_struct *vma)
1502{
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001503 vm_flags_t vm_flags = vma->vm_flags;
Kirill A. Shutemov8a044462015-09-22 14:59:12 -07001504 const struct vm_operations_struct *vm_ops = vma->vm_ops;
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001505
1506 /* If it was private or non-writable, the write bit is already clear */
1507 if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
1508 return 0;
1509
1510 /* The backer wishes to know when pages are first written to? */
Kirill A. Shutemov8a044462015-09-22 14:59:12 -07001511 if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001512 return 1;
1513
Peter Feiner64e45502014-10-13 15:55:46 -07001514 /* The open routine did something to the protections that pgprot_modify
1515 * won't preserve? */
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001516 if (pgprot_val(vma->vm_page_prot) !=
Peter Feiner64e45502014-10-13 15:55:46 -07001517 pgprot_val(vm_pgprot_modify(vma->vm_page_prot, vm_flags)))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001518 return 0;
1519
Peter Feiner64e45502014-10-13 15:55:46 -07001520 /* Do we need to track softdirty? */
1521 if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY))
1522 return 1;
1523
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001524 /* Specialty mapping? */
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001525 if (vm_flags & VM_PFNMAP)
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001526 return 0;
1527
1528 /* Can the mapping track the dirty pages? */
1529 return vma->vm_file && vma->vm_file->f_mapping &&
1530 mapping_cap_account_dirty(vma->vm_file->f_mapping);
1531}
1532
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001533/*
1534 * We account for memory if it's a private writeable mapping,
Mel Gorman5a6fe122009-02-10 14:02:27 +00001535 * not hugepages and VM_NORESERVE wasn't set.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001536 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001537static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001538{
Mel Gorman5a6fe122009-02-10 14:02:27 +00001539 /*
1540 * hugetlb has its own accounting separate from the core VM
1541 * VM_HUGETLB may not be set yet so we cannot check for that flag.
1542 */
1543 if (file && is_file_hugepages(file))
1544 return 0;
1545
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001546 return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1547}
1548
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001549unsigned long mmap_region(struct file *file, unsigned long addr,
Michel Lespinassec22c0d62013-02-22 16:32:43 -08001550 unsigned long len, vm_flags_t vm_flags, unsigned long pgoff)
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001551{
1552 struct mm_struct *mm = current->mm;
1553 struct vm_area_struct *vma, *prev;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001554 int error;
1555 struct rb_node **rb_link, *rb_parent;
1556 unsigned long charged = 0;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001557
Cyril Hrubise8420a82013-04-29 15:08:33 -07001558 /* Check against address space limit. */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001559 if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
Cyril Hrubise8420a82013-04-29 15:08:33 -07001560 unsigned long nr_pages;
1561
1562 /*
1563 * MAP_FIXED may remove pages of mappings that intersects with
1564 * requested mapping. Account for the pages it would unmap.
1565 */
Cyril Hrubise8420a82013-04-29 15:08:33 -07001566 nr_pages = count_vma_pages_range(mm, addr, addr + len);
1567
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001568 if (!may_expand_vm(mm, vm_flags,
1569 (len >> PAGE_SHIFT) - nr_pages))
Cyril Hrubise8420a82013-04-29 15:08:33 -07001570 return -ENOMEM;
1571 }
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /* Clear old maps */
Rasmus Villemoes9fcd1452015-04-15 16:14:32 -07001574 while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
1575 &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (do_munmap(mm, addr, len))
1577 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001580 /*
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001581 * Private writable mapping: check memory availability
1582 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001583 if (accountable_mapping(file, vm_flags)) {
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001584 charged = len >> PAGE_SHIFT;
Al Viro191c5422012-02-13 03:58:52 +00001585 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001586 return -ENOMEM;
1587 vm_flags |= VM_ACCOUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589
1590 /*
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001591 * Can we just expand an old mapping?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 */
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001593 vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
1594 NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX);
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001595 if (vma)
1596 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 /*
1599 * Determine the object being mapped and call the appropriate
1600 * specific mapper. the address has already been validated, but
1601 * not unmapped, but the maps are removed from the list.
1602 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001603 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (!vma) {
1605 error = -ENOMEM;
1606 goto unacct_error;
1607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 vma->vm_mm = mm;
1610 vma->vm_start = addr;
1611 vma->vm_end = addr + len;
1612 vma->vm_flags = vm_flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07001613 vma->vm_page_prot = vm_get_page_prot(vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 vma->vm_pgoff = pgoff;
Rik van Riel5beb4932010-03-05 13:42:07 -08001615 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (vm_flags & VM_DENYWRITE) {
1619 error = deny_write_access(file);
1620 if (error)
1621 goto free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001623 if (vm_flags & VM_SHARED) {
1624 error = mapping_map_writable(file->f_mapping);
1625 if (error)
1626 goto allow_write_and_free_vma;
1627 }
1628
1629 /* ->mmap() can change vma->vm_file, but must guarantee that
1630 * vma_link() below can deny write-access if VM_DENYWRITE is set
1631 * and map writably if VM_SHARED is set. This usually means the
1632 * new file must not have been exposed to user-space, yet.
1633 */
Al Virocb0942b2012-08-27 14:48:26 -04001634 vma->vm_file = get_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 error = file->f_op->mmap(file, vma);
1636 if (error)
1637 goto unmap_and_free_vma;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001638
1639 /* Can addr have changed??
1640 *
1641 * Answer: Yes, several device drivers can do it in their
1642 * f_op->mmap method. -DaveM
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001643 * Bug: If addr is changed, prev, rb_link, rb_parent should
1644 * be updated for vma_link()
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001645 */
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001646 WARN_ON_ONCE(addr != vma->vm_start);
1647
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001648 addr = vma->vm_start;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001649 vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 } else if (vm_flags & VM_SHARED) {
1651 error = shmem_zero_setup(vma);
1652 if (error)
1653 goto free_vma;
1654 }
1655
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001656 vma_link(mm, vma, prev, rb_link, rb_parent);
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001657 /* Once vma denies write, undo our temporary denial count */
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001658 if (file) {
1659 if (vm_flags & VM_SHARED)
1660 mapping_unmap_writable(file->f_mapping);
1661 if (vm_flags & VM_DENYWRITE)
1662 allow_write_access(file);
1663 }
Oleg Nesterove8686772013-09-11 14:20:20 -07001664 file = vma->vm_file;
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001665out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001666 perf_event_mmap(vma);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02001667
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001668 vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (vm_flags & VM_LOCKED) {
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001670 if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) ||
1671 vma == get_gate_vma(current->mm)))
KOSAKI Motohiro06f9d8c2010-03-05 13:41:43 -08001672 mm->locked_vm += (len >> PAGE_SHIFT);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001673 else
Eric B Munsonde60f5f2015-11-05 18:51:36 -08001674 vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001675 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301676
Oleg Nesterovc7a3a882012-08-19 19:10:42 +02001677 if (file)
1678 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301679
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07001680 /*
1681 * New (or expanded) vma always get soft dirty status.
1682 * Otherwise user-space soft-dirty page tracker won't
1683 * be able to distinguish situation when vma area unmapped,
1684 * then new mapped in-place (which must be aimed as
1685 * a completely new data area).
1686 */
1687 vma->vm_flags |= VM_SOFTDIRTY;
1688
Peter Feiner64e45502014-10-13 15:55:46 -07001689 vma_set_page_prot(vma);
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 return addr;
1692
1693unmap_and_free_vma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 vma->vm_file = NULL;
1695 fput(file);
1696
1697 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001698 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1699 charged = 0;
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001700 if (vm_flags & VM_SHARED)
1701 mapping_unmap_writable(file->f_mapping);
1702allow_write_and_free_vma:
1703 if (vm_flags & VM_DENYWRITE)
1704 allow_write_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705free_vma:
1706 kmem_cache_free(vm_area_cachep, vma);
1707unacct_error:
1708 if (charged)
1709 vm_unacct_memory(charged);
1710 return error;
1711}
1712
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001713unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1714{
1715 /*
1716 * We implement the search by looking for an rbtree node that
1717 * immediately follows a suitable gap. That is,
1718 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1719 * - gap_end = vma->vm_start >= info->low_limit + length;
1720 * - gap_end - gap_start >= length
1721 */
1722
1723 struct mm_struct *mm = current->mm;
1724 struct vm_area_struct *vma;
1725 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1726
1727 /* Adjust search length to account for worst case alignment overhead */
1728 length = info->length + info->align_mask;
1729 if (length < info->length)
1730 return -ENOMEM;
1731
1732 /* Adjust search limits by the desired length */
1733 if (info->high_limit < length)
1734 return -ENOMEM;
1735 high_limit = info->high_limit - length;
1736
1737 if (info->low_limit > high_limit)
1738 return -ENOMEM;
1739 low_limit = info->low_limit + length;
1740
1741 /* Check if rbtree root looks promising */
1742 if (RB_EMPTY_ROOT(&mm->mm_rb))
1743 goto check_highest;
1744 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1745 if (vma->rb_subtree_gap < length)
1746 goto check_highest;
1747
1748 while (true) {
1749 /* Visit left subtree if it looks promising */
1750 gap_end = vma->vm_start;
1751 if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1752 struct vm_area_struct *left =
1753 rb_entry(vma->vm_rb.rb_left,
1754 struct vm_area_struct, vm_rb);
1755 if (left->rb_subtree_gap >= length) {
1756 vma = left;
1757 continue;
1758 }
1759 }
1760
1761 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1762check_current:
1763 /* Check if current node has a suitable gap */
1764 if (gap_start > high_limit)
1765 return -ENOMEM;
1766 if (gap_end >= low_limit && gap_end - gap_start >= length)
1767 goto found;
1768
1769 /* Visit right subtree if it looks promising */
1770 if (vma->vm_rb.rb_right) {
1771 struct vm_area_struct *right =
1772 rb_entry(vma->vm_rb.rb_right,
1773 struct vm_area_struct, vm_rb);
1774 if (right->rb_subtree_gap >= length) {
1775 vma = right;
1776 continue;
1777 }
1778 }
1779
1780 /* Go back up the rbtree to find next candidate node */
1781 while (true) {
1782 struct rb_node *prev = &vma->vm_rb;
1783 if (!rb_parent(prev))
1784 goto check_highest;
1785 vma = rb_entry(rb_parent(prev),
1786 struct vm_area_struct, vm_rb);
1787 if (prev == vma->vm_rb.rb_left) {
1788 gap_start = vma->vm_prev->vm_end;
1789 gap_end = vma->vm_start;
1790 goto check_current;
1791 }
1792 }
1793 }
1794
1795check_highest:
1796 /* Check highest gap, which does not precede any rbtree node */
1797 gap_start = mm->highest_vm_end;
1798 gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */
1799 if (gap_start > high_limit)
1800 return -ENOMEM;
1801
1802found:
1803 /* We found a suitable gap. Clip it with the original low_limit. */
1804 if (gap_start < info->low_limit)
1805 gap_start = info->low_limit;
1806
1807 /* Adjust gap address to the desired alignment */
1808 gap_start += (info->align_offset - gap_start) & info->align_mask;
1809
1810 VM_BUG_ON(gap_start + info->length > info->high_limit);
1811 VM_BUG_ON(gap_start + info->length > gap_end);
1812 return gap_start;
1813}
1814
1815unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1816{
1817 struct mm_struct *mm = current->mm;
1818 struct vm_area_struct *vma;
1819 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1820
1821 /* Adjust search length to account for worst case alignment overhead */
1822 length = info->length + info->align_mask;
1823 if (length < info->length)
1824 return -ENOMEM;
1825
1826 /*
1827 * Adjust search limits by the desired length.
1828 * See implementation comment at top of unmapped_area().
1829 */
1830 gap_end = info->high_limit;
1831 if (gap_end < length)
1832 return -ENOMEM;
1833 high_limit = gap_end - length;
1834
1835 if (info->low_limit > high_limit)
1836 return -ENOMEM;
1837 low_limit = info->low_limit + length;
1838
1839 /* Check highest gap, which does not precede any rbtree node */
1840 gap_start = mm->highest_vm_end;
1841 if (gap_start <= high_limit)
1842 goto found_highest;
1843
1844 /* Check if rbtree root looks promising */
1845 if (RB_EMPTY_ROOT(&mm->mm_rb))
1846 return -ENOMEM;
1847 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1848 if (vma->rb_subtree_gap < length)
1849 return -ENOMEM;
1850
1851 while (true) {
1852 /* Visit right subtree if it looks promising */
1853 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1854 if (gap_start <= high_limit && vma->vm_rb.rb_right) {
1855 struct vm_area_struct *right =
1856 rb_entry(vma->vm_rb.rb_right,
1857 struct vm_area_struct, vm_rb);
1858 if (right->rb_subtree_gap >= length) {
1859 vma = right;
1860 continue;
1861 }
1862 }
1863
1864check_current:
1865 /* Check if current node has a suitable gap */
1866 gap_end = vma->vm_start;
1867 if (gap_end < low_limit)
1868 return -ENOMEM;
1869 if (gap_start <= high_limit && gap_end - gap_start >= length)
1870 goto found;
1871
1872 /* Visit left subtree if it looks promising */
1873 if (vma->vm_rb.rb_left) {
1874 struct vm_area_struct *left =
1875 rb_entry(vma->vm_rb.rb_left,
1876 struct vm_area_struct, vm_rb);
1877 if (left->rb_subtree_gap >= length) {
1878 vma = left;
1879 continue;
1880 }
1881 }
1882
1883 /* Go back up the rbtree to find next candidate node */
1884 while (true) {
1885 struct rb_node *prev = &vma->vm_rb;
1886 if (!rb_parent(prev))
1887 return -ENOMEM;
1888 vma = rb_entry(rb_parent(prev),
1889 struct vm_area_struct, vm_rb);
1890 if (prev == vma->vm_rb.rb_right) {
1891 gap_start = vma->vm_prev ?
1892 vma->vm_prev->vm_end : 0;
1893 goto check_current;
1894 }
1895 }
1896 }
1897
1898found:
1899 /* We found a suitable gap. Clip it with the original high_limit. */
1900 if (gap_end > info->high_limit)
1901 gap_end = info->high_limit;
1902
1903found_highest:
1904 /* Compute highest gap address at the desired alignment */
1905 gap_end -= info->length;
1906 gap_end -= (gap_end - info->align_offset) & info->align_mask;
1907
1908 VM_BUG_ON(gap_end < info->low_limit);
1909 VM_BUG_ON(gap_end < gap_start);
1910 return gap_end;
1911}
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913/* Get an address range which is currently unmapped.
1914 * For shmat() with addr=0.
1915 *
1916 * Ugly calling convention alert:
1917 * Return value with the low bits set means error value,
1918 * ie
1919 * if (ret & ~PAGE_MASK)
1920 * error = ret;
1921 *
1922 * This function "knows" that -ENOMEM has the bits set.
1923 */
1924#ifndef HAVE_ARCH_UNMAPPED_AREA
1925unsigned long
1926arch_get_unmapped_area(struct file *filp, unsigned long addr,
1927 unsigned long len, unsigned long pgoff, unsigned long flags)
1928{
1929 struct mm_struct *mm = current->mm;
1930 struct vm_area_struct *vma;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001931 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001933 if (len > TASK_SIZE - mmap_min_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 return -ENOMEM;
1935
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001936 if (flags & MAP_FIXED)
1937 return addr;
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (addr) {
1940 addr = PAGE_ALIGN(addr);
1941 vma = find_vma(mm, addr);
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001942 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 (!vma || addr + len <= vma->vm_start))
1944 return addr;
1945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001947 info.flags = 0;
1948 info.length = len;
Heiko Carstens4e99b022013-11-12 15:07:54 -08001949 info.low_limit = mm->mmap_base;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001950 info.high_limit = TASK_SIZE;
1951 info.align_mask = 0;
1952 return vm_unmapped_area(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
vishnu.pscc71aba2014-10-09 15:26:29 -07001954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956/*
1957 * This mmap-allocator allocates new areas top-down from below the
1958 * stack's low limit (the base):
1959 */
1960#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1961unsigned long
1962arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1963 const unsigned long len, const unsigned long pgoff,
1964 const unsigned long flags)
1965{
1966 struct vm_area_struct *vma;
1967 struct mm_struct *mm = current->mm;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001968 unsigned long addr = addr0;
1969 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 /* requested length too big for entire address space */
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001972 if (len > TASK_SIZE - mmap_min_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return -ENOMEM;
1974
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001975 if (flags & MAP_FIXED)
1976 return addr;
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /* requesting a specific address */
1979 if (addr) {
1980 addr = PAGE_ALIGN(addr);
1981 vma = find_vma(mm, addr);
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001982 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 (!vma || addr + len <= vma->vm_start))
1984 return addr;
1985 }
1986
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001987 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
1988 info.length = len;
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001989 info.low_limit = max(PAGE_SIZE, mmap_min_addr);
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001990 info.high_limit = mm->mmap_base;
1991 info.align_mask = 0;
1992 addr = vm_unmapped_area(&info);
Xiao Guangrongb716ad92012-03-21 16:33:56 -07001993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 /*
1995 * A failed mmap() very likely causes application failure,
1996 * so fall back to the bottom-up function here. This scenario
1997 * can happen with large stack limits and large mmap()
1998 * allocations.
1999 */
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002000 if (offset_in_page(addr)) {
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08002001 VM_BUG_ON(addr != -ENOMEM);
2002 info.flags = 0;
2003 info.low_limit = TASK_UNMAPPED_BASE;
2004 info.high_limit = TASK_SIZE;
2005 addr = vm_unmapped_area(&info);
2006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008 return addr;
2009}
2010#endif
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012unsigned long
2013get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
2014 unsigned long pgoff, unsigned long flags)
2015{
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002016 unsigned long (*get_area)(struct file *, unsigned long,
2017 unsigned long, unsigned long, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Al Viro9206de92009-12-03 15:23:11 -05002019 unsigned long error = arch_mmap_check(addr, len, flags);
2020 if (error)
2021 return error;
2022
2023 /* Careful about overflows.. */
2024 if (len > TASK_SIZE)
2025 return -ENOMEM;
2026
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002027 get_area = current->mm->get_unmapped_area;
Al Viro72c2d532013-09-22 16:27:52 -04002028 if (file && file->f_op->get_unmapped_area)
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002029 get_area = file->f_op->get_unmapped_area;
2030 addr = get_area(file, addr, len, pgoff, flags);
2031 if (IS_ERR_VALUE(addr))
2032 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Linus Torvalds07ab67c2005-05-19 22:43:37 -07002034 if (addr > TASK_SIZE - len)
2035 return -ENOMEM;
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002036 if (offset_in_page(addr))
Linus Torvalds07ab67c2005-05-19 22:43:37 -07002037 return -EINVAL;
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002038
Al Viro9ac4ed42012-05-30 17:13:15 -04002039 addr = arch_rebalance_pgtables(addr, len);
2040 error = security_mmap_addr(addr);
2041 return error ? error : addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
2044EXPORT_SYMBOL(get_unmapped_area);
2045
2046/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
ZhenwenXu48aae422009-01-06 14:40:21 -08002047struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002049 struct rb_node *rb_node;
2050 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Rajman Mekaco841e31e2012-05-29 15:06:21 -07002052 /* Check the cache first. */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002053 vma = vmacache_find(mm, addr);
2054 if (likely(vma))
2055 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002057 rb_node = mm->mm_rb.rb_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002059 while (rb_node) {
2060 struct vm_area_struct *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002062 tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
Rajman Mekaco841e31e2012-05-29 15:06:21 -07002063
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002064 if (tmp->vm_end > addr) {
2065 vma = tmp;
2066 if (tmp->vm_start <= addr)
2067 break;
2068 rb_node = rb_node->rb_left;
2069 } else
2070 rb_node = rb_node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002072
2073 if (vma)
2074 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return vma;
2076}
2077
2078EXPORT_SYMBOL(find_vma);
2079
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002080/*
2081 * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002082 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083struct vm_area_struct *
2084find_vma_prev(struct mm_struct *mm, unsigned long addr,
2085 struct vm_area_struct **pprev)
2086{
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002087 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002089 vma = find_vma(mm, addr);
Mikulas Patocka83cd9042012-03-04 19:52:03 -05002090 if (vma) {
2091 *pprev = vma->vm_prev;
2092 } else {
2093 struct rb_node *rb_node = mm->mm_rb.rb_node;
2094 *pprev = NULL;
2095 while (rb_node) {
2096 *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
2097 rb_node = rb_node->rb_right;
2098 }
2099 }
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002100 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
2103/*
2104 * Verify that the stack growth is acceptable and
2105 * update accounting. This is shared with both the
2106 * grow-up and grow-down cases.
2107 */
ZhenwenXu48aae422009-01-06 14:40:21 -08002108static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 struct mm_struct *mm = vma->vm_mm;
2111 struct rlimit *rlim = current->signal->rlim;
Linus Torvalds690eac52015-01-11 11:33:57 -08002112 unsigned long new_start, actual_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 /* address space limit tests */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002115 if (!may_expand_vm(mm, vma->vm_flags, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return -ENOMEM;
2117
2118 /* Stack limit test */
Linus Torvalds690eac52015-01-11 11:33:57 -08002119 actual_size = size;
2120 if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN)))
2121 actual_size -= PAGE_SIZE;
Jason Low4db0c3c2015-04-15 16:14:08 -07002122 if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return -ENOMEM;
2124
2125 /* mlock limit tests */
2126 if (vma->vm_flags & VM_LOCKED) {
2127 unsigned long locked;
2128 unsigned long limit;
2129 locked = mm->locked_vm + grow;
Jason Low4db0c3c2015-04-15 16:14:08 -07002130 limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
Jiri Slaby59e99e52010-03-05 13:41:44 -08002131 limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (locked > limit && !capable(CAP_IPC_LOCK))
2133 return -ENOMEM;
2134 }
2135
Adam Litke0d59a012007-01-30 14:35:39 -08002136 /* Check to ensure the stack will not grow into a hugetlb-only region */
2137 new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
2138 vma->vm_end - size;
2139 if (is_hugepage_only_range(vma->vm_mm, new_start, size))
2140 return -EFAULT;
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 /*
2143 * Overcommit.. This must be the final test, as it will
2144 * update security statistics.
2145 */
Hugh Dickins05fa1992009-04-16 21:58:12 +01002146 if (security_vm_enough_memory_mm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return -ENOMEM;
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 return 0;
2150}
2151
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002152#if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153/*
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002154 * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
2155 * vma is the last one with address > vma->vm_end. Have to extend vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 */
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002157int expand_upwards(struct vm_area_struct *vma, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Oleg Nesterov09357812015-11-05 18:48:17 -08002159 struct mm_struct *mm = vma->vm_mm;
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002160 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 if (!(vma->vm_flags & VM_GROWSUP))
2163 return -EFAULT;
2164
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002165 /* Guard against wrapping around to address 0. */
2166 if (address < PAGE_ALIGN(address+4))
2167 address = PAGE_ALIGN(address+4);
2168 else
2169 return -ENOMEM;
2170
2171 /* We must make sure the anon_vma is allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (unlikely(anon_vma_prepare(vma)))
2173 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 /*
2176 * vma->vm_start/vm_end cannot change under us because the caller
2177 * is required to hold the mmap_sem in read mode. We need the
2178 * anon_vma lock to serialize against concurrent expand_stacks.
2179 */
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002180 anon_vma_lock_write(vma->anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 /* Somebody else might have raced and expanded it already */
2183 if (address > vma->vm_end) {
2184 unsigned long size, grow;
2185
2186 size = address - vma->vm_start;
2187 grow = (address - vma->vm_end) >> PAGE_SHIFT;
2188
Hugh Dickins42c36f62011-05-09 17:44:42 -07002189 error = -ENOMEM;
2190 if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
2191 error = acct_stack_growth(vma, size, grow);
2192 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002193 /*
2194 * vma_gap_update() doesn't support concurrent
2195 * updates, but we only hold a shared mmap_sem
2196 * lock here, so we need to protect against
2197 * concurrent vma expansions.
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002198 * anon_vma_lock_write() doesn't help here, as
Michel Lespinasse41289972012-12-12 13:52:25 -08002199 * we don't guarantee that all growable vmas
2200 * in a mm share the same root anon vma.
2201 * So, we reuse mm->page_table_lock to guard
2202 * against concurrent vma expansions.
2203 */
Oleg Nesterov09357812015-11-05 18:48:17 -08002204 spin_lock(&mm->page_table_lock);
Oleg Nesterov87e88272015-11-05 18:48:14 -08002205 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterov09357812015-11-05 18:48:17 -08002206 mm->locked_vm += grow;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002207 vm_stat_account(mm, vma->vm_flags, grow);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002208 anon_vma_interval_tree_pre_update_vma(vma);
Hugh Dickins42c36f62011-05-09 17:44:42 -07002209 vma->vm_end = address;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002210 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002211 if (vma->vm_next)
2212 vma_gap_update(vma->vm_next);
2213 else
Oleg Nesterov09357812015-11-05 18:48:17 -08002214 mm->highest_vm_end = address;
2215 spin_unlock(&mm->page_table_lock);
Michel Lespinasse41289972012-12-12 13:52:25 -08002216
Hugh Dickins42c36f62011-05-09 17:44:42 -07002217 perf_event_mmap(vma);
2218 }
Eric B Munson3af9e852010-05-18 15:30:49 +01002219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 }
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002221 anon_vma_unlock_write(vma->anon_vma);
David Rientjes6d50e602014-10-29 14:50:31 -07002222 khugepaged_enter_vma_merge(vma, vma->vm_flags);
Oleg Nesterov09357812015-11-05 18:48:17 -08002223 validate_mm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return error;
2225}
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002226#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228/*
2229 * vma is the first one with address < vma->vm_start. Have to extend vma.
2230 */
Michal Hockod05f3162011-05-24 17:11:44 -07002231int expand_downwards(struct vm_area_struct *vma,
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002232 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
Oleg Nesterov09357812015-11-05 18:48:17 -08002234 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 int error;
2236
Eric Paris88694772007-11-26 18:47:26 -05002237 address &= PAGE_MASK;
Al Viroe5467852012-05-30 13:30:51 -04002238 error = security_mmap_addr(address);
Eric Paris88694772007-11-26 18:47:26 -05002239 if (error)
2240 return error;
2241
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002242 /* We must make sure the anon_vma is allocated. */
2243 if (unlikely(anon_vma_prepare(vma)))
2244 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 /*
2247 * vma->vm_start/vm_end cannot change under us because the caller
2248 * is required to hold the mmap_sem in read mode. We need the
2249 * anon_vma lock to serialize against concurrent expand_stacks.
2250 */
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002251 anon_vma_lock_write(vma->anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 /* Somebody else might have raced and expanded it already */
2254 if (address < vma->vm_start) {
2255 unsigned long size, grow;
2256
2257 size = vma->vm_end - address;
2258 grow = (vma->vm_start - address) >> PAGE_SHIFT;
2259
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002260 error = -ENOMEM;
2261 if (grow <= vma->vm_pgoff) {
2262 error = acct_stack_growth(vma, size, grow);
2263 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002264 /*
2265 * vma_gap_update() doesn't support concurrent
2266 * updates, but we only hold a shared mmap_sem
2267 * lock here, so we need to protect against
2268 * concurrent vma expansions.
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002269 * anon_vma_lock_write() doesn't help here, as
Michel Lespinasse41289972012-12-12 13:52:25 -08002270 * we don't guarantee that all growable vmas
2271 * in a mm share the same root anon vma.
2272 * So, we reuse mm->page_table_lock to guard
2273 * against concurrent vma expansions.
2274 */
Oleg Nesterov09357812015-11-05 18:48:17 -08002275 spin_lock(&mm->page_table_lock);
Oleg Nesterov87e88272015-11-05 18:48:14 -08002276 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterov09357812015-11-05 18:48:17 -08002277 mm->locked_vm += grow;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002278 vm_stat_account(mm, vma->vm_flags, grow);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002279 anon_vma_interval_tree_pre_update_vma(vma);
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002280 vma->vm_start = address;
2281 vma->vm_pgoff -= grow;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002282 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002283 vma_gap_update(vma);
Oleg Nesterov09357812015-11-05 18:48:17 -08002284 spin_unlock(&mm->page_table_lock);
Michel Lespinasse41289972012-12-12 13:52:25 -08002285
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002286 perf_event_mmap(vma);
2287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
2289 }
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002290 anon_vma_unlock_write(vma->anon_vma);
David Rientjes6d50e602014-10-29 14:50:31 -07002291 khugepaged_enter_vma_merge(vma, vma->vm_flags);
Oleg Nesterov09357812015-11-05 18:48:17 -08002292 validate_mm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return error;
2294}
2295
Linus Torvalds09884962013-02-27 08:36:04 -08002296/*
2297 * Note how expand_stack() refuses to expand the stack all the way to
2298 * abut the next virtual mapping, *unless* that mapping itself is also
2299 * a stack mapping. We want to leave room for a guard page, after all
2300 * (the guard page itself is not added here, that is done by the
2301 * actual page faulting logic)
2302 *
2303 * This matches the behavior of the guard page logic (see mm/memory.c:
2304 * check_stack_guard_page()), which only allows the guard page to be
2305 * removed under these circumstances.
2306 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002307#ifdef CONFIG_STACK_GROWSUP
2308int expand_stack(struct vm_area_struct *vma, unsigned long address)
2309{
Linus Torvalds09884962013-02-27 08:36:04 -08002310 struct vm_area_struct *next;
2311
2312 address &= PAGE_MASK;
2313 next = vma->vm_next;
2314 if (next && next->vm_start == address + PAGE_SIZE) {
2315 if (!(next->vm_flags & VM_GROWSUP))
2316 return -ENOMEM;
2317 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002318 return expand_upwards(vma, address);
2319}
2320
2321struct vm_area_struct *
2322find_extend_vma(struct mm_struct *mm, unsigned long addr)
2323{
2324 struct vm_area_struct *vma, *prev;
2325
2326 addr &= PAGE_MASK;
2327 vma = find_vma_prev(mm, addr, &prev);
2328 if (vma && (vma->vm_start <= addr))
2329 return vma;
Denys Vlasenko1c127182008-11-12 01:24:41 +01002330 if (!prev || expand_stack(prev, addr))
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002331 return NULL;
Michel Lespinassecea10a12013-02-22 16:32:44 -08002332 if (prev->vm_flags & VM_LOCKED)
Kirill A. Shutemovfc05f562015-04-14 15:44:39 -07002333 populate_vma_page_range(prev, addr, prev->vm_end, NULL);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002334 return prev;
2335}
2336#else
2337int expand_stack(struct vm_area_struct *vma, unsigned long address)
2338{
Linus Torvalds09884962013-02-27 08:36:04 -08002339 struct vm_area_struct *prev;
2340
2341 address &= PAGE_MASK;
2342 prev = vma->vm_prev;
2343 if (prev && prev->vm_end == address) {
2344 if (!(prev->vm_flags & VM_GROWSDOWN))
2345 return -ENOMEM;
2346 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002347 return expand_downwards(vma, address);
2348}
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350struct vm_area_struct *
vishnu.pscc71aba2014-10-09 15:26:29 -07002351find_extend_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352{
vishnu.pscc71aba2014-10-09 15:26:29 -07002353 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 unsigned long start;
2355
2356 addr &= PAGE_MASK;
vishnu.pscc71aba2014-10-09 15:26:29 -07002357 vma = find_vma(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (!vma)
2359 return NULL;
2360 if (vma->vm_start <= addr)
2361 return vma;
2362 if (!(vma->vm_flags & VM_GROWSDOWN))
2363 return NULL;
2364 start = vma->vm_start;
2365 if (expand_stack(vma, addr))
2366 return NULL;
Michel Lespinassecea10a12013-02-22 16:32:44 -08002367 if (vma->vm_flags & VM_LOCKED)
Kirill A. Shutemovfc05f562015-04-14 15:44:39 -07002368 populate_vma_page_range(vma, addr, start, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return vma;
2370}
2371#endif
2372
Jesse Barnese1d6d012014-12-12 16:55:27 -08002373EXPORT_SYMBOL_GPL(find_extend_vma);
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002376 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002378 *
2379 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002381static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382{
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002383 unsigned long nr_accounted = 0;
2384
Hugh Dickins365e9c872005-10-29 18:16:18 -07002385 /* Update high watermark before we lower total_vm */
2386 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002388 long nrpages = vma_pages(vma);
2389
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002390 if (vma->vm_flags & VM_ACCOUNT)
2391 nr_accounted += nrpages;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002392 vm_stat_account(mm, vma->vm_flags, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002393 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07002394 } while (vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002395 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 validate_mm(mm);
2397}
2398
2399/*
2400 * Get rid of page table information in the indicated region.
2401 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07002402 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 */
2404static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07002405 struct vm_area_struct *vma, struct vm_area_struct *prev,
2406 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
vishnu.pscc71aba2014-10-09 15:26:29 -07002408 struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002409 struct mmu_gather tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07002412 tlb_gather_mmu(&tlb, mm, start, end);
Hugh Dickins365e9c872005-10-29 18:16:18 -07002413 update_hiwater_rss(mm);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002414 unmap_vmas(&tlb, vma, start, end);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002415 free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
Hugh Dickins6ee86302013-04-29 15:07:44 -07002416 next ? next->vm_start : USER_PGTABLES_CEILING);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002417 tlb_finish_mmu(&tlb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
2420/*
2421 * Create a list of vma's touched by the unmap, removing them from the mm's
2422 * vma list as we go..
2423 */
2424static void
2425detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
2426 struct vm_area_struct *prev, unsigned long end)
2427{
2428 struct vm_area_struct **insertion_point;
2429 struct vm_area_struct *tail_vma = NULL;
2430
2431 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002432 vma->vm_prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 do {
Michel Lespinassed3737182012-12-11 16:01:38 -08002434 vma_rb_erase(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 mm->map_count--;
2436 tail_vma = vma;
2437 vma = vma->vm_next;
2438 } while (vma && vma->vm_start < end);
2439 *insertion_point = vma;
Michel Lespinassed3737182012-12-11 16:01:38 -08002440 if (vma) {
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002441 vma->vm_prev = prev;
Michel Lespinassed3737182012-12-11 16:01:38 -08002442 vma_gap_update(vma);
2443 } else
2444 mm->highest_vm_end = prev ? prev->vm_end : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 tail_vma->vm_next = NULL;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002446
2447 /* Kill the cache */
2448 vmacache_invalidate(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
2451/*
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002452 * __split_vma() bypasses sysctl_max_map_count checking. We use this on the
2453 * munmap path where it doesn't make sense to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 */
vishnu.pscc71aba2014-10-09 15:26:29 -07002455static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 unsigned long addr, int new_below)
2457{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 struct vm_area_struct *new;
Chen Gange3975892015-09-08 15:03:38 -07002459 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Andi Kleena5516432008-07-23 21:27:41 -07002461 if (is_vm_hugetlb_page(vma) && (addr &
2462 ~(huge_page_mask(hstate_vma(vma)))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return -EINVAL;
2464
Christoph Lametere94b1762006-12-06 20:33:17 -08002465 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (!new)
Chen Gange3975892015-09-08 15:03:38 -07002467 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
2469 /* most fields are the same, copy all, and then fixup */
2470 *new = *vma;
2471
Rik van Riel5beb4932010-03-05 13:42:07 -08002472 INIT_LIST_HEAD(&new->anon_vma_chain);
2473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 if (new_below)
2475 new->vm_end = addr;
2476 else {
2477 new->vm_start = addr;
2478 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
2479 }
2480
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002481 err = vma_dup_policy(vma, new);
2482 if (err)
Rik van Riel5beb4932010-03-05 13:42:07 -08002483 goto out_free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Daniel Forrestc4ea95d2014-12-02 15:59:42 -08002485 err = anon_vma_clone(new, vma);
2486 if (err)
Rik van Riel5beb4932010-03-05 13:42:07 -08002487 goto out_free_mpol;
2488
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002489 if (new->vm_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 get_file(new->vm_file);
2491
2492 if (new->vm_ops && new->vm_ops->open)
2493 new->vm_ops->open(new);
2494
2495 if (new_below)
Rik van Riel5beb4932010-03-05 13:42:07 -08002496 err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 ((addr - new->vm_start) >> PAGE_SHIFT), new);
2498 else
Rik van Riel5beb4932010-03-05 13:42:07 -08002499 err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Rik van Riel5beb4932010-03-05 13:42:07 -08002501 /* Success. */
2502 if (!err)
2503 return 0;
2504
2505 /* Clean everything up if vma_adjust failed. */
Rik van Riel58927532010-04-26 12:33:03 -04002506 if (new->vm_ops && new->vm_ops->close)
2507 new->vm_ops->close(new);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002508 if (new->vm_file)
Rik van Riel5beb4932010-03-05 13:42:07 -08002509 fput(new->vm_file);
Andrea Arcangeli2aeadc32010-09-22 13:05:12 -07002510 unlink_anon_vmas(new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002511 out_free_mpol:
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002512 mpol_put(vma_policy(new));
Rik van Riel5beb4932010-03-05 13:42:07 -08002513 out_free_vma:
2514 kmem_cache_free(vm_area_cachep, new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002515 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002518/*
2519 * Split a vma into two pieces at address 'addr', a new vma is allocated
2520 * either for the first part or the tail.
2521 */
2522int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2523 unsigned long addr, int new_below)
2524{
2525 if (mm->map_count >= sysctl_max_map_count)
2526 return -ENOMEM;
2527
2528 return __split_vma(mm, vma, addr, new_below);
2529}
2530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531/* Munmap is split into 2 main parts -- this part which finds
2532 * what needs doing, and the areas themselves, which do the
2533 * work. This now handles partial unmappings.
2534 * Jeremy Fitzhardinge <jeremy@goop.org>
2535 */
2536int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
2537{
2538 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07002539 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002541 if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 return -EINVAL;
2543
vishnu.pscc71aba2014-10-09 15:26:29 -07002544 len = PAGE_ALIGN(len);
2545 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return -EINVAL;
2547
2548 /* Find the first overlapping VMA */
Linus Torvalds9be34c92011-06-16 00:35:09 -07002549 vma = find_vma(mm, start);
Hugh Dickins146425a2005-04-19 13:29:18 -07002550 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return 0;
Linus Torvalds9be34c92011-06-16 00:35:09 -07002552 prev = vma->vm_prev;
Hugh Dickins146425a2005-04-19 13:29:18 -07002553 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555 /* if it doesn't overlap, we have nothing.. */
2556 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07002557 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 return 0;
2559
2560 /*
2561 * If we need to split any vma, do it now to save pain later.
2562 *
2563 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
2564 * unmapped vm_area_struct will remain in use: so lower split_vma
2565 * places tmp vma above, and higher split_vma places tmp vma below.
2566 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002567 if (start > vma->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002568 int error;
2569
2570 /*
2571 * Make sure that map_count on return from munmap() will
2572 * not exceed its limit; but let map_count go just above
2573 * its limit temporarily, to help free resources as expected.
2574 */
2575 if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2576 return -ENOMEM;
2577
2578 error = __split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 if (error)
2580 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07002581 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 }
2583
2584 /* Does it split the last one? */
2585 last = find_vma(mm, end);
2586 if (last && end > last->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002587 int error = __split_vma(mm, last, end, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (error)
2589 return error;
2590 }
vishnu.pscc71aba2014-10-09 15:26:29 -07002591 vma = prev ? prev->vm_next : mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593 /*
Rik van Rielba470de2008-10-18 20:26:50 -07002594 * unlock any mlock()ed ranges before detaching vmas
2595 */
2596 if (mm->locked_vm) {
2597 struct vm_area_struct *tmp = vma;
2598 while (tmp && tmp->vm_start < end) {
2599 if (tmp->vm_flags & VM_LOCKED) {
2600 mm->locked_vm -= vma_pages(tmp);
2601 munlock_vma_pages_all(tmp);
2602 }
2603 tmp = tmp->vm_next;
2604 }
2605 }
2606
2607 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 * Remove the vma's, and unmap the actual pages
2609 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002610 detach_vmas_to_be_unmapped(mm, vma, prev, end);
2611 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Dave Hansen1de4fa12014-11-14 07:18:31 -08002613 arch_unmap(mm, vma, start, end);
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002616 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 return 0;
2619}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Al Virobfce2812012-04-20 21:57:04 -04002621int vm_munmap(unsigned long start, size_t len)
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002622{
2623 int ret;
Al Virobfce2812012-04-20 21:57:04 -04002624 struct mm_struct *mm = current->mm;
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002625
2626 down_write(&mm->mmap_sem);
2627 ret = do_munmap(mm, start, len);
2628 up_write(&mm->mmap_sem);
2629 return ret;
2630}
2631EXPORT_SYMBOL(vm_munmap);
2632
Heiko Carstens6a6160a2009-01-14 14:14:15 +01002633SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 profile_munmap(addr);
Al Virobfce2812012-04-20 21:57:04 -04002636 return vm_munmap(addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637}
2638
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002639
2640/*
2641 * Emulation of deprecated remap_file_pages() syscall.
2642 */
2643SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2644 unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2645{
2646
2647 struct mm_struct *mm = current->mm;
2648 struct vm_area_struct *vma;
2649 unsigned long populate = 0;
2650 unsigned long ret = -EINVAL;
2651 struct file *file;
2652
2653 pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. "
2654 "See Documentation/vm/remap_file_pages.txt.\n",
2655 current->comm, current->pid);
2656
2657 if (prot)
2658 return ret;
2659 start = start & PAGE_MASK;
2660 size = size & PAGE_MASK;
2661
2662 if (start + size <= start)
2663 return ret;
2664
2665 /* Does pgoff wrap? */
2666 if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2667 return ret;
2668
2669 down_write(&mm->mmap_sem);
2670 vma = find_vma(mm, start);
2671
2672 if (!vma || !(vma->vm_flags & VM_SHARED))
2673 goto out;
2674
2675 if (start < vma->vm_start || start + size > vma->vm_end)
2676 goto out;
2677
2678 if (pgoff == linear_page_index(vma, start)) {
2679 ret = 0;
2680 goto out;
2681 }
2682
2683 prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2684 prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2685 prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2686
2687 flags &= MAP_NONBLOCK;
2688 flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2689 if (vma->vm_flags & VM_LOCKED) {
2690 flags |= MAP_LOCKED;
2691 /* drop PG_Mlocked flag for over-mapped range */
2692 munlock_vma_pages_range(vma, start, start + size);
2693 }
2694
2695 file = get_file(vma->vm_file);
2696 ret = do_mmap_pgoff(vma->vm_file, start, size,
2697 prot, flags, pgoff, &populate);
2698 fput(file);
2699out:
2700 up_write(&mm->mmap_sem);
2701 if (populate)
2702 mm_populate(ret, populate);
2703 if (!IS_ERR_VALUE(ret))
2704 ret = 0;
2705 return ret;
2706}
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708static inline void verify_mm_writelocked(struct mm_struct *mm)
2709{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08002710#ifdef CONFIG_DEBUG_VM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
2712 WARN_ON(1);
2713 up_read(&mm->mmap_sem);
2714 }
2715#endif
2716}
2717
2718/*
2719 * this is really a simplified "do_mmap". it only handles
2720 * anonymous maps. eventually we may be able to do some
2721 * brk-specific accounting here.
2722 */
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002723static unsigned long do_brk(unsigned long addr, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724{
vishnu.pscc71aba2014-10-09 15:26:29 -07002725 struct mm_struct *mm = current->mm;
2726 struct vm_area_struct *vma, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 unsigned long flags;
vishnu.pscc71aba2014-10-09 15:26:29 -07002728 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 pgoff_t pgoff = addr >> PAGE_SHIFT;
Kirill Korotaev3a459752006-09-07 14:17:04 +04002730 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
2732 len = PAGE_ALIGN(len);
2733 if (!len)
2734 return addr;
2735
Kirill Korotaev3a459752006-09-07 14:17:04 +04002736 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
2737
Al Viro2c6a1012009-12-03 19:40:46 -05002738 error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002739 if (offset_in_page(error))
Kirill Korotaev3a459752006-09-07 14:17:04 +04002740 return error;
2741
Davidlohr Bueso363ee172014-01-21 15:49:15 -08002742 error = mlock_future_check(mm, mm->def_flags, len);
2743 if (error)
2744 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746 /*
2747 * mm->mmap_sem is required to protect against another thread
2748 * changing the mappings in case we sleep.
2749 */
2750 verify_mm_writelocked(mm);
2751
2752 /*
2753 * Clear old maps. this also does some error checking for us
2754 */
Rasmus Villemoes9fcd1452015-04-15 16:14:32 -07002755 while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
2756 &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 if (do_munmap(mm, addr, len))
2758 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
2760
2761 /* Check against address space limits *after* clearing old maps... */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002762 if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 return -ENOMEM;
2764
2765 if (mm->map_count > sysctl_max_map_count)
2766 return -ENOMEM;
2767
Al Viro191c5422012-02-13 03:58:52 +00002768 if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return -ENOMEM;
2770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 /* Can we just expand an old private anonymous mapping? */
Rik van Rielba470de2008-10-18 20:26:50 -07002772 vma = vma_merge(mm, prev, addr, addr + len, flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07002773 NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX);
Rik van Rielba470de2008-10-18 20:26:50 -07002774 if (vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 goto out;
2776
2777 /*
2778 * create a vma struct for an anonymous mapping
2779 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002780 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 if (!vma) {
2782 vm_unacct_memory(len >> PAGE_SHIFT);
2783 return -ENOMEM;
2784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Rik van Riel5beb4932010-03-05 13:42:07 -08002786 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 vma->vm_mm = mm;
2788 vma->vm_start = addr;
2789 vma->vm_end = addr + len;
2790 vma->vm_pgoff = pgoff;
2791 vma->vm_flags = flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07002792 vma->vm_page_prot = vm_get_page_prot(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 vma_link(mm, vma, prev, rb_link, rb_parent);
2794out:
Eric B Munson3af9e852010-05-18 15:30:49 +01002795 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 mm->total_vm += len >> PAGE_SHIFT;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002797 mm->data_vm += len >> PAGE_SHIFT;
Michel Lespinasse128557f2013-02-22 16:32:40 -08002798 if (flags & VM_LOCKED)
2799 mm->locked_vm += (len >> PAGE_SHIFT);
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07002800 vma->vm_flags |= VM_SOFTDIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 return addr;
2802}
2803
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002804unsigned long vm_brk(unsigned long addr, unsigned long len)
2805{
2806 struct mm_struct *mm = current->mm;
2807 unsigned long ret;
Michel Lespinasse128557f2013-02-22 16:32:40 -08002808 bool populate;
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002809
2810 down_write(&mm->mmap_sem);
2811 ret = do_brk(addr, len);
Michel Lespinasse128557f2013-02-22 16:32:40 -08002812 populate = ((mm->def_flags & VM_LOCKED) != 0);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002813 up_write(&mm->mmap_sem);
Michel Lespinasse128557f2013-02-22 16:32:40 -08002814 if (populate)
2815 mm_populate(addr, len);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002816 return ret;
2817}
2818EXPORT_SYMBOL(vm_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820/* Release all mmaps. */
2821void exit_mmap(struct mm_struct *mm)
2822{
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002823 struct mmu_gather tlb;
Rik van Rielba470de2008-10-18 20:26:50 -07002824 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 unsigned long nr_accounted = 0;
2826
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002827 /* mm's last user has gone, and its about to be pulled down */
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07002828 mmu_notifier_release(mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002829
Rik van Rielba470de2008-10-18 20:26:50 -07002830 if (mm->locked_vm) {
2831 vma = mm->mmap;
2832 while (vma) {
2833 if (vma->vm_flags & VM_LOCKED)
2834 munlock_vma_pages_all(vma);
2835 vma = vma->vm_next;
2836 }
2837 }
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002838
2839 arch_exit_mmap(mm);
2840
Rik van Rielba470de2008-10-18 20:26:50 -07002841 vma = mm->mmap;
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002842 if (!vma) /* Can happen if dup_mmap() received an OOM */
2843 return;
2844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 flush_cache_mm(mm);
Linus Torvalds2b047252013-08-15 11:42:25 -07002847 tlb_gather_mmu(&tlb, mm, 0, -1);
Oleg Nesterov901608d2009-01-06 14:40:29 -08002848 /* update_hiwater_rss(mm) here? but nobody should be looking */
Hugh Dickinse0da3822005-04-19 13:29:15 -07002849 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002850 unmap_vmas(&tlb, vma, 0, -1);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002851
Hugh Dickins6ee86302013-04-29 15:07:44 -07002852 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
Al Viro853f5e22012-03-05 14:03:47 -05002853 tlb_finish_mmu(&tlb, 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 /*
Hugh Dickins8f4f8c12005-10-29 18:16:29 -07002856 * Walk the list again, actually closing and freeing it,
2857 * with preemption enabled, without holding any MM locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002859 while (vma) {
2860 if (vma->vm_flags & VM_ACCOUNT)
2861 nr_accounted += vma_pages(vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002862 vma = remove_vma(vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002863 }
2864 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865}
2866
2867/* Insert vm structure into process list sorted by address
2868 * and into the inode's i_mmap tree. If vm_file is non-NULL
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08002869 * then i_mmap_rwsem is taken here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
Hugh Dickins6597d782012-10-08 16:29:07 -07002871int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Hugh Dickins6597d782012-10-08 16:29:07 -07002873 struct vm_area_struct *prev;
2874 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Chen Gangc9d13f52015-09-08 15:04:08 -07002876 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
2877 &prev, &rb_link, &rb_parent))
2878 return -ENOMEM;
2879 if ((vma->vm_flags & VM_ACCOUNT) &&
2880 security_vm_enough_memory_mm(mm, vma_pages(vma)))
2881 return -ENOMEM;
2882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 /*
2884 * The vm_pgoff of a purely anonymous vma should be irrelevant
2885 * until its first write fault, when page's anon_vma and index
2886 * are set. But now set the vm_pgoff it will almost certainly
2887 * end up with (unless mremap moves it elsewhere before that
2888 * first wfault), so /proc/pid/maps tells a consistent story.
2889 *
2890 * By setting it to reflect the virtual start address of the
2891 * vma, merges and splits can happen in a seamless way, just
2892 * using the existing file pgoff checks and manipulations.
2893 * Similarly in do_mmap_pgoff and in do_brk.
2894 */
Oleg Nesterov8a9cc3b2015-09-08 14:58:31 -07002895 if (vma_is_anonymous(vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 BUG_ON(vma->anon_vma);
2897 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2898 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 vma_link(mm, vma, prev, rb_link, rb_parent);
2901 return 0;
2902}
2903
2904/*
2905 * Copy the vma structure to a new location in the same mm,
2906 * prior to moving page table entries, to effect an mremap move.
2907 */
2908struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
Michel Lespinasse38a76012012-10-08 16:31:50 -07002909 unsigned long addr, unsigned long len, pgoff_t pgoff,
2910 bool *need_rmap_locks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
2912 struct vm_area_struct *vma = *vmap;
2913 unsigned long vma_start = vma->vm_start;
2914 struct mm_struct *mm = vma->vm_mm;
2915 struct vm_area_struct *new_vma, *prev;
2916 struct rb_node **rb_link, *rb_parent;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002917 bool faulted_in_anon_vma = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919 /*
2920 * If anonymous vma has not yet been faulted, update new pgoff
2921 * to match new location, to increase its chance of merging.
2922 */
Oleg Nesterovce757992015-09-08 14:58:34 -07002923 if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 pgoff = addr >> PAGE_SHIFT;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002925 faulted_in_anon_vma = false;
2926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
Hugh Dickins6597d782012-10-08 16:29:07 -07002928 if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
2929 return NULL; /* should never get here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07002931 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
2932 vma->vm_userfaultfd_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 if (new_vma) {
2934 /*
2935 * Source vma may have been merged into new_vma
2936 */
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002937 if (unlikely(vma_start >= new_vma->vm_start &&
2938 vma_start < new_vma->vm_end)) {
2939 /*
2940 * The only way we can get a vma_merge with
2941 * self during an mremap is if the vma hasn't
2942 * been faulted in yet and we were allowed to
2943 * reset the dst vma->vm_pgoff to the
2944 * destination address of the mremap to allow
2945 * the merge to happen. mremap must change the
2946 * vm_pgoff linearity between src and dst vmas
2947 * (in turn preventing a vma_merge) to be
2948 * safe. It is only safe to keep the vm_pgoff
2949 * linear if there are no pages mapped yet.
2950 */
Sasha Levin81d1b092014-10-09 15:28:10 -07002951 VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
Michel Lespinasse38a76012012-10-08 16:31:50 -07002952 *vmap = vma = new_vma;
Michel Lespinasse108d6642012-10-08 16:31:36 -07002953 }
Michel Lespinasse38a76012012-10-08 16:31:50 -07002954 *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 } else {
Christoph Lametere94b1762006-12-06 20:33:17 -08002956 new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Chen Gange3975892015-09-08 15:03:38 -07002957 if (!new_vma)
2958 goto out;
2959 *new_vma = *vma;
2960 new_vma->vm_start = addr;
2961 new_vma->vm_end = addr + len;
2962 new_vma->vm_pgoff = pgoff;
2963 if (vma_dup_policy(vma, new_vma))
2964 goto out_free_vma;
2965 INIT_LIST_HEAD(&new_vma->anon_vma_chain);
2966 if (anon_vma_clone(new_vma, vma))
2967 goto out_free_mempol;
2968 if (new_vma->vm_file)
2969 get_file(new_vma->vm_file);
2970 if (new_vma->vm_ops && new_vma->vm_ops->open)
2971 new_vma->vm_ops->open(new_vma);
2972 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2973 *need_rmap_locks = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 }
2975 return new_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002976
Chen Gange3975892015-09-08 15:03:38 -07002977out_free_mempol:
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002978 mpol_put(vma_policy(new_vma));
Chen Gange3975892015-09-08 15:03:38 -07002979out_free_vma:
Rik van Riel5beb4932010-03-05 13:42:07 -08002980 kmem_cache_free(vm_area_cachep, new_vma);
Chen Gange3975892015-09-08 15:03:38 -07002981out:
Rik van Riel5beb4932010-03-05 13:42:07 -08002982 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002984
2985/*
2986 * Return true if the calling process may expand its vm space by the passed
2987 * number of pages
2988 */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002989bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
akpm@osdl.org119f6572005-05-01 08:58:35 -07002990{
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002991 if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
2992 return false;
2993
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002994 if (is_data_mapping(flags) &&
2995 mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
2996 if (ignore_rlimit_data)
2997 pr_warn_once("%s (%d): VmData %lu exceed data ulimit "
2998 "%lu. Will be forbidden soon.\n",
2999 current->comm, current->pid,
3000 (mm->data_vm + npages) << PAGE_SHIFT,
3001 rlimit(RLIMIT_DATA));
3002 else
3003 return false;
3004 }
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003005
3006 return true;
3007}
3008
3009void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
3010{
3011 mm->total_vm += npages;
3012
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003013 if (is_exec_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003014 mm->exec_vm += npages;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003015 else if (is_stack_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003016 mm->stack_vm += npages;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003017 else if (is_data_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003018 mm->data_vm += npages;
akpm@osdl.org119f6572005-05-01 08:58:35 -07003019}
Roland McGrathfa5dc222007-02-08 14:20:41 -08003020
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003021static int special_mapping_fault(struct vm_area_struct *vma,
3022 struct vm_fault *vmf);
3023
3024/*
3025 * Having a close hook prevents vma merging regardless of flags.
3026 */
3027static void special_mapping_close(struct vm_area_struct *vma)
3028{
3029}
3030
3031static const char *special_mapping_name(struct vm_area_struct *vma)
3032{
3033 return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3034}
3035
3036static const struct vm_operations_struct special_mapping_vmops = {
3037 .close = special_mapping_close,
3038 .fault = special_mapping_fault,
3039 .name = special_mapping_name,
3040};
3041
3042static const struct vm_operations_struct legacy_special_mapping_vmops = {
3043 .close = special_mapping_close,
3044 .fault = special_mapping_fault,
3045};
Roland McGrathfa5dc222007-02-08 14:20:41 -08003046
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003047static int special_mapping_fault(struct vm_area_struct *vma,
3048 struct vm_fault *vmf)
Roland McGrathfa5dc222007-02-08 14:20:41 -08003049{
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003050 pgoff_t pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003051 struct page **pages;
3052
Andy Lutomirskif872f542015-12-29 20:12:19 -08003053 if (vma->vm_ops == &legacy_special_mapping_vmops) {
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003054 pages = vma->vm_private_data;
Andy Lutomirskif872f542015-12-29 20:12:19 -08003055 } else {
3056 struct vm_special_mapping *sm = vma->vm_private_data;
3057
3058 if (sm->fault)
3059 return sm->fault(sm, vma, vmf);
3060
3061 pages = sm->pages;
3062 }
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003063
Oleg Nesterov8a9cc3b2015-09-08 14:58:31 -07003064 for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003065 pgoff--;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003066
3067 if (*pages) {
3068 struct page *page = *pages;
3069 get_page(page);
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003070 vmf->page = page;
3071 return 0;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003072 }
3073
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003074 return VM_FAULT_SIGBUS;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003075}
3076
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003077static struct vm_area_struct *__install_special_mapping(
3078 struct mm_struct *mm,
3079 unsigned long addr, unsigned long len,
Chen Gang27f28b92015-11-05 18:48:41 -08003080 unsigned long vm_flags, void *priv,
3081 const struct vm_operations_struct *ops)
Roland McGrathfa5dc222007-02-08 14:20:41 -08003082{
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003083 int ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003084 struct vm_area_struct *vma;
3085
3086 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
3087 if (unlikely(vma == NULL))
Stefani Seibold3935ed62014-03-17 23:22:02 +01003088 return ERR_PTR(-ENOMEM);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003089
Rik van Riel5beb4932010-03-05 13:42:07 -08003090 INIT_LIST_HEAD(&vma->anon_vma_chain);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003091 vma->vm_mm = mm;
3092 vma->vm_start = addr;
3093 vma->vm_end = addr + len;
3094
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07003095 vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
Coly Li3ed75eb2007-10-18 23:39:15 -07003096 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003097
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003098 vma->vm_ops = ops;
3099 vma->vm_private_data = priv;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003100
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003101 ret = insert_vm_struct(mm, vma);
3102 if (ret)
3103 goto out;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003104
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003105 vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003106
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003107 perf_event_mmap(vma);
Peter Zijlstra089dd792009-06-05 14:04:55 +02003108
Stefani Seibold3935ed62014-03-17 23:22:02 +01003109 return vma;
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003110
3111out:
3112 kmem_cache_free(vm_area_cachep, vma);
Stefani Seibold3935ed62014-03-17 23:22:02 +01003113 return ERR_PTR(ret);
3114}
3115
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003116/*
3117 * Called with mm->mmap_sem held for writing.
3118 * Insert a new vma covering the given region, with the given flags.
3119 * Its pages are supplied by the given array of struct page *.
3120 * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3121 * The region past the last page supplied will always produce SIGBUS.
3122 * The array pointer and the pages it points to are assumed to stay alive
3123 * for as long as this mapping might exist.
3124 */
3125struct vm_area_struct *_install_special_mapping(
3126 struct mm_struct *mm,
3127 unsigned long addr, unsigned long len,
3128 unsigned long vm_flags, const struct vm_special_mapping *spec)
3129{
Chen Gang27f28b92015-11-05 18:48:41 -08003130 return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
3131 &special_mapping_vmops);
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003132}
3133
Stefani Seibold3935ed62014-03-17 23:22:02 +01003134int install_special_mapping(struct mm_struct *mm,
3135 unsigned long addr, unsigned long len,
3136 unsigned long vm_flags, struct page **pages)
3137{
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003138 struct vm_area_struct *vma = __install_special_mapping(
Chen Gang27f28b92015-11-05 18:48:41 -08003139 mm, addr, len, vm_flags, (void *)pages,
3140 &legacy_special_mapping_vmops);
Stefani Seibold3935ed62014-03-17 23:22:02 +01003141
Duan Jiong14bd5b42014-06-04 16:07:05 -07003142 return PTR_ERR_OR_ZERO(vma);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003143}
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003144
3145static DEFINE_MUTEX(mm_all_locks_mutex);
3146
Peter Zijlstra454ed842008-08-11 09:30:25 +02003147static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003148{
Michel Lespinassebf181b92012-10-08 16:31:39 -07003149 if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003150 /*
3151 * The LSB of head.next can't change from under us
3152 * because we hold the mm_all_locks_mutex.
3153 */
Jiri Kosina572043c2013-01-11 14:31:59 -08003154 down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003155 /*
3156 * We can safely modify head.next after taking the
Ingo Molnar5a505082012-12-02 19:56:46 +00003157 * anon_vma->root->rwsem. If some other vma in this mm shares
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003158 * the same anon_vma we won't take it again.
3159 *
3160 * No need of atomic instructions here, head.next
3161 * can't change from under us thanks to the
Ingo Molnar5a505082012-12-02 19:56:46 +00003162 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003163 */
3164 if (__test_and_set_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003165 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003166 BUG();
3167 }
3168}
3169
Peter Zijlstra454ed842008-08-11 09:30:25 +02003170static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003171{
3172 if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3173 /*
3174 * AS_MM_ALL_LOCKS can't change from under us because
3175 * we hold the mm_all_locks_mutex.
3176 *
3177 * Operations on ->flags have to be atomic because
3178 * even if AS_MM_ALL_LOCKS is stable thanks to the
3179 * mm_all_locks_mutex, there may be other cpus
3180 * changing other bitflags in parallel to us.
3181 */
3182 if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
3183 BUG();
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08003184 down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003185 }
3186}
3187
3188/*
3189 * This operation locks against the VM for all pte/vma/mm related
3190 * operations that could ever happen on a certain mm. This includes
3191 * vmtruncate, try_to_unmap, and all page faults.
3192 *
3193 * The caller must take the mmap_sem in write mode before calling
3194 * mm_take_all_locks(). The caller isn't allowed to release the
3195 * mmap_sem until mm_drop_all_locks() returns.
3196 *
3197 * mmap_sem in write mode is required in order to block all operations
3198 * that could modify pagetables and free pages without need of
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -08003199 * altering the vma layout. It's also needed in write mode to avoid new
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003200 * anon_vmas to be associated with existing vmas.
3201 *
3202 * A single task can't take more than one mm_take_all_locks() in a row
3203 * or it would deadlock.
3204 *
Michel Lespinassebf181b92012-10-08 16:31:39 -07003205 * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003206 * mapping->flags avoid to take the same lock twice, if more than one
3207 * vma in this mm is backed by the same anon_vma or address_space.
3208 *
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -08003209 * We take locks in following order, accordingly to comment at beginning
3210 * of mm/rmap.c:
3211 * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
3212 * hugetlb mapping);
3213 * - all i_mmap_rwsem locks;
3214 * - all anon_vma->rwseml
3215 *
3216 * We can take all locks within these types randomly because the VM code
3217 * doesn't nest them and we protected from parallel mm_take_all_locks() by
3218 * mm_all_locks_mutex.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003219 *
3220 * mm_take_all_locks() and mm_drop_all_locks are expensive operations
3221 * that may have to take thousand of locks.
3222 *
3223 * mm_take_all_locks() can fail if it's interrupted by signals.
3224 */
3225int mm_take_all_locks(struct mm_struct *mm)
3226{
3227 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003228 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003229
3230 BUG_ON(down_read_trylock(&mm->mmap_sem));
3231
3232 mutex_lock(&mm_all_locks_mutex);
3233
3234 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3235 if (signal_pending(current))
3236 goto out_unlock;
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -08003237 if (vma->vm_file && vma->vm_file->f_mapping &&
3238 is_vm_hugetlb_page(vma))
3239 vm_lock_mapping(mm, vma->vm_file->f_mapping);
3240 }
3241
3242 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3243 if (signal_pending(current))
3244 goto out_unlock;
3245 if (vma->vm_file && vma->vm_file->f_mapping &&
3246 !is_vm_hugetlb_page(vma))
Peter Zijlstra454ed842008-08-11 09:30:25 +02003247 vm_lock_mapping(mm, vma->vm_file->f_mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003248 }
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02003249
3250 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3251 if (signal_pending(current))
3252 goto out_unlock;
3253 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003254 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3255 vm_lock_anon_vma(mm, avc->anon_vma);
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02003256 }
3257
Kautuk Consul584cff52011-10-31 17:08:59 -07003258 return 0;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003259
3260out_unlock:
Kautuk Consul584cff52011-10-31 17:08:59 -07003261 mm_drop_all_locks(mm);
3262 return -EINTR;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003263}
3264
3265static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
3266{
Michel Lespinassebf181b92012-10-08 16:31:39 -07003267 if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003268 /*
3269 * The LSB of head.next can't change to 0 from under
3270 * us because we hold the mm_all_locks_mutex.
3271 *
3272 * We must however clear the bitflag before unlocking
Michel Lespinassebf181b92012-10-08 16:31:39 -07003273 * the vma so the users using the anon_vma->rb_root will
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003274 * never see our bitflag.
3275 *
3276 * No need of atomic instructions here, head.next
3277 * can't change from under us until we release the
Ingo Molnar5a505082012-12-02 19:56:46 +00003278 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003279 */
3280 if (!__test_and_clear_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003281 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003282 BUG();
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08003283 anon_vma_unlock_write(anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003284 }
3285}
3286
3287static void vm_unlock_mapping(struct address_space *mapping)
3288{
3289 if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3290 /*
3291 * AS_MM_ALL_LOCKS can't change to 0 from under us
3292 * because we hold the mm_all_locks_mutex.
3293 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08003294 i_mmap_unlock_write(mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003295 if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
3296 &mapping->flags))
3297 BUG();
3298 }
3299}
3300
3301/*
3302 * The mmap_sem cannot be released by the caller until
3303 * mm_drop_all_locks() returns.
3304 */
3305void mm_drop_all_locks(struct mm_struct *mm)
3306{
3307 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003308 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003309
3310 BUG_ON(down_read_trylock(&mm->mmap_sem));
3311 BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
3312
3313 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3314 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003315 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3316 vm_unlock_anon_vma(avc->anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003317 if (vma->vm_file && vma->vm_file->f_mapping)
3318 vm_unlock_mapping(vma->vm_file->f_mapping);
3319 }
3320
3321 mutex_unlock(&mm_all_locks_mutex);
3322}
David Howells8feae132009-01-08 12:04:47 +00003323
3324/*
3325 * initialise the VMA slab
3326 */
3327void __init mmap_init(void)
3328{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003329 int ret;
3330
Tejun Heo908c7f12014-09-08 09:51:29 +09003331 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003332 VM_BUG_ON(ret);
David Howells8feae132009-01-08 12:04:47 +00003333}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07003334
3335/*
3336 * Initialise sysctl_user_reserve_kbytes.
3337 *
3338 * This is intended to prevent a user from starting a single memory hogging
3339 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3340 * mode.
3341 *
3342 * The default value is min(3% of free memory, 128MB)
3343 * 128MB is enough to recover with sshd/login, bash, and top/kill.
3344 */
Andrew Shewmaker16408792013-04-29 15:08:12 -07003345static int init_user_reserve(void)
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07003346{
3347 unsigned long free_kbytes;
3348
3349 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3350
3351 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3352 return 0;
3353}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003354subsys_initcall(init_user_reserve);
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07003355
3356/*
3357 * Initialise sysctl_admin_reserve_kbytes.
3358 *
3359 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
3360 * to log in and kill a memory hogging process.
3361 *
3362 * Systems with more than 256MB will reserve 8MB, enough to recover
3363 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
3364 * only reserve 3% of free pages by default.
3365 */
Andrew Shewmaker16408792013-04-29 15:08:12 -07003366static int init_admin_reserve(void)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07003367{
3368 unsigned long free_kbytes;
3369
3370 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3371
3372 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
3373 return 0;
3374}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003375subsys_initcall(init_admin_reserve);
Andrew Shewmaker16408792013-04-29 15:08:12 -07003376
3377/*
3378 * Reinititalise user and admin reserves if memory is added or removed.
3379 *
3380 * The default user reserve max is 128MB, and the default max for the
3381 * admin reserve is 8MB. These are usually, but not always, enough to
3382 * enable recovery from a memory hogging process using login/sshd, a shell,
3383 * and tools like top. It may make sense to increase or even disable the
3384 * reserve depending on the existence of swap or variations in the recovery
3385 * tools. So, the admin may have changed them.
3386 *
3387 * If memory is added and the reserves have been eliminated or increased above
3388 * the default max, then we'll trust the admin.
3389 *
3390 * If memory is removed and there isn't enough free memory, then we
3391 * need to reset the reserves.
3392 *
3393 * Otherwise keep the reserve set by the admin.
3394 */
3395static int reserve_mem_notifier(struct notifier_block *nb,
3396 unsigned long action, void *data)
3397{
3398 unsigned long tmp, free_kbytes;
3399
3400 switch (action) {
3401 case MEM_ONLINE:
3402 /* Default max is 128MB. Leave alone if modified by operator. */
3403 tmp = sysctl_user_reserve_kbytes;
3404 if (0 < tmp && tmp < (1UL << 17))
3405 init_user_reserve();
3406
3407 /* Default max is 8MB. Leave alone if modified by operator. */
3408 tmp = sysctl_admin_reserve_kbytes;
3409 if (0 < tmp && tmp < (1UL << 13))
3410 init_admin_reserve();
3411
3412 break;
3413 case MEM_OFFLINE:
3414 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3415
3416 if (sysctl_user_reserve_kbytes > free_kbytes) {
3417 init_user_reserve();
3418 pr_info("vm.user_reserve_kbytes reset to %lu\n",
3419 sysctl_user_reserve_kbytes);
3420 }
3421
3422 if (sysctl_admin_reserve_kbytes > free_kbytes) {
3423 init_admin_reserve();
3424 pr_info("vm.admin_reserve_kbytes reset to %lu\n",
3425 sysctl_admin_reserve_kbytes);
3426 }
3427 break;
3428 default:
3429 break;
3430 }
3431 return NOTIFY_OK;
3432}
3433
3434static struct notifier_block reserve_mem_nb = {
3435 .notifier_call = reserve_mem_notifier,
3436};
3437
3438static int __meminit init_reserve_notifier(void)
3439{
3440 if (register_hotmemory_notifier(&reserve_mem_nb))
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07003441 pr_err("Failed registering memory add/remove notifier for admin reserve\n");
Andrew Shewmaker16408792013-04-29 15:08:12 -07003442
3443 return 0;
3444}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003445subsys_initcall(init_reserve_notifier);